forked from dimxy/bitgo-komodo-cc-lib
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.2 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.2 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
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
{
"name": "@tokel/nspv-js",
"version": "0.1.11",
"description": "Client-side Bitcoin JavaScript library with Komodo cryptocondions support",
"main": "./src/index.js",
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"bitgo",
"utxo",
"bitcoinjs",
"bitcoin",
"zcash",
"dash",
"browserify",
"javascript"
],
"scripts": {
"coverage-report": "nyc report --reporter=lcov",
"coverage-html": "nyc report --reporter=html",
"coverage": "BITGO_UTXO_LIB_TEST_EXPECTED_COUNT=3442 nyc --check-coverage --branches 90 --functions 90 mocha --recursive",
"integration": "mocha test/integration/",
"standard": "standard",
"test": "npm run standard && npm run coverage",
"unit": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/TokelPlatform/nspv-js"
},
"files": [
"src",
"cc",
"net",
"config"
],
"dependencies": {
"@tokel/cryptoconditions-js": "0.1.3",
"bech32": "2.0.0",
"bigi": "1.4.2",
"bip39": "^3.0.0",
"bip66": "^2.0.0",
"bitcoin-merkle-proof": "^0.1.0",
"bitcoin-ops": "^1.3.0",
"bitcoin-protocol": "^4.1.3",
"bitcoin-util": "^2.0.0",
"bitcoind-rpc": "^0.9.1",
"blake2b": "^2.1.3",
"bs58check": "4.0.0",
"bufferutil": "^4.0.3",
"create-hash": "^1.1.0",
"create-hmac": "^1.1.3",
"debug": "~4.4.0",
"ecurve": "^1.0.0",
"envify": "^4.1.0",
"event-cleanup": "^1.0.3",
"get-browser-rtc": "^1.0.2",
"got": "^15.0.0",
"merkle-lib": "^2.0.10",
"object-assign": "^4.1.0",
"old": "^0.2.0",
"once": "^1.3.3",
"pushdata-bitcoin": "^1.0.1",
"randombytes": "^2.0.1",
"safe-buffer": "^5.2.1",
"secp256k1": "^5.0.0",
"setimmediate": "^1.0.4",
"sha.js": "2.4.12",
"through2": "^4.0.0",
"typeforce": "^1.11.3",
"utf-8-validate": "^6.0.3",
"varuint-bitcoin": "^2.0.0",
"webassembly": "^0.11.0",
"websocket-stream": "^5.0.0",
"wif": "^5.0.0"
},
"devDependencies": {
"bip65": "^1.0.1",
"bs58": "^6.0.0",
"minimaldata": "^1.0.2",
"mocha": "11.7.5",
"nyc": "18.0.0",
"proxyquire": "^2.0.0",
"sinon": "^21.0.0",
"standard": "^17.0.0"
},
"license": "MIT"
}