-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
88 lines (88 loc) · 2.44 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
84
85
86
87
88
{
"name": "lnd-binary",
"version": "0.3.26",
"description": "Download the latest lnd binary",
"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-src": "babel src --out-dir dist",
"build-lnd-bin": "mkdir -p dist/bin && babel src/bin/lnd --out-file dist/bin/lnd && chmod +xx dist/bin/lnd",
"build-lnd-install-bin": "mkdir -p dist/bin && babel src/bin/lnd-install --out-file dist/bin/lnd-install && chmod +xx dist/bin/lnd-install",
"build": "npm run build-src && npm run build-lnd-bin && npm run build-lnd-install-bin",
"clean": "rm -r ./dist",
"preversion": "npm test",
"prepack": "npm run build",
"postinstall": "postinstall-build dist && node ./dist/bin/lnd-install"
},
"files": [
".babelrc",
"config",
"dist",
"lib"
],
"bin": {
"lnd": "./dist/bin/lnd",
"lnd-install": "./dist/bin/lnd-install"
},
"pre-push": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mrfelton/lnd-binary.git"
},
"dependencies": {
"axios": "1.3.3",
"cacache": "17.0.4",
"debug": "4.3.4",
"find-config": "1.0.0",
"fs-extra": "11.1.0",
"go-platform": "1.0.0",
"gunzip-maybe": "1.4.2",
"hasha": "5.2.2",
"npmlog": "7.0.1",
"postinstall-build": "5.0.3",
"source-map-support": "0.5.21",
"tar-fs": "2.1.1",
"true-case-path": "2.2.1",
"unzip-stream": "0.3.1"
},
"keywords": [
"bitcoin",
"lightning-network",
"lnd"
],
"author": "Tom Kirkpatrick <[email protected]> (http://www.kirkdesigns.co.uk/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrfelton/lnd-binary/issues"
},
"homepage": "https://github.com/mrfelton/lnd-binary",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-add-module-exports": "1.0.4",
"babel-plugin-source-map-support": "2.2.0",
"babel-preset-env": "1.7.0",
"babel-register": "6.26.0",
"babel-tape-runner": "3.0.0",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"prettier": "2.8.4",
"prettier-eslint": "15.0.1",
"prettier-eslint-cli": "7.1.0",
"tap-spec": "5.0.0",
"tape": "5.6.3",
"tape-promise": "4.0.0"
},
"buildDependencies": [
"babel-cli",
"babel-plugin-add-module-exports",
"babel-preset-env"
]
}