package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "mqemitter",
  3. "version": "6.0.2",
  4. "description": "An Opinionated Message Queue with an emitter-style API",
  5. "main": "mqemitter.js",
  6. "types": "types/mqemitter.d.ts",
  7. "scripts": {
  8. "lint": "npm run lint:standard && npm run lint:typescript && npm run lint:markdown",
  9. "lint:standard": "standard --verbose | snazzy",
  10. "lint:typescript": "standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin test/types/*.ts types/mqemitter.d.ts",
  11. "lint:markdown": "markdownlint README.md",
  12. "unit": "tape test/*.js",
  13. "unit:report": "nyc --reporter=html --reporter=cobertura --reporter=text tape test/*.js",
  14. "unit:cov": "nyc --reporter=text tape test/*.js",
  15. "typescript": "tsc --project ./test/types/tsconfig.json",
  16. "test:report": "npm run lint && npm run unit:report && npm run typescript",
  17. "test:types": "tsd",
  18. "test": "npm run lint && npm run unit:cov && tsd && npm run typescript"
  19. },
  20. "pre-commit": [
  21. "test"
  22. ],
  23. "website": "https://github.com/mcollina/mqemitter",
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/mcollina/mqemitter.git"
  27. },
  28. "bugs": {
  29. "url": "http://github.com/mcollina/mqemitter/issues"
  30. },
  31. "author": "Matteo Collina <hello@matteocollina.com>",
  32. "engines": {
  33. "node": ">=16"
  34. },
  35. "keywords": [
  36. "emitter",
  37. "events",
  38. "message queue",
  39. "mq",
  40. "publish",
  41. "subscribe",
  42. "pub",
  43. "sub"
  44. ],
  45. "license": "ISC",
  46. "devDependencies": {
  47. "@types/node": "^16.11.1",
  48. "@typescript-eslint/eslint-plugin": "^7.8.0",
  49. "@typescript-eslint/parser": "^7.8.0",
  50. "markdownlint-cli": "^0.31.1",
  51. "nyc": "^15.0.0",
  52. "pre-commit": "^1.2.2",
  53. "snazzy": "^9.0.0",
  54. "standard": "^17.0.0",
  55. "tape": "^5.0.1",
  56. "tsd": "^0.31.0",
  57. "typescript": "^5.4.5"
  58. },
  59. "dependencies": {
  60. "fastparallel": "^2.4.1",
  61. "qlobber": "^8.0.1"
  62. }
  63. }