package.json 1.2 KB

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