forked from bitcoinjs/bip32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1009 Bytes
/
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
{
"name": "bip32",
"version": "1.0.2",
"description": "A BIP32 compatible library",
"keywords": [
"bip32",
"bitcoinjs",
"bitcoin",
"secp256k1"
],
"main": "index.js",
"engines": {
"node": ">=6.0.0"
},
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitcoinjs/bip32.git"
},
"dependencies": {
"bs58check": "^2.1.1",
"create-hash": "^1.2.0",
"create-hmac": "^1.1.7",
"tiny-secp256k1": "^1.0.0",
"typeforce": "^1.11.5",
"wif": "^2.0.6"
},
"devDependencies": {
"nyc": "^11.7.1",
"standard": "^11.0.1",
"tape": "^4.9.0"
},
"author": "Daniel Cousens",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitcoinjs/bip32/issues"
}
}