package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "compression",
  3. "description": "Node.js compression middleware",
  4. "version": "1.8.0",
  5. "contributors": [
  6. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  7. "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
  8. ],
  9. "license": "MIT",
  10. "repository": "expressjs/compression",
  11. "keywords": ["compression", "gzip", "deflate", "middleware", "express", "brotli", "http", "stream"],
  12. "dependencies": {
  13. "bytes": "3.1.2",
  14. "compressible": "~2.0.18",
  15. "debug": "2.6.9",
  16. "negotiator": "~0.6.4",
  17. "on-headers": "~1.0.2",
  18. "safe-buffer": "5.2.1",
  19. "vary": "~1.1.2"
  20. },
  21. "devDependencies": {
  22. "after": "0.8.2",
  23. "eslint": "7.32.0",
  24. "eslint-config-standard": "14.1.1",
  25. "eslint-plugin-import": "2.26.0",
  26. "eslint-plugin-markdown": "2.2.1",
  27. "eslint-plugin-node": "11.1.0",
  28. "eslint-plugin-promise": "5.2.0",
  29. "eslint-plugin-standard": "4.1.0",
  30. "mocha": "9.2.2",
  31. "nyc": "15.1.0",
  32. "supertest": "6.2.3"
  33. },
  34. "files": [
  35. "LICENSE",
  36. "HISTORY.md",
  37. "index.js"
  38. ],
  39. "engines": {
  40. "node": ">= 0.8.0"
  41. },
  42. "scripts": {
  43. "lint": "eslint .",
  44. "test": "mocha --check-leaks --reporter spec",
  45. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  46. "test-cov": "nyc --reporter=html --reporter=text npm test"
  47. }
  48. }