forked from moscajs/mosca
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.7 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
{
"name": "mosca",
"version": "0.13.3",
"description": "The multi-transport MQTT broker for node.js. It supports AMQP, Redis, ZeroMQ, MongoDB or just MQTT.",
"main": "index.js",
"bin": {
"mosca": "./bin/mosca"
},
"scripts": {
"test": "make bail"
},
"repository": {
"type": "git",
"url": "https://github.com/mcollina/mosca.git"
},
"bugs": {
"url": "http://github.com/mcollina/mosca/issues"
},
"keywords": [
"mqtt",
"mqtt server",
"publish",
"subscribe",
"pubsub",
"rabbitmq",
"zeromq",
"0mq",
"amqp",
"mosquitto",
"websocket"
],
"author": "Matteo Collina <hello@matteocollina.com>",
"license": "MIT",
"devDependencies": {
"mocha": "~1.13.0",
"chai": "~1.8.0",
"sinon": "~1.4.2",
"sinon-chai": "~2.1.2",
"async_bench": "0.2.1",
"underscore": "~1.4.4",
"microtime": "~0.3.3",
"dox-foundation": "~0.4.4",
"jshint": "~1.0.0",
"js-beautify": "~0.4.2",
"tmp": "0.0.20",
"supertest": "~0.7.1"
},
"dependencies": {
"mqtt": "~0.3.3",
"async": "~0.2.4",
"ascoltatori": "~0.11.5",
"debug": "~0.7.2",
"commander": "~1.1.1",
"minimatch": "~0.2.11",
"bunyan": "~0.22.0",
"memdown": "~0.5.1",
"levelup": "~0.17.0",
"level-sublevel": "~5.1.1",
"level-ttl": "~0.4.0",
"qlobber": "~0.3.0",
"lru-cache": "~2.3.0",
"node-uuid": "~1.4.0",
"extend": "~1.1.3",
"mows": "~0.0.1",
"connect": "~2.8.8",
"express": "~3.3.8",
"browserify-middleware": "~1.19.0",
"json-buffer": "~2.0.7"
},
"optionalDependencies": {
"leveldown": "~0.9.0",
"zmq": "~2.4.0",
"amqp": "~0.1.4",
"redis": "~0.8.2",
"mongodb": "~1.3.10"
}
}