-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
package.json
122 lines (122 loc) · 3.22 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "mqtt",
"description": "A library for the MQTT protocol",
"version": "4.3.4",
"contributors": [
"Adam Rudd <adamvrr@gmail.com>",
"Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)",
"Siarhei Buntsevich <scarry0506@gmail.com> (https://github.com/scarry1992)",
"Yoseph Maguire <yomaguir@microsoft.com> (https://github.com/YoDaMa)"
],
"keywords": [
"mqtt",
"publish/subscribe",
"publish",
"subscribe"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mqttjs/MQTT.js.git"
},
"main": "mqtt.js",
"types": "types/index.d.ts",
"scripts": {
"test": "node_modules/.bin/nyc --reporter=lcov --reporter=text ./node_modules/mocha/bin/_mocha --exit",
"pretest": "standard | snazzy",
"tslint": "tslint types/**/*.d.ts",
"typescript-compile-test": "tsc -p test/typescript/tsconfig.json",
"typescript-compile-execute": "node test/typescript/*.js",
"typescript-test": "npm run typescript-compile-test && npm run typescript-compile-execute",
"browser-build": "rimraf dist/ && mkdirp dist/ && browserify mqtt.js --standalone mqtt > dist/mqtt.js && uglifyjs dist/mqtt.js --compress --mangle --output dist/mqtt.min.js",
"prepare": "npm run browser-build",
"browser-test": "airtap --server test/browser/server.js --local --open test/browser/test.js",
"sauce-test": "airtap --server test/browser/server.js -- test/browser/test.js",
"ci": "npm run tslint && npm run typescript-compile-test && npm run test && codecov"
},
"pre-commit": [
"pretest",
"tslint"
],
"bin": {
"mqtt_pub": "./bin/pub.js",
"mqtt_sub": "./bin/sub.js",
"mqtt": "./bin/mqtt.js"
},
"files": [
"dist/",
"CONTRIBUTING.md",
"doc",
"lib",
"bin",
"types",
"mqtt.js"
],
"engines": {
"node": ">=10.0.0"
},
"browser": {
"./mqtt.js": "./lib/connect/index.js",
"fs": false,
"tls": false,
"net": false
},
"dependencies": {
"commist": "^1.0.0",
"concat-stream": "^2.0.0",
"debug": "^4.1.1",
"duplexify": "^4.1.1",
"help-me": "^3.0.0",
"inherits": "^2.0.3",
"lru-cache": "^6.0.0",
"minimist": "^1.2.5",
"mqtt-packet": "^6.8.0",
"number-allocator": "^1.0.9",
"pump": "^3.0.0",
"readable-stream": "^3.6.0",
"reinterval": "^1.1.0",
"rfdc": "^1.3.0",
"split2": "^3.1.0",
"ws": "^7.5.5",
"xtend": "^4.0.2"
},
"devDependencies": {
"@types/node": "^10.0.0",
"@types/ws": "^7.4.7",
"aedes": "^0.42.5",
"airtap": "^4.0.4",
"browserify": "^16.5.0",
"chai": "^4.2.0",
"codecov": "^3.0.4",
"end-of-stream": "^1.4.1",
"global": "^4.3.2",
"mkdirp": "^0.5.1",
"mocha": "^9.1.3",
"mqtt-connection": "^4.0.0",
"nyc": "^15.0.1",
"pre-commit": "^1.2.2",
"rimraf": "^3.0.2",
"should": "^13.2.1",
"sinon": "^9.0.0",
"snazzy": "^9.0.0",
"standard": "^16.0.4",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.2.2",
"uglify-es": "^3.3.9"
},
"standard": {
"env": [
"mocha"
],
"globals": [
"expect",
"test",
"describe",
"it",
"beforeEach",
"beforeAll",
"afterAll"
]
}
}