-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 861 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 861 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": "express-restful",
"version": "1.0.0",
"description": "A simple RESTful API using ExpresJS. This is for demonstration purposes only.",
"main": "server/server.js",
"engineStrict": true,
"engines": {
"node": ">=6.0"
},
"scripts": {
"test": "mocha --timeout 10000",
"start": "nodemon ./server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ievolved/express-restful.git"
},
"author": "Shawn Bullock",
"license": "ISC",
"bugs": {
"url": "https://github.com/ievolved/express-restful/issues"
},
"homepage": "https://github.com/ievolved/express-restful#readme",
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-fuzzy": "^1.6.1",
"chai-http": "^3.0.0",
"request": "^2.79.0"
}
}