forked from alexbosworth/ln-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.94 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
{
"author": "Alex Bosworth",
"bugs": {
"url": "https://github.com/alexbosworth/ln-service/issues"
},
"dependencies": {
"@datastructures-js/priority-queue": "1.0.2",
"@grpc/proto-loader": "0.5.2",
"async": "3.1.0",
"asyncjs-util": "1.1.2",
"basicauth-middleware": "3.1.0",
"bech32": "1.1.3",
"bitcoinjs-lib": "5.1.6",
"bn.js": "5.0.0",
"body-parser": "1.19.0",
"bolt07": "1.4.3",
"compression": "1.7.4",
"cors": "2.8.5",
"dotenv": "8.1.0",
"express": "4.17.1",
"grpc": "1.23.3",
"is-base64": "1.0.0",
"is-hex": "1.1.3",
"lodash": "4.17.15",
"morgan": "1.9.1",
"promptly": "3.0.3",
"request": "2.88.0",
"safe-compare": "1.1.4",
"secp256k1": "3.7.1",
"ws": "7.1.2"
},
"description": "Interaction helper for your Lightning Network daemon",
"devDependencies": {
"portfinder": "1.0.24",
"rimraf": "3.0.0",
"tap": "14.6.9",
"uuid": "3.3.3",
"varuint-bitcoin": "1.1.2"
},
"engines": {
"node": ">=10.4.0"
},
"keywords": [
"grpc",
"lightning",
"lightning-network",
"lnd"
],
"license": "MIT",
"main": "index.js",
"name": "ln-service",
"repository": {
"type": "git",
"url": "https://github.com/alexbosworth/ln-service.git"
},
"scripts": {
"all-integration-tests": "tap -j 1 -t 120 test/autopilot/*.js test/autopilotrpc-integration/*.js test/backups/*.js test/chain/*.js test/bolt02/*.js test/bolt11/*.js test/chainrpc-integration/*.js test/graph/*.js test/grpc/*.js test/grpc-integration/*.js test/integration/*.js test/invoices/*.js test/invoicesrpc-integration/*.js test/router/*.js test/routerrpc-integration/*.js test/routing/*.js test/signerrpc-integration/*.js test/tower_serverrpc-integration/*.js test/towers/*.js test/unlocker/*.js test/wallet/*.js test/walletrpc-integration/*.js",
"autopilot-integration-tests": "tap --no-coverage -t 90 test/autopilotrpc-integration/*.js",
"chain-integration-tests": "tap --no-coverage -t 90 test/chainrpc-integration/*.js",
"integration-tests": "tap --no-coverage -t 90 test/grpc-integration/*.js test/integration/*.js",
"invoices-integration-tests": "tap --no-coverage -t 90 test/invoicesrpc-integration/*.js",
"router-integration-tests": "tap --no-coverage -j 2 -t 90 test/routerrpc-integration/*.js",
"signer-integration-tests": "tap --no-coverage test/signerrpc-integration/*.js",
"start": "node server.js",
"test": "tap test/autopilot/*.js test/backups/*.js test/bolt02/*.js test/bolt11/*.js test/chain/*.js test/graph/*.js test/grpc/*.js test/invoices/*.js test/router/*.js test/routing/*.js test/towers/*.js test/unlocker/*.js test/wallet/*.js",
"tower_client-integration-tests": "tap --no-coverage test/tower_clientrpc-integration/*.js",
"tower_server-integration-tests": "tap --no-coverage test/tower_serverrpc-integration/*.js",
"wallet-integration-tests": "tap --no-coverage test/walletrpc-integration/*.js"
},
"version": "46.3.3"
}