-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "node-todo",
"version": "1.0.0",
"description": "Demo Node ToDo App",
"main": "index.js",
"scripts": {
"test": "mocha tests --recursive",
"lint": "jshint .",
"stylecheck": "jscs .",
"cover": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec tests --recursive",
"prep": "npm run lint && npm run stylecheck && npm test && npm run cover"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nalindak/node-todo.git"
},
"author": "NalindaK",
"license": "MIT",
"bugs": {
"url": "https://github.com/nalindak/node-todo/issues"
},
"homepage": "https://github.com/nalindak/node-todo#readme",
"devDependencies": {
"body-parser": "^1.15.0",
"chai": "^3.5.0",
"ejs": "^2.4.1",
"express": "^4.13.4",
"istanbul": "^0.4.2",
"jscs": "^2.11.0",
"jshint": "^2.9.1",
"mocha": "^2.4.5",
"mongoose": "^4.4.8",
"sinon": "^1.17.3"
},
"dependencies": {
"lodash": "^4.11.1",
"winston": "^2.2.0"
}
}