bip39/package.json

31 lines
678 B
JSON

{
"name": "bip39",
"version": "2.0.0",
"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": {
"crypto-js": "^3.1.2-2"
},
"devDependencies": {
"browserify": "^5.9.1",
"mocha": "^1.17.1"
}
}