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.

47 lines
1.1 KiB

11 years ago
{
"name": "hdkey",
11 years ago
"version": "0.1.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": {
"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",
"crypto-browserify": "^2.1.8"
11 years ago
},
"dependencies": {
"sha512": "0.0.1",
"bigi": "^1.1.0",
"ecurve": "^1.0.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"
11 years ago
}
11 years ago
}