package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "http-errors",
  3. "description": "Create HTTP error objects",
  4. "version": "2.0.1",
  5. "author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
  6. "contributors": [
  7. "Alan Plum <me@pluma.io>",
  8. "Douglas Christopher Wilson <doug@somethingdoug.com>"
  9. ],
  10. "license": "MIT",
  11. "repository": "jshttp/http-errors",
  12. "funding": {
  13. "type": "opencollective",
  14. "url": "https://opencollective.com/express"
  15. },
  16. "dependencies": {
  17. "depd": "~2.0.0",
  18. "inherits": "~2.0.4",
  19. "setprototypeof": "~1.2.0",
  20. "statuses": "~2.0.2",
  21. "toidentifier": "~1.0.1"
  22. },
  23. "devDependencies": {
  24. "eslint": "7.32.0",
  25. "eslint-config-standard": "14.1.1",
  26. "eslint-plugin-import": "2.32.0",
  27. "eslint-plugin-markdown": "2.2.1",
  28. "eslint-plugin-node": "11.1.0",
  29. "eslint-plugin-promise": "5.2.0",
  30. "eslint-plugin-standard": "4.1.0",
  31. "mocha": "9.1.3",
  32. "nyc": "15.1.0"
  33. },
  34. "engines": {
  35. "node": ">= 0.8"
  36. },
  37. "scripts": {
  38. "lint": "eslint . && node ./scripts/lint-readme-list.js",
  39. "test": "mocha --reporter spec",
  40. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  41. "test-cov": "nyc --reporter=html --reporter=text npm test",
  42. "version": "node scripts/version-history.js && git add HISTORY.md"
  43. },
  44. "keywords": [
  45. "http",
  46. "error"
  47. ],
  48. "files": [
  49. "index.js",
  50. "HISTORY.md",
  51. "LICENSE",
  52. "README.md"
  53. ]
  54. }