{"maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"dist-tags":{"dev":"4.0.0","latest":"5.1.2"},"author":{"name":"Dave Alden"},"description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","readme":"cordova-custom-config plugin [![Build Status](https://travis-ci.org/dpa99c/cordova-custom-config-example.svg?branch=master)](https://travis-ci.org/dpa99c/cordova-custom-config-example/branches) [![Latest Stable Version](https://img.shields.io/npm/v/cordova-custom-config.svg)](https://www.npmjs.com/package/cordova-custom-config) [![Total Downloads](https://img.shields.io/npm/dt/cordova-custom-config.svg)](https://npm-stat.com/charts.html?package=cordova-custom-config)\n============================\n\n\n<!-- START doctoc generated TOC please keep comment here to allow auto update -->\n<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->\n**Table of Contents**\n\n- [Overview](#overview)\n  - [Do I need it?](#do-i-need-it)\n- [Important notes](#important-notes)\n  - [Changes in `cordova-custom-config@5`](#changes-in-cordova-custom-config5)\n  - [Remote build environments](#remote-build-environments)\n- [Installation](#installation)\n- [Usage](#usage)\n  - [Removable preferences via backup/restore](#removable-preferences-via-backuprestore)\n  - [Preferences](#preferences)\n  - [Config blocks](#config-blocks)\n  - [Android](#android)\n    - [Android preferences](#android-preferences)\n    - [Android config blocks](#android-config-blocks)\n    - [Android example](#android-example)\n  - [iOS](#ios)\n    - [iOS preferences](#ios-preferences)\n    - [iOS config blocks](#ios-config-blocks)\n    - [iOS image resources](#ios-image-resources)\n    - [iOS example](#ios-example)\n  - [Plugin preferences](#plugin-preferences)\n  - [Log output](#log-output)\n- [Example project](#example-project)\n- [TODO](#todo)\n- [Credits](#credits)\n- [License](#license)\n\n<!-- END doctoc generated TOC please keep comment here to allow auto update -->\n\n# Overview\n\nThe purpose of this plugin is to enable manipulation of native platform configuration files that are not supported out-of-the-box by Cordova/Phonegap CLI.\n\nThe plugin uses hook scripts to update iOS and Android platform configuration files based on custom data defined in `config.xml`.\n\n<!-- DONATE -->\n[![donate](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG_global.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZRD3W47HQ3EMJ)\n\nI dedicate a considerable amount of my free time to developing and maintaining this Cordova plugin, along with my other Open Source software.\nTo help ensure this plugin is kept updated, new features are added and bugfixes are implemented quickly, please donate a couple of dollars (or a little more if you can stretch) as this will help me to afford to dedicate time to its maintenance. Please consider donating if you're using this plugin in an app that makes you money, if you're being paid to make the app, if you're asking for new features or priority bug fixes.\n<!-- END DONATE -->\n\n## Do I need it?\n\n**Manual editing** of the platform configuration files in the `platforms/` directory is one solution to setting of custom platform configuration. \nBut this is not maintainable across multiple development machines or a CI environment where subsequent build operations may overwrite your changes.\n\nThis plugin reads custom preferences from `config.xml`, which can be committed to version control and therefore applied across multiple development machines, CI environments,\nand maintained between builds, even if a platform is removed and re-added.\n\n**However:** recent versions of the Cordova/Phonegap CLI have added official support for [`<edit-config>`](https://cordova.apache.org/docs/en/latest/plugin_ref/spec.html#edit-config) and [`<config-file>`](https://cordova.apache.org/docs/en/latest/plugin_ref/spec.html#config-file) blocks in the `config.xml` (previously they only worked in `plugin.xml`).\n\nSo if all you want to do is insert a block of native config or change a native preference, you probably don't need this plugin at all.\n\nI hope that eventually the Cordova/Phonegap CLI will support all the functionality that this plugin provides and it can be retired.\n\n**Until then:** there are still some operations that can be performed by this plugin which are not supported by the latest Cordova/Phonegap CLI versions. These include:\n \n - Overriding default platform preferences set during the `cordova prepare` operation.\n - Deletion of existing elements/attributes in `AndroidManifest.xml`\n - Manipulation of build settings in the native iOS Xcode project file `project.pbxproj` via [XCBuildConfiguration](#xcbuildconfiguration) blocks.\n - Manipulation of iOS Precompile header files via [iOS Precompile Header config blocks](#ios-precompile-header-config-blocks)\n - Advanced manipulation of iOS Xcode project using [xcodefunc](#xcodefunc).\n\n# Important notes\n\n## Changes in `cordova-custom-config@5`\n\nThe recent [release of cordova@7.0.0](http://cordova.apache.org/announcements/2017/12/04/cordova-android-7.0.0.html) has introduced backwardly-incompatible breaking changes to the structure of Android projects generated by Cordova.\n\nTherefore a new major version of this plugin (v5) has been released to support these changes. Here are things to be aware of:\n\n- The location of `AndroidManifest.xml` has changed in `cordova-android@7` but `cordova-custom-config@5` should detect which version of `cordova-android` platform is present in the project and use the correct path.\n- All custom config elements supported by this plugin in `config.xml` should now be prefixed with `custom-` for use with `cordova-custom-config@5`\n    - `<config-file>` => `<custom-config-file>`\n    - `<preference>` => `<custom-preference>`\n    - `<resource>` => `<custom-resource>`\n    - This is because `cordova-android@7` now attempts to parse `<config-file>` blocks in the `config.xml`, so `<config-file>` blocks intended for this plugin to parse will be picked up by Cordova and can cause build errors (see [#135](https://github.com/dpa99c/cordova-custom-config/issues/135)) for an example.\n    - [Plugin preferences](#plugin-preferences) should still however be specified as `<preference>`\n        - e.g. `<preference name=\"cordova-custom-config-autorestore\" value=\"true\" />`\n    - The plugin will detect if the platform project is `cordova-android@7` or `cordova-android@6` (or below)\n        - If `cordova-android@6`, by default the plugin will support non-prefixed custom config elements\n        - If `cordova-android@7`, by default the plugin will NOT support non-prefixed custom config elements\n        - This can be overridden by explicitly setting the `parse_unprefixed` preference\n            - `<preference name=\"cordova-custom-config-parse_unprefixed\" value=\"true\" />`\n\n## cordova-ios 8+ compatibility\n\n`cordova-ios@8` changed the iOS project directory structure. Previously, platform files (such as `Info.plist`, entitlements, etc.) were located under a directory named after the project (e.g. `platforms/ios/MyApp/MyApp-Info.plist`). In cordova-ios 8+, these files are located under `platforms/ios/App/App-Info.plist`.\n\nThis plugin now automatically detects which layout is present:\n- If `platforms/ios/App/` exists, the new layout is used.\n- Otherwise, the legacy layout using the project name from `config.xml` is used.\n\nNo changes to your `config.xml` are required — the `target=\"*-Info.plist\"` wildcard pattern continues to work with both layouts.\n\n## Remote build environments\n\nThis plugin is intended for the automated application of custom configuration to native platform projects in a **local build environment**.\n\nThis plugin **WILL NOT WORK** with remote (\"Cloud\") build environments that do not support the execution of this plugin's [hook scripts](https://cordova.apache.org/docs/en/latest/guide/appdev/hooks/). This includes:\n\n- [Phonegap Build](https://github.com/phonegap/build/issues/425) \n- [Intel XDK](https://software.intel.com/en-us/xdk/docs/add-manage-project-plugins)\n- [Telerik Appbuilder](http://docs.telerik.com/platform/appbuilder/cordova/using-plugins/using-custom-plugins/using-custom-plugins)\n- [Ionic Cloud](https://docs.ionic.io/services/package/#hooks)\n \nIf you are using another cloud-based Cordova/Phonegap build service and find this plugin doesn't work, the reason is probably also the same.\n\nFWIW: if you are professionally developing Cordova/Phonegap apps, you are eventually going to find it preferable to build locally.\n\n# Installation\n\nThe plugin is registered as `cordova-custom-config` on [npm](https://www.npmjs.com/package/cordova-custom-config) (requires Cordova CLI 5.0.0+)\n\n`cordova-custom-config@4+` requires the plugin to be installed via the [`cordova-fetch`](https://cordova.apache.org/news/2016/05/24/tools-release.html) mechanism in order to satisfy its package dependencies by installing it via npm.\n\nTherefore a Cordova CLI version of `cordova@7+` is required to install the plugin: \n\n    $ cordova plugin add cordova-custom-config\n\nOr `cordova@6.2+` if the `--fetch` option is specified explicitly:\n\n    $ cordova plugin add cordova-custom-config --fetch\n\n# Usage\n\nThe hook scripts included in this plugin are run after each platform `prepare` operation and apply preferences dictated by custom keys in the project `config.xml` file to the relevant platform config files.\nAs such, all you need to do to \"use\" this plugin is include the relevant keys in your `config.xml` and the scripts will take care of the rest when you build your project.\n\n**IMPORTANT**: As of `cordova-custom-config@5`, this plugin expects that custom configuration keys will be prefixed with `<custom-` in order to distinguish them from the Cordova configuration keys. For example, for a preference intended for this plugin to parse you should use `<custom-preference>` but for a preference intended for Cordova to parse you should use `<preference>` \n\nNOTE: There are no run-time source files included in this plugin - it is simply a convenient package of hook scripts.\n\n## Removable preferences via backup/restore\n\nBy default, any changes made by this plugin to platform config files are irreversible - i.e. if you want to undo changes made by the plugin, you'll need to remove then re-add the Cordova platform, for example:\n\n    cordova platform rm android && cordova platform add android\n\nHowever, if you want the changes made to be reversible, you can enable auto-backup/restore functionality by adding the following preference inside the top-level `<widget>` element of your `config.xml`:\n                                                                                                                 \n    <preference name=\"cordova-custom-config-autorestore\" value=\"true\" />\n\nWhen the first `prepare` operation runs after the plugin is installed, it will make backup copies of the original configuration files before it makes any modifications. \nThese backup copies are stored in `plugins/cordova-custom-config/backup/` and will be restored before each `prepare` operation, allowing Cordova to make modifications and then the plugin to make further modifications after the `prepare`.\n\nThis means changes made by the plugin are reversible, so removing a custom element from the `config.xml` will remove it from the platform configuration file on the next `prepare` operation and uninstalling the plugin will restore the configuration files to their original state (before the plugin made any modifications).\n\nConsequently, any manual changes made to the platform configuration files in `platforms/` **after** installing the plugin will be overwritten by the plugin on the next `prepare` operation.\n\nTo prevent auto-restoring of backups and make manual changes to platform configuration files persist, remove the `autorestore` preference from the `config.xml`\n\n## Preferences\n\nPreferences are set by defining a `<custom-preference>` element in the config.xml, e.g. `<custom-preference name=\"android-launchMode\" value=\"singleTop\" />`\n\n1.  Preferences defined outside of the platform element will apply to all platforms\n2.  Preferences defined inside a platform element will apply only to the specified platform\n3.  Platform preferences take precedence over common preferences\n4.  Platform-specific preferences must be prefixed with the platform name (e.g. `name=\"ios-somepref\"`) and be defined inside a platform element.\n\n\n## Config blocks\n\n`<custom-config-file>` blocks allow platform-specific chunks of config to be defined as an XML subtree in the `config.xml`, which is then applied to the appropriate platform configuration file by the plugin.\n\n1.  config-file elements MUST be defined inside a platform element, otherwise they will be ignored.\n2.  config-file target attributes specify the target file to update. (AndroidManifest.xml or *-Info.plist)\n3.  config-file parent attributes specify the parent element (AndroidManifest.xml) or parent key (*-Info.plist) that the child data will replace or be appended to.\n4.  config-file elements are uniquely indexed by target AND parent for each platform.\n5.  If there are multiple config-file's defined with the same target AND parent, the last config-file will be used\n6.  Elements defined WITHIN a config-file will replace or be appended to the same elements relative to the parent element\n7.  If a unique config-file contains multiples of the same elements (other than uses-permission elements which are selected by by the uses-permission name attribute), the last defined element will be retrieved.\n\n## Android\n\nThe plugin currently supports setting of custom config only in `platforms/android/AndroidManifest.xml`.\nFor a list of possible manifest values see [http://developer.android.com/guide/topics/manifest/manifest-intro.html](http://developer.android.com/guide/topics/manifest/manifest-intro.html)\n\n### Android preferences\n\nNote: [cordova@6.4.0](https://cordova.apache.org/news/2016/10/25/tools-release.html) adds support for [`<edit-config>`](http://cordova.apache.org/docs/en/6.x/plugin_ref/spec.html#edit-config) blocks in `config.xml`, which enables you to achieve similar manipulation of Android preferences without needing this plugin.\n\n- `<custom-preference>` elements in `config.xml` are used to set set attributes on existing elements in the `AndroidManifest.xml`.\n    - e.g. `<custom-preference name=\"android-manifest/@android:hardwareAccelerated\" value=\"false\" />`\n    - will result in `AndroidManifest.xml`: `<manifest android:hardwareAccelerated=\"false\">`\n- Sometimes there plugins set some defaults in AndroidManifest.xml that you may not want.\n  It is also possible to delete nodes using the preferences and the `delete=\"true\"` attribute.\n  - e.g. `<custom-preference name=\"android-manifest/uses-permission/[@android:name='android.permission.WRITE_CONTACTS']\" delete=\"true\" />`\n  - will delete the existing node `<uses-permission android:name=\"android.permission.WRITE_CONTACTS\" />`\n\n#### Android namespace attribute\n\n__Important:__ In order to user the `android:` namespace in preferences within your `config.xml`, you must include the android namespace attribute on the root `<widget>` element.\nThe namespace attribute fragment is:\n\n    xmlns:android=\"http://schemas.android.com/apk/res/android\"\n\nso your `<widget>` element should look something like:\n\n    <widget\n        id=\"com.my.app\"\n        version=\"0.0.1\"\n        xmlns=\"http://www.w3.org/ns/widgets\"\n        xmlns:cdv=\"http://cordova.apache.org/ns/1.0\"\n        xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n#### XPath preferences\n\nAndroid manifest preferences are set by using XPaths in the preference name to define which element attribute the value should be applied to.\n\nThe preference name should be prefixed with `android-manifest` then follow with an XPath which specifies the element and attribute to apple the value to.\n\nFor example:\n\n    <custom-preference name=\"android-manifest/application/activity/@android:launchMode\" value=\"singleTask\" />\n\nThis preference specifies that the `launchMode` attribute should be given a value of `singleTask`:\n\n    <activity android:launchMode=\"singleTask\">\n\nIf your manifest contains other activities, you should specify the activity name in the XPath. Note that the activity name for Cordova 4.2.0 and below was \"CordovaApp\" whereas Cordova 4.3.0 and above is \"MainActivity\". For example:\n\n    <custom-preference name=\"android-manifest/application/activity[@android:name='MainActivity']/@android:launchMode\" value=\"singleTask\" />\n\nIf the attribute you are setting is on the root `<manifest>` element, just omit the element name and specify the attribute. For example:\n\n    <custom-preference name=\"android-manifest/@android:installLocation\" value=\"auto\" />\n\n\n### Android config blocks\n\n- `<custom-config-file>` blocks are use to define chunks of config an XML subtree, to be inserted into `AndroidManifest.xml`\n- the `target` attribute must be set to `AndroidManifest.xml`: `<custom-config-file target=\"AndroidManifest.xml\">`\n- the `parent` attribute defines an Xpath to the parent element in the `AndroidManifest.xml` under which the XML subtree block should be inserted\n    - to insert a block under the root `<manifest>` element, use `parent=\"/*\"`\n    - to insert a block under a descendant of `<manifest>`, use an Xpath prefixed with `./`\n        e.g `parent=\"./application/activity\"` will insert the block under `/manifest/application/activity`\n- the child elements inside the `<custom-config-file>` block will be inserted under the parent element.\n\nFor example:\n\n    <custom-config-file target=\"AndroidManifest.xml\" parent=\"./application\">\n        <some-element />\n    </custom-config-file>\n\nwill result in `AndroidManifest.xml` with:\n\n    <manifest ...>\n        <application ...>\n            <some-element />\n        </application>\n    </manifest>\n\n**NOTE:** By default, if the specified parent element contains an existing child element of the same name as that defined in the XML subtree, the existing element will be overwritten.\nFor example:\n\n    <custom-config-file target=\"AndroidManifest.xml\">\n        <application android:name=\"MyApp\" />\n    </custom-config-file>\n\nwill replace the existing `<application>` element(s).\n    \nTo force the preservation (rather than replacement) of existing child elements, you can use the `mode=\"add\"` attribute.\nSo for the example above:\n\n    <custom-config-file target=\"AndroidManifest.xml\" mode=\"add\">\n        <application android:name=\"MyApp\" />\n    </custom-config-file>\n\nwill preserve the existing `<application>` element(s).\n\n\n### Android example\n\nconfig.xml:\n\n    <platform name=\"android\">\n        <!-- custom preferences examples -->\n        <custom-preference name=\"android-manifest/application/activity/@android:windowSoftInputMode\" value=\"stateVisible\" />\n        <custom-preference name=\"android-manifest/@android:installLocation\" value=\"auto\" />\n        <custom-preference name=\"android-manifest/application/@android:hardwareAccelerated\" value=\"false\" />\n        <custom-preference name=\"android-manifest/@android:hardwareAccelerated\" value=\"false\" />\n        <custom-preference name=\"android-manifest/application/activity/@android:configChanges\" value=\"orientation\" />\n        <custom-preference name=\"android-manifest/application/activity/@android:theme\" value=\"@android:style/Theme.Material\" />\n\n        <!-- specify activity name -->\n        <custom-preference name=\"android-manifest/application/activity[@android:name='MainActivity']/@android:launchMode\" value=\"singleTask\" />\n        \n        <!-- Delete an element -->\n        <custom-preference name=\"android-manifest/application/activity[@android:name='DeleteMe']\" delete=\"true\" />\n\n\n        <!-- These preferences are actually available in Cordova by default although not currently documented -->\n        <custom-preference name=\"android-minSdkVersion\" value=\"10\" />\n        <custom-preference name=\"android-maxSdkVersion\" value=\"22\" />\n        <custom-preference name=\"android-targetSdkVersion\" value=\"21\" />\n\n        <!-- Or you can use a custom-config-file element for them -->\n        <custom-config-file target=\"AndroidManifest.xml\" parent=\"/*\">\n            <uses-sdk android:maxSdkVersion=\"22\" android:minSdkVersion=\"10\" android:targetSdkVersion=\"21\" />\n        </custom-config-file>\n\n\n        <!-- custom config example -->\n         <custom-config-file target=\"AndroidManifest.xml\" parent=\"/*\">\n            <supports-screens\n                android:xlargeScreens=\"false\"\n                android:largeScreens=\"false\"\n                android:smallScreens=\"false\" />\n\n            <uses-permission android:name=\"android.permission.READ_CONTACTS\" android:maxSdkVersion=\"15\" />\n            <uses-permission android:name=\"android.permission.WRITE_CONTACTS\" />\n        </custom-config-file>\n        \n        <!-- Add (rather than overwrite) a custom-config-file block -->\n        <custom-config-file target=\"AndroidManifest.xml\" parent=\"./\" mode=\"add\">\n            <application android:name=\"customApplication\"></application>\n        </custom-config-file>\n        \n    </platform>\n\n## iOS\n\n- The plugin currently supports custom configuration of:\n    - the project plist (`*-Info.plist`) using `<custom-config-file>` blocks\n    - build settings using `<custom-preference>` elements\n    - image asset catalogs using `<custom-resource>` elements\n- All iOS-specific config should be placed inside the `<platform name=\"ios\">` in `config.xml`.\n\n### iOS preferences\n\n- Preferences for iOS can be used to define build configuration settings\n- The plugin currently supports:\n    - setting of `XCBuildConfiguration` block keys in the `project.pbxproj` file\n    - `xcodefunc` as an interface to apply functions from [node-xcode](https://github.com/alunny/node-xcode)\n\n#### XCBuildConfiguration\n\n- XCBuildConfiguration `<custom-preference>` elements are used to set preferences in the project settings file `platforms/ios/{PROJECT_NAME}/{PROJECT_NAME}.xcodeproj/project.pbxproj`\n- Currently, `XCBuildConfiguration` is the only supported block type.\n- However, there is no constraint on the list of keys for which values may be set.\n- If an entry already exists in an `XCBuildConfiguration` block for the specified key, the existing value will be overwritten with the specified value.\n- If no entry exists in any `XCBuildConfiguration` block for the specified key, a new key entry will be created in each `XCBuildConfiguration` block with the specified value.\n- By default, values will be applied to both \"Release\" and \"Debug\" `XCBuildConfiguration` blocks.\n- However, the block type can be specified by adding a `buildType` attribute to the `<custom-preference>` element in the config.xml: value is either `debug` or `release`\n    - e.g `<custom-preference name=\"ios-XCBuildConfiguration-IPHONEOS_DEPLOYMENT_TARGET\" value=\"7.0\" buildType=\"release\" />`\n- By default, both the key (preference name) and value will be quote-escaped when inserted into the `XCBuildConfiguration` block.\n    - e.g. `<custom-preference name=\"ios-XCBuildConfiguration-IPHONEOS_DEPLOYMENT_TARGET\" value=\"7.0\" buildType=\"release\" />`\n    - will appear in `project.pbxproj` as: `\"IPHONEOS_DEPLOYMENT_TARGET\" = \"7.0\";`\n- The default quoting can be override by setting the `quote` attribute on the `<custom-preference>` element.\n    - Valid values are:\n        - \"none\" - don't quote key or value\n        - \"key\" - quote key but not value\n        - \"value\" - quote value but not key\n        - \"both\" - quote both key and value\n    - e.g. `<custom-preference name=\"ios-XCBuildConfiguration-IPHONEOS_DEPLOYMENT_TARGET\" value=\"7.0\" buildType=\"release\" quote=\"none\" />`\n    - will appear in `project.pbxproj` as: `IPHONEOS_DEPLOYMENT_TARGET = 7.0;`\n\n- Preferences should be defined in the format `<custom-preference name=\"ios-SOME_BLOCK_TYPE-SOME_KEY\" value=\"SOME_VALUE\" />`\n- Therefore, the preference name should be prefixed with `ios-XCBuildConfiguration`, for example:\n\n    <custom-preference name=\"ios-XCBuildConfiguration-ENABLE_BITCODE\" value=\"YES\" />\n\n##### .xcconfig files\n\n- Cordova uses `.xcconfig` files in `/platforms/ios/cordova/` to override Xcode project settings in `project.pbxproj` with build-type specific values.\n    - `build.xcconfig` is overriden by settings in `build-debug.xcconfig` and `build-release.xcconfig` for the corresponding build type.\n- When applying a custom preference, the plugin will look for an existing entry in the `.xcconfig` file that corresponds to the buildType attribute.\n    - If buildType attribute is \"debug\" or \"release\", the plugin will look in `build-debug.xcconfig` or `build-release.xcconfig` respectively.\n    - If buildType is not specified or set to \"none\", the plugin will look in `build.xcconfig`.\n- By default, if an entry is found in the `.xcconfig` file which corresponds to the custom preference name in the `config.xml`, the value in the `.xcconfig` file will be overwritten with the value in the `config.xml`.\n- To prevent the plugin from overwriting the value of a specific preference in the corresponding `.xcconfig` file, set the preference attribute `xcconfigEnforce=\"false\"`.\n     - e.g `<custom-preference name=\"ios-XCBuildConfiguration-SOME_PREFERENCE\" value=\"Some value\" buildType=\"debug\" xcconfigEnforce=\"false\" />`\n- If a preference value doesn't already exist in the corresponding `.xcconfig` file, you can force its addition by setting the preference attribute `xcconfigEnforce=\"true\"`.\nThis will append it to the corresponding .xcconfig` file.\n     - e.g `<custom-preference name=\"ios-XCBuildConfiguration-SOME_PREFERENCE\" value=\"Some value\" buildType=\"debug\" xcconfigEnforce=\"true\" />`\n- Dependencies on additional `.xcconfig` files be added to a project by using `#include` statements. Note, the buildType attribute applies as stated above, however, xcconfigEnforce has no effect on `#include` statements as it is possible to have multiple `#include` statemnets in a single `.xcconfig` file.\n    - e.g. `<custom-preference name=\"ios-XCBuildConfiguration-#INCLUDE\" value=\"/path/to/external/dependency/additional_config.xcconfig\" />`. \n- A backup copy of any modified `.xcconfig` file will be made in 'plugins/cordova-custom-config/backup/ios'. By default, these backups will be restored prior to the next `prepare` operation.\n- Auto-restore of the backups can be disabled by setting `<custom-preference name=\"cordova-custom-config-autorestore\" value=\"false\" />` in the `config.xml`.\n- Preference names and values will not be quote-escaped in `.xcconfig` files, so the `quote` attribute has no effect on them.\n\n##### CODE\\_SIGN\\_IDENTITY preferences\n\n- Cordova places its default CODE\\_SIGN\\_IDENTITY for Release builds in `build-release.xcconfig` but for Debug builds in `build.xcconfig.\n- If you set a CODE\\_SIGN\\_IDENTITY preference in the `config.xml` with `buildType=\"release\"`, the plugin will overwrite the defaults in `build-release.xcconfig`.\n    - e.g. `<custom-preference name=\"ios-XCBuildConfiguration-CODE\\_SIGN\\_IDENTITY\" value=\"iPhone Distribution: My Release Profile (A1B2C3D4)\" buildType=\"release\" />`\n- If you set a CODE\\_SIGN\\_IDENTITY preference in the `config.xml` with `buildType=\"debug\"`, the plugin will overwrite the defaults in `build.xcconfig`.\n    - e.g. `<custom-preference name=\"ios-XCBuildConfiguration-CODE\\_SIGN\\_IDENTITY\" value=\"iPhone Distribution: My Debug Profile (A1B2C3D4)\" buildType=\"debug\" />`\n- You can prevent the CODE\\_SIGN\\_IDENTITY preferences being overwritten by setting `xcconfigEnforce=\"false\"`.\n    - e.g. `<custom-preference name=\"ios-XCBuildConfiguration-CODE\\_SIGN\\_IDENTITY\" value=\"iPhone Distribution: My Release Profile (A1B2C3D4)\" buildType=\"release\" xcconfigEnforce=\"false\" />`\n- You can force the plugin to add a new entry for CODE\\_SIGN\\_IDENTITY preference with `buildType=\"debug\"` to `build-debug.xcconfig`, rather than overwriting the defaults in `build.xcconfig` by setting `xcconfigEnforce=\"true\"`.\nThis will still override the defaults in `build.xcconfig`, because `build-debug.xcconfig` overrides `build.xcconfig`.\n    - e.g. `<custom-preference name=\"ios-XCBuildConfiguration-CODE\\_SIGN\\_IDENTITY\" value=\"iPhone Distribution: My Debug Profile (A1B2C3D4)\" buildType=\"debug\" xcconfigEnforce=\"true\" />`\n\n#### xcodefunc\n\n- `xcode-func` preferences enable functions within [node-xcode](https://github.com/alunny/node-xcode) to be called to edit different block types (such as Sources, Resources or Frameworks) in the `project.pbxproj`.\n- The preference name should be `ios-xcodefunc`, i.e. `name=\"ios-xcodefunc\"`\n- The function to call in [node-xcode](https://github.com/alunny/node-xcode) should be specified using the `func` attribute, e.g. `func=\"addResourceFile\"`\n- Function arguments should be specified using `<arg />` child elements. It supports the following attributes:\n    - `value`-  the value of the argument, e.g. `value=\"src/content/image.png\"`\n    - `type` - the type of the value, e.g. `type=\"String\"`.\n        - Supported types are:\n            - `Null` - evaluates to `null`\n            - `Undefined` - evaluates to `undefined`\n            - `Object` - a stringified JSON object that will be parsed back into its object form\n            - `Number` - a Javascript Number\n            - `String` - a Javascript String\n            - `Symbol` - a Javascript Symbol\n        - If `type` is not specified, the argument value will be passed exactly as defined in the `value` attribute\n    - `flag` - a modifier for specific types of argument, e.g. `flag=\"path\"`\n        - Currently, the only supported value is `path` which forces the path to be resolved either as an absolute path or relative to the project root.\n\nFor example:\n\n    <custom-preference name=\"ios-xcodefunc\" func=\"addResourceFile\">\n        <arg type=\"String\" value=\"src/content/image.png\" flag=\"path\" />\n    </custom-preference>\n\nwill add resource `image.png` from `./src/content` (i.e. `../../src/content/image.png` relative to `./platforms/ios/`)\n\n\n### iOS config blocks\n\n- `<custom-config-file>` elements are currently used to:\n    - set preferences in the project .plist file (`platforms/ios/{PROJECT_NAME}/{PROJECT_NAME}-Info.plist`).\n    - add to Precompiled Headers file (`platforms/ios/{PROJECT_NAME}/{PROJECT_NAME}-Prefix.pch`).\n- all `<custom-config-file>` elements should have the  `platform` attribute set to `ios`: `<custom-config-file platform=\"ios\">`\n\n#### iOS project plist config blocks\n\n- the `target` attribute of the `<custom-config-file>` should be set to `*-Info.plist`: `<custom-config-file platform=\"ios\" target=\"*-Info.plist\">`\n- the `parent` attribute is used to determine which key name to use for the custom preference\n    - e.g. `<custom-config-file platform=\"ios\" target=\"*-Info.plist\" parent=\"NSLocationAlwaysUsageDescription\">`\n    - will appear in `{PROJECT_NAME}-Info.plist` as `<key>NSLocationAlwaysUsageDescription</key>` under `/plist/dict`\n- the value of the preference is set by the child elements of the `<custom-config-file>` element. These will appear directly below the preference `<key>` in the .plist file.\n    - For example:\n\n        `<custom-config-file platform=\"ios\" target=\"*-Info.plist\" parent=\"NSLocationAlwaysUsageDescription\">\n            <string>This app requires constant access to your location in order to track your position, even when the screen is off.</string>\n        </custom-config-file>`\n\n    - will appear in the plist file as:\n\n        `<key>NSLocationAlwaysUsageDescription</key>\n        <string>This app requires constant access to your location in order to track your position, even when the screen is off.</string>`\n- if the .plist value type is an array, by default the values in the `<custom-config-file>` block will be merged with any existing values.\n    - For example, if the plist already contains:\n\n        `<key>LSApplicationQueriesSchemes</key>\n        <array>\n            <string>fbapi</string>\n            <string>fb-messenger-api</string>\n        </array>`\n\n    - Then adding the `<custom-config-file>` block:\n\n        `<custom-config-file parent=\"LSApplicationQueriesSchemes\" target=\"*-Info.plist\">\n             <array>\n                 <string>myapp</string>\n                 <string>myapp2</string>\n             </array>\n        </custom-config-file>`\n\n    - will result in the plist file as:\n\n        `<key>LSApplicationQueriesSchemes</key>\n        <array>\n            <string>fbapi</string>\n            <string>fb-messenger-api</string>\n            <string>myapp</string>\n             <string>myapp2</string>\n        </array>`\n\n- this behaviour can also be explicitly specified by adding `mode=\"merge\"` to the `<custom-config-file>` block:\n  - For example, the `<custom-config-file>` block:\n\n          `<custom-config-file parent=\"LSApplicationQueriesSchemes\" target=\"*-Info.plist\" mode=\"replace\">\n               <array>\n                   <string>myapp</string>\n                   <string>myapp2</string>\n               </array>\n          </custom-config-file>`\n\n      - will also result in the plist file as:\n\n          `<key>LSApplicationQueriesSchemes</key>\n          <array>\n              <string>fbapi</string>\n              <string>fb-messenger-api</string>\n              <string>myapp</string>\n               <string>myapp2</string>\n          </array>`\n\n- to replace existing values with those in the `<custom-config-file>` block, use the attribute `mode=\"replace\"`:\n     - For example, if the plist already contains:\n\n        `<key>LSApplicationQueriesSchemes</key>\n        <array>\n            <string>fbapi</string>\n            <string>fb-messenger-api</string>\n        </array>`\n\n    - Then adding the `<custom-config-file>` block:\n\n        `<custom-config-file parent=\"LSApplicationQueriesSchemes\" target=\"*-Info.plist\" mode=\"replace\">\n             <array>\n                 <string>myapp</string>\n                 <string>myapp2</string>\n             </array>\n        </custom-config-file>`\n\n      - will result in the plist file as:\n\n          `<key>LSApplicationQueriesSchemes</key>\n          <array>\n              <string>myapp</string>\n               <string>myapp2</string>\n          </array>`\n          \n- to delete existing values in the plist, specify the key to delete as the parent and use the attribute `mode=\"delete\"`:\n     - For example, if the plist already contains:\n\n        `<key>LSApplicationQueriesSchemes</key>\n        <array>\n            <string>fbapi</string>\n            <string>fb-messenger-api</string>\n        </array>`\n\n    - Then adding the `<custom-config-file>` block:\n\n        `<custom-config-file parent=\"LSApplicationQueriesSchemes\" target=\"*-Info.plist\" mode=\"delete\"/>`\n\n      - will result in the existing block being removed from the plist\n  \n\n#### iOS Precompile Header config blocks\n\n- the `target` attribute of the `<custom-config-file>` should be set to `*-Prefix.pch`: `<custom-config-file platform=\"ios\" target=\"*-Prefix.pch\">`\n\n### iOS image resources\n\nPurpose:\n- Sometimes it can be necessary to create custom iOS image asset catalogs in Cordova-based iOS apps.\n    - For example, some plugins require that custom images be present in a custom asset catalog in order to make use of them:\n        - [cordova-plugin-themeablebrowser](https://github.com/initialxy/cordova-plugin-themeablebrowser)\n        - [cordova-plugin-3dtouch](https://github.com/EddyVerbruggen/cordova-plugin-3dtouch)\n    - This could be done manually by editing the platform project in XCode, but this is fragile since platform projects are volatile. \n        - i.e. can be removed when removing/updating the platform via Cordova CLI.\n    - So this plugin provides a mechanism to automate the generation custom asset catalogs.\n\nUsage:\n- Image [asset catalogs](https://developer.apple.com/library/content/documentation/Xcode/Reference/xcode_ref-Asset_Catalog_Format/) can be defined using `<custom-resource>` elements\n- The `<custom-resource>` elements must be places inside of the `<platform name=\"ios\">` element\n- The `<custom-resource>` elements must have the attribute `type=\"image\"`: `<custom-resource type=\"image\" />`\n- The `src` attribute (required) should specify the relative local path to the image file. \n    - The relative root is the Cordova project root\n    - e.g. `<custom-resource src=\"resources/custom-catalog/back@1x.png\" />`\n        - where the image file is location in `/path/to/project/root/resources/custom-catalog/back@1x.png`\n- The `catalog` attribute (required) specifies the name of the catalog to add the image to\n    - e.g. `<custom-resource catalog=\"custom-catalog\"/>`\n- The `scale` attribute (required) specifies the scale factor of the image\n    - Valid values are: `1x`, `2x`, `3x`\n    - e.g. `<custom-resource scale=\"1x\"/>`\n- The `idiom` attribute (optional) specifies the target device family\n    - Valid values are: \n        - `universal` - all devices\n        - `iphone` - iPhones only\n        - `ipad` - iPads only\n        - `watch` - Apple Watch only\n    - If not specified, defaults to `universal`\n    - e.g. `<custom-resource idiom=\"iphone\"/>`\n- Full example: \n\n    `<custom-resource type=\"image\" src=\"resources/custom-catalog/back@1x.png\" catalog=\"custom-catalog\" scale=\"1x\" idiom=\"iphone\" />`\n\n### iOS example\n\nconfig.xml:\n\n    <platform name=\"ios\">\n\n        <!-- Set ENABLE_BITCODE to YES in XCode project file override NO value in /ios/cordova/build.xcconfig -->\n        <custom-preference name=\"ios-XCBuildConfiguration-ENABLE_BITCODE\" value=\"YES\" />\n\n        <!-- Set deploy target SDKs for release and debug builds -->\n        <custom-preference name=\"ios-XCBuildConfiguration-IPHONEOS_DEPLOYMENT_TARGET\" value=\"9.1\" buildType=\"debug\" quote=\"none\" />\n        <custom-preference name=\"ios-XCBuildConfiguration-IPHONEOS_DEPLOYMENT_TARGET\" value=\"7.0\" buildType=\"release\" />\n\n        <!-- Custom code signing profiles (overriding those in /ios/cordova/*.xcconfig -->\n        <custom-preference name=\"ios-XCBuildConfiguration-CODE\\_SIGN\\_IDENTITY\" value=\"iPhone Developer: Dave Alden (8VUQ6DYDLL)\" buildType=\"debug\" xcconfigEnforce=\"true\" />\n        <custom-preference name=\"ios-XCBuildConfiguration-CODE\\_SIGN\\_IDENTITY[sdk=iphoneos*]\" value=\"iPhone Developer: Dave Alden (8VUQ6DYDLL)\" buildType=\"debug\" />\n        <custom-preference name=\"ios-XCBuildConfiguration-CODE\\_SIGN\\_IDENTITY[sdk=iphoneos9.1]\" value=\"iPhone Developer: Dave Alden (8VUQ6DYDLL)\" buildType=\"debug\" />\n        <custom-preference name=\"ios-XCBuildConfiguration-CODE\\_SIGN\\_IDENTITY\" value=\"iPhone Distribution: Working Edge Ltd (556F3DRHUD)\" buildType=\"release\" xcconfigEnforce=\"false\" />\n        <custom-preference name=\"ios-XCBuildConfiguration-CODE\\_SIGN\\_IDENTITY[sdk=iphoneos*]\" value=\"iPhone Distribution: Working Edge Ltd (556F3DRHUD)\" buildType=\"release\" />\n        <custom-preference name=\"ios-XCBuildConfiguration-CODE\\_SIGN\\_IDENTITY[sdk=iphoneos9.1]\" value=\"iPhone Distribution: Working Edge Ltd (556F3DRHUD)\" buildType=\"release\" />\n\n        <!-- Add resource file by relative path -->\n        <custom-preference name=\"ios-xcodefunc\" func=\"addResourceFile\">\n            <arg type=\"String\" value=\"src/content/image.png\" flag=\"path\" />\n        </custom-preference>\n\n       <!-- By default, merge with existing array values -->\n       <custom-config-file parent=\"LSApplicationQueriesSchemes\" target=\"*-Info.plist\">\n           <array>\n               <string>myapp</string>\n               <string>myapp2</string>\n               <string>myapp3</string>\n           </array>\n       </custom-config-file>\n\n       <!-- Explicitly merge with existing array values -->\n       <custom-config-file platform=\"ios\" target=\"*-Info.plist\" parent=\"UISupportedInterfaceOrientations\" mode=\"merge\" >\n           <array>\n               <string>UIInterfaceOrientationPortrait</string>\n               <string>UIInterfaceOrientationPortraitUpsideDown</string>\n           </array>\n       </custom-config-file>\n\n       <!-- Replace existing values -->\n       <custom-config-file platform=\"ios\" target=\"*-Info.plist\" parent=\"UISupportedInterfaceOrientations~ipad\" mode=\"replace\">\n           <array>\n               <string>UIInterfaceOrientationPortrait</string>\n               <string>UIInterfaceOrientationPortraitUpsideDown</string>\n           </array>\n       </custom-config-file>\n\n        <!-- Set background location mode -->\n        <custom-config-file platform=\"ios\" target=\"*-Info.plist\" parent=\"UIBackgroundModes\">\n            <array>\n                <string>location</string>\n            </array>\n        </custom-config-file>\n\n        <!-- Set message displayed when app requests constant location updates -->\n        <custom-config-file platform=\"ios\" target=\"*-Info.plist\" parent=\"NSLocationAlwaysUsageDescription\">\n            <string>This app requires constant access to your location in order to track your position, even when the screen is off.</string>\n        </custom-config-file>\n\n        <!-- Set message displayed when app requests foreground location updates -->\n        <custom-config-file platform=\"ios\" target=\"*-Info.plist\" parent=\"NSLocationWhenInUseUsageDescription\">\n            <string>This app will now only track your location when the screen is on and the app is displayed.</string>\n        </custom-config-file>\n\n        <!-- Allow arbitrary loading of resources over HTTP on iOS9 -->\n        <custom-config-file platform=\"ios\" target=\"*-Info.plist\" parent=\"NSAppTransportSecurity\">\n            <dict>\n                <key>NSAllowsArbitraryLoads</key>\n                <true/>\n            </dict>\n        </custom-config-file>\n        \n        <!-- Custom image asset catalog -->\n        <custom-resource type=\"image\" catalog=\"custom\" src=\"resources/ios/custom-icons/back@1x.png\" scale=\"1x\" idiom=\"universal\" />\n        <custom-resource type=\"image\" catalog=\"custom\" src=\"resources/ios/custom-icons/back@2x.png\" scale=\"2x\" idiom=\"universal\" />\n        <custom-resource type=\"image\" catalog=\"custom\" src=\"resources/ios/custom-icons/back@3x.png\" scale=\"3x\" idiom=\"universal\" />\n    </platform>\n\n## Plugin preferences\n\nThe plugin supports some preferences which are used to customise the behaviour of the plugin.\nThese preferences should be placed at the top level (inside `<widget>`) rather than inside individual `<platform>` elements.\nEach preference name is prefixed with `cordova-custom-config` to avoid name clashes, for example:\n\n    <preference name=\"cordova-custom-config-autorestore\" value=\"true\" />\n\nThe following preferences are currently supported:\n\n- `cordova-custom-config-autorestore` - if true, the plugin will restore a backup of platform configuration files taken at plugin installation time.\nSee the [Removable preferences](#removable-preferences-via-backuprestore) section for details. Defaults to `false`.\n- `cordova-custom-config-stoponerror` - if true and an error occurs while updating config for a given platform during a `prepare` operation, the error will cause the `prepare` operation to fail.\nIf false, the plugin will log the error but will proceed and attempt to update any other platforms, before allowing the `prepare` operation to continue.\n Defaults to `false`.\n- `cordova-custom-config-hook` - determines which Cordova hook operation to use to run the plugin and apply custom config.\nDefaults to `after_prepare` if not specified.\nYou may wish to change this to apply custom config earlier or later, for example if config applied by this plugin is clashing with other plugins.\nPossible values are: `before_prepare`, `after_prepare`, `before_compile`.\nSee the [Cordova hooks documentation](https://cordova.apache.org/docs/en/latest/guide/appdev/hooks/) for more on the Cordova build process.\n- `cordova-custom-config-parse_unprefixed` - determines whether the plugin should attempt to parse unprefixed custom config elements in `config.xml`\n    - If not explicitly specified, the plugin will set a default by detecting whether the platform project is `cordova-android@7` or `cordova-android@6` (or below)\n        - If `cordova-android@6`, defaults to `true`\n        - If `cordova-android@7`, defaults to `false`\n\n## Log output\n\nIf you run the prepare operation with the `--verbose` command-line option, the plugin will output detail about the operations it's performing. Console messages are prefixed with `cordova-custom-config: `. For example:\n\n    cordova prepare ios --verbose\n\n# Example project\n\nAn example project illustrating use of this plugin can be found here: [https://github.com/dpa99c/cordova-custom-config-example](https://github.com/dpa99c/cordova-custom-config-example)\n\n# TODO\n\nSee the [TODO list](https://github.com/dpa99c/cordova-custom-config/wiki/TODO) for planned features/improvements.\n\n\n# Credits\n\nConfig update hook based on [this hook](https://github.com/diegonetto/generator-ionic/blob/master/templates/hooks/after_prepare/update_platform_config.js) by [Diego Netto](https://github.com/diegonetto)\n\n# License\n================\n\nThe MIT License\n\nCopyright (c) 2016 Working Edge Ltd.\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/dpa99c/cordova-custom-config.git"},"users":{"mahnuh":true,"trenthm":true,"appastair":true,"dosevader":true,"xhdhr10000":true,"kerimdzhanov":true,"nickhardwood":true,"quicklyfrozen":true},"bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"license":"MIT","versions":{"1.0.0":{"name":"cordova-custom-config","version":"1.0.0","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"_id":"cordova-custom-config@1.0.0","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"e32c1899e075bb052c219091155c6597e17c8ca9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.0.0.tgz","integrity":"sha512-BwFQzWC4l7LqWgugr1sAHt9crFHmv34KLCLVW5hFHVIWkbymu/+ltyK+fs/5MSUnjiPnyl7cGI0XPpgmpc3m5Q==","signatures":[{"sig":"MEUCIQCfutpnajSCrBkpMhUcs9ty1kta4PmACM/AEsISO6VodAIgWU8z7wujTyDtMcEFNZiRF+Bl68QQVlk7OSZna2/WJqU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"e32c1899e075bb052c219091155c6597e17c8ca9","cordova":{"id":"cordova-custom-config"},"engines":[{"name":"cordova","version":">=3.0.0"}],"gitHead":"23ba846bf4204fa9c1035ef377efd4c43b62527a","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"platforms":["android","ios"],"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"2.14.1","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"0.10.13","cordova_name":"cordova-custom-config","dependencies":{"plist":"*","lodash":"*","elementtree":"*"}},"1.0.1":{"name":"cordova-custom-config","version":"1.0.1","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"_id":"cordova-custom-config@1.0.1","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"0eacd77f788106c9a5ef931e7fb75fdf126ee45b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.0.1.tgz","integrity":"sha512-XFQkq/TSx+pQXu8hOD5jpXfqv4Ronzd4zoIOhycLBwUR0+MsWGDG0fJoD6J6j4O7l/wvQPAMcHUuNqRkzI212Q==","signatures":[{"sig":"MEUCIEzvsRTEVIMe9YV+NVIPuT26KizAcgHKkXRPwfF9X7BvAiEAsZME5i6fGjec/tQmpfxGjxJz21GXhaTFIidrQ84GRNs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"0eacd77f788106c9a5ef931e7fb75fdf126ee45b","cordova":{"id":"cordova-custom-config"},"engines":[{"name":"cordova","version":">=3.0.0"}],"gitHead":"e77084fe99a02a6b6956a0da2ff4a957059d2955","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"platforms":["android","ios"],"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"2.14.1","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"0.10.13","cordova_name":"cordova-custom-config","dependencies":{"plist":"*","tostr":"*","xcode":"*","lodash":"*","elementtree":"*"}},"1.1.0":{"name":"cordova-custom-config","version":"1.1.0","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"_id":"cordova-custom-config@1.1.0","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"cccf5a7869a9e5103183fc65833288cc774497ed","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.1.0.tgz","integrity":"sha512-cboIzvIGKIQtlm7a7Zoyfe2vL8MRd4vSLWVvtyjyg3O77PPs0OF8k4Pe/PeQxzM5ZO1S9vl5V9kqDd2GHGR3Eg==","signatures":[{"sig":"MEQCIDunTE4Hn9SNFwMbNLGZtK3kDxz1WUS+VEdSzX9UuOd9AiBAwgutsimEMLW128Ki0qp5oIYqLCJWFlpd4BionFpwaw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"cccf5a7869a9e5103183fc65833288cc774497ed","cordova":{"id":"cordova-custom-config"},"engines":[{"name":"cordova","version":">=3.0.0"}],"gitHead":"1fe0a7784fd11e357b33257b280a7a849295e38a","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"platforms":["android","ios"],"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"2.14.1","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"0.10.13","cordova_name":"cordova-custom-config","dependencies":{"plist":"*","tostr":"*","xcode":"*","lodash":"*","fs-extra":"*","elementtree":"*"}},"1.1.1":{"name":"cordova-custom-config","version":"1.1.1","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"_id":"cordova-custom-config@1.1.1","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"f284796986c3c638084cd103113fc6cb5d62a39d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.1.1.tgz","integrity":"sha512-z8ndOVVzMYFoyLyu4xs34b20BG3HEekh5cDcKgutIon2uwuH/CqfvUUvxCB7ZzFN0eI7x1z6xzMU8OW+31ZwJA==","signatures":[{"sig":"MEUCIQDnOHiNJ3bBEWOcg+PsBVneIcTNvRJggJ4826GFKITaPQIgXZBnZO8mRJQkGHmoB1r4KDtSMEE2unwKv0EpTyTq6jc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"f284796986c3c638084cd103113fc6cb5d62a39d","cordova":{"id":"cordova-custom-config"},"engines":[{"name":"cordova","version":">=3.0.0"}],"gitHead":"45ce5158e36c1164cfd06dcb2a3ccebf45a684b3","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"platforms":["android","ios"],"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"2.14.1","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"0.10.13","cordova_name":"cordova-custom-config","dependencies":{"plist":"*","tostr":"*","xcode":"*","lodash":"*","fs-extra":"*","elementtree":"*"}},"1.1.2":{"name":"cordova-custom-config","version":"1.1.2","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"_id":"cordova-custom-config@1.1.2","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"a69e3260ca67f8e322942396dc3ccd8f4fc2026b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.1.2.tgz","integrity":"sha512-sJLdkZF3qnVygDoboerP9LHoRq5GyokA/3qm20B7qJy5SbwsThpkZuyoOxKNe5yUCpE6mIM31OGegc6VoW3ZdQ==","signatures":[{"sig":"MEUCID4nuoGS0g9pji68j9o8rBvgN2emgARCKCSwAC3dB3VMAiEAqLiPOv+CvUyx0IrPlOFlFq1nFov2G3UrgcSaH2NktE0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"a69e3260ca67f8e322942396dc3ccd8f4fc2026b","cordova":{"id":"cordova-custom-config"},"engines":[{"name":"cordova","version":">=3.0.0"}],"gitHead":"f5a053c4c7b6dbf91f32f4ade6029935a579b632","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"platforms":["android","ios"],"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"2.14.1","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"0.10.13","cordova_name":"cordova-custom-config","dependencies":{"plist":"*","tostr":"*","xcode":"*","lodash":"*","fs-extra":"*","elementtree":"*"}},"1.1.3":{"name":"cordova-custom-config","version":"1.1.3","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"_id":"cordova-custom-config@1.1.3","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"e19988820cf0fbc06186fdca513b151aa440937a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.1.3.tgz","integrity":"sha512-s9VxatQT+l35/UlIbEWTSTOpKNf5hUTUIK8RPaDNcOWlF22CdW4J4qAyVzMc7Ci41GvvVtGrq0NddhDUdPZpvA==","signatures":[{"sig":"MEUCIQDoDnmrAKeL1hvnKGg6U98fSAoJF54zzEhgt2ZHmJ9vFwIgFK4KOLkPXlMEOI+xyZ0zEInIxBZ9UWHWmH0OvszQEyU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"e19988820cf0fbc06186fdca513b151aa440937a","cordova":{"id":"cordova-custom-config"},"engines":[{"name":"cordova","version":">=3.0.0"}],"gitHead":"26ecc1899b8fd84cc240db171d0fed15a6aaab70","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"platforms":["android","ios"],"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"2.14.1","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"0.10.13","cordova_name":"cordova-custom-config","dependencies":{"plist":"*","tostr":"*","xcode":"*","lodash":"*","fs-extra":"*","elementtree":"*"}},"1.1.4":{"name":"cordova-custom-config","version":"1.1.4","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@1.1.4","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"03ec3f9166fb985681c4291be8bbaa678a008fe9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.1.4.tgz","integrity":"sha512-nW7a/4Uu4bjnjlnNBlrQhndmBVI3QIs01HE+2VhQq5bNwyRrD3sZI0Yxhg1DXHCGKBQ77I3Xkd/oeCHUmmXh5g==","signatures":[{"sig":"MEUCIQCwISx39vYlBgO/+6nVKGsHRlJ/H0utYE+dawpZU2e1bwIgOjvIqpoFW89kSqhFBhpuCXVHGhL4uNgvDvrF6RoPuNQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"03ec3f9166fb985681c4291be8bbaa678a008fe9","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"engines":[{"name":"cordova","version":">=3.0.0"}],"gitHead":"fbe98b53e1310dc465ffb1dcaa38133dc169c018","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"2.14.1","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"0.10.13","cordova_name":"cordova-custom-config","dependencies":{"plist":"*","tostr":"*","xcode":"*","lodash":"*","fs-extra":"*","elementtree":"*"}},"1.1.5":{"name":"cordova-custom-config","version":"1.1.5","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@1.1.5","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"811fa20f3fe2fcb1e29dcdc2562bc11edcf68313","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.1.5.tgz","integrity":"sha512-OeuXfts0GAO0Ps/w92+W/z4bpx+grZscYfL38bev+5QowL1WelZ4OVyeNrHgnzQ/IwK49z1gLXYrAlQH4f6m1w==","signatures":[{"sig":"MEUCIQDjA8re3CUEnCABY6eF6dujTj5CyDrClV6s4+l7EKcLQwIgY8AhdSLg/j0Mfe3cSi1e4DYS0c7E6GUyakqvJyBjENc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"811fa20f3fe2fcb1e29dcdc2562bc11edcf68313","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"engines":[{"name":"cordova","version":">=3.0.0"}],"gitHead":"43c2c941e1b93c135360f7f5e10cf1a63d0605ed","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.3.10","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"0.10.13","cordova_name":"cordova-custom-config","dependencies":{"plist":"*","tostr":"*","xcode":"*","lodash":"*","fs-extra":"*","elementtree":"*"}},"1.1.6":{"name":"cordova-custom-config","version":"1.1.6","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@1.1.6","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"2e91280c5b58d7a685b2822fcb75305b734abe67","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.1.6.tgz","integrity":"sha512-bOIGp8rThPVh4QQBpffvyNtTuhycIW26tcVG/xEet23LV3rPUJEIID0tHkgDYt0rC0X7CATm07zMd0bm69OJ/A==","signatures":[{"sig":"MEQCICic1AhzLSwUwmzcr738wXKf29umaD5bZCV2M+44tKZmAiARRmgHY3bndOV7fCon6rUsahpyHz67Hmq6LZVQXmdnhA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"2e91280c5b58d7a685b2822fcb75305b734abe67","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"engines":[{"name":"cordova","version":">=3.0.0"}],"gitHead":"95cc8e2d7f8c34de27cd513c3cbe16b2c99eaff3","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.4.0","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"0.10.13","cordova_name":"cordova-custom-config","dependencies":{"dummy":"*","plist":"*","tostr":"*","xcode":"*","lodash":"*","fs-extra":"*","elementtree":"*"}},"1.1.7":{"name":"cordova-custom-config","version":"1.1.7","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@1.1.7","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"3c59860090eec8b0802860d8b91cdb7c18c3a324","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.1.7.tgz","integrity":"sha512-H4WnQc1dCPuIl4PpgydL7njaEeMOhAh+7Hc89emRp3IX46vjt4KNsRsEcZONZExtbW44LzSPkuHojJLbwfhNjA==","signatures":[{"sig":"MEUCIQC9Q95qJFG/17WhJ+qMw0z2jAqC2DOfgvaT+3BGXg3NsAIgEu6ro0pAcEBIdKCydgsLwanzT33fbYMYqQxcMcExHu4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"3c59860090eec8b0802860d8b91cdb7c18c3a324","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"engines":[{"name":"cordova","version":">=3.0.0"}],"gitHead":"e92b37656f4c17722ba5658410628ef6f7fce3b6","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.4.0","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"5.0.0","cordova_name":"cordova-custom-config","dependencies":{"dummy":"*","plist":"*","tostr":"*","xcode":"*","lodash":"*","fs-extra":"*","elementtree":"*"}},"1.1.8":{"name":"cordova-custom-config","version":"1.1.8","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@1.1.8","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"f3435f65b90cc8d6cfc01e193072d09f8f50799f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.1.8.tgz","integrity":"sha512-i9AQWD0/UHWB40WTr1S05grdDgZX0fhPsHUr/ZEAfXNPLDTtr3Y0BE4iOEwLB3+kITmyUQ9PL/NG1oeI9MzxXA==","signatures":[{"sig":"MEYCIQDjLXXV1qAJLWjzRIBiAnpLYNQO+5K2XoTut240VgKajwIhALhSxj1OZ3uQHG4Cnq5++U7c95/elUbt91Fq8m3LlSyc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"f3435f65b90cc8d6cfc01e193072d09f8f50799f","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"engines":[{"name":"cordova","version":">=3.0.0"}],"gitHead":"c716f87b18717d5005ead92bd1a726ca39058829","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.4.0","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"5.0.0","cordova_name":"cordova-custom-config","dependencies":{"dummy":"*","plist":"*","tostr":"*","xcode":"*","colors":"*","lodash":"*","fs-extra":"*","elementtree":"*"}},"1.1.9":{"name":"cordova-custom-config","version":"1.1.9","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@1.1.9","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"6d4ac7b0d5984bb48a9b4874ae49b0ff259d530c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.1.9.tgz","integrity":"sha512-qd7ITSovtthrgoMJdN4vNWN2gmQ2R7GA5NkRxlbcPBSbQ0+OK8SPyai3Z27IIN6wUXxYKPyWvMPvC37mriJWCQ==","signatures":[{"sig":"MEUCICRXKJCL5GAIIyPK5g8ulDwieMMASZYtn4/+GYer4ldtAiEA3QsE3hnr4y14wiWL1cBZ/CEe4P1KGSq7bU4wQdbdQKw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"6d4ac7b0d5984bb48a9b4874ae49b0ff259d530c","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"engines":[{"name":"cordova","version":">=3.0.0"}],"gitHead":"9e8971266c6dffe67a6e21dda21fc5e60afd318b","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.5.1","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"5.0.0","cordova_name":"cordova-custom-config","dependencies":{"dummy":"*","plist":"*","tostr":"*","xcode":"*","colors":"*","lodash":"*","fs-extra":"*","elementtree":"*"}},"1.1.10":{"name":"cordova-custom-config","version":"1.1.10","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@1.1.10","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"16fff9ab84578bad6cf4483bc841118a5ce1e26e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.1.10.tgz","integrity":"sha512-XHKX4QpX31PCcsKPVlM5TP5p3cj+gIcW7rB/71OcJ2ZNPoMDv417J/u4sOBPRhYwnZ0MuMLC8bgA6dj1EO6qQA==","signatures":[{"sig":"MEUCIE02PWsfgxaWfKgwvwMyTygV/qzttxwK+Rg69XfU5J1bAiEAxMiDoO/Kgqfhg2FUCKtEOUJPNxvt/6hHd9iHqkNe+yw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"16fff9ab84578bad6cf4483bc841118a5ce1e26e","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"engines":[{"name":"cordova","version":">=3.0.0"}],"gitHead":"f3224c3c6a440cd652fb29e49877428e75ccfd81","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.5.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"4.2.4","cordova_name":"cordova-custom-config","dependencies":{"dummy":"*","plist":"*","tostr":"*","xcode":"*","colors":"*","lodash":"*","fs-extra":"*","elementtree":"*"}},"1.1.11":{"name":"cordova-custom-config","version":"1.1.11","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@1.1.11","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"e6093e4466a568b94b06c75f3b6b5c7c770f0477","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.1.11.tgz","integrity":"sha512-RhlvPm54IXa1fvuHXY2DGB6V1AtEvaD+1aj11g/TZjz89IDnstl9FJ0lnZKeGRao1DBD9uPWxms1eF788X5Dbw==","signatures":[{"sig":"MEUCIHoM7ft66/i2ZvPMI+XtvBDK1t2lbEL6U8GMveAF1p7EAiEA3sTf4hdRadFs0KSZnpjs5ZUvmSP10TgHyH0Ps4FY1A4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"e6093e4466a568b94b06c75f3b6b5c7c770f0477","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"5d77a1b3edaaed2006c95ca66dbe44b802366561","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.5.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"4.2.4","cordova_name":"cordova-custom-config","dependencies":{"dummy":"*","plist":"*","tostr":"*","xcode":"*","colors":"*","lodash":"*","fs-extra":"*","elementtree":"*"}},"1.2.0":{"name":"cordova-custom-config","version":"1.2.0","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@1.2.0","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"cb4d2edbf6c9a6cf990cfff7418c92a829457c4f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.2.0.tgz","integrity":"sha512-iaFcwTkpkREaRHHlEF5qD6bCdJh2bTmVJ6f60LQm0PcSlbeuvs9imBO+FD6fY0LPec3Mtl+APiyUGVPVyVPohQ==","signatures":[{"sig":"MEQCIHsyDYZjeLndDsEqYYn19ivbm677jqNCZFK3Q8HFbyvWAiAMxj0msPduvaWnpw1jc04LQPggF/76pYTtHBBGvOQLwg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"cb4d2edbf6c9a6cf990cfff7418c92a829457c4f","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"9f67f85a8048a239e4f96c0ea71b70e817ba1319","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.5.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"4.2.4","cordova_name":"cordova-custom-config","dependencies":{"dummy":"*","plist":"*","tostr":"*","xcode":"*","colors":"*","lodash":"*","fs-extra":"*","elementtree":"*"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-1.2.0.tgz_1454853037919_0.7747487020678818","host":"packages-5-east.internal.npmjs.com"}},"1.2.1":{"name":"cordova-custom-config","version":"1.2.1","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@1.2.1","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"01837374ac989ea7257f59d0641c49caca0c2b47","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.2.1.tgz","integrity":"sha512-BACdCiXWlx2EcBHsQ2yOxEs+ECLfhet31zLK83Xh+cqECnwP/V8BYDzYG2xxdnRzCCbuELJON2E5/3OABwcK5g==","signatures":[{"sig":"MEUCIQCEOGJjBF2GBs+7kfSay1ZXncgIel3YGVVqdPhlB4uucAIgEqNL+6eEqlkafWhC/m44SEVRW8lxOrGZLVVK7pqZDFY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"01837374ac989ea7257f59d0641c49caca0c2b47","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"41d7fe21d59f3a48ac49e3bac7ca9fb16e10a2d9","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.5.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"4.2.4","cordova_name":"cordova-custom-config","dependencies":{"dummy":"*","plist":"*","tostr":"*","xcode":"*","colors":"*","lodash":"*","fs-extra":"*","elementtree":"*"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-1.2.1.tgz_1454881933385_0.7678920624312013","host":"packages-9-west.internal.npmjs.com"}},"1.2.2":{"name":"cordova-custom-config","version":"1.2.2","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@1.2.2","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"7fa78c2e817f2b38557df027b1c4a1fb54b77806","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.2.2.tgz","integrity":"sha512-O4l3f+qfUVt+uhxOEDzGDOD4JMRNhCZ7uujQu1aYN4MfNIVNwUUdofB4D10Ks5SrgXPWIHEfQQNXPtDK9vLKbA==","signatures":[{"sig":"MEYCIQCSNTnVgVcUesifyJAqxsS/qZynZpq17IsoLnospMTkWAIhANcyJ/CHfjCdaEVTzof4GWKyaOI7gMpNjCIB2Fz7X+wN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"7fa78c2e817f2b38557df027b1c4a1fb54b77806","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"4d6ce89a2e94bbd9e3bd1392933fed640c6b500a","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.5.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"4.2.4","cordova_name":"cordova-custom-config","dependencies":{"plist":"1.2.0","tostr":"0.1.0","xcode":"0.8.3","colors":"1.1.2","lodash":"4.3.0","fs-extra":"0.26.5","elementtree":"0.1.6"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-1.2.2.tgz_1454971575429_0.5112060953397304","host":"packages-5-east.internal.npmjs.com"}},"1.2.3":{"name":"cordova-custom-config","version":"1.2.3","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@1.2.3","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"7feeb77e34ae3e96211af06f5aeb890d8edd3a57","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.2.3.tgz","integrity":"sha512-hSo6wxym1FEsVGEiGGgCzuIHR6hNDG+CgrfolEhC19xD3qQEZ1oA2fOONHwyf07/OowbL0kBP0eCqKPOV7D97g==","signatures":[{"sig":"MEUCIH1uCyLSVyAjABWuA6qlV5uN2xByzGhf9Hz78d5Zw/EfAiEAlHPlM4rDmS+Hfy2PwLw7cC0A/bjPtmvce7wECPBRbdw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"7feeb77e34ae3e96211af06f5aeb890d8edd3a57","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"684a4e929be253b620ed301d6712c3a6b49f5f6b","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.5.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"4.2.4","cordova_name":"cordova-custom-config","dependencies":{"plist":"1.2.0","tostr":"0.1.0","xcode":"0.8.3","colors":"1.1.2","lodash":"4.3.0","fs-extra":"0.26.5","elementtree":"0.1.6"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-1.2.3.tgz_1455000438434_0.08518574736081064","host":"packages-6-west.internal.npmjs.com"}},"1.2.4":{"name":"cordova-custom-config","version":"1.2.4","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@1.2.4","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"9865cd32d449940db616633aa051a6dbf2a6fe16","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.2.4.tgz","integrity":"sha512-Qkj2WJBj5MbCBis/X193g4qDL177IpaAYPBwW4KdurBhhR0/G/etl/rJwGtd4C9OIWbfHIrQPSUmvQlAMZq1/Q==","signatures":[{"sig":"MEQCIEtv6VAq4rOxY6zanA1ohaEbFG77tcaYlnG+za+/RNxFAiBbIQMKiPCQ47zEWFlItdW2TG2HXj6WbqSZ8Og6ERLP9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"9865cd32d449940db616633aa051a6dbf2a6fe16","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"3200b7bae5074323e584162ff5ad2c8d75874ee3","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.5.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"4.2.4","cordova_name":"cordova-custom-config","dependencies":{"plist":"1.2.0","tostr":"0.1.0","xcode":"0.8.3","colors":"1.1.2","lodash":"4.3.0","fs-extra":"0.26.5","elementtree":"0.1.6"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-1.2.4.tgz_1455135800580_0.8215700278524309","host":"packages-6-west.internal.npmjs.com"}},"1.2.5":{"name":"cordova-custom-config","version":"1.2.5","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@1.2.5","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"791568034e685b2493dd3b0995c17404734282b0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.2.5.tgz","integrity":"sha512-N+4zfCSGKW0OOslpG6jS6Svfi3zj2I2IBDLbwJheog0bbEovBc9FVFGc71yu38pgkHygG2ujtb2VdvoINFOUMw==","signatures":[{"sig":"MEUCIQCTUJBnuGBT8kJAEXKEmvmqlMtAVNik9cm1fegsd0F0YwIgBrgg/1GODFdFftMlchBzQa8PLaMssIP81Fr2Y0oZ+3w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"791568034e685b2493dd3b0995c17404734282b0","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"1e107d9e9c26f3fc19e85caf4078f9ef0f70dac1","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.5.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"4.2.4","cordova_name":"cordova-custom-config","dependencies":{"plist":"1.2.0","tostr":"0.1.0","xcode":"0.8.3","colors":"1.1.2","lodash":"4.3.0","fs-extra":"0.26.5","elementtree":"0.1.6"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-1.2.5.tgz_1456434431882_0.6065717544406652","host":"packages-5-east.internal.npmjs.com"}},"1.2.6":{"name":"cordova-custom-config","version":"1.2.6","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@1.2.6","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"b5b97553c0ad3c2702c1d4c8d8af8b64ce387fba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-1.2.6.tgz","integrity":"sha512-upBUP+dX18FI24f/7YCHLgeLa4+SWTgVKKtXSYGpqnGRkRGsMdsZ7n4fsCxA4yl2R5o9mEH0A0AWthC8TY7aOA==","signatures":[{"sig":"MEYCIQDAdsaE/v6sayznkVIA59ucbeB3UA6Fo97YOlS717HdwQIhANHllRSByevq7RlxSMCBdMg/kTPmKJR8/R3DtWLotBba","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"b5b97553c0ad3c2702c1d4c8d8af8b64ce387fba","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"ac83454c9f7ee2fdeb1bad2b5143e992fd09474d","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.5.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"4.2.4","cordova_name":"cordova-custom-config","dependencies":{"plist":"1.2.0","tostr":"0.1.0","xcode":"0.8.3","colors":"1.1.2","lodash":"4.3.0","fs-extra":"0.26.5","elementtree":"0.1.6"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-1.2.6.tgz_1457018963961_0.7953835790976882","host":"packages-12-west.internal.npmjs.com"}},"2.0.0":{"name":"cordova-custom-config","version":"2.0.0","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@2.0.0","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"45a5a0cb944c109fa31ed8c6dc2674b3f9aa4c57","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-2.0.0.tgz","integrity":"sha512-xr64V1011VhQFM0Id7/R5thAF0H/zkB6c4twuafHF/oFiCeHMC2A5it3ecALuo9CYfMhahnNYyIxBIpkoVw2eA==","signatures":[{"sig":"MEUCIQDv1ptfglVmOUKj/3oOsSl9dDBTBR1pcpsC+fT1cbxvBQIgElJCb/AJj1OGKzSY/fn7XcXyNDy0jq0ldVaQijWhTGc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"45a5a0cb944c109fa31ed8c6dc2674b3f9aa4c57","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"0fc9969c963a4c9796ec539bc2c2b3926a61636a","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.5.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"4.2.4","cordova_name":"cordova-custom-config","dependencies":{"plist":"1.2.0","tostr":"0.1.0","xcode":"0.8.3","colors":"1.1.2","lodash":"4.3.0","fs-extra":"0.26.5","elementtree":"0.1.6"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-2.0.0.tgz_1461013761917_0.0820582052692771","host":"packages-16-east.internal.npmjs.com"}},"2.0.1":{"name":"cordova-custom-config","version":"2.0.1","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@2.0.1","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"1f548b391da56c92aceb4091dc8beb56e1fc0b6a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-2.0.1.tgz","integrity":"sha512-mobQsomhcYdKWKdSttcWOoJGWzbbfCnSzASmc8c8HOZXfJDpRKodhij1PJCrcFL1D8keYdnKhEBHvDP9FiEC7g==","signatures":[{"sig":"MEUCIQDNzOWiDV2clH2a9s61abBMH+jqo19gifF7okjwrTpDVgIgSzEcCuhxfX/2qm2VBuvgA7C1/Yr1LVWcCeFdnA2874c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"1f548b391da56c92aceb4091dc8beb56e1fc0b6a","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"acebdc15d6ebfee9b9e59b3b107ea3e2e90a24eb","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.9.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"4.2.4","cordova_name":"cordova-custom-config","dependencies":{"plist":"1.2.0","tostr":"0.1.0","xcode":"0.8.3","colors":"1.1.2","lodash":"4.3.0","shelljs":"0.7.0","fs-extra":"0.26.5","elementtree":"0.1.6"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-2.0.1.tgz_1467644699612_0.33560563740320504","host":"packages-12-west.internal.npmjs.com"}},"2.0.2":{"name":"cordova-custom-config","version":"2.0.2","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@2.0.2","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"c032b87035b3a1da0cd04789582a78c64975aa24","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-2.0.2.tgz","integrity":"sha512-S1IqxN1vk3wVGUnZK/3Gu+WPjga0Qwin07+Rh5GPKTws2PDU9Oip0LiYjH8Ohpk3y2QqCP8DDPfjUamHhr0nKg==","signatures":[{"sig":"MEUCICcRSRvRaEGtXag1g3xNLYdJMaXKRuNyR0NY8Dek6xhWAiEApvFisj+1SOfYx8qYESGKxIKEZPZLt0QF/Lo66KVXNIk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"c032b87035b3a1da0cd04789582a78c64975aa24","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"a264f68a1d267af08f881a6e4899208082fe78fa","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.9.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"4.2.4","cordova_name":"cordova-custom-config","dependencies":{"plist":"1.2.0","tostr":"0.1.0","xcode":"0.8.3","colors":"1.1.2","lodash":"4.3.0","shelljs":"0.7.0","fs-extra":"0.26.5","elementtree":"0.1.6"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-2.0.2.tgz_1467651036995_0.7260356554761529","host":"packages-16-east.internal.npmjs.com"}},"2.0.3":{"name":"cordova-custom-config","version":"2.0.3","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@2.0.3","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"f42dc0952bbea9910b0b99b3f7c82c70b009368e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-2.0.3.tgz","integrity":"sha512-1PM+HqdyJyLlN/p2tw9QEYkiMwLL0HmLihrcJSYVyx1vOEbFqzNiPgDDtoulTta3jSh8yUbv/RAn9TK4LhXcGw==","signatures":[{"sig":"MEUCIQDIvcvc8E0y2Zr3UbsnMmh2zhWxSqzOa8tK9c5e/uHLywIgaOSO1qv8Oof+g8hC+RwRntTHFbAlUOyLwgqc8VuCG1o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"f42dc0952bbea9910b0b99b3f7c82c70b009368e","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"a074a4383e90100ea2ab253f784525dbb8162a4b","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.9.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"4.2.4","cordova_name":"cordova-custom-config","dependencies":{"plist":"1.2.0","tostr":"0.1.0","xcode":"0.8.3","colors":"1.1.2","lodash":"4.3.0","shelljs":"0.7.0","fs-extra":"0.26.5","elementtree":"0.1.6"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-2.0.3.tgz_1468846299597_0.01452778116799891","host":"packages-12-west.internal.npmjs.com"}},"3.0.0":{"name":"cordova-custom-config","version":"3.0.0","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.0.0","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"c3985209020488c009bc736218c26895c26a666c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.0.0.tgz","integrity":"sha512-UTu4liyjcnQWZFvrD8fn8NFPKTPDvQba/Gpf3xmac0hAz1bLrfzSAbNQP0DOd+zZvi2HD/mMwFYyxJySdMy4sg==","signatures":[{"sig":"MEQCICuAIKulGxdgBDVoDQVZyIQNkxioiFV6k39657ZfoSSPAiBiv8h9b0YVmZHQ4mDa9xKOS3POw5DNYkVqzbH6umykYg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"c3985209020488c009bc736218c26895c26a666c","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"2723c54791379ff1aae10e8702b660aab509ac12","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"6.7.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","fs-extra":"^0.26.5","elementtree":"^0.1.6"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.0.0.tgz_1476132034493_0.23873457056470215","host":"packages-16-east.internal.npmjs.com"}},"3.0.1":{"name":"cordova-custom-config","version":"3.0.1","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.0.1","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"f8f14e49fcacc81ee2636e0f1c261f24a987d90e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.0.1.tgz","integrity":"sha512-NzLbReXU4Jv1x39YBGIPEFun13kx3U4WrJfJaY7KUGER/uOxVDsb7rcUTgUIXIDeyxShnG+Cwqlfcw9j0m44AQ==","signatures":[{"sig":"MEYCIQCEhO3QbjkPebZWe7pnlbhipqIwLuEik96MvIj/j2SSBAIhAKt+oTqPMxQdUMzhI+ySFwf12RoXUVC6PA2iOlt66hy/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"f8f14e49fcacc81ee2636e0f1c261f24a987d90e","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"ba044ef3061b439ad5f0294de3ce27a1754a140b","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"6.7.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","fs-extra":"^0.26.5","elementtree":"^0.1.6"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.0.1.tgz_1476132808575_0.861158596817404","host":"packages-12-west.internal.npmjs.com"}},"3.0.2":{"name":"cordova-custom-config","version":"3.0.2","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.0.2","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"65325aeb203bba19660bbe14a15de607d1d759c1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.0.2.tgz","integrity":"sha512-ikjsGf125T94hMumwbSHVY4pHALhG/kuTpyyqPoitA3svWVlG4Xu+Y2/TeCqo03DkH1NmPVEgcnBDPBYIVg2jA==","signatures":[{"sig":"MEUCIQC5HpwsZF31CiQBY+xf7ApjrLHF5WQNO8pCBrXiL5cxnwIgM0sZxBa5EFjKMA9eNVxHE1eeNIfVb7jHTWtGw9uxBAo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"65325aeb203bba19660bbe14a15de607d1d759c1","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"ae50c3842857ddee5ec31a80e801856513af5fdc","scripts":{"install":"npm install fs-extra"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"6.7.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","fs-extra":"^0.26.5","elementtree":"^0.1.6"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.0.2.tgz_1476133160527_0.7525719895493239","host":"packages-16-east.internal.npmjs.com"}},"3.0.3":{"name":"cordova-custom-config","version":"3.0.3","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.0.3","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"eff684e490062a680fe56fe03ac40589aa117f46","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.0.3.tgz","integrity":"sha512-O+n7Q4X7O7NPSdbQvyzgbRiBYUoEdEqka8i6nCncI7/ZEw85HRNDzg6P/LF65tmeQei52o05dhgLMIT1wpA7bQ==","signatures":[{"sig":"MEYCIQC1EpRxedA2qisQo5emsnbxOWOs3zgkzOi5ZHNj2FyT/gIhANiRI8B9uApdSrJwry6EcJKtEdLXuqYt2O6o4Nbbmkv0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"eff684e490062a680fe56fe03ac40589aa117f46","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"397d35b1e0155648ee1d3c2b5b74328fdf7ab151","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"6.7.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.0.3.tgz_1476133766427_0.8980845732148737","host":"packages-12-west.internal.npmjs.com"}},"3.0.4":{"name":"cordova-custom-config","version":"3.0.4","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.0.4","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"715b57ae5f0ee52f196ab2f96b20c8f77afd3dc6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.0.4.tgz","integrity":"sha512-HHMXy24wz+Z91qgWsDgeHSg8Z/Oy53FMIglFfktkze1cmtt2SV6CN+xrIcvLQRmyElG6WwZ/942cNN6n1smrXg==","signatures":[{"sig":"MEYCIQCutK+lJPatnPMUifh5Dt+3eCuXAkeXMeg6jyOvDSgegAIhAKPrdxML1gzLjjCHVPs/E2RDYxDezX138C6IkmNTGWns","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"715b57ae5f0ee52f196ab2f96b20c8f77afd3dc6","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"8ad8b73799b8a682853b674ea354fb848b270d67","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"6.7.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.0.4.tgz_1476134031934_0.1601680861786008","host":"packages-16-east.internal.npmjs.com"}},"3.0.5":{"name":"cordova-custom-config","version":"3.0.5","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.0.5","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"1919d756457f612fb1dbf2b2850dc63cefc9647c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.0.5.tgz","integrity":"sha512-fJA3w2jU1tC2A5XLhIJoq2u5HsoMaeZQ8HSyY2ztS3LpjP/pIey2gdpQfytcCd1gIpE1nHYjdLCmmfBIjYD/lw==","signatures":[{"sig":"MEUCIBCLHqM54w1hvSaQxUHN/mI9EpmOkPpCpIsitdB2wpdVAiEAhi825qEHVus6+F+kvMYTwqJoHyLKtasaaiQtQCZh+is=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"1919d756457f612fb1dbf2b2850dc63cefc9647c","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"ef6622b800baeca7bfe46ae5f7e1bde521aa3724","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"6.7.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.0.5.tgz_1476216602683_0.12824779539369047","host":"packages-12-west.internal.npmjs.com"}},"3.0.6":{"name":"cordova-custom-config","version":"3.0.6","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.0.6","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"41f68a03eb0ac2e917c19d084dfc3811bc7cfbf3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.0.6.tgz","integrity":"sha512-g9W8a/cMU/jgXRMVO8ivDPEY3ExdG6ufgDiohJ1xWDaCrjMqlybYm10PwLdUTjPg5viTYLAKEaIIDEYtECCe8Q==","signatures":[{"sig":"MEQCICbLJEDehYKx/e756IZF9wFy3MALaS0yeWrQR79KfWsLAiA6q+uivDylL8UKlyCUWzHS/zdz7XiijE7QRjKNEBtPyQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"41f68a03eb0ac2e917c19d084dfc3811bc7cfbf3","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"259c3df67fc875bf55b5bc66063e86d7b409feb9","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"6.7.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.0.6.tgz_1476267146299_0.906307058641687","host":"packages-16-east.internal.npmjs.com"}},"3.0.7":{"name":"cordova-custom-config","version":"3.0.7","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.0.7","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"c7c51b1bc1ee75ff2b9b0cb55f9a07b7e0e20117","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.0.7.tgz","integrity":"sha512-aff2ZKUXqcbHYxY/xDbCjwtzInmvFw3arn5WBCx7bRdJlE3QWRr53MV+sv27YJu1Zs4TarVLCvQafmOLLLAuqA==","signatures":[{"sig":"MEUCIHkKoVuXeQ2ls1GbfslK+MTsadjkestV40k0EyoNtUG4AiEArChXNr+n7lRbK2TDEr9rRx70dREyW2sOqZJgC1O+lr0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"c7c51b1bc1ee75ff2b9b0cb55f9a07b7e0e20117","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"0a83e430fa8f52d91299f2bad09ec315bb2d0eef","scripts":{},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"6.7.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.0.7.tgz_1476268041666_0.03223613812588155","host":"packages-12-west.internal.npmjs.com"}},"3.0.8":{"name":"cordova-custom-config","version":"3.0.8","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.0.8","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"6c738dc29ba83ec4a308313e7e7578fe89d183cd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.0.8.tgz","integrity":"sha512-6GViYfPIvgbvkjnqr93fwVp+Vk8jcAo5Zz+loSW/Jo+Jqu5ItJyd3U/V1/uR3HbKF4D0Egzb8JCsEbj22sd0vw==","signatures":[{"sig":"MEQCIHeWlLMfOcvB+16L779Wh35L9jLUX3QW3XLg3+p+Gsu5AiBchzxdxk8gk1g2A9QA3GxG7BOjsy98XOhEfhWWkkZTwg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"6c738dc29ba83ec4a308313e7e7578fe89d183cd","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"85670e70780cfa26cb55e04762e031ed976fb474","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"6.7.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.0.8.tgz_1476269128737_0.10684479074552655","host":"packages-12-west.internal.npmjs.com"}},"3.0.9":{"name":"cordova-custom-config","version":"3.0.9","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.0.9","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"8ab4388868076af2712a612420d606d14f468ca6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.0.9.tgz","integrity":"sha512-NlunBB4HnfMgHB1/fmNbvFxqQAe0R8Tuod3wfVdO7et8l7aVg5AiAumYl92HqdTcbji1E2RxvH7EefhBdzHb8w==","signatures":[{"sig":"MEYCIQCgIOrDupmh/q75rAZK8kvwzTxJzDl7rL2UAM8VTWdTtgIhAIGGUqQRcMO47q7blSMXK/jwEfPyzgZp50MwLBXAvomZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"8ab4388868076af2712a612420d606d14f468ca6","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"0a14286a245fbc227e3bac0693d7db18a0bd3b5a","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"6.7.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.0.9.tgz_1476301899883_0.15431873593479395","host":"packages-12-west.internal.npmjs.com"}},"3.0.10":{"name":"cordova-custom-config","version":"3.0.10","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.0.10","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"513e9aa1026499ead601277e24dad5b81c4981aa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.0.10.tgz","integrity":"sha512-CfQbueYTIXr1zPmZS3lNR+8KVXokgq80yRjNVH6rl9brNB5FGczpuIFYbyusAmfBa317zbZi5YVrenlkXQ34YA==","signatures":[{"sig":"MEUCIF7DmMu9e/yjqy+O17PNq1cUIjj6RYCEyAMKQf4XU7qEAiEA7Yf6Lhj5m12+ANZI9gMm9wiVcjF9V9N8mDXSg1mj23Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"513e9aa1026499ead601277e24dad5b81c4981aa","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"2ea98bd43bd82e6240de39df3d7aa7d7d17f9fdc","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"6.7.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.0.10.tgz_1476302386210_0.508387110196054","host":"packages-16-east.internal.npmjs.com"}},"3.0.11":{"name":"cordova-custom-config","version":"3.0.11","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.0.11","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"136f30903f58fd33312f66f615b8532b0d4312a7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.0.11.tgz","integrity":"sha512-LYOOxosFfMjCs6NH40PXbF+FpDtvyY9IH4g36s3xII8/XDLqEXE/KnuvVKE/b8UKdi9/cSZ5Z/MWch93pxocuA==","signatures":[{"sig":"MEUCIHw4EAbPCMBXVQY/asiibqYgbmiQhN7ckkPIvRp5866aAiEAtI9Hs5QxVy38Cz70TR3o7Mqi+QKXWxtCTEOsS1n921U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"136f30903f58fd33312f66f615b8532b0d4312a7","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"93cc3a62d273b95454ad8cb001b1cf614da02c3e","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"6.7.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.0.11.tgz_1476303992459_0.21276332181878388","host":"packages-12-west.internal.npmjs.com"}},"3.0.12":{"name":"cordova-custom-config","version":"3.0.12","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.0.12","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"4634617f592b24f073f23965dd5ff914588257d7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.0.12.tgz","integrity":"sha512-xLAjUbbU2P1TJDyv8Ki4FBGVmghRqtBt4zdL3U/x7pyt6jQ0n62WfEn5nNHVOS41Bmw/FFQk3h1pvuPNpgNmpQ==","signatures":[{"sig":"MEQCIFMqPDFngqOaDc4hf4u1ZV+ryRIbc8splZ0y9reLzUvBAiAOzcqJFBUJI4/3tsx2mkSLvEbtfaWSfzy4nEdWTj0CRQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"4634617f592b24f073f23965dd5ff914588257d7","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"eb559e6aa92953d737200a56a81fe661f04fcdbc","scripts":{"test":"jshint hooks","preinstall":"npm install check-node-version && check-node-version --npm '>=3'"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.8","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"6.9.1","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.0.12.tgz_1477382124858_0.6176980319432914","host":"packages-12-west.internal.npmjs.com"}},"3.0.13":{"name":"cordova-custom-config","version":"3.0.13","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.0.13","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"fb90b155b2b3f37d691f207d622322e2d6954099","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.0.13.tgz","integrity":"sha512-FDQRc3jrZ5C0zcCnysHxyQW6yx01itK54ZWQYTmXqyEDF0xo8wsGQYO9eKcvj0PN6x+WEiHYMRD5BfyRZ2xtqQ==","signatures":[{"sig":"MEUCIBTFluJDz1TFqsxHQMTsN1M7r51q3Z/LNGFqA9AZyDoTAiEAl7FYM0GAkzYm7+K7GgaEv0lzbbDND4ZxhIqogqlxN14=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"fb90b155b2b3f37d691f207d622322e2d6954099","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"c3905e1c496fbca6a94a47877650b9bb04dff86d","scripts":{"test":"jshint hooks","preinstall":"npm install check-node-version && check-node-version --npm \">=3\""},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.8","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"6.9.1","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.0.13.tgz_1477655258268_0.6157110908534378","host":"packages-12-west.internal.npmjs.com"}},"3.0.14":{"name":"cordova-custom-config","version":"3.0.14","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.0.14","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"6d435cc78c165d71146bed6903fc821a03369f15","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.0.14.tgz","integrity":"sha512-NKb2BQGYq2BCgG3kj0zrb0TlIWc3HQgMYFCBoY1CTg+yo9R8+eV0Pxhp/5iX8R8xzdwpgZuJhbdiYD/xbgfWUQ==","signatures":[{"sig":"MEUCIQDOMt60NmQJzm21zNezz6kujalzK++odBAPrlWhd1wjXwIgONuBEn9qHzVO/D66jMmamFU+h+IDNjxEYTK5aEZWmgM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"6d435cc78c165d71146bed6903fc821a03369f15","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"ac5afcc38a5246f5b9c774a655038f0b2de29e63","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.3","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"6.7.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.0.14.tgz_1477767607924_0.1874554215464741","host":"packages-18-east.internal.npmjs.com"}},"3.1.0":{"name":"cordova-custom-config","version":"3.1.0","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.1.0","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"16ecc98ef8d56c8af1d2844da7e08594fe856fdb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.1.0.tgz","integrity":"sha512-s2CDdUDVFuIYaFeXcAClfMjkgt2amz+1/72yNC3eq7+ABBuk6dJ/0/DnXCjLY68tZFwERfiLdCggtUQyEuny1Q==","signatures":[{"sig":"MEUCIFt0d1pusIDSLi3kFHNj7LuaDCxQNyOpbR13U5sB4CTKAiEA4R0hj0Z/6byOawusHAYNLNMeqMoqCm54WfrNc1ROve0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"16ecc98ef8d56c8af1d2844da7e08594fe856fdb","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"engines":{"npm":">=3.0.0"},"gitHead":"6520aa65ad0325ebb73b2a4ca570474c53cd758f","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.9","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"7.1.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"engineStrict":true,"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.1.0.tgz_1480194024305_0.3735813284292817","host":"packages-12-west.internal.npmjs.com"}},"3.1.1":{"name":"cordova-custom-config","version":"3.1.1","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.1.1","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"f8d1b8d0fb8badce6a53fb38527f396ae39359a0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.1.1.tgz","integrity":"sha512-mOHZgWAfD7oJE5EGLL+20/fmIYA608oUSXD8PRhC/x64bO+AphCG2MUyy3puCozRhiSV+FGESAcIxx8xL3w54Q==","signatures":[{"sig":"MEQCIG66Q1I+nmVQiaeZgJYCK/3BwtTF37t8Qk2BC8+ZqK/hAiB2HnOLRyB4P3i7l7KqOBZ5d9SLNoet2V0ADibv8WCPFw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"f8d1b8d0fb8badce6a53fb38527f396ae39359a0","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"cda808a5ecaaa985baf2c410b57ee2b3111d4ed3","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.9","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"7.1.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.1.1.tgz_1480497573590_0.6886327471584082","host":"packages-18-east.internal.npmjs.com"}},"3.1.2":{"name":"cordova-custom-config","version":"3.1.2","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.1.2","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"63382b2920e2da7d46f607bace3411baf3f976df","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.1.2.tgz","integrity":"sha512-hjBbEk4flnjrJ1bcDkTNmxgCJJMIGkANigQdMY4Vd2mZ2oShAgvfqIhvW94NSeCv9xp0CYzLE2NTd8S3revEMQ==","signatures":[{"sig":"MEUCIQCKfLQOMBI8kS1HM3TOt3RUyPiCIHc0SMBoAlOiFLtFjgIgegPJop9wRIFPsRNF0v4CZ8lTxd9FHGK/HJb1pFd/PT8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"63382b2920e2da7d46f607bace3411baf3f976df","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"a917bb41dc25b582e1a9ab79d1793339b55f4bc3","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.9","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"7.1.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.1.2.tgz_1480760661207_0.725297458935529","host":"packages-18-east.internal.npmjs.com"}},"3.1.3":{"name":"cordova-custom-config","version":"3.1.3","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.1.3","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"cdb23368db40913779600f0bfd53d3a3b0bf502f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.1.3.tgz","integrity":"sha512-FmRNcUsnmtEfjMV8LxhlsGNWOIx/IozITvvbnZzQONJ2EbW0V087uvclX9VyHVZQd3OeiclD0Ry95idL6TuVPQ==","signatures":[{"sig":"MEUCIQDMwGliXrXVA/T3wvvy0YtqdtKsCup3uWqJzyZbLcr5fAIgQEoHH0hUavoxNAn6R91dIhu7zBiZ8jEmuTmm4lqow1I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"cdb23368db40913779600f0bfd53d3a3b0bf502f","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"aaa3ca30abd4fed690b4718240ef60a822eae085","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.10","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"7.3.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.1.3.tgz_1490847331803_0.09977839654311538","host":"packages-12-west.internal.npmjs.com"}},"3.1.4":{"name":"cordova-custom-config","version":"3.1.4","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.1.4","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"c43c32dc3b1147def6536721b71391af4828a36d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.1.4.tgz","integrity":"sha512-gtTFxTk8SHvcUPXyFDH87gkCrIfq/u4jCWO2qJR2RC7NRsNfbvBIh+xapbCOfn/4kSeGz18ZjuPed8BJ266ARw==","signatures":[{"sig":"MEUCIG/qyHgRi3go5oSa+cS6YRDb620g8vx4KH9Y4fbeG0J+AiEA3+QfvyKkGBMi4VRknj5kFnUNM9CoB1Av7wd/d3T5yPw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"c43c32dc3b1147def6536721b71391af4828a36d","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"501e81d01b4fa10bbd481eece94ce83212bfca1f","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"4.0.5","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"7.3.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.1.4.tgz_1491898800204_0.6171986071858555","host":"packages-12-west.internal.npmjs.com"}},"3.2.0":{"name":"cordova-custom-config","version":"3.2.0","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.2.0","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"7b242276c45775ffb8abe7a7bda5d43fb03243a5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.2.0.tgz","integrity":"sha512-wuQHgXao3dUqnlt/sVRHdaMkv0Q3NoOw1mR3rWVWbl6aMmUvOnaguvyc4JMQGvqqSpO6N3k+oC3y1snIMRCXKQ==","signatures":[{"sig":"MEQCIGbomLd/1dj/IQalp9TSu+jshxfpbVVX/A5WGE86urvcAiBOi19LML22X92RBWIbP3srARka+fTUmhLkK0KTQcPEDg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"7b242276c45775ffb8abe7a7bda5d43fb03243a5","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"f63421baeb9bf8f91baf3fb8fc7c2fca37466023","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"3.10.10","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"7.3.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.2.0.tgz_1494402222329_0.4945743123535067","host":"packages-12-west.internal.npmjs.com"}},"3.3.0":{"name":"cordova-custom-config","version":"3.3.0","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@3.3.0","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"58afda63d4deb8c6d413b38cf0bd9a948ac4060d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-3.3.0.tgz","integrity":"sha512-cHwuVOxnC0zGEAU0e3TNk336tdHGnpvzXgCtSd46Dm/vngGYlt6nFajiw5tdDiYZMaKMre4KiW9+rEtzke1aTw==","signatures":[{"sig":"MEUCIQDN0O0SW3vt/ODJtWCdcFhrp+GLe8R7Gjsyn2USKI3SogIgL4NFrGWj/jU/kxuBneJd125eIDVLPShECNHMX2Ul11E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"58afda63d4deb8c6d413b38cf0bd9a948ac4060d","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"6fcf4a5e1b1e7d159ce2f897429505c1702651e9","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"4.2.0","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"7.10.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-3.3.0.tgz_1497039524990_0.748219107510522","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"cordova-custom-config","version":"4.0.0","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@4.0.0","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"072f95c2c5377a2bdba44615744ae2610f9d24d0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-4.0.0.tgz","integrity":"sha512-zCUfN1W1lDF8TzkoFOcLteaXOgN2rhzOaNZWkO6RKfwmxJ8e0Ipk7IagcbEi+ZVLcFIZmEP6zYFQAPyFybistA==","signatures":[{"sig":"MEYCIQChTJsD4K4LsvN4bvE+OWIPNE3oF2id/O7ayK/LZnJUngIhAI6grnn5GBgMAFWnuS3tvd5LGoxldMJ+I8Oumj7lpx2M","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"072f95c2c5377a2bdba44615744ae2610f9d24d0","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"aa3a44138d0fb2fdd6beff0d8678c6c40c578d84","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"4.2.0","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"7.10.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-4.0.0.tgz_1497507911310_0.9735207525081933","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"cordova-custom-config","version":"4.0.1","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@4.0.1","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"6822a8e689b63339117db7c069d2dbfa6563090e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-4.0.1.tgz","integrity":"sha512-ba9NImJ61mBkBC7DDaAEfPq+ZSWJW4phKYq9r52y2wAGptf4MqIacxHScOGyTKWjFmXwED5OTzVVPWLF4+AWIw==","signatures":[{"sig":"MEUCIQC2/Xom/IW7hCeMdhh4VODJ8w9AgLUr7ND944sjSsu8VwIgfIxCBq7ekEFCtXIkgBc9nBFURL1YIGxyYcRlJkixj3U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"6822a8e689b63339117db7c069d2dbfa6563090e","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"a2a9b7c53db3c0dd40ca69aeac1410295826ccaf","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"4.2.0","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"7.10.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-4.0.1.tgz_1497508870833_0.7596081879455596","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"cordova-custom-config","version":"4.0.2","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@4.0.2","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"76e88a40ad213754069f2e64981e9167a597dfee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-4.0.2.tgz","integrity":"sha512-RF88q9nBedsbxiC/9of/4WOqwPgw73z6SzXT5Pqb+EqIiWyj5Q6sAP73apbqyQtvNZP/6MI82ukg+I1GSZwz8A==","signatures":[{"sig":"MEUCIA5cAaJlvwyeYsVFvSTjLheQwbXNY+SU+Hm4c2MfJAQRAiEA3brTuGiiR40d2bk0K6BubZCZSPmBxsEDjXH2ziq1BIo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"76e88a40ad213754069f2e64981e9167a597dfee","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"e196c1fa2e840b8073bd9700f701b33a240da226","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"4.2.0","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"7.10.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^1.2.0","tostr":"^0.1.0","xcode":"^0.8.9","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-4.0.2.tgz_1497513648170_0.05083384085446596","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"cordova-custom-config","version":"5.0.0","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@5.0.0","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"bea7efe31e64e95ceb668177ad6918f90aa8adb9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-5.0.0.tgz","integrity":"sha512-TXn/foRM+AEUF2wUVuzhJQQIW7Q5mFyYBAb2WTNdymq8416wg3g84h9rgb14RbbaeZNnmVgZOFhyGMcVWRR8lQ==","signatures":[{"sig":"MEUCIFQmlwTtF11ta78ZOkWYvqFJLov80VSNPXUxHUQqDcQNAiEAoQsNvFhojUrVCdngHjOYEIExbn/lq5YiMsdp4JxKDAA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"bea7efe31e64e95ceb668177ad6918f90aa8adb9","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"103b4579b7696c50026d775b6f78bf588b3f7c3e","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"4.2.0","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"7.10.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"^2.1.0","tostr":"^0.1.0","xcode":"^0.9.3","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-5.0.0.tgz_1512640545951_0.7752261934801936","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"cordova-custom-config","version":"5.0.1","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@5.0.1","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"22f60da7d3e0e71523e36cf1b4acfb68bb025510","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-5.0.1.tgz","integrity":"sha512-6Rp1w9t/l3zs4HNF5cZf6El+qY2+oNjBsli35B2aqKav1cyx3xilA+fD4v4PGwqoeiyv7/SJJBJzVpIaXmbcZA==","signatures":[{"sig":"MEUCIQDq0is3mro1qeqJzOWZ/j9/0T7V8EggHgu/I3BkZyhaEAIgTLp47QE7osuokEtuTcvlwY/V2v64IjrQetXUbEzl2zw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","issue":"https://github.com/dpa99c/cordova-custom-config/issues","_shasum":"22f60da7d3e0e71523e36cf1b4acfb68bb025510","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"b3266d2230b87acc0924d10d6940d013cde2247a","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"4.2.0","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"7.10.0","cordova_name":"cordova-custom-config","dependencies":{"plist":"github:xiangpingmeng/plist.js","tostr":"^0.1.0","xcode":"^1.0.0","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-5.0.1.tgz_1513609293803_0.7884358384180814","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"cordova-custom-config","version":"5.0.2","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@5.0.2","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"43e751d0c9d20845f57ace227c82c26668662eff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-5.0.2.tgz","integrity":"sha512-BOlDpmll+CIL+pSFfYrp0ederNCDKvB3X8tDY2EacEvcar/kB2MKs9M5Htv4VTrkfdIbjJtoePD2vaH3apY1Tg==","signatures":[{"sig":"MEUCIQCvB4KFExK/0T1f3jKo9Mm21dbbYMOKKFcC9cp2vG9++gIgbWmkenH8xtOBjfoQiNlzCBRgSUrmJ8zLvFXoO216y0I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"issue":"https://github.com/dpa99c/cordova-custom-config/issues","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"3145ce67755f7c5fbbd233e45ee0b24ddf81c509","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"5.5.1","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"8.9.3","cordova_name":"cordova-custom-config","dependencies":{"plist":"github:xiangpingmeng/plist.js","tostr":"^0.1.0","xcode":"^1.0.0","colors":"^1.1.2","lodash":"^4.3.0","shelljs":"^0.7.0","elementtree":"^0.1.6"},"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config-5.0.2.tgz_1514471922741_0.19985496625304222","host":"s3://npm-registry-packages"}},"5.0.3":{"name":"cordova-custom-config","version":"5.0.3","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@5.0.3","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"273698025676ee4fbf341cbd030a241edc9b67e1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-5.0.3.tgz","fileCount":12,"integrity":"sha512-qAzTCiDQFaB70SF9E9E/hiWucjyj7asq3fgBpWIolgsYIEDdl1lrDsppj2/aKuYeIlaokv2Tj6oXyWA6Kiq0TA==","signatures":[{"sig":"MEQCIFDcxwobpT2EmWCHV5+NZsXyxH3uMAP4jPIC8B4Q6wpoAiAvoF3267JC2YfatD13v1hMsZyKSHrGdTqsXoWd5cP9EQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":119355,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcP61cCRA9TVsSAnZWagAAafsP+wSvyLx8tGe+mIprcdl7\n9PYFmnYt+MGBrsm8Wa70Tp2uCQ0SmCuaPaY9gm++LTXk17ZW10g5HOkbpyqk\n9pgoOxfqhOj66f4vFCtBvE8DN3pca4sCyD4l/RMxAuj44sYfEMXnymxOMuPo\nq1vWrcmHZjmgWN3odIvlhFywYg/3fgWgKXgT3RkaU4N+i2y8Kl4Cv4b02LBl\nX8g0aR1jLdYfgYh6hbLDf3yY/pSCK0U5yKF1+3fuAh14q39aaeZ6YBcKV+7+\nkmCQZFa/SKJucJJk8jgkfDQr4Ec81S6wC8TqB3JFgl5Hdr1aPt0cLEVNWHuy\nmt/aNlkin4u33N278o9XPMpJ2CWeGSL+YIULGDhj/C1XByfMaMfap1evwd1E\njI/GijEJvYgObzQcr/6sKezoYy3ZoAl6TkHzStWnwuLoyGAIbUFsMz30+rOh\n1vw3TJdcN6K1vq8Nv4A7QOHzuda4o3YI0GBEn4tuOcOHbAJsd21P8tHrh4Df\nnAxuIKmZSHrXr7gnRzqkNrXQkh5nVb0DPXF3jVPVU3cEYxq32i7EDRu8dzQN\nZ/xBOddDmT9QqA/SdybURQTuZlfbdTWRtanNCz/TlZr8/3lSW1TYT/vablf3\nCKvChZ1DEVfu1fSTVG+vJtLYSqDaual6atngbQxGABwKQO3/3R/OzGz6iOpX\n6bo1\r\n=2G9m\r\n-----END PGP SIGNATURE-----\r\n"},"issue":"https://github.com/dpa99c/cordova-custom-config/issues","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"7e14f42b3bf079b87a13229326a0486f33148b4c","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"5.6.0","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"8.11.1","cordova_name":"cordova-custom-config","dependencies":{"plist":"^3.0.1","tostr":"^0.1.0","xcode":"^1.0.0","colors":"^1.1.2","lodash":"^4.17.11","shelljs":"^0.7.0","elementtree":"^0.1.6"},"_hasShrinkwrap":false,"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config_5.0.3_1547677019990_0.5152406148203101","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"cordova-custom-config","version":"5.1.0","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@5.1.0","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"bb37c9d4b58eab9d05a6a8dd22ec1bd700b1c1ac","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-5.1.0.tgz","fileCount":12,"integrity":"sha512-qPk1l1Rayu0PAp5kXqyvzMprc0oCqRa5pcs7iRrb0daq0I/RWIw7BngCyOJuv/wnJrTBbwxVued1+lVLe0/MeA==","signatures":[{"sig":"MEUCIHwXQxNl29YmeF1FEBAnOmA0XXiR5l9RYO5F0sE4XBscAiEArxBYP4RkJ1xsQLIruwo6yn10KnlIX8Cb/yjKeUdRxvo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":122350,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJclzXxCRA9TVsSAnZWagAALvoP/2PuVtWuHKTMdJ/Hf2nZ\nyEcSjkK5TPCDpg67mwoMPQ9gcgrKP4Y1TUERmg0P37nLS48Xkx6FMdPXMZyf\npR+GuN2lKOiidlEiqR6Mvx5ZAxWntd00NP6ydm7gKsn/U9pJzhJkYMm66zB5\nXqd2cPEiabxICnKM4bgJUpcxs8K7SgzaM6heDfC5ygcsCA5hRO+WPTzVssXh\n+rnEqF3sx1A3VZ27syeIJgcO6c3v5OPJxQ48R7GQyCYoNfz8n43c6uJOXXLc\nfrtKSitYalRI/7IxNdEKJyraLqDvZE0Xr4y3jT8/AZLZJp0Tscm7AWVjkprM\nECr70ruMhM60W+sbQ9zc4XH6y8BAM7t24LaeQPrKsZe5ovRkZifpEI4sDuz0\ni2Hvo9FCTu0MGw6APowYhaA+qL9/ECUd9JG3eeje01jA+zMwKIgG3YKzehR4\nbsaDBTPlGlHKXxqdc5793ruAstheUjuiSJ+EtuzLSLiGDQPTRoomQzOS2Nyy\nfKCqqhEWUrD/LxzahCC1kVfjQGDXa7wR54OfN1llFKhDH7dlB3VYHdiJhnNg\nlUvdg28OaTYlGIF2RZ9vVia3e0vQLXTJ6EU4v++wMLeJ5rQE1WDzpPe0VjT7\nmyQUgKyzREfrg01UKvgoO0BMYpUI39JwFa5WTuIt8QVx2ZCykcTXli2N4dnN\nQjwj\r\n=cN5v\r\n-----END PGP SIGNATURE-----\r\n"},"issue":"https://github.com/dpa99c/cordova-custom-config/issues","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"479bc593065310aea82762bb584c9422f3ef9d2d","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"5.6.0","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"8.11.1","cordova_name":"cordova-custom-config","dependencies":{"q":"^1.4.1","plist":"^3.0.1","tostr":"^0.1.0","xcode":"^1.0.0","colors":"^1.1.2","lodash":"^4.17.11","shelljs":"^0.7.0","elementtree":"^0.1.6"},"_hasShrinkwrap":false,"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config_5.1.0_1553413616044_0.3897194735733003","host":"s3://npm-registry-packages"}},"5.1.1":{"name":"cordova-custom-config","version":"5.1.1","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"author":{"name":"Dave Alden"},"license":"MIT","_id":"cordova-custom-config@5.1.1","maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"dist":{"shasum":"c0243892848a4b2f869a7fb6a2ff0dcd02f7f3b7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-5.1.1.tgz","fileCount":17,"integrity":"sha512-GH/W0yVCvrxobcs1zp3ARcbG8/XlnCglQqBgUsFkQnf/gVzaA9Eh+Q55W1tgp6yiNZv17aBTPlJYBaKqGsIrFQ==","signatures":[{"sig":"MEUCIQC0fc1ql+Vn1E1J3ER6FGQtnXlZoeqddN9fzlx0AEIHrwIgBG1ga8+iZO+btIr54OeX0q2T8BSdP7rxALpnegFUcS8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130920,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3GDeCRA9TVsSAnZWagAANi4P/3plpcu3NxLftLjepd1v\nbq/83yFLzX8gRJv4nhR0joUMSEyPKTeqK7skYuPQG6dakZLh8wswlqdaxrBY\nC8gMKDhmHy2z8Owz7OQssFGolxrJIlBdbtLD/e1Tel1Q8CMzrWesucrAzS+Z\ng9Y/IINbYiFHr+lvLxgXWLUTO6G8AKGO2UhFu2lpvxu59YhEaT4YeGuVLwYm\nl5+v2tB+YgiPOXajMpUKyekQXJzsKXL8n3xGdJfCMHJtlQhwtILkBtppq5vq\nJE4Bv5BlaKpva7ZlfCTF/A95lf0K1a1HQ4OZ+LpW8alZpO96hmzvCVgnEVWQ\nkrABSBrswzL4OTJ8n5Dt0Wcp6nMKQ5A+ASWvQsNzqs8ZFMw2A3vzo9zjlqy0\nVZUviECIfbBqhv4JFRA+yDp7uMiUdhmInhVgxKaJbnPg9RS9XoCrSs/1WvHb\nNpk+ZfNpTFEKjX6my+7UWFkngWf4W/2ozX6xeBiZNX66e5Unk68v73zu3sT+\n2N5OJQswqaXDzZcniO3fpFHh+E7RKpKSlEQIpSPxIZl90mLYBeGx0onqh/a7\nGs5kvU4Obe0jqPi7MoAU71EXs+nqyieaJjqRgpmRSKiTQSVa2rXguFPblelR\nsjbFttPRxGkoZIU0L4kY5G8rlStar1R9LlOMGcoQLzHZK/hKuFPERgk9Z3lg\nFckq\r\n=Vf8V\r\n-----END PGP SIGNATURE-----\r\n"},"issue":"https://github.com/dpa99c/cordova-custom-config/issues","cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"gitHead":"163152a1d7162fe063a4a975f114fd0d0c0c6e87","scripts":{"test":"jshint hooks"},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"repository":{"url":"git+https://github.com/dpa99c/cordova-custom-config.git","type":"git"},"_npmVersion":"6.13.4","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","directories":{},"_nodeVersion":"12.14.0","cordova_name":"cordova-custom-config","dependencies":{"q":"^1.4.1","plist":"^3.0.1","tostr":"^0.1.0","xcode":"^1.0.0","colors":"1.4.0","lodash":"^4.17.11","shelljs":"^0.7.0","elementtree":"^0.1.6"},"_hasShrinkwrap":false,"devDependencies":{"got":"^6.5.0","jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-custom-config_5.1.1_1641832670730_0.33923025639870996","host":"s3://npm-registry-packages"}},"5.1.2":{"version":"5.1.2","name":"cordova-custom-config","cordova_name":"cordova-custom-config","description":"Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml.","author":{"name":"Dave Alden"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/dpa99c/cordova-custom-config.git"},"cordova":{"id":"cordova-custom-config","platforms":["android","ios"]},"issue":"https://github.com/dpa99c/cordova-custom-config/issues","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","phonegap","config","configuration","plist","manifest"],"dependencies":{"q":"^1.4.1","lodash":"^4.17.11","elementtree":"^0.1.6","plist":"^3.0.1","xcode":"^3.0.1","colors":"1.4.0","shelljs":"^0.8.5","tostr":"^0.1.0"},"devDependencies":{"jshint":"^2.6.0","got":"^6.5.0"},"scripts":{"test":"jshint hooks"},"_id":"cordova-custom-config@5.1.2","gitHead":"c2ecfd78ba5325757824d3990c4981c3a26944f6","bugs":{"url":"https://github.com/dpa99c/cordova-custom-config/issues"},"homepage":"https://github.com/dpa99c/cordova-custom-config#readme","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-b6XuM+sUnHlVaWN1BehaqNJ2O4V5SyvQtioHB4lHJ+I19GRgp9RWAKnv/GIljcjomAlvUp3Eplsqkxl8VzwuvA==","shasum":"f30126fc930cca3d8207805838ecc75857c2bf08","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-custom-config/-/cordova-custom-config-5.1.2.tgz","fileCount":17,"unpackedSize":132587,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIGw2IVD2zicz/s+1MjoDyq3BlGeUgRBRO45MNNx6xnzGAiABxAtgcXpSlQARCHVSYn94H++IXB5LbVciRh7UTzxjYg=="}]},"_npmUser":{"name":"anonymous","email":"dave@workingedge.co.uk"},"directories":{},"maintainers":[{"name":"anonymous","email":"dave@workingedge.co.uk"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/cordova-custom-config_5.1.2_1775036620050_0.32954726864084316"},"_hasShrinkwrap":false}},"name":"cordova-custom-config","time":{"created":"2015-09-27T21:18:06.631Z","modified":"2026-04-01T09:43:40.308Z","1.0.0":"2015-09-27T21:18:06.631Z","1.0.1":"2015-09-28T14:50:13.302Z","1.1.0":"2015-10-01T16:00:28.178Z","1.1.1":"2015-10-05T21:53:29.980Z","1.1.2":"2015-10-06T07:16:02.407Z","1.1.3":"2015-10-19T15:46:48.625Z","1.1.4":"2015-10-20T12:38:35.823Z","1.1.5":"2015-11-10T21:00:43.594Z","1.1.6":"2015-11-12T22:03:45.195Z","1.1.7":"2015-11-14T22:09:00.095Z","1.1.8":"2015-11-15T23:50:17.197Z","1.1.9":"2016-01-14T15:57:53.695Z","1.1.10":"2016-01-18T20:27:45.579Z","1.1.11":"2016-01-21T21:31:04.280Z","1.2.0":"2016-02-07T13:50:39.178Z","1.2.1":"2016-02-07T21:52:16.249Z","1.2.2":"2016-02-08T22:46:16.859Z","1.2.3":"2016-02-09T06:47:21.541Z","1.2.4":"2016-02-10T20:23:24.025Z","1.2.5":"2016-02-25T21:07:13.120Z","1.2.6":"2016-03-03T15:29:26.410Z","2.0.0":"2016-04-18T21:09:23.315Z","2.0.1":"2016-07-04T15:05:02.007Z","2.0.2":"2016-07-04T16:50:39.345Z","2.0.3":"2016-07-18T12:51:42.124Z","3.0.0":"2016-10-10T20:40:35.316Z","3.0.1":"2016-10-10T20:53:30.754Z","3.0.2":"2016-10-10T20:59:21.368Z","3.0.3":"2016-10-10T21:09:28.493Z","3.0.4":"2016-10-10T21:13:52.630Z","3.0.5":"2016-10-11T20:10:04.574Z","3.0.6":"2016-10-12T10:12:27.209Z","3.0.7":"2016-10-12T10:27:23.740Z","3.0.8":"2016-10-12T10:45:30.722Z","3.0.9":"2016-10-12T19:51:42.098Z","3.0.10":"2016-10-12T19:59:47.225Z","3.0.11":"2016-10-12T20:26:34.773Z","3.0.12":"2016-10-25T07:55:27.054Z","3.0.13":"2016-10-28T11:47:40.704Z","3.0.14":"2016-10-29T19:00:08.637Z","3.1.0":"2016-11-26T21:00:26.527Z","3.1.1":"2016-11-30T09:19:34.399Z","3.1.2":"2016-12-03T10:24:22.051Z","3.1.3":"2017-03-30T04:15:33.933Z","3.1.4":"2017-04-11T08:20:02.446Z","3.2.0":"2017-05-10T07:43:44.303Z","3.3.0":"2017-06-09T20:18:46.155Z","4.0.0":"2017-06-15T06:25:12.537Z","4.0.1":"2017-06-15T06:41:12.048Z","4.0.2":"2017-06-15T08:00:49.795Z","5.0.0":"2017-12-07T09:55:46.089Z","5.0.1":"2017-12-18T15:01:35.385Z","5.0.2":"2017-12-28T14:38:43.975Z","5.0.3":"2019-01-16T22:17:00.144Z","5.1.0":"2019-03-24T07:46:56.152Z","5.1.1":"2022-01-10T16:37:50.988Z","5.1.2":"2026-04-01T09:43:40.213Z"},"readmeFilename":"README.md","homepage":"https://github.com/dpa99c/cordova-custom-config#readme"}