[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", "name": "http-proxy",
"version": "0.8.0", "version": "0.8.0",
"description": "A full-featured http reverse proxy for node.js", "description": "A full-featured http reverse proxy for node.js",
"author": "Charlie Robbins <charlie.robbins@gmail.com>", "author": "Nodejitsu Inc. <info@nodejitsu.com>",
"contributors": [ "maintainers": [
{ "name": "Mikeal Rogers", "email": "mikeal.rogers@gmail.com" }, "indexzero <charlie@nodejitsu.com>",
{ "name": "Marak Squires", "email": "marak.squires@gmail.com" }, "AvianFlu <avianflu@nodejitsu.com>"
{ "name": "Fedor Indutny", "email": "fedor.indutny@gmail.com" },
{ "name": "Dominic Tarr", "email": "dominic@nodejitsu.com" }
], ],
"repository": { "repository": {
"type": "git", "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": { "dependencies": {
"colors": "0.x.x", "colors": "0.x.x",
"optimist": "0.2.x", "optimist": "0.2.x",
@ -26,12 +28,17 @@
"socket.io": "0.6.x" "socket.io": "0.6.x"
}, },
"main": "./lib/node-http-proxy", "main": "./lib/node-http-proxy",
"bin": { "node-http-proxy": "./bin/node-http-proxy" }, "bin": {
"scripts": { "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": "npm run-script test-http && npm run-script test-https && npm run-script test-core",
"test-http": "vows --spec && vows --spec --target=secure", "test-http": "vows --spec && vows --spec --target=secure",
"test-https": "vows --spec --source=secure && vows --spec --source=secure --target=secure", "test-https": "vows --spec --source=secure && vows --spec --source=secure --target=secure",
"test-core": "test/core/run" "test-core": "test/core/run"
}, },
"engines": { "node": ">= 0.6.6" } "engines": {
"node": ">= 0.6.6"
}
} }