-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 890 Bytes
/
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
{
"name": "node-training",
"description": "Simple 101 tutorial",
"version": "0.0.1",
"author": "Thomas Beutler",
"dependencies": {
"express": "~3.4.8",
"lodash": "~2.4.1"
},
"devDependencies": {
"chai": "~1.9.0",
"mocha": "~1.17.1",
"sinon": "~1.9.0",
"sinon-chai": "~2.5.0",
"proxyquire": "~0.5.2",
"supertest": "~0.9.0"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/tcbeutler/node-training"
},
"engines": {
"node": ">=0.10.21"
},
"scripts": {
"start": "node app",
"test": "node node_modules/mocha/bin/_mocha --recursive --reporter spec",
"watch": "node node_modules/mocha/bin/_mocha --watch",
"cover": "node node_modules/istanbul/lib/cli.js node_modules/mocha/bin/_mocha",
"jshint": "node node_modules/jshint/bin/jshint -c config/.jshintrc app test app.js"
}
}