forked from mqttjs/MQTT.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.92 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
{
"name": "mqtt",
"description": "A library for the MQTT protocol",
"version": "1.5.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",
"pretest": "npm run check-style",
"check-style:eslint": "eslint mqtt.js lib/* test/*.js test/browser/*.js test/helpers/*.js",
"check-style:jshint": "jshint mqtt.js lib/* test/*.js test/browser/*.js test/helpers/*.js",
"check-style:jscs": "jscs mqtt.js lib/* test/*.js test/browser/*.js test/helpers/*.js",
"check-style": "npm run check-style:jshint && npm run check-style:jscs && npm run check-style:eslint",
"browser-test": "zuul --server test/browser/server.js --local --open 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": "^0.1.0",
"inherits": "^2.0.1",
"minimist": "^1.1.0",
"mqtt-connection": "^2.0.0",
"mqtt-packet": "^3.2.0",
"readable-stream": "~1.0.2",
"websocket-stream": "^2.0.2",
"xtend": "^4.0.0"
},
"devDependencies": {
"browserify": "^11.0.1",
"eslint": "^1.3.1",
"jscs": "^2.1.1",
"jshint": "^2.6.2",
"mocha": "*",
"pre-commit": "1.1.1",
"should": "*",
"sinon": "~1.10.0",
"through2": "^0.6.3",
"uglify": "^0.1.1",
"ws": "^0.8.0",
"zuul": "^3.4.0"
}
}