-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.87 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "raido",
"version": null,
"description": "Microservice for shortest path routing on Norwegian trails",
"main": "index.js",
"files": [
"controllers",
"index.js",
"lib",
"test"
],
"scripts": {
"codacy-coverage": "codacy-coverage",
"cover": "istanbul cover --report lcovonly ./node_modules/.bin/_mocha -- -r test/support/env test/**",
"lint": "eslint index.js test/ lib/ controllers/",
"nsp": "nsp check",
"semantic-release": "semantic-release",
"start": "supervisor index.js",
"test": "mocha -b -c --check-leaks -R tap -r test/support/env test/**",
"test:watch": "mocha -w -b -c --check-leaks -R progress -r test/support/env test/**",
"greenkeeper-postpublish": "greenkeeper-postpublish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Turistforeningen/Raido.git"
},
"author": "Den Norske Turistforening (DNT) <[email protected]>",
"contributors": [
"Hans Kristian Flaatten <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Turistforeningen/Raido/issues"
},
"homepage": "https://github.com/Turistforeningen/Raido#readme",
"dependencies": {
"@starefossen/express-cors": "^1.0.0",
"@starefossen/express-health": "^1.0.0",
"@starefossen/http-error": "^1.0.0",
"compression": "^1.6.2",
"express": "^4.13.4",
"newrelic": "^1.28.0",
"pg": "^6.0.0",
"raven": "^0.11.0",
"response-time": "^2.3.1"
},
"devDependencies": {
"codacy-coverage": "^1.1.3",
"eslint": "^3.1.0",
"eslint-config-airbnb-base": "^4.0.2",
"eslint-plugin-import": "^1.11.0",
"greenkeeper-postpublish": "^1.0.0",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"nsp": "^2.4.0",
"semantic-release": "^4.3.5",
"supertest": "^1.2.0",
"supervisor": "^0.11.0"
},
"engines": {
"node": ">=6.0.0"
}
}