From 27316e22e8e7786252583cdb9131cfd8cacb07c1 Mon Sep 17 00:00:00 2001 From: Christian Howe Date: Mon, 7 May 2012 16:59:05 +0000 Subject: [PATCH] [dist] Update author field for consistency --- package.json | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index b52eb01..b89bc2c 100644 --- a/package.json +++ b/package.json @@ -2,18 +2,20 @@ "name": "http-proxy", "version": "0.8.0", "description": "A full-featured http reverse proxy for node.js", - "author": "Charlie Robbins ", - "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. ", + "maintainers": [ + "indexzero ", + "AvianFlu " ], "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" + } } +