package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "serve-index",
  3. "description": "Serve directory listings",
  4. "version": "1.9.2",
  5. "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
  6. "license": "MIT",
  7. "repository": "expressjs/serve-index",
  8. "funding": {
  9. "type": "opencollective",
  10. "url": "https://opencollective.com/express"
  11. },
  12. "dependencies": {
  13. "accepts": "~1.3.8",
  14. "batch": "0.6.1",
  15. "debug": "2.6.9",
  16. "escape-html": "~1.0.3",
  17. "http-errors": "~1.8.0",
  18. "mime-types": "~2.1.35",
  19. "parseurl": "~1.3.3"
  20. },
  21. "devDependencies": {
  22. "after": "0.8.2",
  23. "eslint": "7.23.0",
  24. "eslint-plugin-markdown": "2.0.0",
  25. "mocha": "10.4.0",
  26. "nyc": "15.1.0",
  27. "supertest": "6.3.4"
  28. },
  29. "files": [
  30. "public/",
  31. "LICENSE",
  32. "README.md",
  33. "index.js"
  34. ],
  35. "engines": {
  36. "node": ">= 0.8.0"
  37. },
  38. "scripts": {
  39. "lint": "eslint .",
  40. "test": "mocha --reporter spec --check-leaks test/",
  41. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  42. "test-cov": "nyc --reporter=html --reporter=text npm test"
  43. }
  44. }