package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "serve-static",
  3. "description": "Serve static files",
  4. "version": "1.14.2",
  5. "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
  6. "license": "MIT",
  7. "repository": "expressjs/serve-static",
  8. "dependencies": {
  9. "encodeurl": "~1.0.2",
  10. "escape-html": "~1.0.3",
  11. "parseurl": "~1.3.3",
  12. "send": "0.17.2"
  13. },
  14. "devDependencies": {
  15. "eslint": "7.32.0",
  16. "eslint-config-standard": "14.1.1",
  17. "eslint-plugin-import": "2.25.3",
  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": "9.1.3",
  23. "nyc": "15.1.0",
  24. "safe-buffer": "5.2.1",
  25. "supertest": "6.1.6"
  26. },
  27. "files": [
  28. "LICENSE",
  29. "HISTORY.md",
  30. "index.js"
  31. ],
  32. "engines": {
  33. "node": ">= 0.8.0"
  34. },
  35. "scripts": {
  36. "lint": "eslint .",
  37. "test": "mocha --reporter spec --bail --check-leaks test/",
  38. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  39. "test-cov": "nyc --reporter=html --reporter=text npm test",
  40. "version": "node scripts/version-history.js && git add HISTORY.md"
  41. }
  42. }