mirror of
https://github.com/jimeh/node-base58.git
synced 2026-02-19 07:36:40 +00:00
Properly define node.js version, and reorganize package.json a bit
This commit is contained in:
18
package.json
18
package.json
@@ -3,30 +3,34 @@
|
|||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"keywords": "base58",
|
"keywords": "base58",
|
||||||
"description": "Base58 encoding and decoding",
|
"description": "Base58 encoding and decoding",
|
||||||
"author": {
|
|
||||||
"name": "Jim Myhrberg",
|
|
||||||
"email": "contact@jimeh.me"
|
|
||||||
},
|
|
||||||
"licenses": [{
|
"licenses": [{
|
||||||
"type": "MIT",
|
"type": "MIT",
|
||||||
"url": "https://raw.github.com/jimeh/node-base58/master/LICENSE.md"
|
"url": "https://raw.github.com/jimeh/node-base58/master/LICENSE.md"
|
||||||
}],
|
}],
|
||||||
|
|
||||||
|
"author": {
|
||||||
|
"name": "Jim Myhrberg",
|
||||||
|
"email": "contact@jimeh.me"
|
||||||
|
},
|
||||||
|
|
||||||
"repository" : {
|
"repository" : {
|
||||||
"type" : "git",
|
"type" : "git",
|
||||||
"url" : "http://github.com/jimeh/node-base58.git"
|
"url" : "http://github.com/jimeh/node-base58.git"
|
||||||
},
|
},
|
||||||
|
|
||||||
"main": "./lib/base58",
|
"main": "./lib/base58",
|
||||||
"engine": "node > 0.4.0 < 0.7.0",
|
|
||||||
|
|
||||||
"scripts": {
|
"engines": {
|
||||||
"test": "make test"
|
"node": ">= 0.4.0 < 0.7.0"
|
||||||
},
|
},
|
||||||
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"coffee-script": "1.3.1",
|
"coffee-script": "1.3.1",
|
||||||
"mocha": "1.0.x",
|
"mocha": "1.0.x",
|
||||||
"should": "0.6.x"
|
"should": "0.6.x"
|
||||||
|
},
|
||||||
|
|
||||||
|
"scripts": {
|
||||||
|
"test": "make test"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user