{"_id":"cordova-plugin-document-viewer","_rev":"29-7aa44c33c0a49416add124460e7bb48c","name":"cordova-plugin-document-viewer","time":{"modified":"2022-06-14T00:06:04.086Z","created":"2015-10-28T08:03:05.266Z","0.2.0":"2015-10-28T08:03:05.266Z","0.5.0":"2016-10-06T11:24:53.298Z","0.6.0":"2016-12-14T07:55:53.368Z","0.7.0":"2016-12-30T14:02:10.533Z","0.8.0":"2017-01-18T15:40:02.140Z","0.8.1":"2017-03-08T14:33:03.456Z","0.9.0":"2017-05-09T11:51:48.649Z","0.9.1":"2017-05-09T12:38:46.995Z","0.9.2":"2017-05-18T14:24:03.414Z","0.9.3":"2017-06-06T07:40:32.070Z","0.9.4":"2017-07-18T06:41:48.803Z","0.9.5":"2017-07-18T10:37:32.009Z","0.9.6":"2017-11-02T09:11:24.294Z","0.9.7":"2017-11-06T09:29:27.299Z","0.9.8":"2018-02-26T09:39:34.537Z","0.9.9":"2018-03-12T16:26:06.226Z","0.9.10":"2018-05-29T07:22:06.762Z","0.9.11":"2019-05-29T09:56:35.147Z","0.9.12":"2019-09-27T06:44:48.513Z","0.9.13":"2019-10-01T12:39:11.403Z","1.0.0":"2020-09-02T06:11:26.886Z"},"maintainers":[{"email":"kontakt@sitewaerts.de","name":"esch"},{"email":"schauerte@sitewaerts.de","name":"regnete"}],"dist-tags":{"latest":"1.0.0"},"description":"PDF Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10","readme":"Cordova Document Viewer Plugin\r\n============================\r\n\r\nA common requirement when developing a cordova based app is to embed a\r\nperformant and secure inline viewer for pdf files which doesn't allow the user\r\nto extract a copy of the pdf file out of the apps sandbox.\r\n\r\nSimple delegation to commonly available viewer apps like Acrobat Reader or\r\nMuPDF is no proper solution, as the app looses control over the pdf file in this case.\r\nThe external viewer app may or may not provide features to send the document\r\nvia email or save it to the devices disk, which is not acceptable.\r\n\r\nThis plugin offers a slim API to view PDF files which are either stored in the\r\napps assets folder (/www/*) or in any other file system directory\r\navailable via the cordova file plugin\r\n(e.g. cordova.file.applicationDirectory, cordova.file.dataDirectory).\r\n\r\nOnline files reachable via http(s) are not supported. Download them to a temp\r\nfolder before starting the viewer. You may use the ```onClose``` callback\r\nto cleanup the temp dir when the viewer is closed.\r\n\r\nViewer features like \"Save as\" or \"Send via EMail\" are configurable at runtime.\r\n\r\nLabels for buttons (i18n) are configurable at runtime.\r\n\r\n### Plugin's Purpose\r\nThe purpose of the plugin is to create a platform independent javascript\r\ninterface for [Cordova][cordova] based mobile applications to view different\r\ndocument types by using native viewer components.\r\n\r\n## Overview\r\n1. [Supported Platforms](#supported-platforms)\r\n2. [Installation](#installation)\r\n3. [Using the plugin](#using-the-plugin)\r\n4. [Known issues](#known-issues)\r\n\r\n## Supported Platforms ##\r\n\r\n* Cordova/Phonegap >=4.4.0\r\n  * iOS 7+\r\n  * Android 4.1+\r\n  * Windows 8.1\r\n  * Windows 10\r\n\r\n## Installation ##\r\n\r\nThe plugin can either be installed from git repository, from local file system\r\nthrough the [Command-line Interface][CLI],\r\nor cloud based through [PhoneGap Build][PGB].\r\n\r\nThe plugin is published at the [npm plugin registry][CDV_plugin].\r\n\r\nAn [ionic native wrapper][ionic] for the plugin is available.\r\n\r\n### Local development environment\r\nFrom master:\r\n```bash\r\n# ~~ from master branch ~~\r\ncordova plugin add https://github.com/sitewaerts/cordova-plugin-document-viewer.git\r\n```\r\nfrom a local folder:\r\n```bash\r\n# ~~ local folder ~~\r\ncordova plugin add cordova-plugin-document-viewer --searchpath path/to/plugin\r\n```\r\nor to use the last stable version:\r\n```bash\r\n# ~~ stable version ~~\r\ncordova plugin add cordova-plugin-document-viewer\r\n```\r\nor to use a specific version:\r\n```bash\r\n# ~~ stable version ~~\r\ncordova plugin add cordova-plugin-document-viewer@[VERSION]\r\n```\r\n\r\nYou may replace cordova with phonegap regarding to your needs.\r\n\r\n### PhoneGap Build\r\nAdd the following xml to your config.xml to always use the latest version of this plugin:\r\n```xml\r\n<gap:plugin name=\"cordova-plugin-document-viewer\" />\r\n```\r\nor a specific version:\r\n```xml\r\n<gap:plugin name=\"cordova-plugin-document-viewer\" version=\"[VERSION]\"/>\r\n```\r\nFor available versions and additional information visit the [npm plugin registry][CDV_plugin].\r\n\r\n\r\n## Using the plugin ##\r\n\r\nSee https://github.com/sitewaerts/cordova-plugin-document-viewer-sample-app for a working example.\r\n\r\nThe plugin creates the object ```cordova.plugins.SitewaertsDocumentViewer```.\r\n\r\n### Plugin initialization\r\nThe plugin and its methods are not available before the *deviceready* event has been fired.\r\n\r\n```javascript\r\ndocument.addEventListener('deviceready', function () {\r\n    // cordova.plugins.SitewaertsDocumentViewer is now available\r\n}, false);\r\n```\r\n\r\n### Common Arguments ###\r\n\r\n#### url ####\r\nString pointing to a device local file (e.g. 'file:///...')\r\n\r\n#### mimeType ####\r\nString representing the mime type of the file. Currently only 'application/pdf' is supported.\r\n\r\n#### options ####\r\nSome optional features like search or bookmarks are not (yet) implemented on every platform! \r\n```js\r\nvar options = {\r\n\ttitle: STRING,\r\n\tdocumentView : {\r\n\t\tcloseLabel : STRING\r\n\t},\r\n\tnavigationView : {\r\n\t\tcloseLabel : STRING\r\n\t},\r\n\temail : {\r\n\t\tenabled : BOOLEAN\r\n\t},\r\n\tprint : {\r\n\t\tenabled : BOOLEAN\r\n\t},\r\n\topenWith : {\r\n\t\tenabled : BOOLEAN\r\n\t},\r\n\tbookmarks : {\r\n\t\tenabled : BOOLEAN\r\n\t},\r\n\tsearch : {\r\n\t\tenabled : BOOLEAN\r\n\t},\r\n\tautoClose: {\r\n\t\tonPause : BOOLEAN\r\n\t}\r\n}\r\n```\r\n\r\n### Check if a Document File could be shown ###\r\n```js\r\ncordova.plugins.SitewaertsDocumentViewer.canViewDocument(\r\n    url, contentType, options, onPossible, onMissingApp, onImpossible, onError);\r\n```\r\n\r\n#### onPossible ####\r\n```js\r\nfunction onPossible(){\r\n  window.console.log('document can be shown');\r\n  //e.g. track document usage\r\n}\r\n```\r\n\r\n#### onMissingApp ####\r\n```js\r\nfunction onMissingApp(appId, installer)\r\n{\r\n    if(confirm(\"Do you want to install the free PDF Viewer App \"\r\n            + appId + \" for Android?\"))\r\n    {\r\n        installer();\r\n    }\r\n}\r\n```\r\n\r\n#### onImpossible ####\r\n```js\r\nfunction onImpossible(){\r\n  window.console.log('document cannot be shown');\r\n  //e.g. track document usage\r\n}\r\n```\r\n\r\n#### onError ####\r\n```js\r\nfunction onError(error){\r\n  window.console.log(error);\r\n  alert(\"Sorry! Cannot show document.\");\r\n}\r\n```\r\n\r\n\r\n### Open a Document File ###\r\n```js\r\ncordova.plugins.SitewaertsDocumentViewer.viewDocument(\r\n    url, mimeType, options, onShow, onClose, onMissingApp, onError, linkHandlers);\r\n```\r\n\r\n#### onShow ####\r\n```js\r\nfunction onShow(){\r\n  window.console.log('document shown');\r\n  //e.g. track document usage\r\n}\r\n```\r\n#### onClose ####\r\n```js\r\nfunction onClose(){\r\n  window.console.log('document closed');\r\n  //e.g. remove temp files\r\n}\r\n```\r\n#### onMissingApp ####\r\n```js\r\nfunction onMissingApp(appId, installer)\r\n{\r\n    if(confirm(\"Do you want to install the free PDF Viewer App \"\r\n            + appId + \" for Android?\"))\r\n    {\r\n        installer();\r\n    }\r\n} \r\n```\r\n#### onError ####\r\n```js\r\nfunction onError(error){\r\n  window.console.log(error);\r\n  alert(\"Sorry! Cannot view document.\");\r\n}\r\n```\r\n#### linkHandlers ####\r\nCurrently only supported on iOS! \r\n\r\nArray of link handlers. Optional. \r\n\r\nLinks in the pdf (when clicked by the user) are delegated to the first linkHandler with a matching pattern. \r\nIf no matching pattern is found, the link is handled with the default link handler of the native viewer component (if any).  \r\n\r\n```js\r\nvar linkHandlers = [\r\n            {\r\n                pattern: STRING, // string representation of a plain regexp (no flags)\r\n                close: BOOLEAN, // shall the document be closed, after the link handler was executed?\r\n                handler: function (link) {} // link handler to be executed when the user clicks on a link matching the pattern\r\n            },\r\n            {\r\n                pattern: '^\\/',\r\n                close: false,\r\n                handler: function (link) {\r\n                    window.console.log('link clicked: ' + link);\r\n                }\r\n            }\r\n    ];\r\n```\r\n\r\n### Close the viewer ###\r\n```js\r\ncordova.plugins.SitewaertsDocumentViewer.closeDocument(onClose, onError);\r\n```\r\n\r\n#### onShow ####\r\n```js\r\nfunction onClose(url){\r\n    if(url)\r\n        window.console.log('closed viewer document ' + url);\r\n    else\r\n        window.console.log('viewer not open');\r\n}\r\n```\r\n#### onError ####\r\n```js\r\nfunction onError(error){\r\n  window.console.log(error);\r\n  alert(\"Sorry! Cannot close viewer.\");\r\n}\r\n```\r\n\r\n## iOS ##\r\n\r\nThe plugin uses the awesome VFRReader (https://github.com/vfr/Reader) to embed pdf viewer functionality in the app.\r\n\r\nTo open a pdf at a given page number add { page: pageIndex } to the options when calling viewDocument. \r\n\r\n### Screenshots ###\r\n\r\n![screenshot](doc/ios/screenshot01.png) &nbsp;&nbsp; ![screenshot](doc/ios/screenshot02.png)\r\n\r\n![screenshot](doc/ios/screenshot03.png) &nbsp;&nbsp; ![screenshot](doc/ios/screenshot04.png)\r\n\r\n\r\n## Android ##\r\n\r\nDue to license restrictions in muPDF, the plugin dispatches to a separate\r\n(free) viewer app based on muPDF. If the viewer app is not yet installed, the user may be \r\nredirected to the google play app store.\r\n \r\n  https://play.google.com/store/apps/details?id=de.sitewaerts.cleverdox.viewer\r\n\r\n  https://github.com/sitewaerts/android-document-viewer\r\n \r\n### Screenshots ###\r\n\r\n![screenshot](doc/android/screenshot01.png) &nbsp;&nbsp; ![screenshot](doc/android/screenshot02.png)\r\n\r\n\r\n## Windows ##\r\n\r\nThe plugin uses \r\n- [Windows.Data.Pdf.PdfDocument][Windows.Data.Pdf.PdfDocument] to generate images for PDF pages\r\n- [pdf.js][PDFJS] to display outline / table of contents\r\n\r\n### Screenshots ###\r\n\r\nTODO\r\n\r\n## Known issues ##\r\n- Add transparent support for online files.\r\n- The external Viewer App (Android) cannot access files stored in app private directories. Due to this fact, the plugin copies a file to a shared temp folder before starting the viewer. When the viewer is closed, the temp file is immediately deleted. While the viewer is running, a sophisticated user may 'steal' the file from the shared temp directory. We are still searching for a better solution, any good idea is welcome.\r\n- Add support for pdf forms.\r\n- Add fulltext search features.\r\n- Add user bookmark support.\r\n- Add support for additional mime types like dwg, docx, etc.\r\n- Optimize user experience for small screens. Currently the viewer components are tested and optimized on tablets only.\r\n- Let developers provide graphics for buttons at runtime.\r\n\r\n\r\n## Credits ##\r\n\r\nbased on https://github.com/vfr/Reader\r\n\r\nbased on https://github.com/mindstorm/CDVPDFViewer\r\n\r\nbased on [pdf.js][PDFJS]\r\n\r\nbased on [winjs][winjs]\r\n\r\ninspired by https://github.com/pebois/phonegap-plugin-PDFViewer\r\n\r\ninspired by https://msdn.microsoft.com/en-us/library/windows/apps/dn263105.aspx\r\n\r\n\r\n[cordova]: https://cordova.apache.org\r\n[CLI]: http://cordova.apache.org/docs/en/edge/guide_cli_index.md.html#The%20Command-line%20Interface\r\n[PGB]: http://docs.build.phonegap.com/en_US/index.html\r\n[CDV_plugin]: https://www.npmjs.com/package/cordova-plugin-document-viewer\r\n[PDFJS]: https://mozilla.github.io/pdf.js/\r\n[Windows.Data.Pdf.PdfDocument]: https://msdn.microsoft.com/en-us/library/windows/apps/windows.data.pdf.pdfdocument\r\n[winjs]: http://try.buildwinjs.com/\r\n[ionic]: https://github.com/driftyco/ionic-native/tree/master/src/@ionic-native/plugins/document-viewer\r\n\r\n","versions":{"0.5.0":{"name":"cordova-plugin-document-viewer","version":"0.5.0","description":"Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10.","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows"],"engines":{"cordovaDependencies":{"0.5.0":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"ae5d58d6ae83b181d0bdc58e6cfe4ad0c1f9562e","_id":"cordova-plugin-document-viewer@0.5.0","scripts":{},"_shasum":"fea12074a6cb36fa2707261dcb8fcb098786500e","_from":".","_npmVersion":"2.10.0","_nodeVersion":"6.7.0","_npmUser":{"name":"sitewaerts","email":"kontakt@sitewaerts.de"},"dist":{"shasum":"fea12074a6cb36fa2707261dcb8fcb098786500e","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.5.0.tgz","integrity":"sha512-UQSkyJnd+UWt7k8owSUpZ5w21dj2pBBh4jotLkMCm3cBonWbJMJ7udt+m9GdQguSy2ufxTqpiZoIhPi+QAe9oA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDyvw2EO8IxFO++pxFGgZ1Fgvs73qIiw4eKnZ35Nrd3MQIhAIjBDnlqlBaxM6bCUMk5X1wsh5r/tubBihNdkr/D8wJR"}]},"maintainers":[{"name":"sitewaerts","email":"kontakt@sitewaerts.de"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-document-viewer-0.5.0.tgz_1475753089595_0.9083118066191673"},"directories":{}},"0.6.0":{"name":"cordova-plugin-document-viewer","version":"0.6.0","description":"Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10.","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows"],"engines":{"cordovaDependencies":{"0.6.0":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"2753035014ef04732e7f936644dd71e7e503b2f9","_id":"cordova-plugin-document-viewer@0.6.0","scripts":{},"_shasum":"ed6090a8a17304d42a78eadbb34673a1d2af684b","_from":".","_npmVersion":"2.10.0","_nodeVersion":"6.9.1","_npmUser":{"name":"sitewaerts","email":"kontakt@sitewaerts.de"},"dist":{"shasum":"ed6090a8a17304d42a78eadbb34673a1d2af684b","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.6.0.tgz","integrity":"sha512-hZ6hrKz5MDdUQaWyv0tWrZDPXxM0HrpJSqBfBdZOBHFmJbEDexUxJ5n9TB2pf7QpkvT6fcBkfjRdCxP5HI2Ifw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD0eCHilL3aMVDCG0KXrYPMwwHh0Ra8p4EI+DVAspZfVQIgMkib+1PMzKVgHHw743rtLtRI3Xn3/TDRXcgnpQFyagA="}]},"maintainers":[{"name":"sitewaerts","email":"kontakt@sitewaerts.de"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-document-viewer-0.6.0.tgz_1481702152418_0.7154518025927246"},"directories":{}},"0.7.0":{"name":"cordova-plugin-document-viewer","version":"0.7.0","description":"Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10.","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows"],"engines":{"cordovaDependencies":{"0.7.0":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"6c954cfa4eebaf7e6ee019be6b502dba41256a30","_id":"cordova-plugin-document-viewer@0.7.0","scripts":{},"_shasum":"f967461e37e2980b0bfa26c430c67ec9c3e8e3d5","_from":".","_npmVersion":"2.10.0","_nodeVersion":"6.9.1","_npmUser":{"name":"sitewaerts","email":"kontakt@sitewaerts.de"},"dist":{"shasum":"f967461e37e2980b0bfa26c430c67ec9c3e8e3d5","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.7.0.tgz","integrity":"sha512-01tm8qFsxP4SaMu3m0opHxXN91qf5bHn//G2xLbOsbuVSg2aoBuzZo8MO2JgUIE9t3qqxpxNjtQ6l5DMx407Yw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCsZRkN595b0DcNmbfI6gu28XXsdaYm7vrqPrA9VN4oCAIgBOA70Za4vmyH+FEiKFgCeuYBsLMpydXzv3b3Ipbkrx0="}]},"maintainers":[{"name":"sitewaerts","email":"kontakt@sitewaerts.de"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-document-viewer-0.7.0.tgz_1483106526555_0.5177570153027773"},"directories":{}},"0.8.0":{"name":"cordova-plugin-document-viewer","version":"0.8.0","description":"Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10.","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows"],"engines":{"cordovaDependencies":{"0.8.0":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"21e950c07fd5c30ba979ae2481e4fcf249c22589","_id":"cordova-plugin-document-viewer@0.8.0","scripts":{},"_shasum":"58d6e9767791f92c45c944b010aa1000aac4cbd6","_from":".","_npmVersion":"2.10.0","_nodeVersion":"6.9.1","_npmUser":{"name":"sitewaerts","email":"kontakt@sitewaerts.de"},"dist":{"shasum":"58d6e9767791f92c45c944b010aa1000aac4cbd6","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.8.0.tgz","integrity":"sha512-6UEjU+Sun7IvKxEkrOztxfYkkPEeuytnpWxkOzOUeuJSx4wWlJnhOacabSQPgRVkN4DxHzi4jHsUHOh4KRQ++g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIADFq8nRsiOb9OvmEkaMFfklST+/EvqSRbBmvNnYAiCwAiBVX6DA5fHLKeu98B+Tyu8GzhkTTgkrdUiArOCOMPfCOA=="}]},"maintainers":[{"name":"sitewaerts","email":"kontakt@sitewaerts.de"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-document-viewer-0.8.0.tgz_1484753998934_0.15183357382193208"},"directories":{}},"0.8.1":{"name":"cordova-plugin-document-viewer","version":"0.8.1","description":"Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10.","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows"],"engines":{"cordovaDependencies":{"0.8.1":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"c2f18b13fea9809eca0bdca6b5e0b4b92d3d4a62","_id":"cordova-plugin-document-viewer@0.8.1","scripts":{},"_shasum":"907abc3a2fb0946d033b1676edd991e188da4345","_from":".","_npmVersion":"2.10.0","_nodeVersion":"6.9.1","_npmUser":{"name":"sitewaerts","email":"kontakt@sitewaerts.de"},"dist":{"shasum":"907abc3a2fb0946d033b1676edd991e188da4345","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.8.1.tgz","integrity":"sha512-orh/bc3zEzldJogfr7XBHAKzdeb2GwNHICzAlSBOBREMTrKA9ruwcjZG0TaKPm7oulGFDEJfYNbjgspddChktg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG8ol515yk77Oywo2w9Bg139/VNPLgSC2Eno/9GeH/hMAiB/g7Dj9w2yY25wZj6PiDVJycjEHzFruH2Jdg9yt9khqA=="}]},"maintainers":[{"name":"sitewaerts","email":"kontakt@sitewaerts.de"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-document-viewer-0.8.1.tgz_1488983582686_0.8603882254101336"},"directories":{}},"0.9.0":{"name":"cordova-plugin-document-viewer","version":"0.9.0","description":"Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10.","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows"],"engines":{"cordovaDependencies":{"0.9.0":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"c0c302edf6a4ffd07b68176f4ef11f34e71c9fcb","_id":"cordova-plugin-document-viewer@0.9.0","scripts":{},"_shasum":"5fcfd76010ca3c3d677fe8a55725584ddba28ccc","_from":".","_npmVersion":"2.10.0","_nodeVersion":"6.9.1","_npmUser":{"name":"sitewaerts","email":"kontakt@sitewaerts.de"},"dist":{"shasum":"5fcfd76010ca3c3d677fe8a55725584ddba28ccc","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.9.0.tgz","integrity":"sha512-0uvdP023jrARD56lDLKaFdb/a4Dn4a1wJmjPBMSHoe8hFK9rvuX8L8FMc1x7g9aFPw5iV4wKOm34qhCR3MlqwA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDF4Tnf8ALSqY3R8hoKeDkN0j9BUx8/LWEa71kmJ5TwWgIgLghz4JFOwrFv7PvxjN8iahLsBD26d9HB+1n7vAQQKmE="}]},"maintainers":[{"name":"sitewaerts","email":"kontakt@sitewaerts.de"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cordova-plugin-document-viewer-0.9.0.tgz_1494330704911_0.06404959480278194"},"directories":{}},"0.9.1":{"name":"cordova-plugin-document-viewer","version":"0.9.1","description":"Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10.","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows"],"engines":{"cordovaDependencies":{"0.9.1":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"4f5eba2ea1c83b68613f385f0a0d132be5e60088","_id":"cordova-plugin-document-viewer@0.9.1","scripts":{},"_shasum":"30480d9e2ed160bdf2e33756df58ff2baeeaa1ca","_from":".","_npmVersion":"2.10.0","_nodeVersion":"6.9.1","_npmUser":{"name":"sitewaerts","email":"kontakt@sitewaerts.de"},"dist":{"shasum":"30480d9e2ed160bdf2e33756df58ff2baeeaa1ca","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.9.1.tgz","integrity":"sha512-RX6fYPTAj6wh/ZPrpsYGUFmr6gdpVXPdIsXWY9Mm1TM0bwH3bTsMCFUWuJydr/zc83dFrV8mRxEXCwr/kUtrKw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD4Xfj8de0w5Dydfd2JdvKf5gDgHkAlCIBR9sed7QmgYAIgTXEpEcMHvR6bBxBcdpahOoAsma90CrNNlC9pvX8+BX8="}]},"maintainers":[{"name":"sitewaerts","email":"kontakt@sitewaerts.de"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-document-viewer-0.9.1.tgz_1494333526364_0.0019369858782738447"},"directories":{}},"0.9.2":{"name":"cordova-plugin-document-viewer","version":"0.9.2","description":"PDF Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10.","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows","pdf"],"engines":{"cordovaDependencies":{"0.9.2":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"d7d0d5e781763973aeffcbc02b76cd375e8c518f","_id":"cordova-plugin-document-viewer@0.9.2","scripts":{},"_shasum":"b902dff582569988d7b846dd594481615a733b50","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"regnete","email":"schauerte@sitewaerts.de"},"dist":{"shasum":"b902dff582569988d7b846dd594481615a733b50","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.9.2.tgz","integrity":"sha512-dqShJbSObAH/3/NYx1nEUsdqcaHMiromYVjjBV9HAG7ZTtM7pADjs15GbiWyQGpvsUXgfXqjNasAzdHS7/YztQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDDzAj7Z90OOxUN8HhYvzIua9MM7kSFdU1naN+XB219GgIgSTmRhZq7K2gcLK4qvY1rL4+1yuVmGeymRsShRjdI23w="}]},"maintainers":[{"email":"schauerte@sitewaerts.de","name":"regnete"},{"email":"kontakt@sitewaerts.de","name":"esch"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cordova-plugin-document-viewer-0.9.2.tgz_1495117440936_0.21232945984229445"},"directories":{}},"0.9.3":{"name":"cordova-plugin-document-viewer","version":"0.9.3","description":"PDF Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10.","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows","pdf"],"engines":{"cordovaDependencies":{"0.9.3":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"4ff4ae86744b3285e76955c68aeab32090bf5386","_id":"cordova-plugin-document-viewer@0.9.3","scripts":{},"_shasum":"964f07ffb0705c1587f84c762a8bd31cfb86f1f4","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"regnete","email":"schauerte@sitewaerts.de"},"dist":{"shasum":"964f07ffb0705c1587f84c762a8bd31cfb86f1f4","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.9.3.tgz","integrity":"sha512-F5MXHLvPr2+vwYS/ifIlT1AoK+s3q+AlD7KKDsG6onOh7C8KjXR8LeHfOTMMG07nu+PTQHTbU+mQb+M+3pU7XA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAFaEgn2zooxA7esMkQiT50U5NNHrLeQK77WMFyTU2bUAiAFTaCJQhgyNBKL6axm7G6z6K8CuSb8vauedCXm/YHIcQ=="}]},"maintainers":[{"email":"schauerte@sitewaerts.de","name":"regnete"},{"email":"kontakt@sitewaerts.de","name":"esch"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-document-viewer-0.9.3.tgz_1496734828036_0.9724696315824986"},"directories":{}},"0.9.4":{"name":"cordova-plugin-document-viewer","version":"0.9.4","description":"PDF Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10.","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows","pdf"],"engines":{"cordovaDependencies":{"0.9.4":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"1e8e25f0716375cfc00c3e6061c29fc684cad2b7","_id":"cordova-plugin-document-viewer@0.9.4","scripts":{},"_shasum":"960b1f05af0c0f35ba2e18fbfcb6a0b0856ac67e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"regnete","email":"schauerte@sitewaerts.de"},"dist":{"shasum":"960b1f05af0c0f35ba2e18fbfcb6a0b0856ac67e","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.9.4.tgz","integrity":"sha512-Z6AjoFmE7zt3FWhjT+izzM0J/acYVItSSx6hXkXqcKnsrYAvGh5aaZFDuSOumsT6/gPaZihpBlllvqolz8fSTQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDry4Y2jS9CTIM5Ip98wzc8p+pnG5n8zkNX8zcOSKco1wIgb9PvH7sKGMdmx8hnllwnfysqQ735K+4+K60WtCpvJa0="}]},"maintainers":[{"email":"schauerte@sitewaerts.de","name":"regnete"},{"email":"kontakt@sitewaerts.de","name":"esch"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-document-viewer-0.9.4.tgz_1500360105897_0.45008130348287523"},"directories":{}},"0.9.5":{"name":"cordova-plugin-document-viewer","version":"0.9.5","description":"PDF Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10.","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows","pdf"],"engines":{"cordovaDependencies":{"0.9.5":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"9e37159ef71fb371c02c160fb8677a21b9bd0fd8","_id":"cordova-plugin-document-viewer@0.9.5","scripts":{},"_shasum":"e30615894cea0fd032e5236708765f3ecedf381e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"regnete","email":"schauerte@sitewaerts.de"},"dist":{"shasum":"e30615894cea0fd032e5236708765f3ecedf381e","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.9.5.tgz","integrity":"sha512-xLIQXLez+CgmF3nfTkvU4ykE8SIQEjhJPSgy7ZviGMg3H8tIRdFkvxxCgacjZ/1ZzZk5MTY78/uZD3N1qrosDA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEVP7w4JlYEuT4aSDg8nIDuQRBz+BaCB5u8GNKKS2Ld4AiEAwA1ld6aLDlLqgpaDV0ngDpxp3P2iFwsoUhuKQcWXrXg="}]},"maintainers":[{"email":"schauerte@sitewaerts.de","name":"regnete"},{"email":"kontakt@sitewaerts.de","name":"esch"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-document-viewer-0.9.5.tgz_1500374248275_0.30238810484297574"},"directories":{}},"0.9.6":{"name":"cordova-plugin-document-viewer","version":"0.9.6","description":"PDF Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10.","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows","pdf"],"engines":{"cordovaDependencies":{"0.9.6":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"80a9d9215b1e890bdab3fd4f8426b9fe60edc953","_id":"cordova-plugin-document-viewer@0.9.6","scripts":{},"_shasum":"cff79f41926685e0427b4c256388dec8da2e7c28","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.4","_npmUser":{"name":"regnete","email":"schauerte@sitewaerts.de"},"dist":{"shasum":"cff79f41926685e0427b4c256388dec8da2e7c28","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.9.6.tgz","integrity":"sha512-KQ27uIrk3ES/WRQw3md56T9cc53+Ohi350Lz7Jb32/OfSZZvedpTxfhgvwHdu9fjL67pBJQMUgj1Gr051RW1Jg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAgRiyJEOJksv0W3tBE3971QBb1uBozxc30IGilSNKuxAiALO0tMEXYdqsr8xQf+tZocxcKVA2UgbdxavJ8m2FCMCg=="}]},"maintainers":[{"email":"schauerte@sitewaerts.de","name":"regnete"},{"email":"kontakt@sitewaerts.de","name":"esch"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-document-viewer-0.9.6.tgz_1509613882047_0.5883653173223138"},"directories":{}},"0.9.7":{"name":"cordova-plugin-document-viewer","version":"0.9.7","description":"PDF Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10.","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows","pdf"],"engines":{"cordovaDependencies":{"0.9.7":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"8a6958c2643a80ab5d995d3a36d49bfe5589fad3","_id":"cordova-plugin-document-viewer@0.9.7","scripts":{},"_shasum":"1b93b42aa6d8d7666e000da9e9e312459d47a4cf","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.4","_npmUser":{"name":"regnete","email":"schauerte@sitewaerts.de"},"dist":{"shasum":"1b93b42aa6d8d7666e000da9e9e312459d47a4cf","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.9.7.tgz","integrity":"sha512-uLO0SFdnbiFPvT7vdLN8kyeUFLYkkT8sIt7RWJIwXrsYjNynHynkmUsZXCdd1QrJdx1yY7NmANZ6UtzKJQi8ew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCs2dtbg+ooc3k0Z1eDsnX3TsJMzJBPZQoNcrgiEJeAsAIgE8ezBak885P+UxQqg/pEeftcVC90l/pwxE56MlIVJO8="}]},"maintainers":[{"email":"schauerte@sitewaerts.de","name":"regnete"},{"email":"kontakt@sitewaerts.de","name":"esch"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-document-viewer-0.9.7.tgz_1509960566825_0.02674963721074164"},"directories":{}},"0.9.8":{"name":"cordova-plugin-document-viewer","version":"0.9.8","description":"PDF Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows","pdf"],"engines":{"cordovaDependencies":{"0.9.8":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"ca059d1ec1869f4b269feb62a7ee12abfca6c7ff","_id":"cordova-plugin-document-viewer@0.9.8","scripts":{},"_shasum":"d5e0fb8aa51c5c19912f84523fb06e8a2ed75f08","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.4","_npmUser":{"name":"regnete","email":"schauerte@sitewaerts.de"},"dist":{"shasum":"d5e0fb8aa51c5c19912f84523fb06e8a2ed75f08","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.9.8.tgz","fileCount":608,"unpackedSize":26818282,"integrity":"sha512-6uVMbL5MOz98yZ13C/ja44vKjsp6n0CGBR3qCkz4IXGcvV1YWya4L5sKbEPeJp7JqnFEsp15oXPCE3yl6S6r9Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC1ARem3oJsgsqsyWw8/tfOiy4ja6qfovSnwelQ/3QVjgIgfpyzrc6W+S0Ns0ZBmyrfhvna0mfR73fWFjGNjo+Zy5Y="}]},"maintainers":[{"email":"kontakt@sitewaerts.de","name":"esch"},{"email":"schauerte@sitewaerts.de","name":"regnete"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-document-viewer_0.9.8_1519637973944_0.8162924263258884"},"_hasShrinkwrap":false},"0.9.9":{"name":"cordova-plugin-document-viewer","version":"0.9.9","description":"PDF Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows","pdf"],"engines":{"cordovaDependencies":{"0.9.9":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"07ffde66a1a05c196b524d8b11d9f10819371ccb","_id":"cordova-plugin-document-viewer@0.9.9","scripts":{},"_shasum":"fea157526c382892fb58ab37d97ecf29a6042b1d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.4","_npmUser":{"name":"regnete","email":"schauerte@sitewaerts.de"},"dist":{"shasum":"fea157526c382892fb58ab37d97ecf29a6042b1d","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.9.9.tgz","fileCount":608,"unpackedSize":26818534,"integrity":"sha512-RxFq2qTVal7bR4p4pgW5WTKJpl+EYp+mM9lHtLBp9yi23kBHO9xKhGa6o8WboFdEaWcH0H+RQEjorO8r0AsUsA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEaQQ02EBSiphwPSG8I8yFZMPx6aEL9rldYpbHfCxPXwAiEA169pgkn0sFnQOWaeGPzTMdpXh/zta5Ogv/8Pv6Q772g="}]},"maintainers":[{"email":"kontakt@sitewaerts.de","name":"esch"},{"email":"schauerte@sitewaerts.de","name":"regnete"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-document-viewer_0.9.9_1520871965649_0.7860238897352327"},"_hasShrinkwrap":false},"0.9.10":{"name":"cordova-plugin-document-viewer","version":"0.9.10","description":"PDF Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows","pdf"],"engines":{"cordovaDependencies":{"0.9.10":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"25b82d959c20d7880d513100c2b979e1e15349dc","_id":"cordova-plugin-document-viewer@0.9.10","scripts":{},"_shasum":"bd9705a2a0a419fb34e1e8564e7f356a5d7473c6","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.4","_npmUser":{"name":"regnete","email":"schauerte@sitewaerts.de"},"dist":{"shasum":"bd9705a2a0a419fb34e1e8564e7f356a5d7473c6","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.9.10.tgz","fileCount":608,"unpackedSize":26818624,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDP+gCRA9TVsSAnZWagAARwYP+QFOBontnBx6pxE8AxKJ\nLqpTkODC7uqGkKFrxGU5wgEKgUnO/L2yB2n+AddxZmp2oQ0Dd2v94yGGb9gU\nGrMfR4fn9TdXWfvkOD4nBg4/UlZAjH8qnclN283xi/X5jqQAqhkfcYl9T0if\nKn4sdtGvz6P0evXLpWB0gjxjmAkiiRMrJE8+FzhaDEso8FeZmkPXRt1ac4rY\npuPsy+dNsKyTETc4tWxcLnMpxYeX5Ds8/GzxB2Jgt2Du1aqxejQ+NkZEuHlx\n+Tr88mMc/fkh+F50HmMXsxnBKJ5VXqpocxTzxwPyrIkAZTzu3VA9bzRZGtdp\n8dYQ14emRC52OdPbDJ9NsF751/MkpTY7DmqiJLtwCZhoz+PGkYOFOQr/iX6l\nvDfTYoxdOoNIaVlkg23nM+zsw4tdXp836ytmZB3iG4/eZ+rz9E+dNEpngY96\nUALWM9TrJUeM3MON7GNpZ/HxCfIotvEXcg63LWStU/JsEtgGiO5LhVt3Y+Lr\nHQz1ORIGycJKpjADaA8R9WvpztYFo8jKJX1xv5nLjzZVoNAYhtUX3V4gvn0M\n319VAjavzPSAjmNT8saOXvuaTyq/QdUMfUdu5sftDYYPItucDrSpee3+InI6\nQQAZc1/WU0zCEpkJrbUzLCEnCeIL2h/I51f7RvFf5KUcpKma8c1zu1yMCQXX\nkEAU\r\n=k/wF\r\n-----END PGP SIGNATURE-----\r\n","integrity":"sha512-reW134G7rVRLmuNuCWLzcxU1WTp0gPG2SdSV+6klt2t1i6C0r3gGajsE3I8u7sofhpJQO3VYScHR++KkLbBdsA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD6ePrIL0S/8mjgcllrufAu8GWPeG7iYrzBHIll/fSUNAIhANhDPmy+iKi2ZpQvzI39v1qSdJefMBckVAzTMQk5Kl3M"}]},"maintainers":[{"email":"kontakt@sitewaerts.de","name":"esch"},{"email":"schauerte@sitewaerts.de","name":"regnete"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-document-viewer_0.9.10_1527578525973_0.3984083677085768"},"_hasShrinkwrap":false},"0.9.11":{"name":"cordova-plugin-document-viewer","version":"0.9.11","description":"PDF Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows","pdf"],"engines":{"cordovaDependencies":{"0.9.11":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"2c81a362508752351610e9c7928dbf07efc08d88","_id":"cordova-plugin-document-viewer@0.9.11","_npmVersion":"6.4.1","_nodeVersion":"10.15.0","_npmUser":{"name":"regnete","email":"schauerte@sitewaerts.de"},"dist":{"integrity":"sha512-t0XJAAz3IAP2r56VSjIOVIg9XsnQg+48eohqCoGEiZtgpVat+1rhSUXNu3FSFHGh7nV5bG1q6QmNLAtmuNyY7g==","shasum":"2103d487f56c1eff9d2948380efef4008182d6bf","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.9.11.tgz","fileCount":607,"unpackedSize":26819996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc7ldTCRA9TVsSAnZWagAAbLkQAJpY0IoDkMTqobwZCoiS\nLaRe4WYo+XjL7QMqLZqz1+JtcbPgiftA/klcPLPhANfCikVg1UICIwTKvh2Y\nFXXTBCCphwfKt59aNRGgggi1T9q9xqmmalJmYlok/We6POfInhsL0xmjWiYY\nMbjS0E6AgISTEbpDFuY3RmicRx/ZUU4CgmFOHBxXzvuqTF0pt7e3VCNpZp30\nD/a3nAeMfWD04M4qwFLB3e77mhDJJJGqEAlva/UAKktLDqPNPOG2hroCShb1\n47xdCe6+5cbFyaI68F0/Lhl5W56yO0iBN1Qk0hxRw3KndiwKxGcgmb29G6pn\n/osQ80bmNGx+jz1dNcRxYStLEPs5o+KNaRMu44Xd78GygDKLNvYHVHbQgi4B\nC0lP8xNnxGMT/zdxU4NeaR6HOHOeJ55JDZMN0j9x0wnL/D2HG8g7Zsy8I64A\nmz9VnyC4iQCFW2vKSLooQJ3NACFgymtcYlysQJBny4J9/5FTUs3DSqebhtp/\n6UhJzE+igy6U+8kA+uE87AQkcqbI42HoAJMx9x75Zd0JxDKuz4RUcshq55Tj\ne723lJo0eVfjik//GiAzVLOtcEL3/rUpYirJZ0g5k5ZzsHkTYe7dNapMahV3\nZVOCnZrj9vFWfgq0ytjXyIaXR9kjXJGnHKhrIFwkzQz4vYi+xT+wfY5ck9TR\nY4kI\r\n=GUyy\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICMtMp8OowEefN+OxVLFDJm9a7MKS33BT8NcxoRP29dgAiEA/sKyozbnTZb8o5PbYJeKSrzpafg6ljSgmV78Uv8Qaig="}]},"maintainers":[{"email":"kontakt@sitewaerts.de","name":"esch"},{"email":"schauerte@sitewaerts.de","name":"regnete"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-document-viewer_0.9.11_1559123794676_0.9958213634348609"},"_hasShrinkwrap":false},"0.9.12":{"name":"cordova-plugin-document-viewer","version":"0.9.12","description":"PDF Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows","pdf"],"engines":{"cordovaDependencies":{"0.9.12":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"8592f721ef3440390251a4acd597eb5508f83a88","_id":"cordova-plugin-document-viewer@0.9.12","_nodeVersion":"10.16.2","_npmVersion":"6.9.0","dist":{"integrity":"sha512-DcEPqEu/8rZZ4svqo6gF62WZKB244QPt4rzhPXM66WMdOMTw9MGX0s8EADzjw8NTBfSjRHyT4tzMhbIljmxnQg==","shasum":"13ca85c99af3ec868fd0eb0dd6c03bf6c265cfe9","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.9.12.tgz","fileCount":607,"unpackedSize":26820424,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdja/gCRA9TVsSAnZWagAAvM8QAIXrQS1qS8B4Ang1o+va\nKuMPOElzWWgwnBV9IG/3EwxZvnh/9edy/SAm11DOVL3NLDXasmks5bm9CrpI\ntArlcHF1nIFPARcAvkqPFQ6Yb2nB/yojmP55v1d5K45hkF/ifvuScxFYDwWe\nGTcYKmIs7+0YPS+MkocCaVRuViLFIYl96XaF8wdx6v4JaywQKpX0nW6jKQ8r\nrxW5d0h3qoZHQStPxnOeATZmarLlvtFQ6LszRVKtrplnj8AhzpObGQcp3Wpb\nXcX5U7BdJYFT4Fr6UpCPD+lJEd0NxsuKl/60nf85h1r9tQyxN9WURjm4Jqt9\nbeAIe8kCIK+Wnden7GeK9gJvYlN8ULrEsrjR9E4leSAZGYj2lNFXdaUfGMTk\npSxuprKwXN9GTni05yXmCaEUY4DPng4CAPw6nbbGlpoSGGc/L5uknq44f1TO\ngMKJN5Kqj8acZV8x+Di/SN1wg2ikzPlc59YBiwkkDzJvLIxuZBSylN+Ufj3o\neQ+Ww1cgZAnOQcbZnOBB3itQp/wDxacrQbwJ4xZ4zyH5nYkQlFDfytqTKEq9\nnpGQ7wL/ulYNVol0+0KW4i/Jkc71/ECGr4XrQfBrzlUE/vJcj4Lmp7lOGPz2\nHF0jrvgWc9ehAkEwYe+3HzlUunUu/yuAqsbduWHVK/KQdTCYZYzedtFHk63n\npaoR\r\n=dNg7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCr9Fh5aWnIAgSZuGO3OGq3Y4Ib8KqjIk58+d8FKMZ8pgIhAPrqGqRkujTlMlYKxbYfMwB5oEXsUZCJ87G9fvodF/dF"}]},"maintainers":[{"email":"kontakt@sitewaerts.de","name":"esch"},{"email":"schauerte@sitewaerts.de","name":"regnete"}],"_npmUser":{"name":"regnete","email":"schauerte@sitewaerts.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-document-viewer_0.9.12_1569566688037_0.28333234394815565"},"_hasShrinkwrap":false},"0.9.13":{"name":"cordova-plugin-document-viewer","version":"0.9.13","description":"PDF Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows","pdf"],"engines":{"cordovaDependencies":{"0.9.13":{"cordova":">=3.7.0","cordova-windows":">=4.4.0"}}},"gitHead":"cb85bc386ecf50f1df692b4333232a7ecc65d2c9","_id":"cordova-plugin-document-viewer@0.9.13","_nodeVersion":"10.16.2","_npmVersion":"6.9.0","dist":{"integrity":"sha512-9Lem77mmvupHpejpn8mxhnoDVpy72U/nFxjvKKIJnBA70tb6TVxWXSwCmq2mfFp+fyppwwbqAU3x8NOCPiOaoQ==","shasum":"aec91b111a93f15d3319c4a3dbe089f4b4c925f7","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-0.9.13.tgz","fileCount":607,"unpackedSize":26820842,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdk0jvCRA9TVsSAnZWagAAvh8P/iSX26EMHYSbTUhcxoG1\nkA3VWIiTkwmtt/SKwV9K8tCK7O1WPjrLKr1wzlFTWuJIlVJjtLNA52FSUpDD\nDJRPFlJN/HZ/2J/zkT8QzKmoh2eE2OqIxf7dkEtxiTcnP1OxJdE4MdlhOpcZ\nH9rA6Pwy8kRGvSTDBhwcObJWY4SVEYwbNt3tLJr4p25PYF04HwDTCDtj2wBL\nM9lB60s7FqXp5IIn+zIUBUho04q5QHkg6V+YuxUZDIz0+8svgf8X0tAY6Zte\ntFwbrvu60/K64v+NzQC2N6d3K5QGPhxLnEKwpc68NGmHHyFxk7H/skGwIy83\nj4SbF38/qmidbJ/5FlE1/eHepkC4D483JCWTcFTw7E6nZHfeG+0VRh9XXdz+\nnYMJiMta9YG0bAlz7iDx7l7gceJSKphyCQb67N3FsdYp0qxvkxEfBJKhK5ju\nNuI+KWoDQukgZtEb/6xIExIovfAF5OEjVf+a8+5/AxqzGHySVg9kynGRYiaU\nOExFjoVxYtTWNy18PLsB9Xb2LFhg2MNUp4DYJPI2BHprboGvQn4txcW3u0Pw\npam/lZIw0kq3E8Yo2NuiRiJUhpsqrNt5luA648G5xy8uTA1TBUCr1aWu47EM\n8rw61S3qQY8buz1YS2FZAuIP4LL49yFOn6jPSFe4e8K19fyHkUlpiKBHC72i\n9fai\r\n=I5ds\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCXdTQVwg4lAiyKnMhpNdlxoDp3Ip5IUwahbWKU6E+u5AIgEz4LdiHj/dE29iXtBL/WbK+Ph9aj1nSJUuNMMH+KXtg="}]},"maintainers":[{"email":"kontakt@sitewaerts.de","name":"esch"},{"email":"schauerte@sitewaerts.de","name":"regnete"}],"_npmUser":{"name":"regnete","email":"schauerte@sitewaerts.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-document-viewer_0.9.13_1569933550997_0.15960018212050153"},"_hasShrinkwrap":false},"1.0.0":{"name":"cordova-plugin-document-viewer","version":"1.0.0","description":"PDF Document viewer cordova plugin for iOS, Android and Windows 8.1 + 10","license":"MIT","author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"cordova":{"id":"cordova-plugin-document-viewer","platforms":["android","ios","windows"]},"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows","pdf"],"engines":{"cordovaDependencies":{"1.0.0":{"cordova":">=10.0.0","cordova-windows":">=4.4.0","cordova-android":">=9.0.0"}}},"devDependencies":{},"gitHead":"38d4e2495ba4bdaa3b0407350c7744c96ffead04","_id":"cordova-plugin-document-viewer@1.0.0","_nodeVersion":"10.21.0","_npmVersion":"6.13.7","dist":{"integrity":"sha512-LQZiWVU543rLJ0wYoawSdMrAfoxBLWCx8a2CuQjFeav4U9CN16QAh1VHetHaHicp5ZEwTC7Zq/0TNbak6A7bVw==","shasum":"6baaaa748e1d5df810c0ffa588baaacbb9227019","tarball":"https://registry.npmjs.org/cordova-plugin-document-viewer/-/cordova-plugin-document-viewer-1.0.0.tgz","fileCount":609,"unpackedSize":27025278,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfTzePCRA9TVsSAnZWagAASn8P/jFb3ehyshuighfPE8vK\nzLkpZxMdQr1Z4pTmoNXpWixtuPIS9UNEAdIHJdMenHI58k3dU1rx5+vra1jX\n/yFORAl7JRI5OScm+vRnCIXdesXCGPyYW1iHYCjrmhDP74UViUnHHcIP5bjM\nptm8s7m30c6s5UXvR/wjAiVjci+VcadUjeE0y4b/IewDtrbLLidkN9fyubG3\nIqZ/+qhyWfuiffID/a0KGvOmXx57k1K9bTx7zI5vaRMXqQoaRMsBmYsZNnuL\naMbClPEaHZHTcIlzsCRU1sC5tB7ARiAQx6SUf5Tq/oemtzy1gw4nRyFSKO9p\niCWVtG3Hwb+3DI7eJkfyQuWnrDobzmwqYSCMjMP0t0HvdvWoT6SauFTGnG8i\ntKLgGsCNokMwJj4nbABACs9LWL+vnN2PqLiYdZnq9m9QuZLMQwzfjUz1AYYl\nt6eqM3ku1luy6UzFWzej3Ddyl65jf24GapNE3hMhsgY4p0b0tKstFQwkXALZ\nbwISmPOnXlhSXY9GzYzt57cQKT20c8CUcpQsMsN+Yti5Wy9T4XbLj6xyKjnI\nmKGV/Kx0BqS65Qmh5j6oI5vMwZv2vXdM/bVo57RCyDZNiGBFbQGR2iOliHBM\n1zj2RzAQN2ObvFaQZ9LfvWnLe1W548/jq0FAmtzZJdqnWg/gtQoPBM7Ec5Jn\n/7DX\r\n=0+zi\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHkC1FX38m57l7YSRPherW/Qi2YnJF5IBXMdayOylHXXAiEArBjt1LEEE35LepghnmryO3xDg1XhXd63trm8UwBldJI="}]},"maintainers":[{"email":"kontakt@sitewaerts.de","name":"esch"},{"email":"schauerte@sitewaerts.de","name":"regnete"}],"_npmUser":{"name":"regnete","email":"schauerte@sitewaerts.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cordova-plugin-document-viewer_1.0.0_1599027086010_0.964515270278574"},"_hasShrinkwrap":false}},"homepage":"https://github.com/sitewaerts/cordova-plugin-document-viewer#readme","keywords":["ecosystem:cordova","cordova","cordova-android","cordova-ios","cordova-windows","pdf"],"repository":{"type":"git","url":"git+https://github.com/sitewaerts/cordova-plugin-document-viewer.git"},"author":{"name":"Felix Schauerte"},"bugs":{"url":"https://github.com/sitewaerts/cordova-plugin-document-viewer/issues"},"license":"MIT","readmeFilename":"README.md","users":{"regnete":true,"javerd":true}}