package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "qlobber",
  3. "description": "Node.js globbing for amqp-like topics",
  4. "version": "7.0.1",
  5. "homepage": "https://github.com/davedoesdev/qlobber",
  6. "author": {
  7. "name": "David Halls",
  8. "email": "dave@davedoesdev.com",
  9. "url": "http://www.davedoesdev.com"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/davedoesdev/qlobber.git"
  14. },
  15. "bugs": {
  16. "url": "https://github.com/davedoesdev/qlobber/issues"
  17. },
  18. "license": "MIT",
  19. "main": "index.js",
  20. "scripts": {
  21. "test": "(cd native && npm install && node-gyp rebuild --debug) && grunt test",
  22. "coverage": "(cd native && npm install && node-gyp rebuild --debug) && grunt coverage"
  23. },
  24. "directories": {
  25. "test": "test",
  26. "lib": "lib"
  27. },
  28. "keywords": [
  29. "amqp",
  30. "mqtt",
  31. "rabbitmq",
  32. "ascoltatore"
  33. ],
  34. "engines": {
  35. "node": ">= 14"
  36. },
  37. "devDependencies": {
  38. "b": "davedoesdev/b",
  39. "c8": "^7.11.3",
  40. "chai": "^4.3.6",
  41. "grunt": "^1.5.3",
  42. "grunt-apidox": "^2.0.17",
  43. "grunt-contrib-jshint": "^3.2.0",
  44. "grunt-exec": "^3.0.0",
  45. "JSONStream": "^1.3.5",
  46. "mocha": "^10.0.0",
  47. "stream-buffers": "^3.0.2"
  48. },
  49. "overrides": {
  50. "jsdoctypeparser": {
  51. "lodash": "^4.17.21"
  52. },
  53. "dox": {
  54. "markdown-it": "^12.3.2"
  55. }
  56. }
  57. }