-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 947 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 947 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
{
"name": "simple-mock-http-server",
"version": "1.0.2",
"description": "Simple HTTP server with posibility to mock API (http and socket.io) and automatic reload routes on change route file",
"main": "./lib/simple-mock-http-server.js",
"bin": {
"simple-mock-http-server": "./bin/simple-mock-http-server"
},
"scripts": {
"test": "./bin/simple-mock-http-server ./test -r ./test/mock-routes -o",
"start-debug": "devtool ./bin/simple-mock-http-server ./test -r ./test/mock-routes -o"
},
"repository": {
"type": "git",
"url": "https://github.com/marlic7/simple-mock-http-server.git"
},
"author": "Mariusz Lichota",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"colors": "^1.3.2",
"express": "^4.16.4",
"express-remove-route": "^0.1.1",
"minimist": "^1.2.0",
"opener": "^1.5.1",
"require-reload": "^0.2.2",
"watch": "^1.0.2",
"socket.io": "^2.0.2"
}
}