This repository has been archived by the owner on Mar 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
83 lines (83 loc) · 2.27 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
81
82
83
{
"name": "lnd-grpc",
"version": "0.5.4",
"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": "DEBUG=lnrpc* babel-tape-runner test/*.js | tap-spec",
"test-tor": "DEBUG=lnrpc* TOR=true babel-tape-runner test/grpc.test.js | tap-spec",
"lint": "prettier-eslint --write \"$PWD/**/*.{js,json,md}\"",
"build": "npm run clean && cross-env NODE_ENV=production babel src --out-dir dist",
"clean": "rimraf ./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 <[email protected]> (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.20.7",
"@babel/plugin-proposal-export-default-from": "7.18.10",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/preset-env": "7.20.2",
"babel-eslint": "10.1.0",
"babel-plugin-add-module-exports": "1.0.4",
"babel-plugin-source-map-support": "2.2.0",
"babel-tape-runner": "3.0.0",
"core-js": "3.28.0",
"cross-env": "7.0.3",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"lnd-binary": "0.3.26",
"prettier": "2.8.4",
"prettier-eslint": "15.0.1",
"prettier-eslint-cli": "7.1.0",
"rimraf": "4.1.2",
"sinon": "15.0.1",
"source-map-support": "0.5.21",
"split2": "4.1.0",
"tap-spec": "5.0.0",
"tape": "5.6.3",
"tape-promise": "4.0.0"
},
"dependencies": {
"@grpc/grpc-js": "1.3.7",
"@grpc/proto-loader": "0.6.4",
"debug": "4.3.4",
"get-port": "5.1.1",
"javascript-state-machine": "3.1.0",
"lndconnect": "0.2.10",
"lodash.clonedeep": "4.5.0",
"lodash.defaultsdeep": "4.6.1",
"semver": "7.3.8",
"untildify": "4.0.0",
"validator": "13.9.0"
}
}