{"maintainers":[{"email":"eddyverbruggen@gmail.com","name":"anonymous"},{"email":"erisu.dev@outlook.jp","name":"anonymous"},{"email":"jcesarmobile@gmail.com","name":"anonymous"},{"email":"kotikov.vladimir@gmail.com","name":"anonymous"},{"email":"simon.macdonald@gmail.com","name":"anonymous"},{"email":"purplecabbage@gmail.com","name":"anonymous"},{"email":"stevengill97@gmail.com","name":"anonymous"},{"email":"npmjs@barhams.info","name":"anonymous"},{"email":"timothy.windsor@gmail.com","name":"anonymous"}],"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-browser","cordova:plugin"],"dist-tags":{"latest":"8.1.0"},"author":{"name":"Adobe PhoneGap Team"},"description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","readme":"# PhoneGap Plugin BarcodeScanner\n================================\n\n[![Build Status](https://travis-ci.org/phonegap/phonegap-plugin-barcodescanner.svg)](https://travis-ci.org/phonegap/phonegap-plugin-barcodescanner)\n\nCross-platform BarcodeScanner for Cordova / PhoneGap.\n\nFollows the [Cordova Plugin spec](https://cordova.apache.org/docs/en/latest/plugin_ref/spec.html), so that it works with [Plugman](https://github.com/apache/cordova-plugman).\n\n## Installation\n\n\nThis requires phonegap 7.1.0+ ( current stable v8.0.0 )\n\n    phonegap plugin add phonegap-plugin-barcodescanner\n\nIt is also possible to install via repo url directly ( unstable )\n\n    phonegap plugin add https://github.com/phonegap/phonegap-plugin-barcodescanner.git\n\nOptional variables:\nThis plugin requires the Android support library v4. The minimum version is `24.1.0`. Default value is `27.+`.  Check out the latest version [here](https://developer.android.com/topic/libraries/support-library/revisions.html).\n```\nphonegap plugin add phonegap-plugin-barcodescanner --variable ANDROID_SUPPORT_V4_VERSION=\"27.1.1\"\n```\n### Supported Platforms\n\n- Android\n- iOS\n- Windows (Windows/Windows Phone 8.1 and Windows 10)\n- Browser\n\nNote: the Android source for this project includes an Android Library Project.\nplugman currently doesn't support Library Project refs, so its been\nprebuilt as a jar library. Any updates to the Library Project should be\ncommitted with an updated jar.\n\nNote: Windows 10 applications can not be build for `AnyCPU` architecture, which is default for Windows platform. If you want to build/run Windows 10 app, you should specify target architecture explicitly, for example (Cordova CLI):\n\n```\ncordova run windows -- --archs=x86\n```\n\n### PhoneGap Build Usage\n\nAdd the following to your config.xml:\n\n```\n<!-- add a version here, otherwise PGB will use whatever the latest version of the package on npm is -->\n<plugin name=\"phonegap-plugin-barcodescanner\" />\n```\nOn PhoneGap Build if you're using a version of cordova-android of 4 or less, ensure you're building with gradle:\n```\n<preference name=\"android-build-tool\" value=\"gradle\" />\n```\n\n## Using the plugin ##\nThe plugin creates the object `cordova.plugins.barcodeScanner` with the method `scan(success, fail)`.\n\nThe following barcode types are currently supported:\n\n|  Barcode Type | Android | iOS | Windows  |\n|---------------|:-------:|:---:|:--------:|\n| QR_CODE       |    ✔    |  ✔  |     ✔    |\n| DATA_MATRIX   |    ✔    |  ✔  |     ✔    |\n| UPC_A         |    ✔    |  ✔  |     ✔    |\n| UPC_E         |    ✔    |  ✔  |     ✔    |\n| EAN_8         |    ✔    |  ✔  |     ✔    |\n| EAN_13        |    ✔    |  ✔  |     ✔    |\n| CODE_39       |    ✔    |  ✔  |     ✔    |\n| CODE_93       |    ✔    |  ✔  |     ✔    |\n| CODE_128      |    ✔    |  ✔  |     ✔    |\n| CODABAR       |    ✔    |  ✖  |     ✔    |\n| ITF           |    ✔    |  ✔  |     ✔    |\n| RSS14         |    ✔    |  ✖  |     ✔    |\n| PDF_417       |    ✔    |  ✔  |     ✔    |\n| RSS_EXPANDED  |    ✔    |  ✖  |     ✖    |\n| MSI           |    ✖    |  ✖  |     ✔    |\n| AZTEC         |    ✔    |  ✔  |     ✔    |\n\n`success` and `fail` are callback functions. Success is passed an object with data, type and cancelled properties. Data is the text representation of the barcode data, type is the type of barcode detected and cancelled is whether or not the user cancelled the scan.\n\nA full example could be:\n```js\n   cordova.plugins.barcodeScanner.scan(\n      function (result) {\n          alert(\"We got a barcode\\n\" +\n                \"Result: \" + result.text + \"\\n\" +\n                \"Format: \" + result.format + \"\\n\" +\n                \"Cancelled: \" + result.cancelled);\n      },\n      function (error) {\n          alert(\"Scanning failed: \" + error);\n      },\n      {\n          preferFrontCamera : true, // iOS and Android\n          showFlipCameraButton : true, // iOS and Android\n          showTorchButton : true, // iOS and Android\n          torchOn: true, // Android, launch with the torch switched on (if available)\n          saveHistory: true, // Android, save scan history (default false)\n          prompt : \"Place a barcode inside the scan area\", // Android\n          resultDisplayDuration: 500, // Android, display scanned text for X ms. 0 suppresses it entirely, default 1500\n          formats : \"QR_CODE,PDF_417\", // default: all but PDF_417 and RSS_EXPANDED\n          orientation : \"landscape\", // Android only (portrait|landscape), default unset so it rotates with the device\n          disableAnimations : true, // iOS\n          disableSuccessBeep: false // iOS and Android\n      }\n   );\n```\n\n## Encoding a Barcode ##\n\nThe plugin creates the object `cordova.plugins.barcodeScanner` with the method `encode(type, data, success, fail)`.\n\nSupported encoding types:\n\n* TEXT_TYPE\n* EMAIL_TYPE\n* PHONE_TYPE\n* SMS_TYPE\n\n```\nA full example could be:\n\n   cordova.plugins.barcodeScanner.encode(cordova.plugins.barcodeScanner.Encode.TEXT_TYPE, \"http://www.nytimes.com\", function(success) {\n            alert(\"encode success: \" + success);\n          }, function(fail) {\n            alert(\"encoding failed: \" + fail);\n          }\n        );\n```\n\n## iOS quirks ##\n\nSince iOS 10 it's mandatory to add a `NSCameraUsageDescription` in the `Info.plist`.\n\n`NSCameraUsageDescription` describes the reason that the app accesses the user's camera.\nWhen the system prompts the user to allow access, this string is displayed as part of the dialog box. If you didn't provide the usage description, the app will crash before showing the dialog. Also, Apple will reject apps that access private data but don't provide an usage description.\n\nTo add this entry you can use the `edit-config` tag in the `config.xml` like this:\n\n```\n<edit-config target=\"NSCameraUsageDescription\" file=\"*-Info.plist\" mode=\"merge\">\n    <string>To scan barcodes</string>\n</edit-config>\n```\n\n## Windows quirks ##\n\n* Windows implementation currently doesn't support encode functionality.\n\n* On Windows 10 desktop ensure that you have Windows Media Player and Media Feature pack installed.\n\n## Thanks on Github ##\n\nSo many -- check out the original [iOS](https://github.com/phonegap/phonegap-plugins/tree/DEPRECATED/iOS/BarcodeScanner),  [Android](https://github.com/phonegap/phonegap-plugins/tree/DEPRECATED/Android/BarcodeScanner) and\n[BlackBerry 10](https://github.com/blackberry/WebWorks-Community-APIs/tree/master/BB10-Cordova/BarcodeScanner) repos.\n\n## Licence ##\n\nThe MIT License\n\nCopyright (c) 2010 Matt Kane\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"users":{"filipecarmona":true,"csantanapr":true,"tower1229":true,"mutantodon":true,"bfscordeiro":true,"gabrielebertz":true,"django_wong":true,"vcboy":true,"gauss02":true,"b3website":true,"jim_langdon":true,"lasterra":true,"shanewholloway":true},"bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"license":"MIT","versions":{"3.0.0":{"name":"phonegap-plugin-barcodescanner","version":"3.0.0","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows8","windows","wp8","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows8","cordova-windows","cordova-wp8","cordova-browser"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","gitHead":"b17891c002a04dc31c24e66ca5a50f31254d0e98","_id":"phonegap-plugin-barcodescanner@3.0.0","scripts":{},"_shasum":"134583689823bb26ee67b0e5f0e2c0e06de198dd","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.10.36","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"134583689823bb26ee67b0e5f0e2c0e06de198dd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-3.0.0.tgz","integrity":"sha512-CbtXhFE0lHAKzbDyR4j09NvVEjfkj/UxgyvZVUx0ldTzPBEzpJQh2RMp4rYUF3AQhNZaSjX7UG6A+HSFEqCr1A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID6KO/4YyMhRXKX7KraiFytG4gd6+F5YgAGjkl5oukSOAiEAvU65FDDqo1MjFfprzccUu84r0JeoZqin+XPQwhRdoB0="}]},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"3.0.1":{"name":"phonegap-plugin-barcodescanner","version":"3.0.1","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows8","windows","wp8","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows8","cordova-windows","cordova-wp8","cordova-browser"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","gitHead":"652d50967a8754a623e3a9de04b8b9565b4aa06d","_id":"phonegap-plugin-barcodescanner@3.0.1","scripts":{},"_shasum":"c60eb5fffb3a8f4b750dbed6c3a534fe6ddf17f9","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.10.36","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"c60eb5fffb3a8f4b750dbed6c3a534fe6ddf17f9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-3.0.1.tgz","integrity":"sha512-w9w4vwOiQxQwIk96+5NaqnqpQpoFgeXnYiy6KZrlD03IwNPLg8btZanz6NEi3PwLSJ+eAT829gzyxLCSG755pA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEf8bWy7HP7k/7XGOBgWHmMOMScRLA03sztrfgz0RItaAiAdIWGFh/bA9IlBdQTxBgXZoNhx7Jfz84/ylXZ8eTX7FQ=="}]},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"3.1.0":{"name":"phonegap-plugin-barcodescanner","version":"3.1.0","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows8","windows","wp8","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows8","cordova-windows","cordova-wp8","cordova-browser"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","gitHead":"78cc3fbcdf6f21e35614578409494d767193786b","_id":"phonegap-plugin-barcodescanner@3.1.0","scripts":{},"_shasum":"fbdbbf8323ae2029015e48688e9ab45f22504c4d","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.10.36","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"fbdbbf8323ae2029015e48688e9ab45f22504c4d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-3.1.0.tgz","integrity":"sha512-es5PE/XBB/qxmgZGIcyw/Qq3meAdBeRbutLau6q4LgbZz2jZ94tGPT/L2dU1ZvfYnIVNVyxO4j1/pcQpPU5oxg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDj6VGL9hIuZHkNlMmDRk6u8bwgXno6NtP11WSjCKomEwIgak+TElbFNDdn82tJ91Lj9lc+/qKWgxTjS7167d6sEiw="}]},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"3.1.1":{"name":"phonegap-plugin-barcodescanner","version":"3.1.1","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows8","windows","wp8","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows8","cordova-windows","cordova-wp8","cordova-browser"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","gitHead":"b58323f54c72c0e93089d1e1fb81592a708309b4","_id":"phonegap-plugin-barcodescanner@3.1.1","scripts":{},"_shasum":"15b9dfa2360cd6058cff6731cee53aa67a1e9612","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.10.36","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"15b9dfa2360cd6058cff6731cee53aa67a1e9612","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-3.1.1.tgz","integrity":"sha512-MNBqXvYdkAlL+3DIydKe1HMDCD8xaYEYm8EwntYqTEhZmbs57VFvqln5pmqFRNZBOpefZTTBn1apAEtPJHBtwQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDY9hCrOfzYO3h68Nfq6S59+2HTFe5KCU4+fnis3aOE4QIhAKxwcGHbxy3RWdwezzah6Up+Wg69tZHpRQ6KMgfZr7YT"}]},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"3.1.2":{"name":"phonegap-plugin-barcodescanner","version":"3.1.2","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows8","windows","wp8","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows8","cordova-windows","cordova-wp8","cordova-browser"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","gitHead":"70ca00be45a675b1b1d6963ad6f72430e579788e","_id":"phonegap-plugin-barcodescanner@3.1.2","scripts":{},"_shasum":"01ae87176d3558db1c26571faca5e6c690bfc4bd","_from":".","_npmVersion":"2.9.1","_nodeVersion":"0.10.36","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"dist":{"shasum":"01ae87176d3558db1c26571faca5e6c690bfc4bd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-3.1.2.tgz","integrity":"sha512-rdpP/EVK/7O3VcnE5OA0Z8GyiQQ7r/6w1sprO3NfhwujB6zDZGvYsxN7fYLtEFUhrfyTHXlNzgRuvyx/vkAJRQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBRYUTF952hRmuOi1lGzJwdI3mN0p/TWtv5P70s639ZSAiEA8iAaNlo2IqAyPg9HLPbYaUuEFi+dnd+2OkE4DTWyGP0="}]},"maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"}],"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"4.0.0":{"name":"phonegap-plugin-barcodescanner","version":"4.0.0","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows8","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows8","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","gitHead":"b005d77852b22073c1b618ddec0d713453f5b69a","_id":"phonegap-plugin-barcodescanner@4.0.0","scripts":{},"_shasum":"1e5a64e64f6264b9459df76c09558362c0c232be","_from":".","_npmVersion":"2.13.2","_nodeVersion":"0.10.36","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"dist":{"shasum":"1e5a64e64f6264b9459df76c09558362c0c232be","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-4.0.0.tgz","integrity":"sha512-ainB9ijMTznK/xiIC7yFRYWkU5ke1NZNS5FuINARNL94ytGgIYP/+/HvQLDsGkt+KB2wXiCGQjS/MYwwYRNVsQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDdPRDQCa0xO8gAH8Cv8EhHic3ztwtaq4pTnA5qznaZAwIhAN4vLOEmXxqLnnlafnza8M8yl6RPZ9b5SaAJ7wo9Gtm6"}]},"maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"}],"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"4.0.1":{"name":"phonegap-plugin-barcodescanner","version":"4.0.1","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows8","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows8","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","gitHead":"f72bc48f7508c84a52a2cbe9e31c31408063def9","_id":"phonegap-plugin-barcodescanner@4.0.1","scripts":{},"_shasum":"ef0b127d1e9258657647b8b28e708349efa8405f","_from":".","_npmVersion":"2.13.2","_nodeVersion":"0.10.36","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"dist":{"shasum":"ef0b127d1e9258657647b8b28e708349efa8405f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-4.0.1.tgz","integrity":"sha512-iqyFyXy+PaZRko3yW/16s2im1jwV85hofZnW4bofGp3ueAo2fUmxFPEgZh03Ss8ruNm4LNtVe05ruAVcQNPITw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFpuApeqtMK9Zp+qrx1kd6D2K/BJilttIauwK62Mk1MmAiEA2bQG2Wf2O/pHwp2Ak55GfitKt6WDhIH77wlfFexGGnA="}]},"maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"}],"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"4.0.2":{"name":"phonegap-plugin-barcodescanner","version":"4.0.2","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows8","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows8","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","gitHead":"74f33d5d14107915c357753684e9276eb37a3f66","_id":"phonegap-plugin-barcodescanner@4.0.2","scripts":{},"_shasum":"d53db9b0095f03de82e6dabd806965852653893d","_from":".","_npmVersion":"2.13.2","_nodeVersion":"0.10.36","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"dist":{"shasum":"d53db9b0095f03de82e6dabd806965852653893d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-4.0.2.tgz","integrity":"sha512-/zPAPUTX9+KvTeannCVT80sDduSjNCtpr17mKdFg6kF+vuDXjGEL8J71Djaf+QsIHn0WrlkNrat9xkX/sj7OOg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDSh3UtokI2vXniBwDUOu7DQDVgNBush/Qa1KEJcptHuQIgUE9OTCXTMusfccy2LXt+UUjXZBKT4Qd+ONfrYkvinj0="}]},"maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"}],"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"4.1.0":{"name":"phonegap-plugin-barcodescanner","version":"4.1.0","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows8","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows8","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","gitHead":"6b5f7fb7626f24b45fb643dcdd841e3fa0e5361f","_id":"phonegap-plugin-barcodescanner@4.1.0","scripts":{},"_shasum":"5415cd004c29367beca8539edd174b244f3df1f2","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.10.36","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"dist":{"shasum":"5415cd004c29367beca8539edd174b244f3df1f2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-4.1.0.tgz","integrity":"sha512-6dNxLXKrxCC2z3hfZc7shTF5MS9PjldlSoBu8l+M1Un4HS74I/B6C7MwlSZnEEL2QpG/0uksDI+k30Nf7HTedw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGnOSna+xtZTm9HBEz7vrw2//WcxUWLF1GVi0YKN9YePAiBMaQw59ZfQ5Kwle8YybZZatc8jgIH0YrzUww7IkgCpnQ=="}]},"maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"}],"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"5.0.0":{"name":"phonegap-plugin-barcodescanner","version":"5.0.0","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows8","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows8","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","gitHead":"27227e9d2b00174e816869bc6123071d470ade87","_id":"phonegap-plugin-barcodescanner@5.0.0","scripts":{},"_shasum":"811d105d79892341fe4c3b940fa9230e157ca860","_from":".","_npmVersion":"3.8.7","_nodeVersion":"5.4.1","_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"dist":{"shasum":"811d105d79892341fe4c3b940fa9230e157ca860","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-5.0.0.tgz","integrity":"sha512-dnab1//776bxq9bPqFqepEBYz4T1mD/BlPbMr2VUngvg2tGMf8goOCeWDT0cOsYaM2MeCEpKlmlmFmRCte1Tsw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGOza4a8SNgLngTCfwixzBmJXCZFCNlZueo/CUe1pYmUAiEA+Uu/meOlDJwUlDEjHHWqpSQoEWZ44cOePqEf/S9lMZk="}]},"maintainers":[{"name":"anonymous","email":"eddyverbruggen@gmail.com"},{"name":"anonymous","email":"kotikov.vladimir@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"},{"name":"anonymous","email":"timothy.windsor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/phonegap-plugin-barcodescanner-5.0.0.tgz_1462472732770_0.46259929495863616"},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"5.0.1":{"name":"phonegap-plugin-barcodescanner","version":"5.0.1","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows8","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows8","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","gitHead":"55e693843e3a556ee9ba9f2dab13fd9ca652396f","_id":"phonegap-plugin-barcodescanner@5.0.1","scripts":{},"_shasum":"4be3b3dafbe3a809d88355122dfb8e57366ee401","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"eddyverbruggen@gmail.com"},"dist":{"shasum":"4be3b3dafbe3a809d88355122dfb8e57366ee401","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-5.0.1.tgz","integrity":"sha512-6d4DeL9lrsILFFBJLH1DlICclW7MZm2u/V7tCqUGZ7G7hJ1qVlYKl+OApQBvXSeG8b6+nb+wdHwYsArSp2ybCw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAFxCreDRVL390aQALKCh+ZzYWQ2MG45rE43xk9bR6ASAiEAnYBh/ri6umzIXKeLliOz2YU3iLeRnG5IMW8gYPj8r0w="}]},"maintainers":[{"name":"anonymous","email":"eddyverbruggen@gmail.com"},{"name":"anonymous","email":"kotikov.vladimir@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"},{"name":"anonymous","email":"timothy.windsor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/phonegap-plugin-barcodescanner-5.0.1.tgz_1466178179183_0.009463469730690122"},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"6.0.0":{"name":"phonegap-plugin-barcodescanner","version":"6.0.0","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","gitHead":"11dd6b5ad2d3528df57a63f3b6ff093452e3bfb9","_id":"phonegap-plugin-barcodescanner@6.0.0","scripts":{},"_shasum":"d0b35da29f3607af33ee3aab1e51a05b1f83a49a","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.2.0","_npmUser":{"name":"anonymous","email":"kotikov.vladimir@gmail.com"},"dist":{"shasum":"d0b35da29f3607af33ee3aab1e51a05b1f83a49a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-6.0.0.tgz","integrity":"sha512-b6beQY3LSJKsVBhDg90gxVBBf9cM69e9trFEa7/Jnp64o9BFurIxq6673yeoVr2UONSCJvoLPdHLhveto48eUA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDMzh5PGH7q6MXQSZbJgIMnnEdksOPOMNJPEx7n1714IgIhAPrJCcqLpxEsn5hMNnBMSSkmlUItK0IsI5JHlUq0YGDo"}]},"maintainers":[{"name":"anonymous","email":"eddyverbruggen@gmail.com"},{"name":"anonymous","email":"kotikov.vladimir@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"},{"name":"anonymous","email":"timothy.windsor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/phonegap-plugin-barcodescanner-6.0.0.tgz_1468310193813_0.1421318966895342"},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"6.0.1":{"name":"phonegap-plugin-barcodescanner","version":"6.0.1","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","gitHead":"3cf975bda01cdddd71b03d74ce31c97595ae98af","_id":"phonegap-plugin-barcodescanner@6.0.1","scripts":{},"_shasum":"939741a9f775b878a1a623ca41baeb36708cbfa2","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.3.0","_npmUser":{"name":"anonymous","email":"kotikov.vladimir@gmail.com"},"dist":{"shasum":"939741a9f775b878a1a623ca41baeb36708cbfa2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-6.0.1.tgz","integrity":"sha512-UO2Oi3jD2XkS77kch1ymn9MfUNrnEUFRWJrTuXjoudSdy+N1Vmod2vYwprIytW538iNbwHFFw7MvOJSvt7pcwg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC2ppbjJSApUmTLiqoX9+6jDy1F3r6DMZJlRqXZ6KFQMgIgVjtjlKWz92aLo2S/OD5J6SrCdrKPn01/H/3O+VMAu3E="}]},"maintainers":[{"name":"anonymous","email":"eddyverbruggen@gmail.com"},{"name":"anonymous","email":"kotikov.vladimir@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"},{"name":"anonymous","email":"timothy.windsor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/phonegap-plugin-barcodescanner-6.0.1.tgz_1468660912265_0.3839365162421018"},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"6.0.2":{"name":"phonegap-plugin-barcodescanner","version":"6.0.2","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.5"},"gitHead":"18f958796ee9587d5bc21e6229f40139dd4f0c8a","_id":"phonegap-plugin-barcodescanner@6.0.2","_shasum":"61a18386c629c41c9b5176dce55dc96539a01977","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"simon.macdonald@gmail.com"},"dist":{"shasum":"61a18386c629c41c9b5176dce55dc96539a01977","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-6.0.2.tgz","integrity":"sha512-+Ndd98w998oENdKoB1hAIrykIz5+0GN57w/+5ja7BDGj5NeDVzaWSejwfRhvQs6A/6zQazIGWDZZtCNktTvCQw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDELfg3GnT4tD0pM5lw+L3c7oYlv+peHk4aThf/8gb+NwIgWEwvVcrAHWDGN/4UmwLNGDLbwswahq3lXONKh6IF1cA="}]},"maintainers":[{"name":"anonymous","email":"eddyverbruggen@gmail.com"},{"name":"anonymous","email":"kotikov.vladimir@gmail.com"},{"name":"anonymous","email":"simon.macdonald@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"},{"name":"anonymous","email":"timothy.windsor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/phonegap-plugin-barcodescanner-6.0.2.tgz_1473346310651_0.7092213097494096"},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"6.0.3":{"name":"phonegap-plugin-barcodescanner","version":"6.0.3","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.5"},"gitHead":"356ba6e1aa1d4cd9797c0a6dc879d3927d7076d7","_id":"phonegap-plugin-barcodescanner@6.0.3","_shasum":"4187335ed46ab4d347542aa3a435b6fca6635ef1","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"eddyverbruggen@gmail.com"},"dist":{"shasum":"4187335ed46ab4d347542aa3a435b6fca6635ef1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-6.0.3.tgz","integrity":"sha512-PMEWc8tgzMwSACa0Z1mw9iedCHk7rAOhirQKY40SmJz40dm6NuFTxmltbJ8I58CC/CfIZUDIk2pVRAhaxB+QtQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDuLEo/hA+ZeIyUgXWKTye8u8Fr3cUuMuZ+dDWsrLR6aAIgIL7ImI6VkyQIglAjbLt+xDRp3M1Q4flIaPn0j0WAYOs="}]},"maintainers":[{"name":"anonymous","email":"eddyverbruggen@gmail.com"},{"name":"anonymous","email":"kotikov.vladimir@gmail.com"},{"name":"anonymous","email":"simon.macdonald@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"},{"name":"anonymous","email":"timothy.windsor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/phonegap-plugin-barcodescanner-6.0.3.tgz_1477061523441_0.4103623414412141"},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"6.0.4":{"name":"phonegap-plugin-barcodescanner","version":"6.0.4","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.5"},"gitHead":"cdab6134b922359788c6d9e4bf623a2dd61611d5","_id":"phonegap-plugin-barcodescanner@6.0.4","_shasum":"3b40f4ca41dc180387993be7a7647552326d83d1","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"eddyverbruggen@gmail.com"},"dist":{"shasum":"3b40f4ca41dc180387993be7a7647552326d83d1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-6.0.4.tgz","integrity":"sha512-bD8Z8Bq8lKrTTVIrZhBb5D+XTp6Y5l+z7/z26GCDvMasMog5AvAGFEZwfEFDzxPLT/gp7uqa/zKTd03r37U6Xg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD+3l7zeBPRYquHmhF4GEYP+fegjUXo3Qz0VRFdvrgAnwIhAIP3WzH3Q1IGZUouv2FppydW1E0i787D9teX9UWMPJ8P"}]},"maintainers":[{"name":"anonymous","email":"eddyverbruggen@gmail.com"},{"name":"anonymous","email":"kotikov.vladimir@gmail.com"},{"name":"anonymous","email":"simon.macdonald@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"},{"name":"anonymous","email":"timothy.windsor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/phonegap-plugin-barcodescanner-6.0.4.tgz_1480878627636_0.5798714745324105"},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"6.0.5":{"name":"phonegap-plugin-barcodescanner","version":"6.0.5","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.5"},"gitHead":"93fd6104e49f25bf8df1ac18a14046c5402bb224","_id":"phonegap-plugin-barcodescanner@6.0.5","_shasum":"ff84ec85de7a3dc9baf26821e0d1d1264cc99857","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"eddyverbruggen@gmail.com"},"dist":{"shasum":"ff84ec85de7a3dc9baf26821e0d1d1264cc99857","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-6.0.5.tgz","integrity":"sha512-cEXQqWhAnRCG6ssN2/wTkVFNUttbDOrnwpTL3E2TYIveGb3fJQQOioOr7vinaa3HZ5+CmWB23rjdF8MhjEZNiw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHJRsaN7NBmlURt/U9kvEylZ+Kq9sLVMgRRLqHcCgn3XAiEAsnOr3H8cwmGQdL5N/18WTM6ePCViEACttSQrKKi1icg="}]},"maintainers":[{"name":"anonymous","email":"eddyverbruggen@gmail.com"},{"name":"anonymous","email":"kotikov.vladimir@gmail.com"},{"name":"anonymous","email":"simon.macdonald@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"},{"name":"anonymous","email":"timothy.windsor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/phonegap-plugin-barcodescanner-6.0.5.tgz_1482418907824_0.7276360453106463"},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"6.0.6":{"name":"phonegap-plugin-barcodescanner","version":"6.0.6","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.6"},"gitHead":"1fb633e6e22f97b1d293b1ed94f92f427640dfad","_id":"phonegap-plugin-barcodescanner@6.0.6","_shasum":"c32df9a65332114d63ddbe395f0f4e136d3a20f2","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.0","_npmUser":{"name":"anonymous","email":"simon.macdonald@gmail.com"},"dist":{"shasum":"c32df9a65332114d63ddbe395f0f4e136d3a20f2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-6.0.6.tgz","integrity":"sha512-4evcmfLljVLgtX0XshigQAhp5yPUYSfY14tynHhZPmeYZaENRMT7kA0Qbn2sRlVDrD5NsE5AAiF7RGqnKVodKQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG/+sG9esSq2ZwCxyDwjyX0J/vKvwR3T3r6pkFwSiN0/AiEAijpQJoTkLSm9aHaDmbRPd5U5TaBJgPeI3EBe/tf3GDs="}]},"maintainers":[{"name":"anonymous","email":"eddyverbruggen@gmail.com"},{"name":"anonymous","email":"kotikov.vladimir@gmail.com"},{"name":"anonymous","email":"simon.macdonald@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"},{"name":"anonymous","email":"timothy.windsor@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/phonegap-plugin-barcodescanner-6.0.6.tgz_1489422126577_0.18323627253994346"},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"6.0.7":{"name":"phonegap-plugin-barcodescanner","version":"6.0.7","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.8"},"gitHead":"78dbf1cccb30935b832dc659eb377541edc52786","_id":"phonegap-plugin-barcodescanner@6.0.7","_shasum":"48a28b032b996c99bc9dbfc263a381f737806552","_from":".","_npmVersion":"2.15.12","_nodeVersion":"4.8.0","_npmUser":{"name":"anonymous","email":"simon.macdonald@gmail.com"},"dist":{"shasum":"48a28b032b996c99bc9dbfc263a381f737806552","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-6.0.7.tgz","integrity":"sha512-PaTioykJeMrI9P2B58bH8n4MAu28XDGXBVKID913sUAjsWTy0OCWjhfIfdTcegQ5jIIT6nhJoTnEa3XKa0uRnw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBOA+mDd30EkR/DkI884oNmBu5n/KpSypCalcxY+pcr2AiEAxWr2eBymKPUNQRvqLGU9ZSww5sFZ/oo62PIT5ENnQqA="}]},"maintainers":[{"name":"anonymous","email":"eddyverbruggen@gmail.com"},{"name":"anonymous","email":"kotikov.vladimir@gmail.com"},{"name":"anonymous","email":"simon.macdonald@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"},{"name":"anonymous","email":"timothy.windsor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/phonegap-plugin-barcodescanner-6.0.7.tgz_1499875113548_0.11430124822072685"},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"6.0.8":{"name":"phonegap-plugin-barcodescanner","version":"6.0.8","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":[{"name":"cordova","version":">=3.0.0"}],"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.8"},"gitHead":"b3e99476b768df3fb4da50ff3bca4aea6f863710","_id":"phonegap-plugin-barcodescanner@6.0.8","_shasum":"d95c72b8aae1683f630fbc0c16dd51ede7ee44eb","_from":".","_npmVersion":"2.15.12","_nodeVersion":"4.8.0","_npmUser":{"name":"anonymous","email":"simon.macdonald@gmail.com"},"dist":{"shasum":"d95c72b8aae1683f630fbc0c16dd51ede7ee44eb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-6.0.8.tgz","integrity":"sha512-P+GP7ilyjg+RxZ1vR8jeHGDNJ5Lv9JwkJjM9AU4kTZyld++mKKNMbBTqzqDFMT0vLMXudYHJYOPWbbVCBeDnBg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDE3UmtWlWCRDVjAxmQXbxNT5EnZ5ATzTCbmHjRLDcEkQIgEk528IldGIlbmMpewlsyazHEIuaKlqBjGHUHt5mcE5g="}]},"maintainers":[{"name":"anonymous","email":"eddyverbruggen@gmail.com"},{"name":"anonymous","email":"kotikov.vladimir@gmail.com"},{"name":"anonymous","email":"simon.macdonald@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"},{"name":"anonymous","email":"timothy.windsor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/phonegap-plugin-barcodescanner-6.0.8.tgz_1500411963009_0.3565377239137888"},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"7.0.0":{"name":"phonegap-plugin-barcodescanner","version":"7.0.0","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":{"cordovaDependencies":{"7.0.0":{"cordova-android":">=6.3.0"}}},"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.9"},"gitHead":"d33fcd0117524f6a0ce8cb06a978c7c71c347d10","_id":"phonegap-plugin-barcodescanner@7.0.0","_shasum":"3868c21361489fa0edf86ba31d87bc1bde69554b","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.2.1","_npmUser":{"name":"anonymous","email":"simon.macdonald@gmail.com"},"dist":{"shasum":"3868c21361489fa0edf86ba31d87bc1bde69554b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-7.0.0.tgz","integrity":"sha512-dnbCc/Ah8BT4f1IvyhVmkxEH9q2rRniwwyJCtmdlCW40YMdhs4vyri6jl17hC1ZgmhPXyS/p2MmUXTEMLgi2/w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDH5n+1JQyTexdK85aR3WD2YL80cB+Wan34bZu8hzSPkQIhAM2zm72FnSVXWWPkywhBRsAtu3Q189Q1pssVC65SScwh"}]},"maintainers":[{"name":"anonymous","email":"eddyverbruggen@gmail.com"},{"name":"anonymous","email":"kotikov.vladimir@gmail.com"},{"name":"anonymous","email":"simon.macdonald@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"},{"name":"anonymous","email":"timothy.windsor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/phonegap-plugin-barcodescanner-7.0.0.tgz_1508939867284_0.8544839229434729"},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"7.0.1":{"name":"phonegap-plugin-barcodescanner","version":"7.0.1","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":{"cordovaDependencies":{"7.0.0":{"cordova-android":">=6.3.0"}}},"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.9"},"gitHead":"54bfa7a2d2f6d035cbff91c3d6f78832889270e1","_id":"phonegap-plugin-barcodescanner@7.0.1","_shasum":"6a4b70dc4e4962b3f7974f4e38ee931298f3268c","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.2.1","_npmUser":{"name":"anonymous","email":"simon.macdonald@gmail.com"},"dist":{"shasum":"6a4b70dc4e4962b3f7974f4e38ee931298f3268c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-7.0.1.tgz","integrity":"sha512-sSa1NwGNLGgEIkLDgH7udZ7/4Wf9Sa1vtHbOoEIdZgphaQkpos9x/AeXmAIiTZc9c6vUwX6VQvYXiIO1m7frwQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEtJtYZOmAraBGftc9XelJlAXIgWoytPo8gQgTnQ7QYNAiEA3/19jPK+Ped74WNM5Odq/LW6pBed7fct4haVMQ8Iiu0="}]},"maintainers":[{"name":"anonymous","email":"eddyverbruggen@gmail.com"},{"name":"anonymous","email":"kotikov.vladimir@gmail.com"},{"name":"anonymous","email":"simon.macdonald@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"},{"name":"anonymous","email":"timothy.windsor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/phonegap-plugin-barcodescanner-7.0.1.tgz_1515109187080_0.6711973354686052"},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"7.0.2":{"name":"phonegap-plugin-barcodescanner","version":"7.0.2","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":{"cordovaDependencies":{"7.0.0":{"cordova-android":">=6.3.0"}}},"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.9"},"gitHead":"97ea85db70c6aa0fea849b0664a32e2e7e39fc96","_id":"phonegap-plugin-barcodescanner@7.0.2","_shasum":"49039da3c243d25d2e2c99b48ac107ac0b521d8a","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.2.1","_npmUser":{"name":"anonymous","email":"simon.macdonald@gmail.com"},"dist":{"shasum":"49039da3c243d25d2e2c99b48ac107ac0b521d8a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-7.0.2.tgz","integrity":"sha512-t6MsYOQ63B0h3ZFjX9mlYGEhn6XqlwIUsEaOQSBPZfh5fcXJRr4aoj2uwAo8hxeD3YSiYkC1SqJU1h9FdK140Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD4rNzi8kr7o7V73RmBAhUitMk8uyQzRC/2swAehpJ3KwIhALLdKj6G6smwDI+X4sMBXS+eGeSe49OqVByEzPwyB2AG"}]},"maintainers":[{"name":"anonymous","email":"eddyverbruggen@gmail.com"},{"name":"anonymous","email":"kotikov.vladimir@gmail.com"},{"name":"anonymous","email":"simon.macdonald@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"npmjs@barhams.info"},{"name":"anonymous","email":"timothy.windsor@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/phonegap-plugin-barcodescanner-7.0.2.tgz_1515768795930_0.12046484113670886"},"directories":{},"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"7.0.3":{"name":"phonegap-plugin-barcodescanner","version":"7.0.3","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":{"cordovaDependencies":{"7.0.0":{"cordova-android":">=6.3.0"}}},"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.9"},"gitHead":"b508cd36ca5e0e52ff3c23b09c64675f25eda084","_id":"phonegap-plugin-barcodescanner@7.0.3","_shasum":"92cd312f38f1caa62abbf2112fe3b1263f38d36a","_from":".","_npmVersion":"4.6.1","_nodeVersion":"8.2.1","_npmUser":{"name":"anonymous","email":"simon.macdonald@gmail.com"},"dist":{"shasum":"92cd312f38f1caa62abbf2112fe3b1263f38d36a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-7.0.3.tgz","fileCount":78,"unpackedSize":6611063,"integrity":"sha512-4cif1bYupNK/FeXX+6YlFLZ2sHDZhJiuOeyZNabNmcoAgIit6c7gNRtmE59Qfhz0b0tUOYikrOCAsJRdGozkfg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDmWtouthD+DT87Tl4d21k68YOfPsj0+oVomUvlGS19hAIhAMzwanksiI3Jm6mH/NQi7N6/t2B2AtFnL/6PwZne2j7F"}]},"maintainers":[{"email":"eddyverbruggen@gmail.com","name":"anonymous"},{"email":"jcesarmobile@gmail.com","name":"anonymous"},{"email":"kotikov.vladimir@gmail.com","name":"anonymous"},{"email":"simon.macdonald@gmail.com","name":"anonymous"},{"email":"stevengill97@gmail.com","name":"anonymous"},{"email":"npmjs@barhams.info","name":"anonymous"},{"email":"timothy.windsor@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/phonegap-plugin-barcodescanner_7.0.3_1520808383054_0.19739704401436442"},"_hasShrinkwrap":false,"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"7.0.4":{"name":"phonegap-plugin-barcodescanner","version":"7.0.4","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":{"cordovaDependencies":{"7.0.0":{"cordova-android":">=6.3.0"}}},"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.9"},"gitHead":"7cdfcb669785d174ee32bffdfb16995863b06415","_id":"phonegap-plugin-barcodescanner@7.0.4","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"anonymous","email":"jcesarmobile@gmail.com"},"dist":{"integrity":"sha512-VZWqyAwv4luOQ9VOBJrhDJ9RuFnvRWcWFs0hPIfviRkrRsVmSjuGJ1VxUfjHpEmaq7epxnc0m0V6QmwtEqA9xg==","shasum":"fe33f4e0c9b4a134fece69bce7de230ad35d3654","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-7.0.4.tgz","fileCount":75,"unpackedSize":6610981,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDrgaPUJykGRF5yAAQr1SIsn6ifIYKchqoKZAzYU+bS9AIhAIrR4FLkC8NPLzAR0A5L3SABAkz4yTnV87xEqsXzSNis"}]},"maintainers":[{"email":"eddyverbruggen@gmail.com","name":"anonymous"},{"email":"jcesarmobile@gmail.com","name":"anonymous"},{"email":"kotikov.vladimir@gmail.com","name":"anonymous"},{"email":"simon.macdonald@gmail.com","name":"anonymous"},{"email":"stevengill97@gmail.com","name":"anonymous"},{"email":"npmjs@barhams.info","name":"anonymous"},{"email":"timothy.windsor@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/phonegap-plugin-barcodescanner_7.0.4_1521153333388_0.9274532803828488"},"_hasShrinkwrap":false,"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"7.1.0":{"name":"phonegap-plugin-barcodescanner","version":"7.1.0","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":{"cordovaDependencies":{"7.0.0":{"cordova-android":">=6.3.0"},"7.1.0":{"cordova-android":">=6.3.0","cordova":">=7.1.0"}}},"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.9"},"gitHead":"aad4a91f858ae54f5c0b1b613b603ce87f910cda","_id":"phonegap-plugin-barcodescanner@7.1.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"anonymous","email":"jcesarmobile@gmail.com"},"dist":{"integrity":"sha512-E9cn3qZ6/DMwOT8P/TMkp3Js1kHzp2mRkvqQM/p4/TUiLRo29YN0+9APG5u3KeKNKBGp0fmH8Dtf76aHn0Cteg==","shasum":"6a52d13feb5c5197a7ab55ca18562b022e5f7d98","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-7.1.0.tgz","fileCount":75,"unpackedSize":6611028,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD+F3UYIBLjzrKjLFhe8qrLwFiC4xhQtdDxI4Erpa3u/QIgGRTBBHRTGtukGm3MMIjCfjv1fAQE7SGm/VywaF1e4H4="}]},"maintainers":[{"email":"eddyverbruggen@gmail.com","name":"anonymous"},{"email":"jcesarmobile@gmail.com","name":"anonymous"},{"email":"kotikov.vladimir@gmail.com","name":"anonymous"},{"email":"simon.macdonald@gmail.com","name":"anonymous"},{"email":"stevengill97@gmail.com","name":"anonymous"},{"email":"npmjs@barhams.info","name":"anonymous"},{"email":"timothy.windsor@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/phonegap-plugin-barcodescanner_7.1.0_1521193109682_0.37037349125423935"},"_hasShrinkwrap":false,"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"7.1.1":{"name":"phonegap-plugin-barcodescanner","version":"7.1.1","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":{"cordovaDependencies":{"7.0.0":{"cordova-android":">=6.3.0"},"7.1.0":{"cordova-android":">=6.3.0","cordova":">=7.1.0"}}},"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.9"},"gitHead":"0474ec1347b88b7a5c12f230254febd9d75a2fc0","_id":"phonegap-plugin-barcodescanner@7.1.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"anonymous","email":"jcesarmobile@gmail.com"},"dist":{"integrity":"sha512-isalqbPfxGlfhY520vjQbjCt6kIqwZZP2VyXx6BF0VXFaEfH0KYl2VcdQCeJ6E/fo337XZEEU2OHC8igy8g+0g==","shasum":"dbe825cee43e2dff001d3422864f723204949d1a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-7.1.1.tgz","fileCount":73,"unpackedSize":6060431,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDqCHR2bXNKy5XdMj9OgZsUf/Xy4+fBtA+hvvXA9XBFZQIgCH7jNFanoh6+SXwUdCyGLgBEmaAGF5vgofxnzV/bORA="}]},"maintainers":[{"email":"eddyverbruggen@gmail.com","name":"anonymous"},{"email":"jcesarmobile@gmail.com","name":"anonymous"},{"email":"kotikov.vladimir@gmail.com","name":"anonymous"},{"email":"simon.macdonald@gmail.com","name":"anonymous"},{"email":"stevengill97@gmail.com","name":"anonymous"},{"email":"npmjs@barhams.info","name":"anonymous"},{"email":"timothy.windsor@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/phonegap-plugin-barcodescanner_7.1.1_1523203268588_0.6930715657723112"},"_hasShrinkwrap":false,"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"7.1.2":{"name":"phonegap-plugin-barcodescanner","version":"7.1.2","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","wp8","blackberry10","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-wp8","cordova-blackberry10","cordova-browser","cordova:plugin"],"engines":{"cordovaDependencies":{"7.0.0":{"cordova-android":">=6.3.0"},"7.1.0":{"cordova-android":">=6.3.0","cordova":">=7.1.0"}}},"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.9"},"gitHead":"5a66848e15f1909f0cecea09a8c2eb80815ba34e","_id":"phonegap-plugin-barcodescanner@7.1.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"anonymous","email":"jcesarmobile@gmail.com"},"dist":{"integrity":"sha512-9jxhXptCUPkD8dnNEjjQTClKrpXc4LjDOGpBuqwxJTSIiVsgv00P8pfmWGNYfyJD9N3yBYYra/X0UexbUKWxtw==","shasum":"100b909f2b2deeae96eb73b4f0dce19cb50cb3a3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-7.1.2.tgz","fileCount":73,"unpackedSize":6060955,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5PvcCRA9TVsSAnZWagAAxQgP/jGAYaxNDVXvIVmp7g1m\nYuIBsJFSQqkzY3Qc0Tzqd5mFv9RvFHlYqMMmEyS701WsJEYFM7YGi6QkFGCy\nwlLSMnL0QOb5PXmCuX3aE8MEp1nD6B6ZP3rHjk0YM0JBJtK+BF7eifWybim5\nvrzq38Z3vxyjtj/fD3SZrYAMHKQ3JRnhLf/EC1LdeXxwqhsyGnp8RsnvI4ph\nb4rxkBMXixVNZSBE+79K6bxCydnROXkoGpeo8esm66DV2lQpyTCSY+REOUTl\nOw9kAFNAhZKSHHRciO7tcbuMm9KspTtXg90R92JiNhui12YIPMoqBM4ilG4A\nvshZoXb8sCBf8ppIJRgHQVtLSCQuUse7kisGLZ5RSqOMNYcWghUze9CAdtEw\nJNVBy/oZJlr2XgeSg270Ja0AYr0EpXEL8UoybCqplkEVEq17MMAAnO+1tzGf\nkpkNczVhA536ID2pi5letvJNvPH+Wh4QBIZ5nTqS4K7wd1ESw0thUDSpZBUV\nQwAfKFclMDtcdvVMyos4heWBN4dF+0sn5vJANNiV6T1S/KDAOAQOyMLWffcz\n+v5176F3wKve3IK3LtLqD/rSiH1RZ9/TJb/krxNtX9FSMiHxXVrN5QZVKzQt\nUUnhPavqlbrsQdDFJHaNEooZwrwUDAXxT0jCyUy/szXfC8ctNg58P4Ouucqm\nvk06\r\n=1EFG\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGv8OhkaqTV3OA5X+0R2mU7MpB+OwEj+Hq0kxvoHhurKAiB6Wj8U6Be+Jj5IEYM/GYUZhkeU+LQCAbu/Np9Jf3RvuQ=="}]},"maintainers":[{"email":"eddyverbruggen@gmail.com","name":"anonymous"},{"email":"jcesarmobile@gmail.com","name":"anonymous"},{"email":"kotikov.vladimir@gmail.com","name":"anonymous"},{"email":"simon.macdonald@gmail.com","name":"anonymous"},{"email":"stevengill97@gmail.com","name":"anonymous"},{"email":"npmjs@barhams.info","name":"anonymous"},{"email":"timothy.windsor@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/phonegap-plugin-barcodescanner_7.1.2_1524956122773_0.3877265442128759"},"_hasShrinkwrap":false,"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"8.0.0":{"name":"phonegap-plugin-barcodescanner","version":"8.0.0","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-browser","cordova:plugin"],"engines":{"cordovaDependencies":{"<7.0.0":{"cordova-android":"<6.3.0"},"7.0.0":{"cordova-android":">=6.3.0"},"7.1.0":{"cordova-android":">=6.3.0","cordova":">=7.1.0"},"8.0.0":{"cordova-android":">=6.3.0","cordova":">=7.1.0"}}},"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.9"},"gitHead":"e2ba60ca6b7e36306b02a0f3c437fbee51bda2ed","_id":"phonegap-plugin-barcodescanner@8.0.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"anonymous","email":"jcesarmobile@gmail.com"},"dist":{"integrity":"sha512-8mWI2bsCwkuvqCFdG7tBXdUH4X3Ay1uXpnjxCS/If8qJIbv1eaI2XMNHN+V2+YUemJoZC7chlF76YXjeQXVEFg==","shasum":"bdad5454bcbb1c27b0ded0bc5c646227e7a91f06","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-8.0.0.tgz","fileCount":35,"unpackedSize":3457401,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDusjCRA9TVsSAnZWagAAqsYQAJnCHT7zO57MBAoEyjvJ\nx80Zl0zW0q0FlJY5KBsJgKyYk0pI8NkBdoyNBaEVDwwJt9a5RtGe6kNmFse+\nwVVvJvZEuZuOIgHNv+6EnlqWXDJW/KlCxBZRpS7NDH/vsn7H7mL+dzyJhBpd\nUOVyZ2s2oBWraet3ohMyTt/uFUHbivi1ljZj1qyL0l5UzuFl1ZdU2aVcrzQP\nFFNde4X9KuDhTTe5NvseeaJxsTqcwO8UlfuXtQLBahGPptu5F020eXKe7utE\nUPcBZfZjt0ECkWlp6n8puOYif0ktR5tr0dVMueWK3FsH3T7AckCN0SW3ebQe\nIHhGA+AyUIGBXT3R2VDi4m5TeCKntjqCqcYF3zJYvWal369/IvOmleNvQv8c\n72WO5qFSTC4IzIL4sFZcEH58yqFxM1mdFfntyIoWdaXVIvzjBCgxMVxQr5k6\nvU+hMvaiRWUT9NJlozTxUvHt4eIjwaHW59LuBq4wlSqiJYgosYMXvdKP65K+\nMgrnYg9gJ9dE9RjMxPu1Ni5xgWJfAe2raW1Y3Ns+rHSbPzC0gWrgJdUMtvmn\nhes/qt9XS0/eprSt8RMs1QI3rakXDre/XSsS/VTxZzCwrrHLRHO4SjzQVsGM\nIQ9LiX4DCugAnILO5354j3lWy12WIKQZHzedgVVXrC8mxY/K92n2gdFe0f6n\nJhpW\r\n=oUmf\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCRgTDnrSZX9Rri1qtDSNMhGgw3LXmEQbxPFuXCSdatwwIgBBZXB3TVvl7Kzi4JzYUNaK9dqRHl4dn1RF15dlyufEE="}]},"maintainers":[{"email":"eddyverbruggen@gmail.com","name":"anonymous"},{"email":"jcesarmobile@gmail.com","name":"anonymous"},{"email":"kotikov.vladimir@gmail.com","name":"anonymous"},{"email":"simon.macdonald@gmail.com","name":"anonymous"},{"email":"stevengill97@gmail.com","name":"anonymous"},{"email":"npmjs@barhams.info","name":"anonymous"},{"email":"timothy.windsor@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/phonegap-plugin-barcodescanner_8.0.0_1527704353848_0.33252446582937045"},"_hasShrinkwrap":false,"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"8.0.1":{"name":"phonegap-plugin-barcodescanner","version":"8.0.1","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-browser","cordova:plugin"],"engines":{"cordovaDependencies":{"<7.0.0":{"cordova-android":"<6.3.0"},"7.0.0":{"cordova-android":">=6.3.0"},"7.1.0":{"cordova-android":">=6.3.0","cordova":">=7.1.0"},"8.0.0":{"cordova-android":">=6.3.0","cordova":">=7.1.0"}}},"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.9"},"gitHead":"c5dbca2770d7c0f22ccb23473cd38c5fad8f8fa9","_id":"phonegap-plugin-barcodescanner@8.0.1","_npmVersion":"6.4.1","_nodeVersion":"10.12.0","_npmUser":{"name":"anonymous","email":"jcesarmobile@gmail.com"},"dist":{"integrity":"sha512-s+wY33+FPgfl/Yc81mIKoPuBX9yhRow0ARGpFZkmiwNplNs8eEwS+XnAzUlYCn77yvyiSymRmSMjjQdbvyHDuQ==","shasum":"829348e7e2e4353b39ea1ef15fed08b4617f683a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-8.0.1.tgz","fileCount":37,"unpackedSize":3459779,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/Y7DCRA9TVsSAnZWagAAuPAP/1kPHh/mxvKH7fj1BCja\nSNIy4mP6ELMgF7bZl1wU4v5HdPfiiCpXPd4mcf82DiQJXOY4aV//GNe9C1tz\n5SurHfDOUdTnGlBVBDCA7gf4mWUPxJ6UuckIbAiSVtb7cZJwLT+LDFROm5Ar\nxdEVeIoTm/N83XrlXalzm5z2Jcoc+z96hKU64ouX4ZIt7dkHuvCc5pZs9Mdm\nq02IeGX2eGobjBM2r6BHZF+WkhT0tHiDTZsix0jrd0cCUp/Xr4vlIb7ZfXz3\nld2R398CQTCeOPXYwntTU4RD+BzqXA24Xc9YcKfzH6Or6l3BG/nQH+HXYBXt\nzmTyhy0cPrR7h4+vPiyfKJPqhvFYWZphJlXKKiq+WgGX14s4Ec1kAb5u9cVT\nK52F/jRQAvl9cgB7EdpOYmaDzqBqR0zx3hLZjRm54BkQzQQ2LIP+C3AbN3xz\nSN/EbWzxHImSVq5Q/dae5brwI2XMJWDPpsSD/3qndJx5nODfFts/QRLut7iP\nV6tyW63Z/4CT81DBKxrzgxJVqTB8Yzt8VGnFetHThRrwccXtVRxrCYUA0qoT\n7FRLxacCwegYNDlNz/G7v7mRaPBSi4ubjNfcZSPlCaKOp/iFZJ32ipw5TEBf\n4TY00wI21El1+ZY6kxvfTQ+YvJnAM201MjAFTaUvzXBliw6CMWTJiPG7m2lX\nitii\r\n=R+it\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQChLsyuwBlUIbe1/6f7X5Ru7OKqQupNHHtEbhM5BQe9IwIhAIQLtzn8hXeoA9aeH8wC3jJLraJnGaGOXmcMJebz25Rj"}]},"maintainers":[{"email":"eddyverbruggen@gmail.com","name":"anonymous"},{"email":"jcesarmobile@gmail.com","name":"anonymous"},{"email":"kotikov.vladimir@gmail.com","name":"anonymous"},{"email":"simon.macdonald@gmail.com","name":"anonymous"},{"email":"stevengill97@gmail.com","name":"anonymous"},{"email":"npmjs@barhams.info","name":"anonymous"},{"email":"timothy.windsor@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/phonegap-plugin-barcodescanner_8.0.1_1543343810591_0.7964319914236477"},"_hasShrinkwrap":false,"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"},"8.1.0":{"name":"phonegap-plugin-barcodescanner","version":"8.1.0","description":"You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.","cordova":{"id":"phonegap-plugin-barcodescanner","platforms":["ios","android","windows","browser"]},"repository":{"type":"git","url":"git+https://github.com/phonegap/phonegap-plugin-barcodescanner.git"},"keywords":["ecosystem:cordova","ecosystem:phonegap","cordova-ios","cordova-android","cordova-windows","cordova-browser","cordova:plugin"],"engines":{"cordovaDependencies":{"<7.0.0":{"cordova-android":"<6.3.0"},"7.0.0":{"cordova-android":">=6.3.0"},"7.1.0":{"cordova-android":">=6.3.0","cordova":">=7.1.0"},"8.0.0":{"cordova-android":">=6.3.0","cordova":">=7.1.0"}}},"author":{"name":"Adobe PhoneGap Team"},"license":"MIT","bugs":{"url":"https://github.com/phonegap/phonegap-plugin-barcodescanner/issues"},"homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme","scripts":{"test":"jasmine-node --color spec"},"devDependencies":{"jasmine-node":"1.14.5","pluginpub":"^0.0.9"},"dependencies":{"nopt":"^4.0.1","shelljs":"^0.8.3"},"gitHead":"7345c774837112ce2eb7a1ae4cd97b69155e1773","_id":"phonegap-plugin-barcodescanner@8.1.0","_nodeVersion":"12.4.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-WQCDCoH9EQ9WEn2bce+B95jbNJduilAn2Vtske8KfcYAeGu7bdFqRD7zGCLCQao62VwoEwlX0cUvbQ/am12Jwg==","shasum":"e0d53e4e850699205e915a4b91c2f202d31f8311","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/phonegap-plugin-barcodescanner/-/phonegap-plugin-barcodescanner-8.1.0.tgz","fileCount":37,"unpackedSize":3472669,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdEtNDCRA9TVsSAnZWagAAC4kP/iuS3DLLfzrE+7WQgxhY\nC8H8XF+RuO4wFy9KWozaig+g42ouVrluwzlqP2YQJa8Eo8pahHP222z1iLyq\n5hAGA6aUvkVncxjTeFuJzRBQhoPwgt+0+L1CNLFVA8hJK69Js+irm9JuPSNZ\njxvccCI1hDndZhITwJMzvyBhB2KL53o9WVC2DEdvydlBW4er5PUPolUh9O8Y\nbuhM2Qv0URgOQgDGAq0ojJiaV40GkzDa7mnBan4mutEl0gYqSuct5ulkZunR\nVwcXvy6UWDKnBXLFBaSHY0fRizy/kg6ZT6BspQ05eGr8w7uJpokRvys4vDfS\nv64x4rajKQFOMcihQD+YFIptPZXpQfbzhUePPgi9wPZuPV9jlJOgbH8J0y5p\n7uQjmjj5491cZkIsyR+/HJtLum9Z/Uajjb0dFN2NVYrMRyDI10YNJ1WF65ZI\nto/pgRDUFepNqkmfXvNbf72spz4Lps8cyHSg0tSvrk0ZCQnhjM7xt+F3TLZX\nGctdyqIHCEl96U0yMJL2Hh1m1M3c5GdnKYTwm0/+vTfv1HjW5o35a+BluB6x\n//ghXxA8xqfeCMsNDj/iSMAyiic0qIwzGn0s2C0+ljDHUqsiouC7v9j7kiA+\ndZuXjJJ7zO4l7KJ0mBU/CzgmjOMBSATyXVVvln+tn1SYaKVxHzdApLEspLh0\nTrxE\r\n=7VCy\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFKcK1viS+7deP/UiObkNuz87LQq1eFKEZVF2YDG0tRMAiEAomc7/+2M0wnx4vyBRmdDPMvSjQG85U4oR0eyynzQjJE="}]},"maintainers":[{"email":"eddyverbruggen@gmail.com","name":"anonymous"},{"email":"erisu.dev@outlook.jp","name":"anonymous"},{"email":"jcesarmobile@gmail.com","name":"anonymous"},{"email":"kotikov.vladimir@gmail.com","name":"anonymous"},{"email":"simon.macdonald@gmail.com","name":"anonymous"},{"email":"purplecabbage@gmail.com","name":"anonymous"},{"email":"stevengill97@gmail.com","name":"anonymous"},{"email":"npmjs@barhams.info","name":"anonymous"},{"email":"timothy.windsor@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"erisu.dev@outlook.jp"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/phonegap-plugin-barcodescanner_8.1.0_1561514818727_0.23722027363556175"},"_hasShrinkwrap":false,"deprecated":"This package is deprecated, see https://blog.phonegap.com/update-for-customers-using-phonegap-and-phonegap-build-cc701c77502c"}},"name":"phonegap-plugin-barcodescanner","time":{"modified":"2022-06-23T21:28:07.709Z","created":"2015-05-21T19:41:48.374Z","3.0.0":"2015-05-21T19:41:48.374Z","3.0.1":"2015-05-26T08:54:33.684Z","3.1.0":"2015-05-27T00:49:15.618Z","3.1.1":"2015-06-08T20:34:31.547Z","3.1.2":"2015-06-09T18:33:03.362Z","4.0.0":"2015-07-30T23:57:16.104Z","4.0.1":"2015-08-06T20:19:19.132Z","4.0.2":"2015-08-28T18:16:59.288Z","4.1.0":"2015-10-19T18:55:06.922Z","5.0.0":"2016-05-05T18:25:37.228Z","5.0.1":"2016-06-17T15:43:03.236Z","6.0.0":"2016-07-12T07:56:35.414Z","6.0.1":"2016-07-16T09:21:56.299Z","6.0.2":"2016-09-08T14:51:54.040Z","6.0.3":"2016-10-21T14:52:04.492Z","6.0.4":"2016-12-04T19:10:28.318Z","6.0.5":"2016-12-22T15:01:51.612Z","6.0.6":"2017-03-13T16:22:07.276Z","6.0.7":"2017-07-12T15:58:33.937Z","6.0.8":"2017-07-18T21:06:05.333Z","7.0.0":"2017-10-25T13:57:49.210Z","7.0.1":"2018-01-04T23:39:47.938Z","7.0.2":"2018-01-12T14:53:16.319Z","7.0.3":"2018-03-11T22:46:23.214Z","7.0.4":"2018-03-15T22:35:33.577Z","7.1.0":"2018-03-16T09:38:29.843Z","7.1.1":"2018-04-08T16:01:10.036Z","7.1.2":"2018-04-28T22:55:22.974Z","8.0.0":"2018-05-30T18:19:14.060Z","8.0.1":"2018-11-27T18:36:50.788Z","8.1.0":"2019-06-26T02:06:59.014Z"},"readmeFilename":"README.md","homepage":"https://github.com/phonegap/phonegap-plugin-barcodescanner#readme"}