You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.6 KiB

  1. {
  2. "name": "send",
  3. "description": "Better streaming static file server with Range and conditional-GET support",
  4. "version": "0.16.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.6.2",
  27. "mime": "1.4.1",
  28. "ms": "2.0.0",
  29. "on-finished": "~2.3.0",
  30. "range-parser": "~1.2.0",
  31. "statuses": "~1.4.0"
  32. },
  33. "devDependencies": {
  34. "after": "0.8.2",
  35. "eslint": "3.19.0",
  36. "eslint-config-standard": "10.2.1",
  37. "eslint-plugin-import": "2.8.0",
  38. "eslint-plugin-markdown": "1.0.0-beta.6",
  39. "eslint-plugin-node": "5.2.1",
  40. "eslint-plugin-promise": "3.6.0",
  41. "eslint-plugin-standard": "3.0.1",
  42. "istanbul": "0.4.5",
  43. "mocha": "2.5.3",
  44. "supertest": "1.1.0"
  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 --plugin markdown --ext js,md .",
  57. "test": "mocha --check-leaks --reporter spec --bail",
  58. "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec",
  59. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot"
  60. }
  61. }