{"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"},{"name":"anonymous","email":"willpoulson44@gmail.com"}],"keywords":["ionic","cache","ionic-cache","angular2"],"dist-tags":{"latest":"6.0.3","next":"6.0.0-next-1"},"author":{"name":"Daniel Suchy"},"description":"Ionic cache service - cache request, data, promises etc.","readme":"# Ionic cache service\n\nIonic cache service that can cache almost everything. **It caches requests, observables, promises and classic data.** It uses [Ionic Storage](https://ionicframework.com/docs/storage/) so we support IndexedDB, SQLite (Cordova), WebSQL in this order.\nIt can be used separatelety in Angular 2 application.\n\nKey features:\n\n-   Request caching\n-   Delayed observable caching (see docs for more info)\n-   Don't invalidate cache if is browser offline\n-   Set and invalidate groups of entries\n-   Supports IndexedDB, SQLite (Cordova), WebSQL via Ionic Storage\n\nPlease report all bugs to bug report or fix it and send pull request :)\n\n## Install\n\nVia NPM:\n\n```bash\nnpm install ionic-cache @ionic/storage-angular --save\n```\n\nor Yarn:\n\n```bash\nyarn add ionic-cache @ionic/storage-angular\n```\n\nYou can optionally add [Cordova SQLite](https://ionicframework.com/docs/native/sqlite/).\n\nAnd inject service to your app:\n\n_app.module.ts_\n\n```ts\nimport { CacheModule } from \"ionic-cache\";\n\n@NgModule({\n  ...\n  imports: [\n    CacheModule.forRoot()\n  ],\n})\n```\n\n_app.component.ts_\n\n```ts\nimport { CacheService } from \"ionic-cache\";\n\n@Component({\n    templateUrl: \"build/app.html\"\n})\nclass MyApp {\n    constructor(cache: CacheService) {\n        ...\n        cache.setDefaultTTL(60 * 60); //set default cache TTL for 1 hour\n        ....\n    }\n    ...\n}\n```\n\n## Usage\n\n### Config\n\nStarting with version 3.0.2, `CacheModule.forRoot()` optionally accepts a config object.\n\nThe config object currently accepts a `keyPrefix`, which is the the internal key prefix to use when storing items.\n\nFor backwards compatibility this defaults to `''`, but it's recommended to set this to a different value in order to prevent issues with `clearAll()`.\n\n```ts\n@NgModule({\n  ...\n  imports: [\n    CacheModule.forRoot({ keyPrefix: 'my-app-cache' })\n  ],\n})\n```\n\n### Observables\n\n#### Cache request\n\n```ts\n...\nimport { CacheService } from \"ionic-cache\";\n\n@Injectable()\nexport class SomeProvider {\n    constructor(private http: HttpClient, private cache: CacheService) {}\n\n    loadList() {\n        let url = \"http://ip.jsontest.com\";\n        let cacheKey = url;\n        let request = this.http.get(url);\n\n        return this.cache.loadFromObservable(cacheKey, request);\n    }\n    ...\n```\n\n#### Cache whole request response\n\nIf you need to cache the whole response, for example if you need to access the Headers, you can pass in an object with the observe key set to 'response', i.e. `{ observe: 'response' }`. Then you can use `.pipe(map(res => res.body))` to extract the response body.\n\n```ts\n...\nlet request = this.http.get(url, { observe: 'response' });\nreturn this.cache.loadFromObservable(cacheKey, request).pipe(map(res => res.body));\n...\n```\n\n#### Cache with custom Observable operators\n\n`loadFromObservable` accepts an Observable and returns an Observable, so you are free to use all of the Observable operators.\nFor example error handling (on error, retry request every 6 seconds if fails):\n\n```ts\n...\nlet request = this.http.get(url)\n.pipe(retryWhen(error => error.timer(6000)));\n\nreturn this.cache.loadFromObservable(cacheKey, request);\n...\n```\n\n#### Delayed observable caching\n\n`loadFromDelayedObservable` shows off the full power of observables.\nWhen you call this method and it will return the cached data (even if it's expired)\nand immediately send a request to the server and then return the new data.\n\n```ts\n...\n    let request = this.http.get(url);\n    let delayType = 'all'; // this indicates that it should send a new request to the server every time, you can also set it to 'none' which indicates that it should only send a new request when it's expired\n\n    let response = this.cache.loadFromDelayedObservable(cacheKey, request, groupKey, ttl, delayType);\n\n    response.subscribe(data => {\n        console.log(\"Data:\" data);\n    });\n\n    //result will look like this:\n    // Data: \"Hello world from cache\"\n    // Data: \"Hello world from server\"\n...\n```\n\n### Promises & Classic data\n\n#### Cache promises\n\n```ts\n...\nlet key = 'some-promise';\nlet data = await this.cache.getOrSetItem(key, () => somePromiseFunction());\nconsole.log(\"Saved data: \", data);\n...\n```\n\n#### Cache classic data (arrays, objects, strings, numbers etc.)\n\nSimilarly, you can use `getOrSetItem` or `getItem` with classic data.\n\n```ts\n...\nlet key = 'heavily-calculated-function';\n\nlet data = await this.cache.getOrSetItem(key, () => heavilyCalculatedFunction());\nconsole.log('Saved data: ', data);\n...\n```\n\nIf you need more control in the event that the item is expired or doesn't exist, you can use the `getItem` method with error handling.\n\n```ts\n...\nlet key = 'heavily-calculated-function';\n\nlet data = await this.cache.getItem(key)\n.catch(() => {\n    console.log(\"Oh no! My promise is expired or doesn't exist!\");\n\n    let result = heavilyCalculatedFunction();\n    return this.cache.saveItem(key, result);\n});\n\nconsole.log('Saved data: ', data);\n...\n```\n\n#### Removing cached items\n\nYou can also remove cached items by using the `removeItem` method.\n\n```ts\n...\nlet key = 'some-promise';\n\nthis.cache.removeItem(key);\n...\n```\n\n#### Removing multiple cached items\n\nYou can utilize the `removeItems` method to remove multiple items based on a wildcard pattern.\n\n```ts\n...\nawait Promise.all([\n    service.saveItem('movies/comedy/1', 'Scott Pilgrim vs. The World'),\n    service.saveItem('movies/comedy/2', 'The Princess Bride'),\n    service.saveItem('songs/metal/1', 'Who Bit the Moon'),\n    service.saveItem('songs/metal/2', 'Deception - Concealing Fate, Pt. 2'),\n]);\n\nthis.cache.removeItems('songs/metal/*');\n...\n```\n\n#### Cached promise existence\n\nIf you need to check whether or not an item has been cached, ignoring whether or not it's expired, you can use the `itemExists` method.\n\n```ts\n...\nlet key = 'some-promise';\n\nlet exists = await this.cache.itemExists(key); // returns either a boolean indicating whether it exists or not, or an error message\n...\n```\n\n#### Raw cached item\n\nIf you ever need to get a cached item regardless of whether it's expired or not, you can use the `getRawItem` method.\n\n```ts\n...\nlet key = 'some-promise';\n\nlet item = await this.cache.getRawItem(key);\n...\n```\n\nThere's also the `getRawItems` method, which returns an array of the raw cached items.\n\n```ts\n...\nlet rawItems = await this.cache.getRawItems();\nlet firstItem = rawItems[0]; //Has the properties: key, value, expires, type, groupKey\n...\n```\n\n### Other\n\n#### Cache entries grouping\n\nAt times you may need to clear certain groups of cached items.\nFor example, if you have an infinite scroll list with a lot of items and the user triggers a pull to refresh, you may want to delete all of the cached list items. To do this, you can supply a group key as the 3rd parameter of `loadFromObservable`.\n\n```ts\n...\nloadList(pageNumber) {\n    let url = \"http://google.com/?page=\" + pageNumber;\n    let cacheKey = url;\n    let groupKey = \"googleSearchPages\"\n\n    let request = this.http.get(url);\n    return this.cache.loadFromObservable(cacheKey, request, groupKey);\n}\n...\n```\n\nThen when pull to refresh is triggered, you can use the `clearGroup` method and pass in your group key.\n\n```ts\n...\npullToRefresh() {\n    this.cache.clearGroup(\"googleSearchPages\");\n}\n...\n```\n\n#### Set custom TTL for single request\n\nIf you want a custom TTL for a single request, you can pass it as the fourth parameter.\n\n```ts\nlet ttl = 60 * 60 * 24 * 7; // TTL in seconds for one week\nlet request = this.http.get(url);\n\nreturn this.cache.loadFromObservable(cacheKey, request, groupKey, ttl);\n```\n\n#### Set default TTL\n\n```ts\nthis.cache.setDefaultTTL(60 * 60); //set the default cache TTL for 1 hour\n```\n\n#### Delete expired entries\n\nIt's automatically done on every startup, but you can do it manually.\n\n```ts\nthis.cache.clearExpired();\n```\n\n#### Delete all entries\n\n**!Important!**\n\nMake sure that you have a `keyPrefix` set in the CacheModule config, otherwise this will clear everything in Ionic Storage.\n\n```ts\nthis.cache.clearAll();\n```\n\n#### Disable cache\n\nYou can disable cache without any issues, it will pass all of the original Observables through and all Promises will be rejected.\n\n```ts\nthis.cache.enableCache(false);\n```\n\n#### Disable offline invalidation\n\nYou can also disable invalidating cached items when the device is offline.\n\n```ts\nthis.cache.setOfflineInvalidate(false);\n```\n\n## Contributors ✨\n\n#### Maintainers:\n\n-   [Will Poulson](https://github.com/WillPoulson)\n-   [Daniel Suchy](https://github.com/Nodonisko)\n\nThanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n\n<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->\n<!-- prettier-ignore-start -->\n<!-- markdownlint-disable -->\n<table>\n  <tr>\n    <td align=\"center\"><a href=\"https://danielsuchy.cz/\"><img src=\"https://avatars.githubusercontent.com/u/5837757?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Daniel Suchý</b></sub></a><br /><a href=\"#ideas-Nodonisko\" title=\"Ideas, Planning, & Feedback\">🤔</a> <a href=\"https://github.com/Nodonisko/ionic-cache/commits?author=Nodonisko\" title=\"Documentation\">📖</a> <a href=\"https://github.com/Nodonisko/ionic-cache/commits?author=Nodonisko\" title=\"Code\">💻</a> <a href=\"https://github.com/Nodonisko/ionic-cache/pulls?q=is%3Apr+reviewed-by%3ANodonisko\" title=\"Reviewed Pull Requests\">👀</a></td>\n    <td align=\"center\"><a href=\"https://willpoulson.co.uk/\"><img src=\"https://avatars.githubusercontent.com/u/12980659?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Will Poulson</b></sub></a><br /><a href=\"https://github.com/Nodonisko/ionic-cache/commits?author=WillPoulson\" title=\"Documentation\">📖</a> <a href=\"https://github.com/Nodonisko/ionic-cache/commits?author=WillPoulson\" title=\"Code\">💻</a> <a href=\"https://github.com/Nodonisko/ionic-cache/pulls?q=is%3Apr+reviewed-by%3AWillPoulson\" title=\"Reviewed Pull Requests\">👀</a></td>\n    <td align=\"center\"><a href=\"https://zyramedia.com/\"><img src=\"https://avatars.githubusercontent.com/u/13794420?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Ibby Hadeed</b></sub></a><br /><a href=\"https://github.com/Nodonisko/ionic-cache/commits?author=ihadeed\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://github.com/darthdie\"><img src=\"https://avatars.githubusercontent.com/u/4060546?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Bowser</b></sub></a><br /><a href=\"https://github.com/Nodonisko/ionic-cache/commits?author=darthdie\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://github.com/vojtatranta\"><img src=\"https://avatars.githubusercontent.com/u/4154045?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Vojtěch Tranta</b></sub></a><br /><a href=\"https://github.com/Nodonisko/ionic-cache/commits?author=vojtatranta\" title=\"Code\">💻</a></td>\n    <td align=\"center\"><a href=\"https://github.com/bpfrare\"><img src=\"https://avatars.githubusercontent.com/u/1761802?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Bruno Frare</b></sub></a><br /><a href=\"https://github.com/Nodonisko/ionic-cache/commits?author=bpfrare\" title=\"Code\">💻</a></td>\n  </tr>\n</table>\n\n<!-- markdownlint-restore -->\n<!-- prettier-ignore-end -->\n\n<!-- ALL-CONTRIBUTORS-LIST:END -->\n\nThis project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!\n","repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"users":{"ys_sidson_aidson":true,"cocowalla":true,"touskar":true,"andy008":true},"bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"license":"MIT","versions":{"1.0.0":{"name":"ionic-cache","version":"1.0.0","description":"Ionic cache service - cache request, data, promises etc.","main":"index.js","scripts":{"prepublish":"tsc"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","dependencies":{"@angular/common":"2.0.0-rc.3","@angular/compiler":"2.0.0-rc.3","@angular/core":"2.0.0-rc.3","@angular/platform-browser":"2.0.0-rc.3","@angular/platform-browser-dynamic":"2.0.0-rc.3","@angular/http":"2.0.0-rc.3","es6-shim":"^0.35.0","ionic-angular":"2.0.0-beta.10","ionic-native":"1.3.2","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"tslint-ionic-rules":"^0.0.3","typescript":"^1.8.10","typings":"^1.3.1"},"typings":"./ionic-cache.d.ts","gitHead":"48d74b9e5a76f5664272416759cd0dda7b469858","_id":"ionic-cache@1.0.0","_shasum":"275c3a1fefbdd0c879766f03fe1944fa1f0118b2","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"275c3a1fefbdd0c879766f03fe1944fa1f0118b2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-1.0.0.tgz","integrity":"sha512-u0ufCioLVR7KL9sSg2Thf27arbFrfmsTspolUZJdRQdGNToy3A+KTemShQVn7XFvZoSwLlWusijBSq0tYDKcTQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCfYBfacqYktZ1QAt6uyA1nu1Eh+V3Im7SuPtsJDTQv3QIgJtlsF56paIhHw4WqD6THeynhamk6Y8XKKVvbaasOnxo="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic-cache-1.0.0.tgz_1469008649922_0.43437155848369"},"directories":{}},"1.0.1":{"name":"ionic-cache","version":"1.0.1","description":"Ionic cache service - cache request, data, promises etc.","main":"ionic-cache.js","scripts":{"prepublish":"tsc"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","dependencies":{"@angular/common":"2.0.0-rc.3","@angular/compiler":"2.0.0-rc.3","@angular/core":"2.0.0-rc.3","@angular/platform-browser":"2.0.0-rc.3","@angular/platform-browser-dynamic":"2.0.0-rc.3","@angular/http":"2.0.0-rc.3","es6-shim":"^0.35.0","ionic-angular":"2.0.0-beta.10","ionic-native":"1.3.2","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"tslint":"^3.13.0","tslint-ionic-rules":"^0.0.3","typescript":"^1.8.10","typings":"^1.3.1"},"typings":"./ionic-cache.d.ts","gitHead":"48d74b9e5a76f5664272416759cd0dda7b469858","_id":"ionic-cache@1.0.1","_shasum":"56ea306256abd2a83180cf56ef3a6a710860f69e","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"56ea306256abd2a83180cf56ef3a6a710860f69e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-1.0.1.tgz","integrity":"sha512-MxHP6qj9EBaU9SJ+X7t6z+6bla0l2cIiDVqZ8bTbDdYMrFAvbaI5qA0s31HS3/6qvxu1aVXbSHyBpdUF+G5/gA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID+Bm8hk4GSLQMLv/cRHXiGVjuf1IlxXrVZL6v+snybnAiBhy25bcsaIwW8Le2/5z+LokyTU5Mn0JIoGdQqEnRhOPQ=="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic-cache-1.0.1.tgz_1469009522546_0.5377500872127712"},"directories":{}},"1.0.2":{"name":"ionic-cache","version":"1.0.2","description":"Ionic cache service - cache request, data, promises etc.","main":"ionic-cache.js","scripts":{"prepublish":"tsc"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","dependencies":{"@angular/common":"2.0.0-rc.3","@angular/compiler":"2.0.0-rc.3","@angular/core":"2.0.0-rc.3","@angular/platform-browser":"2.0.0-rc.3","@angular/platform-browser-dynamic":"2.0.0-rc.3","@angular/http":"2.0.0-rc.3","es6-shim":"^0.35.0","ionic-angular":"2.0.0-beta.10","ionic-native":"1.3.2","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"tslint":"^3.13.0","tslint-ionic-rules":"^0.0.3","typescript":"^1.8.10","typings":"^1.3.1"},"typings":"./ionic-cache.d.ts","gitHead":"48d74b9e5a76f5664272416759cd0dda7b469858","_id":"ionic-cache@1.0.2","_shasum":"adfcf01ae4df8935f3d6739c49e1eea6dd4f1b5d","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"adfcf01ae4df8935f3d6739c49e1eea6dd4f1b5d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-1.0.2.tgz","integrity":"sha512-6WWf628rZySqNXI3MkqmQHaUnpqruE+zbZRjwQJT1gE8fPBxKSDCLogp0/xK2fqyOmCa0Jh7Gp5w/nuTfDFa3g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG0c8MtOdZRt72vSEIUtbvh2RQ3hC9FRji2mlaEOiHTMAiB1lIWEG8WFFEUMpQnMrpXmo4xJ+F4fyxybcwqx/A7sZw=="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic-cache-1.0.2.tgz_1469009893733_0.8517766480799764"},"directories":{}},"1.0.3":{"name":"ionic-cache","version":"1.0.3","description":"Ionic cache service - cache request, data, promises etc.","main":"ionic-cache.js","scripts":{"prepublish":"tsc"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","dependencies":{"@angular/common":"2.0.0-rc.3","@angular/compiler":"2.0.0-rc.3","@angular/core":"2.0.0-rc.3","@angular/platform-browser":"2.0.0-rc.3","@angular/platform-browser-dynamic":"2.0.0-rc.3","@angular/http":"2.0.0-rc.3","es6-shim":"^0.35.0","ionic-angular":"2.0.0-beta.10","ionic-native":"1.3.2","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"tslint":"^3.13.0","tslint-ionic-rules":"^0.0.3","typescript":"^1.8.10","typings":"^1.3.1"},"typings":"./ionic-cache.d.ts","gitHead":"48d74b9e5a76f5664272416759cd0dda7b469858","_id":"ionic-cache@1.0.3","_shasum":"b66f6b754a38af171759ecc9a7512a63e1fc0b0d","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"b66f6b754a38af171759ecc9a7512a63e1fc0b0d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-1.0.3.tgz","integrity":"sha512-SzD53H2N83sePaJRNSUBA0owgrcv04D7TxjARGMi12OOM6VnHx4U6dNM98BUr+Zi3U7N/51EeztZKAZHP5vPfw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCzw2FRm2o1qNXXyk+S75H54pUtsaQ6A0JhKLMTfJwRIAIhAMblykn3ACfArXhQkyqWTAN9CpSB4u8duPs82+PTe8oG"}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic-cache-1.0.3.tgz_1469011127530_0.795234092278406"},"directories":{}},"1.0.4":{"name":"ionic-cache","version":"1.0.4","description":"Ionic cache service - cache request, data, promises etc.","main":"ionic-cache.js","scripts":{"prepublish":"tsc"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","dependencies":{"@angular/common":"2.0.0-rc.3","@angular/compiler":"2.0.0-rc.3","@angular/core":"2.0.0-rc.3","@angular/platform-browser":"2.0.0-rc.3","@angular/platform-browser-dynamic":"2.0.0-rc.3","@angular/http":"2.0.0-rc.3","es6-shim":"^0.35.0","ionic-angular":"2.0.0-beta.10","ionic-native":"1.3.2","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"tslint":"^3.13.0","tslint-ionic-rules":"^0.0.3","typescript":"^1.8.10","typings":"^1.3.1"},"typings":"./ionic-cache.d.ts","gitHead":"645e0a3e51f794065b5016ec0d380d8100edb423","_id":"ionic-cache@1.0.4","_shasum":"0e5a7824d0bc8356c340368750ad897f54603567","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"0e5a7824d0bc8356c340368750ad897f54603567","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-1.0.4.tgz","integrity":"sha512-zs5uWuKlSwJkZW1p4n8AGJEUqQk/eEyUeLw8rEewfb14fKOLczA6OhpJakBNURIoNOEPmNVZGgmBecO43aUW6Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDT/1Xrphx7UASeNRZie/J89qKlNwWqkKDvd2hx/cHw8AIgaCiE/BJ/Rmdd93lLNt4ZL3S5kESD+77PdM19of8rMKA="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic-cache-1.0.4.tgz_1469019579986_0.672759314533323"},"directories":{}},"1.0.5":{"name":"ionic-cache","version":"1.0.5","description":"Ionic cache service - cache request, data, promises etc.","main":"ionic-cache.js","scripts":{"prepublish":"tsc"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","dependencies":{"@angular/common":"2.0.0-rc.3","@angular/compiler":"2.0.0-rc.3","@angular/core":"2.0.0-rc.3","@angular/platform-browser":"2.0.0-rc.3","@angular/platform-browser-dynamic":"2.0.0-rc.3","@angular/http":"2.0.0-rc.3","es6-shim":"^0.35.0","ionic-angular":"2.0.0-beta.10","ionic-native":"1.3.2","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"tslint":"^3.13.0","tslint-ionic-rules":"^0.0.3","typescript":"^1.8.10","typings":"^1.3.1"},"typings":"./ionic-cache.d.ts","gitHead":"55e648bbb4dc69156f12dc6250e00a108b5f0c6f","_id":"ionic-cache@1.0.5","_shasum":"6cb01f6de1a193eadf310f65c3b14d63f079368c","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"6cb01f6de1a193eadf310f65c3b14d63f079368c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-1.0.5.tgz","integrity":"sha512-Hrvulvoax6Lwb9+Q7R4/2x8F4FxhENG7i7lXGcmDp3ceMSFZZRptGeOmHteFj4YdBs+a3S7VpHblfVoSvAGF8g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGvZpyKHVxs+nL1TiigbYsht55G/ZonIpOjtq2ntE8eiAiAuhsr1T4NJt2Pd3eAHJUMIakjxQPoyS+dik2+R5vcp8A=="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic-cache-1.0.5.tgz_1469085815472_0.5584014991763979"},"directories":{}},"1.0.6":{"name":"ionic-cache","version":"1.0.6","description":"Ionic cache service - cache request, data, promises etc.","main":"ionic-cache.js","scripts":{"prepublish":"tsc"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","dependencies":{"@angular/common":"2.0.0-rc.3","@angular/compiler":"2.0.0-rc.3","@angular/core":"2.0.0-rc.3","@angular/platform-browser":"2.0.0-rc.3","@angular/platform-browser-dynamic":"2.0.0-rc.3","@angular/http":"2.0.0-rc.3","es6-shim":"^0.35.0","ionic-angular":"2.0.0-beta.10","ionic-native":"1.3.2","reflect-metadata":"^0.1.3","rxjs":"5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"tslint":"^3.13.0","tslint-ionic-rules":"^0.0.3","typescript":"^1.8.10","typings":"^1.3.1"},"typings":"./ionic-cache.d.ts","gitHead":"55e648bbb4dc69156f12dc6250e00a108b5f0c6f","_id":"ionic-cache@1.0.6","_shasum":"8e64641c28432fa328e050e02bfb017f85c11f03","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"8e64641c28432fa328e050e02bfb017f85c11f03","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-1.0.6.tgz","integrity":"sha512-2j9ici8YrHpbMO4U2Rnm4WIHWyMLBTEBka4KDtru2m0ElsS6BjADXPItdcvPydpi5O4iTLJG/PlWZIAFW6t/mQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAZqFbPoEqLPR84ULOOKXlFJgkgXqfzAZmcUL0nKg0XuAiEAoVMq6PX+blGlGEBAwSPLAevw63E4sDt0N1z/THpLOIE="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic-cache-1.0.6.tgz_1470759338350_0.27765237470157444"},"directories":{}},"1.0.7":{"name":"ionic-cache","version":"1.0.7","description":"Ionic cache service - cache request, data, promises etc.","main":"ionic-cache.js","scripts":{"prepublish":"tsc"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","dependencies":{"@angular/common":"^2.0.0-rc.4","@angular/compiler":"^2.0.0-rc.4","@angular/core":"^2.0.0-rc.4","@angular/forms":"^0.2.0","@angular/http":"^2.0.0-rc.4","@angular/platform-browser":"^2.0.0-rc.4","@angular/platform-browser-dynamic":"^2.0.0-rc.4","es6-shim":"^0.35.0","ionic-angular":"^2.0.0-beta.11","ionic-native":"^1.3.2","rxjs":"^5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"tslint":"^3.13.0","tslint-ionic-rules":"^0.0.3","typescript":"^1.8.10","typings":"^1.3.1"},"typings":"./ionic-cache.d.ts","gitHead":"f3aa2c34c59cc388a7475d48eb43d5c19034110b","_id":"ionic-cache@1.0.7","_shasum":"5fa9be2b1c0a0f3f99f4d35b12b9211623d09c65","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"5fa9be2b1c0a0f3f99f4d35b12b9211623d09c65","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-1.0.7.tgz","integrity":"sha512-f9iF+liMVuSU5kFvOD6b6UyfeMqSWVneplOchb8BfjE/kzjISNY3Fwv/HiSkpF7WYvoNzlQn9qTgigQcglZxOA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCQC8dIqFlOPSg7/HvBLyQay2p4pzcpwZRFzK1+xFJnIgIga/x4NJsdmEb82SmSXKIpEbfHaJtXWvfW6QocrTg41gk="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic-cache-1.0.7.tgz_1470760772713_0.40912127820774913"},"directories":{}},"1.0.9":{"name":"ionic-cache","version":"1.0.9","description":"Ionic cache service - cache request, data, promises etc.","main":"ionic-cache.js","scripts":{"prepublish":"tsc"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","dependencies":{"@angular/common":"^2.0.0-rc.4","@angular/compiler":"^2.0.0-rc.4","@angular/core":"^2.0.0-rc.4","@angular/forms":"^0.2.0","@angular/http":"^2.0.0-rc.4","@angular/platform-browser":"^2.0.0-rc.4","@angular/platform-browser-dynamic":"^2.0.0-rc.4","es6-shim":"^0.35.0","ionic-angular":"^2.0.0-beta.11","ionic-native":"^1.3.2","rxjs":"^5.0.0-beta.6","zone.js":"^0.6.12"},"devDependencies":{"tslint":"^3.13.0","tslint-ionic-rules":"^0.0.3","typescript":"^1.8.10","typings":"^1.3.1"},"typings":"./ionic-cache.d.ts","gitHead":"617ea44de69548e568a6d5b47be65c962745d94f","_id":"ionic-cache@1.0.9","_shasum":"1f91e628e3bd315eaaedd2f437700c8a4f75e739","_from":".","_npmVersion":"3.10.6","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"1f91e628e3bd315eaaedd2f437700c8a4f75e739","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-1.0.9.tgz","integrity":"sha512-yNX4mWS8HY2uKBiiYiR3kG3/7XofuOs/WE8ysXjAkf2nGxoSd6xyr1OKOUN2ZlY2yppoSWERH8Hc/wQ/t2ec2w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC6i4cguLHbREL7KpscGUOCk8dbbkyMa9ULJZughOAbMQIgavwSVjvFPRQV1m5Upw3GMsCuzFVWqwS++1/yDDqoQOg="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic-cache-1.0.9.tgz_1476112611886_0.09715793747454882"},"directories":{}},"1.1.0":{"name":"ionic-cache","version":"1.1.0","description":"Ionic cache service - cache request, data, promises etc.","main":"ionic-cache.js","scripts":{"prepublish":"tsc"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","dependencies":{"@angular/core":"^2.0.2","@angular/http":"^2.0.2","@angular/platform-browser":"^2.0.2","rxjs":"^5.0.0-beta.12","zone.js":"^0.6.21"},"devDependencies":{"tslint":"^3.15.1","tslint-ionic-rules":"^0.0.6","typescript":"^2.0.3","typings":"^1.4.0"},"typings":"./ionic-cache.d.ts","gitHead":"75415c9ecc91d0eb90b5eb62ed4bd427f33bfd3a","_id":"ionic-cache@1.1.0","_shasum":"024c4210affc2403e09e05d3c85109f00c7cf550","_from":".","_npmVersion":"3.10.6","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"024c4210affc2403e09e05d3c85109f00c7cf550","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-1.1.0.tgz","integrity":"sha512-A5TY0Bxk0YO9/KBIajHo/2stacmfEUPILPRyLbEA1uXmKctH2+AhN2KWqNo8C3LU0/9Zqpe3RMZn+8ICj1H9hA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGrXjHimp41igqTJdE/AcvzpFwm++Mtt1ix6uo/jjEntAiEA2bNEYm5p7FGgRG79lU19YiZVznC6IqKQaznHs5Ycqqk="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/ionic-cache-1.1.0.tgz_1476171974753_0.2761994465254247"},"directories":{}},"1.1.1":{"name":"ionic-cache","version":"1.1.1","description":"Ionic cache service - cache request, data, promises etc.","main":"ionic-cache.js","scripts":{"prepublish":"tsc"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","dependencies":{"@angular/common":"^2.4.2","@angular/core":"^2.0.2","@angular/http":"^2.0.2","@angular/platform-browser":"^2.0.2","rxjs":"^5.0.0-beta.12","zone.js":"^0.7.4"},"devDependencies":{"tslint":"^3.15.1","tslint-ionic-rules":"^0.0.6","typescript":"^2.0.3","typings":"^1.4.0"},"typings":"./ionic-cache.d.ts","gitHead":"c0d21a4f5b25b864fdf7a2c565b6eff9f4bd03f1","_id":"ionic-cache@1.1.1","_shasum":"b44ffd5d16c84d893232b604107a161bd9fdb323","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.2.1","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"b44ffd5d16c84d893232b604107a161bd9fdb323","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-1.1.1.tgz","integrity":"sha512-Ckw/oocmb7+xd/oPXTUVSEkSqSbD1EoIolqKBFCA7paqHPbVt7wm1dM8M4OYqsjyyn3kpk7gof28lr61mQyang==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAsv8icyP8zbLux8wfZbtUKUIfdxj/LNgPNQ1DmlXUpzAiEAtPUPBXm87XPmkScKDBh7JqYqaww0U6b6k+PMJojLhN4="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic-cache-1.1.1.tgz_1483740797570_0.18852416169829667"},"directories":{}},"1.1.2":{"name":"ionic-cache","version":"1.1.2","description":"Ionic cache service - cache request, data, promises etc.","main":"ionic-cache.js","scripts":{"prepublish":"tsc"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","dependencies":{"@angular/common":"^2.4.2","@angular/core":"^2.0.2","@angular/http":"^2.0.2","@angular/platform-browser":"^2.0.2","rxjs":"^5.0.0-beta.12","zone.js":"^0.7.4"},"devDependencies":{"tslint":"^3.15.1","tslint-ionic-rules":"^0.0.6","typescript":"^2.0.3","typings":"^1.4.0"},"typings":"./ionic-cache.d.ts","gitHead":"5d60d2f2b1c2c66b0a2a35fcc19269607d42f7be","_id":"ionic-cache@1.1.2","_shasum":"aeb5392e4e28931c93a0d271ca99c550fde1283e","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.2.1","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"aeb5392e4e28931c93a0d271ca99c550fde1283e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-1.1.2.tgz","integrity":"sha512-JP4aib0xGBcAUGjHzyK6byGD9EctEvrLJtycLivNi1B0wYCrw4XlIdXctFFER+vk6Z060GrMEdk5lBE3FLWYYw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDy1cl7VSB1wd7UNdmUyG8JQA6ORCTUg4TueU7dwrEyzwIhAJWK8ZzJYQfexxfjq24KwtQnIknRJknl5uq/1IMb5sOy"}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ionic-cache-1.1.2.tgz_1486328522940_0.12870410783216357"},"directories":{}},"2.0.0":{"name":"ionic-cache","version":"2.0.0","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","files":["dist"],"scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rm -rf dist aot && ngc","lint":"tslint \"src/**/*.ts\""},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^4.1.1","@angular/compiler":"^4.1.1","@angular/compiler-cli":"^4.1.1","@angular/core":"^4.1.1","@angular/http":"^4.1.1","@angular/platform-browser":"^4.1.1","@angular/platform-browser-dynamic":"^4.1.1","@ionic/storage":"^2.0.1","@types/jasmine":"^2.5.47","@types/node":"^7.0.18","@types/websql":"0.0.27","jasmine-core":"^2.6.1","karma":"^1.6.0","karma-chrome-launcher":"^2.1.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.0","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^3.0.1","karma-typescript-angular2-transform":"^1.0.0","karma-typescript-es6-transform":"^1.0.0","rxjs":"^5.3.1","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.7","typescript":"^2.3.2","zone.js":"^0.8.10"},"peerDependencies":{"@ionic/storage":"^2.0.0"},"gitHead":"599a81907641d7f980d02166b637558ba5bb5b59","_id":"ionic-cache@2.0.0","_shasum":"1de2f3e77fc38a36ea112fb4c95ebae408ce2b5c","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.2.1","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"1de2f3e77fc38a36ea112fb4c95ebae408ce2b5c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-2.0.0.tgz","integrity":"sha512-48Itks2o5Us2NEs7qSCjYSDEj7+WWdz8J5Gr80+GjzNQrXEFs5gDkWn16A3jqBrWGzMJxbir2G2ZCAGqhgG06A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGlx473/hImoDgoFCpLJuNoCQ2ZbDDixiP8etVMSSglBAiEAraC/ejvzREKY8z8M2U1sbUtSBWnvcmNGRtmVj50OLd4="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ionic-cache-2.0.0.tgz_1494085543317_0.5070173654239625"},"directories":{}},"2.0.1":{"name":"ionic-cache","version":"2.0.1","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","files":["dist"],"scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rm -rf dist aot && ngc","lint":"tslint \"src/**/*.ts\"","prepublish":"npm run lint && npm run build"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^4.1.1","@angular/compiler":"^4.1.1","@angular/compiler-cli":"^4.1.1","@angular/core":"^4.1.1","@angular/http":"^4.1.1","@angular/platform-browser":"^4.1.1","@angular/platform-browser-dynamic":"^4.1.1","@ionic/storage":"^2.0.1","@types/jasmine":"^2.5.47","@types/node":"^7.0.18","@types/websql":"0.0.27","jasmine-core":"^2.6.1","karma":"^1.6.0","karma-chrome-launcher":"^2.1.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.0","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^3.0.1","karma-typescript-angular2-transform":"^1.0.0","karma-typescript-es6-transform":"^1.0.0","rxjs":"^5.3.1","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.7","typescript":"^2.3.2","zone.js":"^0.8.10"},"peerDependencies":{"@ionic/storage":"^2.0.0"},"gitHead":"1f76e3cef1becd1f90dafa5e3124a39b828bff32","_id":"ionic-cache@2.0.1","_shasum":"17791c9a7daca5ecfa4bbd2a4f9feeae39e018f9","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.2.1","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"17791c9a7daca5ecfa4bbd2a4f9feeae39e018f9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-2.0.1.tgz","integrity":"sha512-7X5+BtQHM2clrkzK84OG9vW7FJSMEQ3Qcfz76VfACNGdQ4TI/QDsqhPJNyVugdN/5+IrrSQaCJT9PHQYurewHQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICk3ni84hHFf7mZrCygLdWuj5ojEn8HAQwrAyTqyDgtiAiEAmF0EzKW3PNO5rphQco4RS/At7AeOGnM388eju3AZwY0="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/ionic-cache-2.0.1.tgz_1494085948142_0.9816351507324725"},"directories":{}},"2.0.2":{"name":"ionic-cache","version":"2.0.2","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","files":["dist"],"scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rm -rf dist aot && ngc","lint":"tslint \"src/**/*.ts\"","prepublish":"npm run lint && npm run build"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^4.1.1","@angular/compiler":"^4.1.1","@angular/compiler-cli":"^4.1.1","@angular/core":"^4.1.1","@angular/http":"^4.1.1","@angular/platform-browser":"^4.1.1","@angular/platform-browser-dynamic":"^4.1.1","@ionic/storage":"^2.0.1","@types/jasmine":"^2.5.47","@types/node":"^7.0.18","@types/websql":"0.0.27","jasmine-core":"^2.6.1","karma":"^1.6.0","karma-chrome-launcher":"^2.1.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.0","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^3.0.1","karma-typescript-angular2-transform":"^1.0.0","karma-typescript-es6-transform":"^1.0.0","rxjs":"^5.3.1","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.7","typescript":"^2.3.2","zone.js":"^0.8.10"},"peerDependencies":{"@ionic/storage":"^2.0.0"},"gitHead":"914e7771178e90e05115607157aff9a199e28690","_id":"ionic-cache@2.0.2","_shasum":"2d481e935b465b0a7a55a5736af958c94ceeec38","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.2.1","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"2d481e935b465b0a7a55a5736af958c94ceeec38","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-2.0.2.tgz","integrity":"sha512-qgnhMmMYtc8YjPhNcz1FA/FDlYojvN4VhND92dw0wmKO+8WZXWsVzDB1ro8cp3LdwZjhtxzw42F2IsIdpF8YkA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDy5hUCk1+rC7Sxk/bHLEs+tZS8xqNL1ZjLaIiDGFXdBAiBW6BU82Aa1Dxds2QwvM/kz/2PA4XUgBlkpFmPJt8DFEw=="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache-2.0.2.tgz_1496220210437_0.7010309782344848"},"directories":{}},"2.0.3":{"name":"ionic-cache","version":"2.0.3","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","files":["dist"],"scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rm -rf dist aot && ngc","lint":"tslint \"src/**/*.ts\"","prepublish":"npm run lint && npm run build"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^4.1.3","@angular/compiler":"^4.1.3","@angular/compiler-cli":"^4.1.3","@angular/core":"^4.1.3","@angular/http":"^4.1.3","@angular/platform-browser":"^4.1.3","@angular/platform-browser-dynamic":"^4.1.3","@ionic/storage":"^2.0.1","@types/jasmine":"^2.5.47","@types/node":"^7.0.18","@types/websql":"0.0.27","jasmine-core":"^2.6.1","karma":"^1.6.0","karma-chrome-launcher":"^2.1.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.0","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^3.0.3","karma-typescript-angular2-transform":"^1.0.0","karma-typescript-es6-transform":"^1.0.0","rxjs":"^5.4.0","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.8","typescript":"^2.3.4","zone.js":"^0.8.11"},"peerDependencies":{"@ionic/storage":"^2.0.1"},"gitHead":"922522355318ea2d44240618da37ca1660c12fd6","_id":"ionic-cache@2.0.3","_shasum":"0eb4458b26b412a8a8785f3ca4675f4ba0af09ed","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.2.1","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"0eb4458b26b412a8a8785f3ca4675f4ba0af09ed","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-2.0.3.tgz","integrity":"sha512-qGv/6jnzXIN8isrEShFPwdGGM38SQX9u1lUzhXGU+wQcDG3i5bRffOblWSneeOyZNayqf0O0nfDeALRf/ncLFA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDLhtHIGtlwYf28kpfIh1DjSCp/2eiybJy4WWIcFjXbpAIhAPu+lLX6lW15Go4bTWdyp4qu6qxSmmXgUDBORvExKcIQ"}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache-2.0.3.tgz_1496908980583_0.5382179061416537"},"directories":{}},"2.0.4":{"name":"ionic-cache","version":"2.0.4","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","files":["dist"],"scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rm -rf dist aot && ngc","lint":"tslint \"src/**/*.ts\"","prepublish":"npm run lint && npm run build"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^4.1.3","@angular/compiler":"^4.1.3","@angular/compiler-cli":"^4.1.3","@angular/core":"^4.1.3","@angular/http":"^4.1.3","@angular/platform-browser":"^4.1.3","@angular/platform-browser-dynamic":"^4.1.3","@ionic/storage":"^2.0.1","@types/jasmine":"^2.5.47","@types/node":"^7.0.18","@types/websql":"0.0.27","jasmine-core":"^2.6.1","karma":"^1.6.0","karma-chrome-launcher":"^2.1.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.0","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^3.0.3","karma-typescript-angular2-transform":"^1.0.0","karma-typescript-es6-transform":"^1.0.0","rxjs":"^5.4.0","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.8","typescript":"^2.3.4","zone.js":"^0.8.11"},"peerDependencies":{"@ionic/storage":"^2.0.1"},"gitHead":"86db3562d7ba0704642b83c794475d7e9c8eb21b","_id":"ionic-cache@2.0.4","_shasum":"0b3c145d73b3abbed2d9f7ba323668186789de0b","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.2.1","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"0b3c145d73b3abbed2d9f7ba323668186789de0b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-2.0.4.tgz","integrity":"sha512-w0GsqeD1PlvONiEauFLDRu6NwvfjkbAVR13D4P4du/ThOhe8kdU/SAbCVGBwvb+xC9BPVHvd7i3aj99gtIcSkw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF7xDTmNI+zcB/wSKFtmaqXOPf8VLm2yYF3cTGhHggoDAiEA25DO6B0pB+gPoDDd0HTAs72m8jqWXD8OBkSL9NQs3rE="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache-2.0.4.tgz_1497536986415_0.06455752649344504"},"directories":{}},"2.0.5":{"name":"ionic-cache","version":"2.0.5","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","files":["dist"],"scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rm -rf dist aot && ngc","lint":"tslint \"src/**/*.ts\"","prepublish":"npm run lint && npm run build"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^4.1.3","@angular/compiler":"^4.1.3","@angular/compiler-cli":"^4.1.3","@angular/core":"^4.1.3","@angular/http":"^4.1.3","@angular/platform-browser":"^4.1.3","@angular/platform-browser-dynamic":"^4.1.3","@ionic/storage":"^2.0.1","@types/jasmine":"^2.5.47","@types/node":"^7.0.18","@types/websql":"0.0.27","jasmine-core":"^2.6.1","karma":"^1.6.0","karma-chrome-launcher":"^2.1.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.0","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^3.0.3","karma-typescript-angular2-transform":"^1.0.0","karma-typescript-es6-transform":"^1.0.0","rxjs":"^5.4.0","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.8","typescript":"^2.3.4","zone.js":"^0.8.11"},"peerDependencies":{"@ionic/storage":"^2.0.1"},"gitHead":"61fe1a4ca9dcd3ba0797efa88a93ab4433adb23a","_id":"ionic-cache@2.0.5","_shasum":"a5308703bd7edf3fe3c070010905bd872eec8b63","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.2.1","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"shasum":"a5308703bd7edf3fe3c070010905bd872eec8b63","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-2.0.5.tgz","integrity":"sha512-Qz5Dsgep0yQksiRhaUdxMHO6XRr+Y1Ary5GkYqbXyzh0bXkjOEJjGlg7v948cPCtIesIzZ2ssfTsAuuOhRnoGA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGXKKdoIyGNAFSBqZPeh+0S4K87SpCVMX775A1smTpg6AiAYHNqmompRcTMuGEQwoDHrljGvkkBFZM0BYCau4uUuIg=="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache-2.0.5.tgz_1500104058063_0.3938245694153011"},"directories":{}},"2.1.0":{"name":"ionic-cache","version":"2.1.0","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","files":["dist"],"scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rm -rf dist aot && ngc","lint":"tslint \"src/**/*.ts\"","prepublish":"npm run lint && npm run build"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^4.1.3","@angular/compiler":"^4.1.3","@angular/compiler-cli":"^4.1.3","@angular/core":"^4.1.3","@angular/http":"^4.1.3","@angular/platform-browser":"^4.1.3","@angular/platform-browser-dynamic":"^4.1.3","@ionic/storage":"^2.0.1","@types/jasmine":"^2.5.47","@types/node":"^7.0.18","@types/websql":"0.0.27","jasmine-core":"^2.6.1","karma":"^1.6.0","karma-chrome-launcher":"^2.1.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.0","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^3.0.3","karma-typescript-angular2-transform":"^1.0.0","karma-typescript-es6-transform":"^1.0.0","rxjs":"^5.4.0","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.8","typescript":"^2.3.4","zone.js":"^0.8.11"},"peerDependencies":{"@ionic/storage":"^2.0.1"},"gitHead":"bde01dc1dc6fd90876b4214a1ba520e379f74b41","_id":"ionic-cache@2.1.0","_npmVersion":"5.6.0","_nodeVersion":"9.5.0","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"integrity":"sha512-IeqUYpYbBjOQBAVSrZT83BqAE5S6+wggaZpw44TvCVz3fDVfexEwmYO38VWunp00ya1tcMDDQEpCOkB/l4ENFw==","shasum":"1165ca0b988bf38908c0b8dddaee22aae4908d89","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-2.1.0.tgz","fileCount":15,"unpackedSize":62375,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDRegV++SEiyzABNR409uN2zqSwraNeCYO/i97fJNm28gIgEE6lbRlD05EjtDtY/DITVX41p8r2IVqxwo4OiKXNwpw="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache_2.1.0_1520327981270_0.8856555909686088"},"_hasShrinkwrap":false},"3.0.0":{"name":"ionic-cache","version":"3.0.0","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","files":["dist"],"scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rimraf dist && ngc","lint":"tslint \"src/**/*.ts\"","prepublishOnly":"npm run lint && npm run build"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@ionic/storage":"^2.1.3","@types/jasmine":"^2.5.47","@types/node":"^7.0.18","@types/websql":"0.0.27","jasmine-core":"^2.6.1","karma":"^1.6.0","karma-chrome-launcher":"^2.1.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.0","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^3.0.12","karma-typescript-angular2-transform":"^1.0.2","karma-typescript-es6-transform":"^1.0.4","rimraf":"^2.6.2","rxjs":"^5.5.0","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.8","typescript":"~2.6.0","zone.js":"^0.8.11"},"peerDependencies":{"@ionic/storage":"^2.1.3"},"gitHead":"3f9f280ba643928b24870d89576bdcc81523c7e8","_id":"ionic-cache@3.0.0","_npmVersion":"5.6.0","_nodeVersion":"9.7.1","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"integrity":"sha512-vFptfJSpD/K3SzIxR9p4G2Nsn2pYTFRvRKB9yl3jXO24BeNYzsXN/9e2WSYQhveSSCkFWEPwGpjbE9bqp2g3dg==","shasum":"2623f62b97b77c5186751a62455213270459ec85","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-3.0.0.tgz","fileCount":15,"unpackedSize":66708,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCsc216CxH74/z7YO0kvfVZ1KCM/2dHS8qbHyBskYhQ8gIhAP0UsvLuz4zVeB/qBDPeXU7EKYE4l0lk5GNiLCsvrV62"}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache_3.0.0_1520332172031_0.9262960752281655"},"_hasShrinkwrap":false},"3.0.1":{"name":"ionic-cache","version":"3.0.1","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","files":["dist"],"scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rimraf dist && ngc","lint":"tslint \"src/**/*.ts\"","prepublishOnly":"npm run lint && npm run build"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@ionic/storage":"^2.1.3","@types/jasmine":"^2.5.47","@types/node":"^7.0.18","@types/websql":"0.0.27","jasmine-core":"^2.6.1","karma":"^1.6.0","karma-chrome-launcher":"^2.1.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.0","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^3.0.12","karma-typescript-angular2-transform":"^1.0.2","karma-typescript-es6-transform":"^1.0.4","rimraf":"^2.6.2","rxjs":"^5.5.0","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.8","typescript":"~2.6.0","zone.js":"^0.8.11"},"peerDependencies":{"@ionic/storage":"^2.1.3"},"gitHead":"dea7fdda47a185d29a747385738a40e10c728e41","_id":"ionic-cache@3.0.1","_npmVersion":"5.6.0","_nodeVersion":"9.7.1","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"integrity":"sha512-37RWAvL1GSmbzo3GGhr1QIHZWUO1GNgP/Rq5Md1O3mp9c8nT+wddcoJXKGv+E7U3h0DTLTG34lScalG896cx3A==","shasum":"71dc96ddf282ff16a8c4328fcbcd33139c4046c0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-3.0.1.tgz","fileCount":15,"unpackedSize":66574,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG0Xj/8YUkKYRH5ahlZk45c8QIOv2EJgx1uOwW8vpgjCAiEAxQzVTxDLcQw67mUQaQo1IFepc10jDQq3aq/WOTAC3Gk="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache_3.0.1_1520335025772_0.9946438319734832"},"_hasShrinkwrap":false},"3.1.0":{"name":"ionic-cache","version":"3.1.0","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","files":["dist"],"scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rimraf dist && ngc","lint":"tslint \"src/**/*.ts\"","prepublishOnly":"npm run lint && npm run build"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@ionic/storage":"^2.1.3","@types/jasmine":"^2.5.47","@types/node":"^7.0.18","@types/websql":"0.0.27","jasmine-core":"^2.6.1","karma":"^1.6.0","karma-chrome-launcher":"^2.1.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.0","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^3.0.12","karma-typescript-angular2-transform":"^1.0.2","karma-typescript-es6-transform":"^1.0.4","rimraf":"^2.6.2","rxjs":"^5.5.0","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.8","typescript":"~2.6.0","zone.js":"^0.8.11"},"peerDependencies":{"@ionic/storage":"^2.1.3"},"browser":{"@angular/common/http":false},"gitHead":"5108969835d30f2d34e2b246b18ac99fd5c5a281","_id":"ionic-cache@3.1.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"anonymous","email":"briarbear7@gmail.com"},"dist":{"integrity":"sha512-/sSc+XvDJiNFZsgFF911NT69xArUufHPC6cW1ePHrV5k+rhW3O0RKibL+q1bpFck173CECdUFyh7IijCigvL3A==","shasum":"529301adaf631883bffee3645bd742fe296b8ee4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-3.1.0.tgz","fileCount":19,"unpackedSize":90292,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+yyVCRA9TVsSAnZWagAAyEcP/ieGhEf015voHnn7tMIB\nylcNvpiGVa0/GG+c/rERVvt4qEKSWOMCCaaObLMBZBE62/OD+FeJMWPcM2uc\n1S2yDClu1qpmlrBUOvEE4habYjxXsnktBUqO8NkZV86PaUrS9Jv4H4dbILE2\nX1kELejgTEhHaouYTuvjLQ0UmWAqDMzlI7uk1C8Bh4Hh9X5bH23sKl2XGfsT\n6LIjAc1wNlJl+u2PdCVWlRUAE4vQx4QljdSBBDLw1C7kVUvwLP9y4ulT0bLX\nOfkdpSGy0vnOvEWolb11JKSFLk6hZBx0FHPiq91fdkLzEAPD0Y/T5soqqn75\nCvFLwRfaHgPnj+ykencJawlmHV1nWy5UN+3FVAvFut0ZZ8ET8g9GFIOeJzzG\n9Iak34JrfbdWiaAiR6RP3fkNCqQkjpnrbmh+AMHgeb/+qQZ998xK93yQccZu\nQ1yJlbbAZlxqw17Ljer+WUJkFxnODoil+v7lBzwQssct2HMofPnTZZeYfL0C\nxtOHALdiKNQUzIwSd2bRUun7W2/183aMFCfPcov945MgebW9J5Lky9P7+3wT\nhV8ErTIW4+FxtgF5IZu4Pzd8TQhpFhmsB6FfSoGKPvfMYhGfmO/bQbF0DPL6\npAaeK06XXIOPPJWoJJLLr+PjTWGDvbVRPXVopeOwbRFufogFz83ZSoagS/uF\nQZYI\r\n=c948\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDSmAa8ut2TfamI0fh5PUvmRTbLSb3F1/WZlH+vYuWIfAiEAz7kSokJbe4ok1yggo7yNpJSyYY7YkS14eA1WfZjiU3A="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache_3.1.0_1526410387295_0.46921858795952565"},"_hasShrinkwrap":false},"3.1.1":{"name":"ionic-cache","version":"3.1.1","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","files":["dist"],"scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rimraf dist && ngc","lint":"tslint \"src/**/*.ts\"","prepublishOnly":"npm run lint && npm run build"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@ionic/storage":"^2.1.3","@types/jasmine":"^2.5.47","@types/node":"^7.0.18","@types/websql":"0.0.27","jasmine-core":"^2.6.1","karma":"^1.6.0","karma-chrome-launcher":"^2.1.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.0","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^3.0.12","karma-typescript-angular2-transform":"^1.0.2","karma-typescript-es6-transform":"^1.0.4","rimraf":"^2.6.2","rxjs":"^5.5.0","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.8","typescript":"~2.6.0","zone.js":"^0.8.11"},"peerDependencies":{"@ionic/storage":"^2.1.3"},"browser":{"@angular/common/http":false},"gitHead":"c334c2463798ecf61cbd4f69499b7851e143cf02","_id":"ionic-cache@3.1.1","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"anonymous","email":"briarbear7@gmail.com"},"dist":{"integrity":"sha512-Etju7yBI6aXzYcfCkfNX0lHwVLzSco04jUfvVwakp3sAg7uJwsmtVvUn/Th3fxmJTn6MMyLsW43e5DDLhkj/IQ==","shasum":"95fc207ac54383a4f0c136c122237a55d23e6b0d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-3.1.1.tgz","fileCount":19,"unpackedSize":91251,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAysCCRA9TVsSAnZWagAAM2IP+wdcXhGQxwzP6udL9dvb\nR3T+xvXZRkTZL//ffsOpeTSup5CaVchP8M7Bj/vZCw4KeoUrVu+3pbIc9K7P\n6jRH8siWlLH+ZyUkx48e9fPlHwbhi/z7QW2SGqbnJRYX8Pe3aJpAhjvuSCMU\naHhGBgETT1rNwZ21AoinoPx5dA9a1ayX/h/82tmO6YHeZiIR5mRyfbs6j+PP\n0rMOy/zJdffQQ7qgK3yvBGH4KaZNfB+5m4Ifhd4QpVRxEusf2k6inqFTh/NP\ny4CExtOWkzS7mxj86V6bkk/QO2qkrN+T/DVJhxdZfFlot4DHX7ZP7jMRgdc3\ngekcBs2ZlMk4lpKs2HUi04CWmdHq0O/JuUT/0FSrsTLPplcoND8PY3Lgb6rT\ntu55g3udaE1zGTpkDry0hdD5oO+WrgbWdZAh0pYnKXPs+qv3XV4np0JyDymH\nlDB75cvSrCkgujy2q3EXkzVruBrAP13Si1OzrskLPBpne2j/bTS1T4P0Nuaf\nQV82rFlaP3Fw+yiKSLa4XZPxJdojzkAHav54cveEtASxUYYUuHShe+th5HlR\notUFt7wPNqHkIuxXa2Y9zfVvF7UWsKBG6Tjm7ODRi9+A5mD79XplbU6XkP6U\ncaVTyftyw251EfYDLjDTP4tj/d5Gpdp4jQC/XOct7+P3tgF4VPsiFfP9NjkD\n+ap2\r\n=h7E6\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDWldG9gxv2w6uWu8IPmr4YqWMaldCgD/Z223yf+vJrsAiEAiRSa2EAvzk0imFopuUBP47GnTTKwT07sxwUdEtQ+IOk="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache_3.1.1_1526934273045_0.47163702548135666"},"_hasShrinkwrap":false},"3.1.2":{"name":"ionic-cache","version":"3.1.2","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","files":["dist"],"scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rimraf dist && ngc","lint":"tslint \"src/**/*.ts\"","prepublishOnly":"npm run lint && npm run build"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@ionic/storage":"^2.1.3","@types/jasmine":"^2.5.47","@types/node":"^7.0.18","@types/websql":"0.0.27","jasmine-core":"^2.6.1","karma":"^1.6.0","karma-chrome-launcher":"^2.1.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.0","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^3.0.12","karma-typescript-angular2-transform":"^1.0.2","karma-typescript-es6-transform":"^1.0.4","rimraf":"^2.6.2","rxjs":"^5.5.0","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.8","typescript":"~2.6.0","zone.js":"^0.8.11"},"peerDependencies":{"@ionic/storage":"^2.1.3"},"browser":{"@angular/common/http":false},"gitHead":"0d1fde5c9d84a53733be4486d9da2cd2eefc4c92","_id":"ionic-cache@3.1.2","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"anonymous","email":"briarbear7@gmail.com"},"dist":{"integrity":"sha512-/LSrvQDJS7OhuquoA4RBLZQprd6MWVinCJUzr961eZgXWc8ks3HM4M8k9WKBigJLkAqEeDYhslJcFM/7IEqZXQ==","shasum":"f8b0d59dbb28fc5d903214bc72d7202d490c438e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-3.1.2.tgz","fileCount":19,"unpackedSize":91450,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbJ8XaCRA9TVsSAnZWagAARvwP/R2Ur+f9yidjZZHQTiom\nxuehdg/CiP5s2vWxV/Vb6BecdBWOaY65RA/2gKb2Y0dBtQLrtXAgnNtuvuEg\nRCOHto6fh772QU3Zvf+OCsA8ho9urkP/2EndtM0+uV2EMLc/Z8DXThbkelhu\nAEPnpxqroStzhs9d5+E2GR5oY+kM1uJgZK7Jyt+9/gFcMzMhUB4rqx8ffmtk\noBDe5WcsLR2ZIkWyb9ReSKjBjjPm9YIAC7PD7IcU9jL8v3d12nrBIjHjYmul\n4084tvoG7ryiS317PYechaZ0oFojXE0eocIK2fJkieRjGfz6sqQOBARd78Uh\n8SaN4Sit6AINd1X0pn56xIEU67btZtCOyjLp7HLunGWuaYxD1C18pjAXCwiz\nymD9Aw1TC0IObLy+5LH084LhYHFwMoEWgIjO3WU7VQ3FgbJuSuQqWyBCL2h0\nBOERgCxv6u6VteUGONUzQDMwtn8VMo8soEWXFxGq4GbkgfvusnIeSKTg5hTm\nSiCqi2x06B2XUmDeVSuGlfbM5vEnEckEUSIHsdRJJTv1EZiIGBZ6RNqkHAaA\np2FYVM79qmtzG3QTv13rP2TPlwWYuPdTL/9qcV3Yct5h0iRHFfil+MfsAdE3\nKRzylqLjfB8C3kxn6XB9R/DrnskSKjZT7jAsKZSD7JdWRHBkTdTRMskcZfDM\nnaiF\r\n=4pg6\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAg+aT9tglOmXvuVs1mqJIPuKeX2KIp2BUecEDmPzPCaAiEAtw9O4UNkwgDLYdk4N7L3ggaWTJ3Khe+eXQnPog/XJxk="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache_3.1.2_1529333167534_0.6074934768397582"},"_hasShrinkwrap":false},"3.1.3":{"name":"ionic-cache","version":"3.1.3","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rimraf dist && ngc","lint":"tslint \"src/**/*.ts\"","prepublishOnly":"npm run lint && npm run build"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^5.0.0","@angular/compiler":"^5.0.0","@angular/compiler-cli":"^5.0.0","@angular/core":"^5.0.0","@angular/forms":"^5.0.0","@angular/http":"^5.0.0","@angular/platform-browser":"^5.0.0","@angular/platform-browser-dynamic":"^5.0.0","@ionic/storage":"^2.1.3","@types/jasmine":"^2.5.47","@types/node":"^7.0.18","@types/websql":"0.0.27","jasmine-core":"^2.6.1","karma":"^1.6.0","karma-chrome-launcher":"^2.1.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.0","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^3.0.12","karma-typescript-angular2-transform":"^1.0.2","karma-typescript-es6-transform":"^1.0.4","rimraf":"^2.6.2","rxjs":"^5.5.0","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.8","typescript":"~2.6.0","zone.js":"^0.8.11"},"peerDependencies":{"@ionic/storage":"^2.1.3"},"browser":{"@angular/common/http":false},"gitHead":"2f619a06f1b8aca482bb1972731228dad8935753","_id":"ionic-cache@3.1.3","_npmVersion":"6.4.1","_nodeVersion":"8.8.1","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"integrity":"sha512-PbFbOqeisVFwou6U8tD6C2JZfWLGZ8XC9zW+Qe1LS5ArSvDet2+LFUrWptVxZe3Yar2fTF80ZvYd87NQ3nHFmg==","shasum":"c42790db6502f71122023ebbeb940024e84006fe","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-3.1.3.tgz","fileCount":19,"unpackedSize":91577,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkRAVCRA9TVsSAnZWagAAvVkQAJEYNV4KJ1uZm6o6ov2f\nHzC0uibZdPeHqF5ptL6K15+nfqT3skWHAzOWkqPAsq7VtKkxu97XMYc+HeAt\ng3LTXf3v1NqMXkUqtuV3BXJ8N2jNFaNbuT4mkrHE1VkiD9Wh3nWsEU5kxcgf\nzQxgjgqhL/OsyWyTid9/PYgA2fVz3MZKxFNPD695lEQrLvvsPHMRW4AJtrMU\nXEsBZu9zHB/e2z8fbdyz+41fIHy7c06Ybe8Sz46R+h17gr7v2wMhbI2Nskoj\nv/rVpP4SqG+TT0qLu+cQDzSnV15dRYs7OwO0wGFbRpHkIudfG+9cF7CFD87I\npIlQEYPyqLryyRO8IyYFMFs06gkzr8xwugTcIgGIqxiADctXCaK2LfQSJZwk\nM/uwC8juz2i/Kt+4GMHCo7wLLWnKrssislmBAzQMsv2Y4alz3qp4OtAzQ+7Y\nVZVZGaj//jD/P6/bhFc5juY8UDcR2pwyeezveZ4C6eKaHYVxhNm5QISGxDl8\ncobeBAe1TE8owdPBHAzZ8rtoUZ8CB2a813EEmBfD7MQj5VU8E9oSf3R/HbXy\npN8jtx2hwBu6QLXlweiUMMfS1caiKjB72T/YaWmaeaDwlRc23cpMMOxjn36D\nBvb1+HISo0fIcXQKl8qQ+qAIkGIUQW/amLtrPeJpyxsA2sNuvKauLtwzKZw4\nwR7D\r\n=3/c2\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEy1RWqc2JTDuzhPnefpXhFANJxPT8V8Kz9Ac5NHR8K+AiEAoPegcXvW8Mh9aw7J9Is3PcY8TqPYdGLAT75hDa/Q7wc="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache_3.1.3_1536233492551_0.0768971041525568"},"_hasShrinkwrap":false},"4.0.0":{"name":"ionic-cache","version":"4.0.0","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rimraf dist && ngc","lint":"tslint \"src/**/*.ts\"","prepublishOnly":"npm run lint && npm run build","prepare":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^6.0.0","@angular/compiler":"^6.0.0","@angular/compiler-cli":"^6.0.0","@angular/core":"^6.0.0","@angular/forms":"^6.0.0","@angular/http":"^6.0.0","@angular/platform-browser":"^6.0.0","@angular/platform-browser-dynamic":"^6.0.0","@ionic/storage":"^2.1.3","@types/jasmine":"^2.5.47","@types/node":"^7.0.18","@types/websql":"0.0.27","jasmine-core":"^2.6.1","karma":"^1.6.0","karma-chrome-launcher":"^2.1.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.0","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^3.0.12","karma-typescript-angular2-transform":"^1.0.2","karma-typescript-es6-transform":"^1.0.4","rimraf":"^2.6.2","rxjs":"6.2.2","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.8","typescript":"~2.7.2","zone.js":"^0.8.11"},"peerDependencies":{"@ionic/storage":"^2.1.3"},"browser":{"@angular/common/http":false},"gitHead":"3816f98835dcbca308d30c6653a1104c433f96d9","_id":"ionic-cache@4.0.0","_npmVersion":"6.5.0","_nodeVersion":"11.6.0","_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"dist":{"integrity":"sha512-l9n3dQ6mzX8N1S5gg9IDxUiqy58gE1eWIqltq/g/Z4EqqwOsaJ8V9Xgqd7fc/FH4A9DgIx80h/Vo10pzzm9CUA==","shasum":"80bc67926f0cf29c16ffada0571c359475967b76","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-4.0.0.tgz","fileCount":19,"unpackedSize":84870,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZ/qQCRA9TVsSAnZWagAA3TAP/3wDxSsqLMwswokw2WHs\nPBszexTKXaenyLEPf+Ov5YZZMvV1dbliU20seg2E1O4dtr5C8yLUGCEAFTaQ\n2TzvaS75bynEBeeAfqjIlyaa+5Q0+aZldzPCvBgJq8DWieXOkPQka+xjXbWy\nPdgJA/9ZqJxDAgIVQMIVMbEfUaOdF5f1qFXtFMdeQb1grGq2OioE/br+5huh\nE7LUitCmRxhszKfzh7Ckgdsp6VE7C5e2lYlW4trQ1Cm6GmSfGEIV2at8Ba+8\n/nkFkPzrFEkSKEfi37YwSOBGKNlQ0WznXh6+7fFJxkAjTHHYOgDc6NAsoXAU\nBnDCVdQzSBKFT98kuMDHuq28mCeTtXVF6GTT9LH8BWZZSx3tzLyGdxIkR5Ru\nhGvgbeiVq+65xIR2z9w1NH4vpOxri7YZMnJ0DP/KkbTsZ/YFLTcZGrP/C8a/\n0bzwiKTAt9wn6Zv5H4RWssYBL25g5/olnCmDYTdnGbeFtKL9Bhl2W4d3wQHf\nBHKNT6NkZaXUZlihL/Y+uIn5E1FLIW0uyhQAVCKY5U63tmLdQE9kdBpkj9yQ\nEFW0BjMXVlaG1SZslY01PsVeN6Pe0+ioR67LA9B79+JsU/4WpKpJeFP7pr+P\nSjAl8eVjd3+9i+El0AgvC3HshXCaMB+Dzt1kQrOEw/ofxbcsIe52FLfr0svq\n3oag\r\n=daDl\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFbEVm6/wM5rQaiAanQhGEtKOK3rJFweVlmL4VW8lKYqAiEArYBB+UluhmFgLwc/nBFKol7+y9Mjz4qKUux2lm266hA="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache_4.0.0_1550318223510_0.19874051630135714"},"_hasShrinkwrap":false},"4.0.1":{"name":"ionic-cache","version":"4.0.1","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rimraf dist && ngc","lint":"tslint \"src/**/*.ts\"","prepublishOnly":"npm run lint && npm run build","prepare":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^6.0.0","@angular/compiler":"^6.0.0","@angular/compiler-cli":"^6.0.0","@angular/core":"^6.0.0","@angular/forms":"^6.0.0","@angular/http":"^6.0.0","@angular/platform-browser":"^6.0.0","@angular/platform-browser-dynamic":"^6.0.0","@ionic/storage":"^2.1.3","@types/jasmine":"^2.5.47","@types/node":"^7.0.18","@types/websql":"0.0.27","jasmine-core":"^2.6.1","karma":"^1.6.0","karma-chrome-launcher":"^2.1.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.0","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^3.0.12","karma-typescript-angular2-transform":"^1.0.2","karma-typescript-es6-transform":"^1.0.4","rimraf":"^2.6.2","rxjs":"6.2.2","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.8","typescript":"~2.7.2","zone.js":"^0.8.11"},"peerDependencies":{"@ionic/storage":"^2.1.3"},"browser":{"@angular/common/http":false},"gitHead":"c2e33290f224a2741e0dfb3411a4fa098a7d3d50","_id":"ionic-cache@4.0.1","_nodeVersion":"11.6.0","_npmVersion":"6.8.0","dist":{"integrity":"sha512-X7ekRjgaRyxhrspwJSzua4I8enMv6d8y8QQExqG5X2ZMj/ICh/Z7uQfNP2xEfQ+/QgSLrMuevbHkBOnT9G622g==","shasum":"1c1fc2e9c3d93e5f07d29f2f21cc4cdb90ca8006","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-4.0.1.tgz","fileCount":19,"unpackedSize":84893,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJceQ7zCRA9TVsSAnZWagAA9pAP/RbpkkrAPNYEKF8rphEH\nKsOumVC01t04gMa43cxMfhVa0mOXwkrB2M3rZci7bPdRGQauXX6OkS2FCFed\nxZ0h1wQMUSdZG5NYU31uRrBdhHyYfNQotqZHEGW+du00U5RMDwvCW9dZQygV\neQXz9a4dIMAnoWhbG/1Z2lKjIRqAQ15jExn4si1KnmjyNzf6vtK+PfQBLaly\nEHnIJ/HqUSZFmGj4t04viLMbv3AkMsIuZaLV6bCQ+M9LysaAeY6moA0Uz5uO\nF8VkDgWo7/wFoqJNXsfUHD9HrgwyliRJj8D9hiieSl+0+ZUUu1j0JDcU7Hsm\n+RQy19fkPa1/AocLHoiULRhssuuoQl2L+kcS9RJMjXWXTHq1NYRECNCntRL2\n8EzX/Pra/XexsdAZFjhFoaCVswpsmrlY2nX80n2lUhAf0siOoAoiFX/2CrSQ\nQw+uZ0U2gKXGE0KfkYWvnCIsHJz/T47qozEaFUICl3md+ycukKZdAysTOwIV\nkV7/iYTQm+xq/AulNJoqF4nr5TuW30S4NdQPUEMfxE/qLIriPGercw2gqXlD\nlrY44CewFnz4exTHOtYMbVTdhkdIPLWM+D1kZ+P+i3QhBMIjyU8exzjpGv01\nojw5sx7ziee41PLkys+kKvcmqAn6/Dh4mD2mPrFiwmdVYmRyRS7AuoGT7ZJp\nlMtp\r\n=RUzO\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCJw0TQKqaFrl1Rw5gDolsP9At+S5pz/m3H0/+GeZYHpwIhANYFPOBq1YTJNbosTKVDr9+w0dzMYoH9tf4k+mev7+4k"}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache_4.0.1_1551437554224_0.18034320065405351"},"_hasShrinkwrap":false},"4.1.0":{"name":"ionic-cache","version":"4.1.0","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rimraf dist && ngc","lint":"tslint \"src/**/*.ts\"","prepublishOnly":"npm run lint && npm run build","prepare":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^6.0.0","@angular/compiler":"^6.0.0","@angular/compiler-cli":"^6.0.0","@angular/core":"^6.0.0","@angular/forms":"^6.0.0","@angular/http":"^6.0.0","@angular/platform-browser":"^6.0.0","@angular/platform-browser-dynamic":"^6.0.0","@ionic/storage":"^2.1.3","@types/jasmine":"^2.5.47","@types/node":"^7.0.18","@types/websql":"0.0.27","jasmine-core":"^2.6.1","karma":"^1.6.0","karma-chrome-launcher":"^2.1.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.0","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^3.0.12","karma-typescript-angular2-transform":"^1.0.2","karma-typescript-es6-transform":"^1.0.4","rimraf":"^2.6.2","rxjs":"6.2.2","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.8","typescript":"~2.7.2","zone.js":"^0.8.11"},"peerDependencies":{"@ionic/storage":"^2.1.3"},"gitHead":"3422a38708228d2626c77363f2d806a91c537f65","_id":"ionic-cache@4.1.0","_nodeVersion":"12.9.0","_npmVersion":"6.10.3","dist":{"integrity":"sha512-0/jsoY7nYleFYkG+/YVJ6zK3r0oPQSYHV+zOWwtoU/yO+W77gFqkyEjkBvkhTcQaHeyzynlEo7G6zUnKEcnVfw==","shasum":"20ff3ec993d728905d7d1cf0b9f95e5120634607","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-4.1.0.tgz","fileCount":19,"unpackedSize":80198,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZTEyCRA9TVsSAnZWagAAgeYQAJQ2ocnIbtCMXZx5f8t7\n86UCgxmHqvhY2nRz7OP/i5Fv6SrMOhi+WX8qTME8m/Jdge0INPf/pxQDnbAc\n8C+4THGMg7xHYt1n0kx5flP6lFxF2F6T/XZyHZnG/A9XMgCvM3wFVDr5vX+H\nsPIW+TA/OOAb2reTAf+cOm5KABOJFfefwkiYHLrv2cpA/n6xgB7fU4Q/1plk\n6q4aiZM+WJG3uHmLVNfl1yBHQEqDUL3QLsIT8dzmtPf5fb1imeecuM7eyHLb\n/xu1U5FpXJwvVGdPDyFQRurz1bWbfhuTJthT3pSA9hujUcI+q2XGTO6LuOan\nFKd8pD9MfW886qr1ZFlVmNK3AXwB1O+cvQIspFxF5z1xvlZ8S9NA64Z6rBi7\nfOeXXGuD/qeyhanZMgpEhVfT9mWFNFZMcnaOPmA4cQbToL6FHqMxyT0DliF/\n8OJJZrxz71oaihFBCWm5Rtvw1Aup5TMalhppTvCiuQwqVi6KzmNrmqJxfwgQ\nBEAcRYUJD1DvY7nrG0WRhMlHONfVsATVIlAw0VM2jJKZFuYfHdN6i7uupc0d\n8fEkOcNyTEPRi4DpTrX9D7LhY0yQN1N0LCRzIArpd/1Te16ja8xwVzL0Tiul\nXjgiCDCymolVWGvOFXThwFwYOcAGOy1d+4ew7fpVCFD2cQMXxV0kme7g6O12\nDdgr\r\n=mekm\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH/VOKwVAh/WkLMeiRmVOW1Ps7ySw8VsA9X0359wwqvyAiBSNvaJmgPeqzqbHLxXFSTgihrxEVVb8+/bh6jCUvQr0Q=="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache_4.1.0_1566912817613_0.5306622144245996"},"_hasShrinkwrap":false},"5.1.0":{"name":"ionic-cache","version":"5.1.0","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rimraf dist && ngc","lint":"tslint \"src/**/*.ts\"","prepublishOnly":"npm run lint && npm run build","prepare":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^6.0.0","@angular/compiler":"^6.0.0","@angular/compiler-cli":"^6.0.0","@angular/core":"^6.0.0","@angular/forms":"^6.0.0","@angular/http":"^6.0.0","@angular/platform-browser":"^6.0.0","@angular/platform-browser-dynamic":"^6.0.0","@ionic/storage":"^2.2.0","@types/jasmine":"^2.8.16","@types/node":"^7.10.9","@types/websql":"0.0.27","jasmine-core":"^2.99.1","karma":"^4.4.1","karma-chrome-launcher":"^2.2.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.2","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^4.1.1","karma-typescript-angular2-transform":"^4.1.1","karma-typescript-es6-transform":"^4.1.1","rimraf":"^2.7.1","rxjs":"6.2.2","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.8","typescript":"^2.8.4","zone.js":"^0.8.29"},"peerDependencies":{"@ionic/storage":"^2.1.3"},"gitHead":"2c72fa468a1beac29e035306383b34adf6e8221a","_id":"ionic-cache@5.1.0","_nodeVersion":"13.5.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-MlClLJoN5ebK0g+knd+geNHkPpYBrMc9sfl26JzJPzysU1uyVsV0f3vFsDnAC2GflkCXypU0sqcAZ3FAO49Pbw==","shasum":"91043c3dd910898cab65b508870118561605b00c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-5.1.0.tgz","fileCount":19,"unpackedSize":92031,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeelc3CRA9TVsSAnZWagAAxr8QAJdTgH5BpsUuN33p4xMh\nN0SeEbfAPP11wJd1Aqn3N19/zUjkIDhXBKs8BPtpeyuSx65oVKC6vC1M9sR9\nNfn7zK/yueBgboakAqmNd9+hGRoxnvaxM6JdQ61FdGyvQW84+dIsg4xAAHXg\nwBZZcu0yJ9VstqXXqmk6xz6LpyEVCGcF4ed7Ca6rd4z8jHQVKn7dFKeK6SnT\nRiqj90SkmVOR0m5CUzwCHIKTRMER5Gq3BPpjkhiRiLrGCPnvZY50vqONevcr\nYoeS0SY/hEOMdqge8RQPSvigNEF+MC0Xmwsa9YTM25W+hVir4eBHEmTnT46V\nGX63SUMzb/frPH/gATjHAX13unI8ocDkeWWEJfwCpaX3BJyJXEt/1voFr+dM\naEqcE40aW09V05AYuaMN1eXEfDAZAGq0ePopjH4doj2MqLgTmWx33SzEy0ru\nn1IqkWQbiwtlYIbXMkeai6lizoUGKso5tmEk9p+hE9+cHv588cOOmtgCWp/5\n8QOdr0/4od+Mdtgg311nhUGSJGHuQAc5L0pgOHpyreDVhZ65hHBLpZLOc9o/\nFl/aQ7VAdR/MCVyRHyUfWF9fZoyl8t+4Q4ZdjJIVrwibV1TMZjffNV22dY51\nNfWO3o693XyUWhJ3zn1aemC9CK1+yw8ApeLrY+EPNOUbDJ8wDrDDr23xvL7j\naMEK\r\n=Oqzo\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDRHsvW6FbkHWquDCBt65ASGOMoHEK5rQjQZgEIEquUZwIhAK0mNiAnBgI0VwuCwUqrn09fzHxUMRtv/VHPL5rcBXN3"}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache_5.1.0_1585076022730_0.5643352964177384"},"_hasShrinkwrap":false},"5.2.0":{"name":"ionic-cache","version":"5.2.0","description":"Ionic cache service - cache request, data, promises etc.","main":"dist/index.js","typings":"dist/index.d.ts","module":"dist/index.js","scripts":{"test":"karma start karma.conf.js --single-run","test:watch":"karma start karma.conf.js","build":"rimraf dist && ngc","lint":"tslint \"src/**/*.ts\"","prepublishOnly":"npm run lint && npm run build","prepare":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","ionic","cache","angular2"],"author":{"name":"Daniel Suchy"},"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","devDependencies":{"@angular/common":"^6.0.0","@angular/compiler":"^6.0.0","@angular/compiler-cli":"^6.0.0","@angular/core":"^6.0.0","@angular/forms":"^6.0.0","@angular/http":"^6.0.0","@angular/platform-browser":"^6.0.0","@angular/platform-browser-dynamic":"^6.0.0","@ionic/storage":"^2.2.0","@types/jasmine":"^2.8.16","@types/node":"^7.10.9","@types/websql":"0.0.27","jasmine-core":"^2.99.1","karma":"^4.4.1","karma-chrome-launcher":"^2.2.0","karma-cli":"^1.0.1","karma-jasmine":"^1.1.2","karma-phantomjs-launcher":"^1.0.4","karma-typescript":"^4.1.1","karma-typescript-angular2-transform":"^4.1.1","karma-typescript-es6-transform":"^4.1.1","rimraf":"^2.7.1","rxjs":"6.2.2","tslint":"^3.15.1","tslint-ionic-rules":"^0.0.8","typescript":"^2.8.4","zone.js":"^0.8.29"},"peerDependencies":{"@ionic/storage":"^2.1.3"},"gitHead":"37bb0b657054a40ae14bd47c4b0f31a3b8a1cec1","_id":"ionic-cache@5.2.0","_nodeVersion":"13.5.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-rhChfCUjyyXQGD6HAZ4A6zqVkBs9yTUwR6cU7d51kjX74Kbd7Gb09RLDR1xR3UGZ4MVUi/l2UTiO5GJpnHd3BQ==","shasum":"a5280bdf0004d069535b8c99a15ca8eb4d3202bb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-5.2.0.tgz","fileCount":19,"unpackedSize":88113,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJefdsACRA9TVsSAnZWagAA7NgP/iMB+/7dsZHW8fn/acPo\nKoOiFBTz8ei+vA3HnF+slMibtI9OSLLyS6kJgCtBCUNo6RGgEIOM7LTD+6zn\nC6nL+4MCdCCNT35lx57bcjqaOwRyB5EVmp/hyJ4R1OBwy0C+9mbuy3L1EW8c\n9Wuqrxv8yKqQV4X1IM1BoU8AHQE8IwkHuq9dQME63Tw3dsLAx0BkgarRbe4u\n/X9vYmkBaOYmobU03QtlVb4GRI8TAfspqPDSrIJzEXnmJCFXLRYbtaMPrw78\n2O7ulA3X2WWzl9An5fDi0o0uVUhyqW5byc1x9JlfyL/AQvtgUvUqNyYfOKVl\npZwt0yk3DIKoJiiu+aRMvkYW13m4NPeZRe67XzUQB4qQpScpAEqKS7rEKIJ4\nIH0KJc7yrDQj093GDMTezOK/KMozznaId0KXillx4l40D8Iris8QPIjjHSC+\nhwUD8xkKNVbjkQ7OvYv2KPabXn51093rTDJwqr4y+jGVBIT9xtzskhcZMfij\naF1L3/TToHBmOuuCfIF/gejeOadA33JmKBQrPvzI9rvRkySCnHnyjXI0g1qd\nQyDwiMYxQm9plaNNF4whIWGeQB9jCX9SOhENLa78jv4uMw+Qkr7D4FuoZrgm\ncsEf4vsq/GTdTPqPRMRZsUUvMfMz3EVXD/RYspQc886I1jSyjIuKZkmOWLIU\nYFmr\r\n=0ADl\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDpPefPV3p8qWIue1yJbcdrmWwYE23hT7KsFaysBJCt3wIgVLKkXkRDjQDS7ZR7Qo3IJRRB2334/PZrtTujkHxdJpw="}]},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"}],"_npmUser":{"name":"anonymous","email":"suchydan@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache_5.2.0_1585306367886_0.8498872630856342"},"_hasShrinkwrap":false},"6.0.0-next-1":{"name":"ionic-cache","version":"6.0.0-next-1","description":"Ionic cache service - cache request, data, promises etc.","peerDependencies":{"@angular/common":">=9.0.0","@angular/core":">=9.0.0","@ionic/storage-angular":">=3"},"dependencies":{"tslib":"^2.0.0"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","cache","ionic-cache","angular2"],"author":{"name":"Daniel Suchy"},"contributors":[{"name":"Will Poulson","email":"willpoulson44@gmail.com"}],"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","main":"bundles/ionic-cache.umd.js","module":"fesm2015/ionic-cache.js","es2015":"fesm2015/ionic-cache.js","esm2015":"esm2015/ionic-cache.js","fesm2015":"fesm2015/ionic-cache.js","typings":"ionic-cache.d.ts","sideEffects":false,"readme":"# Ionic cache service\n\nIonic cache service that can cache almost everything. **It caches requests, observables, promises and classic data.** It uses [Ionic Storage](https://ionicframework.com/docs/storage/) so we support IndexedDB, SQLite (Cordova), WebSQL in this order.\nIt can be used separatelety in Angular 2 application.\n\nKey features:\n\n-   Request caching\n-   Delayed observable caching (see docs for more info)\n-   Don't invalidate cache if is browser offline\n-   Set and invalidate groups of entries\n-   Supports IndexedDB, SQLite (Cordova), WebSQL via Ionic Storage\n\nPlease report all bugs to bug report or fix it and send pull request :)\n\n#### Big thanks to all contributors for help:\n\n-   Special thanks to [ihadeed](https://github.com/ihadeed)\n-   [imatefx](https://github.com/imatefx)\n-   [Vojta Tranta](https://github.com/vojtatranta)\n\n## Install\n\nVia NPM:\n\n```bash\nnpm install ionic-cache @ionic/storage-angular --save\n```\n\nor Yarn:\n\n```bash\nyarn add ionic-cache @ionic/storage-angular\n```\n\nYou can optionally add [Cordova SQLite](https://ionicframework.com/docs/native/sqlite/).\n\nAnd inject service to your app:\n\n_app.module.ts_\n\n```ts\nimport { CacheModule } from \"ionic-cache\";\n\n@NgModule({\n  ...\n  imports: [\n    CacheModule.forRoot()\n  ],\n})\n```\n\n_app.component.ts_\n\n```ts\nimport { CacheService } from \"ionic-cache\";\n\n@Component({\n    templateUrl: \"build/app.html\"\n})\nclass MyApp {\n    constructor(cache: CacheService) {\n        ...\n        cache.setDefaultTTL(60 * 60); //set default cache TTL for 1 hour\n        ....\n    }\n    ...\n}\n```\n\n## Usage\n\n### Config\n\nStarting with version 3.0.2, `CacheModule.forRoot()` optionally accepts a config object.\n\nThe config object currently accepts a `keyPrefix`, which is the the internal key prefix to use when storing items.\n\nFor backwards compatibility this defaults to `''`, but it's recommended to set this to a different value in order to prevent issues with `clearAll()`.\n\n```ts\n@NgModule({\n  ...\n  imports: [\n    CacheModule.forRoot({ keyPrefix: 'my-app-cache' })\n  ],\n})\n```\n\n### Observables\n\n#### Cache request\n\n```ts\n...\nimport { CacheService } from \"ionic-cache\";\n\n@Injectable()\nexport class SomeProvider {\n    constructor(private http: HttpClient, private cache: CacheService) {}\n\n    loadList() {\n        let url = \"http://ip.jsontest.com\";\n        let cacheKey = url;\n        let request = this.http.get(url);\n\n        return this.cache.loadFromObservable(cacheKey, request);\n    }\n    ...\n```\n\n#### Cache whole request response\n\nIf you need to cache the whole response, for example if you need to access the Headers, you can pass in an object with the observe key set to 'response', i.e. `{ observe: 'response' }`. Then you can use `.pipe(map(res => res.body))` to extract the response body.\n\n```ts\n...\nlet request = this.http.get(url, { observe: 'response' });\nreturn this.cache.loadFromObservable(cacheKey, request).pipe(map(res => res.body));\n...\n```\n\n#### Cache with custom Observable operators\n\n`loadFromObservable` accepts an Observable and returns an Observable, so you are free to use all of the Observable operators.\nFor example error handling (on error, retry request every 6 seconds if fails):\n\n```ts\n...\nlet request = this.http.get(url)\n.pipe(retryWhen(error => error.timer(6000)));\n\nreturn this.cache.loadFromObservable(cacheKey, request);\n...\n```\n\n#### Delayed observable caching\n\n`loadFromDelayedObservable` shows off the full power of observables.\nWhen you call this method and it will return the cached data (even if it's expired)\nand immediately send a request to the server and then return the new data.\n\n```ts\n...\n    let request = this.http.get(url);\n    let delayType = 'all'; // this indicates that it should send a new request to the server every time, you can also set it to 'none' which indicates that it should only send a new request when it's expired\n\n    let response = this.cache.loadFromDelayedObservable(cacheKey, request, groupKey, ttl, delayType);\n\n    response.subscribe(data => {\n        console.log(\"Data:\" data);\n    });\n\n    //result will look like this:\n    // Data: \"Hello world from cache\"\n    // Data: \"Hello world from server\"\n...\n```\n\n### Promises & Classic data\n\n#### Cache promises\n\n```ts\n...\nlet key = 'some-promise';\nlet data = await this.cache.getOrSetItem(key, () => somePromiseFunction());\nconsole.log(\"Saved data: \", data);\n...\n```\n\n#### Cache classic data (arrays, objects, strings, numbers etc.)\n\nSimilarly, you can use `getOrSetItem` or `getItem` with classic data.\n\n```ts\n...\nlet key = 'heavily-calculated-function';\n\nlet data = await this.cache.getOrSetItem(key, () => heavilyCalculatedFunction());\nconsole.log('Saved data: ', data);\n...\n```\n\nIf you need more control in the event that the item is expired or doesn't exist, you can use the `getItem` method with error handling.\n\n```ts\n...\nlet key = 'heavily-calculated-function';\n\nlet data = await this.cache.getItem(key)\n.catch(() => {\n    console.log(\"Oh no! My promise is expired or doesn't exist!\");\n\n    let result = heavilyCalculatedFunction();\n    return this.cache.saveItem(key, result);\n});\n\nconsole.log('Saved data: ', data);\n...\n```\n\n#### Removing cached items\n\nYou can also remove cached items by using the `removeItem` method.\n\n```ts\n...\nlet key = 'some-promise';\n\nthis.cache.removeItem(key);\n...\n```\n\n#### Removing multiple cached items\n\nYou can utilize the `removeItems` method to remove multiple items based on a wildcard pattern.\n\n```ts\n...\nawait Promise.all([\n    service.saveItem('movies/comedy/1', 'Scott Pilgrim vs. The World'),\n    service.saveItem('movies/comedy/2', 'The Princess Bride'),\n    service.saveItem('songs/metal/1', 'Who Bit the Moon'),\n    service.saveItem('songs/metal/2', 'Deception - Concealing Fate, Pt. 2'),\n]);\n\nthis.cache.removeItems('songs/metal/*');\n...\n```\n\n#### Cached promise existence\n\nIf you need to check whether or not an item has been cached, ignoring whether or not it's expired, you can use the `itemExists` method.\n\n```ts\n...\nlet key = 'some-promise';\n\nlet exists = await this.cache.itemExists(key); // returns either a boolean indicating whether it exists or not, or an error message\n...\n```\n\n#### Raw cached item\n\nIf you ever need to get a cached item regardless of whether it's expired or not, you can use the `getRawItem` method.\n\n```ts\n...\nlet key = 'some-promise';\n\nlet item = await this.cache.getRawItem(key);\n...\n```\n\nThere's also the `getRawItems` method, which returns an array of the raw cached items.\n\n```ts\n...\nlet rawItems = await this.cache.getRawItems();\nlet firstItem = rawItems[0]; //Has the properties: key, value, expires, type, groupKey\n...\n```\n\n### Other\n\n#### Cache entries grouping\n\nAt times you may need to clear certain groups of cached items.\nFor example, if you have an infinite scroll list with a lot of items and the user triggers a pull to refresh, you may want to delete all of the cached list items. To do this, you can supply a group key as the 3rd parameter of `loadFromObservable`.\n\n```ts\n...\nloadList(pageNumber) {\n    let url = \"http://google.com/?page=\" + pageNumber;\n    let cacheKey = url;\n    let groupKey = \"googleSearchPages\"\n\n    let request = this.http.get(url);\n    return this.cache.loadFromObservable(cacheKey, request, groupKey);\n}\n...\n```\n\nThen when pull to refresh is triggered, you can use the `clearGroup` method and pass in your group key.\n\n```ts\n...\npullToRefresh() {\n    this.cache.clearGroup(\"googleSearchPages\");\n}\n...\n```\n\n#### Set custom TTL for single request\n\nIf you want a custom TTL for a single request, you can pass it as the fourth parameter.\n\n```ts\nlet ttl = 60 * 60 * 24 * 7; // TTL in seconds for one week\nlet request = this.http.get(url);\n\nreturn this.cache.loadFromObservable(cacheKey, request, groupKey, ttl);\n```\n\n#### Set default TTL\n\n```ts\nthis.cache.setDefaultTTL(60 * 60); //set the default cache TTL for 1 hour\n```\n\n#### Delete expired entries\n\nIt's automatically done on every startup, but you can do it manually.\n\n```ts\nthis.cache.clearExpired();\n```\n\n#### Delete all entries\n\n**!Important!**\n\nMake sure that you have a `keyPrefix` set in the CacheModule config, otherwise this will clear everything in Ionic Storage.\n\n```ts\nthis.cache.clearAll();\n```\n\n#### Disable cache\n\nYou can disable cache without any issues, it will pass all of the original Observables through and all Promises will be rejected.\n\n```ts\nthis.cache.enableCache(false);\n```\n\n#### Disable offline invalidation\n\nYou can also disable invalidating cached items when the device is offline.\n\n```ts\nthis.cache.setOfflineInvalidate(false);\n```\n","readmeFilename":"README.md","_id":"ionic-cache@6.0.0-next-1","_nodeVersion":"14.16.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-C3eAbLGG0ZmLrROQPsJT2y1Rnr+2jOE37n97Ydlb0wUfQga+TSvDoOkoJ8ZOfkqMiEhbA2OXXHlvf03JfHl23A==","shasum":"6c7c834b7ef64fb950d5fcd8351fbeeca3d977a5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-6.0.0-next-1.tgz","fileCount":22,"unpackedSize":249598,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhCR0FCRA9TVsSAnZWagAA7J0P/jnZcDxbiX5SOFR8oqVJ\n/xV35ols8YPOLxC69YmfpBTGQVpXMwmEdY4yP180H4uHUeDZ1I0JFi9GzVTc\nM99Pc4ewkrgBcPTO6zT+y1YdWDIw8pbWp8lU48slpoAIFwMlk74bxQUKJUTH\n2Kgu9PKykl/aEbymUSLMg682wDEVr6F7P1qpVPr0vzuCxVSLhbzQN9nYDQ5p\nAv0BR0BGbme2f2jy6tt9xnl4AukTeHQz8IvkxWwjMZRLXHHdaKfYEucZWGyn\n+hvMF4tO6PSVB4B5kxMkpM4CD7filu/3yKmcClyP60g+HxIPxiM7mjrL8Lnh\nU0gYAzPaY0v/a7QZLD4TPziD8Ye9eR2M9YNohmyKfJvBhl+unTiRKC2fxTFP\ndFsJ9SZr8tBMhkY2gfG9L3bEaa8w3xPlRvqc0mdZBd/Odim+5WV2ZQsUTjtK\nU9X3AAS3W6q1eoEpZhECh2NEHjNJsrrZV06FhlgisX6LFzQ5Y6HukKfVlHgN\nUFaE3NRo7+r6ftzc8lZhSDMVh/zm6XamN2mbJafOIXkMhwfGNSP+6bPNP5Ld\npR3PAJQcVMrGN+TYsdPhSXQpsN8b5ZrfzuhktSX8RdltHTuApMqJ92IERYzR\nG8RFUXx8wrdxeXBFaXQY+cJiiRlsJdQCVTv6rH6Vj1JkYa3JArmcaqsN3hiQ\nxv/B\r\n=Gcri\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCQ3F3suRholHIa3ZxqXHmt4VAoWQigA0qvHsN+7kYwwgIhALBFG4wDYgGBOXxcNvXktTiC+aEO6Opkar18vC34opwG"}]},"_npmUser":{"name":"anonymous","email":"willpoulson44@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"},{"name":"anonymous","email":"willpoulson44@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache_6.0.0-next-1_1627987205260_0.6891448622319096"},"_hasShrinkwrap":false},"6.0.0":{"name":"ionic-cache","version":"6.0.0","description":"Ionic cache service - cache request, data, promises etc.","peerDependencies":{"@angular/common":">=9.0.0","@angular/core":">=9.0.0","@ionic/storage-angular":">=3"},"dependencies":{"tslib":"^2.0.0"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","cache","ionic-cache","angular2"],"author":{"name":"Daniel Suchy"},"contributors":[{"name":"Will Poulson","email":"willpoulson44@gmail.com"}],"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","main":"bundles/ionic-cache.umd.js","module":"fesm2015/ionic-cache.js","es2015":"fesm2015/ionic-cache.js","esm2015":"esm2015/ionic-cache.js","fesm2015":"fesm2015/ionic-cache.js","typings":"ionic-cache.d.ts","sideEffects":false,"_id":"ionic-cache@6.0.0","_nodeVersion":"14.16.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-PIY6gZhN7Z1BlMIDaLC3Cs7ecu3Y+AV4nJCpBIIsIWrPQ5tpCCcNGpFBquMF3u8IseDpQ1ACjciSBDP1AgkqEQ==","shasum":"4bf9e56bda041bef078d9e2e5ca9bea90cf53ac2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-6.0.0.tgz","fileCount":46,"unpackedSize":256217,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhNiIACRA9TVsSAnZWagAAxpYP/3pfQ0f9uUfke931hLDp\n/eXyFPT8y+CSSflEUO1LoKoDfgswmgAbrTXeU6tI2tY8fPph4BDd2x066rJr\n8G7maoVUd9bHRS38+Pw38b7cPlelozC0C31gWhUZUwAASA8KGR1QdpseDjy/\niao6HD4u1bWAVIEl+DhYjOPAI6XjR/NigGP5HHSLPjXL6gBr3/OY894cOzXl\n5AJIwKN1VJAaJ2zGHP9YWtbscxFVLs/pmrjQuYE1rV32xn/hsc9yP94dvHut\nyRstv5tFNsSthY1bxmJ6NieoQnmuuEYwJ5JF01mDQ/BZsr5Igl6X8grb3HKZ\nivd1c6VZzZ5i8LY8Beh4tCPJdf2a7L0tB8zYiamqEn2cO+z1GcdaWIK7On3d\nqQwZBJkIPmSiMHOWVF3rE/Q2qaeQD5/oTDdHgqfBhJhLTPi2iZV6L03oTIJe\nwROTGnaVz26Fe1dUldT/8SRB3DvQN8uZ6NcblaufutvgqA9/F7NDDZEQv5T5\njqrnW0yabDv7flmsHyqk+600Zz4xcFki8rWHPX429qppbnOM6Cf1fnEoCx8r\nU6CSwrIAqF+t0UYy93ZZ+kaztug6OuUdWcc18I2sxqRzVpMbx1i9iJBwlUIG\n0DO/d0vlk5kJi69DgQrFWXGDDzEl9ef52YrKubMLrxA1XWu+ggJtEi/fyrAd\nOMXV\r\n=Xeu8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCRUBsMHEE2GqRQn6oXu58+vK1/VaooI7IW1tBf5QMhuwIgdcQzSbaY/8hMFmiD2lxCO+yJpgllO8f60rf2qZCK4R8="}]},"_npmUser":{"name":"anonymous","email":"willpoulson44@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"},{"name":"anonymous","email":"willpoulson44@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache_6.0.0_1630937600792_0.33017162003008305"},"_hasShrinkwrap":false},"6.0.1":{"name":"ionic-cache","version":"6.0.1","description":"Ionic cache service - cache request, data, promises etc.","peerDependencies":{"@angular/common":">=9.0.0","@angular/core":">=9.0.0","@ionic/storage-angular":">=3"},"dependencies":{"tslib":"^2.0.0"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","cache","ionic-cache","angular2"],"author":{"name":"Daniel Suchy"},"contributors":[{"name":"Will Poulson","email":"willpoulson44@gmail.com"}],"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","main":"bundles/ionic-cache.umd.js","module":"fesm2015/ionic-cache.js","es2015":"fesm2015/ionic-cache.js","esm2015":"esm2015/ionic-cache.js","fesm2015":"fesm2015/ionic-cache.js","typings":"ionic-cache.d.ts","sideEffects":false,"_id":"ionic-cache@6.0.1","_nodeVersion":"14.16.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-qqtK1QznH5Ke8VD5pzC3emWusFLfEWFkWfK9sWfsfc44iYAlqTzqCUigTYV0tY/IyE9cJHee3xBiNasn9tZPVw==","shasum":"1251036a6de5b0240132674cfedfe04949d18f69","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-6.0.1.tgz","fileCount":46,"unpackedSize":257243,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhOcMZCRA9TVsSAnZWagAA1RUP/ipeA6ANmh1syK/64iTe\nawXih8CFhAXzRRx/yUiqXymFXSuTGOYgJ8J+TwIK8EQtizZFWpzEaSqG9CGI\n92r9dM4qNzyealu0aIRdc+jxnTAzuDHMqV/Vq79j3wU0hb8LS8VOEBgx6vzf\ncpVxU4h7yql1ge+dgQnep2TXBz6EOlncpjS2B/G9aqRr3Q6XZ4BvU1EEsHaW\nngmUUmWTgK+zbXAhEvvSg+RQ8v0CImu9kV+1nKOkoAGc6WfUNu0owACS04/l\nSMQ9T9wTpnYy8Lcmne/XsccF8Sd+ThU6uFnEMdeqwOlzJaQT9YLtqYa0Qm5L\n9kNXlEcda+RM504Ai4WWW7F9v+3UFMVhRWhZnXrE08AGVy0veYB3H0QU2CEt\nkq8esjDV0pgvqmsVM10lazTOzDdFjhPufWHUo9J2dxv3zarlM17cR7DwtAUw\n6apxIku9Fb/D4n9y+orGk1bom+r0y/jemlRxljE+Ab5EAT8BNDmhYItYS9kq\np0H5i/EEw/E4I42Yf4MN+a1Gu2lTeEyvLgllKDqGAh81l2BbPMVNYSo4lSuy\n+dLX7Vx2JuUUcNgwk5DWssvKMUKPr/bwMTv1eKYbkoFbpxtg+JCRKuktapfo\nXLrdXOf0eKx2PTELqxhXvN3q8fQ4PaZmG3LeB1BB9I5d0o5UtWUveFhFDYHo\n4zgC\r\n=2BEe\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDKen6HUHtf0mbY5jxe1726IrJCWVu2xWAavm5AIzXkcAiEA9/6myvf8ir9pzhvLTcYp3Js3z5jwwMIFkxjs4t3434Q="}]},"_npmUser":{"name":"anonymous","email":"willpoulson44@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"},{"name":"anonymous","email":"willpoulson44@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache_6.0.1_1631175449091_0.4983980390752445"},"_hasShrinkwrap":false},"6.0.2":{"name":"ionic-cache","version":"6.0.2","description":"Ionic cache service - cache request, data, promises etc.","peerDependencies":{"@angular/common":">=9.0.0","@angular/core":">=9.0.0","@ionic/storage-angular":">=3"},"dependencies":{"tslib":"^2.0.0"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","cache","ionic-cache","angular2"],"author":{"name":"Daniel Suchy"},"contributors":[{"name":"Will Poulson","email":"willpoulson44@gmail.com"}],"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","main":"bundles/ionic-cache.umd.js","module":"fesm2015/ionic-cache.js","es2015":"fesm2015/ionic-cache.js","esm2015":"esm2015/ionic-cache.js","fesm2015":"fesm2015/ionic-cache.js","typings":"ionic-cache.d.ts","sideEffects":false,"_id":"ionic-cache@6.0.2","_nodeVersion":"14.16.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-250r+BX+HbwB/8FqXgFmyukuLycfJC2pb+wUI2EK281cdztcAOeoGmOurwBauqEzk88jijsqUzGUMNug69sHGQ==","shasum":"bbf82767cfb36c4cf3bfab65204ad277907aaee1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-6.0.2.tgz","fileCount":46,"unpackedSize":259229,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhQKAOCRA9TVsSAnZWagAAj0cP/ivBqb0NIfqRVKo/kVhO\n3O5SaCtwrLJmp/vqD7skeogbLnqel2WJfltVMqCZtSCJTToNVIChb3y5PtfY\nxTBxRk8fF96j0qLqB4orfHqyBKHzIv39swjoABpZfRxP11n8DCw5OriUhjth\nm9qc0ltT+cmdKtOfwhRtUKA/mwxohMIgpBs6gy4OwYxoM5f5Ky1hRwM/cgtM\nw7WYicATMtpDTT+Cu28c59RZaWqJGL0iY0OVGbjSw5RNdw3bLF0PUt8Y3Wdf\n1YeIgrZ+Ho+7sq9qPAvKhMHODrvu2wTxU3N1Y/TKe61tUIb98+a4ZK5vadoy\nleja0JGjBchjQNnHA8S+nEECupP0HTHRMFwPg5hFsSI4BGCbzi+P3om3/VKp\nLHGz7wV2NqBsxJu5K1cTZrXxbMsPA4Kca+pQsLcGUOEcxyaZ7xceMs6KB/r8\n24o1Wsm6wI7XqVWsrpUmTywK/vRIAWTO/P+N8CjYhQIvbvyn164N/RgyQe+p\nN+2xayujJOC28R4WgcRnNZm4E6hwQI9xpDb2LYNWUgjv+i+51X5xsqPtUXLF\nhE1KtujeeQEsXfP2Wer46nrSYdKI73GYHtHLl2/FZf8oCDhQ//n2gWxJcp7B\nJlKd913fFr6GF4l3OJFPN1l0Cl0PlOn5g6huuFZBmOR0hu9Z47rlWz3Rc44Y\nC2Us\r\n=wjAC\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCCf5YvL6xLEj+AxTZV5C9xla+nMBa9gSke6Z9q894Z/QIhAIv0SUZ9MX92REf/xxyklls53Hpst2gbo3IGQ0gYyHEj"}]},"_npmUser":{"name":"anonymous","email":"willpoulson44@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"},{"name":"anonymous","email":"willpoulson44@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache_6.0.2_1631625230128_0.994803767061331"},"_hasShrinkwrap":false},"6.0.3":{"name":"ionic-cache","version":"6.0.3","description":"Ionic cache service - cache request, data, promises etc.","peerDependencies":{"@angular/common":">=9.0.0","@angular/core":">=9.0.0","@ionic/storage-angular":">=3"},"dependencies":{"tslib":"^2.0.0"},"repository":{"type":"git","url":"git+https://github.com/Nodonisko/ionic-cache.git"},"keywords":["ionic","cache","ionic-cache","angular2"],"author":{"name":"Daniel Suchy"},"contributors":[{"name":"Will Poulson","email":"willpoulson44@gmail.com"}],"license":"MIT","bugs":{"url":"https://github.com/Nodonisko/ionic-cache/issues"},"homepage":"https://github.com/Nodonisko/ionic-cache#readme","main":"bundles/ionic-cache.umd.js","module":"fesm2015/ionic-cache.js","es2015":"fesm2015/ionic-cache.js","esm2015":"esm2015/ionic-cache.js","fesm2015":"fesm2015/ionic-cache.js","typings":"ionic-cache.d.ts","sideEffects":false,"_id":"ionic-cache@6.0.3","_nodeVersion":"14.16.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-jlnFC5aVW6bslP8m4a4U287kwpfY5ZzKD0EhO6ko+coYwIsC2VXgcTDPheH7F5ydgW5ioyCq6Z2gkSPYDDe21w==","shasum":"faff177e2b30f54c3b38944ce89611cece237870","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ionic-cache/-/ionic-cache-6.0.3.tgz","fileCount":46,"unpackedSize":258928,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhQKFhCRA9TVsSAnZWagAAKFAP/0QFCIJVjpg0tV1UsMv9\nwq+AKEqUUXVXgJKxUWRxBpwtc4soQ15SKf9PCfohLtyBiq0b5EQSE4X1v0wj\nbGZw4mEjW3Oqhn1UU+HizfCesHSn7q1a2E0e5/c8IZ9hEVd879KIPYi3j88h\ngA/leGIrn9M42Ecti0Ab5M/AoRjcRG02iwHMaKrru6tRsq+9un5j7j89JsTJ\nYQg2CZyvtEPH72zHBhz+Y/Bo12eI6g84EpIX3NeMmsL6FE0MJ+K5YHZtIzq7\nCmsPCDx5CCSsUYrfuSAJy8WcFn0kHSDAYm9Dvqmh/PXTpMJbE2Cxkh3IxHSn\ncVPYMMjSDnSaEw2hYfcbaRbz+eEI0BbCODnYi5litSjfzZk9NbNvwJN1mqmh\n0CZE07J1ZxdK/TJD16z0pqFR+pTfS4XcYHhIJh7a/zEFtFcJ5+W1D3ReJqd3\n9e2C+diblnSPi0I3ichIqMsXDAx/WewsUw5VK4H0PQtQ+XXhtUSQde6NHYL0\n1s7EKfrc69BBc/B1geWrg0iw2VgR2Zob2uxsBG4j3W/C5N6bUvlwsGHEGbEf\nb7HCyuGFCDOERSWrNMluofhDvnwHIkeyHqCQLxyv8KzvaUl9DtnukbKneIEK\nm6uX0NIYCu1RDqN3gX7nSKcFiOF9zda4wRM+XidoOKVArSEalYQmcqTxt8Fr\nTh7z\r\n=1KbA\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDlgDlyxBLpUXO4r0Uex/6FRF/FI+bbCaIMWEDlGbYcGgIhAPGcRfUTpPFWua4EnLCdGwe4IsFoDMCgv+3de0JCUI7A"}]},"_npmUser":{"name":"anonymous","email":"willpoulson44@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"suchydan@gmail.com"},{"name":"anonymous","email":"willpoulson44@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ionic-cache_6.0.3_1631625569732_0.4107344258499477"},"_hasShrinkwrap":false}},"name":"ionic-cache","time":{"modified":"2022-06-19T02:08:57.396Z","created":"2016-07-20T09:57:31.217Z","1.0.0":"2016-07-20T09:57:31.217Z","1.0.1":"2016-07-20T10:12:03.897Z","1.0.2":"2016-07-20T10:18:14.987Z","1.0.3":"2016-07-20T10:38:49.427Z","1.0.4":"2016-07-20T12:59:42.130Z","1.0.5":"2016-07-21T07:23:37.073Z","1.0.6":"2016-08-09T16:15:41.074Z","1.0.7":"2016-08-09T16:39:34.574Z","1.0.9":"2016-10-10T15:16:53.557Z","1.1.0":"2016-10-11T07:46:15.399Z","1.1.1":"2017-01-06T22:13:19.969Z","1.1.2":"2017-02-05T21:02:03.671Z","2.0.0":"2017-05-06T15:45:45.317Z","2.0.1":"2017-05-06T15:52:30.646Z","2.0.2":"2017-05-31T08:43:31.488Z","2.0.3":"2017-06-08T08:03:01.573Z","2.0.4":"2017-06-15T14:29:47.457Z","2.0.5":"2017-07-15T07:34:19.105Z","2.1.0":"2018-03-06T09:19:41.353Z","3.0.0":"2018-03-06T10:29:32.140Z","3.0.1":"2018-03-06T11:17:05.921Z","3.1.0":"2018-05-15T18:53:07.372Z","3.1.1":"2018-05-21T20:24:33.184Z","3.1.2":"2018-06-18T14:46:08.039Z","3.1.3":"2018-09-06T11:31:32.728Z","4.0.0":"2019-02-16T11:57:03.702Z","4.0.1":"2019-03-01T10:52:34.387Z","4.1.0":"2019-08-27T13:33:37.792Z","5.1.0":"2020-03-24T18:53:42.884Z","5.2.0":"2020-03-27T10:52:48.073Z","6.0.0-next-1":"2021-08-03T10:40:05.440Z","6.0.0":"2021-09-06T14:13:20.935Z","6.0.1":"2021-09-09T08:17:29.271Z","6.0.2":"2021-09-14T13:13:50.294Z","6.0.3":"2021-09-14T13:19:29.921Z"},"readmeFilename":"README.md","contributors":[{"name":"Will Poulson","email":"willpoulson44@gmail.com"}],"homepage":"https://github.com/Nodonisko/ionic-cache#readme"}