{"maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"keywords":["axios","retry"],"dist-tags":{"latest":"4.0.3"},"author":{"name":"Justin Beckwith"},"description":"Retry HTTP requests with Axios.","readme":"# retry-axios\n\n> Use Axios interceptors to automatically retry failed requests.  Super flexible. Built in exponential backoff.\n\n![retry-axios](https://raw.githubusercontent.com/justinbeckwith/retry-axios/main/site/retry-axios.webp)\n\n[![NPM Version][npm-image]][npm-url]\n[![GitHub Actions][github-image]][github-url]\n[![Known Vulnerabilities][snyk-image]][snyk-url]\n[![codecov][codecov-image]][codecov-url]\n[![Biome][biome-image]][biome-url]\n\n## Installation\n\n```sh\nnpm install retry-axios\n```\n\n## CDN\n\nFor front-end applications, you can also use `retry-axios` directly from a CDN without a build step. This is useful for quick prototypes or environments where you can't use npm.\n\n### jsDelivr\n\n```html\n<script src=\"https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js\"></script>\n<script src=\"https://cdn.jsdelivr.net/npm/retry-axios@4.0.0/build/src/index.js\"></script>\n<script>\n  // Attach retry-axios to the global axios object\n  rax.attach();\n\n  // Now you can use axios with retry capabilities\n  axios.get('https://httpbin.org/status/503')\n    .then(response => {\n      console.log('Success:', response.data);\n    })\n    .catch(error => {\n      console.error('Error:', error.message);\n    });\n</script>\n```\n\n### unpkg\n\n```html\n<script src=\"https://unpkg.com/axios/dist/axios.min.js\"></script>\n<script src=\"https://unpkg.com/retry-axios@4.0.0/build/src/index.js\"></script>\n<script>\n  // Attach retry-axios to the global axios object\n  rax.attach();\n\n  // Now you can use axios with retry capabilities\n  axios.get('https://httpbin.org/status/503')\n    .then(response => {\n      console.log('Success:', response.data);\n    })\n    .catch(error => {\n      console.error('Error:', error.message);\n    });\n</script>\n```\n\n## Usage\n\nTo use this library, import it alongside of `axios`:\n\n```js\n// Just import rax and your favorite version of axios\nconst rax = require('retry-axios');\nconst axios = require('axios');\n```\n\nOr, if you're using TypeScript / es modules:\n\n```js\nimport * as rax from 'retry-axios';\nimport axios from 'axios';\n```\n\nYou can attach to the global `axios` object, and retry 3 times by default:\n\n```js\nconst interceptorId = rax.attach();\nconst res = await axios('https://test.local');\n```\n\nOr you can create your own axios instance to make scoped requests:\n\n```js\nconst myAxiosInstance = axios.create();\nmyAxiosInstance.defaults.raxConfig = {\n  retry: 3\n};\nconst interceptorId = rax.attach(myAxiosInstance);\nconst res = await myAxiosInstance.get('https://test.local');\n```\n\nYou have a lot of options...\n\n```js\nconst interceptorId = rax.attach();\nconst res = await axios({\n  url: 'https://test.local',\n  raxConfig: {\n    // Retry 3 times before giving up. Applies to all errors (5xx, network errors, timeouts, etc). Defaults to 3.\n    retry: 3,\n\n    // Milliseconds to delay between retries. Defaults to 100.\n    // - For 'static': Fixed delay between retries\n    // - For 'exponential': Base multiplier for exponential calculation\n    // - For 'linear': Ignored (uses attempt * 1000)\n    retryDelay: 100,\n\n    // HTTP methods to automatically retry.  Defaults to:\n    // ['GET', 'HEAD', 'OPTIONS', 'DELETE', 'PUT']\n    httpMethodsToRetry: ['GET', 'HEAD', 'OPTIONS', 'DELETE', 'PUT'],\n\n    // The response status codes to retry.  Supports a double\n    // array with a list of ranges.  Defaults to:\n    // [[100, 199], [429, 429], [500, 599]]\n    statusCodesToRetry: [[100, 199], [429, 429], [500, 599]],\n\n    // You can set the backoff type.\n    // options are 'exponential' (default), 'static' or 'linear'\n    backoffType: 'exponential',\n\n    // Jitter strategy for exponential backoff. Defaults to 'none'.\n    // Options: 'none', 'full', 'equal'\n    // Helps prevent thundering herd in distributed systems\n    jitter: 'full',\n\n    // You can detect when an error occurs, before the backoff delay\n    onError: async (err) => {\n      const cfg = rax.getConfig(err);\n      console.log(`Error occurred, retry attempt #${cfg.currentRetryAttempt + 1} will happen after backoff`);\n    },\n\n    // You can detect when a retry attempt is about to be made, after the backoff delay\n    onRetryAttempt: async (err) => {\n      const cfg = rax.getConfig(err);\n      console.log(`Retry attempt #${cfg.currentRetryAttempt} is about to start`);\n      console.log(`Retries remaining: ${cfg.retriesRemaining}`);\n\n      // Check if this is the final retry attempt\n      if (cfg.retriesRemaining === 0) {\n        console.log('This is the final retry attempt');\n      }\n    }\n  }\n});\n```\n\n### Backoff Types and Timing\n\nThe `backoffType` option controls how delays between retry attempts are calculated. There are three strategies available:\n\n#### Exponential Backoff (default)\n\nUses the formula: `((2^attempt - 1) / 2) * retryDelay` milliseconds\n\nThe `retryDelay` parameter (defaults to 100ms) is used as the base multiplier for the exponential calculation.\n\nExample timing with default `retryDelay: 100`:\n- Retry 1: 50ms delay\n- Retry 2: 150ms delay\n- Retry 3: 350ms delay\n- Retry 4: 750ms delay\n- Retry 5: 1,550ms delay\n\nExample timing with `retryDelay: 1000`:\n- Retry 1: 500ms delay\n- Retry 2: 1,500ms delay\n- Retry 3: 3,500ms delay\n- Retry 4: 7,500ms delay\n- Retry 5: 15,500ms delay\n\n```js\nraxConfig: {\n  backoffType: 'exponential',  // This is the default\n  retryDelay: 1000,  // Use 1000ms as the base multiplier\n  retry: 5\n}\n```\n\n#### Static Backoff\n\nUses a fixed delay specified by `retryDelay` (defaults to 100ms if not set).\n\nExample timing with `retryDelay: 3000`:\n- Retry 1: 3,000ms delay\n- Retry 2: 3,000ms delay\n- Retry 3: 3,000ms delay\n\n```js\nraxConfig: {\n  backoffType: 'static',\n  retryDelay: 3000,  // 3 seconds between each retry\n  retry: 3\n}\n```\n\n#### Linear Backoff\n\nDelay increases linearly: `attempt * 1000` milliseconds\n\n**The `retryDelay` option is ignored when using linear backoff.**\n\nExample timing for the first 5 retries:\n- Retry 1: 1,000ms delay\n- Retry 2: 2,000ms delay\n- Retry 3: 3,000ms delay\n- Retry 4: 4,000ms delay\n- Retry 5: 5,000ms delay\n\n```js\nraxConfig: {\n  backoffType: 'linear',\n  retry: 5\n}\n```\n\n#### Maximum Retry Delay\n\nYou can cap the maximum delay for any backoff type using `maxRetryDelay`:\n\n```js\nraxConfig: {\n  backoffType: 'exponential',\n  maxRetryDelay: 5000,  // Never wait more than 5 seconds\n  retry: 10\n}\n```\n\n#### Jitter\n\nJitter adds randomness to exponential backoff delays to prevent the \"thundering herd\" problem where many clients retry at the same time. This is especially useful in distributed systems.\n\nAvailable jitter strategies (only applies to exponential backoff):\n\n**No Jitter (default)**\n```js\nraxConfig: {\n  backoffType: 'exponential',\n  jitter: 'none',  // or omit this option\n  retryDelay: 1000\n}\n// Retry 1: exactly 500ms\n// Retry 2: exactly 1,500ms\n// Retry 3: exactly 3,500ms\n```\n\n**Full Jitter**\n\nRandomizes the delay between 0 and the calculated exponential backoff:\n\n```js\nraxConfig: {\n  backoffType: 'exponential',\n  jitter: 'full',\n  retryDelay: 1000\n}\n// Retry 1: random between 0-500ms\n// Retry 2: random between 0-1,500ms\n// Retry 3: random between 0-3,500ms\n```\n\n**Equal Jitter**\n\nUses half fixed delay, half random:\n\n```js\nraxConfig: {\n  backoffType: 'exponential',\n  jitter: 'equal',\n  retryDelay: 1000\n}\n// Retry 1: 250ms + random(0-250ms) = 250-500ms\n// Retry 2: 750ms + random(0-750ms) = 750-1,500ms\n// Retry 3: 1,750ms + random(0-1,750ms) = 1,750-3,500ms\n```\n\n**Recommendation:** Use `'full'` jitter for most distributed systems to minimize collision probability while maintaining good retry timing.\n\n### Callback Timing\n\nThere are two callbacks you can use to hook into the retry lifecycle:\n\n- **`onError`**: Called immediately when an error occurs, before the backoff delay. Use this for logging errors or performing actions that need to happen right away.\n- **`onRetryAttempt`**: Called after the backoff delay, just before the retry request is made. Use this for actions that need to happen right before retrying (like refreshing tokens).\n\nBoth functions are asynchronous and must return a promise. The retry will wait for the promise to resolve before proceeding. If the promise is rejected, the retry will be aborted:\n\n```js\nconst res = await axios({\n  url: 'https://test.local',\n  raxConfig: {\n    onError: async (err) => {\n      // Called immediately when error occurs\n      console.log('An error occurred, will retry after backoff');\n    },\n    onRetryAttempt: async (err) => {\n      // Called after backoff delay, before retry\n      const token = await refreshToken(err);\n      window.localStorage.setItem('token', token);\n      // If refreshToken throws or this promise rejects,\n      // the retry will be aborted\n    }\n  }\n});\n```\n\n## Tracking Retry Progress\n\nYou can track the current retry state using properties available in the configuration:\n\n- **`currentRetryAttempt`**: The number of retries that have been attempted (starts at 0, increments with each retry)\n- **`retriesRemaining`**: The number of retries left before giving up (calculated as `retry - currentRetryAttempt`)\n\nThese properties are particularly useful when you want to show different messages or take different actions based on whether this is the final retry attempt:\n\n```js\nconst res = await axios({\n  url: 'https://test.local',\n  raxConfig: {\n    retry: 3,\n    onRetryAttempt: async (err) => {\n      const cfg = rax.getConfig(err);\n\n      console.log(`Retry attempt ${cfg.currentRetryAttempt} of ${cfg.retry}`);\n      console.log(`${cfg.retriesRemaining} retries remaining`);\n\n      // Show user-facing error only on final retry\n      if (cfg.retriesRemaining === 0) {\n        showErrorNotification('Request failed after multiple attempts');\n      }\n    }\n  }\n});\n```\n\nThis is especially useful when chaining retry-axios with other error interceptors:\n\n```js\n// Global error handler that shows notifications\naxios.interceptors.response.use(null, async (error) => {\n  const cfg = rax.getConfig(error);\n\n  // Only show error notification on the final retry attempt\n  // Don't spam the user with notifications for intermediate failures\n  if (cfg?.retriesRemaining === 0) {\n    showUserNotification('An error occurred: ' + error.message);\n  }\n\n  return Promise.reject(error);\n});\n\n// Attach retry interceptor\nrax.attach();\n```\n\n## Customizing Retry Logic\n\nYou can customize which errors should trigger a retry using the `shouldRetry` function:\n\n```js\nconst res = await axios({\n  url: 'https://test.local',\n  raxConfig: {\n    retry: 3,\n    // Custom logic to decide if a request should be retried\n    // This is called AFTER checking the retry count limit\n    shouldRetry: err => {\n      const cfg = rax.getConfig(err);\n\n      // Don't retry on 4xx errors except 429\n      if (err.response?.status && err.response.status >= 400 && err.response.status < 500) {\n        return err.response.status === 429;\n      }\n\n      // Retry on network errors and 5xx errors\n      return true;\n    }\n  }\n});\n```\n\nIf you want to add custom retry logic without duplicating too much of the built-in logic, `rax.shouldRetryRequest` will tell you if a request would normally be retried:\n\n```js\nconst res = await axios({\n  url: 'https://test.local',\n  raxConfig: {\n    // Override the decision making process on if you should retry\n    shouldRetry: err => {\n      const cfg = rax.getConfig(err);\n      if (cfg.currentRetryAttempt >= cfg.retry) return false // ensure max retries is always respected\n\n      // Always retry this status text, regardless of code or request type\n      if (err.response.statusText.includes('Try again')) return true\n\n      // Handle the request based on your other config options, e.g. `statusCodesToRetry`\n      return rax.shouldRetryRequest(err)\n    }\n  }\n});\n```\n\n## Accessing All Retry Errors\n\nWhen retries are exhausted and the request finally fails, you can access the complete history of all errors that occurred during the retry attempts. This is particularly useful for debugging and understanding what went wrong, especially for non-idempotent operations like POST requests where the error may change between attempts.\n\n```js\ntry {\n  await axios.post('https://test.local/api/endpoint', data, {\n    raxConfig: {\n      httpMethodsToRetry: ['POST'],\n      retry: 3\n    }\n  });\n} catch (err) {\n  const cfg = rax.getConfig(err);\n\n  // Access all errors encountered during retries\n  if (cfg?.errors) {\n    console.log(`Total attempts: ${cfg.errors.length}`);\n    console.log(`First error: ${cfg.errors[0].response?.status}`);\n    console.log(`Last error: ${err.response?.status}`);\n\n    // Log all error details\n    cfg.errors.forEach((error, index) => {\n      console.log(`Attempt ${index + 1}: ${error.response?.status} - ${error.response?.data}`);\n    });\n  }\n}\n```\n\nThe `errors` array is automatically populated and contains:\n- **First element**: The initial error that triggered the retry logic\n- **Subsequent elements**: Errors from each retry attempt\n- **Order**: Errors are in chronological order (oldest to newest)\n\nThis feature is especially valuable when:\n- Debugging complex failure scenarios where errors change between attempts\n- Implementing custom error handling logic that needs to consider all failures\n- Logging and monitoring to understand the full context of request failures\n- Working with non-idempotent operations where side effects may occur\n\n## What Gets Retried\n\nBy default, retry-axios will retry requests that:\n\n1. **Return specific HTTP status codes**: 1xx (informational), 429 (too many requests), and 5xx (server errors)\n2. **Are network errors without a response**: ETIMEDOUT, ENOTFOUND, ECONNABORTED, ECONNRESET, etc.\n3. **Use idempotent HTTP methods**: GET, HEAD, PUT, OPTIONS, DELETE\n\nThe `retry` config option controls the maximum number of retry attempts for **all** error types. If you need different behavior for network errors vs response errors, use the `shouldRetry` function to implement custom logic.\n\n## How it works\n\nThis library attaches an `interceptor` to an axios instance you pass to the API. This way you get to choose which version of `axios` you want to run, and you can compose many interceptors on the same request pipeline.\n\n## License\n\n[Apache-2.0](LICENSE)\n\n[github-image]: https://github.com/JustinBeckwith/retry-axios/workflows/ci/badge.svg\n[github-url]: https://github.com/JustinBeckwith/retry-axios/actions/\n[codecov-image]: https://codecov.io/gh/JustinBeckwith/retry-axios/branch/main/graph/badge.svg\n[codecov-url]: https://codecov.io/gh/JustinBeckwith/retry-axios\n[npm-image]: https://img.shields.io/npm/v/retry-axios.svg\n[npm-url]: https://npmjs.org/package/retry-axios\n[snyk-image]: https://snyk.io/test/github/JustinBeckwith/retry-axios/badge.svg\n[snyk-url]: https://snyk.io/test/github/JustinBeckwith/retry-axios\n[biome-image]: https://img.shields.io/badge/Biome-60a5fa?style=flat&logo=biome&logoColor=fff\n[biome-url]: https://biomejs.dev\n","repository":{"type":"git","url":"git+https://github.com/JustinBeckwith/retry-axios.git"},"bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"license":"Apache-2.0","versions":{"0.0.1":{"name":"retry-axios","version":"0.0.1","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@0.0.1","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"nyc":{"exclude":["build/test"]},"dist":{"shasum":"ff12ca70a0d13ae5787c0e55dfb15049046962ab","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-0.0.1.tgz","integrity":"sha512-ok+u1mgR9/VprOciXF746zt/cDjmPvWWF1JgPGD47sEKzkqNmgEZNqW3KsBb7HVvu2dgOBqU1ogbnPUzY7lRHg==","signatures":[{"sig":"MEYCIQDmT0W804WIUz43uyaPSwj2ORAy0kfdbzgduV2Cwr8SbgIhAMX1o57k53AZzHMvqPiT9Dd6kSZbGsCMSn4Z01S+12yy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./build/src/index.js","files":["build/src","LICENSE","packge.json","README.md"],"types":"./build/src/index.d.ts","gitHead":"154887c664e8b70c8e9c58c8960e155801155987","scripts":{"fix":"gts fix","test":"nyc mocha build/test --timeout 5000 --require source-map-support/register","check":"gts check","clean":"gts clean","codecov":"nyc report --reporter=json && codecov -f coverage/*.json","compile":"tsc -p .","prepare":"npm run compile","pretest":"npm run compile","posttest":"npm run check && npm run license-check","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"5.6.0","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"8.9.4","devDependencies":{"gts":"^0.5.1","nyc":"^11.2.1","nock":"^9.1.6","axios":"^0.17.1","mocha":"^5.0.0","codecov":"^3.0.0","typescript":"~2.6.0","@types/nock":"^9.1.2","@types/node":"^9.3.0","@types/mocha":"^2.2.43","js-green-licenses":"^0.4.0","source-map-support":"^0.5.0"},"peerDependencies":{"axios":"^0.17.1"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios-0.0.1.tgz_1517294886810_0.9237094109412283","host":"s3://npm-registry-packages"}},"0.1.0":{"name":"retry-axios","version":"0.1.0","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@0.1.0","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"nyc":{"exclude":["build/test"]},"dist":{"shasum":"d6382b94cf986a4696ad9b0c6cfdd0d576adbaf5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-0.1.0.tgz","integrity":"sha512-rCCk8D4gX8MCO6ygd/zHrm8xiAUyMDIk/5ofarBoihcM1oybRF1Tem/8SB+cLLpxa+jHrz/iJEasjGeyiCtCbw==","signatures":[{"sig":"MEQCIGeRS/s41HGpKcbPxWWxFMBmf9y3M8+hwzJ02bJdCVqxAiBtNcBINKe9aXE9sIyBrRwu/32QBT/XsZKK3QYkoIdzKg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./build/src/index.js","files":["build/src","LICENSE","packge.json","README.md"],"types":"./build/src/index.d.ts","gitHead":"42a8a1a38ea3d802d3dcd4b6d7e3763074c01ba8","scripts":{"fix":"gts fix","test":"nyc mocha build/test --timeout 5000 --require source-map-support/register","check":"gts check","clean":"gts clean","codecov":"nyc report --reporter=json && codecov -f coverage/*.json","compile":"tsc -p .","prepare":"npm run compile","pretest":"npm run compile","posttest":"npm run check && npm run license-check","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"5.6.0","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"8.9.4","devDependencies":{"gts":"^0.5.1","nyc":"^11.2.1","nock":"^9.1.6","axios":"^0.17.1","mocha":"^5.0.0","codecov":"^3.0.0","typescript":"~2.6.0","@types/nock":"^9.1.2","@types/node":"^9.3.0","@types/mocha":"^2.2.43","js-green-licenses":"^0.4.0","source-map-support":"^0.5.0"},"peerDependencies":{"axios":"^0.17.1"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios-0.1.0.tgz_1517340630481_0.6453096766490489","host":"s3://npm-registry-packages"}},"0.2.0":{"name":"retry-axios","version":"0.2.0","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@0.2.0","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"nyc":{"exclude":["build/test"]},"dist":{"shasum":"7f24cbc6f42296d612d6564779eb6d66e9bcf53e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-0.2.0.tgz","integrity":"sha512-U8/py7R4Ztc9mADnWjOD3zmj+a7gw92U7mBkqdgqwGZgmh2L2kBX8JvgKSLRkqmdHIyghODQ2aikGO5TLT53Pw==","signatures":[{"sig":"MEUCIBoKSjrfSMePDd+ao4yrgUo+I9yskW8DhvVsE3EWMbugAiEApdm8S4bakaHM1psRNeh3pZAEb90APzukUCp2hYNZHqo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./build/src/index.js","files":["build/src","LICENSE","packge.json","README.md"],"types":"./build/src/index.d.ts","gitHead":"60d4cba1d5d92112ba0bd814e68e469645d3d362","scripts":{"fix":"gts fix","test":"nyc mocha build/test --timeout 5000 --require source-map-support/register","check":"gts check","clean":"gts clean","codecov":"nyc report --reporter=json && codecov -f coverage/*.json","compile":"tsc -p .","prepare":"npm run compile","pretest":"npm run compile","posttest":"npm run check && npm run license-check","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"5.6.0","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"8.9.4","devDependencies":{"gts":"^0.5.1","nyc":"^11.2.1","nock":"^9.1.6","axios":"^0.17.1","mocha":"^5.0.0","codecov":"^3.0.0","typescript":"~2.6.0","@types/nock":"^9.1.2","@types/node":"^9.3.0","@types/mocha":"^2.2.43","js-green-licenses":"^0.4.0","source-map-support":"^0.5.0"},"peerDependencies":{"axios":"^0.17.1"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios-0.2.0.tgz_1517347263152_0.017217595828697085","host":"s3://npm-registry-packages"}},"0.3.0":{"name":"retry-axios","version":"0.3.0","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@0.3.0","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"nyc":{"exclude":["build/test"]},"dist":{"shasum":"7858ad369872d6acaf05fd97b0490969c9c35ee2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-0.3.0.tgz","integrity":"sha512-6vOCghodB5p5N/ZOqug7A3WsT42TULZ7NErUi4lP3KtwtXgz4hE/43LWHsFuHuBfXRmOm/tjXBWAjnObrcy+yg==","signatures":[{"sig":"MEYCIQC5Ucf6O7JJWFRaAUBoR96yD+FIt5AirGL4DwTO0+TY6gIhAJcvaA1/nHXNTY+egmtItMeCR/662xDI1KWvI9U/ZziE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./build/src/index.js","files":["build/src","LICENSE","packge.json","README.md"],"types":"./build/src/index.d.ts","gitHead":"06d7c5efc392c74e4e82cac9c20145cd9bf5abaa","scripts":{"fix":"gts fix","test":"nyc mocha build/test --timeout 5000 --require source-map-support/register","check":"gts check","clean":"gts clean","codecov":"nyc report --reporter=json && codecov -f coverage/*.json","compile":"tsc -p .","prepare":"npm run compile","pretest":"npm run compile","posttest":"npm run check && npm run license-check","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"5.6.0","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"8.9.4","devDependencies":{"gts":"^0.5.1","nyc":"^11.2.1","nock":"^9.1.6","axios":"^0.17.1","mocha":"^5.0.0","codecov":"^3.0.0","typescript":"~2.6.0","@types/nock":"^9.1.2","@types/node":"^9.3.0","@types/mocha":"^2.2.43","js-green-licenses":"^0.4.0","source-map-support":"^0.5.0"},"peerDependencies":{"axios":"^0.17.1"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios-0.3.0.tgz_1517609804254_0.7512633285950869","host":"s3://npm-registry-packages"}},"0.3.2":{"name":"retry-axios","version":"0.3.2","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@0.3.2","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"nyc":{"exclude":["build/test"]},"dist":{"shasum":"5757c80f585b4cc4c4986aa2ffd47a60c6d35e13","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-0.3.2.tgz","fileCount":6,"integrity":"sha512-jp4YlI0qyDFfXiXGhkCOliBN1G7fRH03Nqy8YdShzGqbY5/9S2x/IR6C88ls2DFkbWuL3ASkP7QD3pVrNpPgwQ==","signatures":[{"sig":"MEUCIFXAgxaVy8aTssT1w7azlIAQcGNVxYqYCijZqlZmjqHXAiEAsYwTzuBnB0jmlXMw221r9uF+hEZh+ZKfRbUkjkuumNg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27863},"main":"./build/src/index.js","files":["build/src","LICENSE","packge.json","README.md"],"types":"./build/src/index.d.ts","gitHead":"a091b45a7e296aac980349e2eac5ef7727d4b463","scripts":{"fix":"gts fix","test":"nyc mocha build/test --timeout 5000 --require source-map-support/register","check":"gts check","clean":"gts clean","codecov":"nyc report --reporter=json && codecov -f coverage/*.json","compile":"tsc -p .","prepare":"npm run compile","pretest":"npm run compile","posttest":"npm run check && npm run license-check","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"5.6.0","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"8.9.4","_hasShrinkwrap":false,"devDependencies":{"gts":"^0.5.3","nyc":"^11.4.1","nock":"^9.1.6","axios":"^0.18.0","mocha":"^5.0.1","codecov":"^3.0.0","typescript":"~2.7.2","@types/nock":"^9.1.2","@types/node":"^9.4.6","@types/mocha":"^2.2.48","js-green-licenses":"^0.4.0","source-map-support":"^0.5.3"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_0.3.2_1519088216717_0.31579119500443675","host":"s3://npm-registry-packages"}},"0.4.0":{"name":"retry-axios","version":"0.4.0","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@0.4.0","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"nyc":{"exclude":["build/test"]},"dist":{"shasum":"96c83ed2e770f5d9201f3a91db393e340cebd36f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-0.4.0.tgz","fileCount":3,"integrity":"sha512-GLSqqxeG24Lz/SQYIK7ent8pvPnNQ/QLEGdTSvQI3MFrc6/za7U4W1nqZZ8lYl10G+jwxvFhE/86TwOVVAPvIA==","signatures":[{"sig":"MEQCIFr+//TmdX9Qc1HjMAmn+0kIiKZKXamCe8hUZaqlIwGAAiB4zIJB/ep4ar2XI3OwX7RVJjBSlp2w+hBvXaxR4BZixw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16891,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcRm2ZCRA9TVsSAnZWagAA768P/R0HhJaQFlzJFkmBWUFT\n4wOFDvj4X+q7swIawPZbDOV0UHShOuh7cA5qsSt5h9/S32Pq3BHyAPet4rmY\ne1WydBn0UJJnFZ1Sh61AXaGRggvI7AHBObfgPdgdCnOIewJcblTXd/T/O8mg\njI5u7c5DT3rtcQTk7HTUFIbNq6z/Htc+QPjCniBt6auATSTC/zhiZPeFUcB1\nppDmoGoH8SSiYJTbvENDr+nF5L/t9oxz92S+hLopeO5r6Ai7i8EkJTG4Xc9X\nVsCOFcJBUHxUryRGcoCZNM5wkuoS42+Dfti4aP3nSFcb5tJa9VAbVfHHT3v3\nLYAZkg3tuiKi5JQVnP1gh2tuobxIWsrJU8wZm1WFBfXQJoogf2dd57r8PtuG\ngiGqPkohU1R6tXcixjRaPtOPKmMeEq/3NxE4kdhppK9rytBSv5FLCBRoGhL+\nxhKlJysOWUOBUFCZaC0eYgBbn0iMlCaeX2DiFWEgO9Gz2G/S7QrnkALU8AuV\nOToaQFj8konevBwAjHIk62nVkZRp+15B65wVy6ilIECRd9UOSBeUFMx8Dd4T\nsNcIKW+9bVKzeUmQrb6BXJOd36tQkFQHB8VLnb46o4pyU6BPN9924FqgV0HP\nR2UJjW42liDmSJnkPZy0EyUxUIP7B6LQfk1ubWIw6yBCf1elftc38I0mxLBC\nXG7+\r\n=wosX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./build/src/index.js","types":"./build/src/index.d.ts","engines":{"node":">=6.0.0"},"gitHead":"1ea60bc236e904a9e38d8df77e67dd73149828eb","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"nyc mocha build/test --timeout 5000 --require source-map-support/register","clean":"gts clean","codecov":"nyc report --reporter=json && codecov -f coverage/*.json","compile":"tsc -p .","prepare":"npm run compile","pretest":"npm run compile","commitlint":"git log -1 --pretty=%B | commitlint","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"6.5.0","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"11.7.0","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"gts":"^0.9.0","nyc":"^13.0.0","nock":"^10.0.0","axios":"^0.18.0","mocha":"^5.2.0","codecov":"^3.0.4","@babel/cli":"^7.1.5","typescript":"~3.2.0","@babel/core":"^7.1.6","@types/nock":"^9.3.0","@types/node":"^10.5.4","@types/mocha":"^5.2.5","@commitlint/cli":"^7.3.2","semantic-release":"^15.13.3","@babel/preset-env":"^7.1.6","js-green-licenses":"^0.5.0","source-map-support":"^0.5.6","@commitlint/config-conventional":"^7.3.1","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_0.4.0_1548119448693_0.40699096493458065","host":"s3://npm-registry-packages"}},"0.4.1":{"name":"retry-axios","version":"0.4.1","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@0.4.1","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"nyc":{"exclude":["build/test"]},"dist":{"shasum":"22ee392c6f20ae858d06650fa06091ea4f3406e5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-0.4.1.tgz","fileCount":6,"integrity":"sha512-h3mdzDUw4MlvzjxJ96mysapyxcHzAmGVywrBtU5oAtXI2aBxMEgcmyepkKfoVXK6we2padRl1BwwvL1N7+lPwA==","signatures":[{"sig":"MEUCIQCF7BQTVK0gdgX06CvvfxlUBkeZw4GAl/5hd+9fHvMZ5QIgVwA8XnBZR17wg61XjbDwC2k2NEFk1PO8i++CUbH+agY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27430,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcRm+jCRA9TVsSAnZWagAAurYP/iUcOJl7oaJ12A2+aHYB\nuZeIt6TgovanNgY3D6eHGmuI167RzrBw+YWA5CNYIh5maTz02QiXjivSPR0Z\nKxMXd7PHq8usPd6/nnVK9xq0phry+FbKAvFQZqEHQkKVl/cSQyeSrgHr9ISZ\n4cG6K2KjNpzgmp7fPifjceTzhiQlj/u/x/0DtRfGKQS0JqIgBDT+cVIEq0JE\numMdlLuqq/vPiBBVxfujNDPI+Eb6Fj5K0xIWTsGwg894MKzB12O4Njxl9ADT\ne4P5pcbBPttd6pkPjihhqC5gSZz9YZy37PRIvIkkQT+8FMIce1y3EcSvZTu5\neNpkrWWK6/mpj14s5Q2gU3cVdhN8syOLATzF90h/aUUtD/VPfyiFlqgCuUIk\nrvicUj0uQx6RdqO6CFUGUtHX77h8Kn/DZt8rNbGVeKMuwh+9n2RBekUmsWUX\nu045q9YzrYRKlzgs0SqUZErmZ56009DWPpmqKV4rduWFNCW2X705fpcwkBcF\nUyCj/wPP5jGb0MPpRZbPSyv6Rjdac/4qJKfD2AR8NSVzQPhS3QWcLXjF1AkA\nWpc+Q9uKhfoy7mkajK16NAirVOE5VOyX+QFx6+gcT4nZ/29DtRxx/PDxwQqG\nrq2f+A0EFTHMC04/m8RYCGFA6NYHZXkXvzS2A2hw5qAHPyI0mDXzeKXMCaAs\nEKeM\r\n=rSQ+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./build/src/index.js","types":"./build/src/index.d.ts","engines":{"node":">=6.0.0"},"gitHead":"30663b362bd1eddf33c6390e4df8123fa295d37e","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"nyc mocha build/test --timeout 5000 --require source-map-support/register","clean":"gts clean","codecov":"nyc report --reporter=json && codecov -f coverage/*.json","compile":"tsc -p .","prepare":"npm run compile","pretest":"npm run compile","commitlint":"git log -1 --pretty=%B | commitlint","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"6.5.0","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"11.7.0","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"gts":"^0.9.0","nyc":"^13.0.0","nock":"^10.0.0","axios":"^0.18.0","mocha":"^5.2.0","codecov":"^3.0.4","@babel/cli":"^7.1.5","typescript":"~3.2.0","@babel/core":"^7.1.6","@types/nock":"^9.3.0","@types/node":"^10.5.4","@types/mocha":"^5.2.5","@commitlint/cli":"^7.3.2","semantic-release":"^15.13.3","@babel/preset-env":"^7.1.6","js-green-licenses":"^0.5.0","source-map-support":"^0.5.6","@commitlint/config-conventional":"^7.3.1","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_0.4.1_1548119971022_0.5910313931084765","host":"s3://npm-registry-packages"}},"0.5.0":{"name":"retry-axios","version":"0.5.0","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@0.5.0","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"nyc":{"exclude":["build/test"]},"dist":{"shasum":"599e722bbfce6a9568830f25451536c61e06932b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-0.5.0.tgz","fileCount":6,"integrity":"sha512-z1pPucA5/owlZB7MSPVOHk3qQIxwfZQ5yWM/WIgQVIza7FNYOJrItwc0P4nwBn4SMfuUtH7OulRKxyCqfjVO2A==","signatures":[{"sig":"MEUCIQCfoZFm9g2q9jkmFT5qfgm8kVStX2V34601nL8XJUvuaAIgYitBA5Ft+nzOM8TSlv176jqoBnBV+eNdQODvfbM/HXk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28408,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdEZ1CRA9TVsSAnZWagAAmnYQAKHEA6TsqU47vHvMSpYf\nMrAERjU3bmWfzSRyiKW5+3BXrQ6aRQgi3pL0L4yqzCsyz750n1D4PAXY5zOo\nE9KVU7eiBXQC7pp/0QrOQe9L/GesiM+MnoH3e1fA24MotDd66dBCKJa1ZC7i\n7I1G/dm6Pu7fVNIbyziepKpQ2zxillQMtljS5mTvKrPrOYHNfrz0S8gF5qW5\njWfwrJP+B6u1rD6C8ng9u/2n4bJah4KzEvaVyZtQNfYnjIfY7oo4h2V6BBsd\ncN3hI74APNwWqWJDpYIEgLyYA86V8w7RXzMnGi/Ddefdop7V8p6mclJP3fQG\nUT5QKyKOpNBviarBhQycrHTJf2XZ2rpbpZtWyOI1pLnQRD0Te4yMI3kcS8JK\npfakFEwY5VeZTLeKDcPsq4O2ILEb0su3VKUgYrBZCvJ3I++vVFaqnIpGszKg\nevtQIkZrrxnlhVSlW8cECSjfTCUAO7zRlhJ0jxMb1rY5owcy5xnOEpTjbgzK\nRKyyjVymzXhqscF6B9IUkMa4p2XYJ4/Q+a8ouMKbF3x6O3QLsnPi1zRnCEJG\nsM3a6PVoC0sJWgY98Pko7uXaEF4445tTmWezPEOIqh6453CRg6zFjxn85hiD\nwhY1o9xOqIe+0xePJYLX8BKZfiazw2BT42YmjOkHTdazGvc1efnVGzf/Qhol\nkc09\r\n=Pjek\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./build/src/index.js","types":"./build/src/index.d.ts","engines":{"node":">=6.0.0"},"gitHead":"acfbe399f7017a607c4f49c578250a82834c448c","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"nyc mocha build/test --timeout 5000 --require source-map-support/register","clean":"gts clean","codecov":"nyc report --reporter=json && codecov -f coverage/*.json","compile":"tsc -p .","prepare":"npm run compile","pretest":"npm run compile","commitlint":"git log -1 --pretty=%B | commitlint","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"6.5.0","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"11.10.0","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"gts":"^0.9.0","nyc":"^13.0.0","nock":"^10.0.0","axios":"^0.18.0","mocha":"^6.0.0","codecov":"^3.0.4","@babel/cli":"^7.1.5","typescript":"~3.3.0","@babel/core":"^7.1.6","@types/nock":"^9.3.0","@types/node":"^10.5.4","@types/mocha":"^5.2.5","@commitlint/cli":"^7.3.2","semantic-release":"^15.13.3","@babel/preset-env":"^7.1.6","js-green-licenses":"^0.5.0","source-map-support":"^0.5.6","@commitlint/config-conventional":"^7.3.1","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_0.5.0_1551124084485_0.6897964758064967","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"retry-axios","version":"1.0.0","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@1.0.0","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"nyc":{"exclude":["build/test"]},"dist":{"shasum":"09eef76a1637b44ce562601944e8e080b35192fd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-1.0.0.tgz","fileCount":6,"integrity":"sha512-9iLN5DdNzG9ET4e2RQkE54QIABT5rm6Dj3LZi3YUZtsqz3yEIA7U/vwVknR2bScxX9UpjIPnnlQVAiH/60Kq7g==","signatures":[{"sig":"MEUCIFiKulYTTfKvZhz/vEA3LF48fAUYdD1HAmaNWanLNz3OAiEAg0j46Tx35jGItdevLT67vG9OheoMGWaJI5saqc3iS80=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28408,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcw0DYCRA9TVsSAnZWagAAffQP/0gvDkDuB9mhLS8AUZEg\nOtP78oLIfYS/WxgdKAFB2p4oiMcSdBJ1wNKTtQgJ4SiYeFq2s7WlZ+fVZTgQ\nu4G6mmd/EtvF59ZDoElnWlaEzBZtygARiArcgzLtuCJYa57czmZzlHN5K3iu\nxNbF5s4JBA9gIHJ8gjtLPo77LLfb1OyqwOLwhHWYNqpnSyH7RvjW3DdnZgOP\nRgL6mMCKxholBFjy+cbWbU0feqTp+ecFbR4bjxbZN7V0i4/gJuhcqkj8pmDT\nqMvNqrMgd/f9FdCtLSUVz3erXJ55wJTzFYa9GqlzS6OP40Q3rX6vSbrSx/ZT\nfwmNObhazGoxhTfykak5O2BmA07TGWsO2reK56CvQAnxOFubEHmJ4hbUyoB8\npNqsdnmkm7BIajsWcjmWylj2G6NqVWcOI+OuPIKonvCTkUZmyCf0+e01wG3B\n3uQ4NVXf3drXMCJ4TMIIuGvFzLIECkXyTqumxW9DdvfHp7qIMAxoQNegqMSl\npNXZP7tU4VbrhYSmBiTTYg2ssUjVtvVkQ6wi4hI/l+Vh82qaULzg0oJFP02l\nKYFkmTjZyB48OPufwe3SqaThz8ZANHq9NpX8x0kBoO7yXsX5bJlqfJZUF9t1\nNkJM9ECX9CXQn6NwT5Kys5A6xLfnQ4+ryGyT0BvlrFubjq+pFWFxssmqio0j\n4/Pl\r\n=5e9U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./build/src/index.js","types":"./build/src/index.d.ts","engines":{"node":">=8.0.0"},"gitHead":"78ea044f17b0d1900509994b36bda31da17ea360","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"nyc mocha build/test --timeout 5000 --require source-map-support/register","clean":"gts clean","codecov":"nyc report --reporter=json && codecov -f coverage/*.json","compile":"tsc -p .","prepare":"npm run compile","pretest":"npm run compile","commitlint":"git log -1 --pretty=%B | commitlint","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"6.5.0","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"11.14.0","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"gts":"^0.9.0","nyc":"^14.0.0","nock":"^10.0.0","axios":"^0.18.0","mocha":"^6.0.0","codecov":"^3.0.4","@babel/cli":"^7.1.5","typescript":"~3.4.0","@babel/core":"^7.1.6","@types/nock":"^9.3.0","@types/node":"^10.5.4","@types/mocha":"^5.2.5","@commitlint/cli":"^7.3.2","semantic-release":"^15.13.3","@babel/preset-env":"^7.1.6","js-green-licenses":"^0.5.0","source-map-support":"^0.5.6","@commitlint/config-conventional":"^7.3.1","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_1.0.0_1556299989437_0.3324941819658014","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"retry-axios","version":"1.0.1","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@1.0.1","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"nyc":{"exclude":["build/test"]},"dist":{"shasum":"c1e465126416d8aee7a0a2d4be28401cc0135029","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-1.0.1.tgz","fileCount":6,"integrity":"sha512-aVnENElFbdmbsv1WbTi610Ukdper88yUPz4Y3eg/DUyHV7vNaLrj9orB6FOjvmFoXL9wZvbMAsOD87BmcyBVOw==","signatures":[{"sig":"MEQCIFcq3RHUqsbtMMjdFXoXhBeE10iitmATT4+py09Yd3toAiBI8Mj0GWtdHw4VDHepRHk/SsOFCSGeROo09r8fGF/dMw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28425,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcw0FHCRA9TVsSAnZWagAArt4P/0zlj+BEE44lx7uKg4lD\neT5iFXjSuJ8sgASmgWfXy2Ak3kYTD0Ee6GMDeHT3FveFund7E+EpaP11jqd6\n+bSKZli2BcLA5V7cPUU8hVzS1F9CdAC3Kg9/2DaDQo0S5jbWXcRKg7/LaBU2\nseP/4X2mzEkRjz1FBYUOiDFeNkuTb019sp1w6fysIpgiMpkZi8Z/YjrYKRF3\nlZXXv60wFeP0qO4fPxMWi9BbC1/9L1Zek1URaLmv1pHuzyAhVvEhX/ZSQ0Qu\nhEzutM8cczwYa1uCwJz6Uw/vN6qRZr8VK4O9fEvfj+WiC1yPUgXdhdN/5/bE\nytP0CIZFTbzdHmLsYaidI9uuBxXnRgp6+bPzZmQWdDcinaQHQyXLsYUQajQW\n+mGYJCf9m4KvmEqBmq5qOk6I9TbVdMHEAhZq6vOZ43FoE9l0ERwn5+/hH27F\nQgMOtRH8z1BsOjoHG4vvQt5UeYUccheuWZdW1LF1TToRF4xHlqN7STq/omJ5\nAN2pMJe/e+4jLnDBuXRW6fKJCkPmUAoa81RnXEZdfc1melCRCbCEG5WALlai\n/eb+jCTwmDijPLjVXnAS0/NDAQjzq5GRnNbUiZ3pOQB9QCxTYKnORnjlw60b\ndc6BX9KZ+68LfZC7gQRnV5GQDqMmMFuIL5sh2LhJVYf09MGpjJ3nnT6w8tJI\n4uog\r\n=JUAq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./build/src/index.js","types":"./build/src/index.d.ts","engines":{"node":">=8.0.0"},"gitHead":"1dc0f2f77b52cd6fcbec69f31c70fc5f2e0f084e","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"nyc mocha build/test --timeout 5000 --require source-map-support/register","clean":"gts clean","codecov":"nyc report --reporter=json && codecov -f coverage/*.json","compile":"tsc -p .","prepare":"npm run compile","pretest":"npm run compile","commitlint":"git log -1 --pretty=%B | commitlint","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"6.5.0","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"11.14.0","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"gts":"^1.0.0","nyc":"^14.0.0","nock":"^10.0.0","axios":"^0.18.0","mocha":"^6.0.0","codecov":"^3.0.4","@babel/cli":"^7.1.5","typescript":"~3.4.0","@babel/core":"^7.1.6","@types/nock":"^9.3.0","@types/node":"^10.5.4","@types/mocha":"^5.2.5","@commitlint/cli":"^7.3.2","semantic-release":"^15.13.3","@babel/preset-env":"^7.1.6","js-green-licenses":"^0.5.0","source-map-support":"^0.5.6","@commitlint/config-conventional":"^7.3.1","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_1.0.1_1556300102720_0.5750819334409767","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"retry-axios","version":"1.0.2","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@1.0.2","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test"]},"dist":{"shasum":"f1b5895ad0ef69656036c48fd7952f72340ed772","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-1.0.2.tgz","fileCount":6,"integrity":"sha512-PeR6ZVYscfOHrbN3A6EiP8M6UlseHpDkwVDsT6YMcZH0qyMubuFIq6gwydn+ZkvBzry3xmAZwZ3pW1zmJbvLOA==","signatures":[{"sig":"MEYCIQCzLfFW6gwFb6t5jNM+7SawIHpJvGUBDsQ3H/lv6zxatgIhALx+doWYLvqfXy530tr+O9Z+kBNVABZQxPpbcdxYYkKG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28444,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeGhUDCRA9TVsSAnZWagAA5zkP/RX7UZTOgFhy2MstojOk\n2/d4t/McslmefKQpBIaLnNzKBn5aMQC4bcGIX5n5trqYuD8tcGHwc7haYm1S\n+9lWI8fdg1WAI3bHrPrSf6ZWoPPiWqjVVoaiBL+Dvn2DGCv65xA7PmTiTs5A\nw+xM6d98C7OiF9ji6FxlxMFp/DUi760Z+mixtFFS3hWq/Fs5rYkvODFvzkA8\nvcws5jsbHjKDOjj6HCdSoXNV8E25946AK7HQ6ODcePD/ouZ593gnrzj6RQxM\nbJ+G+I0oBGzGJZQA994m9/tmS6UloQyXLjMceAJnO7GCIE8dAXWDd7i5a9wx\nJPYODVyWt7GHI81j+yGkCfoOWSO3IIq0v64hMpu/BYUNvKFP0wQhQJt8Pluq\nwPSlCGxYNFXXALI+20K+b3bRTMt+0/thsweRbBuRSIK7PRz30ypLmtdjZXBW\nDYetf4Hs8l7NH8JU22vGorFqYTraas3Jr/m8XzQZyB7vGQvq8+D+etCUEArz\numXvU0EDK32Q/VPqtiQ1sryVgwA8VA7zf1eyOAZ/ja8co3IhkQK8zxcS8zKk\ne2MQ+IJ7SrLV6GJAmpN95mfx1iPzJ8nliqRHbF2OsBvsDrLTFDpRn9G+pCYd\noMtkV9H97nbH/mTA+kqJJXPhFtihLzJ47UHRUk1Mh191MSgmhDAKPwDuJpaF\nWuLS\r\n=S1va\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./build/src/index.js","types":"./build/src/index.d.ts","engines":{"node":">=8.0.0"},"gitHead":"88ffd005a9a659ee75f545d3b1b4df8d00b78ceb","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"c8 mocha build/test --timeout 5000 --require source-map-support/register","clean":"gts clean","codecov":"c8 report --reporter=json && codecov -f coverage/*.json","compile":"tsc -p .","prepare":"npm run compile","pretest":"npm run compile","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"6.13.6","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"11.15.0","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"c8":"^7.0.0","gts":"^1.0.0","nock":"^11.0.0","axios":"^0.18.0","mocha":"^7.0.0","codecov":"^3.5.0","@babel/cli":"^7.4.4","typescript":"~3.7.0","@babel/core":"^7.4.5","@types/nock":"^10.0.3","@types/node":"^12.0.4","@types/mocha":"^5.2.7","semantic-release":"^16.0.0","@babel/preset-env":"^7.4.5","js-green-licenses":"^1.0.0","source-map-support":"^0.5.12","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_1.0.2_1578767619370_0.965817499596505","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"retry-axios","version":"2.0.0","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@2.0.0","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test"]},"dist":{"shasum":"3378c85c0b4214a564e87906501aa15aa6cde184","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-2.0.0.tgz","fileCount":6,"integrity":"sha512-K/m55OxTNtVgHRMcim5O03r3oSfptE5KUq9I9MOBgfry2pD3FkyX5uzaLQy+YUJc3PyS1q2B80znzMeYBd7/QQ==","signatures":[{"sig":"MEUCIG7MZruHxLi2XlPtvY1PNtwPptHoHP6zM6H+QxpelZJVAiEA+m60xl+5tVNFUcoSzcIK5tDz30pqPpcPANz12/ivQDA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28445,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeGhYuCRA9TVsSAnZWagAA9voP/jiLHnb0v7E66UaKML6c\nF3VBahFM+IyEREQrmlEBRDoyBwV2QMHlEZDBsFYhz1iXIDh/bZU5ysQkZnEz\n/ujkPpbRdPiGVMZw2fPRzDM/EML846EhVwfwPX2LZCncUJj0GRhMqv8E+G6Q\n+eXbBVBegMkDP2vH5B2zVhxXQXaXp+n3C4uUcDsuK/Oihf+Z/lIg7PbTuCYT\neQNRmXxQhhSVXi4RvcrixkztjrYTs16kiQzbySM59HPVwH+YfQFN0Dl6kD0D\nW2W8bif9p8ZIUfu0C2asAo12N2V165cgAAvpXdSZl9cLV5TKytUIuZ+GX2Za\n8/GuTs5TqD+QzYhY7YskEZRxBHNcuiGcHgtJV/TMgzol3N0Fz2aUlHh3SJS3\n/3Gpr+cl5Bs+BIxCnM+RkKhUANjTJ3JE39cji+oqXpNQBukGAc0M6c/C4r0t\nsr+NaMvIyuLaA9p7YJsYyYsdkoU4xpptfnc0t5O3APQQQzHFTvAgO+5zGfIG\nQ709MY5rURMj6SfLPrG3tcE4fnrhpG4VKPixSHQzUymOF5dpbQs34+WqzkBm\ntYScbSG8P+K4Hz9nKhU+fDyK/+mBBCM4gBgfA1ZFLrLaaF5h4n+3EU1tzBL+\nFAJTBi8bVuxE5Eh0KFHqYpIk5vqU56QVYHzSOq2RNoUK8jE1/ZxL2GXFqfoB\nfvVh\r\n=+f8i\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./build/src/index.js","types":"./build/src/index.d.ts","engines":{"node":">=10.0.0"},"gitHead":"d259697ab5e9931c7ceaddff6c48d43180dda6c6","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"c8 mocha build/test --timeout 5000 --require source-map-support/register","clean":"gts clean","codecov":"c8 report --reporter=json && codecov -f coverage/*.json","compile":"tsc -p .","prepare":"npm run compile","pretest":"npm run compile","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"6.13.6","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"12.14.1","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"c8":"^7.0.0","gts":"^1.0.0","nock":"^11.0.0","axios":"^0.18.0","mocha":"^7.0.0","codecov":"^3.5.0","@babel/cli":"^7.4.4","typescript":"~3.7.0","@babel/core":"^7.4.5","@types/nock":"^10.0.3","@types/node":"^12.0.4","@types/mocha":"^5.2.7","semantic-release":"^16.0.0","@babel/preset-env":"^7.4.5","js-green-licenses":"^1.0.0","source-map-support":"^0.5.12","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_2.0.0_1578767917533_0.08683479790018778","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"retry-axios","version":"2.0.1","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@2.0.1","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test"]},"dist":{"shasum":"a178045321cdd59c95b93caa1fe79ce9fa902e20","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-2.0.1.tgz","fileCount":6,"integrity":"sha512-PwDGIkL/D3MX/vCyWyId4xoqpzuwngcoakTDJAzBUahJbdavDVIhRn75Ar1x21F7b65vfQpelpfNhYJh10acIQ==","signatures":[{"sig":"MEUCIQDRAMavRpOMVhbKo5t0jSVb/beNgvtVncJjMBB8AKmV9AIgTpj0ttgoR3Brcj0PKqOY6Mt1S1pVmXx/plXMHxjPYEA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeGh0hCRA9TVsSAnZWagAApVQP/0j7GbtKYYmQ92SgOmkO\nOvFs8L3VFRZNswYIup9Z8ZM6pbD4QYG3GvawTO7EqE45anbp5nMXu/Sf6dcO\nMkmvtJSlJMZlVIHC4cv7n8ekPYvF2bvZYtNxEtG/8lTi6E4iqfZYsSDh3enH\neLlll2im8IKXSq10lQxVZ4Aqr5JD4XGu0QJAFOJ0OcqziPNLlUOOp6dhZBU/\nmBu1plhKYZ+EYlGwjd2vbu3vw7kqkhxnkB2PQXkdphHasorSNtONrUsvCw7q\nyPOwRDbiyv8ib9xVxdTqpw+r1gSJoKN7b+1IAOtZ6R3j2q7PCFQqfZcHIzr4\nMVqcfzXJVbhVNB6Zm47sQo3MNdzqfJ4q9FAIn2QTFJuwrWdSSZ50fFn/jJA2\nfuBfGemP4t2R1jY/UHuYX7YrtI2WI/h0+hyxKEV1NHAAF4xDA61wsKhgXrHv\niefrNPZEb6/TKRxZ89T6gErtOgwwyhede7TO4i/jq510CiFL1eKfBsNrhrPY\n2+Wm9rtI9zsllU2ALiRinN8ZZPyvLG5PA/k/UpnH3eb+Gtgu0/QWAP0G9aSP\nb9ypEpYoumGZmGXAZJAJ7E9LHSWRTzSB/3NFCXKI3WSuuPdfth0xbVoltOyo\nGfXKI+5GPJhZcYTOnqAOo4zCxENlJrNLp/9VIGeA/ieC3l0YTRDfBNDzzr+V\nQdvz\r\n=OXYm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./build/src/index.js","types":"./build/src/index.d.ts","engines":{"node":">=10.0.0"},"gitHead":"554fd4ca444a0dd5237bccdc3d156c481cce8f42","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"c8 mocha build/test --timeout 5000 --require source-map-support/register","clean":"gts clean","codecov":"c8 report --reporter=json && codecov -f coverage/*.json","compile":"tsc -p .","prepare":"npm run compile","pretest":"npm run compile","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"6.13.6","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"12.14.1","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"c8":"^7.0.0","gts":"^1.0.0","nock":"^11.0.0","axios":"^0.19.0","mocha":"^7.0.0","codecov":"^3.5.0","@babel/cli":"^7.4.4","typescript":"~3.7.0","@babel/core":"^7.4.5","@types/nock":"^10.0.3","@types/node":"^12.0.4","@types/mocha":"^5.2.7","semantic-release":"^16.0.0","@babel/preset-env":"^7.4.5","js-green-licenses":"^1.0.0","source-map-support":"^0.5.12","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_2.0.1_1578769697348_0.658284050992133","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"retry-axios","version":"2.1.0","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@2.1.0","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test"]},"dist":{"shasum":"39419555f9b745c5ecd88858d913a1731b3ef098","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-2.1.0.tgz","fileCount":6,"integrity":"sha512-14YUxOmmOh8WayqnwVp7kxJ4dBOF2rHcmxJ7FCxizEJ2K+3gNreHJWK8pPRQmn+XqSap/t6o25Tzrwz3BAeKcg==","signatures":[{"sig":"MEUCIEzmcUY2cS87pt5j9p0kaYiA8QRVykYqUr5iTj8bNTtwAiEAjMC1MutzBUduvRiPlaBH4zgbwBlXiNuNmHsiTLyLH+Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30600,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeHIpVCRA9TVsSAnZWagAAVk0P/0SmEgcYCyzuQkOCGxfs\nj3iE/WlR3cKiVlbyrYxoSsjdAA04DPZnQnNdIDLbsZwEvk846LOtZrQfPWms\npiv826VCZheeJT0NRoBhOo7shluU5qMb5v9XdOLgX9H41rax8bsSAjRGdvXZ\nrR+VQVJAEJlbSRrox5u9TliF1y+Wd39PF1dqunAUu+xf2fh2Yo+h2YjuKHfQ\n+jGkCbqLsAgz4TUZZ5+kXfAGE9OHJYytceN6OkMzROmxrQrTGQbaMY/DkufZ\ncuc54QL1I5Ovhp72XusrsWCS++bqIb4WJezZDDCsbACvovR0eTclz837rzPP\n8vGPvB0UubUP//svdyR+pIljwxyYtUshHDdmA9oBrIngH210FS/dfPx00UV9\nKcI+NgzeXnqoLLJ+3VSnQzTDP+77XJo0cHI2yRgK13RjWyn0lYnqHPoqSZZN\np/LF4vdhXue1kzhr4k9mNRJz53yYNi4CpHL2lmHReaugsegbi46NKZC3EWUE\nn9P97kUwJ82JWBn9f/K9G54cdx5FgOLYGPCngJtWiqh0VEeZhau7GOYFRKSS\n00s+yXJ3ZHoNb+n34146jpUe5IQlPuYvznW3ovrYNRllcTJfmOR943MRdfqm\nTFUHpwewaXUSG4WBpK3IvutX+LdW+hlEkuBA/BlPA0JVwLM2uM/RkaxLJ4CI\ns9cc\r\n=MgxI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./build/src/index.js","types":"./build/src/index.d.ts","engines":{"node":">=10.0.0"},"gitHead":"6794d85c6cdd8e27bc59f613392caff8ddada985","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"c8 mocha build/test --timeout 5000 --require source-map-support/register","clean":"gts clean","codecov":"c8 report --reporter=json && codecov -f coverage/*.json","compile":"tsc -p .","prepare":"npm run compile","pretest":"npm run compile","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"6.13.6","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"12.14.1","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"c8":"^7.0.0","gts":"^1.0.0","nock":"^11.0.0","axios":"^0.19.0","mocha":"^7.0.0","codecov":"^3.5.0","@babel/cli":"^7.4.4","typescript":"~3.7.0","@babel/core":"^7.4.5","@types/nock":"^10.0.3","@types/node":"^12.0.4","@types/mocha":"^5.2.7","semantic-release":"^16.0.0","@babel/preset-env":"^7.4.5","js-green-licenses":"^1.0.0","source-map-support":"^0.5.12","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_2.1.0_1578928725064_0.5363130903056279","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"retry-axios","version":"2.1.1","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@2.1.1","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test"]},"dist":{"shasum":"6feaee38911ff736c2c772d8202bca2f27e725a0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-2.1.1.tgz","fileCount":6,"integrity":"sha512-xNpecrtnEjfDBZm0/Pue77asi8XKXu79lA2PRCtmC/qVh3+3oIFi85+X7jPOvpct7TIjSWY+kaU8dPfpimDxbg==","signatures":[{"sig":"MEYCIQDrhkV3tdsec1W/YNYjxh/kIQqARlJkQFzlraSYFSzAYQIhAJBrZJ9lL8WXjGJ8RfqCBehrRqHJQvMSjE5AyjBKYg2R","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30520,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeH99kCRA9TVsSAnZWagAAb9IP/1XBTyqTFaU3srEdxnpI\n7pbCkWahkBSSUwo9omfm0qAMSY752nswlkLr9AWkQ3MX9wDdU2ZU+NSKqbXq\neqK1XoQauaXDbtlIBjwZNCEzJ6fkBUlsYfsuDQxkhKmMylfVOgc1Gs6/udO8\n+U0tJEE92+LnKnIcptGQ89tkyVIN5R/frjsJhYXN3G4gixL290HwSm1SHTA9\nwKNEDrvER3spbU5zuvF1pldDCFmBkU8b1ib3Dulu7cZbWM2XALwfWkGjAja/\nOR30qRU6jeDYBiRMXueeb/AYuT8II19simPu490dX01N34uswpd799QXtb/U\neKDks8qsw/278sEubrPOwFvpTIkAk91SX3iBy9/lrJFjEAaDAqaEoVIr5cOk\n8t7F7K1U6pSWIwqKAVXf/lI8atL9BpdJUsTGyjDA9hYlUfU13NPl70ZWDGIX\nXBgfdJ/c5v+U1EFwXx6S5wd9CA+tJJnnZrmIqcUx4ayGnrlVZbAb2Wt9c6f4\nWuH2+IbHLVpWB+Qp+G/bBzx19DOJ9hkS2RgI8kTIppSQVCfZBpHJFCpXukQD\npmqzsoDVvZMc/or6u06zl8pYonSDfpVg3zLhTRjp/YKaO4k8DiX6jydlfPqS\nUX4pIkJTaOIuVDH2AdHAyRboRMofvXyRnV9V+KxQscw1WSHv2e7Vu3/K70Bl\nyH1Z\r\n=lDEm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./build/src/index.js","types":"./build/src/index.d.ts","engines":{"node":">=10.0.0"},"gitHead":"b8b04565004b100cc36ac1f5ee32dfde34f0770f","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"c8 mocha build/test --timeout 5000 --require source-map-support/register","clean":"gts clean","codecov":"c8 report --reporter=json && codecov -f coverage/*.json","compile":"tsc -p .","prepare":"npm run compile","pretest":"npm run compile","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"6.13.6","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"12.14.1","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"c8":"^7.0.0","gts":"^1.0.0","nock":"^11.0.0","axios":"^0.19.0","mocha":"^7.0.0","codecov":"^3.5.0","@babel/cli":"^7.4.4","typescript":"~3.7.0","@babel/core":"^7.4.5","@types/nock":"^10.0.3","@types/node":"^12.0.4","@types/mocha":"^5.2.7","semantic-release":"^16.0.0","@babel/preset-env":"^7.4.5","js-green-licenses":"^1.0.0","source-map-support":"^0.5.12","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_2.1.1_1579147107785_0.9342484980428196","host":"s3://npm-registry-packages"}},"2.1.2":{"name":"retry-axios","version":"2.1.2","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@2.1.2","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test"]},"dist":{"shasum":"78a8041bc34047a205aa4098af23f943ec58abd2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-2.1.2.tgz","fileCount":6,"integrity":"sha512-MVNOizOgcM+dXK/kJCMnHPCGjp2Z0o3Ngznh7SfJkIVrqemHmDcgUEAbEHs3RyR3lbJtSyamq9k3gmgGSaow1g==","signatures":[{"sig":"MEUCIHN1AZqVadFHAAJQGsGtpuVC9p13Z8S7NTJN5edkptpzAiEApOrCVQEBMeWJuSTBz7zJqh1KUu/0Z+Bx4RwJR5LZ2sI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30665,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeb5fKCRA9TVsSAnZWagAAhXMP/1SDANVf9EBIl+u7+YM7\n3Akt2R6LSCl3KqYRyFWPsM7kAxHVkX1vgQn2qk+QlQOLr431Il8mqcUi6fCw\nacyEawhnmTNEXC9oJKkY/YIYl0yXeDtlZZhxL0nWWsnOBPRlIP2aA9K9Qq7u\niOTfwrsxPKhzqSrM+TTADFSl/jX7WcDuDcI4JVmLFSoP4FLHuoq7tQCkzmdR\nl+dHvr8lEALGoRJ/DaXtuJG5KZwFr/siXi02ple1uaW0SuKgys1ysEp01XK5\nt6FjsDQJlwiwra3510uTmxf7YmUbJDZVf1ob/6a/14u6Pm3eWx/KgEd4AEH5\n0Nfi4sdOwvNVjgXPI6F6vk54OBWI5aIps8dP8d17QmsuZeEExA1URAtFvg/m\ngugpp93vB8FR+6dGKDSzEYRMMHE42emqnyxCz2/iTQP+KIDLQUkJxST079QD\nzUnInw+UF1mXzGbw2svcBNwpx05hI1hTvad81RYL/qV6CMGw+oCayr2ND6XV\nXUloUGBu3p36MfChuLpCBKWnXokLALx0kmzbnnId4spXYYAk5Yq3BdMfqQfs\n8d3/e6izrjh9kFMiPUp2qNMFGwPVbf9htwvfI9niYWlHrosYrRLnEM/51RRJ\nFJqZ8+3WqfyYJ49uGyLrd8A7Tg5FoH27dO2FLYOT6MgFx+nrSwM/12owwgvz\nXMPy\r\n=sF7m\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./build/src/index.js","types":"./build/src/index.d.ts","engines":{"node":">=10.0.0"},"gitHead":"c8ceec0e16e57297edbc0739f40b99a836e3254e","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"c8 mocha build/test --timeout 5000 --require source-map-support/register","clean":"gts clean","codecov":"c8 report --reporter=json && codecov -f coverage/*.json","compile":"tsc -p .","prepare":"npm run compile","pretest":"npm run compile","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"6.14.2","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"12.16.1","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"c8":"^7.0.0","gts":"^1.0.0","nock":"^12.0.0","axios":"^0.19.0","mocha":"^7.0.0","codecov":"^3.5.0","@babel/cli":"^7.4.4","typescript":"~3.8.0","@babel/core":"^7.4.5","@types/nock":"^10.0.3","@types/node":"^12.0.4","@types/mocha":"^7.0.0","semantic-release":"^17.0.0","@babel/preset-env":"^7.4.5","js-green-licenses":"^1.0.0","source-map-support":"^0.5.12","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_2.1.2_1584371658086_0.3093894995628661","host":"s3://npm-registry-packages"}},"2.1.3":{"name":"retry-axios","version":"2.1.3","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@2.1.3","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test"]},"dist":{"shasum":"b71b9296f2cd231dae57286dc4922a53f85a55c0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-2.1.3.tgz","fileCount":6,"integrity":"sha512-jg8rMz9IzGfUqKtoFau9FpdRfcw6c/vvJ7tRz5De1rDTwAWA3UDsouFHRrUmyo4PNQ+6TckBpXu+icBCRymBSA==","signatures":[{"sig":"MEYCIQDVOUyl211NWRBsugkqu4jDULYPe2z49fyvWu7xkJdMOAIhALEvOcBtS9pwtVH83fgoZ/2gZhoJamlSX1ja+qufUB3F","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30752,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJesZO4CRA9TVsSAnZWagAA1VcP+wTAdWy50etV2fh277sR\nHFNBKCpoQmGNhyvxwFQ26OxXtZDExlzlFdvZ89+4/pLpCj2t2+pVBI09Syyn\nsniLFBMn8ygWCmKMF2HWpWXnRcbxm07l5wt20Dcqjv5Vkwan9IIiAyVpnj6Q\n+qu+zlcnHnYo73wBCqxTSCk4f48t/Qy0DUQE5v1i4bjkoQUKvzmxTs8taVFL\nK7w4cNFHL9AXxvtlEqPT7FTn/ASt7KXU04M0zNPIiylc5ge5MPUmc99fSg8x\ncDEPIyXBH7x6krvMbaQ0lzgsO4wtRo1tTnXdXhCdKM7fsX54QhasPv+2qAsn\nfuJF04qIqoqoM7pw6SavqeOjR7FqXlnOzRsY3mCutAKrxr16fiFghBGIjHCe\n6tnTGRhAipr/CBjCVaP/9/A2k3C4iMGvn8M1NJBR0boPuxOBh84+WpZWRzJy\nDv7uQNsgOwMDabXTZoiZ/cAKG2BdkLCRf0mW6VwHeju3khr1E6t9eghZBfca\n3SlKtxScoBumTEBri9d0dAutCkgNCfGQt4tulY5Fq1NmESm3tQKeDux7+wm6\nwJybTyjNwOM5NbaUfs6pFAVniJ/tJnxX3ldT7qI/AzYq8TtgAdzZHcEFO4zl\nn6N+ldsCeu6QwaXh85VxinaockPmuXGzlnTba+smzEiJwXg6G6enMKMczoEN\n+DrK\r\n=pcTM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./build/src/index.js","types":"./build/src/index.d.ts","engines":{"node":">=10.0.0"},"gitHead":"8f8e2f8211cf13ac7188b6d4bcef4a7821b13ba8","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"c8 mocha build/test","clean":"gts clean","codecov":"c8 report --reporter=json && codecov -f coverage/*.json","compile":"tsc -p .","prepare":"npm run compile","pretest":"npm run compile","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"6.14.5","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"12.16.3","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"c8":"^7.0.0","gts":"^2.0.0","nock":"^12.0.0","axios":"^0.19.0","mocha":"^7.0.0","codecov":"^3.5.0","@babel/cli":"^7.4.4","typescript":"~3.8.0","@babel/core":"^7.4.5","@types/nock":"^10.0.3","@types/node":"^12.0.4","@types/mocha":"^7.0.0","semantic-release":"^17.0.4","@babel/preset-env":"^7.4.5","js-green-licenses":"^1.0.0","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_2.1.3_1588695992137_0.6818531800494481","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"retry-axios","version":"2.2.0","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@2.2.0","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test","dist"]},"dist":{"shasum":"d9f7f50886289dbf6c8cd585c8f998e0b7312120","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-2.2.0.tgz","fileCount":11,"integrity":"sha512-paZhvLQnRNdh22Ogt4OEcUWj5rRWBxzSqtAU+watni2/95uNLYJ8Rjsbl3NWrt/fPM+DxK0o1MCvyoEg/zT+Iw==","signatures":[{"sig":"MEYCIQD9NbBDJvJWQpvBaHCGrbUvA+TkDr3x8FmxHYd1NnVOHQIhALVb/Ca8QTk/MlTg7YONntkZG9gpimNNGoqtvfDVHc6h","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56741,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewr62CRA9TVsSAnZWagAAvhwP/0ybeFuuv8chej43NQhB\nAZpcvGmzhJIcrEnnibr/Ix9SVm6R00Vsq8cYRT01WVjKT+9aamq+V0F6QKzp\nB4EhSieyhE0UdUUjpZvI9vy2RgJEWm+v2BjegnPe/4NgHXEV9NvUjLSQESrl\nHo+XGHQBMSQDRM1aNAZ6kMnxd0KIZ3KKv3GVc1mZKGsBMpizF+zE5MmpC0YM\nISvvr4OMeyWxa0eAL07iVjmSZlCVsQEIXDcH7Vbre586m0PXuL+4AiJllm3R\nJBpt9zHGJU1P/FqLa/wTYD4LFRHDkgaZk/ZKHur9oS8ZsQvADgpjgeB6/ukA\nd1kASBJlEyEBakL2GY/yqQgl6qruEpUKFrV0I7PgGo4xqt0S58ac0wOHYlft\nfPHiP7THbJD/Wo4Bdo7lJ8ab5tjrVXhicE/YtqDy73KOsbb/NaVQqXW7CjG1\nB7cJwItf4b/8rjvrQLbG84LzwShYrdGK8wlH+rceXYH5KYFsp1UZCyeLbnmz\nE3B2UqzzYtqh+GalTk3ExkzZ+tjGhtrD6PXtU4MRW/qfRJSAySVHc83hxTD1\niWJOEcCsDTGLczW+5i5e0mBxIQJBWPm9T4LtL2VZA5t8PDYrXU39NT4lQK3P\nq0nJYDTtku2dmnPDlWMxbyhhIj255il0FuMnDW67hCY+cHG9uYUvXEg4pN3c\ntpaf\r\n=1rvU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/src/index.d.ts","unpkg":"dist/index.umd.js","module":"dist/index.module.js","source":"src/index.ts","engines":{"node":">=10.0.0"},"gitHead":"62cabf58c86ffc8169b74b8912f2aac94a703733","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"c8 mocha build/test","clean":"gts clean","compile":"tsc --target ES5 --module CommonJS","prepare":"npm run build-web","pretest":"npm run compile","build-web":"microbundle","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"6.14.5","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"12.16.3","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"c8":"^7.0.0","gts":"^2.0.0","nock":"^12.0.0","axios":"^0.19.0","mocha":"^7.0.0","@babel/cli":"^7.4.4","typescript":"~3.9.0","@types/nock":"^10.0.3","@types/node":"^12.0.4","microbundle":"^0.11.0","@types/mocha":"^7.0.0","semantic-release":"^17.0.4","@babel/preset-env":"^7.4.5","js-green-licenses":"^2.0.0","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_2.2.0_1589821110248_0.11877291241918941","host":"s3://npm-registry-packages"}},"2.2.1":{"name":"retry-axios","version":"2.2.1","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@2.2.1","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test","dist"]},"dist":{"shasum":"da3cb93436fa2f931332d4e6a9927bd6cfa618c8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-2.2.1.tgz","fileCount":11,"integrity":"sha512-vSZzu29W48+/mVPOq+gwKe+qYWcppiKODXi4FN9q0iN+4s2z10/l1LDS4Ju4vReTyuvKOoqmHqY0rOAmuFjI/Q==","signatures":[{"sig":"MEUCIQCQz31iAYuVSwRq9XfUzud5QdpEZk+Gc1fBST4IbfgriAIgNBNMcqhirjkIEjGeZm0QOuxMNvUXB04ztU8Ya/9N4Vs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57104,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe6kazCRA9TVsSAnZWagAA4RwP/1mfdm/jjQBbjbP4JSMC\nT3el57/T0AgIFqBxV+qzpGsqK67TQjYUiMDePOc1wG2Oc+cRl2n+VIvZtngj\niXe5eBKlFuqe2XE02xI6O8YHXuno6n/BLLCUy4ceeb6y1NQGhcpn9lPeHn9+\nZEMYmNoYIe9yqbqMsYzQ233BnD7udMgT/9JU8uBmyOhJ7tlYZ14KjEzNGuoC\ndeNCiyxsm47eF1QRG67W1IUxNER8+bbE3NZUG8r78aLf7Zlnm5lxvqpuBdYd\n+F+j72IvPB1OnV0deCfqBVtAIFrjQDx4cmKvvXnY/eTEgcpHgbMyXI0Hm5ky\nNz/igqt1z3+AjgmtTU5hRoS181142P7AOfYxWFlio0twHMznb5dU9KS1/Iwb\nzf+iDN6WbQJGb3BzBOETDDLfzsiCpel9FopYgJ2ket07VpOV4L1uyzKC+UnE\ny9zi3fAGEUC153xZidhFGfrP4h8ScO1ofe6gkjI0WAy9vuy86WyYuflswID8\n3j3Qx9tLOIf8MBTQgyjp9p3foRMJBTAmvNnYMEbGhRFC46zqQwM3T2Zf3qZS\ng7aEGZ2Noy04xRFlVj8wQHeSKckTdkVoxWPjoEBRQE1L5fTCaJha0HQ9SW1B\nJ+KO+TF8U4PvVW/MyQUh4F+x5qFV8qiwBHtZ5CZmBxXJm4fORXJrSxWEteNo\nYozQ\r\n=EHI5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/src/index.d.ts","unpkg":"dist/index.umd.js","module":"dist/index.module.js","source":"src/index.ts","engines":{"node":">=10.0.0"},"gitHead":"0be857823f4e4845e72891ba63cef08d006cefc8","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"c8 mocha build/test","clean":"gts clean","compile":"tsc --target ES5 --module CommonJS","prepare":"npm run build-web","pretest":"npm run compile","build-web":"microbundle","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"6.14.5","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"12.18.0","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"c8":"^7.0.0","gts":"^2.0.0","nock":"^12.0.0","axios":"^0.19.0","mocha":"^8.0.0","@babel/cli":"^7.4.4","typescript":"~3.9.0","@types/nock":"^10.0.3","@types/node":"^12.0.4","microbundle":"^0.11.0","@types/mocha":"^7.0.0","semantic-release":"^17.0.4","@babel/preset-env":"^7.4.5","js-green-licenses":"^2.0.0","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_2.2.1_1592411827443_0.314957805785691","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"retry-axios","version":"2.3.0","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@2.3.0","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test","dist"]},"dist":{"shasum":"15756e8bf78605613d08f1af137d2bab1f1911e0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-2.3.0.tgz","fileCount":11,"integrity":"sha512-vqC8rSVspTumX4QBiLSa87sro0rfyTpPYiLN1tleYekCAFfWXdERUKKMQbnInA8FsSodAkQHyrtZCHafYibgQw==","signatures":[{"sig":"MEYCIQDgMLwXFx6bgKMY39oj2Vn4WHIjqbjy7pB7C3PBaH0yLQIhAL2Plsb0QJEDVgzenWnXtQiSWQXPPLvQX3NDJQnlZYqQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58307,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfky3LCRA9TVsSAnZWagAAFbEQAIZa5gSB2AtKgFAwP6OK\n1B52hw8odMfd0zzErkocvH8j/x/PaAUhwefgpE/N2xph6CGrLhvGhb1CHl3y\nkrbEgya1T5SDYTwNejCi/mi+6wUmLPoNGa8gGuEllN+FtXHmCNxRgBW5sSgk\n8VJUluMDcecCefLidCyjGIvNhg+iqzTHLzOwZl7RjfuiRhgO7FRIrPOMIqVn\n6Px7ZVKC+8q3TvFXT6XRRHmQ9Rz3zoyijIpTendcWGjhN2YlHr30bsw7mfRK\n2tJtT35uIJ3uAOpRN508Yy1Y06kc0Dhr3QiG31cWSD74zBeT44RyzWHVfYej\nBp30nv4/jyUUn8bhE2uDurqlxpU4Ig/94QqVz2MB/lyjLQrsHTu1pJcEMIpc\n3bjmLi4DNm6Gtpf9bObaw0U72JrHz2m8cirUbJIiQG6Ja9mZlA0XYqzO/Y73\nRJqtaDw3yuhNFLIVZD/dzDB3UuNkOSMyNBbB5kiy8ZusPeuOPA0L3EqKDDJt\ndQBD8p8PsxAG4sjIeReuq4uX53XgNH3f+lS6oG9q9mBcbfUhPX+gaKS33f+u\nNq5eQBTySIqHHOXbq8e9aK53ANNqqkan4yuAIsLoF9geyHh23ulwh2vx2mDF\noLSk4iwUq70/4lmzvlkcz8A0HcrKvwJaC2z7NCFplXBe94IXK/S/tP39UKAj\nlFEM\r\n=i0b8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/src/index.d.ts","unpkg":"dist/index.umd.js","module":"dist/index.module.js","source":"src/index.ts","engines":{"node":">=10.0.0"},"gitHead":"694d638ccc0d91727cbcd9990690a9b29815353c","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"c8 mocha build/test","clean":"gts clean","compile":"tsc --target ES5 --module CommonJS","prepare":"npm run build-web","pretest":"npm run compile","build-web":"microbundle","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"6.14.8","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"12.19.0","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"c8":"^7.0.0","gts":"^3.0.0","nock":"^13.0.0","axios":"^0.21.0","mocha":"^8.0.0","@babel/cli":"^7.4.4","typescript":"~4.0.0","@types/nock":"^10.0.3","@types/node":"^12.0.4","microbundle":"^0.11.0","@types/mocha":"^8.0.0","semantic-release":"^17.0.4","@babel/preset-env":"^7.4.5","js-green-licenses":"^2.0.0","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_2.3.0_1603481034524_0.8689456316160711","host":"s3://npm-registry-packages"}},"2.4.0":{"name":"retry-axios","version":"2.4.0","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@2.4.0","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test","dist"]},"dist":{"shasum":"b5da2afed8dd0134c73c86206e1d1881d7c66a67","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-2.4.0.tgz","fileCount":11,"integrity":"sha512-rK7UBYgbrNoVothbSmM0tEm9DIiXapmVUrnUYn+d9AuQvF0AY5RkJU2FQvlufe9hlFwrCdDhrJTwiyRtR7wUaA==","signatures":[{"sig":"MEQCIDpHPEz3rOSZB72rjonyWfI1UxgT0s1lsTTElqzKNApXAiB41fSXQpT8kXt9xOKQhD7/rWF2yP9/zh4D5R0BlayfVQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58469,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfu+o4CRA9TVsSAnZWagAAwe4P/2jCq7psEoG48KHk/Ofp\nJSt+k1hSIFnzJeDp50DPHHGNgmxO6dSzq2X3jnj7W/gWokzaxctIE2P1Er5i\nHkf0Qma/rcG30Z15VXeL5tdliKyvFPmwzkGm9jGJofc/6c5qUujorua+5q3/\ni6qoimKCDejZt3rEK13vBylG/VrCdk59fbp9qNuIFix3J9bfMP6SjWtW9WHu\nlBq+W37oVHOfaWRJZMBYIJltt/lyw/SQGMKYjBJDhhONePcN7Z4qFcZldI/+\nDMbvLs0eqOj4gueGzI6kyJCf9waRrfNgy3h9BPvXKzmKx5zXPFpz4RxLvDwC\n+ALfx8Eb51H59cgM03aVz1hPDLPBS7X49XMakV4Ks4XPekTUivmJz+ii4cQJ\nEBi/z1APfN1BZ86CLzwtUEBJ7sT5eJXyF9jUB8e884HxrQ6cC3KBE87DWuf+\nfyq1WTqVosJXRXlNYBFzZTbntnJaLbEtpiYs3QBhQi+yLEEUMhFVKRg+O3k4\nvEM28eZVhJKO5wVMnsgdTNh7N4CuZ8KpibtqRCA1jiVlZUIFwBVaY0dmbTP+\n0UMGeZrRy5ZyRDYXI+Xi3hCQoNIjJ94ikMdH+KrvDAIukLkV9x6Ba5QQDSq/\nMFbb35D47vr5lot/pn5y9+UnQYhFKU41XsEClcq77mkumbpRVZ3OOYzix8+U\nFlLc\r\n=nsjN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/src/index.d.ts","unpkg":"dist/index.umd.js","module":"dist/index.module.js","source":"src/index.ts","engines":{"node":">=10.0.0"},"gitHead":"57ba46f563561e6b9e4f1e2ca39daefe2993d399","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"c8 mocha build/test","clean":"gts clean","compile":"tsc --target ES5 --module CommonJS","prepare":"npm run build-web","pretest":"npm run compile","build-web":"microbundle","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"6.14.9","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"12.19.0","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"c8":"^7.0.0","gts":"^3.0.0","nock":"^13.0.0","axios":"^0.21.0","mocha":"^8.0.0","@babel/cli":"^7.4.4","typescript":"~4.1.0","@types/nock":"^10.0.3","@types/node":"^12.0.4","microbundle":"^0.11.0","@types/mocha":"^8.0.0","semantic-release":"^17.0.4","@babel/preset-env":"^7.4.5","js-green-licenses":"^2.0.0","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_2.4.0_1606150711978_0.8160845828955448","host":"s3://npm-registry-packages"}},"2.5.0":{"name":"retry-axios","version":"2.5.0","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@2.5.0","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test","dist"]},"dist":{"shasum":"4995b09a38138f0635bf2bdc8d5ac44a98b63fde","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-2.5.0.tgz","fileCount":11,"integrity":"sha512-Ukxel/VgYJFVSQg2RgSLOzzHlL4ry1jfUQMrkTF6Uy2CtW7umetoHxJILFYFLmJ4+3C6hSCBqREQp0XoFdCq6g==","signatures":[{"sig":"MEUCIQCpGeZozeGVagjabB9Flpz5LT02nDNUBmjC6qg/yAJmLQIgYhIkXq90y+SpGB4sSAEOgFRzURfuakTHDKOgtr28IDk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66466,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhFqyOCRA9TVsSAnZWagAASGsQAIEnuIYvYx82Xvz7Gfwr\npXLXU4GodIZqpbG8p4l03dTvqkoU32rlq3roz2BAGD96/ujkgMuOXTPgjDyM\n+TRM2nNl0FnibMLe3zxOnUxXBcEJ8fm5zWhDEw0UHCrotiQwaAnzkOIVVBVy\nzi1Kdp1oDk0oPaUUcScWl0R10Yd7I3++OV/0ujH2zEo2IPmlQTfHp2c1/OTd\ng4676d/LMfRFf2sFTP0wEsdVYLrPGjOqiq94g8NplFLVQZ4gWTyE4RFQTS/t\n3QMoxYYBsKk6VB9IXiu2p5vsY81kGLQHKYXuiNcT9y0Tc2R7QjjU20R2ANCj\ncX+gbXYvyVXexOWdCyQkDZW5JklWkQ9KuBtexIUr0wtgg1IM/Oxrh+SNCeQF\niq/IKtXwP2ptmdUHpscLVWf/RyGD/35wwSU/PxBqM9p+pVk8HFBsXaJ5pUmE\nvN2fU0pgVsoYZIVqYfrn+vVUeTRPRGcrmXYbKGw/3iqWGqtToF+mgOAqBaFZ\n0xHnrk5M4mNIJwuh9Qpf3a6cF+uYPTBSSPwxJbp4yT6jb5t+4urQV4bNZAcM\nNr8F0we5/oEUjmwezIf1+QfFMCxmzMRFlUp2ntLGVq7UR+0A0MxqwriniDua\nPyDHNTh6ggCA1IsM23Wsatv8NDG/wQgAjLTUuj2eV5YEEVUrsyCC7lGqb5ms\nnGPo\r\n=n0Cr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/src/index.d.ts","unpkg":"dist/index.umd.js","module":"dist/index.module.js","source":"src/index.ts","engines":{"node":">=10.0.0"},"gitHead":"3f001c87babdb460187840080c05386a4c2282b4","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"c8 mocha build/test","clean":"gts clean","compile":"tsc --target ES5 --module CommonJS","prepare":"npm run build-web","pretest":"npm run compile","build-web":"microbundle","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"7.20.6","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"14.17.4","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"c8":"^7.0.0","gts":"^3.0.0","nock":"^13.0.0","axios":"^0.21.0","mocha":"^8.0.0","sinon":"^9.2.4","@babel/cli":"^7.4.4","typescript":"~4.3.0","@types/node":"^14.0.0","microbundle":"^0.11.0","@types/mocha":"^8.0.0","@types/sinon":"^10.0.0","semantic-release":"^17.0.4","@babel/preset-env":"^7.4.5","js-green-licenses":"^3.0.0","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_2.5.0_1628875918452_0.6007361929945028","host":"s3://npm-registry-packages"}},"2.5.1":{"name":"retry-axios","version":"2.5.1","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@2.5.1","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test","dist"]},"dist":{"shasum":"5522e110c5b5c10199284800909c153145e8ba49","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-2.5.1.tgz","fileCount":11,"integrity":"sha512-aBmKQmmYSfqpZm3zatM9yXHH75odZmWN8maYjyJ2EZD0pR9Ks3sRsS3EsJAJ8yzXmndZ0Pt/VkAyXDILiQadFQ==","signatures":[{"sig":"MEUCIALM752PUdAR1V4zj5+l3lbr1awO90uu0ay+CDKzA0xxAiEA1Hh4XCNPIpwL1aj+H9DKFfRlXCLTfS1vRvuXVsAlpxs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":70540,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhI8ipCRA9TVsSAnZWagAA/wQP/2ORybnPmPlwiHoh7jup\n+lYijIFNCRrEsrx+pD6FdZvazEUrXirl0h5jKbhdzHYnDHq/rfxDVQknT0n3\nKAmFO2g7tXE/55C7Z4dyp0sPc0TaPvoZNFoVxFFSrRHGj842PyymMfCU+k9D\ne7WPip07S8gAG+hPjItCbvhdvYP2iFV8Pz+h11GOV3/gg4fAOqblEUx1IGo4\nz7rRLDvHLMS4yTjlY4FhkflioUe4w4UX9QWRU1fdggNPxLCEMYGOkYztoJSD\nFhF479piaqzx27pWfJ8kkhugIO4agc4p18WY8saM6URB72mY0cOnT6IghEKj\nhSCDR47v8SkB9yGHEmvb5kdWXIfDOqU4IixglP4Q2RbYoIJNXjVtAqv+cdlk\neDnUKQdkhKpF+a3dVXvp/JtA+WI0QJp/1eO29+Z21ETRnBDGzrAABUgc/xHZ\nmS36C8SR5WPBlSXVnnW+HN7SXIk0unoVmI94gMaSTkT8gQ5gT86f+rmQyt3D\nBKqnr3X9iWldUi44DvP4KcG63Af5P55gb0Gw7dMWivOc1dY80etBYjqrwzwV\n1HKjbz7vKeeWzZnfzyFmzx6POqPe/xtz/l1YDP5nEr7iBk/ecbrsCgdC66gT\n87ZoqwlsCJYocUwO88V8gyi8hEVTgrpEUD4V3DBZ+uncMy+jNdaBaB7a1YKm\nj98J\r\n=WRR0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/src/index.d.ts","unpkg":"dist/index.umd.js","module":"dist/index.module.js","source":"src/index.ts","engines":{"node":">=10.7.0"},"gitHead":"e63ca084f5372f03debe5c082e6b924684072345","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"c8 mocha build/test","clean":"gts clean","compile":"tsc --target ES5 --module CommonJS","prepare":"npm run build-web","pretest":"npm run compile","build-web":"microbundle","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"7.21.0","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"14.17.5","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"c8":"^7.0.0","gts":"^3.0.0","nock":"^13.0.0","axios":"^0.21.0","mocha":"^9.0.0","sinon":"^11.0.0","@babel/cli":"^7.4.4","typescript":"~4.3.0","@types/node":"^14.0.0","microbundle":"^0.11.0","@types/mocha":"^9.0.0","@types/sinon":"^10.0.0","semantic-release":"^17.0.4","@babel/preset-env":"^7.4.5","js-green-licenses":"^3.0.0","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_2.5.1_1629735081772_0.7630488393317387","host":"s3://npm-registry-packages"}},"2.6.0":{"name":"retry-axios","version":"2.6.0","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@2.6.0","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test","dist"]},"dist":{"shasum":"d4dc5c8a8e73982e26a705e46a33df99a28723e0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-2.6.0.tgz","fileCount":11,"integrity":"sha512-pOLi+Gdll3JekwuFjXO3fTq+L9lzMQGcSq7M5gIjExcl3Gu1hd4XXuf5o3+LuSBsaULQH7DiNbsqPd1chVpQGQ==","signatures":[{"sig":"MEYCIQDInNicKYexVG2PH8t4EWf5hVQ59pqJL+0GselxXC4deAIhAMmJdt3u7c725yaOeW5K+tDGzadSHXkzWLd7hzI+TmAq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":71849,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhI8tYCRA9TVsSAnZWagAAPq4P/18IKTo9rc5BKKIa9cSP\ncjssD3SZY8lkSnvEoRGbR3Ococ0yuyogruQFqkUJiDW8wGwhkjHJ7P61fwdJ\nJ3W/o/LLZS00aq0QheF/KZGbGNkrMOy8ZwmDXNpe6xwvJe814cgy5WGrlSFS\nYCal8ou5ovC2xwTV7/euvNnsRFaxfQPyE5onkDlivT2VqoYMjmWOTzx0ABSp\nA60qc2BVCrDkSzePnt2AWFdSMxuozyHei4+sbt7uIfHqKabzChAlf/Rdi0Kl\nZna7LVTQ7K/dMwDFtiGF7DQ6m6XvxVdELzDk3X+ieJ1O9SNSS/gDguTks2VF\ngSYf0d5nKHjd0GUOklE7usGmkG+oUka792YDqcJ7IOfiH7QcXuuEcueEqC66\nfHja8CBPTsOn5hDl+PJrorfeazkBswDUzgz8H903WHyNWpLwU58VgPtnLKdi\ncrWhAotiBRlz/K9qBoiEaH9D7NpUKsV6+hNuj+EWfsOrg3AaTsD02ivl2LOe\nX799dPGgje6iS4mvbnnUXMOEwMzfeWRRBJzHxKFH1KUeer1R85vqCbyfmE/3\nWl+y/SHROp3uk9a/p3BIcCiAOv4q3hcc4tHG+NFtqI9WSHi3XGyg29SxXfTG\nFaZjbGxu30djlffDaDtK8/HZTpC3ZjGqQXcHVDItoounyXj5b+0B6f4EgTxN\nN0Qs\r\n=HDQ7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/src/index.d.ts","unpkg":"dist/index.umd.js","module":"dist/index.module.js","source":"src/index.ts","engines":{"node":">=10.7.0"},"gitHead":"b8842d751482caf31bc1c090cda3c7923d1f23fa","scripts":{"fix":"gts fix","umd":"rm -rf umd && babel build/src -d umd --source-maps","lint":"gts check","test":"c8 mocha build/test","clean":"gts clean","compile":"tsc --target ES5 --module CommonJS","prepare":"npm run build-web","pretest":"npm run compile","build-web":"microbundle","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"7.21.0","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"14.17.5","browserslist":"> 1%, last 2 versions, Firefox ESR","_hasShrinkwrap":false,"devDependencies":{"c8":"^7.0.0","gts":"^3.0.0","nock":"^13.0.0","axios":"^0.21.0","mocha":"^9.0.0","sinon":"^11.0.0","@babel/cli":"^7.4.4","typescript":"~4.3.0","@types/node":"^14.0.0","microbundle":"^0.11.0","@types/mocha":"^9.0.0","@types/sinon":"^10.0.0","semantic-release":"^17.0.4","@babel/preset-env":"^7.4.5","js-green-licenses":"^3.0.0","babel-plugin-transform-es2015-modules-umd":"^6.24.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_2.6.0_1629735768483_0.9416006001567532","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"retry-axios","version":"3.0.0","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@3.0.0","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test","dist"]},"dist":{"shasum":"5fd54f65330d155c36d01e3685238889375b9aa0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-3.0.0.tgz","fileCount":6,"integrity":"sha512-/jRv4nCDytusFZIY+zD6aKP29+wpgnbjfap5B76rqvgROWfONG5Bf7vCXx7grhxJwYGLlumraKZQUMzNgfXNCg==","signatures":[{"sig":"MEYCIQCifvKEhJeKOzcUJ1zpqsT+IpmUWFu1/8rD44ysMUwYNQIhAIUsxf0MFS64XS+tBlxvgRLpaqN+6cxZPHSaULUyBcq8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35948,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicq4rACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrW0w/+N7ufmVYDI8FAoxxyg3KG8Cst3feDfE4Gt6QuVKgwizbRvRlU\r\nMMMOeFL2Lekj2/QWKPtqICkPBSdG6QykrGt5ErRfcofOXc5DVd2rBKXpKpob\r\ngTl/cLleY30gMbQXuTBrvHhweV24dARzmWMTPbQhrwPakZKRuo8+98F7CFoK\r\n+RHRn4MFhZautvQSKl4hsI8C9SlM9YzdHTTww8dBZ8VotGuuiIy30Pwf3PMI\r\nvq9mbQ1rvYx2EbTAodjBpGkE2oJ4nFptbYc5QnPcqyHltbbL2h8jFzfbfHhF\r\na6jTiFeFUOyvyT6gBWqGfZYqme2fx8Q8Uq0d8lhMVUzDgUo8ROsT0OjaLx+R\r\nhD2dNO5WBUMiwhGbfY/3N1amxp6IsJD8R/ZibBOiZJHz0KU5I59LgTW/oMEs\r\nB2zA+I/VT0GLZmrh1RX+Wpu86xY5mjy+8JSkiYU2SHm++LJGqOAHMHpjEoQa\r\nG8xH2gC8L9UYR7XbAJ9kJfHVMOtR3g43YuuUFsSOrdHXxZ1Sp6Wy/BOYZVFT\r\n+hsduksC90atVILnfM8hzI8gWcPPaIdaIrdxuoIjCJAsHl8IRIODxFX+GF0v\r\nr3uzBuxo/MTTT0AMajKU4T2YQNgujgh0aREOWFjQ7x4AxWrj7gnv4nCidpX0\r\nl10FcxFIRWPYa+9YiyclIEwZ9ZOld4R3DE8=\r\n=trXG\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","types":"./build/src/index.d.ts","engines":{"node":">=14"},"exports":"./build/src/index.js","gitHead":"ef74217113cf611af420564421d844858d70701b","scripts":{"fix":"gts fix","lint":"gts check","test":"c8 mocha build/test","clean":"gts clean","compile":"tsc -p .","pretest":"npm run compile","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"8.8.0","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"18.1.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^7.11.2","gts":"^3.1.0","nock":"^13.2.4","axios":"^0.26.0","mocha":"^10.0.0","sinon":"^13.0.2","typescript":"~4.6.4","@types/node":"^17.0.31","@types/mocha":"^9.1.1","@types/sinon":"^10.0.11","semantic-release":"^19.0.2","js-green-licenses":"^3.0.1"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_3.0.0_1651682859462_0.628524122488648","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"retry-axios","version":"3.1.0","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@3.1.0","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test","dist"]},"xo":{"rules":{"@typescript-eslint/prefer-nullish-coalescing":"off","@typescript-eslint/consistent-type-definitions":"off"}},"dist":{"shasum":"ac2b32f6d1dc4179ad783dc821ff089d523edaea","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-3.1.0.tgz","fileCount":5,"integrity":"sha512-OQzlG/II3dXP6xocFk03zGgZC3GV/bVCYbMASY2SNDQWjbHktr6vws2N/HtEO+jKGMWas7BEBu3F5zwdf85ivw==","signatures":[{"sig":"MEYCIQCzFyIn+LLtfq9/Bc/1VSbp2KeYQlJoDZPjm8/wnKwOfwIhAOl6zds/GYe8G2O5lowEn6ggWKm5/YqfLypn6G+IAkA3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33145},"type":"module","types":"./build/src/index.d.ts","engines":{"node":">=14"},"exports":"./build/src/index.js","gitHead":"247fae0434fb3e495f7ec3518da19a25a3be1704","scripts":{"fix":"xo --prettier --fix","lint":"xo --prettier","test":"c8 mocha build/test","compile":"tsc -p .","pretest":"npm run compile","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"9.8.1","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"devDependencies":{"c8":"^8.0.0","xo":"^0.56.0","nock":"^13.3.0","axios":"^1.2.1","mocha":"^10.2.0","sinon":"^15.0.2","typescript":"~5.2.0","@types/node":"^18.15.9","@types/mocha":"^10.0.1","@types/sinon":"^10.0.13","semantic-release":"^21.0.0","js-green-licenses":"^4.0.0"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_3.1.0_1693255741010_0.42075963861984644","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"retry-axios","version":"3.1.1","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@3.1.1","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test","dist"]},"xo":{"rules":{"@typescript-eslint/prefer-nullish-coalescing":"off","@typescript-eslint/consistent-type-definitions":"off"}},"dist":{"shasum":"a3921c400ab335990c62d9195fa48854661e52e0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-3.1.1.tgz","fileCount":6,"integrity":"sha512-qqMnhSsEH0kgwwX9YxNMpvPTiCAQPsbgvAimWtNwp7cyvvlSTgMf9+lNy1itPpLfsamkA1X+IOUNfyzzdvCrBg==","signatures":[{"sig":"MEQCIEe5NmdLMpUZhVL48JP+6OCKRTEtTtGFXlEBAz+CETXlAiBX3z3tUcQI4tgSjwisqYrrIdaDBwIKCNgy44xicWRTkA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36181},"type":"module","types":"./build/src/index.d.ts","engines":{"node":">=18"},"exports":"./build/src/index.js","gitHead":"bff6aa9f50434d3718f78b68e4de6dab6a14e705","scripts":{"fix":"xo --prettier --fix","lint":"xo --prettier","test":"c8 mocha build/test","compile":"tsc -p .","pretest":"npm run compile","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"10.2.3","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"20.9.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^8.0.0","xo":"^0.56.0","nock":"^13.3.0","axios":"^1.2.1","mocha":"^10.2.0","sinon":"^17.0.0","typescript":"~5.2.0","@types/node":"^20.0.0","@types/mocha":"^10.0.1","@types/sinon":"^10.0.13","semantic-release":"^22.0.0","js-green-licenses":"^4.0.0"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_3.1.1_1699842032001_0.58128969976374","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"retry-axios","version":"3.1.2","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@3.1.2","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test","dist"]},"xo":{"rules":{"@typescript-eslint/prefer-nullish-coalescing":"off","@typescript-eslint/consistent-type-definitions":"off"}},"dist":{"shasum":"479818c4c0e9adaaf75af9fb0f472e1c992d882c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-3.1.2.tgz","fileCount":6,"integrity":"sha512-x3KVIImvk4js4tbqLo6grgjXZLKwMnAeLFDHcZrcjRz5ckIb2s2cE4pWyBb51pEqoJeIFmgxPdBEauy8DzXc/A==","signatures":[{"sig":"MEUCICvkFTD1/GJDXHVF2gfn63EfKjaIdC6ixZITA2VwPQYeAiEAt7m0G4G+gOiKZWrp7p1g1Rzuud8ktUBElFGUJ5r+BLE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36295},"type":"module","types":"./build/src/index.d.ts","engines":{"node":">=18"},"exports":"./build/src/index.js","gitHead":"2e4e702feb38b2b49e8de776c85a85a4599a1b04","scripts":{"fix":"xo --prettier --fix","lint":"xo --prettier","test":"c8 mocha build/test","compile":"tsc -p .","pretest":"npm run compile","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"10.2.4","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"20.9.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^8.0.0","xo":"^0.56.0","nock":"^13.3.0","axios":"^1.2.1","mocha":"^10.2.0","sinon":"^17.0.0","typescript":"~5.2.0","@types/node":"^20.0.0","@types/mocha":"^10.0.1","@types/sinon":"^17.0.0","semantic-release":"^22.0.0","js-green-licenses":"^4.0.0"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_3.1.2_1700161893783_0.03690204095756955","host":"s3://npm-registry-packages"}},"3.1.3":{"name":"retry-axios","version":"3.1.3","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@3.1.3","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test","dist"]},"xo":{"rules":{"@typescript-eslint/prefer-nullish-coalescing":"off","@typescript-eslint/consistent-type-definitions":"off"}},"dist":{"shasum":"c263313e5148e8747b13d4861e3f8316f49088ed","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-3.1.3.tgz","fileCount":6,"integrity":"sha512-uwnlAjqg6twTcQB7RvH3OSgAqjqBDS9GFUOT+BhgADDYjoxsB7KfvS6SqYHOPjxM/Z/jVwSwGYdJnPE8at1PoA==","signatures":[{"sig":"MEYCIQC3OIO3nTffhnofOxEB5V2WYET/q6e5xASm/LqQIR1LoAIhAMUEYluQWUGasnVBd1AmdOK12XLEY09twrxrziSY+pla","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36433},"type":"module","types":"./build/src/index.d.ts","engines":{"node":">=18"},"exports":"./build/src/index.js","gitHead":"6e2454a139a76a3376ea7e16f4e0566345e683c8","scripts":{"fix":"xo --prettier --fix","lint":"xo --prettier","test":"c8 mocha build/test","compile":"tsc -p .","pretest":"npm run compile","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"10.2.4","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"20.9.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^8.0.0","xo":"^0.56.0","nock":"^13.3.0","axios":"^1.2.1","mocha":"^10.2.0","sinon":"^17.0.0","typescript":"~5.2.0","@types/node":"^20.0.0","@types/mocha":"^10.0.1","@types/sinon":"^17.0.0","semantic-release":"^22.0.0","js-green-licenses":"^4.0.0"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_3.1.3_1700162742558_0.8708333248358109","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"retry-axios","version":"3.2.0","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@3.2.0","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test","dist"]},"dist":{"shasum":"ee26b7f2b861c92222da7edb2b27ee31e6f6e389","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-3.2.0.tgz","fileCount":7,"integrity":"sha512-qq2GuLoPdFeymrMYDrYY7q9U1KI/pPeHSJ/rBYliR4RGUr/HXZbK2vnzsL2w/JQc4zR0z9mK+ZG09RNhAenYtQ==","signatures":[{"sig":"MEUCIQCh84sKZDyMk+AEphpvUbJHC53q350NYXg0b2RyO4VqeQIgYafbafQ6ur33tH69zT7vbjUmZhvK0kBBu/zE19y0io8=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":44043},"main":"./build/src/index.cjs","type":"module","types":"./build/src/index.d.ts","module":"./build/src/index.js","engines":{"node":">=18"},"exports":{".":{"types":"./build/src/index.d.ts","import":"./build/src/index.js","require":"./build/src/index.cjs"}},"gitHead":"38244be3b67c3316eea467f10ed3c4d8027b9fb5","scripts":{"fix":"biome check --write .","lint":"biome check .","test":"c8 mocha build/test test/cjs-import.test.cjs","compile":"npm run compile:esm && npm run compile:cjs","pretest":"npm run compile","compile:cjs":"esbuild build/src/index.js --bundle --platform=node --format=cjs --external:axios --outfile=build/src/index.cjs","compile:esm":"tsc -p .","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"10.9.3","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^10.0.0","nock":"^13.3.0","axios":"^1.2.1","mocha":"^11.0.0","sinon":"^21.0.0","esbuild":"^0.25.9","typescript":"~5.9.0","@types/node":"^22.0.0","@types/mocha":"^10.0.1","@types/sinon":"^17.0.0","@biomejs/biome":"^2.2.3","semantic-release":"^24.0.0","js-green-licenses":"^4.0.0"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_3.2.0_1757360889857_0.46662249333081895","host":"s3://npm-registry-packages-npm-production"}},"3.2.1":{"name":"retry-axios","version":"3.2.1","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@3.2.1","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test","dist"]},"dist":{"shasum":"2dc8ea26e2ca564b7bbf9941535c55eb3f672e45","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-3.2.1.tgz","fileCount":7,"integrity":"sha512-WoIVswbInbTzGPBo+s+8afMMbZHQX72hWvqdq9QeNJDC+6vXhUaoTt+/ZV+/yVmbPBCklinuq4sG0ZTzLMcQqQ==","signatures":[{"sig":"MEYCIQDRTp7dHWebne2n6YgFp+jLlnP22rddVwCWgJxA9dNGCgIhAP85fkAgo/uAE6g65J9pxspGGKgoaikGEorFRgYUFQw4","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":44066},"main":"./build/src/index.cjs","type":"module","types":"./build/src/index.d.ts","module":"./build/src/index.js","engines":{"node":">=18"},"exports":{".":{"types":"./build/src/index.d.ts","import":"./build/src/index.js","require":"./build/src/index.cjs"}},"gitHead":"a58cd1d013dc86385d75bb83a8798fb41d1a89f1","scripts":{"fix":"biome check --write .","lint":"biome check .","test":"c8 mocha build/test test/cjs-import.test.cjs","compile":"npm run compile:esm && npm run compile:cjs","pretest":"npm run compile","compile:cjs":"esbuild build/src/index.js --bundle --platform=node --format=cjs --external:axios --outfile=build/src/index.cjs","compile:esm":"tsc -p .","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"justin.beckwith@gmail.com"},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"10.9.3","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^10.0.0","nock":"^14.0.10","axios":"^1.2.1","mocha":"^11.0.0","sinon":"^21.0.0","esbuild":"^0.25.9","typescript":"~5.9.0","@types/node":"^22.0.0","@types/mocha":"^10.0.1","@types/sinon":"^17.0.0","@biomejs/biome":"^2.2.3","semantic-release":"^24.0.0","js-green-licenses":"^4.0.0"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_3.2.1_1757363359038_0.17205161096059562","host":"s3://npm-registry-packages-npm-production"}},"4.0.0":{"name":"retry-axios","version":"4.0.0","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@4.0.0","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test","dist"]},"dist":{"shasum":"2d3b0dab50f1625d42c05998bdfd045f14772953","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-4.0.0.tgz","fileCount":7,"integrity":"sha512-oHaTjpRfTi8unlSg4esOxQ1BScDS9qQwOcB4ja9Jyb/lvqzMAMaZbdAachT50AL60oKO3CFcvtbarr2vOjEhwQ==","signatures":[{"sig":"MEQCIF76kD3dssWT4H1LMtzQFYxfEmwhXjXrlLDi2ewJLipFAiBSTJ2Ju0EM/DQTk84J7pxb/VWiOCPCmh8EpB91vGInjQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/retry-axios@4.0.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":56598},"main":"./build/src/index.cjs","type":"module","types":"./build/src/index.d.ts","module":"./build/src/index.js","engines":{"node":">=20"},"exports":{".":{"types":"./build/src/index.d.ts","import":"./build/src/index.js","require":"./build/src/index.cjs"}},"gitHead":"f4e641fa999acfd01c1d78b991eb231878749a5e","scripts":{"fix":"biome check --write .","lint":"biome check .","test":"c8 mocha build/test test/cjs-import.test.cjs","compile":"npm run compile:esm && npm run compile:cjs","pretest":"npm run compile","compile:cjs":"esbuild build/src/index.js --bundle --platform=node --format=cjs --external:axios --outfile=build/src/index.cjs","compile:esm":"tsc -p .","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:a560e7aa-9958-4f20-8492-3407fac1db6e"}},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"11.6.1","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"24.10.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^10.0.0","nock":"^14.0.10","axios":"^1.2.1","mocha":"^11.0.0","sinon":"^21.0.0","esbuild":"^0.25.9","typescript":"~5.9.0","@types/node":"^22.0.0","@types/mocha":"^10.0.1","@types/sinon":"^17.0.0","@biomejs/biome":"^2.2.3","js-green-licenses":"^4.0.0"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_4.0.0_1760997372798_0.8208800860886998","host":"s3://npm-registry-packages-npm-production"}},"4.0.1":{"name":"retry-axios","version":"4.0.1","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@4.0.1","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test","dist"],"reporter":["text","lcov"]},"dist":{"shasum":"8f451bec02295eacf312338da5d80165c2de2934","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-4.0.1.tgz","fileCount":7,"integrity":"sha512-IRU9UJ9P7BzW2tWGHT026I3GePfYQaJ6QAkC8QK1tum1BZyQ3LNeKihXKuqhv0eWaxJinXQ0PhfIX0aIj0b8Rw==","signatures":[{"sig":"MEYCIQCqpHhgLMcFqc/fxlTTZB5v+vy6eKJqtopdlb4ECwPRJwIhAPRLJVBMDCJVcA5xp09BHztsc4fCyJhTSNHXlCWz9WN2","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/retry-axios@4.0.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":57808},"main":"./build/src/index.cjs","type":"module","types":"./build/src/index.d.ts","module":"./build/src/index.js","engines":{"node":">=20"},"exports":{".":{"types":"./build/src/index.d.ts","import":"./build/src/index.js","require":"./build/src/index.cjs"}},"gitHead":"8aede58ac1c085e87eef671249589e1c1c7f7401","scripts":{"fix":"biome check --write .","lint":"biome check .","test":"vitest run --coverage","compile":"npm run compile:esm && npm run compile:cjs","pretest":"npm run compile","test:watch":"vitest watch","compile:cjs":"esbuild build/src/index.js --bundle --platform=node --format=cjs --external:axios --outfile=build/src/index.cjs","compile:esm":"tsc -p .","license-check":"jsgl --local ."},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:a560e7aa-9958-4f20-8492-3407fac1db6e"}},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"11.6.1","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"devDependencies":{"nock":"^14.0.10","axios":"^1.2.1","vitest":"^4.0.0","esbuild":"^0.26.0","p-defer":"^4.0.1","typescript":"~5.9.3","@types/node":"^24.0.0","@biomejs/biome":"^2.2.3","js-green-licenses":"^4.0.0","@vitest/coverage-v8":"^4.0.0"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_4.0.1_1762715749000_0.6929045727201675","host":"s3://npm-registry-packages-npm-production"}},"4.0.2":{"name":"retry-axios","version":"4.0.2","keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","_id":"retry-axios@4.0.2","maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"c8":{"exclude":["build/test","dist"],"reporter":["text","lcov"]},"dist":{"shasum":"74a1b1e70dd326f16f2783081f2f2cdb191b5675","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-4.0.2.tgz","fileCount":9,"integrity":"sha512-7cn3WwjP+rmvrG5kaD15/1Nd/w85LBAxL3AuqAQo18WkVvn6+I8stAH8XuZp4oZlrF1iOHzDEfxG1RO2pcH0cQ==","signatures":[{"sig":"MEUCIQCVYZmmnGgoABmyP07yJ4PsAXmtX0eGuqKNXfO2j9AjfAIgOJSthuk5hkg4JFgzem4TQWuUcKMH2USdG2U07NHuqHo=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/retry-axios@4.0.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":63958},"main":"./build/src/index.cjs","type":"module","types":"./build/src/index.d.ts","module":"./build/src/index.js","engines":{"node":">=20"},"exports":{".":{"types":{"import":"./build/src/index.d.ts","require":"./build/src/index.d.cts"},"import":"./build/src/index.js","require":"./build/src/index.cjs"}},"gitHead":"129ef65debb81891f8a175adf0a8be5661154ce0","scripts":{"fix":"biome check --write .","lint":"biome check .","test":"vitest run --coverage","compile":"npm run compile:esm && npm run compile:cjs && npm run compile:types:cjs","pretest":"npm run compile","typecheck":"tsc -p tsconfig.typecheck.json","test:watch":"vitest watch","compile:cjs":"esbuild build/src/index.js --bundle --platform=node --format=cjs --external:axios --outfile=build/src/index.cjs","compile:esm":"tsc -p .","license-check":"jsgl --local .","compile:types:cjs":"cp build/src/index.d.ts build/src/index.d.cts"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:a560e7aa-9958-4f20-8492-3407fac1db6e"}},"repository":{"url":"git+https://github.com/JustinBeckwith/retry-axios.git","type":"git"},"_npmVersion":"11.11.0","description":"Retry HTTP requests with Axios.","directories":{},"_nodeVersion":"24.14.1","_hasShrinkwrap":false,"devDependencies":{"nock":"^14.0.10","axios":"^1.2.1","vitest":"^4.0.0","esbuild":"^0.28.0","p-defer":"^4.0.1","typescript":"~6.0.0","@types/node":"^24.0.0","@biomejs/biome":"^2.2.3","js-green-licenses":"^4.0.0","@vitest/coverage-v8":"^4.0.0"},"peerDependencies":{"axios":"*"},"_npmOperationalInternal":{"tmp":"tmp/retry-axios_4.0.2_1775778130676_0.8052524333335149","host":"s3://npm-registry-packages-npm-production"}},"4.0.3":{"name":"retry-axios","version":"4.0.3","description":"Retry HTTP requests with Axios.","exports":{".":{"types":{"import":"./build/src/index.d.ts","require":"./build/src/index.d.cts"},"import":"./build/src/index.js","require":"./build/src/index.cjs"}},"type":"module","main":"./build/src/index.cjs","module":"./build/src/index.js","types":"./build/src/index.d.ts","engines":{"node":">=20"},"repository":{"type":"git","url":"git+https://github.com/JustinBeckwith/retry-axios.git"},"scripts":{"fix":"biome check --write .","lint":"biome check .","compile":"npm run compile:esm && npm run compile:cjs && npm run compile:types:cjs","compile:esm":"tsc -p .","compile:cjs":"esbuild build/src/index.js --bundle --platform=node --format=cjs --external:axios --outfile=build/src/index.cjs","typecheck":"tsc -p tsconfig.typecheck.json","compile:types:cjs":"cp build/src/index.d.ts build/src/index.d.cts","test":"vitest run --coverage","pretest":"npm run compile","test:watch":"vitest watch","license-check":"jsgl --local ."},"keywords":["axios","retry"],"author":{"name":"Justin Beckwith"},"license":"Apache-2.0","peerDependencies":{"axios":"*"},"devDependencies":{"@biomejs/biome":"^2.2.3","@types/node":"^24.0.0","@vitest/coverage-v8":"^4.0.0","axios":"^1.2.1","esbuild":"^0.28.0","js-green-licenses":"^4.0.0","nock":"^14.0.10","p-defer":"^4.0.1","typescript":"~6.0.0","vitest":"^4.0.0"},"c8":{"exclude":["build/test","dist"],"reporter":["text","lcov"]},"gitHead":"0ef7aee08ac1a76b673c5219f4dde0820d4e302a","_id":"retry-axios@4.0.3","bugs":{"url":"https://github.com/JustinBeckwith/retry-axios/issues"},"homepage":"https://github.com/JustinBeckwith/retry-axios#readme","_nodeVersion":"24.14.1","_npmVersion":"11.11.0","dist":{"integrity":"sha512-rs4HXqxwWKP7bHIgo02ijrSwS9GPzXA0i2vhN7x2Qp2Gn/SZPuQkcA5qqouR+8VJrjT7DrzZpU8FTFkOA7AFXQ==","shasum":"bd2f9007eaa8892eefb57ad20802163e22d8184a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/retry-axios/-/retry-axios-4.0.3.tgz","fileCount":9,"unpackedSize":64861,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/retry-axios@4.0.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQCewfsfw4QBDi6PTMVqlgxh93Bm5HqM7aKEnqF59zF4WAIhAOCuH2N6aTrZDOiakUD9aDz7tdyA4NvnT5shwDc3TDb3"}]},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:a560e7aa-9958-4f20-8492-3407fac1db6e"}},"directories":{},"maintainers":[{"name":"anonymous","email":"justin.beckwith@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/retry-axios_4.0.3_1775922877955_0.8749867426236604"},"_hasShrinkwrap":false}},"name":"retry-axios","time":{"created":"2018-01-30T06:48:06.875Z","modified":"2026-04-11T15:54:38.375Z","0.0.1":"2018-01-30T06:48:06.875Z","0.1.0":"2018-01-30T19:30:31.417Z","0.2.0":"2018-01-30T21:21:03.218Z","0.3.0":"2018-02-02T22:16:45.161Z","0.3.2":"2018-02-20T00:56:56.792Z","0.4.0":"2019-01-22T01:10:48.867Z","0.4.1":"2019-01-22T01:19:31.138Z","0.5.0":"2019-02-25T19:48:04.689Z","1.0.0":"2019-04-26T17:33:09.563Z","1.0.1":"2019-04-26T17:35:02.908Z","1.0.2":"2020-01-11T18:33:39.484Z","2.0.0":"2020-01-11T18:38:37.706Z","2.0.1":"2020-01-11T19:08:17.491Z","2.1.0":"2020-01-13T15:18:45.255Z","2.1.1":"2020-01-16T03:58:27.979Z","2.1.2":"2020-03-16T15:14:18.220Z","2.1.3":"2020-05-05T16:26:32.252Z","2.2.0":"2020-05-18T16:58:30.408Z","2.2.1":"2020-06-17T16:37:07.548Z","2.3.0":"2020-10-23T19:23:54.669Z","2.4.0":"2020-11-23T16:58:32.123Z","2.5.0":"2021-08-13T17:31:58.615Z","2.5.1":"2021-08-23T16:11:21.958Z","2.6.0":"2021-08-23T16:22:48.700Z","3.0.0":"2022-05-04T16:47:39.646Z","3.1.0":"2023-08-28T20:49:01.201Z","3.1.1":"2023-11-13T02:20:32.150Z","3.1.2":"2023-11-16T19:11:33.972Z","3.1.3":"2023-11-16T19:25:42.816Z","3.2.0":"2025-09-08T19:48:10.030Z","3.2.1":"2025-09-08T20:29:19.228Z","4.0.0":"2025-10-20T21:56:12.995Z","4.0.1":"2025-11-09T19:15:49.237Z","4.0.2":"2026-04-09T23:42:10.823Z","4.0.3":"2026-04-11T15:54:38.114Z"},"readmeFilename":"README.md","homepage":"https://github.com/JustinBeckwith/retry-axios#readme"}