forked from desaintmartin/node-http-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 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
{
"name": "http-proxy",
"version": "0.8.0",
"description": "A full-featured http reverse proxy for node.js",
"author": "Charlie Robbins <[email protected]>",
"contributors": [
{ "name": "Mikeal Rogers", "email": "[email protected]" },
{ "name": "Marak Squires", "email": "[email protected]" },
{ "name": "Fedor Indutny", "email": "[email protected]" },
{ "name": "Dominic Tarr", "email": "[email protected]" }
],
"repository": {
"type": "git",
"url": "http://github.com/nodejitsu/node-http-proxy.git"
},
"keywords": ["reverse", "proxy", "http"],
"dependencies": {
"colors": "0.x.x",
"optimist": "0.2.x",
"pkginfo": "0.2.x"
},
"devDependencies": {
"request": "1.9.x",
"vows": "0.5.x",
"async": "0.1.x",
"socket.io": "0.6.x"
},
"main": "./lib/node-http-proxy",
"bin": { "node-http-proxy": "./bin/node-http-proxy" },
"scripts": {
"test": "npm run-script test-http && npm run-script test-https && npm run-script test-core",
"test-http": "vows --spec && vows --spec --target=secure",
"test-https": "vows --spec --source=secure && vows --spec --source=secure --target=secure",
"test-core": "test/core/run"
},
"engines": { "node": ">= 0.6.6" }
}