package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "send",
  3. "description": "Better streaming static file server with Range and conditional-GET support",
  4. "version": "0.15.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. "keywords": [
  14. "static",
  15. "file",
  16. "server"
  17. ],
  18. "dependencies": {
  19. "debug": "2.6.1",
  20. "depd": "~1.1.0",
  21. "destroy": "~1.0.4",
  22. "encodeurl": "~1.0.1",
  23. "escape-html": "~1.0.3",
  24. "etag": "~1.8.0",
  25. "fresh": "0.5.0",
  26. "http-errors": "~1.6.1",
  27. "mime": "1.3.4",
  28. "ms": "0.7.2",
  29. "on-finished": "~2.3.0",
  30. "range-parser": "~1.2.0",
  31. "statuses": "~1.3.1"
  32. },
  33. "devDependencies": {
  34. "after": "0.8.2",
  35. "eslint": "3.17.0",
  36. "eslint-config-standard": "7.0.0",
  37. "eslint-plugin-markdown": "1.0.0-beta.4",
  38. "eslint-plugin-promise": "3.5.0",
  39. "eslint-plugin-standard": "2.1.1",
  40. "istanbul": "0.4.5",
  41. "mocha": "2.5.3",
  42. "supertest": "1.1.0"
  43. },
  44. "files": [
  45. "HISTORY.md",
  46. "LICENSE",
  47. "README.md",
  48. "index.js"
  49. ],
  50. "engines": {
  51. "node": ">= 0.8.0"
  52. },
  53. "scripts": {
  54. "lint": "eslint --plugin markdown --ext js,md .",
  55. "test": "mocha --check-leaks --reporter spec --bail",
  56. "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec",
  57. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot"
  58. }
  59. }