-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 785 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 785 Bytes
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
{
"name": "inspire",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"lint": "./node_modules/.bin/eslint",
"test": "./node_modules/.bin/_mocha --recursive ./tests/**/*.js && exit 0",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --recursive ./tests/**/*.js"
},
"dependencies": {
"body-parser": "~1.13.2",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"express": "~4.13.1",
"jade": "~1.11.0",
"morgan": "~1.6.1",
"serve-favicon": "~2.3.0",
"socket.io": "^1.4.5"
},
"devDependencies": {
"chai": "^3.5.0",
"co": "^4.6.0",
"coveralls": "^2.11.8",
"eslint": "^2.4.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"mocha-eslint": "^2.0.1"
}
}