package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "compression",
  3. "description": "Node.js compression middleware",
  4. "version": "1.7.5",
  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. "dependencies": {
  12. "bytes": "3.1.2",
  13. "compressible": "~2.0.18",
  14. "debug": "2.6.9",
  15. "negotiator": "~0.6.4",
  16. "on-headers": "~1.0.2",
  17. "safe-buffer": "5.2.1",
  18. "vary": "~1.1.2"
  19. },
  20. "devDependencies": {
  21. "after": "0.8.2",
  22. "eslint": "7.32.0",
  23. "eslint-config-standard": "14.1.1",
  24. "eslint-plugin-import": "2.26.0",
  25. "eslint-plugin-markdown": "2.2.1",
  26. "eslint-plugin-node": "11.1.0",
  27. "eslint-plugin-promise": "5.2.0",
  28. "eslint-plugin-standard": "4.1.0",
  29. "mocha": "9.2.2",
  30. "nyc": "15.1.0",
  31. "supertest": "6.2.3"
  32. },
  33. "files": [
  34. "LICENSE",
  35. "HISTORY.md",
  36. "index.js"
  37. ],
  38. "engines": {
  39. "node": ">= 0.8.0"
  40. },
  41. "scripts": {
  42. "lint": "eslint .",
  43. "test": "mocha --check-leaks --reporter spec",
  44. "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
  45. "test-cov": "nyc --reporter=html --reporter=text npm test"
  46. }
  47. }