package.json 1.2 KB

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