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.

52 lines
1.4 KiB

  1. {
  2. "name": "morgan",
  3. "description": "HTTP request logger middleware for node.js",
  4. "version": "1.9.1",
  5. "contributors": [
  6. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  7. "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
  8. ],
  9. "license": "MIT",
  10. "keywords": [
  11. "express",
  12. "http",
  13. "logger",
  14. "middleware"
  15. ],
  16. "repository": "expressjs/morgan",
  17. "dependencies": {
  18. "basic-auth": "~2.0.0",
  19. "debug": "2.6.9",
  20. "depd": "~1.1.2",
  21. "on-finished": "~2.3.0",
  22. "on-headers": "~1.0.1"
  23. },
  24. "devDependencies": {
  25. "eslint": "5.5.0",
  26. "eslint-config-standard": "12.0.0",
  27. "eslint-plugin-import": "2.14.0",
  28. "eslint-plugin-markdown": "1.0.0-beta.6",
  29. "eslint-plugin-node": "7.0.1",
  30. "eslint-plugin-promise": "4.0.1",
  31. "eslint-plugin-standard": "4.0.0",
  32. "istanbul": "0.4.5",
  33. "mocha": "2.5.3",
  34. "split": "1.0.1",
  35. "supertest": "1.1.0"
  36. },
  37. "files": [
  38. "LICENSE",
  39. "HISTORY.md",
  40. "README.md",
  41. "index.js"
  42. ],
  43. "engines": {
  44. "node": ">= 0.8.0"
  45. },
  46. "scripts": {
  47. "lint": "eslint --plugin markdown --ext js,md .",
  48. "test": "mocha --check-leaks --reporter spec --bail",
  49. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot",
  50. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec"
  51. }
  52. }