mirror of
https://github.com/http-party/node-http-proxy.git
synced 2025-12-08 20:59:18 +00:00
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "http-proxy",
|
|
"version": "0.8.2",
|
|
"description": "A full-featured http reverse proxy for node.js",
|
|
"author": "Nodejitsu Inc. <info@nodejitsu.com>",
|
|
"maintainers": [
|
|
"indexzero <charlie@nodejitsu.com>",
|
|
"AvianFlu <avianflu@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.3.x",
|
|
"pkginfo": "0.2.x"
|
|
},
|
|
"devDependencies": {
|
|
"request": "1.9.x",
|
|
"vows": "0.6.x",
|
|
"async": "0.1.x",
|
|
"socket.io": "0.9.6",
|
|
"socket.io-client": "0.9.6",
|
|
"ws": "0.4.21"
|
|
},
|
|
"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=https",
|
|
"test-https": "vows --spec --proxy=https && vows --spec --proxy=https --target=https",
|
|
"test-core": "test/core/run"
|
|
},
|
|
"engines": {
|
|
"node": ">= 0.6.6"
|
|
}
|
|
}
|
|
|