-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.17 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
{
"name": "AutoTest",
"description": "CPSC 310 GitHub integration service.",
"homepage": "https://github.com/nickbradley/autotest",
"author": "Nick Bradley",
"contributors": "N/A",
"license": "GPL-3.0",
"repository": "N/A",
"bugs": "",
"keywords": [],
"version": "1.0.0",
"scripts": {
"clean": "rm -rf node_modules; rm -rf typings",
"config": "npm install",
"build": "tsc",
"test": "mocha --recursive",
"deploy": "env $(cat autotest.env | xargs) ./deploy.sh",
"start": "docker start autotest-redis && docker start autotest-db && node src/App.js",
"startf": "docker start autotest-redis && docker start autotest-db && forever --minUptime 1000 --spinSleepTime 1000 src/App.js 2>&1 | tee output.log"
},
"devDependencies": {
"@types/mocha": "^2.2.36",
"@types/node": "^6.0.52",
"@types/bull": "^1.0.31",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"chai": "^3.5.0",
"icedfrisby": "^0.3.0",
"tslint": "^4.0.0",
"typescript": "^2.0.0"
},
"dependencies": {
"restify": "^4.3.0",
"node-env-file": "^0.1.8",
"bull": "^2.0.0",
"redis": "^2.6.0",
"nano": "^6.2.0",
"tmp-promise": "^1.0.3"
}
}