-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.33 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
{
"name": "syscointx-js",
"version": "1.0.108",
"description": "A transaction creation library interfacing with coin selection for Syscoin.",
"keywords": [
"coinselect",
"syscointx",
"coin",
"unspents",
"wallet",
"BIP32",
"management",
"utxo",
"transaction",
"fee",
"optimization",
"optimizing",
"bitcoin",
"syscoin"
],
"homepage": "https://github.com/syscoin/syscointx-js",
"bugs": {
"url": "https://github.com/syscoin/syscointx-js/issues"
},
"license": "MIT",
"author": "Jagdeep Sidhu",
"files": [
"bn-extensions.js",
"index.js",
"bufferutils.js",
"bufferutilsassets.js",
"types.js",
"utils.js"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/syscoin/syscointx-js.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"
},
"devDependencies": {
"nyc": "^15.1.0",
"standard": "*",
"tape": "^5.0.1"
},
"dependencies": {
"bitcoin-ops": "^1.4.1",
"bitcoinjs-lib": "^5.2.0",
"bn.js": "^5.1.3",
"coinselectsyscoin": "^1.0.79",
"secp256k1": "^3.8.0",
"typeforce": "^1.18.0",
"varuint-bitcoin": "^1.1.2"
}
}