-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "mqtt-connection",
"version": "4.1.0",
"description": "Stream-based Connection object for MQTT, extracted from MQTT.js",
"main": "connection.js",
"contributors": [
"Matteo Collina <[email protected]> (https://github.com/mcollina)",
"Adam Rudd <[email protected]>",
"Siarhei Buntsevich <[email protected]> (https://github.com/scarry1992)"
],
"scripts": {
"test": "mocha test/ && standard"
},
"repository": {
"type": "git",
"url": "https://github.com/mqttjs/mqtt-connection.git"
},
"keywords": [
"mqtt",
"connection",
"server"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mqttjs/mqtt-connection/issues"
},
"homepage": "https://github.com/mqttjs/mqtt-connection",
"dependencies": {
"duplexify": "^3.5.1",
"inherits": "^2.0.3",
"mqtt-packet": "^6.0.0",
"safe-buffer": "^5.1.1",
"through2": "^2.0.1"
},
"devDependencies": {
"mocha": "^4.0.0",
"should": "^13.0.0",
"standard": "^11.0.0"
}
}