-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 970 Bytes
/
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
{
"name": "mqtt-stack",
"version": "0.0.3",
"engines": {
"node": ">=4.00"
},
"description": "middleware based components to build a custom mqtt broker",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --recursive --reporter list"
},
"contributors": [
"Joël Gähwiler <[email protected]> (https://github.com/256dpi)",
"Matteo Collina <[email protected]> (https://github.com/mcollina)",
"Kamil Sulubulut <[email protected]> (https://github.com/kokeksibir)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "github.com/mqttjs/mqtt-stack"
},
"bugs": {
"url": "https://github.com/mqttjs/mqtt-stack/issues"
},
"devDependencies": {
"expect.js": "0.3.1",
"mocha": "2.2.1",
"mqtt": "^1.6.0",
"mqtt-connection": "2.1.1"
},
"dependencies": {
"async": "1.4.2",
"mqtt-packet": "^4.0.3",
"qlobber": "^0.5.3",
"underscore": "1.8.2"
}
}