This repository was archived by the owner on Feb 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 KB
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
42
43
44
45
46
47
48
{
"name": "mock-server",
"version": "1.0.0-dev",
"description": "A simple mock server with dynamic routes and templated responses.",
"main": "app.js",
"scripts": {
"run": "node server",
"test": "NODE_ENV=test; ./node_modules/mocha/bin/mocha --timeout 5000 test/server --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/victorkohl/mock-server.git"
},
"keywords": [
"mock",
"api"
],
"author": "Victor Kohl Tavares",
"license": "MIT",
"bugs": {
"url": "https://github.com/victorkohl/mock-server/issues"
},
"homepage": "https://github.com/victorkohl/mock-server",
"dependencies": {
"bluebird": "^2.9.30",
"body-parser": "^1.13.1",
"consolidate": "^0.13.1",
"express": "^4.13.0",
"lodash": "^3.9.3",
"mongodb": "^2.0.35"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-concurrent": "^2.0.0",
"grunt-contrib-cssmin": "^0.12.3",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-sass": "^0.9.2",
"grunt-contrib-uglify": "^0.9.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-include-source": "^0.6.0",
"grunt-karma": "^0.11.1",
"grunt-nodemon": "^0.4.0",
"karma": "^0.12.36",
"mocha": "^2.2.5",
"should": "^7.0.1",
"supertest": "^1.0.1"
}
}