diff --git a/lib/rpc.js b/lib/rpc.js index e130dcf..0f79370 100644 --- a/lib/rpc.js +++ b/lib/rpc.js @@ -2,7 +2,7 @@ var comb = require("comb"), Promise = comb.Promise, when = comb.when, isHash = comb.isHash, - uuid = require('node-uuid'), + uuid = require('uuid'), _Options = require("./_options"); _Options.extend({ diff --git a/package.json b/package.json index 0f5f3fd..1af8849 100644 --- a/package.json +++ b/package.json @@ -1,50 +1,50 @@ { - "name": "hare", - "version": "1.0.0", - "description": "Wrapper around amqp to make common patterns easier", - "keywords": [ - "amqp", - "rabbit", - "rabbitmq", - "rpc", - "workerQueue", - "worker queue", - "worker", - "pubsub", - "pub-sub", - "pub", - "sub", - "routing", - "route", - "topic", - "topics", - "exchange", - "excahanges", - "queue", - "queues" - ], - "main": "index.js", - "scripts": { - "test": "it -r dot" - }, - "repository": { - "type": "git", - "url": "git@github.com:C2FO/hare.git" - }, - "author": "Doug Martin", - "license": "MIT", - "dependencies": { - "amqp": "~0.2.0", - "comb": "~1.0.0", - "node-uuid": "^1.4.1" - }, - "devDependencies": { - "grunt": "~0.4.1", - "it": "^1.0.1", - "grunt-it": "^1.0.0", - "grunt-contrib-jshint": "~0.5.4" - }, - "engines": { - "node": ">= 4.0.0" - } + "name": "hare", + "version": "1.0.0", + "description": "Wrapper around amqp to make common patterns easier", + "keywords": [ + "amqp", + "rabbit", + "rabbitmq", + "rpc", + "workerQueue", + "worker queue", + "worker", + "pubsub", + "pub-sub", + "pub", + "sub", + "routing", + "route", + "topic", + "topics", + "exchange", + "excahanges", + "queue", + "queues" + ], + "main": "index.js", + "scripts": { + "test": "it -r dot" + }, + "repository": { + "type": "git", + "url": "git@github.com:C2FO/hare.git" + }, + "author": "Doug Martin", + "license": "MIT", + "dependencies": { + "amqp": "~0.2.0", + "comb": "~1.0.0", + "uuid": "^3.0.0" + }, + "devDependencies": { + "grunt": "~0.4.1", + "it": "^1.0.1", + "grunt-it": "^1.0.0", + "grunt-contrib-jshint": "~0.5.4" + }, + "engines": { + "node": ">= 4.0.0" + } }