package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "send",
  3. "description": "Better streaming static file server with Range and conditional-GET support",
  4. "version": "1.2.0",
  5. "author": "TJ Holowaychuk <tj@vision-media.ca>",
  6. "contributors": [
  7. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  8. "James Wyatt Cready <jcready@gmail.com>",
  9. "Jesús Leganés Combarro <piranna@gmail.com>"
  10. ],
  11. "license": "MIT",
  12. "repository": "pillarjs/send",
  13. "keywords": [
  14. "static",
  15. "file",
  16. "server"
  17. ],
  18. "dependencies": {
  19. "debug": "^4.3.5",
  20. "encodeurl": "^2.0.0",
  21. "escape-html": "^1.0.3",
  22. "etag": "^1.8.1",
  23. "fresh": "^2.0.0",
  24. "http-errors": "^2.0.0",
  25. "mime-types": "^3.0.1",
  26. "ms": "^2.1.3",
  27. "on-finished": "^2.4.1",
  28. "range-parser": "^1.2.1",
  29. "statuses": "^2.0.1"
  30. },
  31. "devDependencies": {
  32. "after": "^0.8.2",
  33. "eslint": "7.32.0",
  34. "eslint-config-standard": "14.1.1",
  35. "eslint-plugin-import": "2.25.4",
  36. "eslint-plugin-markdown": "2.2.1",
  37. "eslint-plugin-node": "11.1.0",
  38. "eslint-plugin-promise": "5.2.0",
  39. "eslint-plugin-standard": "4.1.0",
  40. "mocha": "^10.7.0",
  41. "nyc": "^17.0.0",
  42. "supertest": "6.2.2"
  43. },
  44. "files": [
  45. "HISTORY.md",
  46. "LICENSE",
  47. "README.md",
  48. "index.js"
  49. ],
  50. "engines": {
  51. "node": ">= 18"
  52. },
  53. "scripts": {
  54. "lint": "eslint .",
  55. "test": "mocha --check-leaks --reporter spec",
  56. "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
  57. "test-cov": "nyc --reporter=html --reporter=text npm test",
  58. "version": "node scripts/version-history.js && git add HISTORY.md"
  59. }
  60. }