5859cc5db2d43f88e836c09defbeba12eabe5a4aeb2ed767e30849f3dab9be07712dd38e9dd0dec7c9e0700bcb5bd35fc3b6074f3059c160dbdc36e276ff32 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "mqtt-packet",
  3. "version": "6.10.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": "^14.3.4",
  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. }