forked from cryptocoinjs/hdkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.22 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
43
44
45
46
47
48
49
{
"name": "hdkey",
"version": "2.0.1",
"description": "Bitcoin BIP32 hierarchical deterministic keys",
"main": "lib/hdkey.js",
"repository": {
"type": "git",
"url": "git://github.com/cryptocoinjs/hdkey"
},
"license": "MIT",
"keywords": [
"bitcoin",
"bip32",
"bip",
"key",
"hierarchical",
"deterministic",
"crypto"
],
"bugs": {
"url": "https://github.com/cryptocoinjs/hdkey/issues"
},
"homepage": "https://github.com/cryptocoinjs/hdkey",
"files": [],
"devDependencies": {
"bigi": "^1.1.0",
"coveralls": "^3.0.4",
"ecurve": "^1.0.0",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "0.0.1",
"mochify": "^6.3.0",
"secure-random": "^1.0.0",
"standard": "^7.1.1"
},
"dependencies": {
"bs58check": "^2.1.2",
"safe-buffer": "^5.1.1",
"secp256k1": "^4.0.0"
},
"scripts": {
"lint": "standard",
"browser-test": "mochify --wd -R spec",
"test": "standard && mocha",
"unit": "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"
}
}