package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "cacheable-request",
  3. "version": "2.1.4",
  4. "description": "Wrap native HTTP requests with RFC compliant cache support",
  5. "main": "src/index.js",
  6. "scripts": {
  7. "test": "xo && nyc ava",
  8. "coverage": "nyc report --reporter=text-lcov | coveralls"
  9. },
  10. "xo": {
  11. "extends": "xo-lukechilds"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/lukechilds/cacheable-request.git"
  16. },
  17. "keywords": [
  18. "HTTP",
  19. "HTTPS",
  20. "cache",
  21. "caching",
  22. "layer",
  23. "cacheable",
  24. "RFC 7234",
  25. "RFC",
  26. "7234",
  27. "compliant"
  28. ],
  29. "author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
  30. "license": "MIT",
  31. "bugs": {
  32. "url": "https://github.com/lukechilds/cacheable-request/issues"
  33. },
  34. "homepage": "https://github.com/lukechilds/cacheable-request",
  35. "dependencies": {
  36. "clone-response": "1.0.2",
  37. "get-stream": "3.0.0",
  38. "http-cache-semantics": "3.8.1",
  39. "keyv": "3.0.0",
  40. "lowercase-keys": "1.0.0",
  41. "normalize-url": "2.0.1",
  42. "responselike": "1.0.2"
  43. },
  44. "devDependencies": {
  45. "@keyv/sqlite": "^1.2.6",
  46. "ava": "^0.24.0",
  47. "coveralls": "^3.0.0",
  48. "create-test-server": "^2.0.0",
  49. "delay": "^2.0.0",
  50. "eslint-config-xo-lukechilds": "^1.0.0",
  51. "nyc": "^11.0.2",
  52. "pify": "^3.0.0",
  53. "sqlite3": "^3.1.9",
  54. "this": "^1.0.2",
  55. "xo": "^0.19.0"
  56. }
  57. }