package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "koa-static-cache",
  3. "description": "Static cache for koa",
  4. "version": "5.1.4",
  5. "author": {
  6. "name": "Jonathan Ong",
  7. "email": "me@jongleberry.com",
  8. "url": "http://jongleberry.com",
  9. "twitter": "https://twitter.com/jongleberry"
  10. },
  11. "contributors": [
  12. {
  13. "name": "Jeremiah Senkpiel",
  14. "email": "fishrock123@rocketmail.com",
  15. "url": "https://searchbeam.jit.su",
  16. "twitter": "https://twitter.com/fishrock123"
  17. },
  18. {
  19. "name": "dead_horse",
  20. "email": "dead_horse@qq.com",
  21. "url": "http://deadhorse.me",
  22. "twitter": "https://twitter.com/deadhorse_busi"
  23. }
  24. ],
  25. "files": [
  26. "index.js"
  27. ],
  28. "keywords": [
  29. "koa",
  30. "middleware",
  31. "file",
  32. "static",
  33. "cache",
  34. "gzip",
  35. "sendfile"
  36. ],
  37. "license": "MIT",
  38. "repository": {
  39. "type": "git",
  40. "url": "https://github.com/koajs/static-cache.git"
  41. },
  42. "bugs": {
  43. "mail": "me@jongleberry.com",
  44. "url": "https://github.com/koajs/static-cache/issues"
  45. },
  46. "dependencies": {
  47. "compressible": "^2.0.6",
  48. "debug": "^3.1.0",
  49. "fs-readdir-recursive": "^1.0.0",
  50. "mime-types": "^2.1.8",
  51. "mz": "^2.7.0"
  52. },
  53. "devDependencies": {
  54. "bluebird": "3",
  55. "istanbul": "~0.4.1",
  56. "koa": "2",
  57. "mocha": "2",
  58. "should": "8",
  59. "should-http": "0.0.4",
  60. "supertest": "1",
  61. "ylru": "1"
  62. },
  63. "scripts": {
  64. "test": "make test"
  65. },
  66. "engines": {
  67. "node": ">= 7.6.0"
  68. }
  69. }