{"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"keywords":["cordova","background","fetch"],"dist-tags":{"latest":"7.2.4"},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","readme":"cordova-plugin-background-fetch &middot; [![npm](https://img.shields.io/npm/dm/cordova-plugin-background-fetch.svg)]() [![npm](https://img.shields.io/npm/v/cordova-plugin-background-fetch.svg)]()\n==============================================================================\n\n[![](https://dl.dropboxusercontent.com/s/nm4s5ltlug63vv8/logo-150-print.png?dl=1)](https://www.transistorsoft.com)\n\nBy [**Transistor Software**](https://www.transistorsoft.com), creators of [**Cordova Background Geolocation**](http://www.transistorsoft.com/shop/products/cordova-background-geolocation)\n\n-------------------------------------------------------------------------------\n### :new: :stop_sign: *Capacitor* version now available! See [__`capacitor-background-fetch`__](https://github.com/transistorsoft/capacitor-background-fetch) :stop_sign:\n------------------------------------------------------------------------------\n\nBackground Fetch is a *very* simple plugin which attempts to awaken an app in the background about **every 15 minutes**, providing a short period of background running-time.  This plugin will execute your provided `callbackFn` whenever a background-fetch event occurs.\n\nThere is **no way** to increase the rate which a fetch-event occurs and this plugin sets the rate to the most frequent possible &mdash; you will **never** receive an event faster than **15 minutes**.  The operating-system will automatically throttle the rate the background-fetch events occur based upon usage patterns.  Eg: if user hasn't turned on their phone for a long period of time, fetch events will occur less frequently or if an iOS user disables background refresh they may not happen at all.\n\n:new: Background Fetch now provides a [__`scheduleTask`__](#executing-custom-tasks) method for scheduling arbitrary \"one-shot\" or periodic tasks.\n\n### iOS\n- There is **no way** to increase the rate which a fetch-event occurs and this plugin sets the rate to the most frequent possible &mdash; you will **never** receive an event faster than **15 minutes**.  The operating-system will automatically throttle the rate the background-fetch events occur based upon usage patterns.  Eg: if user hasn't turned on their phone for a long period of time, fetch events will occur less frequently.\n- [__`scheduleTask`__](#executing-custom-tasks) seems only to fire when the device is plugged into power.\n- ⚠️ When your app is **terminated**, iOS *no longer fires events* &mdash; There is *no such thing* as **`stopOnTerminate: false`** for iOS.\n- iOS can take *days* before Apple's machine-learning algorithm settles in and begins regularly firing events.  Do not sit staring at your logs waiting for an event to fire.  If your [*simulated events*](#debugging-1) work, that's all you need to know that everything is correctly configured.\n- If the user doesn't open your *iOS* app for long periods of time, *iOS* will **stop firing events**.\n\n### Android\n- The Android plugin provides a [Headless](#config-boolean-enableheadless-false) implementation allowing you to continue handling events even after app terminate.\n\n-------------------------------------------------------------\n\n# Contents\n- ### :books: [API Documentation](#api-documentation)\n  - [Config](#config)\n  - [Methods](#methods)\n- ### [Using the plugin](#using-the-plugin-1)\n- ### [Installing the Plugin](#installing-the-plugin-1)\n- ### [Setup Guides](#setup)\n- ### [Example](#example-1)\n- ### [Debugging](#debugging-1)\n\n-------------------------------------------------------------\n\n## Using the plugin ##\n\n- **Cordova / Ionic 1**\nThe plugin creates the object **`window.BackgroundFetch`**.\n\n- With Typescript (eg: Ionic 2+):\n```typescript\nimport BackgroundFetch from \"cordova-plugin-background-fetch\";\n\n```\n\n\n## Installing the plugin ##\n\n#### :warning: *Cocoapods* >= `1.10.0` is required:\n```console\n$ pod --version\n// if < 1.10.0\n$ sudo gem install cocoapods\n```\n\n- ### Ionic\n```\nionic cordova plugin add cordova-plugin-background-fetch\n```\n\n- ### Pure Cordova\n\n```bash\ncordova plugin add cordova-plugin-background-fetch\n```\n\n- ### Capacitor\n```bash\nnpm install cordova-plugin-background-fetch\nnpx cap sync\n```\n:information_source: See [Capacitor Setup](./docs/INSTALL_CAPACITOR.md)\n\n\n## Setup\n\n### iOS Setup\n\nIf you intend to execute your own [custom tasks](#executing-custom-tasks) via **`BackgroundFetch.scheduleTask`**, for example:\n\n```javascript\nBackgroundFetch.scheduleTask({\n  taskId: 'com.transistorsoft.customtask1',  // <-- Your custom task-identifier\n  delay: 60 * 60 * 1000  //  In one hour (milliseconds)\n});\n.\n.\n.\nBackgroundFetch.scheduleTask({\n  taskId: 'com.transistorsoft.customtask2',  // <-- Your custom task-identifier\n  delay: 60 * 60 * 1000  //  In one hour (milliseconds)\n});\n```\n\nYou must register these custom *task-identifiers* with your iOS app's __`Info.plist`__ *\"Permitted background task scheduler identifiers\"*:\n\n:open_file_folder: In your __`config.xml`__, find the __`<platform name=\"ios\">`__ container and register your custom *task-identifier(s)*:\n```xml\n  <platform name=\"ios\">\n      <config-file parent=\"BGTaskSchedulerPermittedIdentifiers\" target=\"*-Info.plist\">\n          <array>\n              <string>com.transistorsoft.customtask1</string>\n              <string>com.transistorsoft.customtask2</string>\n          </array>\n      </config-file>\n  </platform>\n```\n\n:warning: A task identifier can be any string you wish, but it's a good idea to prefix them now with `com.transistorsoft.` &mdash;  In the future, the `com.transistorsoft` prefix **may become required**.\n\n#### Privacy Manifest\n\nApple now requires apps provide a [Privacy Manifest for \"sensitive\" APIs](https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_use_of_required_reason_api?language=objc) which could be abused for \"fingerprinting\" a user for malicious marketing activity.\n\n:warning: You **MUST** upgrade your `cordova-ios` platform to [`>= 7.1.0` for *iOS Privacy Manifest Support*](https://github.com/apache/cordova-ios/blob/master/RELEASENOTES.md#710-apr-01-2024):\n\n- :open_file_folder: __`config.xml`__\n- Add the following `<privacy-manifest>` block within the `NSPrivacyAccessedAPITypes` container:\n\n```xml\n  <platform name=\"ios\">\n      <privacy-manifest>\n          <key>NSPrivacyAccessedAPITypes</key>\n          <array>\n              <!-- [1] background-fetch: UserDefaults -->\n              <dict>\n                  <key>NSPrivacyAccessedAPIType</key>\n                  <string>NSPrivacyAccessedAPICategoryUserDefaults</string>\n\n                  <key>NSPrivacyAccessedAPITypeReasons</key>\n                  <array>\n                      <string>CA92.1</string>\n                  </array>\n              </dict>\n              <!-- [1] background-fetch -->\n          </array>\n      </privacy-manifest>\n  </platform>\n```\n\n### Android Setup (optional)\n\n**Only** If you wish to use precise scheduling of events with [__`forceAlarmManager: true`__](#config-boolean-forcealarmmanager-false), *Android 14 (SDK 34)*, has restricted usage of [\"`AlarmManager` exact alarms\"](https://developer.android.com/about/versions/14/changes/schedule-exact-alarms).  To continue using precise timing of events with *Android 14*, you can manually add this permission to your __`AndroidManifest`__.  Otherwise, the plugin will gracefully fall-back to \"*in-exact* `AlarmManager` scheduling\":\n\n:open_file_folder: In your `config.xml`, add the following block within the __`<platform name=\"android\">`__ block (**exactly as-shown**:\n\n```xml\n  <platform name=\"android\">\n      <config-file parent=\"/manifest\" target=\"app/src/main/AndroidManifest.xml\">\n          <uses-permission android:minSdkVersion=\"34\" android:name=\"android.permission.USE_EXACT_ALARM\" />\n      </config-file>\n  </platform>\n```\n:warning: It has been announced that *Google Play Store* has plans to impose greater scrutiny over usage of this permission (which is why the plugin does not automatically add it).\n\n## Example ##\n\n### Pure Cordova Javascript (eg: Ionic 1)\n```javascript\nonDeviceReady: async function() {\n  var BackgroundFetch = window.BackgroundFetch;\n\n  // Your BackgroundFetch event handler.\n  var onEvent = async function(taskId) {\n      console.log('[BackgroundFetch] event received: ', taskId);\n      // Required: Signal completion of your task to native code\n      // If you fail to do this, the OS can terminate your app\n      // or assign battery-blame for consuming too much background-time\n      BackgroundFetch.finish(taskId);\n  };\n\n  // Timeout callback is executed when your Task has exceeded its allowed running-time.\n  // You must stop what you're doing immediately BackgroundFetch.finish(taskId)\n  var onTimeout = async function(taskId) {\n      console.log('[BackgroundFetch] TIMEOUT: ', taskId);\n      BackgroundFetch.finish(taskId);\n  };\n\n  var status = await BackgroundFetch.configure({minimumFetchInterval: 15}, onEvent, onTimeout);\n  console.log('[BackgroundFetch] configure status: ', status);\n}\n```\n\n### Ionic 2+ Example\n\n```javascript\nimport { Component } from '@angular/core';\nimport { NavController, Platform } from 'ionic-angular';\n\nimport BackgroundFetch from \"cordova-plugin-background-fetch\";\n\n@Component({\n  selector: 'page-home',\n  templateUrl: 'home.html'\n})\nexport class HomePage {\n  constructor(public navCtrl: NavController, public platform: Platform) {\n    this.platform.ready().then(this.onDeviceReady.bind(this));\n  }\n\n  async onDeviceReady() {\n    // Your BackgroundFetch event handler.\n    let onEvent = async (taskId) => {\n        console.log('[BackgroundFetch] event received: ', taskId);\n        // Required: Signal completion of your task to native code\n        // If you fail to do this, the OS can terminate your app\n        // or assign battery-blame for consuming too much background-time\n        BackgroundFetch.finish(taskId);\n    };\n\n    // Timeout callback is executed when your Task has exceeded its allowed running-time.\n    // You must stop what you're doing immediately BackgroundFetch.finish(taskId)\n    let onTimeout = async (taskId) => {\n        console.log('[BackgroundFetch] TIMEOUT: ', taskId);\n        BackgroundFetch.finish(taskId);\n    };\n\n    // Configure the plugin.\n    let status = await BackgroundFetch.configure({minimumFetchInterval: 15}, onEvent, onTimeout);\n    console.log('[BackgroundFetch] configure, status: ', status);\n  }\n}\n```\n\n### Executing Custom Tasks\n\nIn addition to the default background-fetch task defined by `BackgroundFetch.configure`, you may also execute your own arbitrary \"oneshot\" or periodic tasks (iOS requires additional [Setup Instructions](#setup)).  However, all events will be fired into the Callback provided to **`BackgroundFetch#configure`**:\n\n### ⚠️ iOS:\n- `scheduleTask` on *iOS* seems only to run when the device is plugged into power.\n- `scheduleTask` on *iOS* are designed for *low-priority* tasks, such as purging cache files &mdash; they tend to be **unreliable for mission-critical tasks**.  `scheduleTask` will *never* run as frequently as you want.\n- The default `fetch` event is much more reliable and fires far more often.\n- `scheduleTask` on *iOS* stop when the *user* terminates the app.  There is no such thing as `stopOnTerminate: false` for *iOS*.\n\n```javascript\n// Step 1:  Configure BackgroundFetch as usual.\nlet status = await BackgroundFetch.configure({\n  minimumFetchInterval: 15\n}, (taskId) => {  // <-- Event callback.\n  console.log(\"[BackgroundFetch] taskId: \", taskId);\n\n  // Use a switch statement to route task-handling.\n  switch (taskId) {\n    case 'com.transistorsoft.customtask':\n      print(\"Received custom task\");\n      break;\n    default:\n      print(\"Default fetch task\");\n  }\n  // Finish, providing received taskId.\n  BackgroundFetch.finish(taskId);\n}, (taskId) => {  // <-- Task timeout callback.\n  // This task has exceeded its allowed running-time.\n  // You must stop what you're doing and immediately .finish(taskId)\n  console.log('[BackgroundFetch] TIMEOUT taskId: ', taskId);\n  BackgroundFetch.finish(taskId);\n});\n\n// Step 2:  Schedule a custom \"oneshot\" task \"com.transistorsoft.customtask\" to execute 5000ms from now.\nBackgroundFetch.scheduleTask({\n  taskId: \"com.transistorsoft.customtask\",\n  forceAlarmManager: true,\n  delay: 5000  // <-- milliseconds\n});\n```\n# API Documentation\n\n## Config\n\n### Common Options\n\n#### `@param {Integer} minimumFetchInterval [15]`\n\nThe minimum interval in **minutes** to execute background fetch events.  Defaults to **`15`** minutes.  **Note**:  Background-fetch events will **never** occur at a frequency higher than **every 15 minutes**.  Apple uses a secret algorithm to adjust the frequency of fetch events, presumably based upon usage patterns of the app.  Fetch events *can* occur less often than your configured `minimumFetchInterval`.\n\n#### `@param {Integer} delay (milliseconds)`\n\n:information_source: Valid only for `BackgroundGeolocation.scheduleTask`.  The minimum number of milliseconds in future that task should execute.\n\n#### `@param {Boolean} periodic [false]`\n\n:information_source: Valid only for `BackgroundGeolocation.scheduleTask`.  Defaults to `false`.  Set true to execute the task repeatedly.  When `false`, the task will execute **just once**.\n\n### Android Options\n\n#### `@config {Boolean} stopOnTerminate [true]`\n\nSet `false` to continue background-fetch events after user terminates the app.  Default to `true`.\n\n#### `@config {Boolean} startOnBoot [false]`\n\nSet `true` to initiate background-fetch events when the device is rebooted.  Defaults to `false`.\n\n:exclamation: **NOTE:** `startOnBoot` requires `stopOnTerminate: false`.\n\n#### `@config {Boolean} forceAlarmManager [false]`\n\nBy default, the plugin will use Android's `JobScheduler` when possible.  The `JobScheduler` API prioritizes for battery-life, throttling task-execution based upon device usage and battery level.\n\nConfiguring `forceAlarmManager: true` will bypass `JobScheduler` to use Android's older `AlarmManager` API, resulting in more accurate task-execution at the cost of **higher battery usage**.\n\n```javascript\nlet status = await BackgroundFetch.configure({\n  minimumFetchInterval: 15,\n  forceAlarmManager: true\n}, async (taskId) => {\n  console.log(\"[BackgroundFetch] taskId: \", taskId);\n  BackgroundFetch.finish(taskId);\n}, async (taskId) => {\n  // This task has exceeded its allowed running-time.\n  // You must stop what you're doing and immediately .finish(taskId)\n  console.log('[BackgroundFetch] TIMEOUT taskId: ', taskId);\n  BackgroundFetch.finish(taskId);\n});\n.\n.\n.\n// And with with #scheduleTask\nBackgroundFetch.scheduleTask({\n  taskId: 'com.transistorsoft.customtask',\n  delay: 5000,       // milliseconds\n  forceAlarmManager: true\n  periodic: false\n});\n```\n\n#### `@config {integer} requiredNetworkType [BackgroundFetch.NETWORK_TYPE_NONE]`\n\nSet basic description of the kind of network your job requires.\n\nIf your job doesn't need a network connection, you don't need to use this option as the default value is `BackgroundFetch.NETWORK_TYPE_NONE`.\n\n| NetworkType                           | Description                                                         |\n|---------------------------------------|---------------------------------------------------------------------|\n| `BackgroundFetch.NETWORK_TYPE_NONE`     | This job doesn't care about network constraints, either any or none.|\n| `BackgroundFetch.NETWORK_TYPE_ANY`      | This job requires network connectivity.                             |\n| `BackgroundFetch.NETWORK_TYPE_CELLULAR` | This job requires network connectivity that is a cellular network.  |\n| `BackgroundFetch.NETWORK_TYPE_UNMETERED` | This job requires network connectivity that is unmetered.          |\n| `BackgroundFetch.NETWORK_TYPE_NOT_ROAMING` | This job requires network connectivity that is not roaming.      |\n\n#### `@config {Boolean} requiresBatteryNotLow [false]`\n\nSpecify that to run this job, the device's battery level must not be low.\n\nThis defaults to false. If true, the job will only run when the battery level is not low, which is generally the point where the user is given a \"low battery\" warning.\n\n#### `@config {Boolean} requiresStorageNotLow [false]`\n\nSpecify that to run this job, the device's available storage must not be low.\n\nThis defaults to false. If true, the job will only run when the device is not in a low storage state, which is generally the point where the user is given a \"low storage\" warning.\n\n#### `@config {Boolean} requiresCharging [false]`\n\nSpecify that to run this job, the device must be charging (or be a non-battery-powered device connected to permanent power, such as Android TV devices). This defaults to false.\n\n#### `@config {Boolean} requiresDeviceIdle [false]`\n\nWhen set true, ensure that this job will not run if the device is in active use.\n\nThe default state is false: that is, the for the job to be runnable even when someone is interacting with the device.\n\nThis state is a loose definition provided by the system. In general, it means that the device is not currently being used interactively, and has not been in use for some time. As such, it is a good time to perform resource heavy jobs. Bear in mind that battery usage will still be attributed to your application, and surfaced to the user in battery stats.\n\n#### `@config {Boolean} enableHeadless [false]`\n\n:warning: **For advanced users only**.  In order to use **`enableHeadless: true`**, you must be prepared to **write Java code**.  If you're not prepared to write Java code, turn away now and do **not** enable this :warning:.\n\nWhen your application is terminated with **`stopOnTerminate: false`**, your Javascript app (and your Javascript fetch `callback`) *are* terminated.  However, the plugin provides a mechanism for you to handle background-fetch events in the **Native Android Environment**.\n\nSome examples where you could use the \"Headless\" mechanism:\n- Refreshing API keys.\n- Performing HTTP requests with your server.\n- Posting a local notification\n\n#### Headless Fetch Setup\n\n1. create a new file in your Cordova application named **`BackgroundFetchHeadlessTask.java`.** :warning: The file can be located anywhere in your app but **MUST** be named **`BackgroundFetchHeadlessTask.java`**.\n\neg: :open_file_folder: **`src/android/BackgroundFetchHeadlessTask.java`**\n```java\npackage com.transistorsoft.cordova.backgroundfetch;\nimport android.content.Context;\nimport com.transistorsoft.tsbackgroundfetch.BackgroundFetch;\nimport com.transistorsoft.tsbackgroundfetch.BGTask;\nimport android.util.Log;\n\npublic class BackgroundFetchHeadlessTask implements HeadlessTask {\n    @Override\n    public void onFetch(Context context, BGTask task) {\n        String taskId = task.getTaskId();\n        boolean isTimeout = task.getTimedOut();\n        if (isTimeout) {\n          Log.d(BackgroundFetch.TAG, \"My BackgroundFetchHeadlessTask TIMEOUT: \" + taskId);\n          BackgroundFetch.getInstance(context).finish(taskId);\n          return;\n        }\n        Log.d(BackgroundFetch.TAG, \"My BackgroundFetchHeadlessTask:  onFetch: \" + taskId);\n        // Perform your work here....\n\n        // Just as in Javascript callback, you must signal #finish\n        BackgroundFetch.getInstance(context).finish(taskId);\n    }\n}\n```\n\n2.  In your **`config.xml`**, add the following **`<resource-file>`** element to the **`<platform name=\"android\">`**:\n```xml\n<platform name=\"android\">\n    <resource-file src=\"src/android/BackgroundFetchHeadlessTask.java\" target=\"app/src/main/java/com/transistorsoft/cordova/backgroundfetch/BackgroundFetchHeadlessTask.java\" />\n</platform>\n```\n- `src`: path to your custom `BackgroundFetchHeadlessTask.java` file.\n- `target`:  :warning: **Must** be *exactly* as shown above.\n\nThis will copy your custom Java source-file into the `cordova-plugin-background-fetch` plugin, effectively overriding the plugin.\n\n:warning: You're responsible for managing your own gradle dependencies.  To import 3rd-party libraries, you'll have to import your own custom `build-extras.gradle` (See \"build-extras\" [here in the Cordova Android Platform Documentation](https://cordova.apache.org/docs/en/latest/guide/platforms/android/))\n\n## Methods\n\n| Method Name | Arguments | Returns | Notes |\n|-------------|-----------|---------|-------|\n| `configure` | `{BackgroundFetchConfig}`, `callbackFn`, `timeoutFn` | `Promise<BackgroundFetchStatus>` | Configures the plugin's fetch `callbackFn` and `timeoutFn`.  This `callbackFn` will fire each time an iOS background-fetch event occurs (typically every 15 min).  The `timeoutFn` will be called when the OS reports your task is nearing the end of its allowed background-time. |\n| `scheduleTask` | `{TaskConfig}` | `Void` | Executes a custom task.  The task will be executed in the same `Callback` function provided to `#configure`. |\n| `stopTask` | `String taskId`, `successFn`,`failureFn` | `Void` | Stops a `scheduleTask` from running. |\n| `finish` | `String taskId` | `Void` | You **MUST** call this method in your `callbackFn` provided to `#configure` in order to signal to the OS that your task is complete.  iOS provides **only** 30s of background-time for a fetch-event -- if you exceed this 30s, iOS will kill your app. |\n| `start` | `successFn`, `failureFn` | `Void` | Start the background-fetch API.  Your `callbackFn` provided to `#configure` will be executed each time a background-fetch event occurs.  **NOTE** the `#configure` method *automatically* calls `#start`.  You do **not** have to call this method after you `#configure` the plugin |\n| `stop` | `successFn`, `failureFn` | `Void` | Stop the background-fetch API from firing fetch events.  Your `callbackFn` provided to `#configure` will no longer be executed. |\n| `status` | `callbackFn` | `Void` | Your callback will be executed with the current `status (Integer)` `0: Restricted`, `1: Denied`, `2: Available`.  These constants are defined as `BackgroundFetch.STATUS_RESTRICTED`, `BackgroundFetch.STATUS_DENIED`, `BackgroundFetch.STATUS_AVAILABLE` (**NOTE:** Android will always return `STATUS_AVAILABLE`)|\n\n\n## Debugging\n\n### iOS\n\n#### :new: `BGTaskScheduler` API for iOS 13+\n\n- :warning: At the time of writing, the new task simulator does not yet work in Simulator; Only real devices.\n- See Apple docs [Starting and Terminating Tasks During Development](https://developer.apple.com/documentation/backgroundtasks/starting_and_terminating_tasks_during_development?language=objc)\n- After running your app in XCode, Click the `[||]` button to initiate a *Breakpoint*.\n- In the console `(lldb)`, paste the following command (**Note:**  use cursor up/down keys to cycle through previously run commands):\n```obj-c\ne -l objc -- (void)[[BGTaskScheduler sharedScheduler] _simulateLaunchForTaskWithIdentifier:@\"com.transistorsoft.fetch\"]\n```\n- Click the `[ > ]` button to continue.  The task will execute and the Callback function provided to **`BackgroundFetch.configure`** will receive the event.\n\n\n![](https://dl.dropboxusercontent.com/s/zr7w3g8ivf71u32/ios-simulate-bgtask-pause.png?dl=1)\n\n![](https://dl.dropboxusercontent.com/s/87c9uctr1ka3s1e/ios-simulate-bgtask-paste.png?dl=1)\n\n![](https://dl.dropboxusercontent.com/s/bsv0avap5c2h7ed/ios-simulate-bgtask-play.png?dl=1)\n\n#### Simulating task-timeout events\n\nFirst comment-out your call to `BackgroundFetch.finish(taskId)` in your `eventCallback` to simulate a task taking too long.\n\n```javascript\nlet status = await BackgroundFetch.configure({\n  minimumFetchInterval: 15\n}, async (taskId) => {  // <-- Event callback.\n  // This is the task callback.\n  console.log(\"[BackgroundFetch] taskId\", taskId);\n  ////\n  // NOTE:  Disable BackgroundFetch.finish(taskId) when simulating an iOS task timeout\n  //BackgroundFetch.finish(taskId);\n  //\n}, async (taskId) => {  // <-- Event timeout callback\n  // This task has exceeded its allowed running-time.\n  // You must stop what you're doing and immediately .finish(taskId)\n  print(\"[BackgroundFetch] TIMEOUT taskId:\", taskId);\n  BackgroundFetch.finish(taskId);\n});\n```\n\n- Now simulate an iOS task timeout as follows, in the same manner as simulating an event above:\n```obj-c\ne -l objc -- (void)[[BGTaskScheduler sharedScheduler] _simulateExpirationForTaskWithIdentifier:@\"com.transistorsoft.fetch\"]\n```\n\n#### Old `BackgroundFetch` API\n- Simulate background fetch events in XCode using **`Debug->Simulate Background Fetch`**\n- iOS can take some hours or even days to start a consistently scheduling background-fetch events since iOS schedules fetch events based upon the user's patterns of activity.  If *Simulate Background Fetch* works, your can be **sure** that everything is working fine.  You just need to wait.\n\n### Android\n\n- Observe plugin logs in `$ adb logcat`:\n```bash\n$ adb logcat -s TSBackgroundFetch\n```\n- Simulate a background-fetch event on a device (insert *&lt;your.application.id&gt;*) (only works for sdk `24+`):\n```bash\n$ adb shell cmd jobscheduler run -f <your.application.id> 999\n```\n- For devices with sdk `<21`, simulate a \"Headless JS\" event with (insert *&lt;your.application.id&gt;*)\n```bash\n$ adb shell am broadcast -a <your.application.id>.event.BACKGROUND_FETCH\n\n```\n\n## Licence ##\n\nThe MIT License\n\nCopyright (c) 2018 Chris Scott, Transistor Software <chris@transistorsoft.com>\nhttp://transistorsoft.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"license":"MIT","versions":{"2.0.6":{"name":"cordova-plugin-background-fetch","version":"2.0.6","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/christocracy/cordova-plugin-background-fetch.git"},"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Chris Scott"},"gitHead":"e6a1098583091d659506ffa542cf768e4bf1a452","description":"BackgroundFetch ==============================","bugs":{"url":"https://github.com/christocracy/cordova-plugin-background-fetch/issues"},"homepage":"https://github.com/christocracy/cordova-plugin-background-fetch#readme","_id":"cordova-plugin-background-fetch@2.0.6","scripts":{},"_shasum":"af333420433efa2a837eea9e91540c6f004678e3","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"shasum":"af333420433efa2a837eea9e91540c6f004678e3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-2.0.6.tgz","integrity":"sha512-dPpfOVXi+kfd2QWYLEZkfCuSDg6HHgDJz8eMus8g0Y6FZ/HcqJSQ0OITT+S6RFO/Lm79EJ/lzkBx2mEyDIR5Rw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBrJ6iSLIhV1qRbAwiF+b55v3fnNP2xhGLd8R6/AKu0KAiEAlPBlCJY5xolvz6BR+q0chJfHpWTl3ugPWoPSfyiTK8M="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-background-fetch-2.0.6.tgz_1459175255240_0.6305943159386516"},"directories":{}},"3.0.0":{"name":"cordova-plugin-background-fetch","version":"3.0.0","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/christocracy/cordova-plugin-background-fetch.git"},"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Chris Scott"},"gitHead":"a71fcb9513674c4d57a39a230fa4693116555d6d","description":"BackgroundFetch ==============================","bugs":{"url":"https://github.com/christocracy/cordova-plugin-background-fetch/issues"},"homepage":"https://github.com/christocracy/cordova-plugin-background-fetch#readme","_id":"cordova-plugin-background-fetch@3.0.0","scripts":{},"_shasum":"2711794f1e01566b17c99acb401d423a63c4b4fe","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"shasum":"2711794f1e01566b17c99acb401d423a63c4b4fe","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-3.0.0.tgz","integrity":"sha512-EtLnJ2CEPCeqMjVJeZ8myjHIAi2MUvg7YTA48NWnqAUVxgf8W5hPEqLqONsMgpDW7pcb2gikGiM93VB0IE/e9Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEDFyH5xjWjNnh781AcYuLqwCUK0ScXSPA/oxqAsOnoaAiEA4IXKXxZ/vaRF8/FpC/sNuLjd4RdOvgo6kFTCQS27/f8="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-background-fetch-3.0.0.tgz_1461791210473_0.21936021861620247"},"directories":{}},"3.0.1":{"name":"cordova-plugin-background-fetch","version":"3.0.1","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/christocracy/cordova-plugin-background-fetch.git"},"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Chris Scott"},"gitHead":"1ba5ad3cb1cd5729dea07a949c51fda927e19033","description":"BackgroundFetch ==============================","bugs":{"url":"https://github.com/christocracy/cordova-plugin-background-fetch/issues"},"homepage":"https://github.com/christocracy/cordova-plugin-background-fetch#readme","_id":"cordova-plugin-background-fetch@3.0.1","scripts":{},"_shasum":"920f593d1e5e2514611de775a429c0f714e343a0","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"shasum":"920f593d1e5e2514611de775a429c0f714e343a0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-3.0.1.tgz","integrity":"sha512-zX0KegbOy6DzwBiz2VUcn4/5/6WxiUy7gBtX0NwCJzc/rHpxXjGIZMU0yqF/lnixEY60pSYdPDQcWeiYqao1ow==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF+reMkHtjq+foi2w4Q8UVgjDNsEcp0azLc5hccqLeKfAiEA2GrrEPZy1z0QmpSOuZs868acDn6X9vy2xmxT+jM1TO8="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-background-fetch-3.0.1.tgz_1461791405578_0.061313542537391186"},"directories":{}},"3.0.2":{"name":"cordova-plugin-background-fetch","version":"3.0.2","description":"Cordova implementation of iOS Background Fetch API","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/christocracy/cordova-plugin-background-fetch.git"},"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Chris Scott"},"gitHead":"2e8e96b6d51a524a6892c63ae4e8e20912367a38","bugs":{"url":"https://github.com/christocracy/cordova-plugin-background-fetch/issues"},"homepage":"https://github.com/christocracy/cordova-plugin-background-fetch#readme","_id":"cordova-plugin-background-fetch@3.0.2","scripts":{},"_shasum":"6d9088339681b5709084403d7525ecb911afae9d","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"shasum":"6d9088339681b5709084403d7525ecb911afae9d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-3.0.2.tgz","integrity":"sha512-GuR7Rqu429i7a4XWFf4E0E6jqbjn1TLeuYF/B5vInaYNBKPT6ZQt+OzGklxPfboPu3XCmwOV9El2QIC6DbE/oQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE+YltoOpVChEGUxM5p1blqX66P4Pwfjsnkl/nyAKj0KAiAd2HmIwnlQwoJ8nRBABFTjp/ofmqj/f8emXi7w2HjT5g=="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-background-fetch-3.0.2.tgz_1461792153368_0.041649148566648364"},"directories":{}},"3.0.3":{"name":"cordova-plugin-background-fetch","version":"3.0.3","description":"Cordova implementation of iOS Background Fetch API","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/christocracy/cordova-plugin-background-fetch.git"},"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Chris Scott"},"gitHead":"91b6bf437de5ea0712339120dbe675ca7650f88c","bugs":{"url":"https://github.com/christocracy/cordova-plugin-background-fetch/issues"},"homepage":"https://github.com/christocracy/cordova-plugin-background-fetch#readme","_id":"cordova-plugin-background-fetch@3.0.3","scripts":{},"_shasum":"594f47b584356726028f20cb202bf77244edac68","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"shasum":"594f47b584356726028f20cb202bf77244edac68","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-3.0.3.tgz","integrity":"sha512-1Tzxh2lav0vhgh9UmnX1pcShp4DrdL20bHEBzGsmF6MqbgqdZVaq5wpOt4fE8TEXKMmXWGyui0+c/jinahKPYQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHGoHD9ZnjSGx3DmnJ6POFJtbpvAbrSyfVON/JSZ/+iFAiEA67imlGgByHo0rKqm6+w420lgfQGt/ws2xQMiZss2Q40="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-background-fetch-3.0.3.tgz_1461792376113_0.6457596530672163"},"directories":{}},"3.0.4":{"name":"cordova-plugin-background-fetch","version":"3.0.4","description":"Cordova implementation of iOS Background Fetch API","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/christocracy/cordova-plugin-background-fetch.git"},"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Chris Scott"},"gitHead":"0fc421547d5ff81e9586bc1e57fa12207da0b44d","bugs":{"url":"https://github.com/christocracy/cordova-plugin-background-fetch/issues"},"homepage":"https://github.com/christocracy/cordova-plugin-background-fetch#readme","_id":"cordova-plugin-background-fetch@3.0.4","scripts":{},"_shasum":"3ed5aed49e8a3b3c82862909fe01d2bcf4728cca","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"shasum":"3ed5aed49e8a3b3c82862909fe01d2bcf4728cca","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-3.0.4.tgz","integrity":"sha512-2bIZHJQDv6FJ6R6Uo5b7vu7zZovOsVly1OyNYxvHMJRHDPemnaEkY1NEP2iBwOb5sl9FPz99Y6Zq9WeTeYa5Jw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCHzcvYPGUtVBJFtyVx1iiRwEfvsEWtKKP5wsnDP1a+bgCIQCDaVmbrWiBb5np7V6Io/y3xMaPAv0UJ2G/Lsp10N8PPA=="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-background-fetch-3.0.4.tgz_1461922865048_0.8195802001282573"},"directories":{}},"4.0.0":{"name":"cordova-plugin-background-fetch","version":"4.0.0","description":"Cordova implementation of iOS Background Fetch API","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"b16a5238e50be3c6110f5e034785876de530bdd0","_id":"cordova-plugin-background-fetch@4.0.0","scripts":{},"_shasum":"363be3e1070e9470f98904a2b8e8f56cb451d792","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"shasum":"363be3e1070e9470f98904a2b8e8f56cb451d792","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-4.0.0.tgz","integrity":"sha512-xWzLSPhVME3ORf/Ys38C6TMYnPL0IlNBwGE621n6HA5VgspS9dsEJjay6Poakdh8tHRdZ0KbRsP2VXFqP44v4w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEMCHy/TH/4lOvaJpzResOLyApZjENUhjG3sI0WU2+3cdD8CIA308q5WEsYa4hjQTb4PIFJnjJTPhmiIvLeKP6FWMiDa"}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-background-fetch-4.0.0.tgz_1470422484197_0.13261836278252304"},"directories":{}},"4.0.1":{"name":"cordova-plugin-background-fetch","version":"4.0.1","description":"Cordova implementation of iOS Background Fetch API","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"eb763e8d5dbcb664d24db685c6a9c5271f46d6ed","_id":"cordova-plugin-background-fetch@4.0.1","scripts":{},"_shasum":"9386b70cd717ddb231441ec3931925c01d4433b6","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"shasum":"9386b70cd717ddb231441ec3931925c01d4433b6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-4.0.1.tgz","integrity":"sha512-8x/eSUJFNlW/nI8veWBmmVmrJ3VrPXhio1oEyYZkdSb/0vaWV9m+dzothzmHLGLoW1uzNu4/NjWodd+08VcsHw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGswRLgT6xowIKJ8udQRf/qRILKgwjjv0E6ON5bCJNWeAiBLj9dN3q63rS+Bg9Jj+2dOzxTQcmJ6lVjIBEU77JWjcw=="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-background-fetch-4.0.1.tgz_1491331988235_0.211971566779539"},"directories":{}},"4.0.2":{"name":"cordova-plugin-background-fetch","version":"4.0.2","description":"Cordova implementation of iOS Background Fetch API","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"b455bc1de0eade53c7e152d5b80061532d2fcb1b","_id":"cordova-plugin-background-fetch@4.0.2","scripts":{},"_shasum":"519d1baedd8a1b4a81e5d3721e2b38bf3a976387","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.2","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"shasum":"519d1baedd8a1b4a81e5d3721e2b38bf3a976387","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-4.0.2.tgz","integrity":"sha512-E4rPE6Wf1z+1TTlrpkPaQ9uKL36cetTI7sidp802vO4iwgN5yzGBg/32TAgHEfDIGlQxpjdvmABsB4b2ae6dAA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC+065ItohGyweuY29nP3iijg/wwWg8LUCDIGFmoSAgfwIgLaEAYcUaXn6sYOVezkNfVM0QN1dKUOHifunBFOOP7OE="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-background-fetch-4.0.2.tgz_1492536246484_0.9014278454706073"},"directories":{}},"4.0.3":{"name":"cordova-plugin-background-fetch","version":"4.0.3","description":"Cordova implementation of iOS Background Fetch API","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"d95357a82949b617a8270802b79cca77faf6673e","_id":"cordova-plugin-background-fetch@4.0.3","scripts":{},"_shasum":"22bf497da09a4a3ca6db1788e6367dfc79e89e64","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"shasum":"22bf497da09a4a3ca6db1788e6367dfc79e89e64","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-4.0.3.tgz","integrity":"sha512-uNmaDs1WmlXqkdsH3/C+dJFhiYlxdgtHTawcPNeo1/ov7gaJ3xADfJhTiirr3Dadye1CxeYkf4Kn7LhUuu/S5w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHDnIkeUlwVz4E118LGtq9YYYotfI/AbnCdJ+VcJpK25AiEA1EGPg3Ep2l5MokGcP94CF9U9iJ97Uup8lWKMnpUrI0o="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch-4.0.3.tgz_1499876456258_0.7555743348784745"},"directories":{}},"4.0.4":{"name":"cordova-plugin-background-fetch","version":"4.0.4","description":"Cordova implementation of iOS Background Fetch API","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"cf16c4019e44f53cc56e37e640fef79fe21544c4","_id":"cordova-plugin-background-fetch@4.0.4","scripts":{},"_shasum":"6f3e14976765bfdbe9baf01f5893387932c90699","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"shasum":"6f3e14976765bfdbe9baf01f5893387932c90699","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-4.0.4.tgz","integrity":"sha512-u5tM8lM+Do9xwvgHkqCjyqxv+3cKbtt/zUenUqvM3Fxm66D+QvNRGugavwzfEX+H0f2meEgw7Q50Se7c6FrZ6A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHMhLnXjxsLg1jaiHJyBa+9HwepQED8tkL+dXauzHnCAAiEA5i5Y5AF+Kjsw7tqp4bR5xI/SHxUYwVxVEhhc8RV0Wgw="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch-4.0.4.tgz_1499886160606_0.8629471152089536"},"directories":{}},"5.0.0":{"name":"cordova-plugin-background-fetch","version":"5.0.0","description":"Cordova implementation of iOS Background Fetch API","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"034bc5a2b3a4a8962edf134634395beed1405d1a","_id":"cordova-plugin-background-fetch@5.0.0","scripts":{},"_shasum":"cdf287d8f46ecb56dbc81b5ef2b761afa1dbbaee","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"shasum":"cdf287d8f46ecb56dbc81b5ef2b761afa1dbbaee","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-5.0.0.tgz","integrity":"sha512-auuyLfalOQnorHdzUWrBka5fw2dsy5QSo8cVQIQJ6UeTDO8ULD8QXW7zOKDogy7ldyHyphRK87SpxI7FtTx5Sg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCPknWyIWbbyC+lH9REdMA9Lz3Ei14J2sBkIytoVJE06AIhALlkGctwoB7yT3HSyWzCatZrPpNCk/fY3nvA3nekVNd5"}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch-5.0.0.tgz_1503326324397_0.12132194126024842"},"directories":{}},"5.1.0":{"name":"cordova-plugin-background-fetch","version":"5.1.0","description":"Cordova implementation of iOS Background Fetch API","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"769855d19a9ca7293180a48d5d3eee0e32b9b73d","_id":"cordova-plugin-background-fetch@5.1.0","scripts":{},"_shasum":"e0c98dc5fc0b928cac0ca65cfdc214e7603baeb5","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"shasum":"e0c98dc5fc0b928cac0ca65cfdc214e7603baeb5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-5.1.0.tgz","integrity":"sha512-NKTi2/PGYf8m8TRgj7WbqvvuxoF9RWg7cbetc7UBuylcyHd/RXAjb8yUh73v/9A/53R7VxSWH43nwiKxC4pLqw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDZ/cVdQ6edsai81iatJwAwqrp9MsaOL4At9f88YJXdFQIhANoAsxyeMBQ5dJ2gfybceUn55XkrdTeLkwfqxXKzz/nZ"}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch-5.1.0.tgz_1506054837363_0.27507083723321557"},"directories":{}},"5.1.1":{"name":"cordova-plugin-background-fetch","version":"5.1.1","description":"Cordova implementation of iOS Background Fetch API","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"e4581cc8e62e17ecb11524f231414055d5916b46","_id":"cordova-plugin-background-fetch@5.1.1","scripts":{},"_shasum":"63bfb155b8460fa71e13861c896172b516c63d5a","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"shasum":"63bfb155b8460fa71e13861c896172b516c63d5a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-5.1.1.tgz","integrity":"sha512-7aaMP7XlZu2KTtktWgoAeuWc396VL8PcZK+ieDXwUimAqGGMA5deqe1/V4RsE0EdtcxBNcW7oG6bEpNorruEqg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBbqHZR98HpQobRydcuEB/DoYSPUWbDGNK2qVtnk194YAiEA8457magX7kt6zsTVydjTRNfjN0b1Eqka9Y7mS9IyMII="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch-5.1.1.tgz_1506344839253_0.6389335254207253"},"directories":{}},"5.2.0":{"name":"cordova-plugin-background-fetch","version":"5.2.0","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"6783dd6ececf957cd76d2081edafd5173e59c530","_id":"cordova-plugin-background-fetch@5.2.0","_npmVersion":"5.5.1","_nodeVersion":"9.3.0","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"integrity":"sha512-VQUfn7NBEOydqkGo/MbZ+e34S3ypk9wZ4iRcT8EKH54YVS4q1apXJlZpE9jmGPkIjNwd9FzfO9iDXrfmpSsd4A==","shasum":"465c7c4841ec8cbd237915773367735924c96550","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-5.2.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC9J2ReM0lT1MyoWQVbhmj1d64AQcuqm2hmatiY8AmVjAIgRCnoHlKpC1kkv//La4QgUsb97kS3Vf7EmL/+wNJst3M="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch-5.2.0.tgz_1516049760449_0.06024759169667959"},"directories":{}},"5.2.1":{"name":"cordova-plugin-background-fetch","version":"5.2.1","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"c47e5f583d00d3f11e84d130a577f856e7bb14c0","_id":"cordova-plugin-background-fetch@5.2.1","_npmVersion":"5.5.1","_nodeVersion":"9.3.0","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"integrity":"sha512-xMy5GhkInyPfbG9m4pEUxUdCOugrcrm0EYJU47cBWK6+HWof0n9qw14iPvkL+YvkeiUbLTv6U0EvzTmkHNJJTA==","shasum":"3920ecf9b34fa7f134c69729fec0c22cfa8dd92f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-5.2.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQChULP+nyMoXO9LIkd0KD6IuV06mUt08pKZk3pUL6FNXAIhAMPo85J7zm9Kf7KnwnTwcKEqzsHTiKDxM+VnFDLR2D8p"}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch-5.2.1.tgz_1516715971303_0.002679206430912018"},"directories":{}},"5.3.0":{"name":"cordova-plugin-background-fetch","version":"5.3.0","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"c9340c84103c3c16c63df5d69b4d99f8636cbe64","_id":"cordova-plugin-background-fetch@5.3.0","_npmVersion":"5.5.1","_nodeVersion":"9.3.0","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"integrity":"sha512-SCPYgERg/yHwXX5XXN0GZuzdIri/diKYVnCRG2B/Rv/BUcLFkIyW00TcBxWkbdVoD/HaxuepmLP3uIesXn37Jw==","shasum":"c9c1f6602937d4bd399f1b2de0a6ba8548894c50","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-5.3.0.tgz","fileCount":31,"unpackedSize":318540,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH8MT8Pz4nWOFUi3j0GzUBCKuWFgOlUZ6wLaavaqmDwQAiBswlI/sbvEOMl1BbbGbSKGcCKGzNiyzwVOjxM9JhqUtw=="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_5.3.0_1519834309490_0.2871870642140597"},"_hasShrinkwrap":false},"5.4.0":{"name":"cordova-plugin-background-fetch","version":"5.4.0","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=8.0.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"53aa7eebf8574d870acd347c35baa10842756ce4","_id":"cordova-plugin-background-fetch@5.4.0","_npmVersion":"6.0.1","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"integrity":"sha512-Rxi4TEIT3pWBopLmKI1y9TTQ3lzsLQaZd4nQWK1JpTbsnpOfDJ4Bpq4NPOlcu0eek5ByEq+RbmxXuuVbCqkZsw==","shasum":"56f7657e19142486451d0e7972afa14b4fa0e6bf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-5.4.0.tgz","fileCount":31,"unpackedSize":318941,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/F6rCRA9TVsSAnZWagAADtQP/2/bfs8MJL0kkEhrOGfN\nQ7plLRCpsDa6MbpoqcptG3ywptR5pg7N/x7BU6t0YfpaCDZCO8InZ2NNf+tY\nPlxqksCkaKi6FL/L+0UCUQTrT4e4tjUY437xckPwhwVFmEzPpC8fO6gKXcFk\nUYo6DtwXzT5uVbowgoFM24jKoyoed5GWUiAf1FrYV1Q4sdAGp10mSWCLv4ph\nPxuWOHtLarwNduslNkFTWrVhbMU0Rg5ZxwXKL08iPSDmqQSpFX/IcdgklCZ6\nvnEcxXdl2AA1imdNzsiTJsdJdGmcuTL+vYj2KhTaKWmZlC/i+ISHnDzkNACZ\nbCk82QLaIea2Aoaf6Cbvuplqf1Uj2blkHaYtJg2cetUKKKlyP0ThD27wcs4Y\nqGweAFDbXam+kWr85hVpui7ItSVYMxUT2yL8IoRlrktK885Bz+nFWlIN2Fjx\nAkyCpQYoXCtR19IQLflQLroSV2YzNqp0XLN+xEWf5mxpK29e5vzbsneNmuwd\nsKiIsWOwneM2Mo+A43PbxgwEXhHg/f3KUZjlUzg56PtMEt1EEZsD3+sIczlz\nG/ph+eprKkVCWU5vAEk1e/RbYHj4GNLpLqbAC00hcQssgbx+mmmEAN1RxT3U\nPhT7TOCmFlET+dWx6DMEMJmYNT+gLQiIremsXJM+YFUFzX+rUyB0RbBXld+v\nE88Z\r\n=Co+O\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDjORBzZpe4HT4cbhhft21+e3K8o9l3HFQpF/klAfZP2QIgICrkni0yagK4mW6oQ5qPzeN2aCeDhejmPF9HyTpW4+k="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_5.4.0_1526488746176_0.9713430895606625"},"_hasShrinkwrap":false},"5.4.1":{"name":"cordova-plugin-background-fetch","version":"5.4.1","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"59588db57f2dda56ee5abcd5d2a6d74760c916d2","_id":"cordova-plugin-background-fetch@5.4.1","_npmVersion":"6.0.1","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"integrity":"sha512-kI5JqRoVh7F4RVslGnTWuJ3OVx66xgGFqiQAeUnWS4L6ipJKghSxaCJAufMLbZDxfUDEArCFKp2+RbB0/Ntecg==","shasum":"4b576826b84b9259d1c4c9a2616e7ff6b164f86d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-5.4.1.tgz","fileCount":31,"unpackedSize":319044,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCDjSCRA9TVsSAnZWagAAB34QAIbwDh4/5EBJZaFS7c6a\nV60/Tl3yTZ1NrEXuitDhYeacd1qpqoe+PdIPweu5OI906VLYsIVHNISNIqDP\n2zONaGDlwFUQK5697VY9bNVQsUrHZFN1/WcZiAHgnch53/tXKXAIBBEvZJMA\n1GTEUOVVE9ugKiaabQ4RvuAaVc/0JG+Y7aWO/KkMIpwKJRbd75f2iLBpGgwG\nSIMOEJiuBTE9yB6ULK8Ld80pNKlyWB3MUzC39x8TLJnS1PSjAgCL6Dd8XQim\nn6/+im40Gdr/WqnHkRrVoh9SkPAdWXBWQB4UmnXQt0MWXMQPWN3M8RtoJ6G5\nUXLlHzeumJ5IOc4JTo6qSQnA896L8GNKzWztZIbcCQsw+RUL6569Rs5WHCvs\n4T2H3/Vud8rVwSiQr7Y1ou6oWDN4OKbbzHF98+D8ezr4JPir6jMMKbLuskwO\nTlP+NunRTMfW74F45v74g5Yr9bVEBSH9WZ2XPQ5FwcJ+mJKG4+giltLoh6SK\n63rW0iQ9qPw1BfDDHjR9F6IsECxivIa7yqHpAQ/PEQUkmCQFAKlYAT4uOfeX\nFIQW55DHp2VHYWHv5FHZoEatwCQuc4h2uJw2VtMwPSq1ZuAh35mSs7kc/Pnb\nGLcLjBevodFfeJDEnx1OSy3DN4cxOGldJjTgVk3Mwjf8cd644wazcFXeG5O/\ncAup\r\n=AiyU\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICbDNha63z6c357Ej5AFVXuUgTGcOJEuZ+5u0Fmk9FgLAiAmMGI+m+Fq1FD2Vf3lQqhf2n+vAxhLk6N4gCDMlIBg+w=="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_5.4.1_1527265489609_0.6931102769859603"},"_hasShrinkwrap":false},"5.5.0":{"name":"cordova-plugin-background-fetch","version":"5.5.0","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"437a4a42e72baaf7f721bc2aace8a4c25f90799f","_id":"cordova-plugin-background-fetch@5.5.0","_npmVersion":"6.4.1","_nodeVersion":"8.12.0","_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"dist":{"integrity":"sha512-HozYIDaBRXIVpZ7ZNmgE97yO6CrJA7esHV1NOsAtdi0UKVxNP4FWKHBKWMIKSBIg+7lc0zTgUJvksREUIVAKbA==","shasum":"bb071fd95e69df9b9a81bd6dec5111534f08a1cb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-5.5.0.tgz","fileCount":33,"unpackedSize":419209,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc9r23CRA9TVsSAnZWagAAhuYP/iMyl9Vw+bc2duGP4nv0\nb8VZdYocUWQIYMEFd3s5EG+SOTDpWm6WZVUym6Bi9uq3dhFWll/RJD2qeDom\nASPB49tcSBYQItRio1CxUBqoLFnn9CE9nV/3uJuToK76l9V10a00nN0wOI57\n1q6AzyKTo4zc28L8Ta8sgeWLZR9zU0iTcqFNFT6sxhh1h89J2jfJV1LNMh5r\nqBncRPj6T8pVZ2YfrcljEQ3b1xjumojoKKC1LbQY+9+sWyPbQr5XFMYG8b3P\nMAQHiwXW1/Rh+PB2xi8LZ3wlbt+xsAn2K15+eLucKHMYYDedSfPhalxEHOmL\nC36VJBRGWH3XY/6A2WzkKtUyrJzkO9+DYSGo22R4byTZls4QR3/IL2a0ANFH\n8AxOrd4i/AHDiZ6wfG6ExxqvkMgAbo5r4M9iLBgdZCuPS//afxy0A4yNw3Un\nd64MF9D9o6dpu79SpBzJdGZHnvLsP70/gY9gMsDUQjguK6tXt0sLkP/9exGd\nCyaUlxTPgw8BuxcDjT0PE6Ier7h8LtcRZkEicT7JfVgyS0Tc0PJzX1+l+Fg+\nsQE67Gz4xfzGmFgq7xsno6qCGJA9j9YM+lFV4JKSA0Y/EQkPXu6u1hFoRlN7\n6tHw/D2oRO5DHMELAaobrSeEbORrfyBnASzYM9ME/huNG22v06EowL0dn3sZ\nxPrN\r\n=ovH1\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG+1yoWiXhVR09BQ/dERPB8ASy/kqZy+2xR8ZNVQ7K78AiEA13IKe9V2P1T/EVLMBL2cJ/0uyTb5/dKAWPsn/6lpz+s="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_5.5.0_1559674294479_0.5252983465734493"},"_hasShrinkwrap":false},"5.6.0":{"name":"cordova-plugin-background-fetch","version":"5.6.0","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"32bc1d0dbf8b34b6128eaf770bec25385ea5b812","_id":"cordova-plugin-background-fetch@5.6.0","_nodeVersion":"10.16.2","_npmVersion":"6.9.0","dist":{"integrity":"sha512-xe2s6koSTIndA3Oy6L+LZrB+2LoMUDdfXPVKwTylTzOOU1+JbA8iOC4GyY9+Mbi9USfSnfiQc4gmTzUKjQ0/Qw==","shasum":"6bf618fae77c03a56b725cd56da245ce4d2dba9b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-5.6.0.tgz","fileCount":30,"unpackedSize":433109,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdXtEDCRA9TVsSAnZWagAAXekQAILTVb02CD8mee3xy08w\nxpcdA8UeLhfyuD0yMMztsYqNQZjCPpp8SBrpiWoOnElQtyj2qWZtW2zSgzsU\nbPItVhKdirdvIdBq7uSeLx3Ffbjgmrlojl3ZYdXMYqGR6MU8CbmQeZp8wL3j\nGQ2qBgb6tpvqUQLTjeYUU6mOO9ElV4UPgd/8CcMw2wqixXTrb7eazORSYl7s\nEDJP3TRpKfrufGTKI5lGuIPhnIKStYhUXupJM5RZ33psOHQMcp/KXy1vdqpv\nlUGf1p2KAKLi98sam58ShmSivPSRC04K2nYit6UzDbWDPo58qdVi8k3G+31J\nANiX6zUgMfwKi+gecRuW1X3snhVW+NKetUPgmUEakY+n7xjRBf16WbpsCoJI\nYlS0uzn642rSV8+XO3y0O27FvFWV3bJyPxz0+qXoza8puSwX17BZdNrR/YLN\n41PcFRyjLsAIE+bxbOF+0nszheQXkOneOHShkNik/RdXzb/6zB0yL9+QCSom\nTokW95li46dQv0YuJfqSlR4zrNb9/OMUytqZ9qn2tf5+ls5LQu7xSD5S8q3a\nWFe2T12Z4Jx0g9qSs5U/gAKdNGoDygysq7E6mtmqw0UKTzV8Be5E4KpAAoXe\ngcmuyrD256rPnWT4Wreqhf/8hB6/aQRLybst2jf9oih9HcYcXlK9YhnH5S7A\n6Gwj\r\n=bTwv\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDifJB1X+CSe21i0SQh7+o+iZ27njuWde5umlG73kOVawIhAIq5lFEWiaP6lelpkJT7quNGxibNF0nd+3FuvoOMYuIs"}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_5.6.0_1566494978640_0.6571688623202523"},"_hasShrinkwrap":false},"5.6.1":{"name":"cordova-plugin-background-fetch","version":"5.6.1","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"fa1e3a063a798b5a2a4ca664e73a09ccba178fbc","_id":"cordova-plugin-background-fetch@5.6.1","_nodeVersion":"10.16.2","_npmVersion":"6.9.0","dist":{"integrity":"sha512-/LZH9s6k4G5orlIVR9xRhqO0bHc4wVAN+1hH+wSwZQHZ2kv3v5rm80S4jnYuai7a46P3JGiOzV+Jow8ekuux5Q==","shasum":"d567bc3fb3e6293b9b749eeeef7e76c5ac02bcff","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-5.6.1.tgz","fileCount":30,"unpackedSize":435499,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdm572CRA9TVsSAnZWagAAkUoP/2uzunV6VDwRpaIZW7xa\npO2VqOfPIVaYESp7CdJmytlBI9dCuj0otThxHAz2TkrK6IbXjIR/xRNcYbDE\n5oJWzJNsyG87AuSAEytZBnPTYuzXFhCFzNCg86Zgi8mbc/ABwpMtyJMLCJwi\npxuNr4U0g4g69dvl+RIgqXWNueSGmD0eHIMtAhPKE4zHK3CXdXKBNqpYqfw7\nXaVfUhr3zIaT7FzULlytqo1G1Sa3wgBf1+MBrJQPBSufN2581vqiP0velf/d\nEIabb3qKyY3zIN5a5QgygfGsgJUlpks/zIfl8OufWsXGS9R/Y7aykfV5hfEx\n6lEzeP9MLfgvsbKai+s+etWm6mwn/20eMsGOa8nYhYSowZ/IFGEYBWd9XexP\nIu1afCA186qcvDxIfcLz+wEPrhdkWeGY2AclzVgPONuotppfQQKmCa5hVntd\nn0eUe11w3DKWXPd6znoD82qATx9vvsWJpx5wYJM6uOXx2i1fVKcwwZMWuLvL\nnV7w/Bk3E1Z1bXUrGAmvLUDHwJWm+ybCoo3NL1WI8pTB5cQO/HTsHb1yUdbf\nzs1wqzLR5fH1nrOuP60GQ9L6HCXCC1I1PAPp3H4hWhmvUUfJs9rMm2mi79iC\nIc7HZPAT/nD/pJL+oPgYCWooF/6mjXwAq8RGm5RSuCMpkaFJ94AgauLXyUYk\nN3Kf\r\n=oRm6\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDPH5O23tBjQWkBgFI/kjYJkYTqeXijRj6/+1v2b0mPIAIhAP5jhxmZRmmvu9boNnmGJ1NXgukyg6xW7oCT1GpQfVXZ"}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_5.6.1_1570479861800_0.8233715138908158"},"_hasShrinkwrap":false},"6.0.0":{"name":"cordova-plugin-background-fetch","version":"6.0.0","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"fa207afaf1867cb7d6b10d02a061702132aa977f","_id":"cordova-plugin-background-fetch@6.0.0","_nodeVersion":"10.16.2","_npmVersion":"6.9.0","dist":{"integrity":"sha512-3C9DNsIXulGqLJy5L4jL4ww8XlVPSLi3sQmaq8KfQdGhLVVi+Fb1xO5tzwTiPuUs6jDf7U3pK/s+T8tpXgwzxQ==","shasum":"22a51809264e5509759624b0976294c2a96723af","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-6.0.0.tgz","fileCount":28,"unpackedSize":1108973,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeTYunCRA9TVsSAnZWagAAp5gQAKKtwNhxvKIZxZ6xvv2L\nJ/INW40gL1U//kO9zSRhXkcmZB0nkriKkWZ8vJ6lxJW/IZK+D9pXaQg2OPOZ\nwUxt30TdSYJkx25Ux4yNZgwtswlHRTgzUnbX05xAhI7GxiYN6OX4FtVOR4CI\n/0Y1wWXHHCh2u2SrDWwr41BlbYO4QeusXOgHne+GHoA1MOTwaA0oxHa+GbFC\ndxn9mW5e/Jpm8ZrPYlmlXo9nY06YMAF0A3Z+k4z5+ZCJzG9y5G56Szp9Gor5\nviUTYVeqfOBxhYyNsGSd9B7qxLtz5gHbGTtxhixXIuFnHl7nTlwf365pmnl3\nsA7QXDepsDE7I/VX77dnLyAeH1KTRuOv3/qAK9vVNjLE2eXRsE9xsLRx5+Cs\n1ZAOvTClCnP9kVJQzBC23u6s7zDM+6BjR9xKK62KqyNuY/1FhwFBmNnwftIh\n26mYS0K6DYSvXme/nZjRkwGKKSV3XmPGlEWZqam0FAW9AzISol36JUkOG709\nDLwZd+fDZE2RRdUdHyaZ2PpTMcbBW69Mz+O6S1DOdcqjLbts2FA5hm58YCIB\npWqySCqKqeRIPXzCZo0rE6ikjhaHw4czwh4Zc5gSW2oh9Zdx2JaB2XrzsHCm\nlaWG3rG+loTa/wy4+rwqyZ0afVK+Obfp2yCFKV9LiGvXgKl0EHLGDo+efVVs\nStqO\r\n=zHmk\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD9O3YMWkjV+xl84StvnsmLmZusXS0Xf95BexhZyUDrFgIgBHf0Jk1+p8XGAUQrb+ENxT18uOPzdePO2nuHd/NUCh8="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_6.0.0_1582140326897_0.30442254039343286"},"_hasShrinkwrap":false},"6.0.1":{"name":"cordova-plugin-background-fetch","version":"6.0.1","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"21ae64f573c66a9aec218799b191018af2cc376e","_id":"cordova-plugin-background-fetch@6.0.1","_nodeVersion":"10.16.2","_npmVersion":"6.9.0","dist":{"integrity":"sha512-MHlAgwJ6+ooQgjq3J0N4S86StXCrpK4SC9hzzMu+Nzptw5ckiJIDnEXIEeWRKvhBUNiNEfEXQShEN3To1JyNEA==","shasum":"1e369bd07fac7bfda77ef3d8e3e9bd4d625b388e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-6.0.1.tgz","fileCount":28,"unpackedSize":1111316,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeTvEyCRA9TVsSAnZWagAAuzQP/1G1Kdz3iLugAunImEfV\nkQ2/h6PFejggn95oKGzIH3Y21GAhw9656esc/GlFVn/lfkws3PSNTK3mgayF\n65ZQLBm04BPnJFukmR9Kn4rumMcLJFant/GM2FawnLoQX22bTZ7FCwFlDypb\nhn2mL3wInuNXW/JMU+7LONrYyhzbl9v28QbcjcgtoLzDUL/Oci4rPrbHupEO\nZN19hX6+AkDe+mwYeh0k2xZ9SIhSw9P2pyONGLdIZJ77R4OT95wHfJjKZJhb\nE1C9xCMZlWE1Mf5TKj3i1SJByrvzHxBjUqAUrc5fV+zq7fFJZDpaQF3EMkZU\nNugBddI3pfKY7GdImo6Pn/bZwvCwXsbugSZusw4CsxLcFeZNC2tZYE1aGYGs\nhwIi9mtWbQ3wdFceNWRLl0lrymkx65MPU5UH4AnQyKa9qCpMpWBIu/cXuQY9\netFFwB57bLugHZpvUHDyvUPpAqrE67n/n0wmozLD7a+0gz83yWnDzX9+QrV9\n7HiTkTnSNVIc599dxmeV0j7o4sfBIAkPyZPbGObJbLDLCN8JWUCVMH/XFWDq\nXytQVe+V/ae57unAAJlJiMmQsH3YY27GFds2Dl5jLPN252Xg15oimzq0BHqn\nVFBXEwO/UoEiZ41p3UNkxTgsbquPlP2Ff3rehaMlDqMCl9bQuwuBamx7OrCw\nQzs1\r\n=S20y\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDBoMqLHKnEsl3CTD5yw9Mllg56k0tG5dyyufaXz4G7zQIgFGy9FNgK401uwJm2s0ar2w+tywTSn7YrFeaXqEQA1dg="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_6.0.1_1582231857703_0.865139078125235"},"_hasShrinkwrap":false},"6.0.2":{"name":"cordova-plugin-background-fetch","version":"6.0.2","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"7ed805f43cfe0aa6bc93905c5189f8871d35cccf","_id":"cordova-plugin-background-fetch@6.0.2","_nodeVersion":"10.16.2","_npmVersion":"6.9.0","dist":{"integrity":"sha512-mnjH+5n/AXtQ2eiAmWhDyQ7BzjGEsGYl+SvyPKpk/DdlI/1n6VE/VbhlAMnTwH4TQksV5PqCBu5+g8iBJwg1aA==","shasum":"d845a63e9adf2b597544bdd21e774f17a2309ad3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-6.0.2.tgz","fileCount":28,"unpackedSize":1111382,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeUBlxCRA9TVsSAnZWagAAGy0QAKIi+csvuPVgiT+i97SK\nJj9fidQcNR9wfhiKDOThIf7PAOneC70jqNsEQnzVUZHHabmp6wAC+VFxgSrI\n6iZ5HN/qlOnlZhdtgwjbS2l0mvS62R0jn2DvgHcsbOHNUHtZxPt73fnCKsxh\nIfdX3D1GtIDhEyazeI1Gov+GbxDDkA/JNqXPUzo1YWe1OcdT254x2BcWJvsl\nM9GIbq8LMdDpJN6KbuEbVbvZJgBVInaJaCFf9rGhk/dGjMAaOApUPaQ+gOh5\nkSrd5iEEIaL7O63ue9RAVCWyHHLyFj+l53DfLE8pEeTSRQ+7ldvAJLoNYWZr\nSGKsjW2LBJh3/sbFoQyT08S19Cz3muU7uT1Maw85bVwytpxriSVJOn5/6sda\npjvj5ZzZOaXtnjeN697tMfmA169FALFAC6Y3mPkw/voSY+1YlSPpmMO4iZSG\nupVCqMOTUSkt3LQMEoVE8uaXbwQJjcmBEc+/lkGa0xp+AxU5K8sqwo1IOpCT\nUvU3ycXYryPxdJjOhBIFI0PFmHyr96b6/B/XsuasHdbVQ6FUvxRH+DTSl35v\npVfnnZhighfVq4WQP+GIaneUTFkafXl/2YhJmo3r5FFYCrFJM7QxBDm+Hkn/\nz2K5QyEUxM9Y8pz9hapiqt93RBByXBUKq8AR1FHhN/9sONqg33tFoEuqwGka\nKgxI\r\n=NapS\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDuHO2RsmjKjRl2z1D0rmTL0eCg2ri5MkwOGkG07iZ0+QIhAJXycStVN4LXAfJJXytxPaXEpasoL06fOJr2CkYcakAn"}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_6.0.2_1582307696564_0.6366300332097583"},"_hasShrinkwrap":false},"6.0.3":{"name":"cordova-plugin-background-fetch","version":"6.0.3","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"19a2e0e60bf5e3bb114d52abb5aa9a5c3135200f","_id":"cordova-plugin-background-fetch@6.0.3","_nodeVersion":"10.16.2","_npmVersion":"6.9.0","dist":{"integrity":"sha512-q52UBO+U2ptNlnONyW3iZ63ucfJkFnTg1cvgIeVd3fEW5zLLLYaC4OdX/m2xh/myQy0VjweVEmNNZESk7z2onQ==","shasum":"d3c82722eb0e4e59cb114a3ff2fc34904aae1a93","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-6.0.3.tgz","fileCount":28,"unpackedSize":1111494,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeWBSVCRA9TVsSAnZWagAA4IgP/i/2vUEpKkFTaGjZ6t+W\nG62TSe7FVXJlXOk5QbEVJMJhjaT4GlhTkVa1j2hSzCX+KkLaXdaDRv0oyRjV\nJm1tns6imePs1wGWgKEOMFZtxwnX+xnBR94JAmLYZYh9hKlQSNL3aiI0az9m\ndHNvedlriNcsi6pnc719Qe0R7Mvrvu2MJXMq2+vcUNnGHmpXIsUNpJsQa9Ye\nOHz7qyffDQBITVXFxYDDmHTzFFCrbrF/UDBCz6KwCn6im8TZd/lVv5WNjqAe\n7NPDl/dqG8/GFiUSs+FYQvXZuK5QpAs/Ndb8UfNemnXmMCoKfkB+VB7dHnV2\nNCLMAY73AH1oNThyPrv11jbEnqvG0iKoEZmVR4s7anqAAk+DrQhchHDPS9Dl\nvCiShvssA3qc6g4ux1VuyVsq368QEduUvkVLL9Mh34LfWJUtk0Db3o4XyTEc\n+LRgpH8U8X1Ca1MxrfV4N3M/0KWkFiIsmdUkr6mQNAhavJrYcrLnYrlCLTd0\ntTIBSrwZlHGKHvZQK581xSus/iUb4XHUA2W+QpcpHFK+wEYfCWl4RLzkbd6T\nt2qabeaD5QB2EvGZ7XKAgYqaYWBUgwmFiyGJFU7Tq3z5KDx7bMLQLZ83aTxT\nWxyeqoG0IF5VgBdA+r7xN3IMyrKdUiW+JCf30ElROLuTM3irlU1FA0Nfx7iN\n9Q8c\r\n=xHEx\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF2lBqDgGHmafv+fMDYSKN6vLJxarC2KWDfPZAqjbSlKAiEAksI4Bt/lSmtocJvIC9HZNJqhKRe8nyRwrgQKr6vepIY="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_6.0.3_1582830740829_0.6388050687470832"},"_hasShrinkwrap":false},"6.0.4":{"name":"cordova-plugin-background-fetch","version":"6.0.4","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"2567651b57d0d1ec9e1e1661c56ba2d2171f1c6f","_id":"cordova-plugin-background-fetch@6.0.4","_nodeVersion":"10.16.2","_npmVersion":"6.9.0","dist":{"integrity":"sha512-jzZJkSwvBaLgKINz5op1aa29MjkVlC51IWXXmcEXmsfcZpvFJppBe2BGrG6nvsL8D47MSa2RAooGz/IgGuWmZA==","shasum":"d9b82473e796649294b1f4ce9af4e028937dd469","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-6.0.4.tgz","fileCount":28,"unpackedSize":1111999,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJee2goCRA9TVsSAnZWagAATZ4P/1Eu8nL5u6kRUD62rkUm\ntpxt5xQdWhrwP44qczI+ldvaIL0SkFu2pcEMq2w+2qSLlToAzRZZaGWNQG6+\n7qNJU0D84RdqSF6PImRol2YDpY6JsamghqaMpBRyA3qreAamjmWJNl+NTq5T\nyaxOQAeAlROyRsqIaN6+bZQcLHr2597dFDp5mi/2WSgkcNNpvonbuVoiAGwc\nfifxrpy2A2Ak3lZkW8j16kxsIcSIEKYkjiKy8nv04lPd3t0QhXX4Ds2FUIBU\nabk++435LPKqvzOK8Y0EZLQBMawNkfP5Cy+JTqo8Haco7For4YYG4zRB3kX1\nAMqHsU3HTysLbhxM4K3Ba+ZmJBIy4E0fs4grS8WAk7PVKj1jzVU6SYCnXxUQ\nFLsKT10I+i5LI6NJULaVVn23eJLd/UAGmOAnUJH2kgeR/i40Vz1+XrUvYeV9\nWqabngML7uqbq15H6KIBe9bOKGNN8wV9YVkzuJOHvtKEmE/5O70esTEwb9FF\nKFJcZok3m1A1fJY3sh/ScHgOpcUfQMYxOirXLKyNYSCy2OJjAgCmjlajB2QZ\neQtLJAUxySlipwGf8+fZ+5mUnbWzKjC+AUHYSOJ2UMYskV8q+3OIZPmNOdm+\ny3SOgJ8bzXRh3TwXSeSghqLlV0MeUPcdJkIcAW2UNDExsFgX+TbRll5k7Jmu\nqo29\r\n=X7u4\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDU/HfvPy5Z5D/VxjoZfrxMUbCsW2Et1XpSltov+IDb7gIhAJlg/qIDBkD8V8OHiRwnVTVWKEvOpOfH0w1ux4N2LNcr"}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_6.0.4_1585145895566_0.9925588924162871"},"_hasShrinkwrap":false},"6.0.5":{"name":"cordova-plugin-background-fetch","version":"6.0.5","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"3c989c54fd69e535eaa997376de75d5c1579c2f8","_id":"cordova-plugin-background-fetch@6.0.5","_nodeVersion":"10.16.2","_npmVersion":"6.9.0","dist":{"integrity":"sha512-j7OqDNGkvKWB3r/VSJHw0GUSJkd2gO8sjygdBoBL2Ca1kWpK7a7+pnju0blSuIf/uoqXVfrG9gAx/sA6DKblaA==","shasum":"2ed1593ca14a929f692e1c71071ecac807072818","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-6.0.5.tgz","fileCount":28,"unpackedSize":1111499,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJejzX8CRA9TVsSAnZWagAAu+oQAIPS3Vq2B4ACfdEDmFqy\ndhFOL/knbhkMyz4rmjybCKUIcr4rHXvCZt+hKd9wttX1cWwjZYk3gSibOvp5\nBa5x+TBztmlhgEG7cUI66H7j61/Z9nC+yoZam54RiH82N90/l37mVS/9Ira0\nBZ5RRE4p9Sn5ZhkB98wiuzo4iUVxOI61TnJn3QC2c9rqcUgoHF8naX/6B/2y\n5iecrNLxlQPYR0Oj1v8CHgzx1hsgG8mWSiJed4S2ke/0J3vT/OT23rVaOGGh\nQw5LMP8QJsp/w7RtAdzEmk3gss9tuSQME3VTI2qznaxV8OdHYPh6eTHgiEYe\nR52DjN6NtzpO6wnjMXP9kpS5OUhkSmMOEkGKC72Lc5zzx/pG9q06cXVjsN+6\nNVeZfzaGreIBfIumrIBjClQlVS2fs4r1p4dObh+56Dv93uxnp+UrQ+W+P6e3\nr/MziX0RUY0BWz2oHTZx0/Hacg+bLO2HJv5GJuQ9jpbDkUQ7KXdHadIpLEDg\nG28hpxjEefXf/+uMBcPP2hpC1dKW+3f3RU8a6iZpxpYKFnkFLyNOQMP6xwXV\ntSBeAoeIZ8l8ImyloEnntIiB8vpXHftlt9Njd/B8gEU+OM+1jyIVSB3e/LBy\n8qYiNLBrVQIqF4VJZMyALwxNi7ak6+CbXN8NwdOBP2NWv9wbGHG6noAHJpl/\nA5Mp\r\n=rj6q\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGqkzj2YKoOZw8xX9UbpkBKMUIX3lXPNT21XEB4dDJ19AiBsXi6/K5T3sp1f3rjO4fe3FsvfZ8QXfd5UfK3HF8Cqqg=="}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_6.0.5_1586443772069_0.036866606238448396"},"_hasShrinkwrap":false},"6.0.6":{"name":"cordova-plugin-background-fetch","version":"6.0.6","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"42f2340bf95cf203f28943d26c3e633e04028928","_id":"cordova-plugin-background-fetch@6.0.6","_nodeVersion":"10.16.2","_npmVersion":"6.9.0","dist":{"integrity":"sha512-iLu57ynalfdmLMq4yxgOSImbdXizmb7RoP6TJRVjKKa18Z4cs8FMlnwy9rNGBVao3XUu35g5Bdl/ZdwodMwizw==","shasum":"a8c9a9d9ddf63ee8056b1d023931bece16d917b5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-6.0.6.tgz","fileCount":28,"unpackedSize":1111827,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJej1wDCRA9TVsSAnZWagAA7C8QAI9QRt3Y+aG4c/Xh06D2\n+2fNX1OHP5DcEUiiAmYo2DVcPdCIuDd8duwPQUW1kgbsCWN/wqmEjqQm+kA0\nNigLEW1GeTGSploYBeBSgS6+MS6vxhfcovrS/HfVJtNl688viB7/JHS4INuM\nY7deEJ+GaeNqn/cJ2jk9fvpxWcbGnXcS8XD8YZvS9Abf49gY/N4syKlNPHyH\nAKFOC3zKwEVoBBYV2UpvlXY/IiymkCDRPL1hhx2EHFcUyn2OTHdEwqeUNRHH\nes05jikbafOHNhZw6CvaRMKMxxJRF0cynwdnzwbvsNcRFeohBugL6m5Ev6OM\nr6NsW5Hl5/q9kVFsFM9VxxnUuEo89GmHXkpWzkdnkmgDjQ1e97qkhEVs5tIa\nw7kJ/Uy7eziMLx+kaJ8z/CTyEeI3pZ2bUaJZxYZc90atjW8ibViYcAi5t5QT\nX7LFrFOCwGq0xbabYe135SvcmRLaQj20L933hFO1L1QRekA+nV98rm6IvsJn\niErFEEuA+Q5eqQbOe3+gpEN/aLzwPj0aakZRCsnkxQ/Kfergn09qgUNUxlsx\nh2h3VJp0tCDzpxS+1rhYP8L89/ThR2y1pQQr8WualnbSov0QyA81MLN098C8\n2x2ZMVZUwsizrN0e8O845sk4PXWCzTGwEeJEjhTv3m3JGOcIufHBTSwn6XaT\nQGhv\r\n=+fsf\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC3sCqov7UrbJY55Lj8coJi3Y/S6PrK02kdcko2u+MTQgIhAPvCKTItVTHvpCVNKaN3zIZPPq2ie8i33FnlzCiicO3m"}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_6.0.6_1586453506705_0.7954833677976105"},"_hasShrinkwrap":false},"6.0.7":{"name":"cordova-plugin-background-fetch","version":"6.0.7","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"c688d9a9165389bd78dadea42763128d9efa9800","_id":"cordova-plugin-background-fetch@6.0.7","_nodeVersion":"10.16.2","_npmVersion":"6.9.0","dist":{"integrity":"sha512-w7JD2iQfYClSt4rya+T0ildHFnG1UdTkBwBUlzb+xzPJr4BlgznK+MbxNH5SXe3VhhYGGEnKoO8RoTi2Q2mhGg==","shasum":"6a60348779eb4e00927e5ed63d1a15916a76ba02","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-6.0.7.tgz","fileCount":28,"unpackedSize":1116533,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJevB8VCRA9TVsSAnZWagAADsEP/A7a9p/W8mktHwR0XntH\n3dgI1p9ztY/IXURLWlLRmoJOglM9Jd2S9xg3W0G68FvXhNTPisXGg35PhuIn\nEWW8F0i4TTn//HU/cQN0ZlJhKg/7F/C5AP6rxrFteKfO5zJ13TcNSDuBXE4h\nJ5828DXx1UgmIPQ4nRBdo+yxW1nAbhSE2gQr4NFdm/ADX9kTOYemeYzIQFFR\nP/8nYTVv27BF3dSu/SSTbQqv8zrZCFhpFh3Ql3nJdmgAYnA+o0QCn6276uFR\nfPtQAYiZt5iTcQuS3D4G4XGfPtzC2BZRy/z3aPLcd5OzUnCpWUYIYbFpZ4NG\nfclKoG0iGCqD2gDmFbncUlnu5PD2aa+pzg0nuG4I638vdnIasaDVrBb5lyPq\nyBp/UXx+O/TDZ4aW52Az3eNh+o8giRG/gfPPOdYBic3xb0HSPCMAZBTS/EjE\nzJs4IxX4T1563YedKRRkgtwAVfRVR6ODYz4cypHrpfAMV3+DC25VVfhzus9u\n2CkX1s6QwxGaeR+SokLjvZdVWgSqcpp54D/jy3tAdBO+zF4tsOqi/IdbxSpL\nmbwDFKNh23Wk3PB49aZXHaqPGrQuCahk1NTqFC4CV5clGmU4fXLEGxmPaOIR\n0ETPbw+goT4dVT98JWb1qt8ZqAYQFJ+zPTvW+yhL1eWWnCjaCEjRpiOW1mqk\nKgV3\r\n=Olzk\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDa6k14X1iCde4NHrSAwo00S0oybatK5Q4NNDdOE0TLswIhAIdUJSxjxpSSsAgZ4vd0g5oxxktI1d04n2VAXagj5Xk5"}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_6.0.7_1589387028589_0.4774363183206465"},"_hasShrinkwrap":false},"6.0.8":{"name":"cordova-plugin-background-fetch","version":"6.0.8","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"06e6bdbd83a052d7027deb1710992f322fd37100","_id":"cordova-plugin-background-fetch@6.0.8","_nodeVersion":"10.16.2","_npmVersion":"6.9.0","dist":{"integrity":"sha512-JtmGJz2ZwzqLnbFoz6ULwcIL1JT1UVTP3Uv5SVvfPAq9k3ROHeP8FFjhS6FH2v8xZpnxfzMfmfQu9keXDQahZA==","shasum":"f00a5381fc9f6cf1b3772b1ebd0f9c7a99305690","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-6.0.8.tgz","fileCount":28,"unpackedSize":1116773,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeznpLCRA9TVsSAnZWagAAewoQAIX0ScqFJ68GnGqqmQ+J\nRxdnyA/Tn2f3cNFWuOh69YjCbb32u5rO+B38d8rWMZGx4QUO96ChTbl2nrL0\nqvIrlhIP16fr8gEX1jvnMakZUXnD+H1zdbmASECf3bk9ju5+NiMuuCCpX8ST\neEDbJIXgHoKOJPbq2PFYrg5zmjY/25sqpiBXKNEDE+YatMjkfsT5P9tgrIOw\nniRJ5/lns2akZY7u+8Ld239YTib23PAVilQ9cGP7IFLCJEWp916Y+BNwdG2Q\nWRb+tyN+iNs+MecHeYU/hjUKNbfQLegldDqO91XboxJn/R9zPpXkvIYqIB7r\nJpxFig/YZwe2GViYaTebfIAgcDBvkLHh2rvXx5qKu5Jx57nD/yjnLlrMkn48\nIbQGZGVbJxATauArQnVFSxIkthnLpBYfSvuBFXMCygzJ2PJDEDus69fcxEGN\nDxTxuZ+Mp1WplaDCkTAK+408ocrtGQ/ND4zuykSLEZBpx9AXRBpQHERasMMQ\nrS0DYoZjS50yrSYCsTY/7UV4RVJf4hWyUZJsxWdsiWtKNHzN5xDEjHpXCOBx\nJPcuPGURJxc/4gBZ5VfNW/SwZf2OgJeNYvPgP+vlb0QVNbyMPXmmwaVSQSKZ\nawd0pmN11ya5nIJUFkSOXdVoNvTQODr4/8iCI8iiP18Qi05RwY9H8cIR05O7\npsnY\r\n=ZwR7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDKq0SXmQmukZtLhMT2NjtQURk32M2Nh+mdU2W25Mc1iAIhALlSOLDzwXv/Bp96wPlclfWxW9CssPq9ZJjw2e8+ifr9"}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_6.0.8_1590590026634_0.1217504643087417"},"_hasShrinkwrap":false},"6.1.0":{"name":"cordova-plugin-background-fetch","version":"6.1.0","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"46007e1d79516cb5e17c8ae908aa16546c0f29c0","_id":"cordova-plugin-background-fetch@6.1.0","_nodeVersion":"10.16.2","_npmVersion":"6.9.0","dist":{"integrity":"sha512-PMgU6E8RG3vg2gIh1HRlep7BujqCIEz1nFN0RIplXvIxaXycHt56irdOog2Ira0OkR72uttbgZ/YIM14Up2ytw==","shasum":"73cde37f96ab93b84dd5138903defc06505e197d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-6.1.0.tgz","fileCount":34,"unpackedSize":1118119,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe45iPCRA9TVsSAnZWagAAERUP/2mw0hDZExa2XyB9TucC\n0sRbdv15H8IioD8cMNGqvzrW4RPWBCDKVjisXEn0+/RbtNjW0lM4jMDLUnFm\nGOTzcQuxaLNQsyviWdFWHK4aGi3Sk5RHVWKumhRH4F34qYJzFEtLkHod3HpQ\n6T+ENbBGqIx4OtTf/kW5XL7I0D7I5aaIwxbxTkcooD1Mjcme196EqbEEF6J6\n05KvSMhSGJoBk71eGxbcZelaZAkpfLEb4001yHLi/sE8xG7VbiL88DdGy4qI\nnhxwt7RA0pvRENVAeXKGy9c37Rg+BiuZISLTGnEwoI4yUQhBWq7Qp7ZwpEmw\n24zOgWhhJ8LpKgmussPQITYQ5w3qqhbcRV+KcAO9r8iU3rRUEfPz5qDmiM9q\nswqgpDp6Cq3bi2Zkw3AbKves/B52x2/hW0mBvd13iLNSKwtCdxl2R4erwG+r\npFPPD14RGFMdXxllSX1aMlyEcIwXFvOjN8VDudipt7zIO2ax10F65FYyt7v3\n9/ssqwkKqbFKS67obWqqSemT+h7zB6mbX9TXEi5lNNl8F0nVffcO2+THF9wS\nwwc1Il4B9FdowowhicmgWYCEOpsYc/H7OQgkZZilJ751HvNA/VW5yqVp52XP\nhQDK6pPh8ZshJvNGYLv7IIR9ejVzc+bbqx/iXvkWS4VxDVJ7dpClVBV1YJg+\nLoc0\r\n=zOnG\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDEXSJ7VloMNz1J6ZU9aiB935/gUrJ+sEZdJDEnxTYbYwIhAP2kVtorzKIaAVFsBjckl9dnmIGoztxD0i5BOc/dqxxq"}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_6.1.0_1591974030657_0.4271598383850044"},"_hasShrinkwrap":false},"6.1.1":{"name":"cordova-plugin-background-fetch","version":"6.1.1","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"d4050a00ca3944d4d0863a9db6237f0c4fbf41c8","_id":"cordova-plugin-background-fetch@6.1.1","_nodeVersion":"12.18.2","_npmVersion":"6.14.5","dist":{"integrity":"sha512-4rQu3aXiNuSLgghVtUfjpokNVYfyXeYoBB8A9skqz0gb0jkv0zHc8EiJeCTsl3xJFfWGLdc5ZSickSK1SZtloQ==","shasum":"74d36c43d7bc74b9d4cdbeae2512158a2f357322","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-6.1.1.tgz","fileCount":32,"unpackedSize":1106154,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfGakyCRA9TVsSAnZWagAAUugQAKQrjkdoWrVFd5JnDVmV\njy4pZhihxbNHlD7epc+y2hTFXQlUYEd8XTAoqLHorXrH+3XofDyG+pbScyed\nxq7rh3zUK7YUj8DAmAd00H2fWFrJlNV4AWc11LdTIfnJvZsaslP4QCXK3c/9\nYAJ69XMZDWNvBNCAbraYMvfCHT5Ipz7fGauYBS7KtnylJHUepsbVHAI8Q7OR\nZYvL3BehPp+7okrlqIbqaANOeRQ2Cnt+jAzLxHWGbiJN+5fAcZdoTrRK8bBp\nlY3erwTPy79pCko25Yhhbn195t3EMVCx5O46TjENpS98Z9RAa1C2gv4JrhIi\nwaZWoX5ZTximhCRAU80g5QlQYncH2PlJxPuzBxhodXtXKWZ26LLR4+HMSYPb\nVPw7QiRf+j3bApfMJCu1nTtMqX7P2m+EVCvvz5Q9jh+aPCBxwK9hZk8fmhQA\nm0PPUhrAjpXKPD5P9KnU3tkqcSUWqTBn8Cpw+/S9QvNO0O877sHXqblNG2gI\n6ZhSpoSao2FDqwQFuIvEjCzoQTEcsRl8w5XGx2ux35lggcUlaioRRhPlxHAh\nm2RYiqoRIuf/t60LojYXVTL6S6xBSl88pP6FmVJVVSFKgFv2c2Z5zF0jSNkN\njpAybN6/8HUKIJMHLgIGXRbAWhCeh1yCBZbGPRPpWoLu5/pbowS5FK6DIp79\nONYn\r\n=2/W4\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDV5qJUGenJQyB/mwQhv8ev83L9kTg7T0xI5gL92IGITAIhAJdHPaJYDEytIn56pCwXSNWKJtBbdn1fWjWW2kzgrv5Y"}]},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_6.1.1_1595517233645_0.13132005308934658"},"_hasShrinkwrap":false},"7.0.0":{"name":"cordova-plugin-background-fetch","version":"7.0.0","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"4fe59651e000ac31563d934ad55cbbf44e86dcd5","_id":"cordova-plugin-background-fetch@7.0.0","_nodeVersion":"12.18.2","_npmVersion":"6.14.5","dist":{"integrity":"sha512-FeuolBI36hifnpSK2B6kgJK4aLxrdTcLH3F/rzmjgtJ3HwJje8vNLLKLJGRBCz/nOF8q8bMA+iQVuJLA/o00hw==","shasum":"7fa8246a0780412721e23536427d8ed5211eef8c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-7.0.0.tgz","fileCount":41,"unpackedSize":2094355,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgLTdUCRA9TVsSAnZWagAAfogP/RcDKf8zftAQ83uGRuXV\nAqzV6R0hAxF7oFr5ScPcCSwhNbejilhbdvPHzQqJhOcpVIWslOdZAyxzkUNb\ncAicxGuQ8aVW978aALMfx1dKO9KjQ4gkSvBUGgo1EK68SAgtqzyXE6XUA2q6\nqgv6rqFfu+15vIlWhh/MZJEQ4fxZ4AXm+6+VwLDjOqZasQ55Ey2lA7qlPxDi\njWg4Hk3xaCzeVj/3mLmc8jhk5AnjI4WcuRi2kPKLogS7hZMfN4NW8yO+HOMn\nIH1eYx1F/ZltBIJ9aBFDsNVIkM9Eir4XOHplJH0vOXCdV7STOYJxYZMLglqr\nK74J1Gjkr0x1uiUs7tjkX1ZTYedwb4tXz5Yv+H9knhCI6WHswz0pH72r5pxr\nQ0dOq2xRjttoIdqSwrKuyzN+q3Mqqrtz2D86cPjNOvbGIbAZ9T8kXzYigao9\nCYzj4KblFT+bCKK1UsfXK55/UfJRtS7eLHZRGGRaSL1DefCex2pNA9xME+tY\naLddGRUOeWfTg3CeH2EMUeFQrF7IOZ/EVaK5grmyguAbVrK2Et35LK45NQAf\nET1LpQpx2MA+7ygHmFiSrdg2KSgFzRjbQod9DUbh5ercKcBFKGpVr/8lbS9h\nq80SPHL6hy27L1kqDEzcjnZYdN9l6rwTcqNvofVQp7UuUh1nU60gK+e6rEkD\nc83i\r\n=nImv\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBy/MER7mAL4Wjq7055x0oj9Lca2rn4w01GeVHbp57+BAiEAgcq8tW9S2PiVmXq2zT6YNSaiV/hSLfFQf71M2rRLMms="}]},"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_7.0.0_1613576019946_0.2474904346401603"},"_hasShrinkwrap":false},"7.0.1":{"name":"cordova-plugin-background-fetch","version":"7.0.1","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"2bc7a064c2b17f97ad778236353d5126f1c587dc","_id":"cordova-plugin-background-fetch@7.0.1","_nodeVersion":"12.18.2","_npmVersion":"6.14.5","dist":{"integrity":"sha512-IIFljNoIZbxVEL5jrVvWYv2M5E4q04EnzBrNgiSz4cWpuGsLEikCcUqsVMXH9a6AEugAvKOAvVjqSyQplrfyCA==","shasum":"001577389e4a74fc68f3244d96b56449d3d99434","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-7.0.1.tgz","fileCount":41,"unpackedSize":2094605,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgLqT1CRA9TVsSAnZWagAAvb0P/2uGFoUNUBqBezoDP66w\ngNMIglLMuVGdvVn2hHUOGKZa1lHUOFGzC4wUu186DeQOa8QOqtawhnjiyNKz\nMzZSXZpVDQmP3tVfKajyFKzybYWKRbQA6YD9XvXJ6gVOaIS46+LLFnZdu7Rc\nQsOzAmM/gRpu7kRB3lqLc1jQd4MhGqZaO5UYei1fusaKR43ZMpCtJTwq+Yod\np2wAqXMeBh5YLuMHzNc1UtKi7mD2CryXrd7LHW99kk78SD7LvLFYyMTquPs3\nz88Irk1dlxqxDayAYxu1OBSSlkr9J8q+NCPmE2+1eoaC7sHWulfIbLJyaJA4\nQeH9RzxHwCIUml/tOjVDXjSEb4UiQxUsdlNkDLDSK5bRTJ79umZKlS1alQxb\neYPiIbhxpYDcJWARdRQDg+wO6UMSo+XCXgmYuT7quRLoGnhcV/AzN9b0RNMF\ns5Oo3V1TRCo6GmkUS8r+NLmWu0UkYuaZE756vZY30Ftnda6op5wybaTMQ7fq\na8ISplItXqXHUCJAgAnoNKSQdSWpJIAWqXFO0hRECE9RJ7aNMFZ3tr5FTxX2\nvqL+1EMo8PxHDtay+8aZEOh1wI5rlO197BHsbZ4lTdHlRpcHBCzWQ3ooXnec\ndrtDP9vL274n8xjx9phq84QnKpwM2M3KsL9dka3Iw7e/KkBbfIr9DXdwSLqI\nOZiJ\r\n=GSoK\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFDxynx9f/8j23/S4nAhKWsSzZExpijnVRus2x8khY9QAiB3bWiPm3sjaAK51s8vhhMK/WfgpncOcTDyW0zIjtbRQA=="}]},"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_7.0.1_1613669620644_0.21957693857105332"},"_hasShrinkwrap":false},"7.0.2":{"name":"cordova-plugin-background-fetch","version":"7.0.2","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"d5fdb0f97002b356978820118e416b8cb97e4647","_id":"cordova-plugin-background-fetch@7.0.2","_nodeVersion":"12.18.2","_npmVersion":"7.6.1","dist":{"integrity":"sha512-rbSvK+gsHJQVCKlofY3QwnfyZkz3D27hk0Sly6Y5Fpx0cXsi6roGYR+ajas5owt0LSCDvYFZgEOJ4cJGq495rQ==","shasum":"052c408e8a6db8f2ec0110a3d84202191067ec88","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-7.0.2.tgz","fileCount":41,"unpackedSize":2095043,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgrRnnCRA9TVsSAnZWagAA9IoP/iTuah+RD9I6QDsGZMm1\nAj1RIKYn1A+fONPPcokRScZsdLiAW1vgVafJkWfiDRDrWHW4aMLfQG3e8boy\nPJlw8oVuBPo+J+P1QMt3wHZ972DlOBk3xa7T6NHOYU1VrYINmNjk+jPDyA7e\n2sFbZ3oJXmO8ebMKTxKTalaM0BURaMEgtrCKHjaYnPWovXhuo/RrGjXlEHmG\nEs2w2AZyqCjC3kcgwpN5HK+/6xLIrOmo+R2IuX2EQaTZB2OzLPPueW+y90mw\ngIYHQ4nC8Rr+rAQrtwn3qRr1Pq4VCRwJmKJPfTGxb/0woHpX3xCzNAma2hPJ\nhf2tq4iD2Sic6iqIh60lwfTW1YUd5qckDy4I63dYArKaBm/iNyBQ7jTTrOOH\nGqPETZL8S88hUf8SlJQbo3dHl/tIzLPoeklS6zh/dB4DwthmgKHeex4qTDL6\n3V8XPl3XeUYpQviGtlIanoGE8uEBi/ow1r5RX4vpYyRYzScI1KNdDQfyWTKe\nF/KQf4Zg4bC/6Rcn/Y6FBETM8Eyzi6lRkf3forLTE60URiYp9NoOBgtnZbL9\noMEBIyqIs1sn53FOHaxf4dkL/yROiROfdkVNk5bjMSiJsQaj1zz9lJZxsjAn\ndDm2WynieFeDlj1GEh3BDDFMPaPUXeGLBt0DjsKSxA7f4Sn55TwOV6FtHiO5\nnWBz\r\n=+ttw\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG1M7oqVfj1vz9XlW/L/HxbIeZKNRkAHCHAehV5eM97dAiEA7s5vv9bhd8Bx28WsyeiJCThWcGhAo43Jv/BGnxeVoj0="}]},"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_7.0.2_1621957094639_0.9666647237413677"},"_hasShrinkwrap":false},"7.0.3":{"name":"cordova-plugin-background-fetch","version":"7.0.3","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"57b2ec1dfda351ec36a096f49a82eaf8501d0f15","_id":"cordova-plugin-background-fetch@7.0.3","_nodeVersion":"12.18.2","_npmVersion":"7.6.1","dist":{"integrity":"sha512-PaBf9cfRygysJrNecpbZ82jgjjsr8/yDFewaj3Me+XB6K8OyXxVHjSAa3Gsc6oJZH22epXbxMuMEgD4InefdWw==","shasum":"7657dae5517a4ddea7489e84f12dcfb8c11f46e5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-7.0.3.tgz","fileCount":41,"unpackedSize":2095128,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg3JwPCRA9TVsSAnZWagAA4oAQAKSwrkiderb2ZsqxpcrT\nM54C7hHLSZfps1NzHXP3qH8Vap0+AjJNTpFw26711T9AodxT6cIDGU6TJtgo\n8jf+69nK95gjpts260KWhJ10elM74V5mwgfPeTLRWijzko53wzhvSghzDwcB\nu3fN9DryAV+MzVuXVkI/4MBn/W46yrOwDZ9L9xjwl2GIUuAtJkrYtUvy50HI\nFnBqKC/wMoNEfeuyetjFYmy3Mu44iRISKONK+v4q9nHWXeswzTSR5/JOxaT4\nMIDBuhfrZBTxhn3vRr4f0zxkk1p1rWhwna+oKuOcCHIaHGF4iXf9fbdh2FBI\nbAq/fBrgFWquca3BfZDyfM6vQGuvvh41IDkdurTkmhTbVMwQfR5oStwYyvvi\nHiM2LsXcpUvItGOzg4s19UFpUrsqObtekrf11DOIHs2/jNHwfp0ev7avCurk\nIxAGf1saT81hyKPgMr7q4EKuHp2ayHVJVmp/emldnra5zUPvkxkbMx1VmEz4\nnY9YAkC9k1df8+lHT0yG0cnvtkzmDsGOImrHwXYg9YyZDx1+R2UInx3zniZD\njznqvGJuxjQOogIzRs6hPXChLKirj4tCoTz7yUb5Rsat9/ueVb3yGMVYmhEG\nOOwEm7UeKujCGw5utq7AWkiMB+5E2NwTgei4MdbgPPkzZlG1WBtII832TGr3\n3D1m\r\n=wpUD\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDS8D7gbA/9aOD8qMMjdb+Jyvteh2Q4WgYI5HmbvBRN/AIgUrApyHP2h92IEOExHfzIpmZXAt2SBxOXt/BqMxiwZlU="}]},"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_7.0.3_1625070607084_0.9500973876081042"},"_hasShrinkwrap":false},"7.1.0":{"name":"cordova-plugin-background-fetch","version":"7.1.0","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"e8c924e5150d44d06f8ee637798a83518a7405ca","_id":"cordova-plugin-background-fetch@7.1.0","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-jBFZP/JMMKls0kskXIyNJkmvNhx2+fMDDjpw5/+EYvXK6K09v5wR74/Ps08VLEG0ZGmaQZolwRe9mKuqIGnYhA==","shasum":"d145b471c908c9bc7a5cece870220f7e43d31fdf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-7.1.0.tgz","fileCount":44,"unpackedSize":2087193,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBZliLsmypQc3hpvQvfHuZAN3r8v8zc+k0CknNgXNaW4AiBC0BnyqRaldmxKp+CCFIuqRx4/p302SfanSV/jLTm83Q=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiTbNfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqQsw/+Lm2R5mHYMtjShSS5uHMKdHnGyrNNo+NcTyVSu+nwV1QMX+qt\r\nXRYb4/P3/ud4xB1RYNZFQKoeVxKD2UJRPl2tQ2kk99JnEWjrtmiF0vfuD1av\r\newsOBI5/QldUk2ikkO8a/NDC2O+4d+Kh3vtjJWlzYASey4pJxiVF4JL1RPz1\r\nG+kJQC15UsfE2h/sgykzGK5LqpkOdu7DI0WF6qqtwnHz00lw020rAKiF7BKd\r\nYEB7X673vwRYqrQGAmECg4jeYHUlMEFKyArQua12K13VfIV1OBu3DwOP79cP\r\n4ewGwzvp/3sYHDsDj8BvJ0SDVtqgQuceL3V7oIcA6kd6T/ymIe7pt0G+hF+9\r\nuSSQBdPXGB6tgdax1jhMXq3XoZFUPnrY5gpdLlVqhLulQOGs+6XrowTe/i2m\r\nA6Z/1Tm/jFeEvXGbRj7Qb/cJ/srFnttqe+caQXPIH2o7jftWwiM+5hVOZULF\r\n77FEQOlwm588Cfvh2Jd/WeSBf08SPNy7VTFLkr6+bFJX9dePb+ApjDwQYBZi\r\n5NsTU9SQ4sb34VAb24oV9zRzweUtvnL3OF+Y97alARQax6EKgmPg9CZWEdaC\r\nuGQ+02tpCulp3P/TWHxF1GeNnJ647G36vsGvNVJ5uhP7+tq1E7++5guHFK9P\r\nfo+jndv9CYlAvXQ8bDC1qZgWXRMnHWhiuj0=\r\n=byAa\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_7.1.0_1649259359657_0.36685188581342976"},"_hasShrinkwrap":false},"7.1.1":{"name":"cordova-plugin-background-fetch","version":"7.1.1","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"7999d520c4e3d170074dde7b6d182c17add49763","_id":"cordova-plugin-background-fetch@7.1.1","_nodeVersion":"14.18.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-zFLl1JgUs3/hSb4SSkeJFhgoBpYLdygbH8oSkHyTtI1U/DIoxTyn4XZR+pLMRuHIzY2J/LOimXVRIy72fsoVlA==","shasum":"a17f63f5c23306b00fbe35dab6dbe991be23034a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-7.1.1.tgz","fileCount":45,"unpackedSize":2097531,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDA+kWgreMAv0LUcm7pXb3EzY12qcY1wNrbzLqtOW9zogIgAYlHSXgAy8lgRoSoJt8l2FRKvqJWArxTXEjqB5GdtsM="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJia/rVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrEhxAAngTC49nQWRxvUYELugNkDyKAWH2h5LsMyMAiZoQg4ieF18yM\r\nbRZGGiLxDDCb0hg7wgkHywuOY7KhK3pKIlfvbpxGK/Yo3gRQJsN5VqtePrZp\r\naYRW8OMgUPyw1xRFKk55GboBDw6sbB5IJZCFiHkXKf+op1uEf9xltD/odc6w\r\nx6+qMbSk2BeiOm3W7c9MLC9uec5wpNUR6E8ogYyD0xdtrmaM5fkowvgNIAzy\r\nNXLtyv2/+f29SgnW2+eren0yihqCRpv+axub8fp/ZwUR4ntiKnzh1ifufzG/\r\n6/sgzJF5RbL3TFwy6szLPtCVhLNibVUv4Xuvu6bfroHuOr4y0feLwFZeSrLA\r\nGttQuwOuzo/5d11Ip+rUBkpDEA4Tba6GobHs8felZ5UF6xXz1byGuH6N9Y/j\r\nnevoEi74i4iRNqc+k6lLRosK0ji5kg+OGVyEZzJ7M/BipXZL+oqFCtHYb1TE\r\n+rXRj3FW8pQ29k7OmdfRB8tMozK3ZpgqJ40pQkqrUVLShMymft205QIW5a/n\r\nN7Ch0JOL1EuKrNJqffprYD50hSvRjSFVd+fm6qRoze5td5LLpN2x9bIDA+LB\r\nlNRlMxFnnL9dUvNGJ2OPMdHNqsScOkSmUMTou74AWs0/ILi3PN3Hmt11QquE\r\n3DXHpqaCA4b6r2IJLtohwAySriAHQGtbiWs=\r\n=bwkD\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_7.1.1_1651243733159_0.5593417972581578"},"_hasShrinkwrap":false},"7.1.2":{"name":"cordova-plugin-background-fetch","version":"7.1.2","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"42a4b803f7b00ccfb68b910a95f76c5bfc78d44f","_id":"cordova-plugin-background-fetch@7.1.2","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-GdZl8XEzrMvXe0W17+TeQ+KQvwewuCwXFXeW9fgqlwgW+7obOuIQdw55ejrwtgD3IBLJ603qmXM80YFzDwmlZQ==","shasum":"9829312bba095508c5a2591381806f29a240cf7a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-7.1.2.tgz","fileCount":44,"unpackedSize":2090191,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICtGtUW37bxOKo4vLb+JuWv6PDs32j5O0QjJCUX5qxH/AiBDNYn3nwQmbJMfp//ARvJh8zEOdVnnsHV30Gz+ND8j8A=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjSAkjACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq/NQ/+MpNUhxoDJcQ9uexu+Op/mFduSI9j6j8VctLWpwPuANcz72ds\r\nE7FMa9Duz2PW3aU6/5M7ROFv9tRWT6UlFsZOA8KuVNOvBLLiUDAhBQHsoGSt\r\nWq3kjcpXv8EV03x0wlXE4EcwrktvLGubWr3ksaolzHec1udVL9D6/P/sRmi9\r\n7Cq3Ji97yzFBgUXG2VkfCG5lVoy/RFFLpMFRGTG9Mix+vdmy+666XMRX7cUs\r\neNphS5PZVbdcTtcT887FqV5XjHJMzwnn+UuSWyX/WW49HqZL99/xH198d70U\r\n6TyGU4Hgdu8MctJYfnfqKhqBW7igpb4ZZiusqdsOF1RkHP4gQoxIYLrbLIWH\r\nnmEcLOFdmwE466J1YU+GiGAQHkfC3S5Rxh4/Oobp9GRnC/ufYXEtkMSQj7hW\r\nR5Ivk3O2qnFQ+XqV8zMX6ldqPYuTlpl+dlaj01f6vwXh8R8mJ/89CXiJxE2c\r\n+A440MDPLYfeZJQ/hTDODFic9xr/7PH1Zfi+A7Ipm48I3z3FsjGPERq+MUH6\r\n1BqouxG+vV2yLmRiYrw2VxcGrVvEWgtJKuKymKn5p2Xp64b4RXyv9XVgOjzo\r\nZBrp+nGtDNQIeJ4pitUEJHZkY9xBimDwtQFbRKnIx5euKxK52RMQlcOZuc6o\r\n4BXj+/nSEL3J/+3DTnyepO5/D6U99DFEyYo=\r\n=P1hG\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_7.1.2_1665665315411_0.5428025195924058"},"_hasShrinkwrap":false},"7.1.3":{"name":"cordova-plugin-background-fetch","version":"7.1.3","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"046f04e20b8a4e8945988d95fe23f113591cf7aa","_id":"cordova-plugin-background-fetch@7.1.3","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-cMDRAG8lpJ0rI3zVh2C9qE9kmQD5/V6vjzojGkoJa4pPsY9iwLaxPJwKrdfGlVFsTy3W8crIMAjsJC15K3+L7A==","shasum":"5820abe264044569aaefb21e27758bf05bb8e3ff","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-7.1.3.tgz","fileCount":44,"unpackedSize":2090518,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD/IZT4x/koNs6dcE1pm0wMNzDMAdEQHOL6CntEeovYXwIgJrIiTJ0KAjDddLE+Us85bP7JPY1Ekm4lWVjeZH8i8Js="}]},"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_7.1.3_1688828277606_0.7766501970586415"},"_hasShrinkwrap":false},"7.2.0":{"name":"cordova-plugin-background-fetch","version":"7.2.0","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"e0f4fa84ef154f0247f398226443b22b647e9c63","_id":"cordova-plugin-background-fetch@7.2.0","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-F2Z6RxDi3WxTTyMPvLvpiTH4AREKiz8a4Y7OhtvCakJl9JfjLtpq+9mhKTT+5OmikP/SkyCxwJSntG0YalZiog==","shasum":"7a46940315e0943749948d0e625df4ae89b87c28","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-7.2.0.tgz","fileCount":44,"unpackedSize":2091048,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDjQ+bfvTWC3hudv87VEmlH15exkQEJmBtueL3iKGXoXAIgUE3mjzGl951H3Lhi1oj0jejlPkHIbJCv9i3U+Ad0qDc="}]},"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_7.2.0_1690772751552_0.18673323594866265"},"_hasShrinkwrap":false},"7.2.1":{"name":"cordova-plugin-background-fetch","version":"7.2.1","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"cad69c34b9904c71fafa3fb404ad11df02770d37","_id":"cordova-plugin-background-fetch@7.2.1","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-7ezklFfjz/8g21mw2Tg4Mu1gC/8XDvrlQ18HtBiG53UALc8Ii+9UTJnBgkbMrklfSIvRgx348FekwK3I8Dzg8w==","shasum":"19338ce4651898fe66eb64fe3224a412b89c5163","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-7.2.1.tgz","fileCount":44,"unpackedSize":2093323,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID6dzsV2mf/oXIRkU4GGqHk3vtoFPxDbTFJ59kyA5UQFAiEA1j7tBEdmPbw1D1UZsRVfYuxabw7RlXaKjraSwDr4Sl4="}]},"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_7.2.1_1692571467763_0.4750908386633077"},"_hasShrinkwrap":false},"7.2.2":{"name":"cordova-plugin-background-fetch","version":"7.2.2","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"218724a0b9bd26095ffa094e8e07b0089940dfaa","_id":"cordova-plugin-background-fetch@7.2.2","_nodeVersion":"18.17.1","_npmVersion":"9.6.7","dist":{"integrity":"sha512-1FqEHJkTYPAXiTbW+t3SOrEpD8/NMgRW2D+wGO7n8SeSr3TkSQXMdTW/7vLLbVkXETrelae/p9KEaWAv5fQBpg==","shasum":"d1a5d1cb1ab098615b6f6c068f771bf463ff2d49","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-7.2.2.tgz","fileCount":62,"unpackedSize":1457766,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB0p90nKkK3JFst0HDFOWDW+H/Tpuacqa4fpxQh8OVYlAiA7KhjxguYbunRW9+4kLnMySSIzWxJBUb8jIco6zfEm5w=="}]},"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_7.2.2_1712585126668_0.11973399607478696"},"_hasShrinkwrap":false},"7.2.3":{"name":"cordova-plugin-background-fetch","version":"7.2.3","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"248c0be2e6f10aba28e5f37f2ab41ff067783a66","_id":"cordova-plugin-background-fetch@7.2.3","_nodeVersion":"18.17.1","_npmVersion":"9.6.7","dist":{"integrity":"sha512-t6bUs5bEyNzykMPY4jpde4wMHEgSQ7lykNjJabEJ4HV4tYJZksQaHaYrQDupalmAWs/REVHVLM03fl8PCH1Z2g==","shasum":"a0b6ae24ac8942845a5f629d34a06739ca862da3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-7.2.3.tgz","fileCount":62,"unpackedSize":1457863,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCwc65akrMtoJ+ZSG5ICipsUch263ArENABi6J8bQRWHwIhAJaNLNF0yQi2dp4iK6lje577D2/hnGGuyToYYWLNzSRy"}]},"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_7.2.3_1712586207585_0.11488522932699863"},"_hasShrinkwrap":false},"7.2.4":{"name":"cordova-plugin-background-fetch","version":"7.2.4","description":"A plugin to periodically awaken your app in the background every 15 minutes to perform some work.","main":"./src/typescript/index.js","types":"./src/typescript/index.d.ts","scripts":{"build":"tsc -p src/typescript","prepublish":"npm run build"},"cordova":{"id":"cordova-plugin-background-fetch","platforms":["ios"]},"repository":{"type":"git","url":"git+https://github.com/transistorsoft/cordova-plugin-background-fetch.git"},"keywords":["cordova","background","fetch"],"license":"MIT","bugs":{"url":"https://github.com/transistorsoft/react-native-background-fetch/issues"},"homepage":"https://github.com/transistorsoft/react-native-background-fetch","engines":{"cordovaDependencies":{"<5.4.0":{"cordova":">=6.4.0","cordova-android":">=6.0.0","cordova-ios":">=4.3.0"},"5.4.0":{"cordova":">=7.1.0","cordova-android":">=7.0.0","cordova-ios":">=4.4.0"}}},"author":{"name":"Chris Scott, Transistor Software","email":"chris@transistorsoft.com"},"gitHead":"08179e885bb7eeb489b841f921c8cadb5f0dded3","_id":"cordova-plugin-background-fetch@7.2.4","_nodeVersion":"18.17.1","_npmVersion":"9.6.7","dist":{"integrity":"sha512-fyjEHWPS+PyfghumNoyvkWuZOr6n932QXgyuo71sGP7f24HZISOSG3WLVna2Wv0MsJHB4oor5UPd+JzFWS6Kzw==","shasum":"00bc07c38441009ad10d0933b0dfd178a25005d1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-background-fetch/-/cordova-plugin-background-fetch-7.2.4.tgz","fileCount":62,"unpackedSize":1457219,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICAK8tT0dr8WqIUQrQb7ye8KMwVLED9s/YvjdppbQQWJAiAFCXGPwE3hIB/l2B9XSGIiUrG5DOcsgKTsd6LSysODLw=="}]},"_npmUser":{"name":"anonymous","email":"chris@transistorsoft.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"chris@transistorsoft.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-background-fetch_7.2.4_1713797128776_0.16171179291448823"},"_hasShrinkwrap":false}},"name":"cordova-plugin-background-fetch","time":{"modified":"2024-04-22T14:45:29.149Z","created":"2015-12-15T12:34:16.155Z","1.0.0":"2015-12-15T12:34:16.155Z","2.0.6":"2016-03-28T14:27:36.160Z","3.0.0":"2016-04-27T21:06:52.825Z","3.0.1":"2016-04-27T21:10:08.013Z","3.0.2":"2016-04-27T21:22:34.438Z","3.0.3":"2016-04-27T21:26:18.434Z","3.0.4":"2016-04-29T09:41:07.335Z","4.0.0":"2016-08-05T18:41:24.430Z","4.0.1":"2017-04-04T18:53:08.601Z","4.0.2":"2017-04-18T17:24:06.706Z","4.0.3":"2017-07-12T16:20:56.519Z","4.0.4":"2017-07-12T19:02:40.781Z","5.0.0":"2017-08-21T14:38:45.221Z","5.1.0":"2017-09-22T04:33:57.624Z","5.1.1":"2017-09-25T13:07:19.725Z","5.2.0":"2018-01-15T20:56:00.551Z","5.2.1":"2018-01-23T13:59:31.514Z","5.3.0":"2018-02-28T16:11:49.680Z","5.4.0":"2018-05-16T16:39:06.341Z","5.4.1":"2018-05-25T16:24:50.024Z","5.5.0":"2019-06-04T18:51:34.621Z","5.6.0":"2019-08-22T17:29:38.823Z","5.6.1":"2019-10-07T20:24:21.958Z","6.0.0":"2020-02-19T19:25:27.237Z","6.0.1":"2020-02-20T20:50:57.864Z","6.0.2":"2020-02-21T17:54:56.750Z","6.0.3":"2020-02-27T19:12:20.970Z","6.0.4":"2020-03-25T14:18:15.759Z","6.0.5":"2020-04-09T14:49:32.282Z","6.0.6":"2020-04-09T17:31:46.915Z","6.0.7":"2020-05-13T16:23:48.726Z","6.0.8":"2020-05-27T14:33:46.908Z","6.1.0":"2020-06-12T15:00:30.838Z","6.1.1":"2020-07-23T15:13:53.801Z","7.0.0":"2021-02-17T15:33:40.128Z","7.0.1":"2021-02-18T17:33:40.808Z","7.0.2":"2021-05-25T15:38:14.883Z","7.0.3":"2021-06-30T16:30:07.274Z","7.1.0":"2022-04-06T15:35:59.858Z","7.1.1":"2022-04-29T14:48:53.403Z","7.1.2":"2022-10-13T12:48:35.672Z","7.1.3":"2023-07-08T14:57:57.875Z","7.2.0":"2023-07-31T03:05:51.779Z","7.2.1":"2023-08-20T22:44:27.990Z","7.2.2":"2024-04-08T14:05:26.873Z","7.2.3":"2024-04-08T14:23:27.787Z","7.2.4":"2024-04-22T14:45:28.970Z"},"readmeFilename":"README.md","homepage":"https://github.com/transistorsoft/react-native-background-fetch"}