-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.61 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.61 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
{
"name": "syscoinjs-lib",
"version": "1.0.268",
"description": "A transaction creation library interfacing with coin selection for Syscoin.",
"keywords": [
"coinselect",
"coin",
"unspents",
"wallet",
"BIP32",
"management",
"utxo",
"transaction",
"fee",
"optimization",
"optimizing",
"bitcoin",
"syscoin",
"syscoinjs"
],
"homepage": "https://github.com/syscoin/syscoinjs-lib",
"bugs": {
"url": "https://github.com/syscoin/syscoinjs-lib/issues"
},
"license": "MIT",
"author": "Jagdeep Sidhu",
"files": [
"index.js",
"utils.js",
"bip84-replacement.js",
"polyfills"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/syscoin/syscoinjs-lib.git"
},
"scripts": {
"coverage": "nyc --check-coverage --branches 100 --functions 100 tape test/*.js",
"standard": "standard --fix",
"test": "npm run standard && npm run unit",
"unit": "tape test/*.js"
},
"devDependencies": {
"nyc": "^15.1.0",
"standard": "*",
"tape": "^5.0.1"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.2.0",
"@ethersproject/abi": "^5.8.0",
"@ethersproject/keccak256": "^5.8.0",
"@ethersproject/providers": "^5.8.0",
"axios": "^1.13.2",
"bip32": "^5.0.0-rc.0",
"bip39": "^3.1.0",
"bitcoin-ops": "^1.4.1",
"bitcoinjs-lib": "^7.0.0-rc.0",
"bn.js": "^5.1.3",
"bs58": "^6.0.0",
"ecpair": "^3.0.0-rc.0",
"eth-object": "https://github.com/syscoin/eth-object.git",
"eth-proof": "^2.1.6",
"syscointx-js": "^1.0.124",
"varuint-bitcoin": "^2.0.0"
}
}