forked from syscoin/syscoinjs-lib-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 979 Bytes
/
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
{
"name": "syscoinjs-lib-examples",
"version": "1.0.0",
"description": "Examples of 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-examples",
"bugs": {
"url": "https://github.com/syscoin/syscoinjs-lib-examples/issues"
},
"license": "MIT",
"author": "Jagdeep Sidhu",
"files": [
"index.js"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/syscoin/syscoinjs-lib-examples.git"
},
"scripts": {
"standard": "standard"
},
"devDependencies": {
"nyc": "^15.0.1",
"standard": "*"
},
"dependencies": {
"syscoinjs-lib": "^1.0.141",
"syscointx-js": "^1.0.89"
}
}