-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.28 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@runonflux/bitgo-utxo-lib",
"version": "9.38.0",
"description": "Client-side Bitcoin JavaScript library",
"main": "./dist/src/index.js",
"engines": {
"node": ">=10.22.0 <21",
"npm": ">=3.10.10"
},
"keywords": [
"bitgo",
"utxo",
"bitcoinjs",
"bitcoin",
"zcash",
"dash",
"browserify",
"javascript"
],
"scripts": {
"prepare": "npm run build",
"build": "yarn tsc --build --incremental --verbose .",
"coverage-report": "nyc report --reporter=lcov",
"coverage-html": "nyc report --reporter=html",
"coverage": "npm run build && nyc --check-coverage mocha",
"test": "npm run coverage",
"unit-test": "mocha --recursive test",
"lint": "eslint --quiet .",
"fmt": "prettier --write '{src,test}/**/*.{ts,js}'",
"precommit": "yarn lint-staged"
},
"nyc": {
"include": [
"src/**"
],
"branches": 78,
"functions": 90,
"lines": 88
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZelCore-io/bitgo-utxo-lib-ts.git"
},
"files": [
"dist/src"
],
"dependencies": {
"@bitgo/blake2b": "^3.2.4",
"@brandonblack/musig": "^0.0.1-alpha.0",
"@noble/secp256k1": "1.6.3",
"bech32": "^2.0.0",
"bip174": "npm:@bitgo-forks/[email protected]",
"bip32": "^3.0.1",
"bitcoin-ops": "^1.3.0",
"bitcoinjs-lib": "npm:@bitgo-forks/[email protected]",
"bn.js": "^5.2.1",
"bs58check": "^2.1.2",
"cashaddress": "^1.1.0",
"create-hash": "^1.2.0",
"create-hmac": "^1.1.7",
"ecpair": "npm:@runonflux/[email protected]",
"elliptic": "^6.5.2",
"fastpriorityqueue": "^0.7.1",
"groestlcoinjs-lib": "^6.1.5",
"typeforce": "^1.11.3",
"varuint-bitcoin": "^1.1.2"
},
"devDependencies": {
"@types/elliptic": "^6.4.12",
"@types/fs-extra": "^9.0.12",
"@types/mocha": "^9.1.0",
"@types/node": "^16.18.46",
"axios": "^1.6.0",
"debug": "^3.1.0",
"fs-extra": "^9.1.0",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.2",
"typescript": "4.7.4"
},
"lint-staged": {
"*.{js,ts}": [
"yarn prettier --write",
"yarn eslint --fix"
]
},
"publishConfig": {
"access": "public"
},
"author": "BitGo SDK Team <[email protected]>",
"license": "MIT"
}