You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.1 KiB

11 years ago
{
"name": "hdkey",
10 years ago
"version": "0.5.0",
11 years ago
"description": "Bitcoin BIP32 hierarchical deterministic keys",
"main": "lib/hdkey.js",
"repository": {
"type": "git",
"url": "git://github.com/cryptocoinjs/hdkey"
},
"keywords": [
"bitcoin",
"bip32",
"bip",
"key",
"hierarchical",
"deterministic",
"crypto"
],
"bugs": {
"url": "https://github.com/cryptocoinjs/hdkey/issues"
},
11 years ago
"homepage": "https://github.com/cryptocoinjs/hdkey",
"devDependencies": {
"coveralls": "^2.10.0",
"istanbul": "^0.3.17",
"mocha": "^2.2.5",
"mocha-lcov-reporter": "0.0.1",
"mochify": "^2.10.0",
"secure-random": "^1.0.0"
11 years ago
},
"dependencies": {
"bigi": "^1.1.0",
"ecurve": "^1.0.0",
"coinstring": "^2.0.0"
},
"scripts": {
"browser-test": "mochify --wd -R spec",
"test": "standard && mocha",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter list test/*.js",
"coveralls": "npm run-script coverage && node ./node_modules/.bin/coveralls < coverage/lcov.info"
11 years ago
}
11 years ago
}