forked from cryptocoinjs/hdkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "hdkey",
"version": "0.4.0",
"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",
"coveralls": "^2.10.0",
"mocha-lcov-reporter": "0.0.1",
"istanbul": "^0.2.10",
"secure-random": "^1.0.0",
"mochify": "^1.1.2",
"crypto-browserify": "^3.2.4"
},
"dependencies": {
"bigi": "^1.1.0",
"ecurve": "^1.0.0",
"coinstring": "^2.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"
}
}