bip39/package.json

45 lines
993 B
JSON

{
"name": "bip39",
"version": "2.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",
"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.0"
},
"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"
}
}