-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
87 lines (87 loc) · 2.86 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"author": {
"name": "Alex Bosworth",
"url": "https://twitter.com/alexbosworth"
},
"bin": {
"bos": "bos"
},
"bugs": {
"url": "https://github.com/alexbosworth/balanceofsatoshis/issues"
},
"dependencies": {
"@alexbosworth/blockchain": "2.0.0",
"@alexbosworth/caporal": "2.0.0",
"@alexbosworth/fiat": "2.0.0",
"@alexbosworth/html2unicode": "1.1.5",
"@alexbosworth/node-fetch": "2.6.2",
"abort-controller": "3.0.0",
"asciichart": "1.5.25",
"async": "3.2.6",
"asyncjs-util": "1.2.12",
"bech32": "2.0.0",
"bip66": "2.0.0",
"bitcoinjs-lib": "6.1.6",
"bolt01": "2.0.0",
"bolt03": "1.3.2",
"bolt07": "1.9.4",
"cbor": "10.0.2",
"colorette": "2.0.20",
"crypto-js": "4.2.0",
"csv-parse": "5.5.6",
"ecpair": "2.1.0",
"goldengate": "14.0.9",
"grammy": "1.31.0",
"hot-formula-parser": "4.0.0",
"import-lazy": "4.0.0",
"ini": "5.0.0",
"inquirer": "12.0.1",
"ln-accounting": "8.0.5",
"ln-service": "57.22.2",
"ln-sync": "6.4.0",
"ln-telegram": "6.1.10",
"minimist": "1.2.8",
"moment": "2.30.1",
"paid-services": "6.2.0",
"probing": "5.0.3",
"psbt": "3.0.0",
"qrcode-terminal": "0.12.0",
"sanitize-filename": "1.6.3",
"socks-proxy-agent": "8.0.4",
"table": "6.8.2",
"tabtab": "3.0.2",
"tiny-secp256k1": "2.2.3",
"window-size": "1.1.1"
},
"description": "Lightning balance CLI",
"devDependencies": {
"invoices": "3.0.0",
"ln-docker-daemons": "6.0.23"
},
"engines": {
"node": ">=18"
},
"keywords": [
"cli",
"lightning",
"lightning-network",
"lnd",
"rebalance",
"submarine-swaps"
],
"license": "MIT",
"main": "index.js",
"name": "balanceofsatoshis",
"repository": {
"type": "git",
"url": "https://github.com/alexbosworth/balanceofsatoshis.git"
},
"scripts": {
"build-docker": "docker build -t alexbosworth/balanceofsatoshis . && docker save alexbosworth/balanceofsatoshis > balanceofsatoshis.tar && gzip balanceofsatoshis.tar",
"integration-tests": "node test/integration",
"postpack": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag -s v$PACKAGE_VERSION -m v$PACKAGE_VERSION && git push github --tags",
"postpublish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t alexbosworth/balanceofsatoshis -t alexbosworth/balanceofsatoshis:$npm_package_version --push .",
"test": "npx [email protected] node --experimental-test-coverage --test test/arrays/*.js test/balances/*.js test/chain/*.js test/display/*.js test/encryption/*.js test/lnd/*.js test/network/*.js test/nodes/*.js test/peers/*.js test/responses/*.js test/routing/*.js test/services/*.js test/swaps/*.js test/tags/*.js test/telegram/*.js test/wallets/*.js"
},
"version": "19.4.4"
}