forked from moscajs/ascoltatori
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.5 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "ascoltatori",
"version": "0.11.1",
"description": "The pub/sub library for node backed by Redis, MongoDB, AMQP (RabbitMQ), ZeroMQ, MQTT (Mosquitto) or just plain node!",
"main": "index.js",
"scripts": {
"test": "make bail"
},
"repository": {
"type": "git",
"url": "https://github.com/mcollina/ascoltatori.git"
},
"bugs": {
"url": "http://github.com/mcollina/ascoltatori/issues"
},
"keywords": [
"publish",
"subscribe",
"pubsub",
"rabbitmq",
"zeromq",
"0mq",
"mqtt",
"amqp",
"mosquitto",
"mongodb",
"mongo",
"pub",
"sub"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"contributors": [
"Filippo De Pretto <[email protected]>",
"David Halls <[email protected]>"
],
"devDependencies": {
"mocha": "~1.8.1",
"chai": "~1.3.0",
"sinon": "~1.4.2",
"sinon-chai": "~2.1.2",
"optimist": "~0.3.5",
"async_bench": "~0.1.0",
"dox-foundation": "0.4.4",
"mosca": "git://github.com/mcollina/mosca.git",
"jshint": "~1.1.0",
"js-beautify": "~0.4.2",
"istanbul": "~0.1.40",
"coveralls": "~2.0.16"
},
"dependencies": {
"async": "~0.2.6",
"debug": "~0.7.2",
"node-uuid": "~1.4.0",
"jshint": "~1.1.0",
"qlobber": "~0.3.0"
},
"optionalDependencies": {
"redis": "~0.8.1",
"hiredis": "~0.1.14",
"zmq": "~2.4.0",
"amqp": "~0.1.4",
"mqtt": "~0.2.6",
"mongodb": "~1.3.0",
"eventemitter2": "~0.4.12"
}
}