package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "finalhandler",
  3. "description": "Node.js final http responder",
  4. "version": "2.1.1",
  5. "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
  6. "license": "MIT",
  7. "repository": "pillarjs/finalhandler",
  8. "funding": {
  9. "type": "opencollective",
  10. "url": "https://opencollective.com/express"
  11. },
  12. "dependencies": {
  13. "debug": "^4.4.0",
  14. "encodeurl": "^2.0.0",
  15. "escape-html": "^1.0.3",
  16. "on-finished": "^2.4.1",
  17. "parseurl": "^1.3.3",
  18. "statuses": "^2.0.1"
  19. },
  20. "devDependencies": {
  21. "eslint": "^7.32.0",
  22. "eslint-config-standard": "^14.1.1",
  23. "eslint-plugin-import": "^2.31.0",
  24. "eslint-plugin-markdown": "^2.2.1",
  25. "eslint-plugin-node": "^11.1.0",
  26. "eslint-plugin-promise": "^5.2.0",
  27. "eslint-plugin-standard": "^4.1.0",
  28. "mocha": "^11.0.1",
  29. "nyc": "^17.1.0",
  30. "supertest": "^7.0.0"
  31. },
  32. "files": [
  33. "LICENSE",
  34. "HISTORY.md",
  35. "index.js"
  36. ],
  37. "engines": {
  38. "node": ">= 18.0.0"
  39. },
  40. "scripts": {
  41. "lint": "eslint .",
  42. "test": "mocha --reporter spec --check-leaks test/",
  43. "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
  44. "test-cov": "nyc --reporter=html --reporter=text npm test",
  45. "test-inspect": "mocha --reporter spec --inspect --inspect-brk test/"
  46. }
  47. }