-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 756 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 756 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
34
{
"name": "students",
"version": "1.0.0",
"description": "Students Management System",
"main": "index.js",
"dependencies": {
"body-parser": "^1.12.0",
"cookie-parser": "^1.3.4",
"express": "^4.12.0",
"express-session": "^1.10.3",
"jade": "^1.9.2",
"mongodb": "^1.4.32",
"mongoose": "^3.8.24"
},
"devDependencies": {
"expect.js": "^0.3.1",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-uglify": "^0.8.0",
"jshint": "^2.6.3",
"precommit-hook": "^1.0.7",
"superagent": "^0.21.0"
},
"scripts": {
"test": "mocha tests/*.js --recursive",
"lint": "grunt jshint"
},
"author": "Ratnadeep",
"license": "ISC",
"precommit": [
"lint",
"test"
]
}