forked from moscajs/ascoltatori
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.84 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
68
69
70
71
72
73
74
75
{
"name": "ascoltatori",
"version": "0.12.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": "mocha --recursive --bail --reporter spec test",
"ci": "mocha --recursive --bail --watch test",
"coverage": "rm -rf coverage; istanbul cover _mocha -- --reporter spec --bail",
"publish-coverage": "npm run coverage && (cat coverage/lcov.info | coveralls)",
"jshint-lib": "jshint lib/*.js",
"jshint-test": "jshint test/*.js"
},
"pre-commit": [
"jshint-lib",
"jshint-test",
"test"
],
"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 <hello@matteocollina.com>",
"license": "MIT",
"contributors": [
"Filippo De Pretto <filnik90@gmail.com>",
"David Halls <dave@davedoesdev.com>"
],
"devDependencies": {
"mocha": "~1.12.0",
"chai": "~1.7.0",
"sinon": "~1.7.3",
"sinon-chai": "~2.4.0",
"optimist": "~0.6.0",
"async_bench": "~0.3.0",
"dox-foundation": "0.5.4",
"mosca": "git://github.com/mcollina/mosca.git",
"jshint": "~2.3.0",
"istanbul": "~0.1.40",
"coveralls": "~2.0.16",
"pre-commit": "0.0.4"
},
"dependencies": {
"async": "~0.2.6",
"debug": "~0.7.2",
"node-uuid": "~1.4.0",
"qlobber": "~0.3.0"
},
"optionalDependencies": {
"redis": "~0.8.1",
"zmq": "~2.4.0",
"amqp": "~0.1.8",
"mqtt": "~0.3.1",
"mongodb": "~1.3.20",
"eventemitter2": "~0.4.12"
}
}