-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
40 lines (40 loc) · 985 Bytes
/
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
{
"name": "lnrpc",
"version": "0.6.2",
"description": "User-centric Node.js gRPC client for lightningnetwork/lnd",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/eslint . && ./node_modules/.bin/mocha ./test/**/*.test.js",
"start": "node ./index.js",
"postinstall": "./bin/lnd-target | xargs printf \"lightningnetwork/lnd#%s:lnd\" | xargs napa && ./bin/cache-rpc-proto"
},
"repository": "https://github.com/Matt-Jensen/lnrpc",
"keywords": [
"lnd",
"lightning network",
"grpc",
"client",
"bitcoin",
"litecoin"
],
"author": "Matt-Jensen",
"license": "MIT",
"dependencies": {
"@grpc/proto-loader": "^0.3.0",
"grpc": "^1.14.0-pre2",
"napa": "^3.0.0",
"pkg-dir": "^2.0.0"
},
"devDependencies": {
"eslint": "^4.7.1",
"eslint-config-google": "^0.9.1",
"mocha": "^3.5.3"
},
"engines": {
"node": ">= 8.*"
},
"napa-config": {
"cache": false,
"log-level": "error"
}
}