forked from LN-Zap/node-lnd-grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.11 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
{
"name": "lnd-grpc",
"version": "0.2.9",
"description": "Repository of lnd rpc protocol files and utilities for working with them",
"main": "./dist/index.js",
"engines": {
"node": ">=6.0.0",
"npm": ">=4.0.0"
},
"scripts": {
"test": "babel-tape-runner test/*.js | tap-spec",
"lint": "prettier-eslint --write \"./**/*.{js,json,md}\"",
"build": "npm run clean && cross-env NODE_ENV=production babel src --out-dir dist",
"clean": "rimraf -r ./dist",
"preversion": "npm test",
"prepack": "npm run build"
},
"files": [
".babelrc",
"dist",
"src",
"proto"
],
"pre-push": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LN-Zap/node-lnd-grpc.git"
},
"keywords": [
"bitcoin",
"lightning-network",
"lnd",
"grpc"
],
"author": "Tom Kirkpatrick <tkp@kirkdesigns.co.uk> (http://www.kirkdesigns.co.uk/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/LN-Zap/node-lnd-grpc/issues"
},
"homepage": "https://github.com/LN-Zap/node-lnd-grpc",
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/plugin-proposal-export-default-from": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.4.4",
"@babel/preset-env": "7.4.4",
"babel-eslint": "10.0.1",
"babel-plugin-add-module-exports": "1.0.2",
"babel-plugin-source-map-support": "2.0.1",
"babel-tape-runner": "3.0.0",
"core-js": "3.1.2",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"lnd-binary": "0.3.10",
"prettier": "1.17.1",
"prettier-eslint": "8.8.2",
"prettier-eslint-cli": "4.7.1",
"rimraf": "2.6.3",
"sinon": "7.3.2",
"source-map-support": "0.5.12",
"split2": "3.1.1",
"tap-spec": "5.0.0",
"tape": "4.10.1",
"tape-promise": "4.0.0"
},
"dependencies": {
"@grpc/grpc-js": "0.4.0",
"@grpc/proto-loader": "0.5.1",
"debug": "4.1.1",
"javascript-state-machine": "3.1.0",
"lndconnect": "0.2.7",
"lodash.defaultsdeep": "4.6.0",
"semver": "6.0.0",
"untildify": "4.0.0",
"validator": "10.11.0"
}
}