forked from abhishekc-sharma/ToDoAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 895 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
34
35
36
37
38
39
40
41
{
"name": "ToDoAPI",
"version": "1.0.0",
"description": "A RESTful ToDo API server using Express",
"repository": {
"type": "git",
"url": "https://github.com/portgasd666/ToDoAPI.git"
},
"main": "index.js",
"scripts": {
"start": "node index",
"test": "gulp test"
},
"keywords": [
"ToDoList",
"ToDo",
"Reminder",
"Scheduler"
],
"author": "Abhishek C. Sharma",
"license": "MIT",
"dependencies": {
"body-parser": "^1.12.2",
"compression": "^1.4.3",
"debug": "^2.1.3",
"express": "^4.12.3",
"mongoose": "^4.0.1",
"morgan": "^1.5.2"
},
"devDependencies": {
"coveralls": "^2.11.2",
"gulp": "^3.8.11",
"gulp-istanbul": "^0.7.0",
"gulp-jshint": "^1.10.0",
"gulp-mocha": "^2.0.1",
"istanbul": "^0.3.13",
"mocha": "^2.2.1",
"mocha-lcov-reporter": "0.0.2",
"supertest": "^0.15.0"
}
}