bip39/package.json

46 lines
1016 B
JSON
Raw Normal View History

2014-03-10 02:49:53 +00:00
{
"name": "bip39",
2014-09-28 07:14:49 +00:00
"version": "2.1.1",
2014-03-10 02:49:53 +00:00
"description": "Bitcoin BIP39: Mnemonic code for generating deterministic keys",
"main": "index.js",
"scripts": {
2014-06-11 15:31:16 +00:00
"test": "mocha --reporter list test/*.js",
2014-11-23 02:41:12 +00:00
"compile": "browserify index.js -s bip39 > bip39.js"
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": {
"pbkdf2-compat": "2.0.1",
"unorm": "^1.3.3"
2014-03-10 02:49:53 +00:00
},
"devDependencies": {
"browserify": "^5.12.0",
"mocha": "^1.17.1",
"sinon": "^1.10.3"
},
"testling": {
"browsers": [
"android-browser/4.2..latest",
"chrome/20..latest",
"firefox/21..latest",
"ipad/6..latest",
"iphone/6..latest",
"opera/15..latest",
"safari/latest"
],
"harness": "mocha-bdd",
"files": "test/*.js"
}
2014-03-10 02:49:53 +00:00
}