forked from RickCarlino/ascoltatori
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.96 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
76
77
78
79
80
{
"name": "ascoltatori",
"version": "3.2.0",
"description": "The pub/sub library for node backed by Redis, MongoDB, AMQP (RabbitMQ), ZeroMQ, Kafka, MQTT (Mosquitto) or just plain node!",
"main": "index.js",
"scripts": {
"test": "mocha --recursive --bail --reporter spec test --globals Promise",
"ci": "mocha --recursive --bail --watch test",
"coverage": "rm -rf coverage; istanbul cover _mocha -- --reporter spec --bail --globals Promise",
"publish-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",
"kafka",
"pub",
"sub"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"contributors": [
"Filippo De Pretto <[email protected]>",
"David Halls <[email protected]>"
],
"devDependencies": {
"mocha": "^3.0.0",
"chai": "^3.4.1",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"optimist": "^0.6.1",
"dox-foundation": "^0.5.6",
"mosca": "2.1.0",
"jshint": "^2.8.0",
"istanbul": "^0.4.0",
"coveralls": "^2.11.4",
"pre-commit": "^1.1.2"
},
"dependencies": {
"debug": "^2.2.0",
"node-uuid": "~1.4.3",
"qlobber": "~0.7.0",
"steed": "^1.1.3"
},
"optionalDependencies": {
"ioredis": "^2.3.0",
"msgpack-lite": "^0.1.20",
"zmq": "^2.14.0",
"amqp": "~0.2.4",
"amqplib": "~0.4.1",
"mqtt": "^1.10.0",
"mongodb": "^2.1.18",
"kerberos": "~0.0",
"eventemitter2": "^2.1.3",
"qlobber-fsq": "~3.2.4",
"kafka-node": "~0.5.8"
}
}