[dist] Update author field for consistency

This commit is contained in:
Christian Howe 2012-05-07 16:59:05 +00:00
parent ed06af97ef
commit 27316e22e8

View File

@ -2,18 +2,20 @@
"name": "http-proxy",
"version": "0.8.0",
"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" }
"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"
"url": "http://github.com/nodejitsu/node-http-proxy.git"
},
"keywords": ["reverse", "proxy", "http"],
"keywords": [
"reverse",
"proxy",
"http"
],
"dependencies": {
"colors": "0.x.x",
"optimist": "0.2.x",
@ -26,12 +28,17 @@
"socket.io": "0.6.x"
},
"main": "./lib/node-http-proxy",
"bin": { "node-http-proxy": "./bin/node-http-proxy" },
"scripts": {
"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" }
"engines": {
"node": ">= 0.6.6"
}
}