forked from moscajs/ascoltatori
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.71 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
{
"name": "vocovo-patched-ascoltatori",
"version": "4.3.0-p2",
"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 <hello@matteocollina.com>",
"license": "MIT",
"contributors": [
"Filippo De Pretto <filnik90@gmail.com>",
"David Halls <dave@davedoesdev.com>"
],
"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",
"qlobber": "~0.7.0",
"steed": "^1.1.3",
"uuid": "^3.3.2"
},
"optionalDependencies": {
"ioredis": "^4.14.1"
}
}