-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "lightninggem",
"version": "1.0.0-beta.1",
"description": "A game of speculation using bitcoin and the lightning network",
"main": "main.js",
"dependencies": {
"body-parser": "^1.18.2",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-rate-limit": "^2.11.0",
"grpc": "^1.12.3",
"helmet": "^3.12.0",
"memory-cache": "^0.2.0",
"mongodb": "^3.0.4",
"node-schedule": "^1.3.0",
"winston": "^2.4.1"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"mocha": "^5.0.5",
"supertest": "^3.0.0"
},
"engines": {
"node": ">=7.6.0"
},
"scripts": {
"test": "mocha --reporter spec --exit",
"lint": "eslint ./**/*.js",
"start": "node main.js"
},
"keywords": [
"bitcoin",
"lightning",
"lightninggem",
"gem",
"lightning gem",
"lightning network",
"cryptocurrency",
"lnd"
],
"author": "Daniel McNally",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/sangaman/lightninggem.git"
},
"bugs": {
"url": "https://github.com/sangaman/lightninggem/issues"
},
"homepage": "https://github.com/sangaman/lightninggem#readme"
}