-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1002 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
43
44
{
"name": "froxy",
"version": "0.5.2",
"description": "A simple, flexible proxy and vhost library for Node.js. Easily create HTTP request handlers for proxying to arbitrary hosts.",
"author": "Leonard Wu <[email protected]>",
"contributors": [{
"name": "Leonard Wu",
"email": "[email protected]"
}],
"main": "lib/froxy.js",
"dependencies": {
"request": "2.42.0"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/leonardw/froxy.git"
},
"keywords": [
"http",
"https",
"proxy",
"rewrite",
"redirect",
"url rewrite",
"mod_proxy",
"mod_rewrite",
"virtualhost",
"vhost",
"express",
"server"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/leonardw/froxy/issues"
},
"homepage": "https://github.com/leonardw/froxy",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">= 0.8"
}
}