mirror of
https://github.com/http-party/node-http-proxy.git
synced 2025-12-08 20:59:18 +00:00
36 lines
1.2 KiB
JSON
36 lines
1.2 KiB
JSON
{
|
|
"name": "http-proxy",
|
|
"version": "0.7.6",
|
|
"description": "A full-featured http reverse proxy for node.js",
|
|
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
|
|
"contributors": [
|
|
{ "name": "Mikeal Rogers", "email": "mikeal.rogers@gmail.com" },
|
|
{ "name": "Marak Squires", "email": "marak.squires@gmail.com" },
|
|
{ "name": "Fedor Indutny", "email": "fedor.indutny@gmail.com" },
|
|
{ "name": "Dominic Tarr", "email": "dominic@nodejitsu.com" }
|
|
],
|
|
"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",
|
|
"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",
|
|
"test-http": "vows --spec && vows --spec --target=secure",
|
|
"test-https": "vows --spec --source=secure && vows --spec --source=secure --target=secure"
|
|
},
|
|
"engines": { "node": "0.4.x || 0.5.x" }
|
|
}
|