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