forked from cryptocoinjs/hdkey
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.49 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.49 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@hyperbitjs/hdkey",
"version": "0.1.1",
"description": "Bitcoin BIP32 hierarchical deterministic keys",
"main": "lib/hdkey.js",
"repository": {
"type": "git",
"url": "git://github.com/hyperbit-dev/hdkey.git"
},
"license": "MIT",
"keywords": [
"bitcoin",
"bip32",
"bip",
"key",
"hierarchical",
"deterministic",
"crypto"
],
"bugs": {
"url": "https://github.com/hyperbit-dev/hdkey/issues"
},
"homepage": "https://github.com/hyperbit-dev/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",
"hash.js": "^1.1.7",
"safe-buffer": "^5.1.1",
"secp256k1": "^5.0.1"
},
"scripts": {
"lint": "standard",
"browser-test": "mochify --wd -R spec",
"test": "standard && mocha",
"unit": "mocha",
"coverage": "istanbul cover ./node_modules/.bin/_mocha -- --reporter list test/*.js",
"coveralls": "npm run-script coverage && node ./node_modules/.bin/coveralls < coverage/lcov.info"
},
"overrides": {
"@cypress/request": "^3.0.0",
"ajv": "^6.12.3",
"debug": "^4.3.1",
"flat": "^5.0.1",
"glob-parent": "^5.1.2",
"minimatch": "^3.0.5",
"minimist": "^1.2.6",
"shelljs": "^0.8.5",
"tough-cookie": "^4.1.3"
}
}