From 8b0cf2e0b787c94ef604f1bf3c536b9cd030fcd4 Mon Sep 17 00:00:00 2001 From: Farid Neshat Date: Thu, 13 Mar 2014 19:39:14 +0800 Subject: [PATCH] Remove extra underscore dependency Really not used anywhere --- lib/hipchat.js | 4 +--- package.json | 5 +---- src/hipchat.coffee | 1 - 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/lib/hipchat.js b/lib/hipchat.js index 6a4b29c..550aa66 100644 --- a/lib/hipchat.js +++ b/lib/hipchat.js @@ -1,13 +1,11 @@ // Generated by CoffeeScript 1.7.1 (function() { - var HipChatClient, exports, https, querystring, _; + var HipChatClient, exports, https, querystring; https = require('https'); querystring = require('querystring'); - _ = require('underscore'); - HipChatClient = (function() { HipChatClient.prototype.host = 'api.hipchat.com'; diff --git a/package.json b/package.json index a556595..f4b90b8 100644 --- a/package.json +++ b/package.json @@ -32,8 +32,5 @@ }, "devDependencies": { "coffee-script": "1.7.x" - }, - "dependencies": { - "underscore": "1.6.0" - } + } } diff --git a/src/hipchat.coffee b/src/hipchat.coffee index 1061367..0af5d09 100644 --- a/src/hipchat.coffee +++ b/src/hipchat.coffee @@ -1,6 +1,5 @@ https = require 'https' querystring = require 'querystring' -_ = require 'underscore' class HipChatClient