package.json 1.6 KB

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