{"maintainers":[{"email":"xmarkclx@gmail.com","name":"anonymous"},{"email":"npm@terikon.com","name":"anonymous"}],"dist-tags":{"latest":"2.3.1"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"description":"Plugin that just gets photos from the gallery","readme":"[![Build Status](https://travis-ci.org/terikon/cordova-plugin-photo-library.svg?branch=master)](https://travis-ci.org/terikon/cordova-plugin-photo-library)\n\nKnown issues:\n- This plugin does not work with WKWebView. Please do not use it if you planning to switch to WKWebView, until someone will resolve this issue.\n\nThat's how it looks and performs in real app:\n\n[![](https://img.youtube.com/vi/qHnnRsZ7klE/0.jpg)](https://www.youtube.com/watch?v=qHnnRsZ7klE)\n\nDemo projects (runnable online):\n\n- [For jQuery](https://github.com/terikon/photo-library-demo-jquery)\n- [For Ionic 2](https://github.com/terikon/photo-library-demo-ionic2)\n- [Vanilla JS with PhotoSwipe](https://github.com/terikon/photo-library-demo-photoswipe)\n\nDisplays photo library on cordova's HTML page, by URL. Gets thumbnail of arbitrary sizes, works on multiple platforms, and is fast.\n\n- Displays photo gallery as web page, and not as boring native screen which you cannot modify. This brings back control over your app to you.\nFor example, you can use [PhotoSwipe](https://github.com/dimsemenov/photoswipe) library to present photos.\n- Provides custom schema to access thumbnails: cdvphotolibrary://thumbnail?fileid=xxx&width=128&height=128&quality=0.5 .\n- Works on Android, iOS and browser (cordova serve).\n- Fast - uses browser cache.\n- Can save photos (jpg, png, animated gifs) and videos to specified album on device.\n- Handles permissions.\n- Handles images [EXIF rotation hell](http://www.daveperrett.com/articles/2012/07/28/exif-orientation-handling-is-a-ghetto/).\n- On iOS, written in Swift and not Objective-C.\n\n**Co-maintainer needed**\n\nCurrently Android code is pretty stable, iOS has few stability [issues](https://github.com/terikon/cordova-plugin-photo-library/issues).\n**Co-maintainer with iOS/Swift knowlege is needed, please [contact](https://github.com/viskin)**.\n\nContributions are welcome.\nPlease add only features that can be supported on both Android and iOS.\nPlease write tests for your contribution.\n\n# Install\n\n    cordova plugin add cordova-plugin-photo-library --variable PHOTO_LIBRARY_USAGE_DESCRIPTION=\"To choose photos\" --save\n\n# Usage\n\nAdd cdvphotolibrary protocol to Content-Security-Policy, like this:\n\n```\n<meta http-equiv=\"Content-Security-Policy\" content=\"default-src 'self' 'unsafe-inline' 'unsafe-eval' data: gap: ws: https://ssl.gstatic.com; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob: cdvphotolibrary:\">\n```\n\nFor remarks about angular/ionic usage, see below.\n\n## Displaying photos\n\n```js\ncordova.plugins.photoLibrary.getLibrary(\n  function (result) {\n    var library = result.library;\n    // Here we have the library as array\n\n    library.forEach(function(libraryItem) {\n      console.log(libraryItem.id);          // ID of the photo\n      console.log(libraryItem.photoURL);    // Cross-platform access to photo\n      console.log(libraryItem.thumbnailURL);// Cross-platform access to thumbnail\n      console.log(libraryItem.fileName);\n      console.log(libraryItem.width);\n      console.log(libraryItem.height);\n      console.log(libraryItem.creationDate);\n      console.log(libraryItem.latitude);\n      console.log(libraryItem.longitude);\n      console.log(libraryItem.albumIds);    // array of ids of appropriate AlbumItem, only of includeAlbumsData was used\n    });\n\n  },\n  function (err) {\n    console.log('Error occured');\n  },\n  { // optional options\n    thumbnailWidth: 512,\n    thumbnailHeight: 384,\n    quality: 0.8,\n    includeAlbumData: false // default\n  }\n);\n```\n\nThis method is fast, as thumbails will be generated on demand.\n\n## Getting albums\n\n```js\ncordova.plugins.photoLibrary.getAlbums(\n  function (albums) {\n    albums.forEach(function(album) {\n      console.log(album.id);\n      console.log(album.title);\n    });\n  }, \n  function (err) { }\n);\n```\n\n## Saving photos and videos\n\n``` js\nvar url = 'file:///...'; // file or remote URL. url can also be dataURL, but giving it a file path is much faster\nvar album = 'MyAppName';\ncordova.plugins.photoLibrary.saveImage(url, album, function (libraryItem) {}, function (err) {});\n```\n\n```js\n// iOS quirks: video provided cannot be .webm . Use .mov or .mp4 .\ncordova.plugins.photoLibrary.saveVideo(url, album, function () {}, function (err) {});\n```\n\nsaveImage and saveVideo both need write permission to be granted by requestAuthorization.\n\n## Permissions\n\nThe library handles tricky parts of aquiring permissions to photo library.\n\nIf any of methods fail because lack of permissions, error string will be returned that begins with 'Permission'. So, to process on aquiring permissions, do the following:\n```js\ncordova.plugins.photoLibrary.getLibrary(\n  function ({library}) { },\n  function (err) {\n    if (err.startsWith('Permission')) {\n      // call requestAuthorization, and retry\n    }\n    // Handle error - it's not permission-related\n  }\n);\n```\n\nrequestAuthorization is cross-platform method, that works in following way:\n\n- On android, will ask user to allow access to storage\n- On ios, on first call will open permission prompt. If user denies it subsequent calls will open setting page of your app, where user should enable access to Photos.\n\n```js\ncordova.plugins.photoLibrary.requestAuthorization(\n  function () {\n    // User gave us permission to his library, retry reading it!\n  },\n  function (err) {\n    // User denied the access\n  }, // if options not provided, defaults to {read: true}.\n  {\n    read: true,\n    write: true\n  }\n);\n```\n\nRead permission is added for your app by the plugin automatically. To make writing possible, add following to your config.xml:\n```xml\n<platform name=\"android\">\n  <config-file target=\"AndroidManifest.xml\" parent=\"/*\">\n    <uses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\" />\n  </config-file>\n</platform>\n```\n\n## Chunked output\n\n```js\ncordova.plugins.photoLibrary.getLibrary(\n  function (result) {\n    var library = result.library;\n    var isLastChunk = result.isLastChunk;\n  },\n  function (err) { },\n  {\n    itemsInChunk: 100, // Loading large library takes time, so output can be chunked so that result callback will be called on\n    chunkTimeSec: 0.5, // each X items, or after Y secons passes. You can start displaying photos immediately.\n    useOriginalFileNames: false, // default, true will be much slower on iOS\n    maxItems: 200, // limit the number of items to return\n  }\n);\n```\n\n## In addition you can ask thumbnail or full image for each photo separately, as cross-platform url or as blob\n\n```js\n// Use this method to get url. It's better to use it and not directly access cdvphotolibrary://, as it will also work on browser.\ncordova.plugins.photoLibrary.getThumbnailURL(\n  libraryItem, // or libraryItem.id\n  function (thumbnailURL) {\n\n    image.src = thumbnailURL;\n\n  },\n  function (err) {\n    console.log('Error occured');\n  },\n  { // optional options\n    thumbnailWidth: 512,\n    thumbnailHeight: 384,\n    quality: 0.8\n  });\n```\n\n```js\ncordova.plugins.photoLibrary.getPhotoURL(\n  libraryItem, // or libraryItem.id\n  function (photoURL) {\n\n    image.src = photoURL;\n\n  },\n  function (err) {\n    console.log('Error occured');\n  });\n```\n\n```js\n// This method is slower as it does base64\ncordova.plugins.photoLibrary.getThumbnail(\n  libraryItem, // or libraryItem.id\n  function (thumbnailBlob) {\n\n  },\n  function (err) {\n    console.log('Error occured');\n  },\n  { // optional options\n    thumbnailWidth: 512,\n    thumbnailHeight: 384,\n    quality: 0.8\n  });\n```\n\n```js\n// This method is slower as it does base64\ncordova.plugins.photoLibrary.getPhoto(\n  libraryItem, // or libraryItem.id\n  function (fullPhotoBlob) {\n\n  },\n  function (err) {\n    console.log('Error occured');\n  });\n```\n\n# ionic / angular\n\nIt's best to use from [ionic-native](https://ionicframework.com/docs/v2/native/photo-library). The the docs.\n\nAs mentioned [here](https://github.com/terikon/cordova-plugin-photo-library/issues/15) by dnmd, cdvphotolibrary urls should bypass sanitization to work.\n\nIn angular2, do following:\n\nDefine Pipe that will tell to bypass trusted urls. cdvphotolibrary urls should be trusted:\n\n```js\n// cdvphotolibrary.pipe.ts\nimport { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer } from '@angular/platform-browser';\n\n@Pipe({name: 'cdvphotolibrary'})\nexport class CDVPhotoLibraryPipe implements PipeTransform {\n\n  constructor(private sanitizer: DomSanitizer) {}\n\n  transform(url: string) {\n    return url.startsWith('cdvphotolibrary://') ? this.sanitizer.bypassSecurityTrustUrl(url) : url;\n  }\n}\n```\n\nRegister the pipe in your module:\n\n```js\nimport { CDVPhotoLibraryPipe } from './cdvphotolibrary.pipe.ts';\n\n@NgModule({\n  declarations: [\n    CDVPhotoLibraryPipe,\n    // ...\n  ],\n})\n```\n\nThen in your component, use cdvphotolibrary urls applying the cdvphotolibrary pipe:\n\n```js\n@Component({\n   selector: 'app',\n   template: '<img [src]=\"url | cdvphotolibrary\">'\n})\n\nexport class AppComponent {\n    public url: string = 'placeholder.jpg';\n    constructor() {\n      // fetch thumbnail URL's\n      this.url = libraryItem.thumbnailURL;\n    }\n}\n```\n\nIf you use angular1, you need to add cdvphotolibrary to whitelist:\n\n```js\nvar app = angular\n  .module('myApp', [])\n  .config([\n    '$compileProvider',\n    function ($compileProvider) {\n\t\t$compileProvider.imgSrcSanitizationWhitelist(/^\\s*(https?|cdvphotolibrary):/);\n\t\t//Angular 1.2 and above has two sanitization methods, one for links (aHrefSanitizationWhitelist) and \n\t\t//one for images (imgSrcSanitizationWhitelist). Versions prior to 1.2 use $compileProvider.urlSanitizationWhitelist(...)\n    }\n  ]);\n```\n\n# TypeScript\n\nTypeScript definitions are provided in [PhotoLibrary.d.ts](https://github.com/terikon/cordova-plugin-photo-library/blob/master/PhotoLibrary.d.ts)\n\n# Tests\n\nThe library includes tests in [tests](https://github.com/terikon/cordova-plugin-photo-library/tree/master/tests) folder. All tests are in\n[tests.js](https://github.com/terikon/cordova-plugin-photo-library/blob/master/tests/tests.js) file.\n\n# Running tests\n\n## Travis\n\ntcc.db file is located at $HOME/Library/Developer/CoreSimulator/Devices/$DEVICEID/data/Library/TCC/TCC.db\n\n## Helper app\n\nTo run tests, use [special photo-library-tester](https://github.com/terikon/photo-library-tester).\nIt's always useful to run these tests before submitting changes, for each platform (android, ios, browser).\n\n# TODO\n\n- [#38](https://github.com/terikon/cordova-plugin-photo-library/issues/38) browser platform: saveImage and saveVideo should download file.\n- Improve documentation.\n- Provide cancellation mechanism for long-running operations, like getLibrary.\n- CI.\n\n# Optional enchancements\n\n- iOS: it seems regex causes slowdown with dataURL, and (possibly) uses too much memory - check how to do regex on iOS in better way.\n- Browser platform: Separate to multiple files.\n- Android: caching mechanism like [this one](https://developer.android.com/training/displaying-bitmaps/cache-bitmap.html) can be helpful.\n- Implement save protocol with HTTP POST, so no base64 transformation will be needed for saving.\n- EXIF rotation hell is not handled on browser platform.\n- Pre-fetching data to file-based cache on app start can improve responsiveness. Just this caching should occur as low-priority thread. Cache can be updated\nby system photo libraries events.\n\n# References\n\nParts are based on\n\n- https://github.com/subitolabs/cordova-gallery-api\n- https://github.com/SuryaL/cordova-gallery-api\n- https://github.com/ryouaki/Cordova-Plugin-Photos\n- https://github.com/devgeeks/Canvas2ImagePlugin\n","repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"users":{"heshalianren":true},"bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"license":"MIT","versions":{"1.0.0":{"name":"cordova-plugin-photo-library","version":"1.0.0","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"776fa73a3ac8dea14e33b0c5fad98f82e95518f6","_id":"cordova-plugin-photo-library@1.0.0","_shasum":"f673d0c2e9eed6bea7d26490808dad78bb3b98b1","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"f673d0c2e9eed6bea7d26490808dad78bb3b98b1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.0.0.tgz","integrity":"sha512-oaDp4371Vm7GaicIyCJT3I6+xzSbUgpwTLjpH90B1d74zT3xe+YHBma1IJ0dS0g0wV2Wb6HK6RkT0b3SiKir0Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH9slOKmW494jORjKgIl9d2x/qq3997/lLL7uM74k22TAiEApe5AnYxQ2ykF50G2pVN3M534V6rEm19rFdMf3XjlMN4="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.0.0.tgz_1475580481021_0.4860623104032129"},"directories":{}},"1.0.1":{"name":"cordova-plugin-photo-library","version":"1.0.1","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"0ca875f388351588d516136ecd1859445f55441c","_id":"cordova-plugin-photo-library@1.0.1","_shasum":"abeb52031e12f8c1370594717e11fdace525617d","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"abeb52031e12f8c1370594717e11fdace525617d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.0.1.tgz","integrity":"sha512-U6yENHQyNUbxei+/8BX+G9eUnoiBoVoHgsRKaVZIHWDl47MXSEanJj434pG3TczRRGCgsXlLhfxDbKNceXGtHA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBXa8aprYiX+o4Mz/RdxpMVFG1pcggXyU0IBgI5VzY/1AiBU+arHOYghsdx/uOoLL55GWvLnQeRWL1QRSa14OcShMA=="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.0.1.tgz_1475589685740_0.9966302269604057"},"directories":{}},"1.0.2":{"name":"cordova-plugin-photo-library","version":"1.0.2","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"0bc654c9e64b57e6f49bbeba637eeff4a8306e21","_id":"cordova-plugin-photo-library@1.0.2","_shasum":"ab85e20a389dda21a35e8c2df14a3987b58620e1","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"ab85e20a389dda21a35e8c2df14a3987b58620e1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.0.2.tgz","integrity":"sha512-KvLqUU8VUrDTQ7g0g4a5uLS03z5ll+BgA5DFeFKefZPuPipMwnmbCkmycD/NtethmcfxQun3OAkJtTuQS5LykQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC7MHf9oLUCisnwQHHH4dPR7am+xS9jXm03+8iIwIb2NQIhAMiymTxeUDxbEQl0wJ6nuBE++PLN23odIHRRwrp0Zk4U"}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.0.2.tgz_1475591066778_0.6564274663105607"},"directories":{}},"1.0.3":{"name":"cordova-plugin-photo-library","version":"1.0.3","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"6bc445c5ff3c1e9e74024a01f43b73306f9eb996","_id":"cordova-plugin-photo-library@1.0.3","_shasum":"5efc05ecf957c1b780cc7c7d20283eabd0b48286","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"5efc05ecf957c1b780cc7c7d20283eabd0b48286","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.0.3.tgz","integrity":"sha512-FQNV8++0cKo1eUpa5aisN/ygqiSejNnHQcug22Hky/wmOLSksTypBZnBIVSl1+btIEJSKXnvRYQmeJ08vdj70A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDEca410iL2+RMxLEB31v57ryYQ1j/x+SRQBbOMvBF5FAIhAO8b3QqHTjcf7G1684fmYrcpF0KxTAFfk3Z71E8UU0rW"}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.0.3.tgz_1475745888090_0.340231561800465"},"directories":{}},"1.0.4":{"name":"cordova-plugin-photo-library","version":"1.0.4","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"e0f8d588f25eaee1bd2fe342bf052fe90c387ad7","_id":"cordova-plugin-photo-library@1.0.4","_shasum":"608d0258d5c8f4d03594fc1d87bfbc8906e9b4e4","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"608d0258d5c8f4d03594fc1d87bfbc8906e9b4e4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.0.4.tgz","integrity":"sha512-mOa1Em58niVR9MdhrSezI595XPYg9cAqnkh7l/IO159L2x5s2KDGpkcwCcTvZfykojkQLp3r+QHB/ZpFzEiuYg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICYI7T1TMhpvR8Gq9i0de8ZN/S7IdPK/dsOmakGOEG6EAiEAssyjJBZpRPcoy8KoyIK83tip0tSU9U7Px/pCaoKkWzg="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.0.4.tgz_1475761955211_0.7201380350161344"},"directories":{}},"1.0.5":{"name":"cordova-plugin-photo-library","version":"1.0.5","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"bf0896cef971c9bb18a3b666b659ba9f6bbfabd5","_id":"cordova-plugin-photo-library@1.0.5","_shasum":"10969628ad7285e265aef9d32afcd0f938afb6a3","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"10969628ad7285e265aef9d32afcd0f938afb6a3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.0.5.tgz","integrity":"sha512-F4Bo/wUMZTcFKBRAeTqQXGbvZZ52k80sNWqAu0JOsRlhTbzKBDoiAHcD30JuCghW5KOlD95KaWyPmQV3tkxLNQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC4F9UMCocR2vgQ3SJZrofbOJQAHb95lKyT1Jhl0WibmAiEAz0kOKdMlOAnPqZBRY1pzorpDo1hRbKvMtMQlyvDTITs="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.0.5.tgz_1475838781089_0.6895176449324936"},"directories":{}},"1.0.6":{"name":"cordova-plugin-photo-library","version":"1.0.6","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"07ba3c18931def21b24f6c43efc5c2d5202b2746","_id":"cordova-plugin-photo-library@1.0.6","_shasum":"dcc0e2a5c4b40710fa8e5bc13f2f1e446525702f","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"dcc0e2a5c4b40710fa8e5bc13f2f1e446525702f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.0.6.tgz","integrity":"sha512-mpEMzlP322hxrERpD/OscZTz2/PHF63C5mIhJQ1rGEINTh1rIzlvEj4H652qnWwx83H4vLuSoJIhnfNqRAgvKQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHStR8F0umE6WicL22S8aZXEevyekqoihEpducVh5ztoAiAU/uHBTt1GJa4Q3qUikm7f9RJwPEDU7ORTp0UegnS3Bw=="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.0.6.tgz_1475941891968_0.819673391757533"},"directories":{}},"1.0.7":{"name":"cordova-plugin-photo-library","version":"1.0.7","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"decca45b8fee151e3d12691dad522a073da1411b","_id":"cordova-plugin-photo-library@1.0.7","_shasum":"92e7cfbe02cf7725a640a564a245cc9a381b2b21","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"92e7cfbe02cf7725a640a564a245cc9a381b2b21","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.0.7.tgz","integrity":"sha512-QTZBpIObzvtZ6E4iU1tjV+wES16SrGL5I1OtwW+NPpfHLn66me/oQvTBeQ1BUKT1aHkShRPct8iqcL8dIjsgtw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAz2ZbPvDML1PYIJ3JWCUZn6hskLOzlNxVSAh0mKWojkAiBNFZYzGLdfiDTy2sun4g5Bs++q4XSBGsHPMPKHxMsoVg=="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.0.7.tgz_1476282323870_0.17398362210951746"},"directories":{}},"1.0.8":{"name":"cordova-plugin-photo-library","version":"1.0.8","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"25bed0b49652d66fbbbec9514efb12f563f30fe9","_id":"cordova-plugin-photo-library@1.0.8","_shasum":"40b9596446822456a3fee67d80d3cf876b40df26","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"40b9596446822456a3fee67d80d3cf876b40df26","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.0.8.tgz","integrity":"sha512-36Qf+z6j04QAvGsB8Aevfm67ybe2UWYRwPORRFttg9FkJQ2RgDa8OhIPPHod2YLrfQCS0MBhxfjBPmdxSiqLhg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGHcCrF/94tdtpELuKBy5ay0tDy6QkcpE3zh6uhA74QyAiAt/8/wz7Vy37owJu/bU4SBq9+G3KSiO71Y65dzR4pc+g=="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.0.8.tgz_1476293113409_0.4424152043648064"},"directories":{}},"1.0.9":{"name":"cordova-plugin-photo-library","version":"1.0.9","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"9612e40f9712fd07b1560523c370211fe2ceaca8","_id":"cordova-plugin-photo-library@1.0.9","_shasum":"74bc4f4edb77d508128262eae68240cb809ee587","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"74bc4f4edb77d508128262eae68240cb809ee587","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.0.9.tgz","integrity":"sha512-uYU07hSHDvqAXKhFw3R71frucxeZ8qFmhAtLnXFX1aMfVk5CAALDtzbFPE7DhUKvtk2umbXTlQHsE3KbkP8NMw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCa5s4yYOlZjz64Kn0GcKmWphRg9o2QezqVIQq7Fw677gIhAJWAf9GJb18xcfRRlcS+DFUsL4h3VwtZ89deCdFtX9vq"}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.0.9.tgz_1476450404546_0.12841366906650364"},"directories":{}},"1.0.10":{"name":"cordova-plugin-photo-library","version":"1.0.10","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"af2efd36670a95055b4fd88566e35278880a2553","_id":"cordova-plugin-photo-library@1.0.10","_shasum":"284375ac104a471a7489643ed336909783269499","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"284375ac104a471a7489643ed336909783269499","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.0.10.tgz","integrity":"sha512-KvpANG5UhDZWQr7ysmYACfhbRGKisIbXnzEoyb1/qL0wBZqvyUkZmZ42KDo4HrlqAJE6u3v6LsCjIWIeFxqHGQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBMtp7/OkAc3SF4Zm6WgQL1aE/4NYstxiYqVTkQVfKxVAiA0hk6XaJBVWtUj2usQ2AB+QSRD95ux+ASVFDkAFM/nPA=="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.0.10.tgz_1476603710192_0.8652285020798445"},"directories":{}},"1.0.11":{"name":"cordova-plugin-photo-library","version":"1.0.11","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"edfd879dc5628fc5708bd569eb094d337d6da99d","_id":"cordova-plugin-photo-library@1.0.11","_shasum":"d53e4af7b15f2339a59fb1d5ce9e07549fc409c5","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"d53e4af7b15f2339a59fb1d5ce9e07549fc409c5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.0.11.tgz","integrity":"sha512-8ve3fPNRFrJ5FIjbc1th7ZFiLuQ9VKQwNFt9sATkHZQvn4sS3iYaKZsfKLyhabg7x35yXkD6cxpw3DtRZICJUw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDkN7SrW+oCSCSjoZFspUFcYnf+8rUujNtXaRrFulnRrwIgZ0ydiY0smPJAKFBy/atpXrV3v64e3+Ydr9dQdaT7Ux0="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.0.11.tgz_1476632474079_0.6489091070834547"},"directories":{}},"1.0.12":{"name":"cordova-plugin-photo-library","version":"1.0.12","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"44278c24b796725a33c9e522da7af053692b5578","_id":"cordova-plugin-photo-library@1.0.12","_shasum":"a4bbdbf09300cc376cd3a897118129b3332199ba","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"a4bbdbf09300cc376cd3a897118129b3332199ba","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.0.12.tgz","integrity":"sha512-SZ3862Y0X3UzL8TVuFgMQR52hRbkRm01iO8KcDWIYKCpXzzdopwNAbcfvv0nYsG4gqXjSzkXJkb/tB1OyW3Kdw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHZzuuOjicjkKXr3HlTJMZqU7OKByDx4t5tLFi1jbBOyAiEAwRZr4tFQSHJPBh6mzoEenHw2qF6DZJdVmRiARcc7z1k="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.0.12.tgz_1476639703278_0.2777742790058255"},"directories":{}},"1.1.0":{"name":"cordova-plugin-photo-library","version":"1.1.0","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"aceefc5b69c835ad1177e5d4325bb75aee064832","_id":"cordova-plugin-photo-library@1.1.0","_shasum":"69815aedda5e23154424b8af24a0b0e8b444240f","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"69815aedda5e23154424b8af24a0b0e8b444240f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.1.0.tgz","integrity":"sha512-xnExIA/J9+ggeBJRE45omYpiccaIUP5TmiHBS810Ika5yF+2RPTXLHJph7Kg2lyqezY98FBdV5Aara8sRxR3cw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCoJ+RsrGQdtpgSJzNwGHQccFlwTpGHrQr3HbpdfQXLOgIgJK+0u6MbiTKTCSWRQZfM0jqxb6rFUbdTjY05WTemMQI="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.1.0.tgz_1476897862538_0.18681756756268442"},"directories":{}},"1.1.1":{"name":"cordova-plugin-photo-library","version":"1.1.1","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"9c296f09c0702bd225922e5346a7519a174d86d2","_id":"cordova-plugin-photo-library@1.1.1","_shasum":"ba118f36af8528966c48bc736359a3456621ac58","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"ba118f36af8528966c48bc736359a3456621ac58","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.1.1.tgz","integrity":"sha512-cXepN1jqDo1fftOGHz1i01+1uEc05UWT4k1O8HP0yAL0UFk97fGz+aZat5vUtcEzFOigfxJ8WNh5lVH47Mge3w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD5tG0eqIkdcIypoTFNRiKR0TYaEgogliL4kXQYgIBAQwIhAIMrkXAwQbjIfXbFNlhrtSk8IfCyq61QvN49NPyvG+17"}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.1.1.tgz_1476905557183_0.9164545442909002"},"directories":{}},"1.1.2":{"name":"cordova-plugin-photo-library","version":"1.1.2","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"4d1cf520dc1c6a9c61b6053c9e150ce2f97cbf98","_id":"cordova-plugin-photo-library@1.1.2","_shasum":"30756957299dffa9e44b89c334547bd86a9b87ae","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"30756957299dffa9e44b89c334547bd86a9b87ae","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.1.2.tgz","integrity":"sha512-XE3sbk3+VkVcDXcZoBhBqFAwIBeAgiCTE/sPpMMkuyxtNEZyploo3C+ppwZ/oBrBXEUQ+FfhstvkTQThryrCsQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICBfi39cfewYAyeaqXrOzIaoCOol6NKvjB6tBdKEjDFnAiBBS7ATpz0I2BInqvY4mdioWhA8iU0U0ZgbYRKOIMTk+A=="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.1.2.tgz_1476964641882_0.8383153069298714"},"directories":{}},"1.1.3":{"name":"cordova-plugin-photo-library","version":"1.1.3","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"c965d281ab12ecb19001741deaa31b27470adae4","_id":"cordova-plugin-photo-library@1.1.3","_shasum":"10b9d32cefb7a6bfa4c553e25b9df336235965e6","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"10b9d32cefb7a6bfa4c553e25b9df336235965e6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.1.3.tgz","integrity":"sha512-tho46JFy94e/zfq/Zur5ZgLjgi567qWuYPGFqtibbc2AYWkPXGU909M8RNLmQlGhC4Z8i7ty4RdV7PSV/cTJZw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHUuXRg6V5ZSRqO7nLkJfpYd/xZ/1Cq/5ghkjesWNdviAiEAp9SuOhxOIJRSS262ftMFrCfehwWjvjzMpr5Z7WRP06M="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.1.3.tgz_1476965506799_0.9903869247063994"},"directories":{}},"1.1.4":{"name":"cordova-plugin-photo-library","version":"1.1.4","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"315b3731500d990d7492067bc6e87626c9a35179","_id":"cordova-plugin-photo-library@1.1.4","_shasum":"b98d57df1fda3b9433029ec738f11cb05e3037f5","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.4.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"b98d57df1fda3b9433029ec738f11cb05e3037f5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.1.4.tgz","integrity":"sha512-J/pWJZWPDXtnb6HxWEws/d972tVgozWNEI4Laxz3hYD9mkkaCbA1en8e58C7FNAST/OltBUsgaGJvvQ8+c1rOA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFz4anOQsEi4k30ugBJ/pIVJJAAnLskPkBkvfoSthDgiAiEArNiQ26G5cNm0DguCajzNVk8wL1kVtNcFSd12x29u2d4="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.1.4.tgz_1478077417059_0.9151232300791889"},"directories":{}},"1.1.5":{"name":"cordova-plugin-photo-library","version":"1.1.5","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"0791f7a825c8f6271ca054977ea77c96eb533967","_id":"cordova-plugin-photo-library@1.1.5","_shasum":"1e0e6496ff931df300846c3292363e4ebfb4474f","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"1e0e6496ff931df300846c3292363e4ebfb4474f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.1.5.tgz","integrity":"sha512-AC5F6HmFYAkL+Khh2Rgq6knmofa2pc1/5hV+Id+TXZ5ydPrJzWZXq6cD/pJc1/jyYKTLWuTI1Pc6RqJ3h7fpRg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCL36YNa6fZjDIMUT1mtBVeqJcXwLBwCaY+XaBDwakkywIgPPrXe4eSY3eXAijmnSpOK/cGIWGD2lRKA4dYOZtFBuI="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.1.5.tgz_1478792030705_0.06448076828382909"},"directories":{}},"1.1.6":{"name":"cordova-plugin-photo-library","version":"1.1.6","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"5a8bac66d9f1d07efc1a86c1f53429f91d8acdd8","_id":"cordova-plugin-photo-library@1.1.6","_shasum":"ff12ae1852f8ffb277ce12bab01cd6459f35f7b4","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"ff12ae1852f8ffb277ce12bab01cd6459f35f7b4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.1.6.tgz","integrity":"sha512-TkTKy5K6iLNinZKM3W9LpVyyg4xc3guW5cFtaRIxk6XneF9iKCdZtu2gTPnyR+krlaVRKvK78Bn92wnTdF3xWQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC/Lwx/5kZEPv3FFvSs0o1L6nDsKob08pXMdN+fhlKMZAiBNPpaYejV2shsKS1sg0p3JsUjydWlsEEuShLKCIRSw3w=="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.1.6.tgz_1478856949122_0.7649335889145732"},"directories":{}},"1.1.7":{"name":"cordova-plugin-photo-library","version":"1.1.7","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"45a78fd8c654a881ee806df1c9ac60dfedfb7eed","_id":"cordova-plugin-photo-library@1.1.7","_shasum":"86cd940cddd0862906de451e2d106d123ec6e7d9","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"86cd940cddd0862906de451e2d106d123ec6e7d9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.1.7.tgz","integrity":"sha512-HVaDZmViwfgbb0gFrtn4tP3bxOW+5Tt+OfhW5WS+utWakrgP+vqinhzLOYpLyGGUXJJwuFVZR4hb/CFJmU1fHg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBEFS2yHoxvmC+NxSHuqi82kWzGlFbFPq3J2EFIimXE2AiEA89m11T3QH13CnAb7cGlYwdC+Kg9yS8ihknj0O9p9HMQ="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.1.7.tgz_1478879825536_0.8216972022783011"},"directories":{}},"1.1.8":{"name":"cordova-plugin-photo-library","version":"1.1.8","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"e75ef09b606b4fcdd015da2fdbcc82bb0469271b","_id":"cordova-plugin-photo-library@1.1.8","_shasum":"50bf9a0f9aec7d5f92d644e3c4ccd13297e4c4e6","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"50bf9a0f9aec7d5f92d644e3c4ccd13297e4c4e6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.1.8.tgz","integrity":"sha512-7cJwu4+slRivNivc3tWhaik62K4oT2CvIr8HFcXL1O1PwXMrE5k98JTXqFEZ2ZhQmX83PG66U1NXNrQIzSRYlw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCd2j1PpuNZIOvdktV867OPtc1+X7oTn+F03bzGNi0DOQIgOxkJ5a1c02IK0wQlS5XiFbOC4BlEpbB1R/SUDS43lMM="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.1.8.tgz_1478957061567_0.16131822764873505"},"directories":{}},"1.1.9":{"name":"cordova-plugin-photo-library","version":"1.1.9","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"f0e514822ffbfb9aff5db2493f93702b491b3c0d","_id":"cordova-plugin-photo-library@1.1.9","_shasum":"238f3955acf719fc3bfdf8185b9a1f61872b3f14","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"238f3955acf719fc3bfdf8185b9a1f61872b3f14","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.1.9.tgz","integrity":"sha512-8cXxUgEZitGR8GVbxX7R160PUgOYljuZWpwNjahk3ZxFbPF+l+DBS4T2zbRrDupQLP/dKaTEXpheF3FvhI5eHw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC6qpfrLlLdLqygMEFfGGtAcbpBa6+Sbf31lvYbz2QoigIgR3OdD5Wc+waNDLnnBT7kwptN+NP0CDur9EhkldRPhR4="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.1.9.tgz_1479112180112_0.9385854066349566"},"directories":{}},"1.1.10":{"name":"cordova-plugin-photo-library","version":"1.1.10","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"0b775b0b3e8b10dab70e53475ae1d6d8540e78a4","_id":"cordova-plugin-photo-library@1.1.10","_shasum":"6002a1aadb6521d33469db0f000a66f627dab553","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"6002a1aadb6521d33469db0f000a66f627dab553","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.1.10.tgz","integrity":"sha512-kq4ksbpnsOaqGiWDDEpz9dVpIdx8ZYKN4zwABdZ/04Qx8EFhUNf7Y33h3zKbCtwT4+n6NNjr+3c6ue4fwwjAXw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCepgENnv5wUzRNX+bC1sWl9sejt3eruYe01U3NzyPGGgIgLBUp01QBkzmZzn73UWSds7XxQ+T7tzE6Kcgk/WdQQB0="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.1.10.tgz_1479120974353_0.36206649825908244"},"directories":{}},"1.1.11":{"name":"cordova-plugin-photo-library","version":"1.1.11","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"6f35f518c0f8a72dd8321bf6fdea312ffb157834","_id":"cordova-plugin-photo-library@1.1.11","_shasum":"07a0d16a59f7ab0ae2c0f6420ef057b5110abba4","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"07a0d16a59f7ab0ae2c0f6420ef057b5110abba4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.1.11.tgz","integrity":"sha512-S/xT21faDmJ1dwryWBbZSX2JbyDb8G1w8TP0aeVkMpVvB7tP27QJcTK6TU2yTle8Cn8sl0xAbeI0UmQn+Ds8DA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCQeW9b0fdrm27PxqlCs+8w8uscvEEEnWwXoPG6EQ3xsQIhANXsW/7HiRHxhPFtpXsZjiC1T6vIwFzzLze0VQPequ9x"}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.1.11.tgz_1479230458984_0.8616618260275573"},"directories":{}},"1.1.12":{"name":"cordova-plugin-photo-library","version":"1.1.12","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"f2717cff2b8efb66e740e6da1217d905721d0b32","_id":"cordova-plugin-photo-library@1.1.12","_shasum":"304d95f627df34ec2dbd8d645161a9c19cd14235","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"304d95f627df34ec2dbd8d645161a9c19cd14235","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.1.12.tgz","integrity":"sha512-XlwG4LJB082DlkkcdkiDEvi80mfNCw5u6bKWcinoMtHCeE6JPlNinxy4s1cdUvNF5RCDTZ+kmGV6z2I/YSG2Kg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBjeJEaVnbGSsVSxPU9hYbhRMjpQ6ZDHpsIqIOVgY0HhAiBsnGwCM627iwEA/CmQgFsC7yBlOzWSRt0VKiH1Vi0D/Q=="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.1.12.tgz_1479307086336_0.6565382913686335"},"directories":{}},"1.2.0":{"name":"cordova-plugin-photo-library","version":"1.2.0","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"e46219b774a0290fc45c927e7a469c4f0b848095","_id":"cordova-plugin-photo-library@1.2.0","_shasum":"248ec056954f2a5c890f6677c54d35c5a26d0b47","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"248ec056954f2a5c890f6677c54d35c5a26d0b47","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.2.0.tgz","integrity":"sha512-uMooSzowkkS9qg9qd2lnhAHfNz03i1mKT3Fr8LGEixdUwoSZC0HbkaR3TwWDdUj7pG6cSbEAh3/x8jPVxaS9GA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDkZmI39AjvDuy65mi8xBOAvaOSVP5SvCUSWuwLMdx7mwIgPz7u5mow0livr3AAjrkSg1NtcRmTTiZ1mebjCgInCto="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.2.0.tgz_1479452878321_0.30262671783566475"},"directories":{}},"1.2.1":{"name":"cordova-plugin-photo-library","version":"1.2.1","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"c370141d0b9e6e8fb85a8956a7f51c584071fe0b","_id":"cordova-plugin-photo-library@1.2.1","_shasum":"30125ae5d11e0a94316651db8806ac66144a48eb","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"30125ae5d11e0a94316651db8806ac66144a48eb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.2.1.tgz","integrity":"sha512-g8DoZzPdxneTlrhqKzYaeNxxlwJ5aV8I025RNbYZDs3SGNMGkEIXfwbE9ZQcL0Mpr1jGVg8RM4p/2tCnIEXsrA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDitck8xktZV/upAw2esXbCqWYpVbSS/AW79xOTO6C3LAIhAMw4tJVXyqtq9TFH+GhGadFmlyjAZjGydGByfVNPi6pZ"}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.2.1.tgz_1480658434947_0.10764463990926743"},"directories":{}},"1.2.2":{"name":"cordova-plugin-photo-library","version":"1.2.2","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.4.0"},"gitHead":"345e8cd5998a25323a17aba7809128526d68a1f0","_id":"cordova-plugin-photo-library@1.2.2","_shasum":"30f1d668d38b34c03bc2325fc46ef8209aa46bba","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"30f1d668d38b34c03bc2325fc46ef8209aa46bba","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-1.2.2.tgz","integrity":"sha512-SAzYcqJbFuxXhGq5PITXeV+5Rmu0hRMonKioQzxTMsD/Tbt2N4SEkqL6zFBspxi+Kb7Hm9neVKHFxClqg2Xnbg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCc/yBXdk1LFSRcykM/QSp5g2T6OLBrrOINwMwXrpDg7AIhAPneiO2sauYaCfzgVT4Tx+c+knspjtZUfN0eIM6LVbe2"}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-1.2.2.tgz_1481984934379_0.20729265548288822"},"directories":{}},"2.0.0":{"name":"cordova-plugin-photo-library","version":"2.0.0","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test:android":"cordova-paramedic --platform android --plugin . --verbose","test:ios":"cordova-paramedic --platform ios --plugin . --verbose","test":"echo \"Run tests with https://github.com/terikon/cordova-plugin-photo-library-tester, or run test:android or test:ios.\" && exit 1","copy-test-images:android:emulator":"adb -e push tests/test-images /mnt/sdcard/DCIM && adb -e shell am broadcast -a android.intent.action.MEDIA_MOUNTED -d file:///sdcard","copy-test-images:ios:simulator":"xcrun simctl addmedia booted tests/test-images/*"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.14.1","@types/cordova":"^0.0.34","@types/jasmine":"^2.5.41","es5-shim":"4.5.9","es6-shim":"0.35.3","es7-shim":"6.0.0","cordova-paramedic":"git+https://github.com/apache/cordova-paramedic.git"},"dependencies":{"async":"^2.1.4"},"gitHead":"144808d4bcc1fac021e12807bdea541b208f1b13","_id":"cordova-plugin-photo-library@2.0.0","_shasum":"c4e2272b528b1b8eac3bf1708f5c577ff008b044","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"c4e2272b528b1b8eac3bf1708f5c577ff008b044","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-2.0.0.tgz","integrity":"sha512-VYzMDbrHj5WgL/2yJV/c2i1RluRGtVfleNtMz9Xwc42Zd95wVUXKfNbcdqTCferhnojtIGd5u6jBKTRRNPMBog==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG5I089dU/qcUnFVUEOF9QrNZ5q7DIkxiDJBi9RcjHSwAiAiYm2AXdjiMTebQ0Q+8956UAvmfFNQMeKbWCv9SHjEoA=="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-2.0.0.tgz_1487438573692_0.5026899285148829"},"directories":{}},"2.0.1":{"name":"cordova-plugin-photo-library","version":"2.0.1","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test:android":"cordova-paramedic --platform android --plugin . --verbose","test:ios":"cordova-paramedic --platform ios --plugin . --verbose","test":"echo \"Run tests with https://github.com/terikon/cordova-plugin-photo-library-tester, or run test:android or test:ios.\" && exit 1","copy-test-images:android:emulator":"adb -e push tests/test-images /mnt/sdcard/DCIM && adb -e shell am broadcast -a android.intent.action.MEDIA_MOUNTED -d file:///sdcard","copy-test-images:ios:simulator":"xcrun simctl addmedia booted tests/test-images/*"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.14.1","@types/cordova":"^0.0.34","@types/jasmine":"^2.5.41","es5-shim":"4.5.9","es6-shim":"0.35.3","es7-shim":"6.0.0","cordova-paramedic":"git+https://github.com/apache/cordova-paramedic.git"},"dependencies":{"async":"^2.1.4"},"gitHead":"475829841fb3d66f233d084ad5c9c9fc46236e8b","_id":"cordova-plugin-photo-library@2.0.1","_shasum":"86f6ec3708fd2f78971865df91933520bb1d1b21","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"86f6ec3708fd2f78971865df91933520bb1d1b21","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-2.0.1.tgz","integrity":"sha512-brHPuI+tmkILUy6xtpzoORarpKSIoH9Svk9WT/OADBSmaelWrOt4DJOShvIa//lDqTdEsc5pLV4swKA90xxSig==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGdNDlZ4VrxvXbqqYjya5pmX1zoOf2X2mNX2pf/sVXqXAiBycYjE2uq5hMB+Y5s8H5Ldf5twAUXcB1dkQiQda1EuFQ=="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-2.0.1.tgz_1487611272520_0.6157356698531657"},"directories":{}},"2.0.2":{"name":"cordova-plugin-photo-library","version":"2.0.2","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test:android":"cordova-paramedic --platform android --plugin . --verbose","test:ios":"cordova-paramedic --platform ios --plugin . --verbose","test":"echo \"Run tests with https://github.com/terikon/cordova-plugin-photo-library-tester, or run test:android or test:ios.\" && exit 1","copy-test-images:android:emulator":"adb -e push tests/test-images /mnt/sdcard/DCIM && adb -e shell am broadcast -a android.intent.action.MEDIA_MOUNTED -d file:///sdcard","copy-test-images:ios:simulator":"xcrun simctl addmedia booted tests/test-images/*"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.14.1","@types/cordova":"^0.0.34","@types/jasmine":"^2.5.41","es5-shim":"4.5.9","es6-shim":"0.35.3","es7-shim":"6.0.0","cordova-paramedic":"git+https://github.com/apache/cordova-paramedic.git"},"dependencies":{"async":"^2.1.4"},"gitHead":"3abb8b029fcb2ac2c13ea9d6a80ef24e3c477dd6","_id":"cordova-plugin-photo-library@2.0.2","_shasum":"6cd4fb95fa003896d11adb8a043d54b231c5a7c8","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"6cd4fb95fa003896d11adb8a043d54b231c5a7c8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-2.0.2.tgz","integrity":"sha512-IqlkezYFjDapX4b3v+FqXOv8FlwY65qdQ0xgYs0kVBmSxnUuAPgqNaaNKGJj6SvI2fKyQyj3JF8H26pavUDFIA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBbUHRjYn4pZuUyHnY1PpzkBoJT6uIWUvGk6tjL8BgTwAiEAq5MIcVmZr2kHO9TGXE5K5gFR3vSuCaaLaBtda8xzg8Y="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-2.0.2.tgz_1487614705647_0.6910157857928425"},"directories":{}},"2.0.3":{"name":"cordova-plugin-photo-library","version":"2.0.3","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test:android":"cordova-paramedic --platform android --plugin . --verbose","test:ios":"cordova-paramedic --platform ios --plugin . --verbose","test":"echo \"Run tests with https://github.com/terikon/cordova-plugin-photo-library-tester, or run test:android or test:ios.\" && exit 1","copy-test-images:android:emulator":"adb -e push tests/test-images /mnt/sdcard/DCIM && adb -e shell am broadcast -a android.intent.action.MEDIA_MOUNTED -d file:///sdcard","copy-test-images:ios:simulator":"xcrun simctl addmedia booted tests/test-images/*"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.14.1","@types/cordova":"^0.0.34","@types/jasmine":"^2.5.41","es5-shim":"4.5.9","es6-shim":"0.35.3","es7-shim":"6.0.0","cordova-paramedic":"git+https://github.com/apache/cordova-paramedic.git"},"dependencies":{"async":"^2.1.4"},"gitHead":"f8c709539a7b93708d009eac5b229b5c3185a7b4","_id":"cordova-plugin-photo-library@2.0.3","_shasum":"58d43e5b5a7c5100ca2947fc9bc494384f332854","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.5.0","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"58d43e5b5a7c5100ca2947fc9bc494384f332854","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-2.0.3.tgz","integrity":"sha512-dbAhU23joL3qpTqnMv0u06/q6fGHPaYWDC8VCaSrqbWnQ3RIbcnRsTboxJ7kgXZXYxM4LqB157JVoxzYixlNKA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFKMWkwSxksABZ8hOVSSNNidFG8c2zcuqWJ9pgsm4kHkAiB4TNiOletMyM1u2HfDGx8SyfNqFsrx+BPDPOQACmpgtg=="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-2.0.3.tgz_1488049065174_0.9260989094618708"},"directories":{}},"2.0.4":{"name":"cordova-plugin-photo-library","version":"2.0.4","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test:android":"cordova-paramedic --platform android --plugin . --verbose","test:ios":"cordova-paramedic --platform ios --plugin . --verbose","test":"echo \"Run tests with https://github.com/terikon/cordova-plugin-photo-library-tester, or run test:android or test:ios.\" && exit 1","copy-test-images:android:emulator":"adb -e push tests/test-images /mnt/sdcard/DCIM && adb -e shell am broadcast -a android.intent.action.MEDIA_MOUNTED -d file:///sdcard","copy-test-images:ios:simulator":"xcrun simctl addmedia booted tests/test-images/*"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.14.1","@types/cordova":"^0.0.34","@types/jasmine":"^2.5.41","es5-shim":"4.5.9","es6-shim":"0.35.3","es7-shim":"6.0.0","blueimp-canvastoblob":"2.1.0","cordova-paramedic":"git+https://github.com/apache/cordova-paramedic.git"},"dependencies":{"async":"^2.1.4"},"gitHead":"486216a0ea1f77c48eb6363d492afb5181b89726","_id":"cordova-plugin-photo-library@2.0.4","_shasum":"c233f5b67927ef0ed6d5f7dd47606407c8b59023","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"c233f5b67927ef0ed6d5f7dd47606407c8b59023","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-2.0.4.tgz","integrity":"sha512-hbpUw28QxvIfyBOcBcMgf2/WHcoxiqgt5dPsGYCXfXFqvlLc50m0DPoj6b4SFQ/ceUpZwF5ci6uyGN21BRs7WA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF9qIbOPeShrgLAF1nBm+YJC01HMuyzQLNe8C566aZfbAiBH2Hd07WWxlxcz8Im+SNqXcynASiIft/oDT4vZF6R6cQ=="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-photo-library-2.0.4.tgz_1490464642601_0.5785174719057977"},"directories":{}},"2.1.0":{"name":"cordova-plugin-photo-library","version":"2.1.0","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test:android":"cordova-paramedic --platform android --plugin . --verbose","test:ios":"cordova-paramedic --platform ios --plugin . --verbose","test":"echo \"Run tests with https://github.com/terikon/cordova-plugin-photo-library-tester, or run test:android or test:ios.\" && exit 1","copy-test-images:android:emulator":"adb -e push tests/test-images /mnt/sdcard/DCIM && adb -e shell am broadcast -a android.intent.action.MEDIA_MOUNTED -d file:///sdcard","copy-test-images:ios:simulator":"xcrun simctl addmedia booted tests/test-images/*"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.14.1","@types/cordova":"^0.0.34","@types/jasmine":"^2.5.41","es5-shim":"4.5.9","es6-shim":"0.35.3","es7-shim":"6.0.0","blueimp-canvastoblob":"2.1.0","cordova-paramedic":"git+https://github.com/apache/cordova-paramedic.git"},"dependencies":{"async":"^2.1.4"},"gitHead":"fc18b3da4fab844882d4d25f8cf9c7fb8adcaafb","_id":"cordova-plugin-photo-library@2.1.0","_shasum":"3fe2b545b8185a74810504898a8cb417af7dd6e4","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"3fe2b545b8185a74810504898a8cb417af7dd6e4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-2.1.0.tgz","integrity":"sha512-6rqXH6lW12EmqJp1GIlMyGhXwlazzanbQUBZ71578HtwNBCjjhDl2yZ9JOU0zXcjivdbHKqzMCFzfhBXRZJyNg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIANKRBMAHnxn6FgnCvZK24CtLZ2jBtavcN9g3CZaadenAiB/kx2hEBnK5N43pmxjSVf5EGeYrTJf3aLSg9B6v8nFEg=="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-photo-library-2.1.0.tgz_1503045705432_0.10385485063306987"},"directories":{}},"2.1.1":{"name":"cordova-plugin-photo-library","version":"2.1.1","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test:android":"cordova-paramedic --platform android --plugin . --verbose","test:ios":"cordova-paramedic --platform ios --plugin . --verbose","test":"echo \"Run tests with https://github.com/terikon/cordova-plugin-photo-library-tester, or run test:android or test:ios.\" && exit 1","copy-test-images:android:emulator":"adb -e push tests/test-images /mnt/sdcard/DCIM && adb -e shell am broadcast -a android.intent.action.MEDIA_MOUNTED -d file:///sdcard","copy-test-images:ios:simulator":"xcrun simctl addmedia booted tests/test-images/*"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.14.1","@types/cordova":"^0.0.34","@types/jasmine":"^2.5.41","es5-shim":"4.5.9","es6-shim":"0.35.3","es7-shim":"6.0.0","blueimp-canvastoblob":"2.1.0","cordova-paramedic":"git+https://github.com/apache/cordova-paramedic.git"},"dependencies":{"async":"^2.1.4"},"gitHead":"88b0272968c64e323e9852a2c4ff78f47d1d8c9c","_id":"cordova-plugin-photo-library@2.1.1","_shasum":"31665c75a20ffcf592efbfa0c013f0f44f17fdd5","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"shasum":"31665c75a20ffcf592efbfa0c013f0f44f17fdd5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-2.1.1.tgz","fileCount":52,"unpackedSize":2634373,"integrity":"sha512-iOs8fbTbuxa2gb0HwzzlPsIWukqGT007eeqohTxNTr+l1rBXESxDU4IMlDlvCZjnSB67+jxM/5dh+DGTxtpYdA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC43auvsGtziOChvYJZ+WpW/l4G8Lf79mVr2qRq4rCcpQIhAMUE9TbrnF7IG4yqpGsWmsSiZMl7QaSQmd16utWlsn3E"}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-photo-library_2.1.1_1522823608323_0.7351888389995878"},"_hasShrinkwrap":false},"2.2.0":{"name":"cordova-plugin-photo-library","version":"2.2.0","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test:android":"cordova-paramedic --platform android --plugin . --verbose","test:ios":"cordova-paramedic --platform ios --plugin . --verbose","test":"echo \"Run tests with https://github.com/terikon/cordova-plugin-photo-library-tester, or run test:android or test:ios.\" && exit 1","copy-test-images:android:emulator":"adb -e push tests/test-images /mnt/sdcard/DCIM && adb -e shell am broadcast -a android.intent.action.MEDIA_MOUNTED -d file:///sdcard","copy-test-images:ios:simulator":"xcrun simctl addmedia booted tests/test-images/*"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.14.1","@types/cordova":"^0.0.34","@types/jasmine":"^2.5.41","es5-shim":"4.5.9","es6-shim":"0.35.3","es7-shim":"6.0.0","blueimp-canvastoblob":"2.1.0","cordova-paramedic":"git+https://github.com/apache/cordova-paramedic.git"},"dependencies":{"async":"^2.1.4"},"gitHead":"dca6f529c1a1eedf0dc052444c33d076df47be53","_id":"cordova-plugin-photo-library@2.2.0","_npmVersion":"6.4.1","_nodeVersion":"8.11.3","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"integrity":"sha512-to1Y5+VZKNNNWSgQoDAv51++EXaE9Sa8w0AQggrTPsThwQGzO0flFaF77xOGd6maudBosN5rerd+vSX0nQRgdw==","shasum":"a37f2bda78990ce14fd91d92404a092ec892457e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-2.2.0.tgz","fileCount":51,"unpackedSize":2633212,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcClJRCRA9TVsSAnZWagAAqfYP/R/A8kjhtTygZT1ZyA0s\nHIqb1WR/KYtafNgms1ErXBGzjVYGTfMPiePDaGD4zXfS+u707Rm0dgnjjDIh\nPYPPxWEwkdsl7vW6aqkEIABZ8w9wAnrUSJxt2pB6dcLJy9WbclFrTf3gZBNh\nwC3YMw0yFYGZgzdfbvZO6tNomJDeCl79reOBdbXXYG8dwsV3oUfEt5dlgqDQ\nOY8V87o7Zm50eoVyCMvpexlhVXUKA4H5rHh40UGkYRxGdBYhRHD7dJ7tmn0s\nbpDisG9owcjrGFFnKzJNNnqwXHBvFK1yLDca7oZyXMYI15QKCxjphloIXCti\n4v7DtyVTmsQOnTAGvVBsgyQgkHg+4tCOfxmmQwgAdQpVObgKatE4vaSZ+WeP\nZlDgJFDtvkwZixtOULmMdx5Oo7Kycv8B9mJCn+rchB0d33NSDU75a1QdD0sH\nqcz2/zXZ9AusQREOogr8DZLv1o5nCE1SFWYWDwI/m3O3JZXp4T7JTBJH40MW\ny7QEmTFKV7XByiHCEdFFvnyTJCj8YSRn80SMpWMynZ+IOzpG60oLnKd/T/0e\n/zJNyHQQtWKoqC0/MNpJ2OKhfTAIBIZCBAHHqD+MgyL8RXZgvNz5VxhWUsaa\nmyEmFOHHLeKrOV3euchugdZqczWruD4jn6NfOB5T6bnwS+7kLJyMbPNTGFkY\nQuRL\r\n=7e60\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCQcxcT+ONyG0nxmgbR3edjgmWXTZhyLMRagKiXQZQ/7QIgK3TOjHEwquiR7YyZMD9YDzrcKqLpAN6B6UF8R61AeyY="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-photo-library_2.2.0_1544180304643_0.4091506951048762"},"_hasShrinkwrap":false},"2.2.1":{"name":"cordova-plugin-photo-library","version":"2.2.1","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test:android":"cordova-paramedic --platform android --plugin . --verbose","test:ios":"cordova-paramedic --platform ios --plugin . --verbose","test":"echo \"Run tests with https://github.com/terikon/cordova-plugin-photo-library-tester, or run test:android or test:ios.\" && exit 1","copy-test-images:android:emulator":"adb -e push tests/test-images /mnt/sdcard/DCIM && adb -e shell am broadcast -a android.intent.action.MEDIA_MOUNTED -d file:///sdcard","copy-test-images:ios:simulator":"xcrun simctl addmedia booted tests/test-images/*"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^3.14.1","@types/cordova":"^0.0.34","@types/jasmine":"^2.5.41","es5-shim":"4.5.9","es6-shim":"0.35.3","es7-shim":"6.0.0","blueimp-canvastoblob":"2.1.0","cordova-paramedic":"git+https://github.com/apache/cordova-paramedic.git"},"dependencies":{"async":"^2.1.4"},"gitHead":"1297c4c215a4767ce46fa6f3249565d4236dd7c2","_id":"cordova-plugin-photo-library@2.2.1","_npmVersion":"6.4.1","_nodeVersion":"8.11.3","_npmUser":{"name":"anonymous","email":"npm@terikon.com"},"dist":{"integrity":"sha512-oz+iWBlW6tBtpmACGshCm0Z/deMbbFwcC67avnx8eFpX4o4nfA4jiHIImW1GO9NBMVkoTKH71OixDKIqq/0uXA==","shasum":"d8b06b238c4875a5d535dcea5a9e4119acff8793","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-2.2.1.tgz","fileCount":51,"unpackedSize":2633210,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcUxu6CRA9TVsSAnZWagAARbMP/31wxCCf3uCebGPcn7jM\n018KkiLBgkOUvlDbALSkK5AmISmwF65x34OzaBdPLBGzjiV3bD0p9UDE+ve0\n/YbCnPdfp+3Gc0IiOrJvSPt380WCnKkB5er5bbfVcyT+/hMz5/zu2uwKWwRj\nt5DDNlFYLoow7ZFOr08KvD7cccKg6OsC5S7BykS2x3B/gBZwyDoHy1/boV6H\nAHn1AGzxOjcZiF2BLYXKbU709Tj1n8yGAV+T1E+EjZl6wuLUn847A3463Gej\npw4vnm9+6o5N8u+x91QnMMuuN1yAI6BCAtWwjAUM3NwYcxfLCwcgCch/+BqO\nLufenKCdjAD5JaUUoOE9rHqJwrWURAUjqTjTp+k4FXjKxOHw/VIKvwBJBVlY\nubCB5YxY7LS95PbKPIEfQaXJEflZjNgKSjto9wdinrJ2JOCnwlUdPRgOmgnr\nNBhPoWEZnOG+xIHUPXA12dfpjcIxbs3iH4FHHOg7EzaFIoAxbkQ8aAixcGD2\nhe7/AGaux7zPOd276CiWXE6LjlAUpZ9dm/010/Bmz55p9DtEk1bmomtlHKtY\nwKxaqfC0HBPgwmXVjG/lC2I3T/PhQ3+vwOxLpGR3pma2yUToIPdtCqctzrDo\nhrBdyfJ9P/jZfvx3ZFkpBEylWoiov89YAZXZKjX+7XWxKIyOsIj8WV5QFiLc\nlGEW\r\n=R7gC\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG5LW2m1phruLfadrGuSSwT6h0zuP81Ve+1OitXlXeSlAiEAvXh5nt6innbYzzsaown6md35qjgsihpwDClra6yQ/Hg="}]},"maintainers":[{"name":"anonymous","email":"npm@terikon.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-photo-library_2.2.1_1548950457582_0.8797660775865126"},"_hasShrinkwrap":false},"2.3.1":{"name":"cordova-plugin-photo-library","version":"2.3.1","description":"Plugin that just gets photos from the gallery","main":"index.js","scripts":{"test:android":"cordova-paramedic --platform android --plugin . --verbose","test:ios":"cordova-paramedic --platform ios --plugin . --verbose","test":"echo \"Run tests with https://github.com/terikon/cordova-plugin-photo-library-tester, or run test:android or test:ios.\" && exit 1","copy-test-images:android:emulator":"adb -e push tests/test-images /mnt/sdcard/DCIM && adb -e shell am broadcast -a android.intent.action.MEDIA_MOUNTED -d file:///sdcard","copy-test-images:ios:simulator":"xcrun simctl addmedia booted tests/test-images/*"},"repository":{"type":"git","url":"git+https://github.com/terikon/cordova-plugin-photo-library.git"},"author":{"name":"Roman Viskin","email":"npm@terikon.com","url":"http://il.linkedin.com/in/romanviskin"},"license":"MIT","bugs":{"url":"https://github.com/terikon/cordova-plugin-photo-library/issues"},"homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme","devDependencies":{"eslint":"^6.6.0","@types/cordova":"^0.0.34","@types/jasmine":"^2.5.41","es5-shim":"4.5.9","es6-shim":"0.35.3","es7-shim":"6.0.0","blueimp-canvastoblob":"2.1.0","cordova-paramedic":"git+https://github.com/apache/cordova-paramedic.git"},"dependencies":{"async":"^2.1.4"},"gitHead":"5d50f6871e4cc3edd36ff61399d8d65f7eea3ede","_id":"cordova-plugin-photo-library@2.3.1","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-GLfXjxqoSsC+lNImtB/fXRudtLoiN+Jnbxb/IWgksq5NnD/qVW5cF1UyA2cpKQ86S9DnFlzXcW6XmO2N2emfQg==","shasum":"c600ec38003134aff6897070be8ce3d9d93aa59b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/cordova-plugin-photo-library/-/cordova-plugin-photo-library-2.3.1.tgz","fileCount":51,"unpackedSize":2632099,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJepF91CRA9TVsSAnZWagAAOkYP/iMxcDQge1R5e1rqRcvI\nnLX8Hiq3pRP4baYw2B2lCjUhrwMYnqkbLhRIUbUd7UxR3Woo5joxV1JOcnGl\n48H5GiEjHZn9pkT7cOo5w5xwuNMfgVASCuJhGCJAoM7I7fvKONFaDIqSPVJQ\n1eUaHw+CHWWqbRNNY5gugAixjf+5e8dVfZe6+ibhP7GkSjYppVKcx0mgesqq\nXRCIgDUuKrDlxDCf4lPp34DFPyLVee1kpHbffAwD8ZPtG12GKDNqOs4BH15H\nSJkgNFICrmldaplWV57obGHSiw2wSkfmywIlYBwSVIyUTpVv09602m2I2oMP\nF0QicDKNeSK7Y5GNv4GAsLKBrvieWIQXJBxp6Dd/3OVjkUngKVB4HfGMwMyX\npndlHler0J8pvpYwhq+tb2NQofITDAiFxVTdRAkeceUrnSyIOmkGann8Wn4a\ns0RkCuiiT2Q5YWyg4tDw+MVzLfbj3p/fWojkV08PDhtyGR4rBefqSskA7Z6H\nHPBE83tHVXiag1z6h7pALxGftdH47W9L0qbqpKL+g7ZE+fPBgANYMIMwQJ+G\n5fzVYygdjVMsF6xOYvM9I9XyZVFOtb1kXhO9n3Y9VdyGw7YHBiMBV+lap+e/\nIL86CpRw4ekWg1r3KUMTFP6jWLpNCp5KuYluvqb2jGmBtSKU2ZIe8ncebfJx\nxAeZ\r\n=Ide1\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAi2DsTZlYFdHok5pAfxM8PcOFNH54DoXPQ5qUj3XnyDAiEAwFqgpiDHpRbXC1ConVX8DP9sJFBWfId4hqQGpZ8l4Xc="}]},"maintainers":[{"email":"xmarkclx@gmail.com","name":"anonymous"},{"email":"npm@terikon.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"xmarkclx@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-photo-library_2.3.1_1587830645280_0.7782293913188312"},"_hasShrinkwrap":false}},"name":"cordova-plugin-photo-library","time":{"modified":"2022-06-14T00:39:02.576Z","created":"2016-10-04T11:28:03.035Z","1.0.0":"2016-10-04T11:28:03.035Z","1.0.1":"2016-10-04T14:01:27.496Z","1.0.2":"2016-10-04T14:24:28.492Z","1.0.3":"2016-10-06T09:24:50.059Z","1.0.4":"2016-10-06T13:52:37.557Z","1.0.5":"2016-10-07T11:13:02.735Z","1.0.6":"2016-10-08T15:51:33.704Z","1.0.7":"2016-10-12T14:25:24.632Z","1.0.8":"2016-10-12T17:25:15.142Z","1.0.9":"2016-10-14T13:06:46.398Z","1.0.10":"2016-10-16T07:41:51.816Z","1.0.11":"2016-10-16T15:41:15.989Z","1.0.12":"2016-10-16T17:41:44.841Z","1.1.0":"2016-10-19T17:24:24.351Z","1.1.1":"2016-10-19T19:32:39.040Z","1.1.2":"2016-10-20T11:57:22.756Z","1.1.3":"2016-10-20T12:11:47.690Z","1.1.4":"2016-11-02T09:03:38.880Z","1.1.5":"2016-11-10T15:33:52.874Z","1.1.6":"2016-11-11T09:35:49.804Z","1.1.7":"2016-11-11T15:57:07.694Z","1.1.8":"2016-11-12T13:24:23.683Z","1.1.9":"2016-11-14T08:29:42.169Z","1.1.10":"2016-11-14T10:56:16.545Z","1.1.11":"2016-11-15T17:21:01.124Z","1.1.12":"2016-11-16T14:38:06.959Z","1.2.0":"2016-11-18T07:07:58.945Z","1.2.1":"2016-12-02T06:00:35.764Z","1.2.2":"2016-12-17T14:28:55.101Z","2.0.0":"2017-02-18T17:22:54.453Z","2.0.1":"2017-02-20T17:21:13.157Z","2.0.2":"2017-02-20T18:18:26.327Z","2.0.3":"2017-02-25T18:57:45.944Z","2.0.4":"2017-03-25T17:57:23.220Z","2.1.0":"2017-08-18T08:41:47.507Z","2.1.1":"2018-04-04T06:33:28.889Z","2.2.0":"2018-12-07T10:58:25.031Z","2.2.1":"2019-01-31T16:00:57.782Z","2.3.1":"2020-04-25T16:04:05.495Z"},"readmeFilename":"README.md","homepage":"https://github.com/terikon/cordova-plugin-photo-library#readme"}