forked from alexbosworth/ln-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.38 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
{
"author": {
"name": "Alex Bosworth",
"url": "https://twitter.com/alexbosworth"
},
"bugs": {
"url": "https://github.com/alexbosworth/ln-service/issues"
},
"dependencies": {
"bolt07": "1.7.3",
"cors": "2.8.5",
"express": "4.17.1",
"invoices": "2.0.0",
"lightning": "3.4.0",
"macaroon": "3.0.4",
"morgan": "1.10.0",
"ws": "7.5.3"
},
"description": "Interaction helper for your Lightning Network daemon",
"devDependencies": {
"@alexbosworth/tap": "15.0.9",
"async": "3.2.0",
"asyncjs-util": "1.2.6",
"bip66": "1.1.5",
"bitcoinjs-lib": "5.2.0",
"bn.js": "5.2.0",
"node-fetch": "2.6.1",
"portfinder": "1.0.28",
"psbt": "1.1.10",
"rimraf": "3.0.2",
"secp256k1": "4.0.2",
"uuid": "8.3.2",
"varuint-bitcoin": "1.1.2"
},
"engines": {
"node": ">=10.10.0"
},
"keywords": [
"bitcoin",
"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": {
"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 120 -j 1 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",
"test": "tap --branches=1 --functions=1 --lines=1 --statements=1 -j 1 -t 150 test/autopilotrpc-integration/*.js test/chainrpc-integration/*.js test/integration/*.js test/invoicesrpc-integration/*.js test/routerrpc-integration/*.js test/routers-integration/*.js test/signerrpc-integration/*.js test/tower_clientrpc-integration/*.js test/tower_serverrpc-integration/*.js test/walletrpc-integration/*.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": "51.10.0"
}