forked from Musinux/node-5a-livecoding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 740 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 740 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
31
32
33
{
"name": "live-coding",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"cover": "node_modules/.bin/nodemon node_modules/.bin/nyc --reporter=json --reporter=text -- mocha --exit --recursive ./test"
},
"standard": {
"env": [
"mocha"
]
},
"dependencies": {
"body-parser": "~1.15.2",
"chai": "^4.1.2",
"cookie-parser": "~1.4.3",
"debug": "~2.2.0",
"ejs": "~2.5.2",
"express": "~4.14.0",
"mongoose": "^4.13.4",
"morgan": "~1.7.0",
"serve-favicon": "~2.3.0"
},
"devDependencies": {
"mocha": "^4.0.1",
"nodemon": "^1.12.1",
"nyc": "^11.3.0",
"proxyquire": "^1.8.0",
"sinon": "^4.1.2",
"sinon-test": "^2.1.2"
}
}