This repository has been archived by the owner on Apr 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
76 lines (76 loc) · 2.31 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
{
"name": "lnd-engine",
"version": "0.10.1-beta",
"description": "A Sparkswap Engine for LND lightning implementation",
"main": "src/index.js",
"nyc": {
"exclude": [
"**/*.spec.js",
"src/lnd-actions/*"
]
},
"scripts": {
"build": "bash ./scripts/build.sh",
"pretest": "npm run format",
"test": "npm run check-for-cycles && npm run check-unused && npm run typecheck && npm run test-engine",
"test-engine": "NODE_PATH=. mocha 'src/**/*.spec.js'",
"coverage": "nyc npm run test",
"lint": "eslint src test --ext .js --max-warnings=0",
"format": "npm run lint -- --fix",
"docs": "jsdoc -c .jsdoc.json",
"postdoc": "http-server docs",
"ci-test": "npm run typecheck && npm run format && npm run test-engine",
"check-for-cycles": "madge --circular src/",
"check-unused": "node ./scripts/check-unused.js",
"typecheck": "tsc --alwaysStrict --allowJs --checkJs --noEmit --resolveJsonModule --downlevelIteration --noImplicitReturns --noUnusedLocals --noUnusedParameters --strictFunctionTypes --strictNullChecks --target es2018 --moduleResolution node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sparkswap/lnd-engine.git"
},
"keywords": [
"sparkswap",
"lnd",
"lightning",
"btc",
"bitcoin",
"ltc",
"litecoin"
],
"author": "Sparkswap <dev@sparkswap.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sparkswap/lnd-engine/issues"
},
"homepage": "https://github.com/sparkswap/lnd-engine#readme",
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"dirty-chai": "2.0.1",
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsdoc": "18.1.1",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-standard": "4.0.1",
"http-server": "0.11.1",
"jsdoc": "3.6.3",
"madge": "3.6.0",
"minami": "1.2.3",
"mocha": "6.2.2",
"nyc": "14.0.0",
"rewire": "4.0.1",
"sinon": "7.3.2",
"sinon-chai": "3.3.0",
"timekeeper": "2.2.0",
"timeout-as-promise": "1.0.0",
"typescript": "3.7.2"
},
"dependencies": {
"@grpc/proto-loader": "0.5.0",
"big.js": "5.2.2",
"compare-versions": "3.5.1",
"grpc": "1.22.2"
}
}