{"maintainers":[{"email":"dwieeb@gmail.com","name":"dev"},{"email":"eric@hellouser.net","name":"dev"},{"email":"rudy@ionic.io","name":"dev"},{"email":"tim@ionic.io","name":"dev"}],"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"dist-tags":{"latest":"0.6.7","alpha":"1.0.0-alpha.0"},"author":{"name":"Ionic"},"description":"Ionic Deploy Plugin","readme":"## Ionic Deploy Plugin\n\nThe Cordova plugin for Ionic Deploy.\n\nCheck out our [docs](http://docs.ionic.io/services/deploy/) for more detailed information.\n\n## Installation\n\nSee our [docs](http://docs.ionic.io/services/deploy/) for installation steps.\n\n## Cordova Plugin API\n\n\n### `IonicDeploy`\n\n- this Cordova plugin defines a new global `IonicDeploy` object\n\n- this object exposes the following methods\n\n\n#### `init (appId: String, serverUrl: String)`\n\n- appId: `String`\n- serverUrl: `String`\n\nExample:\n\n```js\nIonicDeploy.init('org.cordova.helloworld', 'https://helloworld.org/deploy')\n```\n\n\n#### `check (appId, channelTag, onSuccess, onError)`\n\n- appId: `String`\n- channelTag: `String`\n- onSuccess: `CheckHandler`\n- onError: `ErrorHandler`\n\nContact the remote IonicDeploy service (as configured during `IonicDeploy.init(...)`) and passes the result along to `IonicDeploy.init(...)`.\n\n\n##### `CheckHandler (result)`\n\n- result: `String`\n\n- if `result` is the string `\"true\"`, then a new update is available\n\n\n##### `ErrorHandler (error)`\n\n\n#### `parseUpdate (appId, response, onSuccess, onError)`\n\n- appId: `String`\n- response: `UpdateResponse`\n- onSuccess: `CheckHandler`\n- onError: `ErrorHandler`\n\nDetermine whether an update is available, by checking the provided response data. Store metadata from available updates for future calls to `IonicDeploy.download(...)`.\n\nThis function is useful for testing, and also for using a custom remote update service. For all other use cases, you should just use `IonicDeploy.check(...)`.\n\n\n##### `UpdateResponse`\n\n```\ninterface UpdateResponse {\n  data: {\n    available: Boolean,\n    compatible: Boolean,\n    snapshot: String, // (unique per update, e.g. UUID)\n    url: String // (URL to download)\n  }\n}\n```\n\n\n#### `download (appId, onSuccess, onError)`\n\n- appId: `String`\n- onSuccess: `DownloadHandler`\n- onError: `ErrorHandler`\n\nUsing the metadata from a recent `IonicDeploy.check(...)` (or `IonicDeploy.parseUpdate(...)`), download and store an available update ZIP file.\n\n\n##### `DownloadHandler (result)`\n\n- result: `String` or `Number`\n\nIf `result` is a numeric value, it communicates progress. If `result` is the string `\"true\"`, it communicates completion.\n\n\n#### `extract (appId, onSuccess, onError)`\n\n- appId: `String`\n- onSuccess: `ExtractHandler`\n- onError: `ErrorHandler`\n\nUnpack and apply the update ZIP file from a recent `IonicDeploy.download(...)`. After the app is [terminated](https://developer.apple.com/library/ios/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/TheAppLifeCycle/TheAppLifeCycle.html#//apple_ref/doc/uid/TP40007072-CH2-SW7) / [destroyed](https://developer.android.com/reference/android/app/Activity.html#onDestroy()) by the operating system, the update will take effect.\n\nThe contents of the ZIP file should be the contents of the platform-specific \"www\" directory from a Cordova project. This directory is regenerated during `cordova build`.\n\n\n##### `ExtractHandler (result)`\n\n- result: `String` or `Number`\n\nIf `result` is a numeric value, it communicates progress. If `result` is the string `\"done\"`, it communicates completion.\n\n\n#### `redirect (appId)`\n\n- appId: `String`\n\nNavigate the webview to the version provided by a recent `IonicDeploy.extract(...)`. This is useful for use cases where it is undesirable to wait for the operating system to terminate / destroy the app.\n\nAny unsaved user data / state will be lost, so design your UX and/or data persistence approach accordingly.\n","repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"users":{"danail":true},"bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"license":"Apache 2.0","versions":{"0.1.0":{"name":"ionic-plugin-deploy","version":"0.1.0","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugins-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugins-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugins-deploy#readme","gitHead":"2079c059871aca64fe323dd6231869c952dddbe2","_id":"ionic-plugin-deploy@0.1.0","scripts":{},"_shasum":"46b60f3b8da35ad1dadec2357059cea6736b9e9e","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.10.38","_npmUser":{"name":"dev","email":"eric@hellouser.net"},"dist":{"shasum":"46b60f3b8da35ad1dadec2357059cea6736b9e9e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.1.0.tgz","integrity":"sha512-GPhkR5WHwHYAEqmro9a1Bo75uhs9SBjBvPTv2rUmpdnw2lwbiogM2A47n3Jab9QeAaFUd5eFRWNjLeSxxSDmlg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDDnIh7WByTDhqwCJFF8MVStfRy22REo8ZOEdLzDK97DAIhAN5v1o+HOYwZ7w5wcFfSICibbzSpxgeGE3Hi/vsXifvI"}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"}],"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.1.1":{"name":"ionic-plugin-deploy","version":"0.1.1","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugins-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugins-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugins-deploy#readme","gitHead":"e6c18ebbe97782929302123fb65dcb37ba772ee2","_id":"ionic-plugin-deploy@0.1.1","scripts":{},"_shasum":"3a8643a25fd02ac32172384523e636f013818d3a","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.10.38","_npmUser":{"name":"dev","email":"eric@hellouser.net"},"dist":{"shasum":"3a8643a25fd02ac32172384523e636f013818d3a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.1.1.tgz","integrity":"sha512-LlVTWds7Ch9lgKvOS0iGWlVxp7Rwu3sCQy/wbmrErwcI41l9h6QDHg2Rratfqb2//KeQzKyE96rxePmrVz0cdg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDpqcOkBYIK2Q912zr9+u1OBUQlZD0URmy5n6aU/3qZogIhAKWrL6oOnA+lDaVI0WHZ/NXH4DOpOdE8fGAXVDhjF2r3"}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"}],"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.1.2":{"name":"ionic-plugin-deploy","version":"0.1.2","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugins-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugins-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugins-deploy#readme","gitHead":"eb46cff1e88ab22e86408352be2d5d36ee947832","_id":"ionic-plugin-deploy@0.1.2","scripts":{},"_shasum":"756920f0e9487c1f23a1d73f8a992e046c76b781","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.10.38","_npmUser":{"name":"dev","email":"eric@hellouser.net"},"dist":{"shasum":"756920f0e9487c1f23a1d73f8a992e046c76b781","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.1.2.tgz","integrity":"sha512-M2AnkJaOnTjos+yxL0GLfLTBY0j4SrteZmKjr/1RNzXHrfvWk4JDUL6iZ7ikYjE+gCKFyUH6JY/tB+jwQOhV4Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHOsO3KWWcEKu8ksqDj8ypRcesrbqFv2WaeVYH+YJs2mAiEA8f9Xa50A5V+A75z3YWUPaIP+KS5g3IJKaRCr1qtEtAw="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"}],"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.1.3":{"name":"ionic-plugin-deploy","version":"0.1.3","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugins-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugins-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugins-deploy#readme","gitHead":"22266a947a49dd0eca131997dd6e0c74d7173063","_id":"ionic-plugin-deploy@0.1.3","scripts":{},"_shasum":"9f0650857cbe18287a6a7285cbd6157ac21f38fe","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.10.38","_npmUser":{"name":"dev","email":"eric@hellouser.net"},"dist":{"shasum":"9f0650857cbe18287a6a7285cbd6157ac21f38fe","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.1.3.tgz","integrity":"sha512-GMNbVwlZHhMZNMjFqPOshUD8S6JUTSFJunUu63rmtR2zEIFC0EvWbVBzNWWd3gegogBn3lXLZfLx4z8QG3u09w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFJSJzhVbLKatgtHTwms7YCR9Uju8n6mkdLLXAXFEvs8AiEA/EZhuVaydwSZ+0XUZ7/cd4w/gfEOX9J+56D7IR6u+nY="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"}],"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.1.4":{"name":"ionic-plugin-deploy","version":"0.1.4","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugins-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugins-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugins-deploy#readme","gitHead":"1023eb3dce5b5e5e358c691b95cd50b607137ec6","_id":"ionic-plugin-deploy@0.1.4","scripts":{},"_shasum":"ea7ccf00a60a9dab4acf41dae55c14de0592ba5f","_from":".","_npmVersion":"2.6.1","_nodeVersion":"0.10.36","_npmUser":{"name":"dev","email":"rudy@drifty.com"},"dist":{"shasum":"ea7ccf00a60a9dab4acf41dae55c14de0592ba5f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.1.4.tgz","integrity":"sha512-d/0D10BGCRaAwAhXiXL0LA6DAyXi/mlvEO0taCIahFqb8P7pyLQFMbBDMoAd6SoU2+7NzLGjEJ0hw35KCuXCOw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHcKzFjW0gckm7YjBlPomLO8lVTMa4uqNWUgbI6p3KVgAiEArvdhmJbLwaXwhRaMKQTYgC5N3VwOEp2DzKpLw1b/+W0="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"}],"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.1.5":{"name":"ionic-plugin-deploy","version":"0.1.5","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugins-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugins-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugins-deploy#readme","gitHead":"6913d47ec61b54c99df657a334c92fe2d1c92853","_id":"ionic-plugin-deploy@0.1.5","scripts":{},"_shasum":"e8b68e51b55736020e80401ba5fe432439bb4374","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.10.38","_npmUser":{"name":"dev","email":"eric@hellouser.net"},"dist":{"shasum":"e8b68e51b55736020e80401ba5fe432439bb4374","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.1.5.tgz","integrity":"sha512-hOnil8tqiP7wi9DCsQHIEE6i6lOeZaIPLCYqNDleKul0/5ZwHx461YaIOtu6qPP14zx8wA5J58coZQCUTaHuzw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCjdlrflTBoSnmQ1w0eDyG/PyZJ4cnbzGz5w7o9jYMbhAIhAOI6i4byd8QgYyZDOVfaEckPuSgAL580kzpwfDH8plxW"}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"}],"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.1.6":{"name":"ionic-plugin-deploy","version":"0.1.6","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugins-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugins-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugins-deploy#readme","gitHead":"65c0cd407ff753faecd71af93a3cc3366c209fe1","_id":"ionic-plugin-deploy@0.1.6","scripts":{},"_shasum":"e622270e9de613b09fb6a796750ba981c7961772","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.10.38","_npmUser":{"name":"dev","email":"eric@hellouser.net"},"dist":{"shasum":"e622270e9de613b09fb6a796750ba981c7961772","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.1.6.tgz","integrity":"sha512-snWqTtjX4Fybwl89sncuFgQwec1NHqv1kQnVmPzA8VMGuwhfMb0XrKNoc8pbdZpLYzMcl0GSm/CEIfLu2Ec4Uw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC35Qw6lk69KQLWOx4EfGN1tCUgOtV7srCQEQSaHGYNfAIhAK6tsBOg/BTlaT4/hKsj8Ose07o9Y+ZicVxS9A1H0uFL"}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"}],"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.2.0":{"name":"ionic-plugin-deploy","version":"0.2.0","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugins-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugins-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugins-deploy#readme","gitHead":"12fae06f3ee2441df63f810140ee001e6555b808","_id":"ionic-plugin-deploy@0.2.0","scripts":{},"_shasum":"5998c7b4982f33a920e47a465665e85cdf84ba16","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.10.38","_npmUser":{"name":"dev","email":"eric@hellouser.net"},"dist":{"shasum":"5998c7b4982f33a920e47a465665e85cdf84ba16","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.2.0.tgz","integrity":"sha512-7GWnIM4RvZ2z0UDAi+jzPCIH+blPMOitoSVVR0Q4DXma63nCnvIilFZqya2g4r9ISQRUPxJ9GioVgzOSArSufA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCBcx2guo4+xQFLo62c2nwxUeHnmxZOfcW4iPttVZa06AIgFBxuWEhuLhezBvJ3X/H/5dIwzYpnVRUP/7tgJfxZ9So="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"}],"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.2.1":{"name":"ionic-plugin-deploy","version":"0.2.1","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugins-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugins-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugins-deploy#readme","gitHead":"e65846cd6a87ee9375b17752ba3fdc92ce719ea5","_id":"ionic-plugin-deploy@0.2.1","scripts":{},"_shasum":"1da838bcb77f6e6df84481a283a74e1ca652c809","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.10.38","_npmUser":{"name":"dev","email":"eric@hellouser.net"},"dist":{"shasum":"1da838bcb77f6e6df84481a283a74e1ca652c809","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.2.1.tgz","integrity":"sha512-n05ZRMJbrLVK0CYvzzELftswEO8uIqmo3ZbMqeU72Jyhmg61W68extVsMOmfPN2LtQ2gg9+QxSDypi8QM2XoYA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICeAqXTTIEn2JKZQ2tLU/WEnPRxZ0Qt6CXEndMySrdGUAiEAusw/lT9R0urhRjD7QQuJWe73a0AMua3dfgK4TU651GE="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"}],"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.2.2":{"name":"ionic-plugin-deploy","version":"0.2.2","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugins-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugins-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugins-deploy#readme","gitHead":"5ab8e5c51109f5394e8805ffec919882a159d26f","_id":"ionic-plugin-deploy@0.2.2","scripts":{},"_shasum":"6f9915812d90273f20f65395f224f7a0f07c73c8","_from":".","_npmVersion":"2.12.0","_nodeVersion":"0.10.38","_npmUser":{"name":"dev","email":"eric@hellouser.net"},"dist":{"shasum":"6f9915812d90273f20f65395f224f7a0f07c73c8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.2.2.tgz","integrity":"sha512-rY7hVcyygTCtGYK86M+/2v3PIhDijGVhWL5AV4qATijACbAd1K375pzFqr37Pbwhl/RSzdBm128st90tzxcDuw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICo6JVgU7Xcx4pfQA2l7UUsXq0vyPO+U3pdhRMIhSQA6AiANz1hjwwaxPvZMmpRKsVIIEPpYTFO0HLhXK7MyUiB07Q=="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"}],"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.2.3":{"name":"ionic-plugin-deploy","version":"0.2.3","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugins-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugins-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugins-deploy#readme","gitHead":"7e8d77f00e33f78a7f9f3ca21fd417fc5cc06e3c","_id":"ionic-plugin-deploy@0.2.3","scripts":{},"_shasum":"5b58d6cc8e144dadab195f29f22171befd16a5ae","_from":".","_npmVersion":"2.12.0","_nodeVersion":"0.10.38","_npmUser":{"name":"dev","email":"eric@hellouser.net"},"dist":{"shasum":"5b58d6cc8e144dadab195f29f22171befd16a5ae","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.2.3.tgz","integrity":"sha512-Q7t//6HI/J3Boofwet1OFMFDAWpR4lCfVqF0ANhUTTg8RJ575hLnXQaywCZQvdH8UgmOqDBmvMQVTooAExyvig==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCH1pzNZQtyk7PeQpBDHyh/JE+gwSqF8HvF2es9BipLeMCIQCdII2aX7sDvaPfY2VCrMn7cTlgF7o4sI/2k5+1t/kMzw=="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"}],"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.3.0":{"name":"ionic-plugin-deploy","version":"0.3.0","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"6e9b0f0673163d6c5217dfec8c5cb9ef2a82a049","_id":"ionic-plugin-deploy@0.3.0","scripts":{},"_shasum":"c7c36486969f55e88c45eb0dfbaadfd304080530","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.7","_npmUser":{"name":"dev","email":"dwieeb@gmail.com"},"dist":{"shasum":"c7c36486969f55e88c45eb0dfbaadfd304080530","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.3.0.tgz","integrity":"sha512-/vBhEimgfInWL/xZxAeoy6RxOF8d+nD86mlHKOAJKB0QKvmlkdfl9gW/+X0DInSX6ubvyWyzb3WG8rBNXzlZoQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDMTZd9aXbKjnunY2+4IUm1nVanr1x68K33TEOSDlfGbQIgT5/ABrPecAbRUE3IntMaf0uz1umdKOS8rRSmXNXYjrg="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"},{"name":"dev","email":"dwieeb@gmail.com"}],"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.4.0":{"name":"ionic-plugin-deploy","version":"0.4.0","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"c48dd70b7705305f8ae26fb43cb892e2b719eeeb","_id":"ionic-plugin-deploy@0.4.0","scripts":{},"_shasum":"e05ec2363a6fd3e53404dd6dfb3ab6d0cf405d36","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.12.7","_npmUser":{"name":"dev","email":"eric@hellouser.net"},"dist":{"shasum":"e05ec2363a6fd3e53404dd6dfb3ab6d0cf405d36","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.4.0.tgz","integrity":"sha512-0NQ67Jgq1xHAk564GLVSQ++SWoqc6d02bH5ilo/Ye526yiQ92Dv6VQkrFKU98q3QSNUzW2ryvBWovxqxrpERvA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCNh+7e+FVpWNZVHdamPExG3/wR4ISHS57sOFbyax+JmwIgA3t1TSBRDVDrQ7vAms7HYHCgIHZKvMzbywZw+xKRNcA="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"},{"name":"dev","email":"dwieeb@gmail.com"}],"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.4.1":{"name":"ionic-plugin-deploy","version":"0.4.1","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"94b353e61dcc3d2dfa175b616c12998dbed827f4","_id":"ionic-plugin-deploy@0.4.1","scripts":{},"_shasum":"42a9433841dccecca6771a2c0af1d8c5498abd2f","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.12.7","_npmUser":{"name":"dev","email":"eric@hellouser.net"},"dist":{"shasum":"42a9433841dccecca6771a2c0af1d8c5498abd2f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.4.1.tgz","integrity":"sha512-dOzUZcomLJIHH0Jei6vxoS/Lgd8/DV0HucnaXM5vPAAgMia4Py0FodGJgvLtjsh7lo8FPWTVG9DCKDca3ccf6g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCWU/Jd780G1jkGNPd3eBrOse8jNawQ5Cr3EwhQhUNqkwIgUvvwT26BfbxMmo7wY/iVngp+0o9amv98h833Oainvj4="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"},{"name":"dev","email":"dwieeb@gmail.com"}],"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.5.0":{"name":"ionic-plugin-deploy","version":"0.5.0","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"574f4bb1bd293d66410bd80c06c6c33e0f5cd19f","_id":"ionic-plugin-deploy@0.5.0","scripts":{},"_shasum":"20625d372a83102883243d02ca763e59c07fdb9a","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.12.7","_npmUser":{"name":"dev","email":"eric@hellouser.net"},"dist":{"shasum":"20625d372a83102883243d02ca763e59c07fdb9a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.5.0.tgz","integrity":"sha512-6VqSqipc37UGTisztliP40Bsc6rVb7S4rRF6Ji4aGKI2rZd8jYtzkC+0A/LitqLRcgafsD7CRfIkjYfsw/Aidg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDVpOIcFS1fMmwFtFbQT20Yivl05BwQfsSgAUz36eFWegIhALaHkB2uWm2xi5MGx2vOmvSwjar8SPuD8juFlGUPSEl2"}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"},{"name":"dev","email":"dwieeb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic-plugin-deploy-0.5.0.tgz_1458239457563_0.545407138299197"},"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.5.1":{"name":"ionic-plugin-deploy","version":"0.5.1","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"e4171351cfd9c424af92bdb7d10350d1cf2ab38d","_id":"ionic-plugin-deploy@0.5.1","scripts":{},"_shasum":"88a846d0038d51a294c960c4fcf593a5114178ba","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.12.7","_npmUser":{"name":"dev","email":"rudy@drifty.com"},"dist":{"shasum":"88a846d0038d51a294c960c4fcf593a5114178ba","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.5.1.tgz","integrity":"sha512-XXjNIxIWH4LEb+ClGrvmZhwJrL08Ij0Gp6Re6TMW8BBit+hGUlWUyKdZfrAKQx8hTrUrXZFHbBOX5d9G2djNNw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD45s2LtSuJRGkXIdiLBdwo1cc7LZvsE5e10x/XDhsBrgIgH9L5lPeFiXbkOC7nb6Ma/lvQzCR9rWbJ0DIIMjDFblc="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"},{"name":"dev","email":"dwieeb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic-plugin-deploy-0.5.1.tgz_1461249463732_0.5940781242679805"},"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.5.2":{"name":"ionic-plugin-deploy","version":"0.5.2","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"977c177c76d11c290a66e4b2bcd334fcaebf280f","_id":"ionic-plugin-deploy@0.5.2","scripts":{},"_shasum":"6b074eda2b8e0e7c6cd0a1a8ed6e6daf1fe0631f","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.12.7","_npmUser":{"name":"dev","email":"rudy@drifty.com"},"dist":{"shasum":"6b074eda2b8e0e7c6cd0a1a8ed6e6daf1fe0631f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.5.2.tgz","integrity":"sha512-A6EDvZ90EuyrnPiogRfuIK4ZI8n4mCZN8WLN/d5XLq+eeckT4u4MVM3kitcPYSgDeS5asToTqqqxhFw+xwkD2A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGyzQTp7eE0W9cBIVV7FCx2nLH6YSFB+mx3vRsJa+06qAiBTILGLW+U6WMTTLqd9E+RAN6p3RuiyM5jPxUorzatC/A=="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"},{"name":"dev","email":"dwieeb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic-plugin-deploy-0.5.2.tgz_1461250164530_0.7707910872995853"},"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.5.3":{"name":"ionic-plugin-deploy","version":"0.5.3","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"baefef66491fb627b63ce87d38a858aef8af7883","_id":"ionic-plugin-deploy@0.5.3","scripts":{},"_shasum":"2ab3b2cd30b795d9414cc962ca6a04d068670477","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.12.7","_npmUser":{"name":"dev","email":"rudy@drifty.com"},"dist":{"shasum":"2ab3b2cd30b795d9414cc962ca6a04d068670477","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.5.3.tgz","integrity":"sha512-iDetExvxAHKVcKkOCHFvkhfy+MJbQya8hK0+QBxZdOpEIqWcFMiSgyE7MOVNAYCKXht7+Q01uL6TPZteO45+FA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCqNYQLZBCn8El7D80ioq4DUKEtJ68+vqEK0d0f3GDHPQIhANAGgSl4MNOxjz4n8a9796OTephgsNAoxxIq75cSejEm"}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"},{"name":"dev","email":"dwieeb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic-plugin-deploy-0.5.3.tgz_1461599516510_0.47025155858136714"},"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.5.4":{"name":"ionic-plugin-deploy","version":"0.5.4","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"0c069fd9b386ad1a5e09f246ad5871feaf2acfa4","_id":"ionic-plugin-deploy@0.5.4","scripts":{},"_shasum":"32394fb36026a526ec022b29149c57b2a7c1ee6c","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.12.7","_npmUser":{"name":"dev","email":"rudy@drifty.com"},"dist":{"shasum":"32394fb36026a526ec022b29149c57b2a7c1ee6c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.5.4.tgz","integrity":"sha512-AWwqi3PT75SCIcba3HRc26OjPVcSXJSmeQ5+V/p8OeR6SjfCkKrCeJyya/yfG/SIBlTlA9dGiP1dl0OzRM18zQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDJ1/ebnH36vD4WZsGKUpNHiUF5ILV0+tce/BfPv0ZlfwIgff90axCj50iaibHN+1M1FsUmjIZ+1p7K8ykUzpwEwJ8="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"},{"name":"dev","email":"dwieeb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic-plugin-deploy-0.5.4.tgz_1461677687520_0.3831920875236392"},"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.5.6":{"name":"ionic-plugin-deploy","version":"0.5.6","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"2189d8095bc4fe72a27639452ec5c9da0555e51b","_id":"ionic-plugin-deploy@0.5.6","scripts":{},"_shasum":"6b72084c41efb0b1d361d450847238ca84d627bb","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.12.7","_npmUser":{"name":"dev","email":"rudy@ionic.io"},"dist":{"shasum":"6b72084c41efb0b1d361d450847238ca84d627bb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.5.6.tgz","integrity":"sha512-GisDKebsMShhx9xqXCyLGRCuXRAuw5ltObHYgW0/GmjJfKcxzL/v6ysCXUIofchQ9XfvRTikTEUcVXqJ6r0QGg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHaGfDg3vQyE5j+H8S6rxNZ2PsC3uhmgsnxPL7+in9luAiEA/pMOIkj7/JYIAC7k3b9q4hMIiC0Bw1TjU0QCdBWoC2M="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"},{"name":"dev","email":"dwieeb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic-plugin-deploy-0.5.6.tgz_1465394744827_0.8441588245332241"},"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.5.7":{"name":"ionic-plugin-deploy","version":"0.5.7","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"0d08316fd835cca8c7be400af1f79dcfd2dfda09","_id":"ionic-plugin-deploy@0.5.7","scripts":{},"_shasum":"c5ab652fe328d71b60116fb4262749030a9df6f1","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.6","_npmUser":{"name":"dev","email":"rudy@ionic.io"},"dist":{"shasum":"c5ab652fe328d71b60116fb4262749030a9df6f1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.5.7.tgz","integrity":"sha512-uAL5aBh8fm0tZy++LVgzNfiae0cYr3ovg5VL/H3TvS/VH7hWPQCtXjkS7j1QpTzPVIK0hwW+er8CHn26gs8YJA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDLRXvy9CnVoo4WdGvymU3sGE9u0P3Z34itm5vLHkFDAAiEAh6tleHtJnnhTGfxr96Xg/qCMXW2r6pkDAGbGf3QTosQ="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"},{"name":"dev","email":"dwieeb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic-plugin-deploy-0.5.7.tgz_1467817075626_0.5833925590850413"},"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.6.0":{"name":"ionic-plugin-deploy","version":"0.6.0","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"30b85cce165a32ceb77794b9573788445d80bcac","_id":"ionic-plugin-deploy@0.6.0","scripts":{},"_shasum":"d0a3aac9e58db6e778e0a5423374cfa1b5820595","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.6","_npmUser":{"name":"dev","email":"rudy@ionic.io"},"dist":{"shasum":"d0a3aac9e58db6e778e0a5423374cfa1b5820595","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.6.0.tgz","integrity":"sha512-y3hzva7ki2HSGhz0Twm98GZJ3Urf5kiV3ywF3yhkroE44tMjq8hvolQ2fCRQ62FibULFNIC59OU8CfCEkyv0ew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEMe5awNd7h/VWw/few4hZkZZhpddXmDvVbnL2MAzC1eAiBhall/ndZqPy8KK8ApI0wXYF01UPGLri1CGHAc1J9Naw=="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"},{"name":"dev","email":"dwieeb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic-plugin-deploy-0.6.0.tgz_1470942325815_0.10835358244366944"},"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.6.1":{"name":"ionic-plugin-deploy","version":"0.6.1","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"e81f2d6b6faf0ce9d8ce049b7ac747ac31cb4373","_id":"ionic-plugin-deploy@0.6.1","scripts":{},"_shasum":"eb2e053cd602184eaccb4bdc523ac82c1b61ac4a","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.6","_npmUser":{"name":"dev","email":"rudy@ionic.io"},"dist":{"shasum":"eb2e053cd602184eaccb4bdc523ac82c1b61ac4a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.6.1.tgz","integrity":"sha512-bj4SM4NFEipijjVmTaIBL3XlzeAVxy5f7A0/QlUb8OoUjbHZZ2Ivu5e4T1oSV5Ky3e42Z8dj2yDgSyOGU1QU3g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC9MC9e4gSbB0soHTyGFdecQLWkcIftyq+0ReDirM3eZAIgP33wAeXwhKCQSIeYDi+CmHRsRvqmmb5S7aRn1aDwGBU="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"},{"name":"dev","email":"dwieeb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic-plugin-deploy-0.6.1.tgz_1471965051673_0.6877212165854871"},"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.6.2":{"name":"ionic-plugin-deploy","version":"0.6.2","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"af32845484abfb18dc0555350ebd648e8e02ec2d","_id":"ionic-plugin-deploy@0.6.2","scripts":{},"_shasum":"e695b37d4105544c5ed00f996a16e2205d93c1e5","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.6","_npmUser":{"name":"dev","email":"rudy@ionic.io"},"dist":{"shasum":"e695b37d4105544c5ed00f996a16e2205d93c1e5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.6.2.tgz","integrity":"sha512-HFayqR4hJXlQ/tOf+AZ+AlLC5VMEHnQ3TynpsP2Ryvq3ScVaTcni/wzbiX4KseHmtuMTGGJbFz84dUZQInb2dA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE3oi+roUVbXC04eY5Qo08YhBgfnfyW0Ke5zOG3Vtak6AiBzpLMWF9fKNOY1HMUde9nbqduoNBQy/TkFqNJyIRb2iA=="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"},{"name":"dev","email":"dwieeb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic-plugin-deploy-0.6.2.tgz_1472050761259_0.32360979565419257"},"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.6.3":{"name":"ionic-plugin-deploy","version":"0.6.3","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"48cd4f51297c7228b68cb4cf3100412a5114cf90","_id":"ionic-plugin-deploy@0.6.3","scripts":{},"_shasum":"e7991178983eb94a39b0ba913e95fc693ff9a472","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.6","_npmUser":{"name":"dev","email":"rudy@ionic.io"},"dist":{"shasum":"e7991178983eb94a39b0ba913e95fc693ff9a472","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.6.3.tgz","integrity":"sha512-VKaOl5eJDypKcZv9Tt4476L/E/GdAwrhEKxW6Y+gekWtHlP+EnOiGdAC1tHpmPoLpl9SFls3RaeCuExu8sNNDQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDrtgT1j3UfVoQnl3VLBL70J33JR0Zt4iVzjFLILxb2XAIhAJAsb95M7VPVM0Gh0Y+cC6E8KIifAUDh8NXZYdVpNfle"}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"},{"name":"dev","email":"dwieeb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic-plugin-deploy-0.6.3.tgz_1472504595305_0.6592850412707776"},"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.6.4":{"name":"ionic-plugin-deploy","version":"0.6.4","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"f206fb787642bed365a287e3d266103e7d331817","_id":"ionic-plugin-deploy@0.6.4","scripts":{},"_shasum":"db27b762671e13cde56e87adefa218f1945fa3ff","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.6","_npmUser":{"name":"dev","email":"rudy@ionic.io"},"dist":{"shasum":"db27b762671e13cde56e87adefa218f1945fa3ff","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.6.4.tgz","integrity":"sha512-H92jiALY2D3RGjESkP5f1nNSsLmLq1BM2rky8fbHVzcpXY6km/8almF4kYuUpddewuv2tR9izn3eZADtYWyWfA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFb65im6zr88cvQqJIopBOjZpFvSULLV+N/O+Y5e4ptJAiEA0TSBPYGzlK331NHvG4Jl4mXzziLEkRMeKNsKa+hJlZA="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"},{"name":"dev","email":"dwieeb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic-plugin-deploy-0.6.4.tgz_1473369784729_0.8869496514089406"},"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.6.5":{"name":"ionic-plugin-deploy","version":"0.6.5","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"ed4532335a93c28b90841f460e18af5fd41129e3","_id":"ionic-plugin-deploy@0.6.5","scripts":{},"_shasum":"2ea23530c8dc562ee2435283b9ade203a604f8b1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"dev","email":"rudy@ionic.io"},"dist":{"shasum":"2ea23530c8dc562ee2435283b9ade203a604f8b1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.6.5.tgz","integrity":"sha512-C123vEc0ZDAvfRd3whNOxllCPNodGd/6eg+6NZJzNDeatVWVmAEKpvwYCtmyV1LzKiyz6HwdcJWTYpcHZ75OfQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBjQcCcRWz94+pYKmMf1wXw1u/vtVyAnjdQW5KE4aE0QAiEA7MKAODPDU0pwGSiAHERkxbIRCMQY/0L7E8h/3CctH+w="}]},"maintainers":[{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@drifty.com"},{"name":"dev","email":"dwieeb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic-plugin-deploy-0.6.5.tgz_1475786041690_0.59263805905357"},"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.6.6":{"name":"ionic-plugin-deploy","version":"0.6.6","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"05895312bb18c5c1c51db30bcf5cf07aca41f384","_id":"ionic-plugin-deploy@0.6.6","scripts":{},"_shasum":"bec9ad60220f649ac24a9fdf2682a7a684563003","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"dev","email":"tim@ionic.io"},"dist":{"shasum":"bec9ad60220f649ac24a9fdf2682a7a684563003","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.6.6.tgz","integrity":"sha512-o6XdhWvF8e3xZRYFHKCuTYQngovVz+QfDz53APgGy9JljptOjX3xfyDA+CgKmuH3/XQJ8OFTS4LmEWFQwSwRlg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDLSEXPuM5MH81VQQID2JQx1vZ8Vd82z3X71jYzlHORlAIhAKGRcuQ4qxfLT1hbcQUWnvp+RMEy9z3PJgtzQT3SxoID"}]},"maintainers":[{"name":"dev","email":"dwieeb@gmail.com"},{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@ionic.io"},{"name":"dev","email":"tim@ionic.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic-plugin-deploy-0.6.6.tgz_1489446845868_0.22856448171660304"},"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"0.6.7":{"name":"ionic-plugin-deploy","version":"0.6.7","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"03330af1f5a080601fd6e324f796732fec2058d6","_id":"ionic-plugin-deploy@0.6.7","scripts":{},"_shasum":"517e4285470e0ccd397609764cee2ae8ec6c6d3f","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"dev","email":"rudy@ionic.io"},"dist":{"shasum":"517e4285470e0ccd397609764cee2ae8ec6c6d3f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-0.6.7.tgz","integrity":"sha512-CIsCB7/0Fmld6+sWfHxVQPUEODexB7A8AsMBuxdPr02gFLVJZvzccJxLm7CO/X/T9zqnmL4pnFsE6XjoXxiNGg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG3I12jvZY0FlcUIJz/G7ncQucAA49MVnk7h67tRM2WhAiAcoYhAeqnbC33fFf4Q7m54gmTMF9lE2ygLzfNe1SIdNw=="}]},"maintainers":[{"name":"dev","email":"dwieeb@gmail.com"},{"name":"dev","email":"eric@hellouser.net"},{"name":"dev","email":"rudy@ionic.io"},{"name":"dev","email":"tim@ionic.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic-plugin-deploy-0.6.7.tgz_1494366394885_0.6233504198025912"},"directories":{},"deprecated":"This plugin is no longer supported. Please move to the new Ionic Pro plugin: cordova-plugin-ionic"},"1.0.0-alpha.0":{"name":"ionic-plugin-deploy","version":"1.0.0-alpha.0","description":"Ionic Deploy Plugin","cordova":{"id":"ionic-plugin-deploy","platforms":["android","ios"]},"repository":{"type":"git","url":"git+https://github.com/driftyco/ionic-plugin-deploy.git"},"keywords":["Ionic","deploy","ecosystem:cordova","cordova-android","cordova-ios"],"author":{"name":"Ionic"},"license":"Apache 2.0","bugs":{"url":"https://github.com/driftyco/ionic-plugin-deploy/issues"},"homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme","gitHead":"3a51647368f49e7d97e25fbf29e560df514782f4","_id":"ionic-plugin-deploy@1.0.0-alpha.0","scripts":{},"_shasum":"b1e376c264928520cbb3d517ee1a8ddbb4f368a3","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"dev","email":"rudy@ionic.io"},"dist":{"shasum":"b1e376c264928520cbb3d517ee1a8ddbb4f368a3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-plugin-deploy/-/ionic-plugin-deploy-1.0.0-alpha.0.tgz","integrity":"sha512-Eu+e+KXGtDDpApCXMZLIcMXttwLxRaGSKfZ/7AgZkraQPf5XclpM4Uvt78KAW/vUnu2elHgQlltH1qT2xgV0pg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB0oOOPGx8qw+dky1Zg87U/N5o6eZJxx8Yu1/oDljkPuAiBWoMCobhkyLl3SCYUV9JGpZdzOH5C+RkPgzzlifan8Gw=="}]},"maintainers":[{"email":"tim@ionic.io","name":"dev"},{"email":"dwieeb@gmail.com","name":"dev"},{"email":"rudy@ionic.io","name":"dev"},{"email":"eric@hellouser.net","name":"dev"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-plugin-deploy-1.0.0-alpha.0.tgz_1497549374032_0.8454330919776112"},"directories":{}}},"name":"ionic-plugin-deploy","time":{"modified":"2022-06-19T02:11:11.477Z","created":"2015-05-05T20:10:54.793Z","0.1.0":"2015-05-05T20:10:54.793Z","0.1.1":"2015-05-12T15:44:49.556Z","0.1.2":"2015-05-14T12:36:03.140Z","0.1.3":"2015-05-14T12:39:40.480Z","0.1.4":"2015-05-19T20:34:39.820Z","0.1.5":"2015-05-26T20:07:04.842Z","0.1.6":"2015-06-24T18:34:15.482Z","0.2.0":"2015-07-01T12:01:20.471Z","0.2.1":"2015-07-01T20:13:03.180Z","0.2.2":"2015-07-14T12:15:53.231Z","0.2.3":"2015-07-14T18:19:54.295Z","0.3.0":"2015-08-05T18:54:45.301Z","0.4.0":"2015-10-15T20:04:59.325Z","0.4.1":"2015-11-02T13:08:08.744Z","0.5.0":"2016-03-17T18:31:00.289Z","0.5.1":"2016-04-21T14:37:45.100Z","0.5.2":"2016-04-21T14:49:25.907Z","0.5.3":"2016-04-25T15:51:59.100Z","0.5.4":"2016-04-26T13:34:49.508Z","0.5.6":"2016-06-08T14:05:47.649Z","0.5.7":"2016-07-06T14:57:56.892Z","0.6.0":"2016-08-11T19:05:27.043Z","0.6.1":"2016-08-23T15:10:54.104Z","0.6.2":"2016-08-24T14:59:23.401Z","0.6.3":"2016-08-29T21:03:16.554Z","0.6.4":"2016-09-08T21:23:06.768Z","0.6.5":"2016-10-06T20:34:04.374Z","0.6.6":"2017-03-13T23:14:08.293Z","0.6.7":"2017-05-09T21:46:36.988Z","1.0.0-alpha.0":"2017-06-15T17:56:15.347Z"},"readmeFilename":"README.md","homepage":"https://github.com/driftyco/ionic-plugin-deploy#readme"}