-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 741 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 741 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
{
"name": "fake-api-server",
"version": "0.4.0",
"author": "Andrew Couch <fake-api-server@andrewcou.ch>",
"description": "A simple, easy mock REST API server.",
"repository": {
"type": "git",
"url": "https://github.com/couchand/fake-api-server.git"
},
"scripts": {
"test": "make && mocha"
},
"main": "./lib/index",
"license": "MIT",
"keywords": [
"mock",
"rest",
"server"
],
"dependencies": {
"body-parser": "^1.13.2",
"express": "^4.13.1"
},
"devDependencies": {
"chai": "^3.2.0",
"coffee-script": "^1.9.3",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-coffee": "^0.13.0",
"grunt-mocha-test": "^0.12.7",
"mocha": "^2.2.5"
}
}