-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "airroutesDemo",
"version": "1.0.0",
"description": "Simple demo using the airroutes dataset",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node ./bin/www",
"coverage": "istanbul cover node_modules/.bin/_mocha -- test/unit/*.spec.js",
"test": "node_modules/.bin/_mocha -- test/unit/*.spec.js",
"eslint": "eslint -c .eslintrc --ignore-path .eslintignore ./"
},
"repository": {
"type": "git",
"url": "git://github.com/chupman/airroutes-demo.git"
},
"keywords": [
"airroutes demo",
"janusgraph demo"
],
"author": "Chris Hupman <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/chupman/airroutes-demo/issues"
},
"homepage": "https://github.com/chupman/airroutes-demo",
"dependencies": {
"cookie-parser": "~1.4.3",
"csurf": "^1.9.0",
"debug": "~2.6.9",
"express": "^4.16.3",
"gremlin": "^3.3.4",
"http-errors": "~1.6.2",
"jquery": "^3.3.1",
"morgan": "^1.9.1",
"pug": "2.0.0-beta11",
"request": "^2.88.0",
"svg.js": "^2.6.4"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"gulp": "^4.0.0",
"gulp-apidoc": "^0.2.7",
"istanbul": "^0.4.5",
"mocha": "^5.0.5",
"nock": "^9.2.3"
}
}