mirror of https://github.com/lukechilds/hdkey.git
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.
45 lines
1.1 KiB
45 lines
1.1 KiB
{
|
|
"name": "hdkey",
|
|
"version": "0.0.1",
|
|
"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"
|
|
},
|
|
"homepage": "https://github.com/cryptocoinjs/hdkey",
|
|
"devDependencies": {
|
|
"mocha": "^1.19.0",
|
|
"bs58": "^1.0.0",
|
|
"coveralls": "^2.10.0",
|
|
"mocha-lcov-reporter": "0.0.1",
|
|
"istanbul": "^0.2.10",
|
|
"secure-random": "^1.0.0",
|
|
"mochify": "^0.9.3"
|
|
},
|
|
"dependencies": {
|
|
"sha512": "0.0.1",
|
|
"bigi": "^1.1.0",
|
|
"ecurve": "^0.8.0"
|
|
},
|
|
"scripts": {
|
|
"unit": "./node_modules/.bin/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"
|
|
},
|
|
"browser": {
|
|
"crypto": "crypto-browserify"
|
|
}
|
|
}
|
|
|