-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"name": "hex-api",
"version": "1.0.1",
"description": "A Hacker News API built for Hex for Android.",
"author": "Sean Powell <sean@longdivision.co.uk>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git@github.com:longdivision/hex-api.git"
},
"scripts": {
"start": "nf start",
"test": "npm run unit && npm run lint",
"unit": "mocha --recursive test/unit",
"lint": "eslint --fix .",
"generate-docs": "aglio -i docs/hex-api.apib -o docs/generated/index.html --theme-template triple --theme-variables streak"
},
"dependencies": {
"compression": "^1.6.2",
"express": "^4.14.0",
"firebase": "^3.4.0",
"foreman": "^2.0.0",
"js-logger": "^1.3.0",
"morgan": "^1.7.0",
"newrelic": "^1.30.3",
"psl": "^1.1.14",
"q": "^2.0.3",
"redis": "^2.6.2",
"response-time": "^2.3.1",
"superagent": "^2.2.0"
},
"engines": {
"node": "6.6.0"
},
"devDependencies": {
"aglio": "*",
"chai": "*",
"eslint": "*",
"mocha": "*"
}
}