forked from moscajs/mosca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.51 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": "2.2.0",
"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"
},
"engines": {
"node": ">= 0.12"
},
"keywords": [
"mqtt",
"mqtt server",
"publish",
"subscribe",
"pubsub",
"rabbitmq",
"zeromq",
"0mq",
"amqp",
"mosquitto",
"websocket"
],
"author": "Matteo Collina <hello@matteocollina.com>",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "~2.11.1",
"dox-foundation": "~0.5.4",
"istanbul": "~0.4.0",
"jshint": "~2.9.1",
"mocha": "^2.0.1",
"mongo-clean": "^1.1.0",
"osenv": "^0.1.0",
"pre-commit": "1.1.2",
"rimraf": "^2.2.8",
"sinon": "~1.7.0",
"sinon-chai": "~2.8.0",
"supertest": "~1.2.0",
"tmp": "0.0.24",
"browserify": "~13.0.0",
"uglify-js": "^2.4.16",
"underscore": "^1.7.0"
},
"dependencies": {
"array-from": "^2.1.1",
"ascoltatori": "^3.0.0",
"brfs": "~1.4.2",
"clone": "^1.0.2",
"commander": "~2.9.0",
"deepcopy": "^0.6.1",
"extend": "^3.0.0",
"json-buffer": "~2.0.11",
"jsonschema": "^1.0.3",
"level-sublevel": "^6.5.2",
"levelup": "^1.3.1",
"lru-cache": "~4.0.0",
"memdown": "~1.1.1",
"minimatch": "~3.0.0",
"moment": "~2.13.0",
"moving-average": "0.1.1",
"mqtt": "^1.6.3",
"mqtt-connection": "^2.1.1",
"msgpack5": "^3.3.0",
"pbkdf2-password": "^1.1.0",
"pino": "^2.4.2",
"qlobber": "~0.7.0",
"retimer": "^1.0.1",
"shortid": "^2.2.4",
"st": "~1.1.0",
"steed": "^1.0.0",
"uuid": "^2.0.1",
"websocket-stream": "~3.1.0"
},
"optionalDependencies": {
"leveldown": "~1.4.3",
"amqp": "~0.2.4",
"ioredis": "^1.15.1",
"mongodb": "~2.1.4"
}
}