{"maintainers":[{"name":"dev","email":"thgreasi@gmail.com"}],"keywords":["localforage","SQLite","driver","cordova"],"dist-tags":{"latest":"1.8.0"},"author":{"name":"Thodoris Greasidis"},"description":"SQLite driver for Cordova apps using localForage.","readme":"# localForage-cordovaSQLiteDriver\n[![npm](https://img.shields.io/npm/dm/localforage-cordovasqlitedriver.svg)](https://www.npmjs.com/package/localforage-cordovasqlitedriver)  \nSQLite driver for [Cordova](https://cordova.apache.org/) apps using [localForage](https://github.com/mozilla/localForage).\n\n## Requirements\n\n* [Cordova](https://cordova.apache.org/)/[ionic](http://ionicframework.com/)\n* [Cordova SQLite storage plugin](https://github.com/litehelpers/Cordova-sqlite-storage/) or [Cordova SQLite Plugin 2](https://github.com/nolanlawson/cordova-plugin-sqlite-2) or [Cordova SQLCipher adapter plugin](https://github.com/litehelpers/Cordova-sqlcipher-adapter)\n* [localForage](https://github.com/mozilla/localForage) v1.5.0+\n  * for localforage 1.4.x, please use the v1.5.0 release of this package\n  * for even older versions of localforage, please use the v1.2.x releases\n\n\n## Install Dependencies\n\n* install Cordova-sqlite-storage plugin `cordova plugin add https://github.com/litehelpers/Cordova-sqlite-storage.git`\n* install localForage-cordovaSQLiteDriver via npm with: `npm i --save localforage localforage-cordovasqlitedriver` (ionic 2 users might prefer ths one)\n\n#### Cordova-sqlcipher-adapter support\ninstall the plugin by\n```\ncordova plugin add cordova-sqlcipher-adapter --save\n```\n\nPass the key required by the database to localforage by passing a `dbKey` property to the [`.config()`](https://localforage.github.io/localForage/#settings-api-config) or [`.createInstance()`](https://localforage.github.io/localForage/#multiple-instances-createinstance) methods, or if using ionic-storage by passing `dbKey` via IonicStorageModule in your NgModule.\n\n## CHANGELOG\n\n### v1.8\nAdd support for the `localforage.dropInstance()` method.\n\n### v1.7\nAdd support for cordova-sqlcipher-adapter. Thanks to @kohlia for PRing this.\n\n### v1.6\nUse localforage v1.5 & drop @types.\n\n### v1.5\nAdd typescript typings.\n\n### v1.4\nRefactor to es6.\n\n### v1.3\nReduce driver size (almost by 50%) by \"inheriting\" the method implementations of the `localforage.WEBSQL` driver.\n\n### v1.2 *BREAKING CHANGE*\nAdd support for newer versions of [Cordova SQLite storage plugin](https://github.com/litehelpers/Cordova-sqlite-storage/) (v0.8.x  & v1.2.x).\n\n*UPGRADE WARNING*: The default storage location for SQLite has changed in newer versions of [Cordova SQLite storage plugin](https://github.com/litehelpers/Cordova-sqlite-storage/). The new \"`default`\" location value is NOT the same as the old \"`default`\" location and will break an upgrade for an app that was using the old default value (0) on iOS. If you are upgrading to a newer version of `localForage-cordovaSQLiteDriver` you need to verify where your previous storage location was and update the `location` property of the localForage database. Otherwise the default is `'default'`. This is to avoid breaking the iCloud Design Guide. See [here](https://github.com/litehelpers/Cordova-sqlite-storage#important-icloud-backup-of-sqlite-database-is-not-allowed) for further details.\n\n### v1.1\nTry using the `getSerializer()` (available in localforage v1.3) as the prefered way to retrieve the serializer.\n\n## Setup Your Project\n\n* Include localforage and localForage-cordovaSQLiteDriver in your main html page, after the cordova include.\n* Call `defineDriver` and `setDriver` to make localForage use the cordovaSQLiteDriver.\n\n```html\n<script src=\"cordova.js\"></script>\n\n<script src=\"lib/localforage/dist/localforage.js\"></script>\n<script src=\"lib/localForage-cordovaSQLiteDriver/dist/localforage-cordovasqlitedriver.js\"></script>\n<script>\nlocalforage.defineDriver(window.cordovaSQLiteDriver).then(function() {\n    return localforage.setDriver([\n    \t// Try setting cordovaSQLiteDriver if available,\n      window.cordovaSQLiteDriver._driver,\n      // otherwise use one of the default localforage drivers as a fallback.\n      // This should allow you to transparently do your tests in a browser\n      localforage.INDEXEDDB,\n      localforage.WEBSQL,\n      localforage.LOCALSTORAGE\n    ]);\n}).then(function() {\n  // this should alert \"cordovaSQLiteDriver\" when in an emulator or a device\n  alert(localforage.driver());\n  // set a value;\n  return localforage.setItem('testPromiseKey', 'testPromiseValue');\n}).then(function() {\n  return localforage.getItem('testPromiseKey');\n}).then(function(value) {\n  alert(value);\n}).catch(function(err) {\n  alert(err);\n});\n</script>\n```\n\n## Examples\n* [Example Cordova/Ionic project](https://github.com/thgreasi/localForage-cordovaSQLiteDriver-TestIonicApp)\n* [Example Ionic2/Angular2/Typescript project](https://github.com/thgreasi/localForage-cordovaSQLiteDriver-TestIonic2App)\n","repository":{"type":"git","url":"git://github.com/thgreasi/localForage-cordovaSQLiteDriver.git"},"bugs":{"url":"http://github.com/thgreasi/localForage-cordovaSQLiteDriver/issues"},"versions":{"1.0.0":{"name":"localforage-cordovasqlitedriver","author":{"name":"Thodoris Greasidis"},"description":"SQLite driver for Cordova apps using localForage.","keywords":["localforage","SQLite","driver","cordova"],"version":"1.0.0","homepage":"https://github.com/thgreasi/localForage-cordovaSQLiteDriver","repository":{"type":"git","url":"git://github.com/thgreasi/localForage-cordovaSQLiteDriver.git"},"devDependencies":{"component":"^1.0.0-rc7","cors":"^2.3.1","grunt":"^0.4.2","grunt-contrib-concat":"^0.3.0","grunt-contrib-connect":"^0.8.0","grunt-contrib-jshint":"^0.9.2","grunt-contrib-uglify":"^0.4.0","grunt-contrib-watch":"^0.5.0","grunt-es3-safe-recast":"^0.1.0","grunt-jscs":"^0.8.0","grunt-mocha":"^0.4.10","grunt-saucelabs":"^5.1.2","grunt-shell":"^0.6.4","load-grunt-tasks":"^0.4.0","mocha":"^1.18.2","phantomjs":"^1.9.7-12","uglify-js":"^2.3.x"},"browser":"src/localforage-cordovasqlitedriver.js","main":"src/localforage-cordovasqlitedriver.js","licence":"Apache-2.0","bugs":{"url":"http://github.com/thgreasi/localForage-cordovaSQLiteDriver/issues"},"dependencies":{"promise":"^5.0.0"},"gitHead":"1fa4003829da3c8ababa443145fa856fa371e884","_id":"localforage-cordovasqlitedriver@1.0.0","scripts":{},"_shasum":"fc02a98a7f6859e7774c93ea4eec4136dafed806","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dev","email":"thgreasi@gmail.com"},"maintainers":[{"name":"dev","email":"thgreasi@gmail.com"}],"dist":{"shasum":"fc02a98a7f6859e7774c93ea4eec4136dafed806","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/localforage-cordovasqlitedriver/-/localforage-cordovasqlitedriver-1.0.0.tgz","integrity":"sha512-joQNswQrZkhE9FPNv5hx3VvLXhoBW5LPLlTAdaQLsS63DDOsq9dSmYPiV6gcL09FzUsDLgvAAS3BLBN2VHxTdA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE2DlzNQLURBuMvE1sT+SaO+/hXama67kL1E9jbwrGCYAiEAj/JH7fg4LhNaoZWk7oVTCvNBuCI5YwWiKqzXI49E/pc="}]},"directories":{}},"1.1.0":{"name":"localforage-cordovasqlitedriver","author":{"name":"Thodoris Greasidis"},"description":"SQLite driver for Cordova apps using localForage.","keywords":["localforage","SQLite","driver","cordova"],"version":"1.1.0","homepage":"https://github.com/thgreasi/localForage-cordovaSQLiteDriver","repository":{"type":"git","url":"git://github.com/thgreasi/localForage-cordovaSQLiteDriver.git"},"devDependencies":{"component":"^1.0.0-rc7","cors":"^2.3.1","grunt":"^0.4.2","grunt-contrib-concat":"^0.3.0","grunt-contrib-connect":"^0.8.0","grunt-contrib-jshint":"^0.9.2","grunt-contrib-uglify":"^0.4.0","grunt-contrib-watch":"^0.5.0","grunt-es3-safe-recast":"^0.1.0","grunt-jscs":"^0.8.0","grunt-mocha":"^0.4.10","grunt-saucelabs":"^5.1.2","grunt-shell":"^0.6.4","load-grunt-tasks":"^0.4.0","mocha":"^1.18.2","phantomjs":"^1.9.7-12","uglify-js":"^2.3.x"},"browser":"src/localforage-cordovasqlitedriver.js","main":"src/localforage-cordovasqlitedriver.js","licence":"Apache-2.0","bugs":{"url":"http://github.com/thgreasi/localForage-cordovaSQLiteDriver/issues"},"dependencies":{"promise":"^5.0.0"},"gitHead":"ff12d4c73764dd1f6348521d9fb6230048fa5741","_id":"localforage-cordovasqlitedriver@1.1.0","scripts":{},"_shasum":"6da83b7647e4c4f1ef34ecb74e088f68db6b9af1","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"dev","email":"thgreasi@gmail.com"},"maintainers":[{"name":"dev","email":"thgreasi@gmail.com"}],"dist":{"shasum":"6da83b7647e4c4f1ef34ecb74e088f68db6b9af1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/localforage-cordovasqlitedriver/-/localforage-cordovasqlitedriver-1.1.0.tgz","integrity":"sha512-ooc/xzBIm65rw8pmUwZLOwqKX2FM/XTW7sDVPqH5zTkzEcrN+CFK0orBwTjcVA2UzWj2aO39R+seosr4LF5hFg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCWQLkKNHrUA87/wAl2zGusi2uD2i47W0CX22HzTdTqxwIhAIsY/xZUy+LbWl5RNv19dCUqf/4C9iJantA4MTn/0D9p"}]},"directories":{}},"1.3.0":{"name":"localforage-cordovasqlitedriver","author":{"name":"Thodoris Greasidis"},"description":"SQLite driver for Cordova apps using localForage.","keywords":["localforage","SQLite","driver","cordova"],"version":"1.3.0","homepage":"https://github.com/thgreasi/localForage-cordovaSQLiteDriver","repository":{"type":"git","url":"git://github.com/thgreasi/localForage-cordovaSQLiteDriver.git"},"devDependencies":{"component":"^1.0.0-rc7","cors":"^2.3.1","grunt":"^0.4.2","grunt-contrib-concat":"^0.3.0","grunt-contrib-connect":"^0.8.0","grunt-contrib-jshint":"^0.9.2","grunt-contrib-uglify":"^0.4.0","grunt-contrib-watch":"^0.5.0","grunt-es3-safe-recast":"^0.1.0","grunt-jscs":"^0.8.0","grunt-mocha":"^0.4.10","grunt-saucelabs":"^5.1.2","grunt-shell":"^0.6.4","load-grunt-tasks":"^0.4.0","mocha":"^1.18.2","phantomjs":"^1.9.7-12","uglify-js":"^2.3.x"},"browser":"src/localforage-cordovasqlitedriver.js","main":"src/localforage-cordovasqlitedriver.js","licence":"Apache-2.0","bugs":{"url":"http://github.com/thgreasi/localForage-cordovaSQLiteDriver/issues"},"dependencies":{"promise":"^5.0.0"},"gitHead":"f168c41e587ff76b1c2f043651a092d32a7c4db3","_id":"localforage-cordovasqlitedriver@1.3.0","scripts":{},"_shasum":"569c58cd21344b7a9a6346a60c303628452b5255","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"dev","email":"thgreasi@gmail.com"},"maintainers":[{"name":"dev","email":"thgreasi@gmail.com"}],"dist":{"shasum":"569c58cd21344b7a9a6346a60c303628452b5255","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/localforage-cordovasqlitedriver/-/localforage-cordovasqlitedriver-1.3.0.tgz","integrity":"sha512-+TyGcLMQnY2ajUQjOg3JFYHPuYYklmGTEGMTCB29tVzvQ0g9JLeFeEnID9tqlgIShS6oPe2PzZ+LQAV6FyYMnA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDk6V3SzpTs271v2/65whdwKpLgpnFGHv1uNaZB7anTegIgOuYNdOicfgi4ObYyBeKRvA2OzPiFC335Y9E/QsCySKQ="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/localforage-cordovasqlitedriver-1.3.0.tgz_1461092403168_0.13994606933556497"},"directories":{}},"1.4.0":{"name":"localforage-cordovasqlitedriver","version":"1.4.0","description":"SQLite driver for Cordova apps using localForage.","homepage":"https://github.com/thgreasi/localForage-cordovaSQLiteDriver","main":"dist/localforage-cordovasqlitedriver.js","jsnext:main":"dist/localforage-cordovasqlitedriver.es6.js","scripts":{"prebuild":"eslint lib test","build":"rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js","pretest":"rollup -c rollup.config.test.js","test":"mocha build/test-bundle.js","prepublish":"npm run build && npm test"},"repository":{"type":"git","url":"git://github.com/thgreasi/localForage-cordovaSQLiteDriver.git"},"keywords":["localforage","SQLite","driver","cordova"],"author":{"name":"Thodoris Greasidis"},"licence":"Apache-2.0","bugs":{"url":"http://github.com/thgreasi/localForage-cordovaSQLiteDriver/issues"},"devDependencies":{"babel-eslint":"^6.0.4","babel-preset-es2015-rollup":"^1.1.1","eslint":"^2.8.0","mocha":"^2.4.5","requirejs":"^2.2.0","rollup":"^0.26.1","rollup-plugin-babel":"^2.4.0","rollup-plugin-multi-entry":"^1.2.0","source-map-support":"^0.4.0"},"dependencies":{"localforage":">=1.4.0"},"gitHead":"28ef35fa2b4759211a9f1b9da1cf2e7a2143f4cf","_id":"localforage-cordovasqlitedriver@1.4.0","_shasum":"dee630734b14b332d68dc2e487b54e7a4073ab14","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.6","_npmUser":{"name":"dev","email":"thgreasi@gmail.com"},"maintainers":[{"name":"dev","email":"thgreasi@gmail.com"}],"dist":{"shasum":"dee630734b14b332d68dc2e487b54e7a4073ab14","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/localforage-cordovasqlitedriver/-/localforage-cordovasqlitedriver-1.4.0.tgz","integrity":"sha512-ZbdV//F2w+vfY1JFEU+Rse2PQT29UaYt6HLwJ5R3W74szEdAkeBLLJaKbLg3pm4/ci3OopKBqcZbIi0wHiNmYg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCVBb/kQh+Q2AWpJe57TaNko02VSvvwp1Kc6T5FDq079gIgPLcsPBzw3WMLG3gnZ4v0eGt1u8hix2UANmj6R++Xk3E="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/localforage-cordovasqlitedriver-1.4.0.tgz_1464440988291_0.9569527404382825"},"directories":{}},"1.4.1":{"name":"localforage-cordovasqlitedriver","version":"1.4.1","description":"SQLite driver for Cordova apps using localForage.","homepage":"https://github.com/thgreasi/localForage-cordovaSQLiteDriver","main":"dist/localforage-cordovasqlitedriver.js","jsnext:main":"dist/localforage-cordovasqlitedriver.es6.js","scripts":{"prebuild":"eslint lib test","build":"rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js","pretest":"rollup -c rollup.config.test.js","test":"mocha build/test-bundle.js","prepublish":"npm run build && npm test"},"repository":{"type":"git","url":"git://github.com/thgreasi/localForage-cordovaSQLiteDriver.git"},"keywords":["localforage","SQLite","driver","cordova"],"author":{"name":"Thodoris Greasidis"},"licence":"Apache-2.0","bugs":{"url":"http://github.com/thgreasi/localForage-cordovaSQLiteDriver/issues"},"devDependencies":{"babel-eslint":"^6.0.4","babel-preset-es2015-rollup":"^1.1.1","eslint":"^2.8.0","mocha":"^2.4.5","requirejs":"^2.2.0","rollup":"^0.26.1","rollup-plugin-babel":"^2.4.0","rollup-plugin-multi-entry":"^1.2.0","source-map-support":"^0.4.0"},"dependencies":{"localforage":">=1.4.0"},"gitHead":"8e372775636d7e462bb3231cd9745864f420a0f4","_id":"localforage-cordovasqlitedriver@1.4.1","_shasum":"b4b92f44e3eb8fad8e506f8e59c7c956f228c9cd","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.6","_npmUser":{"name":"dev","email":"thgreasi@gmail.com"},"maintainers":[{"name":"dev","email":"thgreasi@gmail.com"}],"dist":{"shasum":"b4b92f44e3eb8fad8e506f8e59c7c956f228c9cd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/localforage-cordovasqlitedriver/-/localforage-cordovasqlitedriver-1.4.1.tgz","integrity":"sha512-9kfsp+gsEoc3WVNUXsciQEYfC3t5virM5ibzfdVuZg3m6Pl2jKVdawbsXRc4t0PHUZFvgXkFrPsZG7jqLkXoxw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDM1OXWTCXXcJEO+Ilcxyab9ccW8vOl8rPHNaXxtUMB4gIgJkSxwRuRbQZ/+CJtnVaHFabqBHjBtuupEZJAWwju7Ss="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/localforage-cordovasqlitedriver-1.4.1.tgz_1464897852981_0.25998318451456726"},"directories":{}},"1.4.3":{"name":"localforage-cordovasqlitedriver","version":"1.4.3","description":"SQLite driver for Cordova apps using localForage.","homepage":"https://github.com/thgreasi/localForage-cordovaSQLiteDriver","main":"dist/localforage-cordovasqlitedriver.js","jsnext:main":"dist/localforage-cordovasqlitedriver.es6.js","scripts":{"prebuild":"eslint lib test","build":"rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js","pretest":"rollup -c rollup.config.test.js","test":"mocha build/test-bundle.js","prepublish":"npm run build && npm test"},"repository":{"type":"git","url":"git://github.com/thgreasi/localForage-cordovaSQLiteDriver.git"},"keywords":["localforage","SQLite","driver","cordova"],"author":{"name":"Thodoris Greasidis"},"licence":"Apache-2.0","bugs":{"url":"http://github.com/thgreasi/localForage-cordovaSQLiteDriver/issues"},"devDependencies":{"babel-eslint":"^6.0.4","babel-preset-es2015-rollup":"^1.1.1","eslint":"^2.8.0","mocha":"^2.4.5","requirejs":"^2.2.0","rollup":"^0.26.1","rollup-plugin-babel":"^2.4.0","rollup-plugin-multi-entry":"^1.2.0","source-map-support":"^0.4.0"},"dependencies":{"localforage":">=1.4.0"},"gitHead":"a4be4f9a69f786f185ecdc351a37d24cff03b93f","_id":"localforage-cordovasqlitedriver@1.4.3","_shasum":"448572a3a179a91635d34b08620f5925c221aee1","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.6","_npmUser":{"name":"dev","email":"thgreasi@gmail.com"},"maintainers":[{"name":"dev","email":"thgreasi@gmail.com"}],"dist":{"shasum":"448572a3a179a91635d34b08620f5925c221aee1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/localforage-cordovasqlitedriver/-/localforage-cordovasqlitedriver-1.4.3.tgz","integrity":"sha512-X2kZaFgp6MpVILrNysum9f5zzbr7ZvJ+8rWOlJ+/cj5KOg8Geu7hstpwXT4tig3ltsWzFOtIEbxNSmbyZhD6uw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD4ZnK8xlW8OBJ5FcZJbVzR8DurkklJpCEHsze6jihFrgIhAMUqG9EZeopJqZBXPZ4Ku4skszOQODURzrH0WUvRtFsy"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/localforage-cordovasqlitedriver-1.4.3.tgz_1472645908355_0.20898882043547928"},"directories":{}},"1.4.4":{"name":"localforage-cordovasqlitedriver","version":"1.4.4","description":"SQLite driver for Cordova apps using localForage.","homepage":"https://github.com/thgreasi/localForage-cordovaSQLiteDriver","main":"dist/localforage-cordovasqlitedriver.js","jsnext:main":"dist/localforage-cordovasqlitedriver.es6.js","scripts":{"prebuild":"eslint lib test","build":"rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js","pretest":"rollup -c rollup.config.test.js","test":"mocha build/test-bundle.js","prepublish":"npm run build && npm test"},"repository":{"type":"git","url":"git://github.com/thgreasi/localForage-cordovaSQLiteDriver.git"},"keywords":["localforage","SQLite","driver","cordova"],"author":{"name":"Thodoris Greasidis"},"licence":"Apache-2.0","bugs":{"url":"http://github.com/thgreasi/localForage-cordovaSQLiteDriver/issues"},"devDependencies":{"babel-eslint":"^6.0.4","babel-preset-es2015-rollup":"^1.1.1","eslint":"^2.8.0","mocha":"^2.4.5","requirejs":"^2.2.0","rollup":"^0.26.1","rollup-plugin-babel":"^2.4.0","rollup-plugin-multi-entry":"^1.2.0","source-map-support":"^0.4.0"},"dependencies":{"localforage":">=1.4.0"},"gitHead":"1878e341125b43c242ccc10e51500c017071e757","_id":"localforage-cordovasqlitedriver@1.4.4","_shasum":"7bf575059d22114a53c8071dec8bf9952c0aa5bf","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.6","_npmUser":{"name":"dev","email":"thgreasi@gmail.com"},"maintainers":[{"name":"dev","email":"thgreasi@gmail.com"}],"dist":{"shasum":"7bf575059d22114a53c8071dec8bf9952c0aa5bf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/localforage-cordovasqlitedriver/-/localforage-cordovasqlitedriver-1.4.4.tgz","integrity":"sha512-ZGQQauq1ML+hNrpiLDISkeqz5OEZZvAHwxGJFc6bQM9RryK5X0ki5c5X9FdBOWlfLM4b4tAzmJKu/7SSmArYcQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE5yx0W7gIZSM+hCsmJrFQcgcw7/cRUk9+kS2wdJKBCGAiAWW0XjJ9kB81z4OzF56Ttd9zFd0UI61hQd+3CaNVUuHg=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/localforage-cordovasqlitedriver-1.4.4.tgz_1472648505942_0.6418735713232309"},"directories":{}},"1.4.5":{"name":"localforage-cordovasqlitedriver","version":"1.4.5","description":"SQLite driver for Cordova apps using localForage.","homepage":"https://github.com/thgreasi/localForage-cordovaSQLiteDriver","main":"dist/localforage-cordovasqlitedriver.js","jsnext:main":"dist/localforage-cordovasqlitedriver.es6.js","scripts":{"prebuild":"eslint lib test","build":"rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js","pretest":"rollup -c rollup.config.test.js","test":"mocha build/test-bundle.js","prepublish":"npm run build && npm test"},"repository":{"type":"git","url":"git://github.com/thgreasi/localForage-cordovaSQLiteDriver.git"},"keywords":["localforage","SQLite","driver","cordova"],"author":{"name":"Thodoris Greasidis"},"licence":"Apache-2.0","bugs":{"url":"http://github.com/thgreasi/localForage-cordovaSQLiteDriver/issues"},"devDependencies":{"babel-eslint":"^6.0.4","babel-preset-es2015-rollup":"^1.1.1","eslint":"^2.8.0","mocha":"^2.4.5","requirejs":"^2.2.0","rollup":"^0.26.1","rollup-plugin-babel":"^2.4.0","rollup-plugin-multi-entry":"^1.2.0","source-map-support":"^0.4.0"},"dependencies":{"localforage":">=1.4.0"},"gitHead":"840aff90928cbed9a2b3694bf49ae0e28659802a","_id":"localforage-cordovasqlitedriver@1.4.5","_shasum":"92706116449f5ce035d800956791449558f5cc09","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.6","_npmUser":{"name":"dev","email":"thgreasi@gmail.com"},"maintainers":[{"name":"dev","email":"thgreasi@gmail.com"}],"dist":{"shasum":"92706116449f5ce035d800956791449558f5cc09","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/localforage-cordovasqlitedriver/-/localforage-cordovasqlitedriver-1.4.5.tgz","integrity":"sha512-tkGqt/RIqdsXhivP99hvUg92QDpQyb53LWaZzhlUHpTEihq1xt3BgL5b0liRpFMc+R3vhddgj8+TZpwWjEi+FQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICDQC9oeJo/PeXapCZTU0oKd/46aqciN6qhLwoSMUIIKAiBKRzmi5E1iYFn3gYHkoh2VveXLNMuHS8ojGDQFODuRxw=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/localforage-cordovasqlitedriver-1.4.5.tgz_1472672057830_0.9387346820440143"},"directories":{}},"1.4.6":{"name":"localforage-cordovasqlitedriver","version":"1.4.6","description":"SQLite driver for Cordova apps using localForage.","homepage":"https://github.com/thgreasi/localForage-cordovaSQLiteDriver","main":"dist/localforage-cordovasqlitedriver.js","jsnext:main":"dist/localforage-cordovasqlitedriver.es6.js","scripts":{"prebuild":"eslint lib test","build":"rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js","pretest":"rollup -c rollup.config.test.js","test":"mocha build/test-bundle.js","prepublish":"npm run build && npm test"},"repository":{"type":"git","url":"git://github.com/thgreasi/localForage-cordovaSQLiteDriver.git"},"keywords":["localforage","SQLite","driver","cordova"],"author":{"name":"Thodoris Greasidis"},"licence":"Apache-2.0","bugs":{"url":"http://github.com/thgreasi/localForage-cordovaSQLiteDriver/issues"},"devDependencies":{"babel-eslint":"^6.0.4","babel-preset-es2015-rollup":"^1.1.1","eslint":"^2.8.0","mocha":"^2.4.5","requirejs":"^2.2.0","rollup":"^0.26.1","rollup-plugin-babel":"^2.4.0","rollup-plugin-multi-entry":"^1.2.0","source-map-support":"^0.4.0"},"dependencies":{"localforage":">=1.4.0"},"gitHead":"7c0a70ad5d8b5697a2d7aa4b2e284f645a125e93","_id":"localforage-cordovasqlitedriver@1.4.6","_shasum":"37b4b7933631f613965c10c34f83b33a89315521","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.2.6","_npmUser":{"name":"dev","email":"thgreasi@gmail.com"},"maintainers":[{"name":"dev","email":"thgreasi@gmail.com"}],"dist":{"shasum":"37b4b7933631f613965c10c34f83b33a89315521","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/localforage-cordovasqlitedriver/-/localforage-cordovasqlitedriver-1.4.6.tgz","integrity":"sha512-5FOXagJmnLMsserzDtaQsrlj+CM3WcI2Xo8qWJE9sY+0vXMRDpid4y7iHYZ4wnaeJkhAWgzpacjRtAIcUwmItw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCRYvDnFS4W2HXEn87hzJEAzjKgFAqSEONV6SrLoyfGdgIhAPhLRIQ52jas1q8Mcs5aVu56XeWDN85BMHxTqoeu54CP"}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/localforage-cordovasqlitedriver-1.4.6.tgz_1473098062876_0.9022180733736604"},"directories":{}},"1.5.0":{"name":"localforage-cordovasqlitedriver","version":"1.5.0","description":"SQLite driver for Cordova apps using localForage.","homepage":"https://github.com/thgreasi/localForage-cordovaSQLiteDriver","main":"dist/localforage-cordovasqlitedriver.js","jsnext:main":"dist/localforage-cordovasqlitedriver.es6.js","typings":"typings/localforage-cordovasqlitedriver.d.ts","scripts":{"prebuild":"eslint lib test","build":"rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js","pretest":"rollup -c rollup.config.test.js","test":"mocha build/test-bundle.js","prepublish":"npm run build && npm test"},"repository":{"type":"git","url":"git://github.com/thgreasi/localForage-cordovaSQLiteDriver.git"},"keywords":["localforage","SQLite","driver","cordova"],"author":{"name":"Thodoris Greasidis"},"licence":"Apache-2.0","bugs":{"url":"http://github.com/thgreasi/localForage-cordovaSQLiteDriver/issues"},"devDependencies":{"babel-eslint":"^6.0.4","babel-preset-es2015-rollup":"^1.1.1","eslint":"^2.8.0","mocha":"^2.4.5","requirejs":"^2.2.0","rollup":"^0.26.1","rollup-plugin-babel":"^2.4.0","rollup-plugin-multi-entry":"^1.2.0","source-map-support":"^0.4.0"},"dependencies":{"@types/localforage":"0.0.30","localforage":">=1.4.0"},"gitHead":"3a00354f20a041ecd71fc5b4eada8fbb22f318c1","_id":"localforage-cordovasqlitedriver@1.5.0","_shasum":"f934789e6ad9a39bac05fdd1168812f438535762","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.7.0","_npmUser":{"name":"dev","email":"thgreasi@gmail.com"},"maintainers":[{"name":"dev","email":"thgreasi@gmail.com"}],"dist":{"shasum":"f934789e6ad9a39bac05fdd1168812f438535762","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/localforage-cordovasqlitedriver/-/localforage-cordovasqlitedriver-1.5.0.tgz","integrity":"sha512-N2AsXE+360g8r7YiHS7T+2c0QtG4/Yc+TVbYuNWYaGLkjN3n9LaZj8mz0MfEpaw4Dgf/GRZgMNLC66yKzyIyvA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDgkKFhul3HeYjClfVC1Gc1KyZlX7VCamA/CIYXML8+mgIhALhsFyAzhCFrcxIQ2e3xbLlAepgz58eznYCLK9LnnXW/"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/localforage-cordovasqlitedriver-1.5.0.tgz_1475859354694_0.9868678397033364"},"directories":{}},"1.6.0":{"name":"localforage-cordovasqlitedriver","version":"1.6.0","description":"SQLite driver for Cordova apps using localForage.","homepage":"https://github.com/thgreasi/localForage-cordovaSQLiteDriver","main":"dist/localforage-cordovasqlitedriver.js","jsnext:main":"dist/localforage-cordovasqlitedriver.es6.js","typings":"typings/localforage-cordovasqlitedriver.d.ts","scripts":{"prebuild":"eslint lib test","build":"rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js","pretest":"rollup -c rollup.config.test.js","test":"mocha build/test-bundle.js","prepublish":"npm run build && npm test"},"repository":{"type":"git","url":"git://github.com/thgreasi/localForage-cordovaSQLiteDriver.git"},"keywords":["localforage","SQLite","driver","cordova"],"author":{"name":"Thodoris Greasidis"},"licence":"Apache-2.0","bugs":{"url":"http://github.com/thgreasi/localForage-cordovaSQLiteDriver/issues"},"devDependencies":{"babel-eslint":"^7.1.1","babel-plugin-external-helpers":"^6.18.0","babel-preset-es2015":"^6.18.0","babel-register":"^6.18.0","babelrc-rollup":"^3.0.0","eslint":"^2.8.0","mocha":"^2.4.5","requirejs":"^2.2.0","rollup":"^0.37.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-multi-entry":"^2.0.1","source-map-support":"^0.4.0"},"dependencies":{"localforage":">=1.5.0"},"gitHead":"bb19f886154258d4e8dde99b7ece854c7b68d091","_id":"localforage-cordovasqlitedriver@1.6.0","_shasum":"90270caa95eeb10a0397831fe106118885307d71","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.5","_npmUser":{"name":"dev","email":"thgreasi@gmail.com"},"maintainers":[{"name":"dev","email":"thgreasi@gmail.com"}],"dist":{"shasum":"90270caa95eeb10a0397831fe106118885307d71","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/localforage-cordovasqlitedriver/-/localforage-cordovasqlitedriver-1.6.0.tgz","integrity":"sha512-YxgxtcYWhQxI6O/74pYr6Hai6DH4CmKOcyJOk51t4B/hcC1EValNNVpWeHVShn/GN50WjObG6MJqMZGZEJNSsA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC3mYboX3fhPqTXpta5HHhIgO7soR1MLn2fqRt7VqI/1QIgG4y5bQpFhdw+g6zXxs2Gnw34j4cROt9DOa1u31n3VBA="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/localforage-cordovasqlitedriver-1.6.0.tgz_1487532378846_0.7417449632193893"},"directories":{}},"1.7.0":{"name":"localforage-cordovasqlitedriver","version":"1.7.0","description":"SQLite driver for Cordova apps using localForage.","homepage":"https://github.com/thgreasi/localForage-cordovaSQLiteDriver","main":"dist/localforage-cordovasqlitedriver.js","jsnext:main":"dist/localforage-cordovasqlitedriver.es6.js","typings":"typings/localforage-cordovasqlitedriver.d.ts","scripts":{"prebuild":"eslint lib test","build":"rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js","pretest":"rollup -c rollup.config.test.js","test":"mocha build/test-bundle.js","prepublish":"npm run build && npm test"},"repository":{"type":"git","url":"git://github.com/thgreasi/localForage-cordovaSQLiteDriver.git"},"keywords":["localforage","SQLite","driver","cordova"],"author":{"name":"Thodoris Greasidis"},"licence":"Apache-2.0","bugs":{"url":"http://github.com/thgreasi/localForage-cordovaSQLiteDriver/issues"},"devDependencies":{"babel-eslint":"^7.1.1","babel-plugin-external-helpers":"^6.18.0","babel-preset-es2015":"^6.18.0","babel-register":"^6.18.0","babelrc-rollup":"^3.0.0","eslint":"^2.8.0","mocha":"^2.4.5","requirejs":"^2.2.0","rollup":"^0.37.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-multi-entry":"^2.0.1","source-map-support":"^0.4.0"},"dependencies":{"localforage":">=1.5.0"},"gitHead":"00ce8b359128bae8ca9df8b72509bc183eb9cc9a","_id":"localforage-cordovasqlitedriver@1.7.0","_shasum":"8b93957759ee688d3a58d5ba7c0477f6ccb53838","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.12.3","_npmUser":{"name":"dev","email":"thgreasi@gmail.com"},"maintainers":[{"name":"dev","email":"thgreasi@gmail.com"}],"dist":{"shasum":"8b93957759ee688d3a58d5ba7c0477f6ccb53838","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/localforage-cordovasqlitedriver/-/localforage-cordovasqlitedriver-1.7.0.tgz","integrity":"sha512-aGyPzpsWfL9yJR0ckPF58GTKeoIskn0slqhNHBFtK0HV0bTWqqHnw30/foc0n6NnQGVTQAE07RsZMJyRMIu01g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCjHf6o+9nxNPSSInlR2iicEYHgujmvLCZEnvYPG3KdoAIgEyDt0a3n0CfxebDENiNigZY+89e9myALeDwKXDJxvuA="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/localforage-cordovasqlitedriver-1.7.0.tgz_1517383656983_0.7373836140614003"},"directories":{}},"1.8.0":{"name":"localforage-cordovasqlitedriver","version":"1.8.0","description":"SQLite driver for Cordova apps using localForage.","homepage":"https://github.com/thgreasi/localForage-cordovaSQLiteDriver","main":"dist/localforage-cordovasqlitedriver.js","jsnext:main":"dist/localforage-cordovasqlitedriver.es6.js","typings":"typings/localforage-cordovasqlitedriver.d.ts","scripts":{"prebuild":"eslint lib test","build":"rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js","pretest":"rollup -c rollup.config.test.js","test:only":"mocha build/test-bundle.js","test":"npm run build && npm run test:only","prepare":"npm run build"},"repository":{"type":"git","url":"git://github.com/thgreasi/localForage-cordovaSQLiteDriver.git"},"keywords":["localforage","SQLite","driver","cordova"],"author":{"name":"Thodoris Greasidis"},"licence":"Apache-2.0","bugs":{"url":"http://github.com/thgreasi/localForage-cordovaSQLiteDriver/issues"},"devDependencies":{"babel-eslint":"^7.1.1","babel-plugin-external-helpers":"^6.18.0","babel-preset-es2015":"^6.18.0","babel-register":"^6.18.0","babelrc-rollup":"^3.0.0","eslint":"^2.8.0","mocha":"^2.4.5","requirejs":"^2.2.0","rollup":"^0.37.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-multi-entry":"^2.0.1","source-map-support":"^0.4.0"},"dependencies":{"localforage":">=1.5.0"},"gitHead":"bf078bb4b59e4f8c822e44610ebfed727dd73a1d","_id":"localforage-cordovasqlitedriver@1.8.0","_nodeVersion":"8.16.0","_npmVersion":"6.9.0","_npmUser":{"name":"dev","email":"thgreasi@gmail.com"},"maintainers":[{"name":"dev","email":"thgreasi@gmail.com"}],"dist":{"integrity":"sha512-AeYiVPURow8gPAGHNOiGMS9rlgv81wUuQLtnyCP6Eh1mq+IsqNl9fwAOP+RiTi6aO/Wfy3TTWiW2WtbTdJaUnQ==","shasum":"13a3613650b01e0899aaf19336ed4655cc0bf77f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/localforage-cordovasqlitedriver/-/localforage-cordovasqlitedriver-1.8.0.tgz","fileCount":9,"unpackedSize":24159,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc4Gt9CRA9TVsSAnZWagAArmgP/iZCVmtHFYFFuCYN0VgK\nS5Pp+owfPf8MoGxqwMnSeMeOb14Nj3rOgOSEet3JgtTB8MvSOdb8dTGSbIdA\nhBWHbs9T8AbCfrKkKsbylYCEWKkOD0XiR9GITQ9rvVxbL9/hClAhWO6ye3f+\numFO90k2JHWi9+VDFJA1x43GWwmnJePdc1UYzeuQm+R5fZdeCdQoJgYlYAf8\nieUK52/ZkzktDeYr42Fjyr+BrUPFtbPSjR3bumm63FVyrDBCnj/daXtsI34X\niAufAlB54N5cDTqfmvb1S8KkUZTt2C+gPl64aB77T67JSZTKrNZe7/BZgJBG\nFbLYVIQaiSOn85UTCd1aUYp5yoJOIcm6gflFoAFVm7wXLK7rIBvHmCKnkee3\nNV87BpCzJG/ztNHGD1EOinRmNFMN++Yy7skJzS9ckiaT5KcvSy0L8BaRwMpH\n3X0kHn5BfcNZInKOjQ3BsOGaV4/MpAABSza7mbS6p9of6fvxtZuO65X7p/3R\nS9tcLr40RYYGenbMG+8PTOAF0BslPN58lsss6imWHBSlXGaC3X+ZoMb6MQa9\nQsLbVwFj4QaMUzF7L9dyjyR/YtahoWuaitHRBDfILW7N+TqGiE5w+Xfmol3H\n7NoQ2S4h/6WGRG9tV+4nyIo0Ge59YL9/gVyFGCj6MFaCcmMYo3tWUPex3AA2\nP+Ns\r\n=m5Qs\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID3Qu9aGmI/iXMXNb3mD+cdAdQ1r0SOkxFDG4e7MvL5BAiEA1laGo6tzX+s0HbHQSpfuTUTZXFPyymHG7wfqc/fQrSI="}]},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/localforage-cordovasqlitedriver_1.8.0_1558211452638_0.12130446034722442"},"_hasShrinkwrap":false}},"name":"localforage-cordovasqlitedriver","time":{"modified":"2022-06-19T13:21:00.110Z","created":"2015-06-25T17:58:45.135Z","1.0.0":"2015-06-25T17:58:45.135Z","1.1.0":"2015-10-18T17:52:33.783Z","1.3.0":"2016-04-19T19:00:05.543Z","1.4.0":"2016-05-28T13:09:50.698Z","1.4.1":"2016-06-02T20:04:15.047Z","1.4.3":"2016-08-31T12:18:30.221Z","1.4.4":"2016-08-31T13:01:47.812Z","1.4.5":"2016-08-31T19:34:19.858Z","1.4.6":"2016-09-05T17:54:23.519Z","1.5.0":"2016-10-07T16:55:56.414Z","1.6.0":"2017-02-19T19:26:19.390Z","1.7.0":"2018-01-31T07:27:37.910Z","1.8.0":"2019-05-18T20:30:52.793Z"},"readmeFilename":"README.md","homepage":"https://github.com/thgreasi/localForage-cordovaSQLiteDriver"}