forked from villadora/express-http-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.25 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "express-http-proxy",
"version": "0.5.0",
"description": "http proxy middleware for express",
"main": "index.js",
"scripts": {
"test": "npm run lint && ./node_modules/.bin/mocha -R spec test/test.js",
"lint": "./node_modules/.bin/jshint index.js test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/villadora/express-http-proxy.git"
},
"keywords": [
"express-http-proxy"
],
"engines": {
"node": ">=0.10.0"
},
"author": {
"name": "villadora",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/villadora/express-http-proxy/issues"
},
"devDependencies": {
"express": "^4.3.1",
"iconv": "^2.1.4",
"jshint": "^2.5.5",
"mocha": "^2.1.0",
"supertest": "^0.13.0"
},
"dependencies": {
"type-is": "^1.2.0",
"raw-body": "^1.1.6"
},
"contributors": [
{
"name": "Liam Bennett"
},
{
"name": "eldereal",
"url": "https://github.com/eldereal"
},
{
"name": "Saulius Menkevičius",
"url": "https://github.com/razzmatazz"
},
{
"name": "Jérémy Lal",
"email": "[email protected]"
},
{
"name": "Wei Gao",
"email": "[email protected]"
}
]
}