UNPKG

1.26 kBJSONView Raw
1{
2 "name": "mqtt-packet",
3 "version": "7.0.0",
4 "description": "Parse and generate MQTT packets like a breeze",
5 "main": "mqtt.js",
6 "types": "types/index.d.ts",
7 "contributors": [
8 "Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)",
9 "Adam Rudd <damvrr@gmail.com>",
10 "Peter Sorowka (https://github.com/psorowka)",
11 "Wouter Klijn <contact@wuhkuh.com> (https://github.com/wuhkuh)",
12 "Siarhei Buntsevich (https://github.com/scarry1992)"
13 ],
14 "scripts": {
15 "test": "tape test.js | tap-spec && standard",
16 "ci": "tape test.js && node testRandom && standard"
17 },
18 "pre-commit": "test",
19 "repository": {
20 "type": "git",
21 "url": "https://github.com/mqttjs/mqtt-packet.git"
22 },
23 "keywords": [
24 "MQTT",
25 "packet",
26 "parse",
27 "publish",
28 "subscribe",
29 "pubsub"
30 ],
31 "license": "MIT",
32 "bugs": {
33 "url": "https://github.com/mqttjs/mqtt-packet/issues"
34 },
35 "homepage": "https://github.com/mqttjs/mqtt-packet",
36 "devDependencies": {
37 "pre-commit": "^1.2.2",
38 "readable-stream": "^3.6.0",
39 "standard": "^16.0.0",
40 "tap-spec": "^5.0.0",
41 "tape": "^5.0.1"
42 },
43 "dependencies": {
44 "bl": "^4.0.2",
45 "debug": "^4.1.1",
46 "process-nextick-args": "^2.0.1"
47 }
48}