2014-03-10 10:49:53 +08:00
|
|
|
{
|
|
|
|
"name": "bip39",
|
2018-01-06 23:10:11 +11:00
|
|
|
"version": "2.5.0",
|
2014-03-10 10:49:53 +08:00
|
|
|
"description": "Bitcoin BIP39: Mnemonic code for generating deterministic keys",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2016-10-06 01:02:59 +11:00
|
|
|
"coverage": "nyc --branches 100 --functions 100 --check-coverage npm run unit",
|
|
|
|
"standard": "standard",
|
2016-10-06 00:07:18 +11:00
|
|
|
"test": "npm run standard && npm run unit",
|
2017-03-15 09:57:19 +03:00
|
|
|
"unit": "tape test/*.js",
|
|
|
|
"update": "node -e \"require('./util/wordlists').update()\""
|
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",
|
2016-10-06 00:07:58 +11:00
|
|
|
"pbkdf2": "^3.0.9",
|
2015-03-17 15:20:18 +11:00
|
|
|
"randombytes": "^2.0.1",
|
2017-05-23 15:04:19 +10:00
|
|
|
"safe-buffer": "^5.0.1",
|
2014-09-28 14:51:06 +08:00
|
|
|
"unorm": "^1.3.3"
|
2014-03-10 10:49:53 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-03-15 09:57:19 +03:00
|
|
|
"node-fetch": "^1.6.3",
|
2016-10-06 01:02:59 +11:00
|
|
|
"nyc": "^8.3.0",
|
2016-10-06 00:15:53 +11:00
|
|
|
"proxyquire": "^1.7.10",
|
2017-05-23 15:01:10 +10:00
|
|
|
"standard": "^10.0.2",
|
2016-10-06 01:02:59 +11:00
|
|
|
"tape": "^4.6.2"
|
2014-03-15 10:05:02 +08:00
|
|
|
}
|
2014-03-10 10:49:53 +08:00
|
|
|
}
|