mirror of
https://github.com/jimeh/node-base58.git
synced 2026-02-19 07:36:40 +00:00
refactor to vanilla js
This commit is contained in:
46
package.json
46
package.json
@@ -1,36 +1,36 @@
|
||||
{
|
||||
"name": "base58",
|
||||
"version": "0.1.0",
|
||||
"keywords": "base58",
|
||||
"description": "Base58 encoding and decoding",
|
||||
"licenses": [{
|
||||
"type": "MIT",
|
||||
"url": "https://raw.github.com/jimeh/node-base58/master/LICENSE.md"
|
||||
}],
|
||||
|
||||
"name": "base58",
|
||||
"version": "1.0.0",
|
||||
"keywords": "base58, flickr",
|
||||
"description": "Flickr Flavored Base58 Encoding and Decoding",
|
||||
"licenses": [
|
||||
{
|
||||
"type": "MIT",
|
||||
"url": "https://raw.github.com/jimeh/node-base58/master/LICENSE.md"
|
||||
}
|
||||
],
|
||||
"author": {
|
||||
"name": "Jim Myhrberg",
|
||||
"email": "contact@jimeh.me"
|
||||
},
|
||||
|
||||
"repository" : {
|
||||
"type" : "git",
|
||||
"url" : "https://github.com/jimeh/node-base58.git"
|
||||
"contributors": [
|
||||
"Louis Buchbinder github@louisbuchbinder.com"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/jimeh/node-base58.git"
|
||||
},
|
||||
|
||||
"main": "./lib/base58",
|
||||
|
||||
"main": "./src/base58",
|
||||
"engines": {
|
||||
"node": ">= 0.4.0 < 0.7.0"
|
||||
"node": ">= 4"
|
||||
},
|
||||
|
||||
"devDependencies": {
|
||||
"coffee-script": "1.3.1",
|
||||
"mocha": "1.0.x",
|
||||
"should": "0.6.x"
|
||||
"eslint": "^4.1.1",
|
||||
"eslint-config-flickr": "^1.3.1",
|
||||
"mocha": "^3.4.2"
|
||||
},
|
||||
|
||||
"scripts": {
|
||||
"test": "make test"
|
||||
"lint": "eslint . --fix",
|
||||
"test": "mocha test"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user