forked from bitcoinjs/coinselect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.11 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
{
"name": "@cryptounifier/coinselect-plus",
"version": "3.4.0",
"description": "A transaction input selection module for bitcoin and altcoins.",
"keywords": [
"coinselect",
"coin",
"unspents",
"wallet",
"BIP32",
"management",
"utxo",
"transaction",
"fee",
"optimization",
"optimizing",
"bitcoin"
],
"homepage": "https://github.com/cryptounifier/coinselect-plus",
"bugs": {
"url": "https://github.com/cryptounifier/coinselect-plus/issues"
},
"license": "MIT",
"author": "Daniel Cousens",
"files": [
"accumulative.js",
"blackjack.js",
"break.js",
"index.js",
"split.js",
"utils.js"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/cryptounifier/coinselect-plus.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.0.0",
"standard": "*",
"tape": "^4.5.1"
},
"dependencies": {}
}