-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.68 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
{
"name": "lnd-tools",
"version": "1.1.1",
"description": "On-host tools for LND",
"main": "lnd-tools.js",
"bin": "lnd-tools.js",
"license": "ISC",
"engines": {
"node": "18"
},
"keywords": [
"bitcoin",
"lnd",
"lightning"
],
"author": "Kenny Joseph",
"contributors": [
{
"name": "Kenny Joseph",
"email": "[email protected]"
}
],
"scripts": {
"start": "node index.js",
"clean:dev": "rm -rf node_modules && npm i",
"clean:prod": "rm -rf node_modules && npm i --omit=dev",
"build": "./build.sh",
"build:all": "./build.sh --all",
"compile": "pkg .",
"precommit": "npm run lint",
"lint": "eslint --ignore-pattern *.test.js .",
"test": "test",
"test:unit": "mocha test/unit/**/*.unit.test.js",
"ci:test:unit": "npm run test:unit",
"test:integration": "cd test/integration && ./testRunner.js",
"ci:test:integration": "npm run test:integration"
},
"pkg": {
"assets": [
".temp/node_modules/classic-level/prebuilds/**/*",
".temp/node_modules/lightning/grpc/protos/*.proto",
".temp/server/**/*",
".temp/client/**/*",
".temp/*.js"
]
},
"devDependencies": {
"chai": "^4.3.6",
"crypto-rpc": "https://github.com/bitpay/crypto-rpc.git#e8106ed18740b0257a90365e830726cd66e912f6",
"dotenv": "^16.0.2",
"eslint": "^8.23.0",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"pkg": "^5.8.0",
"sinon": "^14.0.0",
"supertest": "^6.2.4"
},
"dependencies": {
"commander": "^10.0.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"level": "^8.0.0",
"level-read-stream": "^1.1.0",
"lightning": "^9.6.0",
"secp256k1": "^5.0.0"
}
}