bip39/package.json

29 lines
659 B
JSON
Raw Normal View History

2014-03-10 10:49:53 +08:00
{
"name": "bip39",
2014-05-28 23:37:00 +08:00
"version": "1.1.0",
2014-03-10 10:49:53 +08:00
"description": "Bitcoin BIP39: Mnemonic code for generating deterministic keys",
"main": "index.js",
"scripts": {
2014-06-11 23:31:16 +08:00
"test": "mocha --reporter list test/*.js",
"compile": "browserify index.js -s BIP39 > bip39.js"
2014-03-10 10:49:53 +08:00
},
"author": "Wei Lu",
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": {
2014-03-14 12:39:02 +08:00
"crypto-js": "^3.1.2-2",
"require-json-tree": "~1.1.0",
"include-folder": "~0.7.0"
2014-03-10 10:49:53 +08:00
},
"devDependencies": {
2014-03-14 17:05:58 +08:00
"mocha": "^1.17.1",
"folderify": "~0.6.0"
2014-03-14 17:05:58 +08:00
},
"browserify": {
"transform": [ "folderify" ]
}
2014-03-10 10:49:53 +08:00
}