package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "send",
  3. "description": "Better streaming static file server with Range and conditional-GET support",
  4. "version": "1.2.1",
  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. "funding": {
  14. "type": "opencollective",
  15. "url": "https://opencollective.com/express"
  16. },
  17. "keywords": [
  18. "static",
  19. "file",
  20. "server"
  21. ],
  22. "dependencies": {
  23. "debug": "^4.4.3",
  24. "encodeurl": "^2.0.0",
  25. "escape-html": "^1.0.3",
  26. "etag": "^1.8.1",
  27. "fresh": "^2.0.0",
  28. "http-errors": "^2.0.1",
  29. "mime-types": "^3.0.2",
  30. "ms": "^2.1.3",
  31. "on-finished": "^2.4.1",
  32. "range-parser": "^1.2.1",
  33. "statuses": "^2.0.2"
  34. },
  35. "devDependencies": {
  36. "after": "^0.8.2",
  37. "eslint": "7.32.0",
  38. "eslint-config-standard": "14.1.1",
  39. "eslint-plugin-import": "2.32.0",
  40. "eslint-plugin-markdown": "2.2.1",
  41. "eslint-plugin-node": "11.1.0",
  42. "eslint-plugin-promise": "5.2.0",
  43. "eslint-plugin-standard": "4.1.0",
  44. "mocha": "^10.7.0",
  45. "nyc": "^17.0.0",
  46. "supertest": "6.3.4"
  47. },
  48. "files": [
  49. "LICENSE",
  50. "README.md",
  51. "index.js"
  52. ],
  53. "engines": {
  54. "node": ">= 18"
  55. },
  56. "scripts": {
  57. "lint": "eslint .",
  58. "test": "mocha --check-leaks --reporter spec",
  59. "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
  60. "test-cov": "nyc --reporter=html --reporter=text npm test",
  61. "version": "node scripts/version-history.js && git add HISTORY.md"
  62. }
  63. }