mirror of https://github.com/status-im/bip39.git
30 lines
689 B
JSON
30 lines
689 B
JSON
{
|
|
"name": "bip39",
|
|
"version": "1.1.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",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/weilu/bip39.git"
|
|
},
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"crypto-js": "^3.1.2-2",
|
|
"require-json-tree": "~1.1.0",
|
|
"include-folder": "~0.7.0",
|
|
"secure-random": "1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "^1.17.1",
|
|
"folderify": "~0.6.0"
|
|
},
|
|
"browserify": {
|
|
"transform": [ "folderify" ]
|
|
}
|
|
}
|