bip39/package.json

34 lines
755 B
JSON

{
"name": "bip39",
"version": "2.1.1",
"description": "Bitcoin BIP39: Mnemonic code for generating deterministic keys",
"main": "index.js",
"scripts": {
"test": "mocha --reporter list test/*.js",
"compile": "browserify index.js -s bip39 > bip39.js"
},
"author": "Wei Lu",
"contributors": [
{
"name": "Daniel Cousens",
"email": "email@dcousens.com",
"url": "http://dcousens.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/weilu/bip39.git"
},
"license": "ISC",
"dependencies": {
"pbkdf2-compat": "^2.0.1",
"randombytes": "^2.0.1",
"unorm": "^1.3.3"
},
"devDependencies": {
"browserify": "^8.0.3",
"mocha": "^2.1.0",
"sinon": "^1.12.2"
}
}