Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

package.json 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "make-fetch-happen",
  3. "version": "10.2.1",
  4. "description": "Opinionated, caching, retrying fetch client",
  5. "main": "lib/index.js",
  6. "files": [
  7. "bin/",
  8. "lib/"
  9. ],
  10. "scripts": {
  11. "preversion": "npm test",
  12. "postversion": "npm publish",
  13. "prepublishOnly": "git push origin --follow-tags",
  14. "test": "tap",
  15. "posttest": "npm run lint",
  16. "eslint": "eslint",
  17. "lint": "eslint \"**/*.js\"",
  18. "lintfix": "npm run lint -- --fix",
  19. "postlint": "template-oss-check",
  20. "snap": "tap",
  21. "template-oss-apply": "template-oss-apply --force"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/npm/make-fetch-happen.git"
  26. },
  27. "keywords": [
  28. "http",
  29. "request",
  30. "fetch",
  31. "mean girls",
  32. "caching",
  33. "cache",
  34. "subresource integrity"
  35. ],
  36. "author": "GitHub Inc.",
  37. "license": "ISC",
  38. "dependencies": {
  39. "agentkeepalive": "^4.2.1",
  40. "cacache": "^16.1.0",
  41. "http-cache-semantics": "^4.1.0",
  42. "http-proxy-agent": "^5.0.0",
  43. "https-proxy-agent": "^5.0.0",
  44. "is-lambda": "^1.0.1",
  45. "lru-cache": "^7.7.1",
  46. "minipass": "^3.1.6",
  47. "minipass-collect": "^1.0.2",
  48. "minipass-fetch": "^2.0.3",
  49. "minipass-flush": "^1.0.5",
  50. "minipass-pipeline": "^1.2.4",
  51. "negotiator": "^0.6.3",
  52. "promise-retry": "^2.0.1",
  53. "socks-proxy-agent": "^7.0.0",
  54. "ssri": "^9.0.0"
  55. },
  56. "devDependencies": {
  57. "@npmcli/eslint-config": "^3.0.1",
  58. "@npmcli/template-oss": "3.5.0",
  59. "mkdirp": "^1.0.4",
  60. "nock": "^13.2.4",
  61. "rimraf": "^3.0.2",
  62. "safe-buffer": "^5.2.1",
  63. "standard-version": "^9.3.2",
  64. "tap": "^16.0.0"
  65. },
  66. "engines": {
  67. "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
  68. },
  69. "tap": {
  70. "color": 1,
  71. "files": "test/*.js",
  72. "check-coverage": true,
  73. "timeout": 60
  74. },
  75. "templateOSS": {
  76. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  77. "version": "3.5.0"
  78. }
  79. }