forked from syscoin/syscoinjs-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.5 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
{
"name": "syscoinjs-lib",
"version": "1.0.142",
"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"
],
"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",
"test": "npm run standard && npm run unit",
"unit": "tape test/*.js",
"browserify": "browserify index.js -s syscoinjs -o syscoinjs-lib.browser.js"
},
"devDependencies": {
"browserify": "^17.0.0",
"nyc": "^15.1.0",
"standard": "*",
"tape": "^5.0.1"
},
"dependencies": {
"axios": "^0.21.1",
"bip84": "^0.2.5",
"bitcoin-ops": "^1.4.1",
"bitcoinjs-lib": "^5.2.0",
"bn.js": "^5.1.3",
"crypto-js": "^4.0.0",
"eth-object": "^1.0.3",
"eth-proof": "^2.1.6",
"node-localstorage": "^2.1.6",
"rlp": "^2.2.6",
"syscointx-js": "^1.0.90",
"varuint-bitcoin": "^1.1.2",
"web3": "^1.3.6"
}
}