-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 956 Bytes
/
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
{
"name": "astrotrain-manager",
"author": "Nicolás Echezarreta",
"repository": "https://github.com/tactivos/astrotrain-manager",
"version": "1.0.0",
"description": "Service for running managing tasks for Atrotrain",
"main": "index.js",
"license": "UNLICENSED",
"scripts": {
"clean": "rm -rf ./node_modules",
"lint": "eslint --cache .",
"start": "DEBUG=astrotrain-manager* nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 0"
},
"dependencies": {
"@octokit/app": "2.2.2",
"@octokit/rest": "16.20.0",
"body-parser": "1.18.3",
"debug": "4.1.1",
"dos-config": "3.0.2",
"express": "4.16.4",
"lodash": "4.17.11",
"rollbar": "2.5.4"
},
"devDependencies": {
"eslint": "5.15.3",
"eslint-config-node": "4.0.0",
"nodemon": "1.18.10",
"pre-commit": "1.2.2"
},
"engines": {
"node": "10.15.3",
"npm": "6.4.1"
},
"pre-commit": [
"lint"
]
}