package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "send",
  3. "description": "Better streaming static file server with Range and conditional-GET support",
  4. "version": "0.17.2",
  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": "2.6.9",
  20. "depd": "~1.1.2",
  21. "destroy": "~1.0.4",
  22. "encodeurl": "~1.0.2",
  23. "escape-html": "~1.0.3",
  24. "etag": "~1.8.1",
  25. "fresh": "0.5.2",
  26. "http-errors": "1.8.1",
  27. "mime": "1.6.0",
  28. "ms": "2.1.3",
  29. "on-finished": "~2.3.0",
  30. "range-parser": "~1.2.1",
  31. "statuses": "~1.5.0"
  32. },
  33. "devDependencies": {
  34. "after": "0.8.2",
  35. "eslint": "7.32.0",
  36. "eslint-config-standard": "14.1.1",
  37. "eslint-plugin-import": "2.25.3",
  38. "eslint-plugin-markdown": "2.2.1",
  39. "eslint-plugin-node": "11.1.0",
  40. "eslint-plugin-promise": "5.2.0",
  41. "eslint-plugin-standard": "4.1.0",
  42. "mocha": "9.1.3",
  43. "nyc": "15.1.0",
  44. "supertest": "6.1.6"
  45. },
  46. "files": [
  47. "HISTORY.md",
  48. "LICENSE",
  49. "README.md",
  50. "index.js"
  51. ],
  52. "engines": {
  53. "node": ">= 0.8.0"
  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. }
  61. }