-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.53 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.53 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
47
48
49
50
51
52
53
54
55
{
"name": "SunshineAPI",
"version": "1.0.0",
"description": "REST API for the Overcast Network",
"main": "bin/www",
"repository": {
"type": "git",
"url": "https://github.com/SunshineAPI/WebAPI"
},
"issues": {
"url": "https://github.com/SunshineAPI/SunshineWebAPI/issues"
},
"author": "Gil Rosenthal <gil.a.rosenthal@gmail.com>",
"contributors": [
{
"name": "Jake0oo0",
"email": "jake0oo0dev@gmail.com"
},
{
"name": "Jacob Bearden",
"email": "jacob@bearden.io"
},
{
"name": "Shawn Zimmer",
"email": "szboyy@gmail.com"
}
],
"scripts": {
"start": "node bin/www",
"forever": "forever start -l logs/log.log -o logs/out.log -e logs/error.log -p ./ -a --minUptime 8000 --spinSleepTime 1500 bin/www",
"test": "mocha",
"test-all": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"postinstall": "cp 'config.example.js' 'config.js'",
"jshint": "jshint **/*.js"
},
"dependencies": {
"body-parser": "^1.13.2",
"cheerio": "^0.19.0",
"cookie-parser": "^1.3.5",
"express": "^4.13.1",
"express-handlebars": "^2.0.1",
"handlebars": "^4.0.5",
"redis": "^2.4.1",
"request": "^2.58.0"
},
"devDependencies": {
"chai": "^3.2.0",
"coveralls": "^2.11.3",
"istanbul": "^0.4.1",
"jshint": "^2.9.1-rc1",
"mocha": "^2.2.5",
"mocha-lcov-reporter": "1.0.0"
},
"license": "GPL-3.0"
}