package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "serve-static",
  3. "description": "Serve static files",
  4. "version": "2.2.0",
  5. "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
  6. "license": "MIT",
  7. "repository": "expressjs/serve-static",
  8. "dependencies": {
  9. "encodeurl": "^2.0.0",
  10. "escape-html": "^1.0.3",
  11. "parseurl": "^1.3.3",
  12. "send": "^1.2.0"
  13. },
  14. "devDependencies": {
  15. "eslint": "7.32.0",
  16. "eslint-config-standard": "14.1.1",
  17. "eslint-plugin-import": "2.25.4",
  18. "eslint-plugin-markdown": "2.2.1",
  19. "eslint-plugin-node": "11.1.0",
  20. "eslint-plugin-promise": "5.2.0",
  21. "eslint-plugin-standard": "4.1.0",
  22. "mocha": "^10.7.0",
  23. "nyc": "^17.0.0",
  24. "supertest": "^6.3.4"
  25. },
  26. "files": [
  27. "LICENSE",
  28. "HISTORY.md",
  29. "index.js"
  30. ],
  31. "engines": {
  32. "node": ">= 18"
  33. },
  34. "scripts": {
  35. "lint": "eslint .",
  36. "test": "mocha --reporter spec --bail --check-leaks test/",
  37. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  38. "test-cov": "nyc --reporter=html --reporter=text npm test",
  39. "version": "node scripts/version-history.js && git add HISTORY.md"
  40. }
  41. }