Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

Commit

Permalink
chore(package): update uuid to version 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcbachmann committed Nov 23, 2016
1 parent bd37304 commit d7087d6
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 49 deletions.
2 changes: 1 addition & 1 deletion lib/rpc.js
Expand Up @@ -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({
Expand Down
96 changes: 48 additions & 48 deletions 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"
}
}

0 comments on commit d7087d6

Please sign in to comment.