bip39/package.json

36 lines
794 B
JSON
Raw Normal View History

2014-03-10 02:49:53 +00:00
{
"name": "bip39",
2015-08-17 00:39:39 +00:00
"version": "2.2.0",
2014-03-10 02:49:53 +00:00
"description": "Bitcoin BIP39: Mnemonic code for generating deterministic keys",
"main": "index.js",
"scripts": {
2016-10-05 13:07:18 +00:00
"test": "npm run standard && npm run unit",
"unit": "mocha --reporter list test/*.js",
"standard": "standard"
2014-03-10 02:49:53 +00:00
},
"author": "Wei Lu",
2014-08-17 02:34:50 +00:00
"contributors": [
{
"name": "Daniel Cousens",
"email": "email@dcousens.com",
"url": "http://dcousens.com"
}
],
2014-03-10 02:59:14 +00:00
"repository": {
"type": "git",
"url": "https://github.com/weilu/bip39.git"
},
2014-03-10 02:49:53 +00:00
"license": "ISC",
"dependencies": {
2015-03-18 08:23:26 +00:00
"create-hash": "^1.1.0",
2016-10-05 13:07:58 +00:00
"pbkdf2": "^3.0.9",
2015-03-17 04:20:18 +00:00
"randombytes": "^2.0.1",
"unorm": "^1.3.3"
2014-03-10 02:49:53 +00:00
},
"devDependencies": {
2015-04-08 02:26:14 +00:00
"mocha": "^2.2.0",
2016-10-05 13:02:34 +00:00
"mock-require": "^1.0.5",
"standard": "*"
}
2014-03-10 02:49:53 +00:00
}