mirror of
https://github.com/jimeh/node-base58.git
synced 2026-02-19 07:36:40 +00:00
36 lines
738 B
JSON
36 lines
738 B
JSON
{
|
|
"name": "base58",
|
|
"version": "2.0.0",
|
|
"keywords": [
|
|
"base58, flickr"
|
|
],
|
|
"description": "Flickr Flavored Base58 Encoding and Decoding",
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Jim Myhrberg",
|
|
"email": "contact@jimeh.me"
|
|
},
|
|
"contributors": [
|
|
"Louis Buchbinder github@louisbuchbinder.com"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jimeh/node-base58.git"
|
|
},
|
|
"main": "./src/base58",
|
|
"engines": {
|
|
"node": ">= 6"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^5.6.0",
|
|
"eslint-config-prettier": "^3.0.0",
|
|
"eslint-plugin-prettier": "^2.7.0",
|
|
"mocha": "^5.2.0",
|
|
"prettier": "^1.14.3"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint . --fix",
|
|
"test": "mocha"
|
|
}
|
|
}
|