-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
51 lines (51 loc) · 1.18 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
50
51
{
"name": "bip32-utils",
"version": "0.11.1",
"description": "A set of utilities for working with BIP32.",
"author": "Daniel Cousens",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bitcoinjs/bip32-utils.git"
},
"bugs": {
"url": "https://github.com/bitcoinjs/bip32-utils/issues"
},
"homepage": "https://github.com/bitcoinjs/bip32-utils",
"keywords": [
"bip32-utils",
"bip32",
"bip44",
"account",
"chain",
"discovery",
"gap",
"bitcoinjs",
"bitcoin"
],
"scripts": {
"coverage-report": "nyc report --reporter=lcov",
"coverage": "nyc --check-coverage --branches 90 --functions 90 npm run unit",
"standard": "standard",
"standard-fix": "standard --fix",
"test": "npm run standard && npm run coverage",
"unit": "tape test/*.js"
},
"devDependencies": {
"bitcoinjs-lib": "^5.1.7",
"keccak": "^3.0.0",
"nyc": "^15.0.0",
"standard": "^14.3.1",
"tape": "^4.13.0"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"bip32": "^2.0.5",
"bs58check": "^2.1.2",
"create-hash": "^1.2.0",
"safe-buffer": "^5.2.0"
}
}