bip39/package.json

35 lines
777 B
JSON
Raw Normal View History

2014-03-10 10:49:53 +08:00
{
"name": "bip39",
2014-09-28 15:14:49 +08:00
"version": "2.1.1",
2014-03-10 10:49:53 +08:00
"description": "Bitcoin BIP39: Mnemonic code for generating deterministic keys",
"main": "index.js",
"scripts": {
2014-06-11 23:31:16 +08:00
"test": "mocha --reporter list test/*.js",
2014-11-23 13:41:12 +11:00
"compile": "browserify index.js -s bip39 > bip39.js"
2014-03-10 10:49:53 +08:00
},
"author": "Wei Lu",
2014-08-17 10:34:50 +08:00
"contributors": [
{
"name": "Daniel Cousens",
"email": "email@dcousens.com",
"url": "http://dcousens.com"
}
],
2014-03-10 10:59:14 +08:00
"repository": {
"type": "git",
"url": "https://github.com/weilu/bip39.git"
},
2014-03-10 10:49:53 +08:00
"license": "ISC",
"dependencies": {
2015-03-18 19:23:26 +11:00
"create-hash": "^1.1.0",
"pbkdf2": "^3.0.0",
2015-03-17 15:20:18 +11:00
"randombytes": "^2.0.1",
"unorm": "^1.3.3"
2014-03-10 10:49:53 +08:00
},
"devDependencies": {
2015-03-18 19:23:26 +11:00
"browserify": "^9.0.0",
"mocha": "^2.2.0",
2015-01-09 14:10:36 +11:00
"sinon": "^1.12.2"
}
2014-03-10 10:49:53 +08:00
}