UNPKG

890 BJSONView Raw
1{
2 "name": "mqtt-connection",
3 "version": "2.0.0",
4 "description": "Stream-based Connection object for MQTT, extracted from MQTT.js",
5 "main": "connection.js",
6 "contributors": [
7 "Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)",
8 "Adam Rudd <adam.rudd@uqconnect.edu.au>"
9 ],
10 "scripts": {
11 "test": "mocha test/"
12 },
13 "repository": {
14 "type": "git",
15 "url": "https://github.com/mqttjs/mqtt-connection.git"
16 },
17 "keywords": [
18 "mqtt",
19 "connection",
20 "server"
21 ],
22 "license": "MIT",
23 "bugs": {
24 "url": "https://github.com/mqttjs/mqtt-connection/issues"
25 },
26 "homepage": "https://github.com/mqttjs/mqtt-connection",
27 "dependencies": {
28 "inherits": "^2.0.1",
29 "mqtt-packet": "^3.0.0",
30 "reduplexer": "^1.1.0",
31 "through2": "^0.6.3"
32 },
33 "devDependencies": {
34 "mocha": "^2.0.1",
35 "should": "^4.4.1"
36 }
37}