-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 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
{
"name": "@coinspace/bip32-utils",
"version": "0.11.7",
"description": "A set of utilities for working with BIP32.",
"author": "Daniel Cousens",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CoinSpace/bip32-utils.git"
},
"bugs": {
"url": "https://github.com/CoinSpace/bip32-utils/issues"
},
"homepage": "https://github.com/CoinSpace/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",
"test": "npm run standard && npm run coverage",
"unit": "tape test/*.js"
},
"devDependencies": {
"@coinspace/bitcoinjs-lib": "^3.3.2",
"hdkey": "^0.8.0",
"keccak": "^1.3.0",
"nyc": "*",
"standard": "*",
"tape": "*"
},
"peerDependencies": {
"@coinspace/bitcoinjs-lib": "^3.3.2"
},
"engines": {
"node": ">=4.0.0"
}
}