You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.3 KiB

  1. {
  2. "name": "http-errors",
  3. "description": "Create HTTP error objects",
  4. "version": "1.6.3",
  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. "dependencies": {
  13. "depd": "~1.1.2",
  14. "inherits": "2.0.3",
  15. "setprototypeof": "1.1.0",
  16. "statuses": ">= 1.4.0 < 2"
  17. },
  18. "devDependencies": {
  19. "eslint": "4.18.1",
  20. "eslint-config-standard": "11.0.0",
  21. "eslint-plugin-import": "2.9.0",
  22. "eslint-plugin-markdown": "1.0.0-beta.6",
  23. "eslint-plugin-node": "6.0.1",
  24. "eslint-plugin-promise": "3.6.0",
  25. "eslint-plugin-standard": "3.0.1",
  26. "istanbul": "0.4.5",
  27. "mocha": "1.21.5"
  28. },
  29. "engines": {
  30. "node": ">= 0.6"
  31. },
  32. "scripts": {
  33. "lint": "eslint --plugin markdown --ext js,md .",
  34. "test": "mocha --reporter spec --bail",
  35. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
  36. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
  37. },
  38. "keywords": [
  39. "http",
  40. "error"
  41. ],
  42. "files": [
  43. "index.js",
  44. "HISTORY.md",
  45. "LICENSE",
  46. "README.md"
  47. ]
  48. }