package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "make-fetch-happen",
  3. "version": "9.1.0",
  4. "description": "Opinionated, caching, retrying fetch client",
  5. "main": "lib/index.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "scripts": {
  10. "preversion": "npm t",
  11. "postversion": "npm publish",
  12. "prepublishOnly": "git push --follow-tags",
  13. "test": "tap",
  14. "posttest": "npm run lint",
  15. "eslint": "eslint",
  16. "lint": "npm run eslint -- lib test",
  17. "lintfix": "npm run lint -- --fix"
  18. },
  19. "repository": "https://github.com/npm/make-fetch-happen",
  20. "keywords": [
  21. "http",
  22. "request",
  23. "fetch",
  24. "mean girls",
  25. "caching",
  26. "cache",
  27. "subresource integrity"
  28. ],
  29. "author": {
  30. "name": "Kat Marchán",
  31. "email": "kzm@zkat.tech",
  32. "twitter": "maybekatz"
  33. },
  34. "license": "ISC",
  35. "dependencies": {
  36. "agentkeepalive": "^4.1.3",
  37. "cacache": "^15.2.0",
  38. "http-cache-semantics": "^4.1.0",
  39. "http-proxy-agent": "^4.0.1",
  40. "https-proxy-agent": "^5.0.0",
  41. "is-lambda": "^1.0.1",
  42. "lru-cache": "^6.0.0",
  43. "minipass": "^3.1.3",
  44. "minipass-collect": "^1.0.2",
  45. "minipass-fetch": "^1.3.2",
  46. "minipass-flush": "^1.0.5",
  47. "minipass-pipeline": "^1.2.4",
  48. "negotiator": "^0.6.2",
  49. "promise-retry": "^2.0.1",
  50. "socks-proxy-agent": "^6.0.0",
  51. "ssri": "^8.0.0"
  52. },
  53. "devDependencies": {
  54. "eslint": "^7.26.0",
  55. "eslint-plugin-import": "^2.23.2",
  56. "eslint-plugin-node": "^11.1.0",
  57. "eslint-plugin-promise": "^5.1.0",
  58. "eslint-plugin-standard": "^5.0.0",
  59. "mkdirp": "^1.0.4",
  60. "nock": "^13.0.11",
  61. "npmlog": "^5.0.0",
  62. "require-inject": "^1.4.2",
  63. "rimraf": "^3.0.2",
  64. "safe-buffer": "^5.2.1",
  65. "standard-version": "^9.3.0",
  66. "tap": "^15.0.9"
  67. },
  68. "engines": {
  69. "node": ">= 10"
  70. },
  71. "tap": {
  72. "color": 1,
  73. "files": "test/*.js",
  74. "check-coverage": true
  75. }
  76. }