-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.94 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@samouraiwallet/bip32",
"version": "5.1.0",
"description": "A BIP32 compatible library",
"keywords": [
"bip32",
"bitcoinjs",
"bitcoin",
"secp256k1"
],
"exports": {
".": {
"import": "./src/index.js",
"types": "./types/index.d.ts"
},
"./crypto": {
"import": "./src/crypto.js",
"types": "./types/crypto.d.ts"
}
},
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=16.6.0"
},
"scripts": {
"build": "tsc -p ./tsconfig.json",
"coverage-report": "npm run build && npm run nobuild:coverage-report",
"coverage": "npm run build && npm run nobuild:coverage",
"format": "npm run prettier -- --write",
"format:ci": "npm run prettier -- --check",
"gitdiff:ci": "npm run build && git diff --exit-code",
"lint": "tslint -p tsconfig.json -c tslint.json",
"nobuild:coverage-report": "nyc report --reporter=lcov",
"nobuild:coverage": "nyc --check-coverage --branches 90 --functions 90 npm run nobuild:unit",
"nobuild:unit": "tape test/*.cjs",
"prettier": "prettier 'ts-src/**/*.ts' --ignore-path ./.prettierignore",
"test": "npm run build && npm run format:ci && npm run lint && npm run nobuild:coverage",
"unit": "npm run build && npm run nobuild:unit"
},
"repository": {
"type": "git",
"url": "https://github.com/Dojo-Open-Source-Project/bip32.git"
},
"homepage": "https://github.com/Dojo-Open-Source-Project/bip32",
"files": [
"src",
"types"
],
"dependencies": {
"@noble/hashes": "1.4.0",
"@scure/base": "1.1.6",
"ow": "1.1.1",
"wif": "4.0.0"
},
"devDependencies": {
"@types/node": "18.x",
"nyc": "^15.0.0",
"prettier": "1.19.1",
"tape": "^4.13.2",
"tiny-secp256k1": "2.2.1",
"tslint": "^6.1.0",
"typescript": "^5.4.5"
},
"author": "Daniel Cousens",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dojo-Open-Source-Project/bip32/issues"
}
}