This repository has been archived by the owner on Feb 11, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 506
/
Copy pathpackage.json
105 lines (105 loc) · 2.55 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "mosca",
"version": "0.31.1",
"description": "MQTT broker as a module",
"main": "index.js",
"bin": {
"mosca": "./bin/mosca"
},
"scripts": {
"test": "mocha --recursive --bail --reporter spec test 2>&1",
"ci": "mocha --recursive --bail --watch test",
"coverage": "rm -rf coverage; istanbul cover _mocha -- --recursive --reporter spec --bail",
"publish-coverage": "(cat coverage/lcov.info | coveralls)",
"jshint-lib": "jshint lib",
"jshint-test": "jshint test",
"start": "./bin/mosca -v | bunyan",
"bundle": "browserify -r mqtt -s mqtt | uglifyjs --screw-ie8 > public/mqtt.js",
"prepublish": "npm run bundle"
},
"pre-commit": [
"jshint-lib",
"jshint-test",
"test"
],
"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 <[email protected]>",
"license": "MIT",
"devDependencies": {
"async_bench": "~0.5.0",
"chai": "^1.10.0",
"coveralls": "~2.11.1",
"dox-foundation": "~0.5.4",
"istanbul": "~0.3.0",
"jshint": "~2.5.2",
"microtime": "~1.4.2",
"mocha": "^2.0.1",
"mongo-clean": "^0.1.0",
"osenv": "^0.1.0",
"pre-commit": "0.0.9",
"rimraf": "^2.2.8",
"sinon": "~1.7.0",
"sinon-chai": "~2.6.0",
"supertest": "~0.15.0",
"tmp": "0.0.24",
"browserify": "~8.1.1",
"uglify-js": "^2.4.16",
"underscore": "^1.7.0"
},
"dependencies": {
"ascoltatori": "~0.21.1",
"async": "~0.9.0",
"brfs": "1.3.0",
"bunyan": "^1.4.0",
"commander": "~2.3.0",
"deepcopy": "^0.3.3",
"extend": "^2.0.0",
"json-buffer": "~2.0.7",
"jsonschema": "^1.0.0",
"level-sublevel": "^6.4.6",
"levelup": "^0.19.0",
"lru-cache": "~2.5.0",
"memdown": "~0.10.2",
"minimatch": "~1.0.0",
"moment": "~2.8.0",
"moving-average": "0.0.5",
"mqtt": "^1.0.0",
"mqtt-connection": "^2.1.1",
"msgpack5": "^1.3.0",
"pbkdf2-password": "^1.0.0",
"qlobber": "~0.5.0",
"retimer": "^1.0.1",
"shortid": "^2.1.3",
"st": "~0.5.1",
"uuid": "^2.0.1",
"websocket-stream": "^1.3.2"
},
"optionalDependencies": {
"leveldown": "~0.10.0",
"nan": "~1.8.4",
"zmq": "~2.11.0",
"amqp": "~0.2.4",
"redis": "~0.12.1",
"hiredis": "^0.4.0",
"mongodb": "~2.0.33"
}
}