removed extra self, updated colors requirement, bumped to version 0.1.3

This commit is contained in:
Marak Squires 2010-07-27 21:40:55 -04:00
parent c8dd8c4e28
commit 9bc5b6f862
2 changed files with 2 additions and 4 deletions

View File

@ -29,9 +29,7 @@ var sys = require('sys'),
events = require('events');
exports.httpProxy = function () {
var self = this;
this.emitter = new(events.EventEmitter);
// If we were passed more than two arguments,
// assume the first two are request and response.
if(arguments.length >= 2) {

View File

@ -1,14 +1,14 @@
{
"name": "http-proxy",
"description": "A full-featured http reverse proxy for node.js",
"version": "0.1.2",
"version": "0.1.3",
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"contributors": [
{ "name": "Marak Squires", "email": "marak.squires@gmail.com" }
],
"keywords": ["reverse", "proxy", "http"],
"dependencies": {
"colors": ">= 0.0.1"
"colors": ">= 0.0.3"
},
"main": "./lib/node-http-proxy",
"scripts": { "test": "vows" },