-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 998 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
42
{
"name": "mix-n-mock",
"version": "0.1.0",
"description": "A Node.js server that allows you to mix static content with proxied HTTP content from an external server",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Seitenbau/mix-n-mock.git"
},
"scripts": {
"test": "mocha src/test/test.js",
"lint": "eslint src",
"start": "node src/index.js"
},
"keywords": [
"proxy",
"mock",
"testing"
],
"author": "SEITENBAU GmbH",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Seitenbau/mix-n-mock/issues"
},
"homepage": "https://github.com/Seitenbau/mix-n-mock",
"dependencies": {
"express": "^3.21.2",
"express-redirect": "~1.1.0",
"file-exists": "~0.1.1",
"forever-monitor": "^1.7.0",
"konphyg": "^1.3.0",
"request": "2.x"
},
"devDependencies": {
"eslint": "^1.10.3",
"expect": "^1.20.1",
"mocha": "^2.5.3"
},
"engines": {
"node": ">=4.0.0"
}
}