forked from mqttjs/MQTT.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.82 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
{
"name": "mqtt",
"description": "A library for the MQTT protocol",
"version": "2.0.0",
"contributors": [
"Adam Rudd <[email protected]>",
"Matteo Collina <[email protected]> (https://github.com/mcollina)"
],
"keywords": [
"mqtt",
"publish/subscribe",
"publish",
"subscribe"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mqttjs/MQTT.js.git"
},
"main": "mqtt.js",
"scripts": {
"test": "mocha --bail",
"pretest": "standard",
"browser-test": "zuul --server test/browser/server.js --local --open test/browser/test.js",
"sauce-test": "zuul --server test/browser/server.js --tunnel ngrok -- test/browser/test.js"
},
"pre-commit": [
"test"
],
"bin": {
"mqtt_pub": "./bin/pub.js",
"mqtt_sub": "./bin/sub.js",
"mqtt": "./mqtt.js"
},
"engines": {
"node": ">=0.8.6"
},
"browser": {
"./mqtt.js": "./lib/connect/index.js",
"fs": false,
"tls": false,
"net": false
},
"dependencies": {
"commist": "^1.0.0",
"concat-stream": "^1.4.7",
"end-of-stream": "^1.1.0",
"help-me": "^1.0.0",
"inherits": "^2.0.1",
"minimist": "^1.1.0",
"mqtt-packet": "^5.0.0",
"readable-stream": "^2.1.0",
"pump": "^1.0.1",
"reinterval": "^1.0.1",
"split2": "^2.0.1",
"websocket-stream": "^3.1.0",
"xtend": "^4.0.0"
},
"devDependencies": {
"browserify": "^11.0.1",
"mocha": "*",
"mqtt-connection": "^2.0.0",
"pre-commit": "1.1.1",
"should": "*",
"sinon": "~1.10.0",
"standard": "^8.0.0",
"through2": "^2.0.0",
"uglify": "^0.1.1",
"ws": "^0.8.0",
"zuul": "^3.4.0",
"zuul-ngrok": "gnandretta/zuul-ngrok#upgrade-ngrok"
},
"standard": {
"globals": [
"it",
"describe",
"beforeEach",
"afterEach"
]
}
}