package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "errorhandler",
  3. "description": "Development-only error handler middleware",
  4. "version": "1.5.1",
  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/errorhandler",
  11. "dependencies": {
  12. "accepts": "~1.3.7",
  13. "escape-html": "~1.0.3"
  14. },
  15. "devDependencies": {
  16. "after": "0.8.2",
  17. "eslint": "5.16.0",
  18. "eslint-config-standard": "12.0.0",
  19. "eslint-plugin-import": "2.17.2",
  20. "eslint-plugin-markdown": "1.0.0",
  21. "eslint-plugin-node": "8.0.1",
  22. "eslint-plugin-promise": "4.1.1",
  23. "eslint-plugin-standard": "4.0.0",
  24. "istanbul": "0.4.5",
  25. "mocha": "6.1.4",
  26. "supertest": "4.0.2"
  27. },
  28. "files": [
  29. "public/",
  30. "LICENSE",
  31. "HISTORY.md",
  32. "index.js"
  33. ],
  34. "engines": {
  35. "node": ">= 0.8"
  36. },
  37. "scripts": {
  38. "lint": "eslint --plugin markdown --ext js,md .",
  39. "test": "mocha --reporter spec --bail --check-leaks test/",
  40. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
  41. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
  42. }
  43. }