This repository was archived by the owner on Jan 26, 2022. It is now read-only.
forked from nickbradley/autotest
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.43 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.43 KB
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
{
"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:dev": "./deploy.sh && node src/App.js",
"start:staging": "./deploy.sh && NODE_ENV='staging' forever start --minUptime 1000 --spinSleepTime 1000 -l LOGFILE -o OUTPUT -e ERRFILE --append src/App.js ",
"start:prod": "./deploy.sh && NODE_ENV='production' forever start --minUptime 1000 --spinSleepTime 1000 -l LOGFILE -o OUTPUT -e ERRFILE --append src/App.js "
},
"devDependencies": {
"@types/bull": "^1.0.31",
"@types/mocha": "^2.2.36",
"@types/node": "^6.0.52",
"chai": "^3.5.0",
"icedfrisby": "^0.3.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"tslint": "^4.0.0",
"typescript": "^2.0.0"
},
"dependencies": {
"@types/mongodb": "^2.2.7",
"bull": "^2.0.0",
"extract-zip": "^1.6.6",
"forever": "^0.15.3",
"jszip": "^3.1.5",
"mongodb": "^2.2.30",
"nano": "^6.2.0",
"node-env-file": "^0.1.8",
"redis": "^2.6.0",
"restify": "^4.3.0",
"tmp-promise": "^1.0.3"
}
}