-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 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
{
"name": "lnrpc-node-client",
"version": "1.1.2",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint-check": "eslint . | eslint-config-prettier-check"
},
"repository": "https://github.com/Tierion/lnrpc-node-client.git",
"keywords": [
"lightning",
"ln",
"rpc",
"javascript",
"nodejs"
],
"author": "jacohend",
"license": "Apache-2.0",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^3.0.0",
"lint-staged": "^9.1.0",
"prettier": "^1.17.0"
},
"dependencies": {
"@grpc/proto-loader": "^0.5.2",
"bluebird": "^3.5.5",
"grpc": "^1.23.3",
"is-base64": "1.0.0"
}
}