-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.46 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.46 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
56
57
58
59
60
61
{
"name": "@cheevr/server",
"version": "1.1.1",
"description": "A preconfigured express server set up to serve both html pages and json rest responses",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Cheevr/Server.git"
},
"keywords": [
"express",
"pug",
"stylus",
"web",
"rest"
],
"author": "Ravi Gairola <ravi@cheevr.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Cheevr/Server/issues"
},
"scripts": {
"test": "nyc --reporter=text --reporter=html mocha --recursive",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"async": "^2",
"babel-preset-es2015": "^6",
"babelify": "^7",
"body-parser": "^1",
"browserify": "^13",
"@cheevr/config": "^1",
"@cheevr/database": "^1",
"@cheevr/lang": "^1",
"@cheevr/logging": "^1",
"@cheevr/metrics": "^1",
"@cheevr/tasks": "^1",
"compression": "^1",
"cookie-parser": "^1",
"express": "^4",
"express-rate-limit": "^2",
"express-token-api-middleware": "^0.6",
"geoip-lite": "^1",
"helmet": "^3",
"lodash": "^4",
"moment": "^2",
"pug": "^2.0.0-beta6",
"response-time": "^2",
"shortid": "^2",
"stylus": "^0.54",
"uglify-js": "^2",
"versioned-api-router": "^0.7",
"winston": "^2"
},
"devDependencies": {
"chai": "^3",
"coveralls": "^2",
"mocha": "^3",
"nyc": "^11"
}
}