-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 860 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "haremq",
"description": "HareMQ - AMQP wrapper for managing RabbitMQ",
"version": "0.0.2",
"author": "Paul Duthoit <[email protected]>",
"homepage": "http://haremq.com/",
"main":"index.js",
"keywords": [
"rabbitmq",
"exchange",
"queue",
"message",
"amqp",
"wrapper",
"pubsub"
],
"license": "MIT",
"dependencies": {
"amqp": "0.2.4",
"hat": "0.0.3",
"underscore": "1.8.3"
},
"devDependencies": {
"debug": "^2.2.0",
"mocha": "2.4.5"
},
"directories": {
"lib": "./lib/haremq"
},
"bugs": {
"url": "https://github.com/paulduthoit/haremq/issues/new",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/paulduthoit/haremq.git"
},
"scripts": {
"test": "mocha ./tests/index.js --timeout 10000"
}
}