-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
48 lines (48 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
{
"name": "bip32-utils",
"version": "v2.0.0",
"description": "A set of utilities for working with BIP32.",
"author": "Daniel Cousens",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/btcz/bip32-utils-btcz.git"
},
"bugs": {
"url": "https://github.com/btcz/bip32-utils-btcz/issues"
},
"homepage": "https://github.com/btcz/bip32-utils-btcz",
"keywords": [
"bip32-utils",
"bip32",
"bip44",
"account",
"chain",
"discovery",
"gap",
"bitcoinjs",
"bitcoin",
"bitgo-utxo-lib"
],
"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": {
"bitgo-utxo-lib": "git+https://github.com/btcz/bitgo-utxo-lib-btcz.git#v2.0.0",
"keccak": "^1.3.0",
"nyc": "*",
"standard": "*",
"tape": "*"
},
"peerDependencies": {
"bitgo-utxo-lib": "git+https://github.com/btcz/bitgo-utxo-lib-btcz.git#v2.0.0"
},
"engines": {
"node": ">=4.0.0"
}
}