-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.1 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
{
"name": "stratego",
"version": "0.0.1",
"private": true,
"description": "Stratego API",
"keywords": [],
"author": "",
"license": "",
"main": "app.js",
"dependencies": {
"async": "^2.1.5",
"body-parser": "^1.17.1",
"chai": "^3.5.0",
"cookie-parser": "^1.4.3",
"express": "^4.12.3",
"express-session": "^1.15.1",
"mongoose": "^4.9.1",
"passport": "^0.3.2",
"passport-avans": "^0.1.0",
"randomstring": "^1.1.5",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3",
"swagger-express-middleware": "^1.0.0-alpha.12",
"swagger-ui-express": "^1.0.5",
"yamljs": "^0.2.8"
},
"devDependencies": {
"coveralls": "^2.13.0",
"eslint": "^3.19.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^10.2.0",
"should": "^11.2.1",
"supertest": "^3.0.0"
},
"engines": {
"node": "7.x"
},
"scripts": {
"start": "node --harmony-async-await app.js",
"pretest": "./node_modules/.bin/eslint api test models",
"test": "DB_CONNECTION=mongodb://localhost:27017/stratego_test nyc mocha --harmony-async-await --recursive test"
}
}