From 8ca8f96f46564e51516c8c295461896bdaca25cb Mon Sep 17 00:00:00 2001 From: Pagan Gazzard Date: Fri, 27 Feb 2015 19:22:42 +0000 Subject: [PATCH] Switch to npm deps for blinking and network-checker --- package.json | 4 ++-- src/utils.coffee | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index c68eca49..d09da5bb 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ }, "dependencies": { "JSONStream": "~0.7.1", - "blinker": "git+ssh://git@bitbucket.org:rulemotion/blinker.git#v0.0.1", + "blinker": "~0.0.2", "bluebird": "^2.6.0", "coffee-script": "~1.8.0", "csr-gen": "~0.2.1", @@ -17,7 +17,7 @@ "knex": "~0.7.3", "lodash": "~3.0.0", "mixpanel": "0.0.20", - "network-checker": "git+ssh://git@bitbucket.org:rulemotion/network-checker.git#v0.0.1", + "network-checker": "~0.0.2", "ngrok": "~0.1.97", "pubnub": "~3.6.4", "randomstring": "~1.0.3", diff --git a/src/utils.coffee b/src/utils.coffee index b3a1d035..9d9a6663 100644 --- a/src/utils.coffee +++ b/src/utils.coffee @@ -5,7 +5,7 @@ config = require './config' mixpanel = require 'mixpanel' request = require './request' networkCheck = require 'network-checker' -blink = require('blinker')(config.ledFile) +blink = require('blinking')(config.ledFile) utils = exports