{"_id":"cache-manager","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"dist-tags":{"latest":"7.2.8"},"description":"Cache Manager for Node.js","readme":"[<img align=\"center\" src=\"https://cacheable.org/symbol.svg\" alt=\"Cacheable\" />](https://github.com/jaredwray/cacheable)\n\n# cache-manager\n[![codecov](https://codecov.io/gh/jaredwray/cacheable/graph/badge.svg?token=lWZ9OBQ7GM)](https://codecov.io/gh/jaredwray/cacheable)\n[![tests](https://github.com/jaredwray/cacheable/actions/workflows/tests.yml/badge.svg)](https://github.com/jaredwray/cacheable/actions/workflows/tests.yml)\n[![npm](https://img.shields.io/npm/dm/cache-manager)](https://npmjs.com/package/cache-manager)\n[![npm](https://img.shields.io/npm/v/cache-manager)](https://npmjs.com/package/cache-manager)\n[![license](https://img.shields.io/github/license/jaredwray/cacheable)](https://github.com/jaredwray/cacheable/blob/main/LICENSE)\n\n# Simple and fast NodeJS caching module.\nA cache module for NodeJS that allows easy wrapping of functions in cache, tiered caches, and a consistent interface.\n- Made with Typescript and compatible with [ESModules](https://nodejs.org/docs/latest-v14.x/api/esm.html).\n- Easy way to wrap any function in cache, supports a mechanism to refresh expiring cache keys in background.\n- Tiered caches -- data gets stored in each cache and fetched from the highest priority cache(s) first.\n- `nonBlocking` option that optimizes how the system handles multiple stores.\n- Use with any [Keyv](https://keyv.org/) compatible storage adapter.\n- 100% test coverage via [vitest](https://github.com/vitest-dev/vitest).\n\nWe moved to using [Keyv](https://keyv.org/) which are more actively maintained and have a larger community.\n\nA special thanks to [Tim Phan](https://github.com/timphandev) who took `cache-manager` v5 and ported it to [Keyv](https://keyv.org/) which is the foundation of v6. \uD83C\uDF89 Another special thanks to [Doug Ayers](https://github.com/douglascayers) who wrote `promise-coalesce` which was used in v5 and now embedded in v6.\n\n# Migration from v6 to v7\n\n`v7` has only one breaking change which is changing the return type from `null` to `undefined` when there is no data to return. This is to align with the [Keyv](https://keyv.org) API and to make it more consistent with the rest of the methods. Below is an example of how to migrate from `v6` to `v7`:\n\n```ts\nimport { createCache } from 'cache-manager';\n\nconst cache = createCache();\nconst result = await cache.get('key');\n// result will be undefined if the key is not found or expired\nconsole.log(result); // undefined\n```\n\n# Migration from v5 to v6\n\n`v6` is a major update and has breaking changes primarily around the storage adapters. We have moved to using [Keyv](https://keyv.org/) which are more actively maintained and have a larger community. Below are the changes you need to make to migrate from `v5` to `v6`. In `v5` the `memoryStore` was used to create a memory store, in `v6` you can use any storage adapter that Keyv supports. Below is an example of how to migrate from `v5` to `v6`:\n\n```ts\nimport { createCache, memoryStore } from 'cache-manager';\n\n// Create memory cache synchronously\nconst memoryCache = createCache(memoryStore({\n  max: 100,\n  ttl: 10 * 1000 /*milliseconds*/,\n}));\n```\n\nIn `v6` you can use any storage adapter that Keyv supports. Below is an example of using the in memory store with `Keyv`:\n\n```ts\nimport { createCache } from 'cache-manager';\n\nconst cache = createCache();\n```\n\nIf you would like to do multiple stores you can do the following:\n\n```ts\nimport { createCache } from 'cache-manager';\nimport { createKeyv } from 'cacheable';\nimport { createKeyv as createKeyvRedis } from '@keyv/redis';\n\nconst memoryStore = createKeyv();\nconst redisStore = createKeyvRedis('redis://user:pass@localhost:6379');\n\nconst cache = createCache({\n  stores: [memoryStore, redisStore],\n});\n```\n\nWhen doing in memory caching and getting errors on `symbol` or if the object is coming back wrong like on `Uint8Array` you will want to set the `serialization` and `deserialization` options in Keyv to `undefined` as it will try to do json serialization. \n\n```ts\nimport { createCache } from \"cache-manager\";\nimport { Keyv } from \"keyv\";\n\nconst keyv = new Keyv();\nkeyv.serialize = undefined;\nkeyv.deserialize = undefined;\n\nconst memoryCache = createCache({\n\tstores: [keyv],\n});\n```\nThe other option is to set the serialization to something that is not `JSON.stringify`. You can read more about it here: https://keyv.org/docs/keyv/#custom-serializers\n\nIf you would like a more robust in memory storage adapter you can use `CacheableMemory` from Cacheable. Below is an example of how to migrate from `v5` to `v6` using `CacheableMemory`:\n\n```ts\nimport { createCache } from 'cache-manager';\nimport { createKeyv } from 'cacheable';\n\nconst cache = createCache({\n  stores: [createKeyv({ ttl: 60000, lruSize: 5000 })],\n});\n```\n\nTo learn more about `CacheableMemory` please visit: http://cacheable.org/docs/cacheable/#cacheablememory---in-memory-cache\n\nIf you are still wanting to use the legacy storage adapters you can use the `KeyvAdapter` to wrap the storage adapter. Below is an example of how to migrate from `v5` to `v6` using `cache-manager-redis-yet` by going to [Using Legacy Storage Adapters](#using-legacy-storage-adapters).\n\nIf you are looking for older documentation you can find it here:\n* [v5 Documentation](https://github.com/jaredwray/cacheable/blob/main/packages/cache-manager/READMEv5.md)\n* [v4 Documentation](https://github.com/jaredwray/cacheable/blob/main/packages/cache-manager/READMEv4.md)\n\n\n## Table of Contents\n* [Installation](#installation)\n* [Quick start](#quick-start)\n* [Using `CacheableMemory` or `lru-cache` as storage adapter](#using-cacheablememory-or-lru-cache-as-storage-adapter)\n* [Options](#options)\n* [Methods](#methods)\n  * [.set](#set)\n  * [.mset](#mset)\n  * [.get](#get)\n  * [.mget](#mget)\n  * [.ttl](#ttl)\n  * [.del](#del)\n  * [.mdel](#mdel)\n  * [.clear](#clear)\n  * [.wrap](#wrap)\n  * [.disconnect](#disconnect)\n* [Events](#events)\n  * [.set](#set)\n  * [.del](#del)\n  * [.clear](#clear)\n  * [.refresh](#refresh)\n* [Properties](#properties)\n  * [.cacheId](#cacheId)\n  * [.stores](#stores)\n* [Doing Iteration on Stores](#doing-iteration-on-stores)\n* [Update on `redis` and `ioredis` Support](#update-on-redis-and-ioredis-support)\n* [Using Legacy Storage Adapters](#using-legacy-storage-adapters)\n* [Contribute](#contribute)\n* [License](#license)\n\n# Installation\n\n```sh\nnpm install cache-manager\n```\n\nBy default, everything is stored in memory; you can optionally also install a storage adapter; choose one from any of the storage adapters supported by Keyv:\n\n```sh\nnpm install @keyv/redis\nnpm install @keyv/memcache\nnpm install @keyv/mongo\nnpm install @keyv/sqlite\nnpm install @keyv/postgres\nnpm install @keyv/mysql\nnpm install @keyv/etcd\n```\nIn addition Keyv supports other storage adapters such as `lru-cache` and `CacheableMemory` from Cacheable (more examples below). Please read [Keyv document](https://keyv.org/docs/) for more information.\n\n# Quick start\n```typescript\nimport { Keyv } from 'keyv';\nimport { createCache } from 'cache-manager';\n\n// Memory store by default\nconst cache = createCache()\n\n// Single store which is in memory\nconst cache = createCache({\n  stores: [new Keyv()],\n})\n```\nHere is an example of doing layer 1 and layer 2 caching with the in-memory being `CacheableMemory` from Cacheable and the second layer being `@keyv/redis`:\n\n```ts\nimport { Keyv } from 'keyv';\nimport KeyvRedis from '@keyv/redis';\nimport { CacheableMemory } from 'cacheable';\nimport { createCache } from 'cache-manager';\n\n// Multiple stores\nconst cache = createCache({\n  stores: [\n    //  High performance in-memory cache with LRU and TTL\n    new Keyv({\n      store: new CacheableMemory({ ttl: 60000, lruSize: 5000 }),\n    }),\n\n    //  Redis Store\n    new Keyv({\n      store: new KeyvRedis('redis://user:pass@localhost:6379'),\n    }),\n  ],\n})\n```\n\nOnce it is created, you can use the cache object to set, get, delete, and wrap functions in cache.\n\n```ts\n\n// With default ttl and refreshThreshold\nconst cache = createCache({\n  ttl: 10000,\n  refreshThreshold: 3000,\n})\n\nawait cache.set('foo', 'bar')\n// => bar\n\nawait cache.get('foo')\n// => bar\n\nawait cache.del('foo')\n// => true\n\nawait cache.get('foo')\n// => null\n\nawait cache.wrap('key', () => 'value')\n// => value\n```\n\n# Using CacheableMemory or lru-cache as storage adapter\n\nBecause we are using [Keyv](https://keyv.org/), you can use any storage adapter that Keyv supports such as `lru-cache` or `CacheableMemory` from Cacheable. Below is an example of using `CacheableMemory`:\n\nIn this example we are using `CacheableMemory` from Cacheable which is a fast in-memory cache that supports LRU and and TTL expiration.\n\n```ts\nimport { createCache } from 'cache-manager';\nimport { Keyv } from 'keyv';\nimport { KeyvCacheableMemory } from 'cacheable';\n\nconst store = new KeyvCacheableMemory({ ttl: 60000, lruSize: 5000 });\nconst keyv = new Keyv({ store });\nconst cache = createCache({ stores: [keyv] });\n```\n\nHere is an example using `lru-cache`:\n\n```ts\nimport { createCache } from 'cache-manager';\nimport { Keyv } from 'keyv';\nimport { LRU } from 'lru-cache';\n\nconst keyv = new Keyv({ store: new LRU({ max: 5000, maxAge: 60000 }) });\nconst cache = createCache({ stores: [keyv] });\n```\n\n## Options\n- **stores**?: Keyv[]\n\n    List of Keyv instance. Please refer to the [Keyv document](https://keyv.org/docs/#3.-create-a-new-keyv-instance) for more information.\n- **ttl**?: number - Default time to live in milliseconds.\n\n    The time to live in milliseconds. This is the maximum amount of time that an item can be in the cache before it is removed.\n- **refreshThreshold**?: number | (value:T) => number - Default refreshThreshold in milliseconds. You can also provide a function that will return the refreshThreshold based on the value.\n\n    If the remaining TTL is less than **refreshThreshold**, the system will update the value asynchronously in background.\n- **refreshAllStores**?: boolean - Default false\n\n    If set to true, the system will update the value of all stores when the refreshThreshold is met. Otherwise, it will only update from the top to the store that triggered the refresh.\n\n- **nonBlocking**?: boolean - Default false\n\n    If set to true, the system will not block when multiple stores are used. Here is how it affects the type of functions:\n    * `set and mset` - will not wait for all stores to finish.\n    * `get and mget` - will return the first (fastest) value found.\n    * `del and mdel` - will not wait for all stores to finish.\n    * `clear` - will not wait for all stores to finish.\n    * `wrap` - will do the same as `get` and `set` (return the first value found and not wait for all stores to finish).\n\n- **cacheId**?: string - Defaults to random string\n\n    Unique identifier for the cache instance. This is primarily used to not have conflicts when using `wrap` with multiple cache instances.\n\n# Methods\n## set\n`set(key, value, [ttl]): Promise<value>`\n\nSets a key value pair. It is possible to define a ttl (in milliseconds). An error will be throw on any failed\n\n```ts\nawait cache.set('key-1', 'value 1')\n\n// expires after 5 seconds\nawait cache.set('key 2', 'value 2', 5000)\n```\nSee unit tests in [`test/set.test.ts`](./test/set.test.ts) for more information.\n\n## mset\n\n`mset(keys: [ { key, value, ttl } ]): Promise<true>`\n\nSets multiple key value pairs. It is possible to define a ttl (in milliseconds). An error will be throw on any failed\n\n```ts\nawait cache.mset([\n  { key: 'key-1', value: 'value 1' },\n  { key: 'key-2', value: 'value 2', ttl: 5000 },\n]);\n```\n\n## get\n`get(key): Promise<value>`\n\nGets a saved value from the cache. Returns a null if not found or expired. If the value was found it returns the value.\n\n```ts\nawait cache.set('key', 'value')\n\nawait cache.get('key')\n// => value\n\nawait cache.get('foo')\n// => null\n```\nSee unit tests in [`test/get.test.ts`](./test/get.test.ts) for more information.\n\n## mget\n\n`mget(keys: [key]): Promise<value[]>`\n\nGets multiple saved values from the cache. Returns a null if not found or expired. If the value was found it returns the value.\n\n```ts\nawait cache.mset([\n  { key: 'key-1', value: 'value 1' },\n  { key: 'key-2', value: 'value 2' },\n]);\n\nawait cache.mget(['key-1', 'key-2', 'key-3'])\n// => ['value 1', 'value 2', null]\n```\n\n## ttl\n`ttl(key): Promise<number | null>`\n\nGets the expiration time of a key in milliseconds. Returns a null if not found or expired.\n\n```ts\nawait cache.set('key', 'value', 1000); // expires after 1 second\n\nawait cache.ttl('key'); // => the expiration time in milliseconds\n\nawait cache.get('foo'); // => null\n```\nSee unit tests in [`test/ttl.test.ts`](./test/ttl.test.ts) for more information.\n\n## del\n`del(key): Promise<true>`\n\nDelete a key, an error will be throw on any failed.\n\n```ts\nawait cache.set('key', 'value')\n\nawait cache.get('key')\n// => value\n\nawait cache.del('key')\n\nawait cache.get('key')\n// => null\n```\nSee unit tests in [`test/del.test.ts`](./test/del.test.ts) for more information.\n\n## mdel\n\n`mdel(keys: [key]): Promise<true>`\n\nDelete multiple keys, an error will be throw on any failed.\n\n```ts\nawait cache.mset([\n  { key: 'key-1', value: 'value 1' },\n  { key: 'key-2', value: 'value 2' },\n]);\n\nawait cache.mdel(['key-1', 'key-2'])\n```\n\n## clear\n`clear(): Promise<true>`\n\nFlush all data, an error will be throw on any failed.\n\n```ts\nawait cache.set('key-1', 'value 1')\nawait cache.set('key-2', 'value 2')\n\nawait cache.get('key-1')\n// => value 1\nawait cache.get('key-2')\n// => value 2\n\nawait cache.clear()\n\nawait cache.get('key-1')\n// => null\nawait cache.get('key-2')\n// => null\n```\nSee unit tests in [`test/clear.test.ts`](./test/clear.test.ts) for more information.\n\n## wrap\n`wrap(key, fn: async () => value, [ttl], [refreshThreshold]): Promise<value>`\n\nAlternatively, with optional parameters as options object supporting a `raw` parameter:\n\n`wrap(key, fn: async () => value, { ttl?: number, refreshThreshold?: number, raw?: true }): Promise<value>`\n\nWraps a function in cache. The first time the function is run, its results are stored in cache so subsequent calls retrieve from cache instead of calling the function.\n\nIf `refreshThreshold` is set and the remaining TTL is less than `refreshThreshold`, the system will update the value asynchronously. In the meantime, the system will return the old value until expiration. You can also provide a function that will return the refreshThreshold based on the value `(value:T) => number`.\n\nIf the object format for the optional parameters is used, an additional `raw` parameter can be applied, changing the function return type to raw data including expiration timestamp as `{ value: [data], expires: [timestamp] }`.\n\n```typescript\nawait cache.wrap('key', () => 1, 5000, 3000)\n// call function then save the result to cache\n// =>  1\n\nawait cache.wrap('key', () => 2, 5000, 3000)\n// return data from cache, function will not be called again\n// => 1\n\nawait cache.wrap('key', () => 2, { ttl: 5000, refreshThreshold: 3000, raw: true })\n// returns raw data including expiration timestamp\n// => { value: 1, expires: [timestamp] }\n\n// wait 3 seconds\nawait sleep(3000)\n\nawait cache.wrap('key', () => 2, 5000, 3000)\n// return data from cache, call function in background and save the result to cache\n// =>  1\n\nawait cache.wrap('key', () => 3, 5000, 3000)\n// return data from cache, function will not be called\n// =>  2\n\nawait cache.wrap('key', () => 4, 5000, () => 3000);\n// return data from cache, function will not be called\n// =>  4\n\nawait cache.wrap('error', () => {\n  throw new Error('failed')\n})\n// => error\n```\n**NOTES:**\n\n* The store that will be checked for refresh is the one where the key will be found first (highest priority).\n* If the threshold is low and the worker function is slow, the key may expire and you may encounter a racing condition with updating values.\n* If no `ttl` is set for the key, the refresh mechanism will not be triggered.\n\nSee unit tests in [`test/wrap.test.ts`](./test/wrap.test.ts) for more information.\n\n## disconnect\n\n`disconnect(): Promise<void>`\n\nWill disconnect from the relevant store(s). It is highly recommended to use this when using a [Keyv](https://keyv.org/) storage adapter that requires a disconnect. For each storage adapter, the use case for when to use disconnect is different. An example is that `@keyv/redis` should be used only when you are done with the cache.\n\n```ts\nawait cache.disconnect();\n```\n\nSee unit tests in [`test/disconnect.test.ts`](./test/disconnect.test.ts) for more information.\n\n# Properties\n\n## cacheId\n`cacheId(): string`\n\nReturns cache instance id. This is primarily used to not have conflicts when using `wrap` with multiple cache instances.\n\n## stores\n`stores(): Keyv[]`\n\nReturns the list of Keyv instances. This can be used to get the list of stores and then use the Keyv API to interact with the store directly.\n\n```ts\nconst cache = createCache({cacheId: 'my-cache-id'});\ncache.cacheId(); // => 'my-cache-id'\n```\nSee unit tests in [`test/cache-id.test.ts`](./test/cache-id.test.ts) for more information.\n\n# Events\n## set\nFired when a key has been added or changed.\n\n```ts\ncache.on('set', ({ key, value, error }) => {\n\t// ... do something ...\n})\n```\n\n## del\nFired when a key has been removed manually.\n\n```ts\ncache.on('del', ({ key, error }) => {\n\t// ... do something ...\n})\n```\n\n## clear\nFired when the cache has been flushed.\n\n```ts\ncache.on('clear', (error) => {\n  if (error) {\n    // ... do something ...\n  }\n})\n```\n\n## refresh\nFired when the cache has been refreshed in the background.\n\n```ts\ncache.on('refresh', ({ key, value, error }) => {\n  if (error) {\n    // ... do something ...\n  }\n})\n```\n\nSee unit tests in [`test/events.test.ts`](./test/events.test.ts) for more information.\n\n# Doing Iteration on Stores\n\nYou can use the `stores` method to get the list of stores and then use the Keyv API to interact with the store directly. Below is an example of iterating over all stores and getting all keys:\n\n```ts\nimport Keyv from 'keyv';\nimport { createKeyv } from '@keyv/redis';\nimport { createCache } from 'cache-manager';\n\nconst keyv = new Keyv();\nconst keyvRedis = createKeyv('redis://user:pass@localhost:6379');\n\nconst cache = createCache({\n  stores: [keyv, keyvRedis],\n});\n\n// add some data\nawait cache.set('key-1', 'value 1');\nawait cache.set('key-2', 'value 2');\n\n// get the store you want to iterate over. In this example we are using the second store (redis)\nconst store = cache.stores[1];\n\nif(store?.iterator) {\n  for await (const [key, value] of store.iterator({})) {\n    console.log(key, value);\n  }\n}\n```\n\nWARNING: Be careful when using `iterator` as it can cause major performance issues with the amount of data being retrieved. Also, Not all storage adapters support `iterator` so you may need to check the documentation for the storage adapter you are using.\n\n# Update on redis and ioredis Support\n\nWe will not be supporting `cache-manager-ioredis-yet` or `cache-manager-redis-yet` in the future as we have moved to using `Keyv` as the storage adapter `@keyv/redis`.\n\n# Using Legacy Storage Adapters\n\nThere are many storage adapters built for `cache-manager` and because of that we wanted to provide a way to use them with `KeyvAdapter`. Below is an example of using `cache-manager-redis-yet`:\n\n```ts\nimport { createCache, KeyvAdapter } from 'cache-manager';\nimport { Keyv } from 'keyv';\nimport { redisStore } from 'cache-manager-redis-yet';\n\nconst adapter = new KeyvAdapter( await redisStore() );\nconst keyv = new Keyv({ store: adapter });\nconst cache = createCache({ stores: [keyv]});\n```\n\nThis adapter will allow you to add in any storage adapter. If there are issues it needs to follow `CacheManagerStore` interface.\n\n# Contribute\n\nIf you would like to contribute to the project, please read how to contribute here [CONTRIBUTING.md](https://github.com/jaredwray/cacheable/blob/main/CONTRIBUTING.md).\n\n# License\n\n[MIT © Jared Wray ](./LICENSE)\n","repository":{"type":"git","directory":"packages/cache-manager","url":"git+https://github.com/jaredwray/cacheable.git"},"users":{"kof":true,"plunix":true,"tinyhill":true,"federico-garcia":true,"thataustin":true,"anygivensolutions":true,"thisjustin":true,"alien":true,"swookie":true,"sasquatch":true,"floby":true,"saikosai":true,"hengkiardo":true,"kktam":true,"arasmus8":true,"samueltbrown":true,"vwal":true,"keyn":true,"x372563572":true,"markthethomas":true,"hema":true,"joanmi":true,"gpuente":true,"joypeterson":true,"sessionbean":true,"ryanaghdam":true,"adamlu":true,"barwin":true,"xgheaven":true,"benhuang":true,"angelxmoreno":true,"jhq":true,"leonning":true,"craigpatten":true,"beh01der":true,"gfilip":true,"jeltok":true,"yasinaydin":true},"bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"license":"MIT","versions":{"0.6.0":{"name":"cache-manager","version":"0.6.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.6.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"1bd0652741fcc410c104b803566f8ef3c8647442","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.6.0.tgz","integrity":"sha512-MSOoiN3avLYjpM5EuZM8iELUWHxw7BRiYo78SwaGUjed/QghrT7rE1RfyfUO9ZJbHHIIKw8VLjK4cvsI37CDfg==","signatures":[{"sig":"MEYCIQCp9SC2PO+on+qasxxITl+mgIbvAJBC07bBhp9ZV0/qQQIhAKqQHh23aVOXezGY3luIvBXwdoaObrMEj274C+V9NeGS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.4.6","description":"Cache module for Node.js","directories":{},"dependencies":{"async":">=0.1.22","lru-cache":">=2.3.0"},"devDependencies":{"mocha":">=1.8.1","sinon":">=1.5.2","jshint":">=1.0.1","istanbul":">=0.1.29","optimist":">=0.3.5","coveralls":"~2.3.0"}},"5.7.1":{"name":"cache-manager","version":"5.7.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.7.1","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cache-manager#readme","bugs":{"url":"https://github.com/jaredwray/cache-manager/issues"},"xo":{"extends":"xo-typescript","extensions":["ts","tsx"]},"dist":{"shasum":"3a88673be547a13dc47a2fb12d0aa11710b7a481","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.7.1.tgz","fileCount":15,"integrity":"sha512-dONlk3HCRelyxH9ctcXBgFihKmtSdudc9H0E39pBQeUaNcBJV3vcmcvifRUGqbeKk+uWCQpAts3uvnj+79Ebrg==","signatures":[{"sig":"MEYCIQDEaKZUJGlP4kGNbmPVTa9f2HYliZy5EjsXyEJ6ua2j3wIhAOh2dcOD20n9CNcz3bra1GturANRFmrid/zmTuLf6+fT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35489},"main":"dist/index.js","_from":"file:cache-manager-5.7.1.tgz","types":"dist/index.d.ts","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"engines":{"node":">= 18"},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsc -p tsconfig.build.json","clean":"rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml","test:ci":"xo && vitest run"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/665d79bf6f7023c8c7b1d566c828fe45/cache-manager-5.7.1.tgz","_integrity":"sha512-dONlk3HCRelyxH9ctcXBgFihKmtSdudc9H0E39pBQeUaNcBJV3vcmcvifRUGqbeKk+uWCQpAts3uvnj+79Ebrg==","repository":{"url":"git+https://github.com/jaredwray/cache-manager.git","type":"git"},"_npmVersion":"10.2.4","description":"Cache module for Node.js","directories":{},"_nodeVersion":"18.19.1","dependencies":{"lru-cache":"^10.2.2","eventemitter3":"^5.0.1","lodash.clonedeep":"^4.5.0","promise-coalesce":"^1.1.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.58.0","rimraf":"^5.0.7","vitest":"^1.6.0","typescript":"^5.4.5","@types/node":"^20.14.2","@faker-js/faker":"^8.4.1","@vitest/coverage-v8":"^1.6.0","@types/lodash.clonedeep":"^4.5.9","@typescript-eslint/parser":"^7.13.0","eslint-config-xo-typescript":"^4.0.0","@typescript-eslint/eslint-plugin":"^7.13.0"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.7.1_1720026726974_0.427003747692432","host":"s3://npm-registry-packages"}},"5.7.2":{"name":"cache-manager","version":"5.7.2","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.7.2","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cache-manager#readme","bugs":{"url":"https://github.com/jaredwray/cache-manager/issues"},"xo":{"extends":"xo-typescript","extensions":["ts","tsx"]},"dist":{"shasum":"dc3c83572aaff1a837e00e8afc6d8de1acbf95ff","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.7.2.tgz","fileCount":15,"integrity":"sha512-YJ4YL4hCbn2P11vK85eo1W8nF1L9FBnRvqzRmGEy0qwNxojrsKe8U09zvRoQFo1hidbw4wfTsyce8HIo8Pvvyw==","signatures":[{"sig":"MEUCIQCgN136GX6RNF89CRVZJnbi8qQGWATVbr+OTmAwnlLKZQIgZL4C8XpX32VwIUrkLbk23iolZc43Tgw9g1CzCPAI0rY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35389},"main":"dist/index.js","_from":"file:cache-manager-5.7.2.tgz","types":"dist/index.d.ts","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"engines":{"node":">= 18"},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsc -p tsconfig.build.json","clean":"rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml","test:ci":"xo && vitest run"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/gs/5m4m2s857ts7l7nbvv0b57r80000gn/T/4e6d8a7f33248f1fcf30f37902752e7b/cache-manager-5.7.2.tgz","_integrity":"sha512-YJ4YL4hCbn2P11vK85eo1W8nF1L9FBnRvqzRmGEy0qwNxojrsKe8U09zvRoQFo1hidbw4wfTsyce8HIo8Pvvyw==","repository":{"url":"git+https://github.com/jaredwray/cache-manager.git","type":"git"},"_npmVersion":"10.8.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"18.19.0","dependencies":{"lru-cache":"^11.0.0","eventemitter3":"^5.0.1","lodash.clonedeep":"^4.5.0","promise-coalesce":"^1.1.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.58.0","rimraf":"^6.0.1","vitest":"^2.0.2","typescript":"^5.5.3","@types/node":"^20.14.10","@faker-js/faker":"^8.4.1","@vitest/coverage-v8":"^2.0.2","@types/lodash.clonedeep":"^4.5.9","@typescript-eslint/parser":"^7.16.0","eslint-config-xo-typescript":"^4.0.0","@typescript-eslint/eslint-plugin":"^7.16.0"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.7.2_1720723038435_0.9446690115956939","host":"s3://npm-registry-packages"}},"5.7.3":{"name":"cache-manager","version":"5.7.3","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.7.3","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cache-manager#readme","bugs":{"url":"https://github.com/jaredwray/cache-manager/issues"},"xo":{"extends":"xo-typescript","extensions":["ts","tsx"]},"dist":{"shasum":"17ae136c608a90f169559c489c4ab91ba1892cdf","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.7.3.tgz","fileCount":15,"integrity":"sha512-Vp2gd2aDm/MXdEWD0FLdOflvcVj4rdJ1FFmPUeOKq+fuL7MEUcezbTWxQmVB1TTN5Ig92CabMfi5z+HyQwVg9A==","signatures":[{"sig":"MEYCIQDqorS08M/mfdQH1TA4ufa5XmDQ5iWrH/QJ7Ah2RjBAswIhAKtODkGPhXdxnHahkw0butU91dN+DKh7lnFjsm1F3o/Z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35405},"main":"dist/index.js","_from":"file:cache-manager-5.7.3.tgz","types":"dist/index.d.ts","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"engines":{"node":">= 18"},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsc -p tsconfig.build.json","clean":"rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml","test:ci":"xo && vitest run"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/gs/5m4m2s857ts7l7nbvv0b57r80000gn/T/ae9739b1e92961dea00a327850dedd59/cache-manager-5.7.3.tgz","_integrity":"sha512-Vp2gd2aDm/MXdEWD0FLdOflvcVj4rdJ1FFmPUeOKq+fuL7MEUcezbTWxQmVB1TTN5Ig92CabMfi5z+HyQwVg9A==","repository":{"url":"git+https://github.com/jaredwray/cache-manager.git","type":"git"},"_npmVersion":"10.8.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"18.19.0","dependencies":{"lru-cache":"^10.2.2","eventemitter3":"^5.0.1","lodash.clonedeep":"^4.5.0","promise-coalesce":"^1.1.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.58.0","rimraf":"^6.0.1","vitest":"^2.0.2","typescript":"^5.5.3","@types/node":"^20.14.10","@faker-js/faker":"^8.4.1","@vitest/coverage-v8":"^2.0.2","@types/lodash.clonedeep":"^4.5.9","@typescript-eslint/parser":"^7.16.0","eslint-config-xo-typescript":"^4.0.0","@typescript-eslint/eslint-plugin":"^7.16.0"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.7.3_1721059800488_0.7045543412207065","host":"s3://npm-registry-packages"}},"5.7.4":{"name":"cache-manager","version":"5.7.4","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.7.4","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cache-manager#readme","bugs":{"url":"https://github.com/jaredwray/cache-manager/issues"},"xo":{"rules":{"promise/param-names":"off","promise/valid-params":"off","n/file-extension-in-import":"off","no-promise-executor-return":"off","promise/prefer-await-to-then":"off","@typescript-eslint/only-throw-error":"off","no-promise-executor-return promise/param-names":"off","@typescript-eslint/use-unknown-in-catch-callback-variable":"off"},"extends":"xo-typescript","extensions":["ts","tsx"]},"dist":{"shasum":"ed4d513ad4c6d29f2cfd14d6305e6277c830cce1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.7.4.tgz","fileCount":15,"integrity":"sha512-7B29xK1D8hOVdrP0SAy2DGJ/QZxy2TqxS8s2drlLGYI/xOTSJmXfatks7aKKNHvXN6SnKnPtYCi0T82lslB3Fw==","signatures":[{"sig":"MEUCIQCey7HC+4aHJXG/M+8WS8iDBvyKdSB2P+NCOP7KM5kpMwIgMhCHw8jr7gm3fRknVN3nkQVscYksXWCsKPL1jW7Egb8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35815},"main":"dist/index.js","_from":"file:cache-manager-5.7.4.tgz","types":"dist/index.d.ts","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"engines":{"node":">= 18"},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsc -p tsconfig.build.json","clean":"rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml","test:ci":"xo && vitest run"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/gs/5m4m2s857ts7l7nbvv0b57r80000gn/T/b0fe29435b2196fa91ec3b3b8988c5d0/cache-manager-5.7.4.tgz","_integrity":"sha512-7B29xK1D8hOVdrP0SAy2DGJ/QZxy2TqxS8s2drlLGYI/xOTSJmXfatks7aKKNHvXN6SnKnPtYCi0T82lslB3Fw==","repository":{"url":"git+https://github.com/jaredwray/cache-manager.git","type":"git"},"_npmVersion":"10.8.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"18.19.0","dependencies":{"lru-cache":"^10.2.2","eventemitter3":"^5.0.1","lodash.clonedeep":"^4.5.0","promise-coalesce":"^1.1.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.59.3","rimraf":"^6.0.1","vitest":"^2.0.4","typescript":"^5.5.4","@types/node":"^22.0.0","@faker-js/faker":"^8.4.1","@vitest/coverage-v8":"^2.0.4","@types/lodash.clonedeep":"^4.5.9","@typescript-eslint/parser":"^7.17.0","eslint-config-xo-typescript":"^5.0.0","@typescript-eslint/eslint-plugin":"^7.17.0"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.7.4_1722174986222_0.6975322676809319","host":"s3://npm-registry-packages"}},"5.7.5":{"name":"cache-manager","version":"5.7.5","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.7.5","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"promise/param-names":"off","promise/valid-params":"off","n/file-extension-in-import":"off","no-promise-executor-return":"off","promise/prefer-await-to-then":"off","@typescript-eslint/only-throw-error":"off","no-promise-executor-return promise/param-names":"off","@typescript-eslint/use-unknown-in-catch-callback-variable":"off"},"extends":"xo-typescript","extensions":["ts","tsx"]},"dist":{"shasum":"b06a1b2c27578d8c375768a107c5cbbc6ce2554e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.7.5.tgz","fileCount":15,"integrity":"sha512-mBMVq5rw33a7ZdxrpDEo0BY9W7UTmbD+t2jgkofuLDqssGG+kUVaKugq2WQiINZWxMJJ9LAXtJIYLtdEThmqQw==","signatures":[{"sig":"MEUCIHRSLtCY2XSC2EpMGFeUMCuFyhlGowDHeVqHYzd+DExLAiEAg2a3j2NVMERmKiRQdsEaN4LEigIElnrnDw4rvcKd+zw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35974},"main":"dist/index.js","_from":"file:cache-manager-5.7.5.tgz","types":"dist/index.d.ts","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"engines":{"node":">= 18"},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsc -p tsconfig.build.json","clean":"rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml","test:ci":"xo && vitest run"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/7810ad22e167e3314eff262f96fa3b7c/cache-manager-5.7.5.tgz","_integrity":"sha512-mBMVq5rw33a7ZdxrpDEo0BY9W7UTmbD+t2jgkofuLDqssGG+kUVaKugq2WQiINZWxMJJ9LAXtJIYLtdEThmqQw==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git"},"_npmVersion":"10.8.2","description":"Cache module for Node.js","directories":{},"_nodeVersion":"18.19.1","dependencies":{"lru-cache":"^10.2.2","eventemitter3":"^5.0.1","lodash.clonedeep":"^4.5.0","promise-coalesce":"^1.1.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.59.3","rimraf":"^6.0.1","vitest":"^2.0.5","typescript":"^5.5.4","@types/node":"^22.0.0","@faker-js/faker":"^8.4.1","@vitest/coverage-v8":"^2.0.5","@types/lodash.clonedeep":"^4.5.9","@typescript-eslint/parser":"^7.17.0","eslint-config-xo-typescript":"^5.0.0","@typescript-eslint/eslint-plugin":"^7.17.0"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.7.5_1722896992819_0.3134396543294893","host":"s3://npm-registry-packages"}},"5.7.6":{"name":"cache-manager","version":"5.7.6","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.7.6","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"promise/param-names":"off","promise/valid-params":"off","n/file-extension-in-import":"off","no-promise-executor-return":"off","promise/prefer-await-to-then":"off","@typescript-eslint/only-throw-error":"off","no-promise-executor-return promise/param-names":"off","@typescript-eslint/use-unknown-in-catch-callback-variable":"off"},"extends":"xo-typescript","extensions":["ts","tsx"]},"dist":{"shasum":"bdd8a154c73e5233824aa09ceb359ed225d37b7e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.7.6.tgz","fileCount":15,"integrity":"sha512-wBxnBHjDxF1RXpHCBD6HGvKER003Ts7IIm0CHpggliHzN1RZditb7rXoduE1rplc2DEFYKxhLKgFuchXMJje9w==","signatures":[{"sig":"MEUCIQCKkpK0UImJW9mY6CiPMv4c35GQ7zz7hb/m3J++TOLMJQIgNbC25cPVNk9fLKnS2LzaqFQsVaYN412sql7hb8sGqUs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36101},"main":"dist/index.js","_from":"file:cache-manager-5.7.6.tgz","types":"dist/index.d.ts","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"engines":{"node":">= 18"},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsc -p tsconfig.build.json","clean":"rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml","test:ci":"xo && vitest run"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/a6e6902bf283e18be0278012b960e43d/cache-manager-5.7.6.tgz","_integrity":"sha512-wBxnBHjDxF1RXpHCBD6HGvKER003Ts7IIm0CHpggliHzN1RZditb7rXoduE1rplc2DEFYKxhLKgFuchXMJje9w==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git"},"_npmVersion":"10.8.2","description":"Cache module for Node.js","directories":{},"_nodeVersion":"18.19.1","dependencies":{"lru-cache":"^10.2.2","eventemitter3":"^5.0.1","lodash.clonedeep":"^4.5.0","promise-coalesce":"^1.1.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.59.3","rimraf":"^6.0.1","vitest":"^2.0.5","typescript":"^5.5.4","@types/node":"^22.0.0","@faker-js/faker":"^8.4.1","@vitest/coverage-v8":"^2.0.5","@types/lodash.clonedeep":"^4.5.9","@typescript-eslint/parser":"^7.17.0","eslint-config-xo-typescript":"^5.0.0","@typescript-eslint/eslint-plugin":"^7.17.0"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.7.6_1722981220364_0.06836204090235487","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"cache-manager","version":"4.1.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@4.1.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"aa986421f1c975a862d6de88edb9ab1d30f4bd39","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-4.1.0.tgz","fileCount":15,"integrity":"sha512-ZGM6dLxrP65bfOZmcviWMadUOCICqpLs92+P/S5tj8onz+k+tB7Gr+SAgOUHCQtfm2gYEQDHiKeul4+tYPOJ8A==","signatures":[{"sig":"MEQCIG2cVVZrerQy62LnmFGWLGnkxk5WZyi/F697XQvCFPtNAiBNjmW8lXOtAw1WRdyLj17h3cEVNwhVAl3cI6lezi7UtA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81557,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyKewACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmquyA//UY9DSEZ7xSIDDzFMMByUJ7dbagvADQknJYhboap8iLT7Kzqq\r\nYgnM1zR5n/9blhzFYXu+JyrAP5HIQt/D9quO9Hdu7QTVqHQ635VOBA1EbOV2\r\nKLw5UgnwYcVzZmYZv4uy1DaCrNvkEs4N5N98oIlR0snLwTH7lY6av7yvQ9DY\r\nbqrF3GoWv5LGkvRSzbbGzA+UOJ7YGWFDXgDqsFixOaBbyyrF6Wox0t0w0hja\r\n4Yagz19GMwKu/U3XHWACCexitUTLCYF/O6lNLOLJ2OIXhsqW+4PdqRi1vvOZ\r\n/OJK6cTbUAZgG9ibmgJalXWelG2G8Faopu7+3K3SnIiFMUFf2JCZ5WVZBgE3\r\nWQbmgZje3eDTnjvFKTpICFjXixHRsEbOiXs2ISdNY9WhxU1cqRXWdkA8vSYr\r\nURE3V2Pdj3W3XySLte+4eiYjnR+aceGXlujhG3X/uDXd7gEumg9/WWmvKJaO\r\n6jnoWfoAnc+3zs7n55hWBWYeumCtGdAZzx71pPjylf+w6FsMiwz5FhRCs18K\r\npUtGRWXOSQGEvU9Caj2x/AYUF+gz2La5M+XnMeLKQzTaM4X3J4b5vqVs18qo\r\n74YZQq1F9i6Kz9+ZGlxbo5XQtsq3DtlU/ZSbc3yAE7v0cTYoMAN7NFEV88jL\r\nQ51mcvjpd2CLsH6LuT2QxgKuSRHM3kjFwFQ=\r\n=XN5z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"7fb808efc2d7a4bf33b8a9f09a0b35533155dc81","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.9.0","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.16.3","dependencies":{"async":"3.2.3","lru-cache":"^7.10.1","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","jsdoc":"3.6.5","mocha":"8.1.1","sinon":"9.0.3","eslint":"7.7.0","optimist":"0.6.1","coveralls":"3.1.0","es6-promise":"^4.2.8"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_4.1.0_1657317296790_0.09404564676935068","host":"s3://npm-registry-packages"}},"0.2.0":{"name":"cache-manager","version":"0.2.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.2.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"c3833ce65bbfd243278647efaf96b57dc34d9f88","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.2.0.tgz","integrity":"sha512-6W90y5pY4IVZHYpFaEewCc8wjrQQsBRHmc5mZgTm+h/74fn9dQv8N2Yu27zH6Sf/7nSWQj3bb+iuIDDaxOzVfQ==","signatures":[{"sig":"MEQCIEq5w7nXMy7ufBJ5BW7m9i2a+fdslB0tnCxMRExBjOGVAiBN/8yVnq8c8y1XDnqUVJf1WWs1MuT6Ol31f8CaLzD6WQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.3.2","description":"Cache module for Node.js","directories":{},"dependencies":{"async":">=0.1.22","lru-cache":">=2.3.0"},"devDependencies":{"mocha":">=1.8.1","sinon":">=1.5.2","jshint":">=1.0.1","istanbul":">=0.1.29","optimist":">=0.3.5","coveralls":"~2.3.0"}},"3.3.0":{"name":"cache-manager","version":"3.3.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@3.3.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"eb75fb45709ba4eb67a32054d72b5fb9e5ac717e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-3.3.0.tgz","fileCount":28,"integrity":"sha512-BH7pfWWZ6BYnkcj6759uWnTCwMz24LXI0PzribTP8WqpydHo9Jk6EM9itmG+rBXAJHbNOwo1ES49SIn8hyhW2A==","signatures":[{"sig":"MEYCIQDz6ADa36LPIbdtqA75RWle75r1/Jg/YnAYHQxjgK/umAIhAM35YuiV2+SWaeJRSFoTnuxWHeeKgaJ9+oqRpwkd+sNs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":255113,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeq5eBCRA9TVsSAnZWagAA9igQAISZC63eMNJtwuf5wa8q\nNziXxq70FmrNRQFKZ528fTLg+gvfMfnUZiZ+ZlXiC1Evl+IKqEDbSTH/6Qbe\nfZsK7dgVUh7+8vH6TtyCtP96FUluQRTnrjNw/iAFVBqNhf+tQlV6oImPzVbN\nH8REBg2LOhhz/ZGe9+FSAc6tXeYLKPb1JsNNcjV0uG5lAo1jYxq3BtSC6B5W\nFK/4zRIc+foHWIsAS7VPRQDTWSDlDE75/fEsJl3qu5zyO1/h/QdQcRVpamME\nezRf/t2hTLkoH6yIvwcLEqOUmZDCzKFRnc3LgMonKoXiKMs7JYWyZ85t7XLD\nlamHdv49FHSUZxzOFMdyCOOd2A7gugOmTbP77SZDkjir9pB25ox9CEbSd1nm\nu4lssSpj/NtmGf+BHru94bhQgispXTeLzDzXwiyVkFGo7Emypjjb5pWeRhG6\n+SVemwPp6AXK8IvSHWNfaI8OE/C7DAE92nPSCEBhTtJ6dcDUfBXtGR0kQo+a\nIuBzJvQ/8NYGq71O2G9H0GmYCxm9sZEBNhAgRglpvet2Y9+NGXS7v1Rt8qb6\naVL9Wr1RLA6Z/8L48jUsu59ZUb3pCDXY0OUa+xQwYt9Flvy9UZA45qS7Q5Dt\nLOVqOYYOXDzUcN5lSsJIYDVxa19Qsqp9GHChYh3Tp6HadDra1uAp71vKgi3R\n1tQV\r\n=ypEF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"9bc3481dda756aa95a3f018be263f0639826c4e1","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.4.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.12.0","dependencies":{"async":"1.5.2","lodash":"^4.17.15","lru-cache":"4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"14.1.1","jsdoc":"3.5.5","mocha":"7.0.1","sinon":"1.17.3","eslint":"5.16.0","optimist":"0.6.1","coveralls":"3.0.9","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_3.3.0_1588303744718_0.6365331226661552","host":"s3://npm-registry-packages"}},"7.2.0":{"name":"cache-manager","version":"7.2.0","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@7.2.0","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"dist":{"shasum":"2b29098e6d748e875bbccd148fc28639d9f5cdf8","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-7.2.0.tgz","fileCount":7,"integrity":"sha512-GRv0Ji8Xgqtrg1Mmi4ygYpIt+SOApQNjJb5+rYIl+5y3u+tyBf+Csx79LL4wQjKLio63A6x1OpuBzhMzRv9jJg==","signatures":[{"sig":"MEYCIQCWM/yjS8NDtpydlyI/BPTL/jmdd+bCE3HPfUcz9Nbe9QIhAOt72UwQ4cwnfv5UDPGN8zyn40e16w0Aslyn0xnqJB0c","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":55056},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-7.2.0.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"lint":"biome check --write --error-on-warnings","test":"pnpm lint && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"biome check --error-on-warnings && vitest run --coverage","prepublish":"pnpm run build"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/q4/x95kq1ln6cd7rrnct9cby32r0000gn/T/5edca11f18b58b1074d10a237af5876c/cache-manager-7.2.0.tgz","_integrity":"sha512-GRv0Ji8Xgqtrg1Mmi4ygYpIt+SOApQNjJb5+rYIl+5y3u+tyBf+Csx79LL4wQjKLio63A6x1OpuBzhMzRv9jJg==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"11.4.2","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"22.12.0","dependencies":{"keyv":"^5.5.0"},"_hasShrinkwrap":false,"devDependencies":{"tsup":"^8.5.0","rimraf":"^6.0.1","vitest":"^3.2.4","cacheable":"^1.10.4","typescript":"^5.9.2","@keyv/redis":"^5.1.0","@types/node":"^24.2.0","@vitest/spy":"^3.2.4","@biomejs/biome":"^2.2.0","@faker-js/faker":"^9.9.0","@vitest/coverage-v8":"^3.2.4","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_7.2.0_1756246724594_0.18714463573870854","host":"s3://npm-registry-packages-npm-production"}},"0.16.0":{"name":"cache-manager","version":"0.16.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.16.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"6f51cd4929b3aa039068acbd0a2e3e731c5ec6ab","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.16.0.tgz","integrity":"sha512-FRvkGfxUrWf3e+mxoqDgkO+TDIzi6ef+XJaMrBaWfFbz18Y6nDHChUzjDwm/Up9w2IHEMYDPtKiisNTllYeKLA==","signatures":[{"sig":"MEUCIBz1Ui6Wc/EF2YWGeTF+BaXVBhdJtpGIOAnVAZmyyZwTAiEA5SYA1IN+4z6pKJ+0YNlDout4pOXCaDqdH8B0KtWTbRA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6f51cd4929b3aa039068acbd0a2e3e731c5ec6ab","gitHead":"8a014ee1852d279292f351560e797cc3fa9077e0","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.4.28","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"^2.5.0"},"devDependencies":{"jscs":"^1.9.0","mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.4","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}},"7.2.2":{"name":"cache-manager","version":"7.2.2","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@7.2.2","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"dist":{"shasum":"d6f4cdca9eb93d725645e793af9d55d48c11355d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-7.2.2.tgz","fileCount":7,"integrity":"sha512-kI/pI0+ZX05CsEKH7Dt/mejgWK32R0h/is176IlmcZ6lJls9TdQ/xfYmrBdud7jh2yhlwa8WlBmCW1mjhcBf3g==","signatures":[{"sig":"MEUCIBNUWomOV2qh2HlzQwRJEW2GQxtZuqar1AQPjxeYo6UeAiEA5svdpdQ4j5DSTK7K526zVO55xxOQLdgKH+SWbKLF8E8=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":52019},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-7.2.2.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"lint":"biome check --write --error-on-warnings","test":"pnpm lint && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"biome check --error-on-warnings && vitest run --coverage","prepublish":"pnpm run build"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/q4/x95kq1ln6cd7rrnct9cby32r0000gn/T/0f9c10bdd94b9eab1f01ae5b468da0c2/cache-manager-7.2.2.tgz","_integrity":"sha512-kI/pI0+ZX05CsEKH7Dt/mejgWK32R0h/is176IlmcZ6lJls9TdQ/xfYmrBdud7jh2yhlwa8WlBmCW1mjhcBf3g==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"11.6.0","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"22.12.0","dependencies":{"keyv":"^5.5.2","@cacheable/utils":"^2.0.1"},"_hasShrinkwrap":false,"devDependencies":{"tsup":"^8.5.0","rimraf":"^6.0.1","vitest":"^3.2.4","cacheable":"^2.0.1","typescript":"^5.9.2","@keyv/redis":"^5.1.1","@types/node":"^24.3.1","@vitest/spy":"^3.2.4","@biomejs/biome":"^2.2.3","@faker-js/faker":"^10.0.0","@vitest/coverage-v8":"^3.2.4","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_7.2.2_1758555777429_0.4332956755167976","host":"s3://npm-registry-packages-npm-production"}},"2.9.0":{"name":"cache-manager","version":"2.9.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.9.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"5e1f6317ca1a25e40ddf365a7162757af152353e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.9.0.tgz","fileCount":27,"integrity":"sha512-s/R6ePETFqGZzmnJnd2A4HYfmC9oR+8xT7REeRgRvvl0ztIp1T+VopbwSy6N5OXUYZ/gkPFWqY+F+652FDbAJw==","signatures":[{"sig":"MEQCIF/7Fo5pk54sqq7T61rPWazDNrhYtkyLE/+wZFmKQXsfAiA4kTLcr8faxsTYf7ZcXxCiQMv9SKHbc6onVB92kum9yg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":198404},"main":"index.js","_from":".","_shasum":"5e1f6317ca1a25e40ddf365a7162757af152353e","gitHead":"deeddaf4276b8da5cab4283f19955341ec85baff","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"2.0.0","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"1.5.2","lru-cache":"4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"2.11.0","jsdoc":"3.5.5","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_2.9.0_1522101126336_0.7231225911496404","host":"s3://npm-registry-packages"}},"2.5.0":{"name":"cache-manager","version":"2.5.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.5.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"cb654c1778f02cd9e9bd4af7314e408e3bae8bea","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.5.0.tgz","integrity":"sha512-NL3BlbxtQmAu9XrkLGdFlhXwMGN4C4uBLo9EvAgsknQ6rMBQ6L+cmkJ87p1t7Ml3HA1RruooAgOvyT+jAB7n8g==","signatures":[{"sig":"MEQCICuM2l0Wnl62otOfeDx7vRUIoStC5f36BemxgCQ4hwqfAiASoYg7VggFJvlYqzr2fiNCYHy8i3NRjg7egFjmPNwwAQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"cb654c1778f02cd9e9bd4af7314e408e3bae8bea","gitHead":"bc27f0d20e9bd0db859afb2dbb43eb6bc213a459","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"2.0.0","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"1.5.2","lru-cache":"4.0.0"},"devDependencies":{"jscs":"2.11.0","jsdoc":"3.3.0","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager-2.5.0.tgz_1507837558779_0.08248902461491525","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"cache-manager","version":"2.1.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.1.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"284984187b208d458416aca851a3c527c4ccacca","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.1.1.tgz","integrity":"sha512-7esLKCUvNajXycrA/Ska2DwwCcyq893/66AJJjvYwaYXD8j2S1NWKa6KOjoS9ARbPF/CMrjpkfdiXZZzxT+4wA==","signatures":[{"sig":"MEUCIFJoS8EfUB+phWBH+ipijnPXVz3FdIbeCi5Nh6uMm80fAiEA0xpbIkmvCiFX+i5Y8b45Mrx2HpTKgeA/IOMC4WoZriI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"284984187b208d458416aca851a3c527c4ccacca","gitHead":"dfe1715eb0ac5c72a9bfdb8411d413fc8ad9c82e","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"3.8.6","description":"Cache module for Node.js","directories":{},"_nodeVersion":"5.4.0","dependencies":{"async":"1.5.2","lru-cache":"4.0.0"},"devDependencies":{"jscs":"2.11.0","jsdoc":"3.3.0","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager-2.1.1.tgz_1464116516971_0.6348084537312388","host":"packages-12-west.internal.npmjs.com"}},"2.1.2":{"name":"cache-manager","version":"2.1.2","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.1.2","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"837866fa9438e9c86167399ec67c8a6363523219","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.1.2.tgz","integrity":"sha512-1zrY6rcjBYKzJN9zBFfMxoLATKq3u9Y7dVz2fiLKa6OXxmP07voaQN2Ge3CDZvn1LNF1HJ2zodiqNyNZ0XRX+A==","signatures":[{"sig":"MEUCIAOS84x018j6RejdcdvEjt1p4YcVMMv70ToKKUeOOouJAiEArBMmuH8SPo2Zyh89lQLTHq9byzxDW3RMk7rPNqdydXk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"837866fa9438e9c86167399ec67c8a6363523219","gitHead":"6751c105d05c4091f37ce7b889044cfdccb93783","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"3.8.6","description":"Cache module for Node.js","directories":{},"_nodeVersion":"5.4.0","dependencies":{"async":"1.5.2","lru-cache":"4.0.0"},"devDependencies":{"jscs":"2.11.0","jsdoc":"3.3.0","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager-2.1.2.tgz_1465404782912_0.24503697198815644","host":"packages-16-east.internal.npmjs.com"}},"1.3.0":{"name":"cache-manager","version":"1.3.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@1.3.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"56da092afdbccb3ae0cfb3add5c6b28204d34d10","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-1.3.0.tgz","integrity":"sha512-W3TPHdAXcQT8ZN3NbRSFHGJi8MpwJYTQrC+gTnxgGGMx/Gp6DGiEQX6otH6k5SBl0whTEp4UGgsJpUlNO6xYcg==","signatures":[{"sig":"MEYCIQDg1ATZCvkDjc3gR3pvJMyzULveF6SwJjB+hOoryisZGQIhAK3wpLt6bAFbXuwanaEh0cFeZQ8yFoObdgb2XpJBK7kS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"56da092afdbccb3ae0cfb3add5c6b28204d34d10","gitHead":"1a2d781817da2cf9d03d47ce5a581d51ef9c4257","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"2.7.4","description":"Cache module for Node.js","directories":{},"_nodeVersion":"0.12.2","dependencies":{"async":"^0.9.0","lru-cache":"2.6.5"},"devDependencies":{"jscs":"^1.9.0","jsdoc":"^3.3.0","mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.4","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"}},"6.4.0":{"name":"cache-manager","version":"6.4.0","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@6.4.0","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"a75b86f080d69582deb37230041bc7acdef2c9f0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-6.4.0.tgz","fileCount":7,"integrity":"sha512-eUmPyVqQYzWCt7hx1QrYzQ7oC3MGKM1etxxe8zuq1o7IB4NzdBeWcUGDSWYahaI8fkd538SEZRGadyZWQfvOzQ==","signatures":[{"sig":"MEUCIQDmkyb9mEmhjzuz9zD86ZaNWG4K3oQLFpc5e5WhgjeKGQIge5pvp3rhcJkqOuzun5mqZlfBNsVNjIZbWRF5GOpOyLs=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":45377},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-6.4.0.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run","prepublish":"pnpm run build"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/q4/x95kq1ln6cd7rrnct9cby32r0000gn/T/4eefcef4dc3f58ac7e9c2ade575a4555/cache-manager-6.4.0.tgz","_integrity":"sha512-eUmPyVqQYzWCt7hx1QrYzQ7oC3MGKM1etxxe8zuq1o7IB4NzdBeWcUGDSWYahaI8fkd538SEZRGadyZWQfvOzQ==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"10.9.0","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"22.12.0","dependencies":{"keyv":"^5.2.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.60.0","tsup":"^8.3.5","rimraf":"^6.0.1","vitest":"^3.0.4","cacheable":"^1.8.8","typescript":"^5.7.3","@keyv/redis":"^4.2.0","@types/node":"^22.10.9","@faker-js/faker":"^9.4.0","@vitest/coverage-v8":"^3.0.4","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_6.4.0_1737651619437_0.23348171348399305","host":"s3://npm-registry-packages-npm-production"}},"6.4.1":{"name":"cache-manager","version":"6.4.1","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@6.4.1","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"ce56bd1492cc2e477a68722bf5bfa492a69c03bb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-6.4.1.tgz","fileCount":7,"integrity":"sha512-DVy28v0FbeBp2SmFgKTa4o6muKP3T78Id0nht5D6mBAar1Nuc5z4nL6G0jpnEbYq8FS10dtrBNzQri5l9uJ/zA==","signatures":[{"sig":"MEUCIQCW8qtur4ul6XZxuWsUH/ltj4BHMczdXd3QEyo1FUMVvAIgeqT6ZeMXXZk47ejgOpfOszzZ5U0N+SQfzK8WIPFWGaI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":47679},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-6.4.1.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run","prepublish":"pnpm run build"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/q4/x95kq1ln6cd7rrnct9cby32r0000gn/T/99e9b71ee15694bdda9a61721016bb8b/cache-manager-6.4.1.tgz","_integrity":"sha512-DVy28v0FbeBp2SmFgKTa4o6muKP3T78Id0nht5D6mBAar1Nuc5z4nL6G0jpnEbYq8FS10dtrBNzQri5l9uJ/zA==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"11.1.0","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"22.12.0","dependencies":{"keyv":"^5.3.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.60.0","tsup":"^8.4.0","rimraf":"^6.0.1","vitest":"^3.0.7","cacheable":"^1.8.9","typescript":"^5.8.2","@keyv/redis":"^4.3.1","@types/node":"^22.13.9","@faker-js/faker":"^9.5.1","@vitest/coverage-v8":"^3.0.7","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_6.4.1_1741044425601_0.54323165400267","host":"s3://npm-registry-packages-npm-production"}},"6.0.0":{"name":"cache-manager","version":"6.0.0","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@6.0.0","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"b11cf42fcbc4ca9fa20f44b7cedee0e2846445d3","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-6.0.0.tgz","fileCount":7,"integrity":"sha512-X1sN/GF0FjJo4mDlNr+Ha2IHIjJbEwzrTA0eBbJA08P1x5cOZVva1Hdi2wyLDwJScekvGUPRw4R9OvvPsLZrJA==","signatures":[{"sig":"MEUCIQCCXK+LyF0ZRp5s80oN5UR3NozmT3MkWe9RqLPBQnLK+gIgXgncTJvvpqiVwQnixTrQixb1cQW67X1bChrBBOIoC14=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35109},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-6.0.0.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run --coverage"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/gs/5m4m2s857ts7l7nbvv0b57r80000gn/T/2b8c23873a754bf7ad198b1340f741a1/cache-manager-6.0.0.tgz","_integrity":"sha512-X1sN/GF0FjJo4mDlNr+Ha2IHIjJbEwzrTA0eBbJA08P1x5cOZVva1Hdi2wyLDwJScekvGUPRw4R9OvvPsLZrJA==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git"},"_npmVersion":"10.8.3","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"20.17.0","dependencies":{"keyv":"^5.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.59.3","tsup":"^8.3.0","rimraf":"^6.0.1","vitest":"^2.1.1","typescript":"^5.6.2","@types/node":"^22.5.5","@faker-js/faker":"^9.0.1","@vitest/coverage-v8":"^2.1.1","cache-manager-redis-yet":"^5.1.4"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_6.0.0_1727053208672_0.2559267199319706","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"cache-manager","version":"6.0.1","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@6.0.1","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"596f0a7ee6845d78e104ce4b40b24f56450e2aa8","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-6.0.1.tgz","fileCount":7,"integrity":"sha512-Ojs30wL2AwJKj4We9YzSi6hNqbsf9fjne0Qe3hmetn4Vv7fdJSAEnRMaxjvfS/316S/5n9hhJ7vkw65e+wgS/A==","signatures":[{"sig":"MEUCIQCbi2dM11fzW0ilRh240lRaOjtSQixzqVL4GrRMmJC0CgIgL0Adzz+SiKak1x30bThExgz01vetXpHCAV6hDMRUeZk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35093},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-6.0.1.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run --coverage"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/3caac23d2dc50aedd01ef55a8028d189/cache-manager-6.0.1.tgz","_integrity":"sha512-Ojs30wL2AwJKj4We9YzSi6hNqbsf9fjne0Qe3hmetn4Vv7fdJSAEnRMaxjvfS/316S/5n9hhJ7vkw65e+wgS/A==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git"},"_npmVersion":"10.8.2","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"20.17.0","dependencies":{"keyv":"^5.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.59.3","tsup":"^8.3.0","rimraf":"^6.0.1","vitest":"^2.1.1","typescript":"^5.6.2","@types/node":"^22.6.1","@faker-js/faker":"^9.0.2","@vitest/coverage-v8":"^2.1.1","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_6.0.1_1727190502716_0.21164845632342244","host":"s3://npm-registry-packages"}},"5.2.0":{"name":"cache-manager","version":"5.2.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.2.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"},{"name":"botikass","email":"mhpoin@gmail.com"}],"homepage":"https://github.com/node-cache-manager/node-cache-manager#readme","bugs":{"url":"https://github.com/node-cache-manager/node-cache-manager/issues"},"dist":{"shasum":"2ea6bd8cf6bfb1bd40690a1fe194327595e3bd8f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.2.0.tgz","fileCount":19,"integrity":"sha512-jwXDLtn8tQGS2vGDTKAhee2OhuX/2cgxlh97fqMnWp328VszIn064BFyKZ87dwp9GmlBFuHYfaVQehI85hFwIw==","signatures":[{"sig":"MEYCIQCLeO97N9jhU+zSTg2jcOA+rRJIhAc8FGb9b/Q4bGuA1QIhALtLmddqrTpvJFDzZp6knS7YwfRL6g+aAeI4yY44YOsb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77828,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkGS02ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpCKw//coL0mTk3vkj/WAx1FiZ7WuNVHRLoSFzqUznKa/X6UZWyoGdk\r\nnKIRQq2mjQiHBLllHMrOu78E8+/MvugpvT7CZ/WPrppenq8jNudexlX6izZs\r\nPmJR2504k8Kcbq4n5CyzjDcGVHASLid394GFowF0JCIbdekAjz4aQYuyYzOn\r\nt61aWgCo8TL5ocRUK04krK64m9GJXl6r9jW3tXndZjKib66kxL3MkVcPN/uT\r\n/1NFcNZZ1addoFdzR9OvYjQMQrJqB++igsDwTePXJHG6GcDXSoWdVGZxO32E\r\nblY/zdBIjGVYzkHq2mPLzsRBQDRsLNLAtgPQZA4/w2mae+sH/RaqAPXpO7/X\r\ne/DNnvR/kiMs/zcBLTuNdv4PJSIRIi+ehuhDQFTobNgpQbHNASt4NMzTCceN\r\nc0OQwWsxn08JZX7OFFZ7T4neaHk3pWOcm5LhzsMSwT0PLgen4PEFTA0/7hbM\r\nd+ucrflk2lzIopPd+ucEsp+AcoXJbUHwDgkBZTlfT+V1y/o1wAdK3m17yOB+\r\n8jmfYMCiUex1I5nHt5+BcT1fLdXksQKKAm+QEq2yc2Ava9FNCBBMoSBGiFc2\r\n26jDuIUy5FXWzMv5hsAdhaBVVwMfj5+i7ec2j/TjpbxIdBJiV/NQl11EOTMr\r\niypkILI7ds9Tivrv5QrsMjfKJGi7oCcj/6Q=\r\n=HNzB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","_from":"file:cache-manager-5.2.0.tgz","types":"dist/index.d.ts","authors":[{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"pnpm lint && pnpm fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.{ts,mts,js}'","test":"vitest","build":"rm -rf dist && tsc -p tsconfig.build.json","check":"pnpm lint:check && pnpm fmt:check","release":"pnpm check && pnpm test -- --run && pnpm build && dotenv release-it","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.{ts,mts,js}'"},"_npmUser":{"name":"botikass","email":"mhpoin@gmail.com"},"_resolved":"/tmp/ada3db82f3ec8855cebab87143a63cd2/cache-manager-5.2.0.tgz","_integrity":"sha512-jwXDLtn8tQGS2vGDTKAhee2OhuX/2cgxlh97fqMnWp328VszIn064BFyKZ87dwp9GmlBFuHYfaVQehI85hFwIw==","repository":{"url":"git+https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"_npmVersion":"8.18.0","description":"Cache module for Node.js","directories":{},"lint-staged":{"*.{md,json,yml}":"prettier --write","*.{ts,js,mts,mjs}":"eslint --cache --fix"},"_nodeVersion":"18.8.0","dependencies":{"lru-cache":"~7.18.3","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"8.0.3","eslint":"8.36.0","vitest":"0.29.7","prettier":"2.8.5","dotenv-cli":"7.1.0","release-it":"15.9.0","typescript":"5.0.2","@types/node":"18.15.5","lint-staged":"13.2.0","@commitlint/cli":"17.4.4","@faker-js/faker":"7.6.0","@vitest/coverage-c8":"0.29.7","eslint-config-prettier":"8.8.0","eslint-plugin-prettier":"4.2.1","@types/lodash.clonedeep":"4.5.7","@typescript-eslint/parser":"5.56.0","@commitlint/config-conventional":"17.4.4","@typescript-eslint/eslint-plugin":"5.56.0","@release-it/conventional-changelog":"5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.2.0_1679371574697_0.9389131269639663","host":"s3://npm-registry-packages"}},"5.2.1":{"name":"cache-manager","version":"5.2.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.2.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"},{"name":"botikass","email":"mhpoin@gmail.com"}],"homepage":"https://github.com/node-cache-manager/node-cache-manager#readme","bugs":{"url":"https://github.com/node-cache-manager/node-cache-manager/issues"},"dist":{"shasum":"c1fbc1b56da2f364c4f8eb8385bf94a19a00befd","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.2.1.tgz","fileCount":19,"integrity":"sha512-qYHx0DlM0mepUqXkpDg83K1dYEXOinq9+sYdHxs1c5LQjR1MPgm34im+JVtsy9+uoeE2T1JLzJSAB+nV4IH5dQ==","signatures":[{"sig":"MEUCIQD+a3M5u/VBq0/+eUouenQJ3zIdnYWvEgZnidVHirJPqQIgBsdZz4XHUf2YgHX5CqHpXSwRkSCLhFykODNdTdIM/FY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57782,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkRZc/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrhKxAAopc/mBLjAo6LHVmda7pyK6rB7cTfeEBOhjNTaTnsO/3RDs7k\r\np0pmzQmN6aYU4I9Gw/Fq36m3+nfrglsMWfIAbvBKU0032Tr7Gxi2elZLWsl0\r\n7UdIf806wIPzpRcQOmXadajassqZiJCP0imqrzCBne9wpW+Ymt8HXNE9DCqR\r\nwbebWyiTz3C1//9qaSB2ddtxNjWcFBN+hV0agRqKy1KZZs7vqD4km1xZLIpf\r\n797dZF8NUPEBEWSxnz0kR3wTx5Op+iGss4D0poIXsHqClOmcpUL81JiolDHe\r\nx/AeHJFjGsr4mnYVjV52CQLj4DK+vJUxwq4t4srxyKH8YVSvfVntp6VJBEQw\r\nlPJqI7w/hoauT1ClVwsCUHtX6IAUZHjTN1BTaabMzkJ1v1/X/PDk0N2JdgTP\r\noN5r5kZwq7iBXx2YAqoEwc6MBIlO60+P6Mpvx1mOCv9X/EAzK1te8CH6aqdY\r\n7YpkwldOFmZvUUjqQwXTIcmeERnCSps/aFlc1FLRGAtRfDNGfRsTkE9Mgs5R\r\nAtgC/PppO9sKbuS0zqNhOKXg3MQDdf75Yi6cPME9h2CChuyh8FPWpxvG0ZXS\r\nb38Z2ZmomefI2lq4XoU+zjAVWOBtVy6u239bmDLuZUH5sUIghVXU8JdX5Sqt\r\nn2eYZOEegVLm35VPqy46L/jC9VjhB9AQstU=\r\n=XvHn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","_from":"file:cache-manager-5.2.1.tgz","types":"dist/index.d.ts","authors":[{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"pnpm lint && pnpm fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.{ts,mts,js}'","test":"vitest","build":"rm -rf dist && tsc -p tsconfig.build.json","check":"pnpm lint:check && pnpm fmt:check","release":"pnpm check && pnpm test -- --run && pnpm build && dotenv release-it","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.{ts,mts,js}'"},"_npmUser":{"name":"botikass","email":"mhpoin@gmail.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"_npmVersion":"6.14.17","description":"Cache module for Node.js","directories":{},"lint-staged":{"*.{md,json,yml}":"prettier --write","*.{ts,js,mts,mjs}":"eslint --cache --fix"},"_nodeVersion":"14.21.2","dependencies":{"lru-cache":"~9.1.1","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"8.0.3","eslint":"8.39.0","vitest":"0.30.1","prettier":"2.8.8","dotenv-cli":"7.2.1","release-it":"15.10.1","typescript":"5.0.4","@types/node":"18.16.0","lint-staged":"13.2.1","@commitlint/cli":"17.6.1","@faker-js/faker":"7.6.0","@vitest/coverage-c8":"0.30.1","eslint-config-prettier":"8.8.0","eslint-plugin-prettier":"4.2.1","@types/lodash.clonedeep":"4.5.7","@typescript-eslint/parser":"5.59.0","@commitlint/config-conventional":"17.6.1","@typescript-eslint/eslint-plugin":"5.59.0","@release-it/conventional-changelog":"5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.2.1_1682282303571_0.1691010164123572","host":"s3://npm-registry-packages"}},"5.2.2":{"name":"cache-manager","version":"5.2.2","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.2.2","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"},{"name":"botikass","email":"mhpoin@gmail.com"}],"homepage":"https://github.com/node-cache-manager/node-cache-manager#readme","bugs":{"url":"https://github.com/node-cache-manager/node-cache-manager/issues"},"dist":{"shasum":"1f2e3328247a3c5c63b722cadab6e084b924d320","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.2.2.tgz","fileCount":19,"integrity":"sha512-QYEct/rVt5HfNvyWpHQurOa1IgpjP9V0X3E5O8rdEmuKcucpnMs7CwK0bHvv92svxZXlN2w5hgMFdrbiYoHeIQ==","signatures":[{"sig":"MEUCIHkqFAWh08ce2x4tZ+E9fghqiegPSNlZix7cni1G0eVCAiEAxhyfvFgmlmnOhErY9d+XWy1ceBvr+q72hkeRwe0gaz8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57740},"main":"dist/index.js","_from":"file:cache-manager-5.2.2.tgz","types":"dist/index.d.ts","authors":[{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"pnpm lint && pnpm fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.{ts,mts,js}'","test":"vitest","build":"rm -rf dist && tsc -p tsconfig.build.json","check":"pnpm lint:check && pnpm fmt:check","release":"pnpm check && pnpm test -- --run && pnpm build && dotenv release-it","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.{ts,mts,js}'"},"_npmUser":{"name":"botikass","email":"mhpoin@gmail.com"},"_resolved":"/tmp/0d7e1c607fcf7b6f9aad36797683fada/cache-manager-5.2.2.tgz","_integrity":"sha512-QYEct/rVt5HfNvyWpHQurOa1IgpjP9V0X3E5O8rdEmuKcucpnMs7CwK0bHvv92svxZXlN2w5hgMFdrbiYoHeIQ==","repository":{"url":"git+https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"_npmVersion":"8.19.2","description":"Cache module for Node.js","directories":{},"lint-staged":{"*.{md,json,yml}":"prettier --write","*.{ts,js,mts,mjs}":"eslint --cache --fix"},"_nodeVersion":"18.12.1","dependencies":{"lru-cache":"~9.1.1","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"8.0.3","eslint":"8.41.0","vitest":"0.31.1","prettier":"2.8.8","dotenv-cli":"7.2.1","release-it":"15.10.3","typescript":"5.0.4","@types/node":"20.2.5","lint-staged":"13.2.2","@commitlint/cli":"17.6.3","@faker-js/faker":"8.0.2","@vitest/coverage-c8":"0.31.1","eslint-config-prettier":"8.8.0","eslint-plugin-prettier":"4.2.1","@types/lodash.clonedeep":"4.5.7","@typescript-eslint/parser":"5.59.7","@commitlint/config-conventional":"17.6.3","@typescript-eslint/eslint-plugin":"5.59.7","@release-it/conventional-changelog":"5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.2.2_1685898293207_0.04558477273180572","host":"s3://npm-registry-packages"}},"5.2.3":{"name":"cache-manager","version":"5.2.3","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.2.3","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"},{"name":"botikass","email":"mhpoin@gmail.com"}],"homepage":"https://github.com/node-cache-manager/node-cache-manager#readme","bugs":{"url":"https://github.com/node-cache-manager/node-cache-manager/issues"},"dist":{"shasum":"b6a8b4469c57fdfdae1deed7f81ea9e057c7eade","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.2.3.tgz","fileCount":19,"integrity":"sha512-9OErI8fksFkxAMJ8Mco0aiZSdphyd90HcKiOMJQncSlU1yq/9lHHxrT8PDayxrmr9IIIZPOAEfXuGSD7g29uog==","signatures":[{"sig":"MEQCIFZ+aqJ1Er9HcZxFSIDLu4Hf6FLWRPzwv2eG7P8buBG5AiAo3pLTpy/1h0qvJPnq61b7ir7a05kIfegI/OrXVJ5M4Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57928},"main":"dist/index.js","_from":"file:cache-manager-5.2.3.tgz","types":"dist/index.d.ts","authors":[{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"pnpm lint && pnpm fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.{ts,mts,js}'","test":"vitest","build":"rm -rf dist && tsc -p tsconfig.build.json","check":"pnpm lint:check && pnpm fmt:check","release":"pnpm check && pnpm test -- --run && pnpm build && dotenv release-it","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.{ts,mts,js}'"},"_npmUser":{"name":"botikass","email":"mhpoin@gmail.com"},"_resolved":"/tmp/aea4677ebac73a3cf8fa2cded0603155/cache-manager-5.2.3.tgz","_integrity":"sha512-9OErI8fksFkxAMJ8Mco0aiZSdphyd90HcKiOMJQncSlU1yq/9lHHxrT8PDayxrmr9IIIZPOAEfXuGSD7g29uog==","repository":{"url":"git+https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"_npmVersion":"8.19.4","description":"Cache module for Node.js","directories":{},"lint-staged":{"*.{md,json,yml}":"prettier --write","*.{ts,js,mts,mjs}":"eslint --cache --fix"},"_nodeVersion":"16.20.0","dependencies":{"lru-cache":"^9.1.2","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"8.0.3","eslint":"8.42.0","vitest":"0.32.0","prettier":"2.8.8","dotenv-cli":"7.2.1","release-it":"15.11.0","typescript":"5.1.3","@types/node":"20.3.1","lint-staged":"13.2.2","@commitlint/cli":"17.6.5","@faker-js/faker":"8.0.2","@vitest/coverage-v8":"0.32.0","eslint-config-prettier":"8.8.0","eslint-plugin-prettier":"4.2.1","@types/lodash.clonedeep":"4.5.7","@typescript-eslint/parser":"5.59.11","@commitlint/config-conventional":"17.6.5","@typescript-eslint/eslint-plugin":"5.59.11","@release-it/conventional-changelog":"5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.2.3_1686769265371_0.3022570056568299","host":"s3://npm-registry-packages"}},"5.2.4":{"name":"cache-manager","version":"5.2.4","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.2.4","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"dist":{"shasum":"01bebe2cc6bef993e3e959d59d3a25a3f2658df1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.2.4.tgz","fileCount":23,"integrity":"sha512-gkuCjug16NdGvKm/sydxGVx17uffrSWcEe2xraBtwRCgdYcFxwJAla4OYpASAZT2yhSoxgDiWL9XH6IAChcZJA==","signatures":[{"sig":"MEUCIQCfu09GcrAwU7FZhEdzG5Ii1p0Gc7vJYENIYFfjkks/6wIgOBmqCwLUaMMD/YExnaMPH6Achj2yXLMUGCR/+lQHous=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":79116},"main":"dist/index.js","types":"dist/index.d.ts","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"yarn lint && yarn fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.{ts,mts,js}'","test":"vitest","build":"rm -rf dist && tsc -p tsconfig.build.json","check":"yarn lint:check && yarn fmt:check","release":"yarn check && yarn test -- --run && yarn build","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.{ts,mts,js}'"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"repository":{"url":"https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"description":"Cache module for Node.js","directories":{},"licenseText":"MIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.\n","lint-staged":{"*.{md,json,yml}":"prettier --write","*.{ts,js,mts,mjs}":"eslint --cache --fix"},"dependencies":{"lru-cache":"^10.0.1","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"8.50.0","vitest":"0.34.6","prettier":"3.0.3","dotenv-cli":"7.3.0","typescript":"5.2.2","@types/node":"20.8.2","lint-staged":"14.0.1","@faker-js/faker":"8.1.0","@vitest/coverage-v8":"0.34.6","eslint-config-prettier":"9.0.0","eslint-plugin-prettier":"5.0.0","@types/lodash.clonedeep":"4.5.7","@typescript-eslint/parser":"6.7.4","@typescript-eslint/eslint-plugin":"6.7.4"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.2.4_1696617394939_0.5464977177858981","host":"s3://npm-registry-packages"}},"5.6.0":{"name":"cache-manager","version":"5.6.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.6.0","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cache-manager#readme","bugs":{"url":"https://github.com/jaredwray/cache-manager/issues"},"xo":{"extends":"xo-typescript","extensions":["ts","tsx"]},"dist":{"shasum":"12efa79b1e1333010e0648af693ec61a2289842e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.6.0.tgz","fileCount":13,"integrity":"sha512-b4nzz8VGKqth9CmFtt/PSNn3uUa3FLp3+r+SoccMfslETlNx3HNcyXKouL7WIQv66q9te8bxUyNVDLMbvph3lw==","signatures":[{"sig":"MEYCIQDgp4PFlGdYtr14MnSHpQJ0Tax/A9dBJe/644So5Ma1LwIhALU4kB10S4Jk7lq0nzkFYdRQEte5EDJo/22xoRA5G5TA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30743},"main":"dist/index.js","_from":"file:cache-manager-5.6.0.tgz","types":"dist/index.d.ts","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"engines":{"node":">= 18"},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsc -p tsconfig.build.json","clean":"rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml","test:ci":"xo && vitest run"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/9965f3af68ac887df7e5b1a0dda799f0/cache-manager-5.6.0.tgz","_integrity":"sha512-b4nzz8VGKqth9CmFtt/PSNn3uUa3FLp3+r+SoccMfslETlNx3HNcyXKouL7WIQv66q9te8bxUyNVDLMbvph3lw==","repository":{"url":"git+https://github.com/jaredwray/cache-manager.git","type":"git"},"_npmVersion":"10.2.4","description":"Cache module for Node.js","directories":{},"_nodeVersion":"18.19.1","dependencies":{"lru-cache":"^10.2.2","eventemitter3":"^5.0.1","lodash.clonedeep":"^4.5.0","promise-coalesce":"^1.1.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.58.0","rimraf":"^5.0.7","vitest":"^1.6.0","typescript":"^5.4.5","@types/node":"^20.12.12","@faker-js/faker":"^8.4.1","@vitest/coverage-v8":"^1.6.0","@types/lodash.clonedeep":"^4.5.9","@typescript-eslint/parser":"^7.10.0","eslint-config-xo-typescript":"^4.0.0","@typescript-eslint/eslint-plugin":"^7.10.0"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.6.0_1717597196042_0.6541812231841311","host":"s3://npm-registry-packages"}},"5.6.1":{"name":"cache-manager","version":"5.6.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.6.1","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cache-manager#readme","bugs":{"url":"https://github.com/jaredwray/cache-manager/issues"},"xo":{"extends":"xo-typescript","extensions":["ts","tsx"]},"dist":{"shasum":"8ec19a833e2011044806221bade9cb2099a65f78","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.6.1.tgz","fileCount":13,"integrity":"sha512-9uTQmLPaTKpvO38RXOm54jfPyrcXR+51NzNdba+Jaydnz8v5l/YEA6l/MsSSeAvF6s43+K4wojIGJC9i6cLfJg==","signatures":[{"sig":"MEUCIQC3Ti9zDKHRvoSAQI8xE4PNKRZaIeiJK28Igy29/hbLjQIgOWYcLlZFpn2qWAt+7Ne1EQlaUIxG00pVbrk/9vmq0jE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33402},"main":"dist/index.js","_from":"file:cache-manager-5.6.1.tgz","types":"dist/index.d.ts","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"engines":{"node":">= 18"},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsc -p tsconfig.build.json","clean":"rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml","test:ci":"xo && vitest run"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/07871e054406fc8a992712ae5b2dfe2f/cache-manager-5.6.1.tgz","_integrity":"sha512-9uTQmLPaTKpvO38RXOm54jfPyrcXR+51NzNdba+Jaydnz8v5l/YEA6l/MsSSeAvF6s43+K4wojIGJC9i6cLfJg==","repository":{"url":"git+https://github.com/jaredwray/cache-manager.git","type":"git"},"_npmVersion":"10.2.4","description":"Cache module for Node.js","directories":{},"_nodeVersion":"18.19.1","dependencies":{"lru-cache":"^10.2.2","eventemitter3":"^5.0.1","lodash.clonedeep":"^4.5.0","promise-coalesce":"^1.1.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.58.0","rimraf":"^5.0.7","vitest":"^1.6.0","typescript":"^5.4.5","@types/node":"^20.12.12","@faker-js/faker":"^8.4.1","@vitest/coverage-v8":"^1.6.0","@types/lodash.clonedeep":"^4.5.9","@typescript-eslint/parser":"^7.10.0","eslint-config-xo-typescript":"^4.0.0","@typescript-eslint/eslint-plugin":"^7.10.0"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.6.1_1717611126409_0.9126810958653884","host":"s3://npm-registry-packages"}},"0.1.3":{"name":"cache-manager","version":"0.1.3","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.1.3","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"dfeae987b8669b2a1625d5f9a34233e8156eeec7","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.1.3.tgz","integrity":"sha512-pbtgRtqQeMv94Hqz5aCqzoyQWRe9HgjQjolRf251m5Xs6lCMMSmZeUysuahwenjFulGRjHE8HJnDJJyAzKzTVw==","signatures":[{"sig":"MEQCIFB6UdEbNGBlrtZ5/gyHpbMxrHrL3xkr4ydxWojdvc8QAiAWjWGYzwMCXGZBNNTZbigGpDn8OaFUlFadmPPDAm7LhQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.3.2","description":"Cache module for Node.js","directories":{},"dependencies":{"async":">=0.1.22","lru-cache":">=2.3.0"},"devDependencies":{"mocha":">=1.8.1","sinon":">=1.5.2","jshint":">=1.0.1","istanbul":">=0.1.29","optimist":">=0.3.5","coveralls":"~2.3.0"}},"0.5.0":{"name":"cache-manager","version":"0.5.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.5.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"2b2de7fdf51f0a49b161a528abacecf95f86a05b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.5.0.tgz","integrity":"sha512-UtU5LT2sozNQgOHv+O+nrfgkXx9IZrIcaZ6YSyarMiyUwK6O3uaBiGc1LFD67+nB09dkwwrt04y113S2vpDllw==","signatures":[{"sig":"MEUCIQDLUgLP3L7PNOGcVErgBuJiq1sq6HDRdkOrYnNZPyfagQIgM2uzCU74mZbRUw++i+uEAh6hkxcCZgRdjDnFIqUxmyY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.4.6","description":"Cache module for Node.js","directories":{},"dependencies":{"async":">=0.1.22","lru-cache":">=2.3.0"},"devDependencies":{"mocha":">=1.8.1","sinon":">=1.5.2","jshint":">=1.0.1","istanbul":">=0.1.29","optimist":">=0.3.5","coveralls":"~2.3.0"}},"0.9.0":{"name":"cache-manager","version":"0.9.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.9.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"14d10980fba11942855d3e09aeff1a7defd0cd5f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.9.0.tgz","integrity":"sha512-DkKGW/2A5FmclY1/VYBF2g6Cqubrbo3KeayeCNN1bp6HRL2KqVwdLmB2pjZpcpSLeZ3KSbkh7MMWS5M5sT2ooQ==","signatures":[{"sig":"MEQCIHLGeLMhluvovF5tZeZ8vIJmAUTDhzaEjRaXsnTHigNSAiBxM4CkiLzZfvaYg8XlfwegwRYiKVcM5T1DVWTnNzEggQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"14d10980fba11942855d3e09aeff1a7defd0cd5f","gitHead":"44c37110cd53b92959f9c236da7535c9f9598d9d","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.4.23","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"^2.5.0"},"devDependencies":{"mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.1","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}},"0.1.1":{"name":"cache-manager","version":"0.1.1","keywords":["cache","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.1.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"1c5970ceadafebb2b118297009370b1377470ee1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.1.1.tgz","integrity":"sha512-4yxxbO/4lhEseNEM9rfGWTTv2V/m6q46GL2IoKqcp980f+e5ZtFJHZvqRuwR/RQwb2phiuKv2z4YHbAP/P6Lqw==","signatures":[{"sig":"MEYCIQCpos0HgbYoMx6jbZrX7wv7/oUDYkOpO6IDGz4Y6QVLTAIhAInwIHZ/eDcDIzXDf1OaGDq4S8EKVBRlwQCRZZOCWAmm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.3.2","description":"Cache module for Node.js","directories":{},"dependencies":{"async":">=0.1.22","lru-cache":">=2.3.0"},"devDependencies":{"mocha":">=1.8.1","sinon":">=1.5.2","jshint":">=1.0.1","istanbul":">=0.1.29","optimist":">=0.3.5","coveralls":"~2.3.0"}},"0.1.2":{"name":"cache-manager","version":"0.1.2","keywords":["cache","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.1.2","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"f49596b598b88954c968ac8cdab7c10ccbe93328","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.1.2.tgz","integrity":"sha512-VGuVYK29L4N3QwgCljB2OFdSQYHusQ7t+kYH8/D9/RvyfGSuGNjrB/B7JhymeLaiZo+p1a+PqC9+yC2uziF3bg==","signatures":[{"sig":"MEQCIBCgESRtRaRgKKTtjXDh1Fm86cxtiyCR5i0WU/3hlRYCAiBpIcYspisk2TiEP+MwSNfssmuo+tqNlAihpVLfbmTDUw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.3.2","description":"Cache module for Node.js","directories":{},"dependencies":{"async":">=0.1.22","lru-cache":">=2.3.0"},"devDependencies":{"mocha":">=1.8.1","sinon":">=1.5.2","jshint":">=1.0.1","istanbul":">=0.1.29","optimist":">=0.3.5","coveralls":"~2.3.0"}},"6.4.2":{"name":"cache-manager","version":"6.4.2","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@6.4.2","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"a2d3f8c52b0b19849b41ccfca7dde1b81d4ab1de","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-6.4.2.tgz","fileCount":7,"integrity":"sha512-oT0d1cGWZAlqEGDPjOfhmldTS767jT6kBT3KIdn7MX5OevlRVYqJT+LxRv5WY4xW9heJtYxeRRXaoKlEW+Biew==","signatures":[{"sig":"MEUCIQCeZAZp8xuwsng3pvgzDWssHaqWbxSnuildIWdNAVFYtgIgdmxRXGWU5WGqjmu2q75zelvmh+bwdTJM5lEWeeayYXA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":49461},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-6.4.2.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run","prepublish":"pnpm run build"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/0af9244a43ae953aedac272ee065c1f4/cache-manager-6.4.2.tgz","_integrity":"sha512-oT0d1cGWZAlqEGDPjOfhmldTS767jT6kBT3KIdn7MX5OevlRVYqJT+LxRv5WY4xW9heJtYxeRRXaoKlEW+Biew==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"10.9.0","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"20.17.0","dependencies":{"keyv":"^5.3.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.60.0","tsup":"^8.4.0","rimraf":"^6.0.1","vitest":"^3.1.1","cacheable":"^1.8.10","typescript":"^5.8.2","@keyv/redis":"^4.3.2","@types/node":"^22.14.0","@faker-js/faker":"^9.6.0","@vitest/coverage-v8":"^3.1.1","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_6.4.2_1743871528030_0.7584380950233189","host":"s3://npm-registry-packages-npm-production"}},"0.1.0":{"name":"cache-manager","version":"0.1.0","keywords":["cache","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.1.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"a7141c085db9c094494f6fb0d24f8aa8be23c511","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.1.0.tgz","integrity":"sha512-CMuo8C9Igukaf9ksTJkNdxOfOe8eX/lpmyoddE+mmxE3jQHIf/XCwsVwijNP2O4H+2EqUWlPHUc5b1DNMrrhqA==","signatures":[{"sig":"MEUCIC4gCs6IpjTSFKG6qii9XJU7OB6anm7TV47M2BdS5s4HAiEA45bq/l1rWfG+niKtHCZoHqXd1v5tUbbZ/A61/PHK1Dw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"mocha"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.3.2","description":"Cache module for Node.js","directories":{},"dependencies":{"async":">=0.1.22","lru-cache":">=2.3.0"},"devDependencies":{"mocha":">=1.8.1","sinon":">=1.5.2","jshint":">=1.0.1","istanbul":">=0.1.29","optimist":">=0.3.5"}},"6.4.3":{"name":"cache-manager","version":"6.4.3","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@6.4.3","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"17a4a011cd4196195b10174156524ff972fd4ad7","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-6.4.3.tgz","fileCount":7,"integrity":"sha512-VV5eq/QQ5rIVix7/aICO4JyvSeEv9eIQuKL5iFwgM2BrcYoE0A/D1mNsAHJAsB0WEbNdBlKkn6Tjz6fKzh/cKQ==","signatures":[{"sig":"MEQCIGyNCS7hHF9KUZnT6rCSG3yt1ZPxwJ5Ps5ZbxzHfoB5GAiBcw5HimuUbeZ6LiNs64EXDqpqF6T9AAqVnwjdFF+gUJQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":50608},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-6.4.3.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run","prepublish":"pnpm run build"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/q4/x95kq1ln6cd7rrnct9cby32r0000gn/T/f315baa096843409cce7d45564fa9371/cache-manager-6.4.3.tgz","_integrity":"sha512-VV5eq/QQ5rIVix7/aICO4JyvSeEv9eIQuKL5iFwgM2BrcYoE0A/D1mNsAHJAsB0WEbNdBlKkn6Tjz6fKzh/cKQ==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"11.3.0","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"22.12.0","dependencies":{"keyv":"^5.3.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.60.0","tsup":"^8.4.0","rimraf":"^6.0.1","vitest":"^3.1.3","cacheable":"^1.9.0","typescript":"^5.8.3","@keyv/redis":"^4.4.0","@types/node":"^22.15.3","@vitest/spy":"^3.1.3","@faker-js/faker":"^9.7.0","@vitest/coverage-v8":"^3.1.3","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_6.4.3_1746546576102_0.95247492724653","host":"s3://npm-registry-packages-npm-production"}},"3.0.0":{"name":"cache-manager","version":"3.0.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@3.0.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"d5bc3b467550c3c78fb1b0cb0b5d50b9f18edd18","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-3.0.0.tgz","fileCount":28,"integrity":"sha512-+fzvyuo2nTOStFoz4H5nS6YMdraen3+eKiFrODBX5by4y4qTMwGqwFcMEIRfriLuwga29/25b3TJdQ+97pTAwQ==","signatures":[{"sig":"MEQCIFii1PCHWoIe274GOI2YU9pm1VREZNtO1/yySIO4b9vHAiBjGZcQ8EoMn1JY9wrph/BN23s3Vf3VOilKmigJ1HNZfw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":216989,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeUBH+CRA9TVsSAnZWagAAOucP/R6to86sufgF+Uf6Ncih\nj+HqF42BXYgdw6RoUGfePHM23vJld9PYOuxFeK8hRtmVt31NQfvtfICyioxS\nJOo59fm8G13RpF3CcuhfsjS3b4ukd8dRej6l7ZTIou4tOg5uR9HBfenqAiLU\nZ8CkGSjZ1+vQ0J645fDr1y9Av8V7udu2KG35yYPAGD5mYq58vfFZZ3ZJr1kd\n1iSS1WPNiw5Ro6Pff75WUFpDae5PONbSZlWCdu9FKH8WpvJ/I/g9vEiTJand\nnGCNlwnurXoerH2dbu2/twQTRupkEQOTwf1TV7xyC7hoGs0h6cKTpDZqvxF5\nocRVq2lOrpbQFLblj2zG1Vag9oGzoPr2Sxp88heEejcSfsZlK5x+kCYTzlhE\nAOKOcCsJMrOyWMGtL/kQtgME91bXuBppbdYMujg2J5eMbzBXSEBftOjE3b9V\ng0wXjp7nmjERo+69/p1dPoK4t/qpQT6FlsB9T+ICYIzlb6uBx8zx6X5dCk4F\nVSn0hhcL76LVTJ8ckajK902AV6BGrRZ0Dnj+ojiQ50+1cZGLP4UWE4XICYsX\nuWrImcv0qWG3aqnQkt2+rMwLepz1nbBMwY09wlP0u81E2J4zK4fbgmatEAwQ\nJiOog/PGINEcyNk3FOWmBaIdXrUU5DxjI55ooTM8501YWY0ne43l5fQ8lSEy\nBwjq\r\n=7PjK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"a66003a91176b82c54afa509c6126103a92a68a9","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.4.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.12.0","dependencies":{"async":"1.5.2","lru-cache":"4.0.0","lodash.clonedeep":"4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"14.1.1","jsdoc":"3.5.5","mocha":"7.0.1","sinon":"1.17.3","eslint":"5.16.0","optimist":"0.6.1","coveralls":"3.0.9","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_3.0.0_1582305789502_0.12138473724379817","host":"s3://npm-registry-packages"}},"3.4.1":{"name":"cache-manager","version":"3.4.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@3.4.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"57d366efc4b06fe2b1246d84356df7bc5e24674d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-3.4.1.tgz","fileCount":28,"integrity":"sha512-yE50UL7AcuQ1ZydREl9OvPYD74gw3qS9HtZTY+2gS7fcZeIsyiof2UF+WReqg5ZX+852anbDe1fAtjsaMYT2yw==","signatures":[{"sig":"MEUCIBAM1jMyPtv3K3Rk+VbZGJJEHnGoQ42tbieh9yN88U6RAiEA/7tyYCGNzy4RMCzK1ZhRwQPC+PZmggva2lc7MuhtNyQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":255320,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgQnHXCRA9TVsSAnZWagAAaZoQAJHILfAG0qoJcvI88zCQ\nNlRyWVvFw2rar1tt9Xqv0Or9n1c4P2sfIkPWGD52rvdaC33hNV+JtBfGp28J\nc/V4Gi5fEUn5V+DczUDsCjg50/5pWIMD7vqanD+OxdxAhYzwOUTbs0mKlqX/\n3bSjlCHJDiaAUcovgm52hYQhYVAVzKeDQrpK/zKnNFRJIORcCN0HGSzr3LO8\nh8ciDSmagyKjtYSRfH+E5PtGf62oIt/rmmjOyeB4WiXhh+RZ1sCxqi/iCeF9\nDLfsGHKIW7pT+y6ZQKHLQ2+UKBpgfzHw0psx7CM35ScysypFpgjP6jTFASgo\n/o842IS01nGc+dL3Z9MyzVfR3lzdO05MDiQnK4rJrSndfpJVfOa6K4vg2ggt\nSIb/idAsXc1wpENarEK00BSb/1ADhq6bFjTHEsMTm3TvYvBxUiQLV7rq3z4k\nvLFcMy0LCiPIFsqTcw2rxZltA4JCKo/KgMW+SsSMtLHTV8MytPG+9EOYGrcq\nKQtWONmcGlVPy80lbMBYWKxnvFyoXYJCngKqwO3tjHZPCyO+7SHbQpS8LfBW\nQDlrGG+IS42raNE8W1d9SeBcRf74xQ5ga/pF/MluGkBKqYIPiGMH48zRLgbU\ncuoLO/sc7qren4H6Wb2QogM4ZYbG/HrF957+e3gzuBM/ltPO18Ssj0cHK6t3\n4cup\r\n=UaHf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"f4991cec7fb6be82dd6a98c66423e4a05f1bed03","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.4.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.12.0","dependencies":{"async":"3.2.0","lodash":"^4.17.21","lru-cache":"6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","jsdoc":"3.6.5","mocha":"8.1.1","sinon":"9.0.3","eslint":"7.7.0","optimist":"0.6.1","coveralls":"3.1.0","es6-promise":"^4.2.8"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_3.4.1_1614967254444_0.990333614597128","host":"s3://npm-registry-packages"}},"7.2.7":{"name":"cache-manager","version":"7.2.7","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@7.2.7","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"dist":{"shasum":"17271c6bfd63ec6fc93dfe300882065acd29e1d8","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-7.2.7.tgz","fileCount":7,"integrity":"sha512-TKeeb9nSybk1e9E5yAiPVJ6YKdX9FYhwqqy8fBfVKAFVTJYZUNmeIvwjURW6+UikNsO6l2ta27thYgo/oumDsw==","signatures":[{"sig":"MEUCIQDH25RwhqZkovnuf6PLQleyKZm+k3VCEt4EghOit/ambgIgd1tcJ9UWLCudmZIfaBW4w0GYdVj7I1X7znUrDGpTFQ4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":52155},"main":"./dist/index.js","type":"module","_from":"file:cache-manager-7.2.7.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}}},"scripts":{"lint":"biome check --write --error-on-warnings","test":"pnpm lint && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"biome check --error-on-warnings && vitest run --coverage","prepublish":"pnpm run build"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/1d5939b18ae45f8eff4125dc636f8976/cache-manager-7.2.7.tgz","_integrity":"sha512-TKeeb9nSybk1e9E5yAiPVJ6YKdX9FYhwqqy8fBfVKAFVTJYZUNmeIvwjURW6+UikNsO6l2ta27thYgo/oumDsw==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"11.4.1","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"20.17.0","dependencies":{"keyv":"^5.5.4","@cacheable/utils":"^2.3.2"},"_hasShrinkwrap":false,"devDependencies":{"tsup":"^8.5.1","rimraf":"^6.1.2","vitest":"^4.0.15","cacheable":"^2.3.0","typescript":"^5.9.3","@keyv/redis":"^5.1.3","@types/node":"^24.10.1","@vitest/spy":"^4.0.15","@biomejs/biome":"^2.3.8","@faker-js/faker":"^10.1.0","@vitest/coverage-v8":"^4.0.15","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_7.2.7_1765312127868_0.07125842157843798","host":"s3://npm-registry-packages-npm-production"}},"3.4.2":{"name":"cache-manager","version":"3.4.2","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@3.4.2","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"a7c810688f85da71156183a893d097023971183b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-3.4.2.tgz","fileCount":15,"integrity":"sha512-Hh2G0b0AXhOxQ4k1bGyGlJ2woRIISRCFSb8EdiVtQ+Oc4ejI0e7cKLWHX+tAZ49DK2v0uFxV8b6gXMlzdpb6iQ==","signatures":[{"sig":"MEUCIAcY3pAKjvnhMS/mJ7LY2os++bkmUQaDYhSLMo68Ji0AAiEAtGkb09u/qdGQnNGUxZ1ARQev2pkMqQAfIu708ASiaKI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":79258,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgYkoYCRA9TVsSAnZWagAAvX4P/0K4ZWc93krRomDFZxH6\nD+DJh+orYnKZAts7i+AwdsEj3orZbEyST5ED0IOprr8Z+bm8zTHoTNydHEeH\nmE9z9BdNMrZLb5W5v6N8TkAgkaBofqf2TxPa1+SsUNxLzuLqCh3EMvLnA1iu\nB0DjRig3enQ5MShura71q0NE0G/czrdsnuzSbmFdfFZ0QIaSRIUKLX9wFrfw\nORkWahBJP1B5Aunfn0yOVYjVycxF5e/okX5Hds9vCpQ0aWATRnX8DiP5oVZR\nCXVJmNClr8ywopIDwNWgdn/92L80P4bIHkEPdZ8XU7vxzoDkfvaC2PrNTGSe\ncHdvYfJrDNhzGrtLzq+OSKeT9+O1enEJ1eCn7lMsL/pdopnG5SUqMf5pY5Ws\nUxrZ23fcIZ/OIEHtvL+zaDjv5ZcCH2cLK0SEQ4JKO6bSyn+6RHRwM5Z3oxuL\n89qE70mpUacH7jTBHb/lo0S2hGRA9hOGZx2A88YYy82WobP2ZBhti33FGn3B\nLbHHmu68+SwV3mbGG8e22nhktLTVXe/d1E+8cDFnGv2LCmuaSpTE8fu+xVxO\nqWmeSg2CP1H5wunR4Uk3zDu8CIwhy/KRNajLvsrTIJup6bOJZ5jTZU5gvhkw\njWZIIKFL0CVFu+nqPRNTWLqdn6RTf28YfAoaANUUtI7UASY57uJEC1FG16Tx\nPo4J\r\n=cOTL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"2677d58b8035c6d655455aa4b2c002cfca4e4e69","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.4.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.12.0","dependencies":{"async":"3.2.0","lodash":"^4.17.21","lru-cache":"6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","jsdoc":"3.6.5","mocha":"8.1.1","sinon":"9.0.3","eslint":"7.7.0","optimist":"0.6.1","coveralls":"3.1.0","es6-promise":"^4.2.8"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_3.4.2_1617054232476_0.6717810368620818","host":"s3://npm-registry-packages"}},"7.2.8":{"name":"cache-manager","version":"7.2.8","description":"Cache Manager for Node.js","type":"module","main":"./dist/index.js","module":"./dist/index.js","types":"./dist/index.d.ts","exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}}},"repository":{"type":"git","url":"git+https://github.com/jaredwray/cacheable.git","directory":"packages/cache-manager"},"keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"license":"MIT","dependencies":{"keyv":"^5.5.5","@cacheable/utils":"^2.3.3"},"devDependencies":{"@biomejs/biome":"^2.3.11","@faker-js/faker":"^10.2.0","@keyv/redis":"^5.1.3","@types/node":"^25.0.3","@vitest/coverage-v8":"^4.0.16","@vitest/spy":"^4.0.16","cache-manager-redis-yet":"^5.1.5","rimraf":"^6.1.2","tsup":"^8.5.1","typescript":"^5.9.3","vitest":"^4.0.16","cacheable":"^2.3.1"},"scripts":{"clean":"rimraf ./dist ./coverage ./node_modules","lint":"biome check --write --error-on-warnings","test":"pnpm lint && vitest run --coverage","test:ci":"biome check --error-on-warnings && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","prepublish":"pnpm run build"},"_id":"cache-manager@7.2.8","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"homepage":"https://github.com/jaredwray/cacheable#readme","_integrity":"sha512-0HDaDLBBY/maa/LmUVAr70XUOwsiQD+jyzCBjmUErYZUKdMS9dT59PqW59PpVqfGM7ve6H0J6307JTpkCYefHQ==","_resolved":"/private/var/folders/q4/x95kq1ln6cd7rrnct9cby32r0000gn/T/5ea8ab9ad39737f54adde1b1833cfc77/cache-manager-7.2.8.tgz","_from":"file:cache-manager-7.2.8.tgz","_nodeVersion":"22.12.0","_npmVersion":"11.6.0","dist":{"integrity":"sha512-0HDaDLBBY/maa/LmUVAr70XUOwsiQD+jyzCBjmUErYZUKdMS9dT59PqW59PpVqfGM7ve6H0J6307JTpkCYefHQ==","shasum":"a9d41f3dd3b4c9b56858f868b490477efe85823f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-7.2.8.tgz","fileCount":7,"unpackedSize":52155,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIF9B3OGh1N4bTW6y5M8ukGr+4+3KvVIFiDzH+qaXIZ6kAiEA49DB4F/c5wuwbK+W9lYwmKivhlvz2J6hqoVsVmEQmK4="}]},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"directories":{},"maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/cache-manager_7.2.8_1767992720484_0.8345790700503029"},"_hasShrinkwrap":false},"3.4.3":{"name":"cache-manager","version":"3.4.3","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@3.4.3","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"c978d58f82b414ade08903d4d72b56a80a4978be","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-3.4.3.tgz","fileCount":15,"integrity":"sha512-6+Hfzy1SNs/thUwo+07pV0ozgxc4sadrAN0eFVGvXl/X9nz3J0BqEnnEoyxEn8jnF+UkEo0MKpyk9BO80hMeiQ==","signatures":[{"sig":"MEQCIEEy7amZX5OTh5UXZvKmdVd3XJamSgS6C3PPF96Vrl44AiA/zQhzsUS+z2h+nVpBSOt9wMTLqsca3/Q2t6Qsiif9zw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":79334,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgY1HjCRA9TVsSAnZWagAACk0P/jq1o9mls9/nZUcW5bhN\n5h/jdpSYztJal/lGfgWZOnLo0Tjeh8lFy2GRMCcoX8S2Py98BHgjur2Y78XF\net+ldBtrCKtXuEASM/R/2yKamyd6KUBWRreI9jh64AKqX6y+rCYkvCKl5Rcs\nJ4EMIt33uK2X3dsEdgMMJoL3O3dO0S2RB5Y0AvB/iCq6mMn0EEP8XBuCfvGE\n/BbKwxsfyBFm+NwJirAUDOwoMF5Iqd7SMd3NQaNv46aahxpdWg7McYbzPh+v\nczJ0PRoxp6agXIMj8TpkEieSybtQ/8VlP24sBIZeZ579f+GWIE85M7hjUwy1\nWluBHdIcpF8y9HgO3H7Gkb0Mf8j0LgXwggeGE2/JvgRjhzvmAL9WHWriC/Vi\nZKwLcxyZpVpYCHck33lnhCRJVzWsnU/iD6Djk8Y0RlNbjKMYcH1aqsMcrcLI\ns5M3BazSXsAoScCFULyPajasrwz6EpLSd/dnkMk4w4/vFlPRtgeRDf36UZCh\nO7hm69SM28CkyUUCGHmLJWoH1f8mWULsXIrv2lVoE7f5FW2CahptWOGAXUjs\n34yW1hViK0pwJz0XUAaRQaTjNx+cZp6CoiUlSQd6fWJt/ilUUX34iNpq8JLY\nLuhAfz77UF8hiUz/Cb+C2Amahgp4Sbi5B6BWAKPVMbxh+E4Xv4JTjtJvSJQH\ntLwL\r\n=Jzo1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"2a5ed3ae2fe72ff410b76fce13e6cf7cdf4ad209","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.4.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.12.0","dependencies":{"async":"3.2.0","lodash":"^4.17.21","lru-cache":"6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","jsdoc":"3.6.5","mocha":"8.1.1","sinon":"9.0.3","eslint":"7.7.0","optimist":"0.6.1","coveralls":"3.1.0","es6-promise":"^4.2.8"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_3.4.3_1617121763055_0.1966019706546398","host":"s3://npm-registry-packages"}},"3.4.4":{"name":"cache-manager","version":"3.4.4","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@3.4.4","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"c69814763d3f3031395ae0d3a9a9296a91602226","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-3.4.4.tgz","fileCount":15,"integrity":"sha512-oayy7ukJqNlRUYNUfQBwGOLilL0X5q7GpuaF19Yqwo6qdx49OoTZKRIF5qbbr+Ru8mlTvOpvnMvVq6vw72pOPg==","signatures":[{"sig":"MEYCIQCfAb22pTZItvDDManDb9Hya2o00GfgbPuwRmJK/VEWLgIhALvuaun0x8HyLnR04vCvz5lAIciNJvPSR1wS+sngC9Jm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":79315,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgw4vDCRA9TVsSAnZWagAA8wAP/Rintna3OH1jPdRTAMOh\nBW/VfuHICFvActu4giKgnuNa8pOVBf4YnMAEDOs22sbi9xZK3LXXo9oyZNMG\nxGSG38mF7HU56HgMdCzLQLi4Cmxvu46C3njMa4rVsbW1vGM2awAvM3R43mI6\n0jSw/HzHPcI2JMMuN+lKWSz1d6qVhcbP/vNHoyHyiaKzZFuDhIkG7gw0dksT\nubQ4vG0Wcmz6UdaPlzkW3gzFZEdwJ4kJxnQTJx4JWLV+ySfG4RQw8ACU/EMW\nxaaRCcrrkUfY0MPhhFrZK7WWfG1QBspJ2670xITuMbe5vZqfdZx43bDRtjDH\npxmNpkKcu5WJZLCcYB7jVS8UYo3NxlVLRFJPZeYpYcaV0v9UHzmhBjtfNrDr\nICH+zdDOFB0YrRdQ/8y2BEZG9WMbkprsV8pomP2+DZ1sxQ9KxYU3T8S22xWY\nG3XZqjGMJcW2Uca/3KCwvlVgCDDIqPVC+YJUnC26/t3s2YZoIXD3/HQTfIrd\noxNgq2yHqiGHQ5So2x30+W9ZfFrC2RuWC2FUrocN7L71pUNWidZaaz2ghqj1\nQVg8Pv8+YLE/XS7ymMU1WsWrzZ88N6I65Mv3ifFKW5H+/2WwObqlXwYb8+qy\niEe0oxry+muN54Jbo+1lIL3xxZxLS6S62L5t+/04rYpLSGo7/kRCemYMhQls\nA1R4\r\n=HspP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"5d5f69c7b348c43fa61f4846990908f89684d09b","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.9.0","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.16.3","dependencies":{"async":"3.2.0","lodash":"^4.17.21","lru-cache":"6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","jsdoc":"3.6.5","mocha":"8.1.1","sinon":"9.0.3","eslint":"7.7.0","optimist":"0.6.1","coveralls":"3.1.0","es6-promise":"^4.2.8"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_3.4.4_1623428035093_0.18896027240842628","host":"s3://npm-registry-packages"}},"7.2.3":{"name":"cache-manager","version":"7.2.3","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@7.2.3","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"dist":{"shasum":"5f17c9dc92b4dde62eb02c1dd14104579efe9d21","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-7.2.3.tgz","fileCount":7,"integrity":"sha512-Wz4kXp589cKCBatEIYA3JYvzdklPAi6l6vVWcGdUrn3OdIOGUbtaj8qKNdAJpYbHsBo9RWerXakAgf1uEuk6OQ==","signatures":[{"sig":"MEUCIAM72kHl0emvk/wIyoosU6FTU2uTUWP/gatYKMv0OzBDAiEAxlUlIdaFh3of8/Mmtk8BukUce7eQ1cpRxoo/CMuQLv0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":52019},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-7.2.3.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"lint":"biome check --write --error-on-warnings","test":"pnpm lint && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"biome check --error-on-warnings && vitest run --coverage","prepublish":"pnpm run build"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/9b6f5afe55d13dfcdf449680f1ac178c/cache-manager-7.2.3.tgz","_integrity":"sha512-Wz4kXp589cKCBatEIYA3JYvzdklPAi6l6vVWcGdUrn3OdIOGUbtaj8qKNdAJpYbHsBo9RWerXakAgf1uEuk6OQ==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"11.4.1","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"20.17.0","dependencies":{"keyv":"^5.5.3","@cacheable/utils":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"tsup":"^8.5.0","rimraf":"^6.0.1","vitest":"^3.2.4","cacheable":"^2.0.3","typescript":"^5.9.2","@keyv/redis":"^5.1.1","@types/node":"^24.3.1","@vitest/spy":"^3.2.4","@biomejs/biome":"^2.2.3","@faker-js/faker":"^10.0.0","@vitest/coverage-v8":"^3.2.4","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_7.2.3_1759340742466_0.3461648719306021","host":"s3://npm-registry-packages-npm-production"}},"7.2.4":{"name":"cache-manager","version":"7.2.4","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@7.2.4","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"dist":{"shasum":"4f7d4870f8be4869d8ef58068e6131997fe4c824","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-7.2.4.tgz","fileCount":7,"integrity":"sha512-skmhkqXjPCBmrb70ctEx4zwFk7vb0RdFXlVGYWnFZ8pKvkzdFrFFKSJ1IaKduGfkryHOJvb7q2PkGmonmL+UGw==","signatures":[{"sig":"MEQCIDhNp2VvAxn5bUsjY0tPLBiB3d8OluNEdrkVgaZaKwNKAiAgjqnFyMUXaBMqSRMtIaGNT+BnmtGG+yPy6RXJL8EYoQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":39831},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-7.2.4.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"lint":"biome check --write --error-on-warnings","test":"pnpm lint && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean --minify","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"biome check --error-on-warnings && vitest run --coverage","prepublish":"pnpm run build"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/679f964caaadaa9e4be73aafd925b7af/cache-manager-7.2.4.tgz","_integrity":"sha512-skmhkqXjPCBmrb70ctEx4zwFk7vb0RdFXlVGYWnFZ8pKvkzdFrFFKSJ1IaKduGfkryHOJvb7q2PkGmonmL+UGw==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"11.4.1","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"20.17.0","dependencies":{"keyv":"^5.5.3","@cacheable/utils":"^2.1.0"},"_hasShrinkwrap":false,"devDependencies":{"tsup":"^8.5.0","rimraf":"^6.0.1","vitest":"^3.2.4","cacheable":"^2.1.0","typescript":"^5.9.3","@keyv/redis":"^5.1.2","@types/node":"^24.7.0","@vitest/spy":"^3.2.4","@biomejs/biome":"^2.2.5","@faker-js/faker":"^10.0.0","@vitest/coverage-v8":"^3.2.4","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_7.2.4_1759769501102_0.6664314377494946","host":"s3://npm-registry-packages-npm-production"}},"7.2.5":{"name":"cache-manager","version":"7.2.5","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@7.2.5","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"dist":{"shasum":"be275c1638735b7bd6b3f9c433374a3f2eb0d22e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-7.2.5.tgz","fileCount":7,"integrity":"sha512-Y5LF7olTrcKJn1NoKiWPOvjEiO5DfDVPxqZHETCRMaliC60KBNb4Ge/vEYep5TyaqpXvnpnPPo8zauCe6UzZwA==","signatures":[{"sig":"MEUCIQCkfuKlmAXHRvLxfrdp9i+RiEQZYgsdQYg2dIDgjbTWLgIgf0g5AlOWiTkrUXkYfPDnDm4XQ/nNcJGi4nuYENB75zE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":52018},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-7.2.5.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"lint":"biome check --write --error-on-warnings","test":"pnpm lint && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"biome check --error-on-warnings && vitest run --coverage","prepublish":"pnpm run build"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/9ea0577e8eeb7f8e1abb62cf22d665c9/cache-manager-7.2.5.tgz","_integrity":"sha512-Y5LF7olTrcKJn1NoKiWPOvjEiO5DfDVPxqZHETCRMaliC60KBNb4Ge/vEYep5TyaqpXvnpnPPo8zauCe6UzZwA==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"11.4.1","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"20.17.0","dependencies":{"keyv":"^5.5.4","@cacheable/utils":"^2.3.0"},"_hasShrinkwrap":false,"devDependencies":{"tsup":"^8.5.0","rimraf":"^6.1.0","vitest":"^4.0.8","cacheable":"^2.2.0","typescript":"^5.9.3","@keyv/redis":"^5.1.3","@types/node":"^24.10.0","@vitest/spy":"^4.0.8","@biomejs/biome":"^2.3.4","@faker-js/faker":"^10.1.0","@vitest/coverage-v8":"^4.0.8","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_7.2.5_1763311742089_0.6185248711467162","host":"s3://npm-registry-packages-npm-production"}},"3.4.0":{"name":"cache-manager","version":"3.4.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@3.4.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"6f352fa1ee95709878e3474e9ed8489ef751bba3","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-3.4.0.tgz","fileCount":28,"integrity":"sha512-+WtL5sKHGngtnzTHNFA6+gC0wjpAAUmwmprXOSeaCBOkohM8Nh7GvV8fC90NFrDh7m3i87AshGd39/yYbWNtWA==","signatures":[{"sig":"MEYCIQCF0u8uTc1Ge0AQjsRYs3lZOK1O5Kmt0GGTOli5Ampz8gIhAOEYZ9Cw7jx8wDuTeBpOrbBHqg3MWF0bW6BIj5i40vki","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":255254,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfTnK3CRA9TVsSAnZWagAADdoP/RmQxwxG0k1aYtlSPgAs\n4/w9TKaQcu4DXLTr+2arRVz4EUC5KgF5RG2jUaKucszzcO7U4LacvXA7eLiH\nOWuhc2tLJEu6j9NEg+LNn1ktxWDIUPGxE7XnEcsJQYweTeUO6SeDye70/Wjb\nbYAEBxvkC1UTnElhkLQe3Q+5gfWnF3xy7wZGCUvzrqFyHOutVOz5WUzC2Wn4\nhJFnYmErCqoLY06iNYMe4Qwn/fZFpWz38wfT0UVASA9SlHOf0kaEDLXLOUtk\np1z8bFY6r/AvPJwm8LwEG1Px3fYGPbIFsvEywNYItY+ojRlPGH6JjGZDgCGu\nu3Wb4Ff5zkUFgrCvMRcITQyWluBkhqkFKrj4aAfgjuPgjVtC+WckWp/jwNXQ\nk6jR2mrXptYT0MZUkjlypk7eTQrkF1rSl0Gc6XPSAxdEo15nzoRamtrXS7Ma\n/EScJa2q2TQ2tfr1dpjWjWa4ltnsI9xoQ/GmjcsnhGHpMFoPfycfYm2p8fmY\nk0s4M5/AwY5etZxs8hlYgTTrrIp62LkNOj9qUJKeN9vGgF5kz6EkYKgzURIz\nQisgyRPVmxnbufi51swAqwW0MCgIPSYojIImuiyUoOeXoRXF4Lx3Zx7GE18y\nv+olq4uc/IMsr9S6mhG/XUXmaiGztWMRjaO1Gs6+/tRTfidgJnyg6xJABahc\nnbjl\r\n=TOm+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"00e688c5b1de6e88446f6bc800b04094b2c7ebba","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.4.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.12.0","dependencies":{"async":"^3.2.0","lodash":"^4.17.20","lru-cache":"6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","jsdoc":"3.6.5","mocha":"8.1.1","sinon":"9.0.3","eslint":"7.7.0","optimist":"0.6.1","coveralls":"3.1.0","es6-promise":"^4.2.8"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_3.4.0_1598976694456_0.6484291350850508","host":"s3://npm-registry-packages"}},"7.2.6":{"name":"cache-manager","version":"7.2.6","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@7.2.6","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"dist":{"shasum":"0454d252fdc317012d29f42f455a0beb945ec192","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-7.2.6.tgz","fileCount":7,"integrity":"sha512-brlumw/nDaCO/AeJGoTWDNYvTRrr9y7n8o4hbE642hr6OPdnNdl2IPiq7d560iDUa9AM0Xe8CAYJPSPFEVTnDA==","signatures":[{"sig":"MEQCIGcSVTBBXMgJSA4EizwtZWA0tUm5gX0goEDpAqweC9KXAiAwew3rweuILjJf5WW5GWL7khRerkVJmMecW4Lwlpds9w==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":52143},"main":"./dist/index.js","type":"module","_from":"file:cache-manager-7.2.6.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}}},"scripts":{"lint":"biome check --write --error-on-warnings","test":"pnpm lint && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"biome check --error-on-warnings && vitest run --coverage","prepublish":"pnpm run build"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/q4/x95kq1ln6cd7rrnct9cby32r0000gn/T/c0105359789ff5383fe790cc937d07ee/cache-manager-7.2.6.tgz","_integrity":"sha512-brlumw/nDaCO/AeJGoTWDNYvTRrr9y7n8o4hbE642hr6OPdnNdl2IPiq7d560iDUa9AM0Xe8CAYJPSPFEVTnDA==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"11.6.0","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"22.12.0","dependencies":{"keyv":"5.5.4","@cacheable/utils":"^2.3.2"},"_hasShrinkwrap":false,"devDependencies":{"tsup":"8.5.1","rimraf":"6.1.2","vitest":"4.0.15","cacheable":"^2.3.0","typescript":"5.9.3","@keyv/redis":"5.1.3","@types/node":"24.10.1","@vitest/spy":"4.0.15","@biomejs/biome":"2.3.8","@faker-js/faker":"10.1.0","@vitest/coverage-v8":"4.0.15","cache-manager-redis-yet":"5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_7.2.6_1765061208646_0.7319768360409935","host":"s3://npm-registry-packages-npm-production"}},"7.1.0":{"name":"cache-manager","version":"7.1.0","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@7.1.0","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"d16bff46e6ca42ade0429bbacfc51ac477416437","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-7.1.0.tgz","fileCount":7,"integrity":"sha512-CzrGUt58dxUnbFo7OcmM5ee0SEo27ulCiXQIy6GbUMoSDs1UVlUSO00i+cPS+q994zcEy8KPN2JJF05Z8HEeiw==","signatures":[{"sig":"MEUCIDQj3zmk6YGLsX8tYGXSWS1Am00JvR9Otvan5tBJyrKHAiEAms3OEJ6MtKw62c+0GA3C6LAdB7C6oztjW4tzw/x/BgA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":53731},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-7.1.0.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run --coverage","prepublish":"pnpm run build"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/eb65ea4270c15451af671fe89c29ffb0/cache-manager-7.1.0.tgz","_integrity":"sha512-CzrGUt58dxUnbFo7OcmM5ee0SEo27ulCiXQIy6GbUMoSDs1UVlUSO00i+cPS+q994zcEy8KPN2JJF05Z8HEeiw==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"11.4.1","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"20.17.0","dependencies":{"keyv":"^5.3.4"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.0","tsup":"^8.5.0","rimraf":"^6.0.1","vitest":"^3.2.4","cacheable":"^1.10.3","typescript":"^5.8.3","@keyv/redis":"^4.6.0","@types/node":"^24.0.14","@vitest/spy":"^3.2.4","@faker-js/faker":"^9.9.0","@vitest/coverage-v8":"^3.2.4","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_7.1.0_1753897834975_0.8952418697387028","host":"s3://npm-registry-packages-npm-production"}},"7.1.1":{"name":"cache-manager","version":"7.1.1","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@7.1.1","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"0b231defef6ad06060ffe88b5622ae8201fb16e1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-7.1.1.tgz","fileCount":7,"integrity":"sha512-YZ5CXZ4cNOcVH5bokYE1Bo5NARvJhOkYAAwImGf7DozC0uyrT5Jqd5AWfPnSRavlHTPiHp2yZL3Q3ZEWBfkQvQ==","signatures":[{"sig":"MEUCID37v4HMqnoCs4RZDJmY8Hiqo7CtoJSdWuWGqFygukpuAiEAp9i9uuwb3GQHFxWAQWZFO+Hmses/+Mm24S6wUjeGKFk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":53730},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-7.1.1.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run --coverage","prepublish":"pnpm run build"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/q4/x95kq1ln6cd7rrnct9cby32r0000gn/T/8f782a106a74f5b8f41b629593bbe2a8/cache-manager-7.1.1.tgz","_integrity":"sha512-YZ5CXZ4cNOcVH5bokYE1Bo5NARvJhOkYAAwImGf7DozC0uyrT5Jqd5AWfPnSRavlHTPiHp2yZL3Q3ZEWBfkQvQ==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"11.4.2","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"22.12.0","dependencies":{"keyv":"^5.5.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.1","tsup":"^8.5.0","rimraf":"^6.0.1","vitest":"^3.2.4","cacheable":"^1.10.3","typescript":"^5.9.2","@keyv/redis":"^5.1.0","@types/node":"^24.2.0","@vitest/spy":"^3.2.4","@faker-js/faker":"^9.9.0","@vitest/coverage-v8":"^3.2.4","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_7.1.1_1754497489462_0.1564502429232042","host":"s3://npm-registry-packages-npm-production"}},"0.15.0":{"name":"cache-manager","version":"0.15.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.15.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"53bdd92dfc77e7d1752f8a7b260101088d9b9144","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.15.0.tgz","integrity":"sha512-jmyaRbTqkBoXuDhnVpbDbFQvHWwTSgQfi3xJF/Q71GhwztCIrmDoZovIRKmc4rR5/2TEuJVVYaxu4uTerTeMFw==","signatures":[{"sig":"MEYCIQD6mtZas5chQNeBcSEep11YIeF0KveDwbkOx6Utq4o2ggIhAOqPGJh5pwt3raj4tVKVTldtG8X2Ir+TzYFs//BJwkCr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"53bdd92dfc77e7d1752f8a7b260101088d9b9144","gitHead":"192e11307bd51f9e3c044c7425295510276db782","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.4.28","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"^2.5.0"},"devDependencies":{"jscs":"^1.7.1","mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.4","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}},"0.11.0":{"name":"cache-manager","version":"0.11.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.11.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"1f47ba5e354ba29f283f244a038912459d00b0b1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.11.0.tgz","integrity":"sha512-kR00XNlNv6uCY7LHYJarGT6bcqf6c/ae70k+uFn/+D+13BbBrRoMnpusaewSM3K1k0CeRPAFbp62iYQewzxbIw==","signatures":[{"sig":"MEYCIQCaTTkMDF0FXVKfKqgJJC44Ew87oOMdqjaI+uyH7yub2AIhAN9NnQD8fEwfncHQBMDjtnJUKf1xbt10yRm9e6e/TwCE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1f47ba5e354ba29f283f244a038912459d00b0b1","gitHead":"c3bd34c28b939bb98578a0f06f883dc50b320d14","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.4.23","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"^2.5.0"},"devDependencies":{"mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.1","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}},"2.6.0":{"name":"cache-manager","version":"2.6.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.6.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"1050d8d9a9452a80a0cf5672f1394d31ef3d4109","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.6.0.tgz","integrity":"sha512-5+rOXVTfFWLa9vlCPtTRQeaTpuityW4yiRpxEmnVdwXNmPRkRahg6/goK46BRV7QqMX3vO0gf/fPnbNoeDyt1A==","signatures":[{"sig":"MEUCIQDsDt5dTkpB5hx2rDCFP26i9PPsnPdWgBaa8SMMmL/+XwIgJu7G6ZB/+Q6gvDkELxyCe5VOHxi3MeZwBaXakNuUkyI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1050d8d9a9452a80a0cf5672f1394d31ef3d4109","gitHead":"107f6178a9f9a482726f0e93f64553f091bcc1b7","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"2.0.0","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"1.5.2","lru-cache":"4.0.0"},"devDependencies":{"jscs":"2.11.0","jsdoc":"3.3.0","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager-2.6.0.tgz_1512754978126_0.7179035246372223","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"cache-manager","version":"2.2.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.2.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"72647bfad45f3897253e6f85b11d4a697b9822df","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.2.0.tgz","integrity":"sha512-KphN/UQcMsfYdmVpe1uI9nND+WXGY2y2lw6eIuvnxydk6k77zUL3hwpOkXpoeOuRQKkfyA9i1PkBK7p18keZTw==","signatures":[{"sig":"MEUCIG/nKdaxt5buYRRYP4k2p6q0nOApTLOOHpfWqRJcEPmaAiEAw9qUryqODp3PgvKXD3vv57TgQEH3kiaJxt9Op136U2E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"72647bfad45f3897253e6f85b11d4a697b9822df","gitHead":"9f68e9ba6393c13436422b93ba03d5cb212faa5e","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"3.8.6","description":"Cache module for Node.js","directories":{},"_nodeVersion":"5.4.0","dependencies":{"async":"1.5.2","lru-cache":"4.0.0"},"devDependencies":{"jscs":"2.11.0","jsdoc":"3.3.0","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager-2.2.0.tgz_1476898414391_0.22198929614387453","host":"packages-12-west.internal.npmjs.com"}},"0.19.0":{"name":"cache-manager","version":"0.19.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.19.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"e108c7c598fcbffc4de5c1daff5297dd81b7f944","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.19.0.tgz","integrity":"sha512-+697f5P6kr9cG3wCVpYe/HCOpZGW/uv8GnsueC/ht1pSW7L3bLiY0Nw3K0G6CI435Ifk9me89Jr7UcsjUnIZ7g==","signatures":[{"sig":"MEUCIB+F22cfHC1N96fifg/MN+IssmsMtMPolT0F4DgJUTdOAiEAht1Mn9F3KLh/1Gar96UmMJ6hqX3sm7zpJaGeKQbkPU8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e108c7c598fcbffc4de5c1daff5297dd81b7f944","gitHead":"6111d274a5e494b17af6220fde56d5b475c46a78","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.4.28","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"^2.5.0"},"devDependencies":{"jscs":"^1.9.0","mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.4","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}},"6.3.1":{"name":"cache-manager","version":"6.3.1","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@6.3.1","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"723ed91489b28b39e8a2a2f3f98aceea57493fd5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-6.3.1.tgz","fileCount":7,"integrity":"sha512-Q8cTcjGzUaTfw/IBOZcUbu0/IUbybOy/+zQO9uluxqFIkfFb/YBZo2HVK8RLRvugeGABzi1vwVctCHQZV2Q2Ww==","signatures":[{"sig":"MEUCIAc/C6KlERqV5yJwACWfkU3al5RBW0I/gv962gJuSD3kAiEAlFz5cJrAIzxz8/xRw738GL4FwSCRohMhalJWWMZOMzw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42435},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-6.3.1.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run","prepublish":"pnpm run build"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/880e1c809fd275cfc30d734f6714584d/cache-manager-6.3.1.tgz","_integrity":"sha512-Q8cTcjGzUaTfw/IBOZcUbu0/IUbybOy/+zQO9uluxqFIkfFb/YBZo2HVK8RLRvugeGABzi1vwVctCHQZV2Q2Ww==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"10.9.0","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"20.17.0","dependencies":{"keyv":"^5.2.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.59.3","tsup":"^8.3.5","rimraf":"^6.0.1","vitest":"^2.1.3","cacheable":"^1.8.5","typescript":"^5.6.3","@keyv/redis":"^3.0.1","@types/node":"^22.8.1","@faker-js/faker":"^9.1.0","@vitest/coverage-v8":"^2.1.3","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_6.3.1_1733945428921_0.984442543574477","host":"s3://npm-registry-packages-npm-production"}},"1.4.0":{"name":"cache-manager","version":"1.4.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@1.4.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"090c12633efdb7deb2e6b6ac64194cc4a32da4a9","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-1.4.0.tgz","integrity":"sha512-8lH4Uuwt40hc6xuje7mvxHta5KOC14A0OFvSFuCCwpj2kg699f1q+KvsD60nmwlgj84HGfyczoNPkGrcFGtkig==","signatures":[{"sig":"MEUCIQCqQwo/p/WIeeyLK8hj93TxvjnHbox5R7oq53yl3mjkNAIgG4ThkcvVWm2xPpWwtr8hFEsQVgihsxNhRrrmSZ4u2/U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"090c12633efdb7deb2e6b6ac64194cc4a32da4a9","gitHead":"c428b0e753a3f8e6317774e0c765b708237d56b1","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"2.0.0","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"4.0.0"},"devDependencies":{"jscs":"^1.9.0","jsdoc":"^3.3.0","mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.4","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager-1.4.0.tgz_1454524276397_0.013438836904242635","host":"packages-5-east.internal.npmjs.com"}},"6.3.2":{"name":"cache-manager","version":"6.3.2","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@6.3.2","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"49275f3f52da07c5f1ff212f706fde0e26f2580b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-6.3.2.tgz","fileCount":7,"integrity":"sha512-VmLouPUrvpm9dfwYB6OE7YVXDZ7BCfbt7hq10EHiBYaW9K9ZthK1bbjDQAtXGDK7d9u8t4G/7dMWSJOwN33msg==","signatures":[{"sig":"MEUCIBE6dG8ZEezAHxPEger1s/VkEdvwTAkcgTXbFwBKOv7dAiEAnAk06tgYjvmTbuizIKPyFu2iuDFz1QJY9Im1Wlt+XKI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42442},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-6.3.2.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run","prepublish":"pnpm run build"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/q4/x95kq1ln6cd7rrnct9cby32r0000gn/T/9f025e644b7a0b7f74d1998ede875ed8/cache-manager-6.3.2.tgz","_integrity":"sha512-VmLouPUrvpm9dfwYB6OE7YVXDZ7BCfbt7hq10EHiBYaW9K9ZthK1bbjDQAtXGDK7d9u8t4G/7dMWSJOwN33msg==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"10.9.0","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"22.12.0","dependencies":{"keyv":"^5.2.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.60.0","tsup":"^8.3.5","rimraf":"^6.0.1","vitest":"^2.1.8","cacheable":"^1.8.6","typescript":"^5.7.2","@keyv/redis":"^4.2.0","@types/node":"^22.10.2","@faker-js/faker":"^9.3.0","@vitest/coverage-v8":"^2.1.8","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_6.3.2_1735256042375_0.30947347541743686","host":"s3://npm-registry-packages-npm-production"}},"1.4.1":{"name":"cache-manager","version":"1.4.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@1.4.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"50f95f4adb5c6f4c862c7836cf2fe4615230f446","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-1.4.1.tgz","integrity":"sha512-vkaNquS4gljWLb4jKHS2ADzFLNMO8VXuuqutc+Xzv8Fb8Gmow/UyGaTGoXTBvivNdBipALkpoi6YR+Lyegya8g==","signatures":[{"sig":"MEYCIQCq3lMOA0I8+pB3CTnag0pPw+7bs12fthNJIWvPTC4mlwIhAM2KlOEFq7KriBIFhcmq60FruC2T2GoSZu6wLUmO5vIA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"50f95f4adb5c6f4c862c7836cf2fe4615230f446","gitHead":"c524de82de322985ce1fef07995ff5aac0540f67","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"3.6.0","description":"Cache module for Node.js","directories":{},"_nodeVersion":"5.4.0","dependencies":{"async":"^0.9.0","lru-cache":"4.0.0"},"devDependencies":{"jscs":"^1.9.0","jsdoc":"^3.3.0","mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.4","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager-1.4.1.tgz_1457903192223_0.1820028480142355","host":"packages-12-west.internal.npmjs.com"}},"6.3.0":{"name":"cache-manager","version":"6.3.0","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@6.3.0","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"30ae92a460ad1605db2d2324c0d90f7d03b568bd","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-6.3.0.tgz","fileCount":7,"integrity":"sha512-dp3pVtuWfCr9Wnbr5O/h5UDlH27v66XD4HH2qejelkUUMod9nLlCkIzqj2a7iSDlzatiKt8ze6bHyEH8QUKF1w==","signatures":[{"sig":"MEUCIQCB28NIvMQ0yegzXjN+r0PO4PvKmlZC/C/Dy2d8xL8oYAIgHrUsexQVR64/5DiTLKnTwZwv9IVstmMDip9Gngq0xFE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40162},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-6.3.0.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/gs/5m4m2s857ts7l7nbvv0b57r80000gn/T/f7a95bce3ec5652f29b25e8e75423396/cache-manager-6.3.0.tgz","_integrity":"sha512-dp3pVtuWfCr9Wnbr5O/h5UDlH27v66XD4HH2qejelkUUMod9nLlCkIzqj2a7iSDlzatiKt8ze6bHyEH8QUKF1w==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"10.9.1","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"20.17.0","dependencies":{"keyv":"^5.2.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.59.3","tsup":"^8.3.5","rimraf":"^6.0.1","vitest":"^2.1.3","cacheable":"^1.8.3","typescript":"^5.6.3","@keyv/redis":"^3.0.1","@types/node":"^22.8.1","@faker-js/faker":"^9.1.0","@vitest/coverage-v8":"^2.1.3","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_6.3.0_1733267315240_0.8034477675076304","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"cache-manager","version":"5.1.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.1.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"},{"name":"botikass","email":"mhpoin@gmail.com"}],"homepage":"https://github.com/node-cache-manager/node-cache-manager#readme","bugs":{"url":"https://github.com/node-cache-manager/node-cache-manager/issues"},"dist":{"shasum":"b6e74ddd2df0791ade0bed69e855aeeca710f5fe","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.1.0.tgz","fileCount":19,"integrity":"sha512-Ui6x3fZ48Qw/C26f5N835uiaNNbBEN889PwoEDaPq3OYw15F28q1ZTv9tX/MxcqHM0xzDkh4smvdGdYyCTkYiA==","signatures":[{"sig":"MEUCIQD1hRVEZxuSXK+Bn9NZEzGXDyZu9t7ix8RTcBNB7hm2SQIgbk4bMymugavqmAXvuhsq9va70nM3Ju31Eeutd5rAb6M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67491,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjT8HSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqZ8g//VKNNhGJGBpYTjrXycQaIsr5LdzumMra5nuSG8zxpMf+/YeR3\r\nBuhtAnDwS8+0LourESp3fkNnxzjfMkKBFSMIBp6DOUmC2Lvvx31mPpspCjzO\r\nuPoFYjC0aJVHRU1Qv6BIrbQf7dHCpf79tGHhNJaU4lwgzZkkWbLEUiMcttHT\r\n2tmS7538lD/gwkTKaS/kujWEzbz5tlsfs8bOes3zYacPaHicdW7qG1nxrUoI\r\nsc0avp8NRu2oZ9Nzeffc1ekhQlkzs/XebERDdUpY4OYuHSZTZt7llkBYBH8Z\r\nAruA/zmV+ivDos8WHYBZnHmSiMMRa7MCOvjf3R77M8wEw/il0tKZkz7yxX/7\r\no3Ug9U/fTvDdOevdjkuM/hUvxvM5VSCyFws2IN7gvjwWH0I2rF5EkfINMOde\r\n4l1FFSF7fmI/q8qwNKqX7QnvxrSAvQbdeYYLieBpdxMoQLiKESEMv6FU+9at\r\nIdV0NxKiMgmqOpxb3P/+KPSOhmYpHz92cUOFmGt+74zHyYmZAzFKKmETutb+\r\nTcc86fzDUUBm4UPHPimFl9FYQH4rcVPiHcEAOHupAbjqq/sHFTzZ3h2Feu9y\r\nXrEZLhF6tbJkauhvmrGPD/yttICrFwKcejKkwKmvCZ5DIlhQhNzzZ3fEBlUp\r\n8YnE8KtqxioHqVao6Kjgjj1+HNWH1gp/EzY=\r\n=10EW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","_from":"file:cache-manager-5.1.0.tgz","types":"dist/index.d.ts","authors":[{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"pnpm lint && pnpm fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.{ts,mts,js}'","test":"vitest","build":"rm -rf dist && tsc -p tsconfig.build.json","check":"pnpm lint:check && pnpm fmt:check","release":"pnpm check && pnpm test -- --run && pnpm build && dotenv release-it","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.{ts,mts,js}'"},"_npmUser":{"name":"botikass","email":"mhpoin@gmail.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"_npmVersion":"6.14.17","description":"Cache module for Node.js","directories":{},"lint-staged":{"*.{md,json,yml}":"prettier --write","*.{ts,js,mts,mjs}":"eslint --cache --fix"},"_nodeVersion":"14.20.0","dependencies":{"lru-cache":"^7.14.0","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"8.0.1","eslint":"8.25.0","vitest":"0.24.3","prettier":"2.7.1","dotenv-cli":"6.0.0","release-it":"15.5.0","typescript":"4.8.4","@types/node":"18.8.3","lint-staged":"13.0.3","@commitlint/cli":"17.1.2","@faker-js/faker":"7.6.0","@vitest/coverage-c8":"0.24.3","eslint-config-prettier":"8.5.0","eslint-plugin-prettier":"4.2.1","@types/lodash.clonedeep":"4.5.7","@typescript-eslint/parser":"5.40.1","@commitlint/config-conventional":"17.1.0","@typescript-eslint/eslint-plugin":"5.40.1","@release-it/conventional-changelog":"5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.1.0_1666171346655_0.5297423372253529","host":"s3://npm-registry-packages"}},"5.1.1":{"name":"cache-manager","version":"5.1.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.1.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"},{"name":"botikass","email":"mhpoin@gmail.com"}],"homepage":"https://github.com/node-cache-manager/node-cache-manager#readme","bugs":{"url":"https://github.com/node-cache-manager/node-cache-manager/issues"},"dist":{"shasum":"1e0b888f25914255f6e5631526ee0ceba9989667","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.1.1.tgz","fileCount":19,"integrity":"sha512-xvbv24xOimcGNIna+LOoX0IV8ng6JrEhocYOpfaxPRx4fzyB9B91WYTj/kHcgt8ZPuDq8nt3T9XFh6NlWtA2Ew==","signatures":[{"sig":"MEUCIFQId1/+xcH9zd3kNDzTWae5ppLn25KhvncC5sJpnUe4AiEAuIPj2CaLUhicB2AZAScAQREGMTU7QNbmvbUV1qltA4E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67734,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjT9hLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqQGw//bAzAQmZGzgxdqnBrq7o/Twy9hyu/lvnjXeYE3SKuRKPH9OU3\r\nB9aGIaJ7cM7a67jCyBXFnPzLDhoX/gQI5fs9BZ7ak03TlF/LEu8HmnrPJm8G\r\nvcZVtt2afV9iG+/K388h4nDXAHrRCDlddTH+K5v78Q/SQRlMd8Tt7ndBUsWl\r\n90oI4gcoU+dwib2lyeElvEG0RnO8JAYJlZEJfiHx19RAgnTRRFuOLN/dOJbU\r\nIzVgDI/D8b3G0aTamsa+9+jpu6U4Nv17ey3wlV4Ux6gNV2rWG5VMmNryIdf8\r\nGR+i3CthnahO/xDwZAVyU8EqV5xB9ZjxEp4T/p68h8MN8mn+v85/yOIx7GWr\r\norHq6OKtd6MOHaxFO8aiO9yqggfzfHmtfNgme9WyPWqVKFsjwR5yum7vNjEN\r\n6xsg2+UunVW+sqy7Ci0VrBTWIQbLYfX3Gp92pmFj4EDWz8q1mueLevlqfWV1\r\nEMmqs1OgX9NYLCzHRAQJVRpMmgLWrs1gCAK9YWe5eOfUZTrnWz65Eh7geaVb\r\nsMiizEZ7R9pb4cqabVs7pykAon4RCRhWrer5H5iaP5gY3Lhnpd+tN1yn+3Y1\r\nT96IZ8ovSj1t/9a/yKqQxIjHvszh1ZCWONQmE42IFAtcFjPS+BamWbx5pPMI\r\nE+fD7fqseO4Mrl10MEk1K8AnPacBcNzMEp4=\r\n=6lb5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","_from":"file:cache-manager-5.1.1.tgz","types":"dist/index.d.ts","authors":[{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"pnpm lint && pnpm fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.{ts,mts,js}'","test":"vitest","build":"rm -rf dist && tsc -p tsconfig.build.json","check":"pnpm lint:check && pnpm fmt:check","release":"pnpm check && pnpm test -- --run && pnpm build && dotenv release-it","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.{ts,mts,js}'"},"_npmUser":{"name":"botikass","email":"mhpoin@gmail.com"},"_resolved":"/tmp/1e76409b99a4861de0620137102db9fe/cache-manager-5.1.1.tgz","_integrity":"sha512-xvbv24xOimcGNIna+LOoX0IV8ng6JrEhocYOpfaxPRx4fzyB9B91WYTj/kHcgt8ZPuDq8nt3T9XFh6NlWtA2Ew==","repository":{"url":"git+https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"_npmVersion":"8.18.0","description":"Cache module for Node.js","directories":{},"lint-staged":{"*.{md,json,yml}":"prettier --write","*.{ts,js,mts,mjs}":"eslint --cache --fix"},"_nodeVersion":"18.8.0","dependencies":{"lru-cache":"^7.14.0","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"8.0.1","eslint":"8.25.0","vitest":"0.24.3","prettier":"2.7.1","dotenv-cli":"6.0.0","release-it":"15.5.0","typescript":"4.8.4","@types/node":"18.8.3","lint-staged":"13.0.3","@commitlint/cli":"17.1.2","@faker-js/faker":"7.6.0","@vitest/coverage-c8":"0.24.3","eslint-config-prettier":"8.5.0","eslint-plugin-prettier":"4.2.1","@types/lodash.clonedeep":"4.5.7","@typescript-eslint/parser":"5.40.1","@commitlint/config-conventional":"17.1.0","@typescript-eslint/eslint-plugin":"5.40.1","@release-it/conventional-changelog":"5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.1.1_1666177099457_0.9192333284677832","host":"s3://npm-registry-packages"}},"5.1.2":{"name":"cache-manager","version":"5.1.2","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.1.2","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"},{"name":"botikass","email":"mhpoin@gmail.com"}],"homepage":"https://github.com/node-cache-manager/node-cache-manager#readme","bugs":{"url":"https://github.com/node-cache-manager/node-cache-manager/issues"},"dist":{"shasum":"b363ede569d1ce4379372a7fdc1df291afef5083","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.1.2.tgz","fileCount":19,"integrity":"sha512-X9JGcHmtYlJB0QgzYRDLsgiROcoCPwuWgXGfuJE9nkFny8HH59gmZ5d9uU4BeTnXksAGLZ8DT5E67QYz8I0RoQ==","signatures":[{"sig":"MEUCIGMZ0XB+8X11qwSjfh24vPw3/AjjrsfZYz9uu0fhuGEXAiEAtrZ94OjUdSqC4aUUzx/b8EpVYJpWjjDss6dSu4u+4UM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":70045,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjYcmXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoB+w/9H1eiDxAgW94jrd0uPstnGiAI4NBDWq9lDtw86EYXN/rF1TwX\r\n8yRUVGYlF6sWRO/EEWjTfbCTrDZgfifK05Q2l7V3EWMf48ARuiOYuG5MlwOq\r\n8d9ewE0PTML0ollzyGCU3HElxZK9/qCTdg4ywqMcGaivCauOIB7J+2iGd6lm\r\n63owVGiqDVPvP/lM6nTTJsylJ0dduHQX4U4K1hHqonH7dxEGpAYG9O3IFakN\r\nyDd2O3o6dttYbP6KmA0sJebdfuXiz75mo1EuC12N3CUS+P/Ir4Xr/vT+NlUN\r\nqFWGYw0KserveBTOvMNNZ9OQzaAghSh1OhQsUeK3ZNl3vQUq66dNLv74DPgc\r\nSOWR7bIZiaZrjX/ocTugScOyWWnWeaD2rF7WxX1gBltglBPp1t65o+bUX6PE\r\ndV9gQsg6QQf3y5Tap635oijs+twxjoL5C9OHqLp/DyTxFpEdQ5VPKG5hZ0b6\r\nfjSx2CJwfOsdLSTcHBk09LckQMtWW97ht60kSqLEyDOGjnthuN4FajwMTTQD\r\nWl/wwe46yS9mRzC6JnwCYKTocMV0Z/ZqkS0611SDw6H478gveF1PWrBzYW83\r\noui5b2KpOLVQBMtyvyLkalQOF7GYEmmwaJB+f7dxzDfNXpJYRTa7J8bQWX+M\r\nkdEuk/EBzXtKz5VL6qjON0ZpKsEyh8jx+p0=\r\n=rVKk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","_from":"file:cache-manager-5.1.2.tgz","types":"dist/index.d.ts","authors":[{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"pnpm lint && pnpm fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.{ts,mts,js}'","test":"vitest","build":"rm -rf dist && tsc -p tsconfig.build.json","check":"pnpm lint:check && pnpm fmt:check","release":"pnpm check && pnpm test -- --run && pnpm build && dotenv release-it","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.{ts,mts,js}'"},"_npmUser":{"name":"botikass","email":"mhpoin@gmail.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"_npmVersion":"6.14.17","description":"Cache module for Node.js","directories":{},"lint-staged":{"*.{md,json,yml}":"prettier --write","*.{ts,js,mts,mjs}":"eslint --cache --fix"},"_nodeVersion":"14.21.0","dependencies":{"lru-cache":"^7.14.0","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"8.0.1","eslint":"8.26.0","vitest":"0.24.5","prettier":"2.7.1","dotenv-cli":"6.0.0","release-it":"15.5.0","typescript":"4.8.4","@types/node":"18.11.9","lint-staged":"13.0.3","@commitlint/cli":"17.2.0","@faker-js/faker":"7.6.0","@vitest/coverage-c8":"0.24.5","eslint-config-prettier":"8.5.0","eslint-plugin-prettier":"4.2.1","@types/lodash.clonedeep":"4.5.7","@typescript-eslint/parser":"5.42.0","@commitlint/config-conventional":"17.2.0","@typescript-eslint/eslint-plugin":"5.42.0","@release-it/conventional-changelog":"5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.1.2_1667352982902_0.5764064426219935","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"cache-manager","version":"1.0.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@1.0.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"598841dc30e273a6fcc13c95c25bf69739202f0d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-1.0.0.tgz","integrity":"sha512-66WDLjOHS1V3aw+XCvqMUgKXytRFrD5iUt2SXA5iGZascasS0SWlexwHzpNo/DgtO2HA2+fG0zgxZAz5BX1hHQ==","signatures":[{"sig":"MEUCIGmSYoha1BoDDBbWCgMh0v7MF10RjpL5xwxH+t8jXeB5AiEA47CzHqcnadC/ElxHMkrrZRMuUh91o8oEnxzFW/m69H4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"598841dc30e273a6fcc13c95c25bf69739202f0d","gitHead":"11873719f559389532f328207a48311dd4f36ae5","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"2.9.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"0.12.2","dependencies":{"async":"^0.9.0","lru-cache":"^2.5.0"},"devDependencies":{"jscs":"^1.9.0","jsdoc":"^3.3.0","mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.4","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}},"5.1.3":{"name":"cache-manager","version":"5.1.3","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.1.3","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"},{"name":"botikass","email":"mhpoin@gmail.com"}],"homepage":"https://github.com/node-cache-manager/node-cache-manager#readme","bugs":{"url":"https://github.com/node-cache-manager/node-cache-manager/issues"},"dist":{"shasum":"d50763cf18e84219a02fda193566d724ceb10a64","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.1.3.tgz","fileCount":19,"integrity":"sha512-6KhSzceh/1yBfm5QmSN2ohQsMsavLNPlOKZ8gWX7yDHBrnwNCGK6p4LYp189zRGNb3BLFioJlUZKQ3LckteWlg==","signatures":[{"sig":"MEUCIQDXOvv/KjHNfMhvzSLanU0/T4P+37NIhv526LJZQR1foAIgZMktDsdlsVTuV4zaQJJL+1KVArWOboz31sVRrMeA3zw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":69791,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjYncjACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpcXQ/9GA0OYjjgK+4PQvA7Iw186BjiSyV4jp8i/a1iyV5lt8v/2msW\r\nyBbaAa5BLUX8Tf/vzBvug9f7nzBydlVSpienfjeIbRzNOfA/ou3jQdEgcmJQ\r\nv7WRig4+/VHRYt9XGsTljm8yVAIy2mGXiZBFa/Z1yl5TQ8ye0YKI+/DLSc4D\r\nO0CEu6Q2atKj53ME28XOuZOVT9H98MO8PMWSiR/qFEL5GvTCora/DZdLb87T\r\nLzSA33/1GGtl9u21d62xfOtOKC1J/ijSVJwwoL/5Q0gwQGzxMHeKUeG2XA31\r\n6u4dl0SmhV9A33mHUwlWLCPfxSHXhLN7OOqKncJGUsjISNdnIBeIStvTpkl6\r\ncVypppY+/TZ7AtcwYWSSlMD5/a4dXDb/afoSd2+VsqzJDj7SGPE+mppwQt5X\r\nge3u7P0WUvWEr3Vv2zCh3+pE519NXjN70h6Dl+CzQQBoevIpjZrA33H7DCTk\r\nqg9v1QvMFPVrASgxD3mNI0IqPzqDXsUFaANcY7n/J3NCY+n3iPq31kLjF8h8\r\nM2PuIc1VcK7Wtux8oIy6vnd1WnpnyAqRJr25A38rhMI5ygcInBm5IN8F1ghz\r\nCU/6qDkGW+/lrelFfP+tG5u90Rj3mYZD7WY4s1e2DzU2x4ZN6fWhh4C6mgZk\r\nurmTfh2DOUk8jkrvSf5eO8LBc3ihK0vkBvs=\r\n=2xcb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","_from":"file:cache-manager-5.1.3.tgz","types":"dist/index.d.ts","authors":[{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"pnpm lint && pnpm fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.{ts,mts,js}'","test":"vitest","build":"rm -rf dist && tsc -p tsconfig.build.json","check":"pnpm lint:check && pnpm fmt:check","release":"pnpm check && pnpm test -- --run && pnpm build && dotenv release-it","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.{ts,mts,js}'"},"_npmUser":{"name":"botikass","email":"mhpoin@gmail.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"_npmVersion":"6.14.17","description":"Cache module for Node.js","directories":{},"lint-staged":{"*.{md,json,yml}":"prettier --write","*.{ts,js,mts,mjs}":"eslint --cache --fix"},"_nodeVersion":"14.21.0","dependencies":{"lru-cache":"^7.14.0","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"8.0.1","eslint":"8.26.0","vitest":"0.24.5","prettier":"2.7.1","dotenv-cli":"6.0.0","release-it":"15.5.0","typescript":"4.8.4","@types/node":"18.11.9","lint-staged":"13.0.3","@commitlint/cli":"17.2.0","@faker-js/faker":"7.6.0","@vitest/coverage-c8":"0.24.5","eslint-config-prettier":"8.5.0","eslint-plugin-prettier":"4.2.1","@types/lodash.clonedeep":"4.5.7","@typescript-eslint/parser":"5.42.0","@commitlint/config-conventional":"17.2.0","@typescript-eslint/eslint-plugin":"5.42.0","@release-it/conventional-changelog":"5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.1.3_1667397411429_0.09051835712456646","host":"s3://npm-registry-packages"}},"5.1.4":{"name":"cache-manager","version":"5.1.4","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.1.4","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"},{"name":"botikass","email":"mhpoin@gmail.com"}],"homepage":"https://github.com/node-cache-manager/node-cache-manager#readme","bugs":{"url":"https://github.com/node-cache-manager/node-cache-manager/issues"},"dist":{"shasum":"b3024f2127353f9f725f43ecbd184872101b6bb2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.1.4.tgz","fileCount":19,"integrity":"sha512-beXzzuboV6I0AkU25udrd8tRxFbU6c5m7+3eOdmznSVNkyKe0+uTK8EtcuhTwqc/wAYrAGl62w3s58rjKnrO6g==","signatures":[{"sig":"MEUCIFO7B1FgPn7ggwhpYqX+NDofZWKInqvBJoKBKepLwxnYAiEAqez5CbgZVF1/ryu5I/6sDSYls3GbaX7+EsgddhZt7TE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":69801,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjjL+4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmowow//aOo/HMWofGOlQAqXKrWhszDZsQ226vN9DtWFh2ksofuSt2sm\r\ne4Zhhmem3GUh3coiPn+5jSjwkVXz5DMtzVtKEQbFRkTc4xf0l4P409FPTw45\r\n74nUmnmbtQdpV/ffEdvYNzUWJR+2Ya9n5DqoyNTm5LlW+b8YghyCWFi6jE/z\r\nMFv3kyKou1crEqn2A2AmRnyCYHpU2JK3lnEonTEDKQOKnHNMJtjrEHJs7Jfr\r\n+8bYLGHepS54jvnDO3VHCiBGH8W6aj09VSRCDO302r0IlH8fHMK9engNblP1\r\n8f1UH7tZRGm86UBfZ61PO8Qx9vhubHCI0gMrWHwFCztZW1YoIQ7BhKW9GAGl\r\n0C8QkyiZTEKzRcE4kcTOUCBche5zt4Uob4CW4cbT7Rnrk2CSabhfYnwxOX1P\r\nRpVFtm8FdJdjy7FYfl277F794EVo1DRMi2Oln8pDzlB4MZdJu9h09I6xiS9G\r\nLWnSKnC4BwQF3IeIZ3or/SXauq8BdEfIfg1epWdTtVI8+80E5Ld5ISxoHIeH\r\nRGHsnqm/YgAI58+ZatAqfTJkzm9XCY9KZQWWehYs1fKareooMsSUSnpGq+ma\r\nl6c7JnhKih0Igcs2y9JuhnQLJPzKYE+q5pLhh45R0aP9i4S33I68gP8UY7tA\r\nkPzd3zIql2xCxq/tmwyj9U/wNeJ3DetKnkY=\r\n=SAaD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","_from":"file:cache-manager-5.1.4.tgz","types":"dist/index.d.ts","authors":[{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"pnpm lint && pnpm fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.{ts,mts,js}'","test":"vitest","build":"rm -rf dist && tsc -p tsconfig.build.json","check":"pnpm lint:check && pnpm fmt:check","release":"pnpm check && pnpm test -- --run && pnpm build && dotenv release-it","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.{ts,mts,js}'"},"_npmUser":{"name":"botikass","email":"mhpoin@gmail.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"_npmVersion":"6.14.17","description":"Cache module for Node.js","directories":{},"lint-staged":{"*.{md,json,yml}":"prettier --write","*.{ts,js,mts,mjs}":"eslint --cache --fix"},"_nodeVersion":"14.21.1","dependencies":{"lru-cache":"^7.14.0","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"8.0.2","eslint":"8.29.0","vitest":"0.25.3","prettier":"2.8.0","dotenv-cli":"6.0.0","release-it":"15.5.1","typescript":"4.9.3","@types/node":"18.11.10","lint-staged":"13.1.0","@commitlint/cli":"17.3.0","@faker-js/faker":"7.6.0","@vitest/coverage-c8":"0.25.3","eslint-config-prettier":"8.5.0","eslint-plugin-prettier":"4.2.1","@types/lodash.clonedeep":"4.5.7","@typescript-eslint/parser":"5.45.0","@commitlint/config-conventional":"17.3.0","@typescript-eslint/eslint-plugin":"5.45.0","@release-it/conventional-changelog":"5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.1.4_1670168504490_0.004010533158460117","host":"s3://npm-registry-packages"}},"5.5.0":{"name":"cache-manager","version":"5.5.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.5.0","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/node-cache-manager/cache-manager#readme","bugs":{"url":"https://github.com/node-cache-manager/cache-manager/issues"},"xo":{"extends":"xo-typescript","extensions":["ts","tsx"]},"dist":{"shasum":"d93eeb8d4612fcf729465ebbaa2d5a5d7055359a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.5.0.tgz","fileCount":13,"integrity":"sha512-zndX+tczQ7jzlYiXW5++2iCkJicDjNWjHom60gC7B4Epn+Bro8/NZyrTYhBWLT3tbz0UCPv+zf9CkX6fI3yK7A==","signatures":[{"sig":"MEUCIQDeDga58y+KzcjXrq7QUi9vk2XbqIKQwwqEmSYGXrlwIQIgLr85PykcZyC/spZaNE0v4U+48zGTQ6gr/FX5Ftt2lrM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28885},"main":"dist/index.js","types":"dist/index.d.ts","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"gitHead":"cef1949e6c55aaa8b01f2277dd3eb6777bbcf6ca","scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf dist && tsc -p tsconfig.build.json","clean":"rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml","prepare":"npm run build"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"repository":{"url":"git+https://github.com/node-cache-manager/cache-manager.git","type":"git"},"_npmVersion":"10.2.4","description":"Cache module for Node.js","directories":{},"_nodeVersion":"18.19.1","dependencies":{"lru-cache":"^10.2.0","eventemitter3":"^5.0.1","lodash.clonedeep":"^4.5.0","promise-coalesce":"^1.1.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.58.0","rimraf":"^5.0.5","vitest":"^1.4.0","typescript":"^5.4.3","@types/node":"^20.11.30","@faker-js/faker":"^8.4.1","@vitest/coverage-v8":"^1.4.0","@types/lodash.clonedeep":"^4.5.9","@typescript-eslint/parser":"^7.4.0","eslint-config-xo-typescript":"^4.0.0","@typescript-eslint/eslint-plugin":"^7.4.0"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.5.0_1712256223859_0.053267934886366275","host":"s3://npm-registry-packages"}},"5.1.5":{"name":"cache-manager","version":"5.1.5","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.1.5","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"},{"name":"botikass","email":"mhpoin@gmail.com"}],"homepage":"https://github.com/node-cache-manager/node-cache-manager#readme","bugs":{"url":"https://github.com/node-cache-manager/node-cache-manager/issues"},"dist":{"shasum":"ea6808de65cdb4c8ffd37a7f9debe96db5e5a5b2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.1.5.tgz","fileCount":19,"integrity":"sha512-yNITnnTegkrGQLRDC9n/FwASp1KIp1A7TUvfS6ItNwtB459VCU3FFUUFzZDXbm1wEnPXFPFD5qIrb3yy2xbXeA==","signatures":[{"sig":"MEYCIQCJpXdriwfklj4b9FIlpcYB9b1Lep9GXEGEVA7XnV2vwAIhAO1MFy209IbkuJoxfUG50bBYMAlHa6uSR8qcZAJiWrUO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":69948,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj3R5VACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmojXg//egJqSqAfFza5SzF0pvnWo1hCh0l/jcDtumquA6xdx2t6ihAI\r\nQOJEllHl/je58Lrkx2Yjgyoe3hTIS0NBsU6+XiecRtbkD/jtiYMajcFgN8CN\r\nQFZHO4VG+M4Uh94iI7wEdSQtRNE2OsjxEgYMWrAIPQDwTj1NOVmXYdGijAFA\r\nzNGvEg/VG8AIu4MV7eweJMeExZ8kgY87iviTcwkgHoL+l1/Wf7G5DYEGL22V\r\ne3ZRl3C66iSXxwEunMP9EoQ0KrJeYrWc0olU5ooVjLKxuyHs8njFEiyyGx3W\r\ngh5OvY1l5WggVt/JPpINfPrIxyOwyUywezD0vgKvbfCoqESFs0aQ79oqO9LM\r\n2z5USp2Aeps2g/sGIZQ8oFCCMuIUqyvZkQOXRQNLsK2o5C1J4x4h/D/T+v/y\r\nl6W9nR1e9D3jYjU0gPT4dzMqWfUkorNiLViHhaUiY8/QXSa3i8Muin+B+hYQ\r\ny91+aC0GoS1VcML9fypEE7R+d9hV6g4/yC5eMT2uQ3PO5HMKtX5iuaKzYwMF\r\n7d6l6MlXCJiCeA0Ag+VtuOJt0zeiMuDHjTR/DWVkvEDIlsdeo8oUDOqUzyHF\r\necLMrOGlERHu2YydB3i7ocX0vfJDnZQScwLCGkij7oH7MSMhe393/fI/6u9m\r\nyskPJVHOQ5sBh7KybNPG47RUzoLK7Un++jE=\r\n=8iLe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","_from":"file:cache-manager-5.1.5.tgz","types":"dist/index.d.ts","authors":[{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"pnpm lint && pnpm fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.{ts,mts,js}'","test":"vitest","build":"rm -rf dist && tsc -p tsconfig.build.json","check":"pnpm lint:check && pnpm fmt:check","release":"pnpm check && pnpm test -- --run && pnpm build && dotenv release-it","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.{ts,mts,js}'"},"_npmUser":{"name":"botikass","email":"mhpoin@gmail.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"_npmVersion":"6.14.17","description":"Cache module for Node.js","directories":{},"lint-staged":{"*.{md,json,yml}":"prettier --write","*.{ts,js,mts,mjs}":"eslint --cache --fix"},"_nodeVersion":"14.21.2","dependencies":{"lru-cache":"^7.14.0","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"8.0.3","eslint":"8.33.0","vitest":"0.28.4","prettier":"2.8.3","dotenv-cli":"7.0.0","release-it":"15.6.0","typescript":"4.9.5","@types/node":"18.11.18","lint-staged":"13.1.0","@commitlint/cli":"17.4.2","@faker-js/faker":"7.6.0","@vitest/coverage-c8":"0.28.4","eslint-config-prettier":"8.6.0","eslint-plugin-prettier":"4.2.1","@types/lodash.clonedeep":"4.5.7","@typescript-eslint/parser":"5.50.0","@commitlint/config-conventional":"17.4.2","@typescript-eslint/eslint-plugin":"5.50.0","@release-it/conventional-changelog":"5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.1.5_1675435604856_0.26000630023390303","host":"s3://npm-registry-packages"}},"5.5.1":{"name":"cache-manager","version":"5.5.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.5.1","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cache-manager#readme","bugs":{"url":"https://github.com/jaredwray/cache-manager/issues"},"xo":{"extends":"xo-typescript","extensions":["ts","tsx"]},"dist":{"shasum":"b86a3995e9c0d2b26f799c6c483fda470a3d5794","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.5.1.tgz","fileCount":13,"integrity":"sha512-QYZFOjZTTennYdN3NNCKh+yq452+wQ4ChyL40jkEyghIgg5Ugwb4YO8ARIIF1fvTBkgDLlLTYFaxZVaPGmQ92A==","signatures":[{"sig":"MEQCICrAMcmV8D3d2S1ZCIbJb9oYLBJJAyuomRTXHDNuYf2IAiBt77fiVab0HVJCV9NSyki7om65vxzmYzRM+KWAlXDmLg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28792},"main":"dist/index.js","_from":"file:cache-manager-5.5.1.tgz","types":"dist/index.d.ts","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf dist && tsc -p tsconfig.build.json","clean":"rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml","test:ci":"xo --fix && vitest run"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/3c44439a2e3ba4ab9e87eea4b68413be/cache-manager-5.5.1.tgz","_integrity":"sha512-QYZFOjZTTennYdN3NNCKh+yq452+wQ4ChyL40jkEyghIgg5Ugwb4YO8ARIIF1fvTBkgDLlLTYFaxZVaPGmQ92A==","repository":{"url":"git+https://github.com/jaredwray/cache-manager.git","type":"git"},"_npmVersion":"10.2.4","description":"Cache module for Node.js","directories":{},"_nodeVersion":"18.19.1","dependencies":{"lru-cache":"^10.2.0","eventemitter3":"^5.0.1","lodash.clonedeep":"^4.5.0","promise-coalesce":"^1.1.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.58.0","rimraf":"^5.0.5","vitest":"^1.4.0","typescript":"^5.4.3","@types/node":"^20.11.30","@faker-js/faker":"^8.4.1","@vitest/coverage-v8":"^1.4.0","@types/lodash.clonedeep":"^4.5.9","@typescript-eslint/parser":"^7.4.0","eslint-config-xo-typescript":"^4.0.0","@typescript-eslint/eslint-plugin":"^7.4.0"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.5.1_1712334420003_0.7856166566841307","host":"s3://npm-registry-packages"}},"5.1.6":{"name":"cache-manager","version":"5.1.6","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.1.6","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"},{"name":"botikass","email":"mhpoin@gmail.com"}],"homepage":"https://github.com/node-cache-manager/node-cache-manager#readme","bugs":{"url":"https://github.com/node-cache-manager/node-cache-manager/issues"},"dist":{"shasum":"e0a97f29c1f9970b11ff4acceba70eca6c5592e8","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.1.6.tgz","fileCount":19,"integrity":"sha512-Q1A8ESC9sPgjSebfJl7DWUjcm3Sf5E4b5D9dspy0XCNYLMhcMOrPyTDVTYDDtpVk9JRt3uercpWZAlCsfhlDYQ==","signatures":[{"sig":"MEUCIQDZRgtFSWpRCG5EitaA+B/lzH2GpUzNzQIyTbeo1mQq7wIgUHLmlWiu1lQoXJmvs282de+qXcawuw15UZPfxd04kIM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":70021,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj4R1sACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoUhw//RtN52avDiLtZuclmRJ7vNu7E1MtqK1XMkaZidY2gW6EkfnYO\r\nt2M3echnX8kGZhH2rzlnXbxT3g/od5FSr3iGNuQ6o5Gta+WKsK33herHhsYA\r\n/g8BvG7oKVjZChVujdEVhQ3j06fc8om0bb6DMG5i1V0ge5gM8W67UHvr5ZQD\r\nKl/pQRZ9vHB3gF2xMF8qMpYNjD7OMLDOobdRVjM/IFxV8ugubQ6KxZbpUQ3g\r\nmr1odid0hvG5VlbUvZmDxMDQMBSyg43flV+ez+EE6+8hsSr4ODHq1xoPBI/j\r\nONMA93pCvF8J3po+QjpHNyyAX/zhXgx40L+atJAwBYF55ICH6loNu4maHBBL\r\n7APRae7cECGHMOxV26JbQldSvSx2CDDijM5m6ag47wZkwcYPH/AFN/JirelM\r\nZPhuKdOrBhNwWF5TVZMVm0ZzgrFMCqG9USCgVZTZ/lJXwDFhCvenoIlJiy6z\r\no9TVUfIdmieTIBzPM+0tXmSVUCXBfXU8HvokCw2YBvzXfPV0u+Kh393Jg3IG\r\nGRRlrHMVbJdjqzGSMZo0RMyt6b87j/n/7U092btmtkMLrZQYnq0xhQUCQvpX\r\nglUqXbGvjS9kEqwFN546CIjf7qCjAdX4+UjfOibDkWvNgzBKGDHyFYVCkmUv\r\ndDsnvc1fSYmcDhxcTZ6opzzSa27FBJBEPLE=\r\n=0neY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","_from":"file:cache-manager-5.1.6.tgz","types":"dist/index.d.ts","authors":[{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"pnpm lint && pnpm fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.{ts,mts,js}'","test":"vitest","build":"rm -rf dist && tsc -p tsconfig.build.json","check":"pnpm lint:check && pnpm fmt:check","release":"pnpm check && pnpm test -- --run && pnpm build && dotenv release-it","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.{ts,mts,js}'"},"_npmUser":{"name":"botikass","email":"mhpoin@gmail.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"_npmVersion":"6.14.17","description":"Cache module for Node.js","directories":{},"lint-staged":{"*.{md,json,yml}":"prettier --write","*.{ts,js,mts,mjs}":"eslint --cache --fix"},"_nodeVersion":"14.21.2","dependencies":{"lru-cache":"^7.14.0","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"8.0.3","eslint":"8.33.0","vitest":"0.28.4","prettier":"2.8.3","dotenv-cli":"7.0.0","release-it":"15.6.0","typescript":"4.9.5","@types/node":"18.11.19","lint-staged":"13.1.0","@commitlint/cli":"17.4.2","@faker-js/faker":"7.6.0","@vitest/coverage-c8":"0.28.4","eslint-config-prettier":"8.6.0","eslint-plugin-prettier":"4.2.1","@types/lodash.clonedeep":"4.5.7","@typescript-eslint/parser":"5.50.0","@commitlint/config-conventional":"17.4.2","@typescript-eslint/eslint-plugin":"5.50.0","@release-it/conventional-changelog":"5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.1.6_1675697516231_0.18315835951535142","host":"s3://npm-registry-packages"}},"5.5.2":{"name":"cache-manager","version":"5.5.2","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.5.2","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cache-manager#readme","bugs":{"url":"https://github.com/jaredwray/cache-manager/issues"},"xo":{"extends":"xo-typescript","extensions":["ts","tsx"]},"dist":{"shasum":"011f5e8ac9706291f1b1e326ac8bb3e81565965b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.5.2.tgz","fileCount":12,"integrity":"sha512-HozSRPCBB26O1ZVIzX8GjauYMoZOpWcArqRIFlPKr+Mm3o+p/6VcHxRt8ia0F/tMwZdKxpHG0M+Am5Qh9FmfKw==","signatures":[{"sig":"MEUCICYqi73avIkAVzBiM9pv57//Rr/D1oHNP79ctJfPD+nIAiEAx3GkakAnBEvKHPH/Dmcp+koMIM0UPPiwmIE7Y8aoRxk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28042},"main":"dist/index.js","types":"dist/index.d.ts","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"gitHead":"f0b20af4837ed2e12c45a201f95b7d25416f8dae","scripts":{"test":"xo --fix && vitest run --coverage","build":"tsc -p tsconfig.build.json","clean":"rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml","prepare":"pnpm build","test:ci":"xo && vitest run"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"repository":{"url":"git+https://github.com/jaredwray/cache-manager.git","type":"git"},"_npmVersion":"10.2.4","description":"Cache module for Node.js","directories":{},"_nodeVersion":"18.19.1","dependencies":{"lru-cache":"^10.2.2","eventemitter3":"^5.0.1","lodash.clonedeep":"^4.5.0","promise-coalesce":"^1.1.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.58.0","rimraf":"^5.0.5","vitest":"^1.5.2","typescript":"^5.4.5","@types/node":"^20.12.7","@faker-js/faker":"^8.4.1","@vitest/coverage-v8":"^1.5.2","@types/lodash.clonedeep":"^4.5.9","@typescript-eslint/parser":"^7.7.1","eslint-config-xo-typescript":"^4.0.0","@typescript-eslint/eslint-plugin":"^7.7.1"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.5.2_1714402691041_0.1874711902615207","host":"s3://npm-registry-packages"}},"5.1.7":{"name":"cache-manager","version":"5.1.7","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.1.7","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"},{"name":"botikass","email":"mhpoin@gmail.com"}],"homepage":"https://github.com/node-cache-manager/node-cache-manager#readme","bugs":{"url":"https://github.com/node-cache-manager/node-cache-manager/issues"},"dist":{"shasum":"07946574567877bcc4224a3010f592d2443d0ba0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.1.7.tgz","fileCount":19,"integrity":"sha512-2W43F4ruaYb7dSiCOqkKtpnmn51/3DqxbKMMTxHfLa6qtj1letd8rr17/P/c7D7wYViqQLa+LetLCoKSVwBN1w==","signatures":[{"sig":"MEYCIQCeTjedz6WtJFaiBdr5C5nz1YvESihuhpH8c1ce3GeEgwIhANwUpHFqjtpMeDEzA6TumhoK5IMjiu2z3bRhX/+ghTYU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":69966,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj9s8LACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp75g//XcI0GtUVUwAXMnddDfcnbvs464m745eIya7yzdsN0gFm4985\r\nJOBrGFTKP4kcDLFRT7Cbdzf46+Eq8aKOHKTREAfwv04wxvjOw67VQuXyvmFu\r\nP7WKlQrN7D906jYMeRWm9U4o2JCfDYSAYDMUiZNvJWikf1taShaQFM4hWo9Y\r\nHqlujdYCAHQeATwYIRviKPNB/C3dkZjY1KZJtLGd+KGing/hD96QKLP5qrvX\r\n4l49BUX8rxcCphcwLCid0crR6DdM+102GTSnRiQLgfrOPhx4WyjF1QUPMzhD\r\nLZos8GrkWlOIpue2UyGI4I0OGb43r2/DJzd2RXltwWHf3GxJx53vjMdw8j7t\r\n48PaK/FqVoD7cmoUqEHEt02jo6jAGCfB6GCcWgc8qKqOrrb4dhqNkya4Cu97\r\n9T6qp3CXyfL1hZXcW4AnhyhlIhJbkqksQdhGJEOvs4T+iLn2a27XtVvtbXs/\r\nMK9rKYA+eJdqUaaVZbWx7WzG/sKNapzOfCi2BPUtfsUmO9soeq3c/ySs1e7G\r\nmkN5oMfKgA8XxQAaU7q8do7ZkJqUCrHHlDlE7B6M6K/H6SG/LTK2Usx4l95E\r\nqveD+QowVc1xy1uuQMj1GxkStaO9nU0XoY9oLC5Zb4St3PQG6dHKwJJS9U/d\r\nfbXQtxNJzUd7BlqOIWTWOHYQ+jGlX7wzABU=\r\n=w80K\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","_from":"file:cache-manager-5.1.7.tgz","types":"dist/index.d.ts","authors":[{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"pnpm lint && pnpm fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.{ts,mts,js}'","test":"vitest","build":"rm -rf dist && tsc -p tsconfig.build.json","check":"pnpm lint:check && pnpm fmt:check","release":"pnpm check && pnpm test -- --run && pnpm build && dotenv release-it","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.{ts,mts,js}'"},"_npmUser":{"name":"botikass","email":"mhpoin@gmail.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"_npmVersion":"6.14.17","description":"Cache module for Node.js","directories":{},"lint-staged":{"*.{md,json,yml}":"prettier --write","*.{ts,js,mts,mjs}":"eslint --cache --fix"},"_nodeVersion":"14.21.2","dependencies":{"lru-cache":"^7.17.0","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"8.0.3","eslint":"8.34.0","vitest":"0.28.5","prettier":"2.8.4","dotenv-cli":"7.0.0","release-it":"15.6.0","typescript":"4.9.5","@types/node":"18.14.0","lint-staged":"13.1.2","@commitlint/cli":"17.4.4","@faker-js/faker":"7.6.0","@vitest/coverage-c8":"0.28.5","eslint-config-prettier":"8.6.0","eslint-plugin-prettier":"4.2.1","@types/lodash.clonedeep":"4.5.7","@typescript-eslint/parser":"5.53.0","@commitlint/config-conventional":"17.4.4","@typescript-eslint/eslint-plugin":"5.53.0","@release-it/conventional-changelog":"5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.1.7_1677119243265_0.6348562028734095","host":"s3://npm-registry-packages"}},"5.5.3":{"name":"cache-manager","version":"5.5.3","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.5.3","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cache-manager#readme","bugs":{"url":"https://github.com/jaredwray/cache-manager/issues"},"xo":{"extends":"xo-typescript","extensions":["ts","tsx"]},"dist":{"shasum":"427e84c96509f65473c19fae99a2f753a6c4afea","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.5.3.tgz","fileCount":13,"integrity":"sha512-Td6F8lZE/YCciSi8xmdBjur6zlKIcoLMZp9jTmJNc44DrXIIcEhr9gra5j1T7RRbtWHaG5tJMEBKS+0S1+T2NQ==","signatures":[{"sig":"MEQCIHPhFfzKncaoLOl0VmeJ9NNHEgNScRJNFFG0cI/LgropAiAI9NvjJR3UpasyuyfKaHLVrpAsfNI92tE6dkgndzLfMA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31327},"main":"dist/index.js","_from":"file:cache-manager-5.5.3.tgz","types":"dist/index.d.ts","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsc -p tsconfig.build.json","clean":"rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml","test:ci":"xo && vitest run"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/gs/5m4m2s857ts7l7nbvv0b57r80000gn/T/340cbb44020f41da897db1a1f67b2f86/cache-manager-5.5.3.tgz","_integrity":"sha512-Td6F8lZE/YCciSi8xmdBjur6zlKIcoLMZp9jTmJNc44DrXIIcEhr9gra5j1T7RRbtWHaG5tJMEBKS+0S1+T2NQ==","repository":{"url":"git+https://github.com/jaredwray/cache-manager.git","type":"git"},"_npmVersion":"10.7.0","description":"Cache module for Node.js","directories":{},"_nodeVersion":"18.19.0","dependencies":{"lru-cache":"^10.2.2","eventemitter3":"^5.0.1","lodash.clonedeep":"^4.5.0","promise-coalesce":"^1.1.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.58.0","rimraf":"^5.0.5","vitest":"^1.5.2","typescript":"^5.4.5","@types/node":"^20.12.7","@faker-js/faker":"^8.4.1","@vitest/coverage-v8":"^1.5.2","@types/lodash.clonedeep":"^4.5.9","@typescript-eslint/parser":"^7.7.1","eslint-config-xo-typescript":"^4.0.0","@typescript-eslint/eslint-plugin":"^7.7.1"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.5.3_1716420040642_0.10736497723370886","host":"s3://npm-registry-packages"}},"0.0.4":{"name":"cache-manager","version":"0.0.4","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.0.4","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"448148dbcbcdedb888602a573ce91fb0f641a8b0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.0.4.tgz","integrity":"sha512-P0UITrHCvcBvC7RVDfaaDR7pyyM1w+hJqI8r0gsKxlZjxRxxaXm5Xh6qM+sqcTBsEesrTen3MkE6aRPBzZOCSQ==","signatures":[{"sig":"MEYCIQDDrHmZZrGV5hsCVU2Lfc3MU/EKOzOVZ5e4VXxMBDlUjwIhAN0OMZrndKssq8F7YHtHfljKcORwicU6f007Y9ZXPIdo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"mocha"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.3.2","description":"Cache module for Node.js","directories":{},"dependencies":{"async":">=0.1.22","redis":">=0.6.7","hiredis":">=0.1.14","lru-cache":">=2.3.0"},"devDependencies":{"mocha":">=1.8.1","sinon":">=1.5.2","jshint":">=1.0.1","istanbul":">=0.1.29","optimist":">=0.3.5"}},"0.4.0":{"name":"cache-manager","version":"0.4.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.4.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"75907366c2266099883f3a0872032b117b4a39c7","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.4.0.tgz","integrity":"sha512-hSEPfc0CwxCDI81YfL9QoWBGxrJJl9yIGaNe0vXbBuEmYYxbTUf1C0X0RC8kQbbmQQXKoeyhciI2DSmdp4yywA==","signatures":[{"sig":"MEYCIQDHQpClUfJjKD7e3i3UjCI3mXd2tj4FJp1mmaM5eu/yUAIhAO82mUg20urWYRX2LLOmzCvfBjsBUyCcaXBrwpgDe7Mj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.4.6","description":"Cache module for Node.js","directories":{},"dependencies":{"async":">=0.1.22","lru-cache":">=2.3.0"},"devDependencies":{"mocha":">=1.8.1","sinon":">=1.5.2","jshint":">=1.0.1","istanbul":">=0.1.29","optimist":">=0.3.5","coveralls":"~2.3.0"}},"0.0.5":{"name":"cache-manager","version":"0.0.5","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.0.5","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"a6bd3af2f278b5d3452c855c6b6ff45f38c8c0cb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.0.5.tgz","integrity":"sha512-Q7a29Ut7V2VzZ5wn1yXXR5xjr18EI14vxFQXGQF/dIczvdXwUsjkyi9DlczLpqgWn19q7eXFUR1ecuGUSsDleQ==","signatures":[{"sig":"MEQCIAsfFK93sCtTISIzLzNz25aD+fnlsh9r1Lx0mJxMky5qAiAyuM+MBc+bOKIJHQrxOwT5oSapFyB8cy/lL2CxkmT82A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"mocha"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.3.2","description":"Cache module for Node.js","directories":{},"dependencies":{"async":">=0.1.22","redis":">=0.6.7","lru-cache":">=2.3.0"},"devDependencies":{"mocha":">=1.8.1","sinon":">=1.5.2","jshint":">=1.0.1","istanbul":">=0.1.29","optimist":">=0.3.5"}},"0.8.0":{"name":"cache-manager","version":"0.8.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.8.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"b27b1e91368febaffb4819298a3f82da97daba0b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.8.0.tgz","integrity":"sha512-7KzeS8NYw/bQfH6CR6BxemzSw31j/a/0yWBAvVXE4UoOaULCIOHhk2BtEvLyanDbq+szhTdaLlv/WcNCC5/P7g==","signatures":[{"sig":"MEUCIQD4BOpRWrh+DTH+wVN8gh3SV/J8WKGPpy3KTGFXazdHgQIgdDKrWXw1Ey/adS2KcJQT/4aqBEr2hAZYoKfqNQydC/Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.4.6","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"^2.5.0"},"devDependencies":{"mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.1","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}},"0.0.2":{"name":"cache-manager","version":"0.0.2","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.0.2","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"dist":{"shasum":"e5bcd9d2db22442b46d68ba57106d95a27e4309e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.0.2.tgz","integrity":"sha512-PEVegoZ7uVpHYN8AYb9MDZxpG4gJTisRhOnL+LD6aDgwpDkTdM/o0mGw2CdzbCWmuBrArA4/Ryib/ZROY5udsw==","signatures":[{"sig":"MEYCIQC8RasjIK6k/JJBRSdH9gS5AIeBOb3SktcSlmRKGiD1cQIhAJzDEoZib5PrhYaEqrAHZRCi722l1N96KP4AQEfWXNBe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","scripts":{"test":"mocha"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.1.62","description":"Cache module for Node.js","directories":{},"dependencies":{"async":">=0.1.22","redis":">=0.6.7","hiredis":">=0.1.14","lru-cache":">=2.3.0"},"devDependencies":{"mocha":">=1.8.1","sinon":">=1.5.2","jshint":">=1.0.1","istanbul":">=0.1.29","optimist":">=0.3.5"}},"0.0.3":{"name":"cache-manager","version":"0.0.3","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.0.3","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"dist":{"shasum":"cd25d2151abd229820c2a94db4726c87063d82e0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.0.3.tgz","integrity":"sha512-W711PLQnLhjqAF2D+Nd4xx1PZxJn40YEOmVcb8v2jDC5C+tbppWvkeRdnc0ee2ZD/6yFwZzhCQy6VYIlrwJbKw==","signatures":[{"sig":"MEYCIQCszMIAt2kQI6jrRphdZEDN9wvGRfHR/WgxRlfT8O8uFwIhAIPI4HEg8MKlNARA1csHrez5Wm4CpuZtQTLd4WiPUHa2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","scripts":{"test":"mocha"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.1.62","description":"Cache module for Node.js","directories":{},"dependencies":{"async":">=0.1.22","redis":">=0.6.7","hiredis":">=0.1.14","lru-cache":">=2.3.0"},"devDependencies":{"mocha":">=1.8.1","sinon":">=1.5.2","jshint":">=1.0.1","istanbul":">=0.1.29","optimist":">=0.3.5"}},"0.0.1":{"name":"cache-manager","version":"0.0.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.0.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"dist":{"shasum":"847cae34aad64a84d89a41c5ba83209c6f7ed7f9","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.0.1.tgz","integrity":"sha512-LIXYm+b3GTTFy3oUKukXiYVwxs73yG6/xxg8zg5/mO2JgkTZ1Ko6cnAfsBul06tGI2AOSC0EOAStdqqcsC0QYQ==","signatures":[{"sig":"MEUCIE6/SP18ExHQG3qthvDKJ+kBsMEiI+Yg5itys/1S2RzTAiEA905qkKIalhTEkhMNT3jt3SpCdyDDJT3x+eZzNy7x07M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","scripts":{"test":"mocha"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.1.62","description":"Cache module for Node.js","directories":{},"dependencies":{"async":">=0.1.22","redis":">=0.6.7","hiredis":">=0.1.14","lru-cache":">=2.3.0"},"devDependencies":{"mocha":">=1.8.1","sinon":">=1.5.2","jshint":">=1.0.1","istanbul":">=0.1.29","optimist":">=0.3.5"}},"2.10.3":{"name":"cache-manager","version":"2.10.3","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.10.3","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"2618d002074381c4e343af7634a1120a27067ed4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.10.3.tgz","fileCount":28,"integrity":"sha512-HKZrOj72BU2XUXiB9BLTBrO+sy2vRfYkCY2UnL4XqgeIuz0U4S/qeUDSRHHt2VDhoJJyjLt8YD2qz3rAnz8SDg==","signatures":[{"sig":"MEUCIDtx01vNORczQFVKRPjTWE5I7i5cjLb6Xu6Lz3XUwUHtAiEAnR4OSMSZxtgau1HkAEH7ZdDsdnXv2b+q83CJDReqrjw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":214458,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeNHkaCRA9TVsSAnZWagAAcpkP/342c21Tyy6bzG/0WGz8\nUl/q0T9L3oOmScC25L9Xrz0oL0207eQORFuUc2X+/xObS05DzlwI1vYlGhYH\nBqQNpdujKpZwhhxrP3EIMkS34TTd9K2JO03gW0/PNfw3BvhrIlgGpdi2WiQc\n5Sy5sNqCJmOaLMGHsHI8EZ02U17pRMw/B+dFUcqdMT7zgUwBKwJvU5hcdON0\nTL2GGMDKcJV0JejII4wvqyy8S1vgXMAEf8C6W8JQ1n8+stMZMJ5UbBaLnBD2\nx3Du2gEdRU0vTUOMbb59wU1CQ1jQparIYv1rzUYTDJ9vcN8+CUm6orcARN34\nKDz5dheYoAFbfJEhtcopNi4vBYc4rMJXtmgovX+Q2C0XUyKWOp9kdZ7hpxJd\nHN2oFYa0XDEhrXQBiDYwHIyNQrq7rlkekFeVkuopFEg7NV03lCDG4BFGI8km\nw5HCwoo7op+lgeBAiaMmJTQGjNWvNSzX+5FIsQxzYKEMH0Ohnk+FL/moV/nf\nIkqDfGUWWQffoDx4oioK5jGaw0+U/ANwEfXlZB7L+ZVrnvC0cB7RghJWddQx\nB1CFNA5Pa5NTQ/fcRLjvYH9W8oPOrhrXnqnRo2EazAt9QHbmzIAXf/DNWUi1\nUfKgINkYywna6J7vAEk7x6J5fS0Dtz/IxpxU4p7J5jItnZpsefd4gelbcfp+\n9b8J\r\n=K9ak\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"009c2d41c768f9a918a9a9d19bde4405d2ff5958","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.4.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.12.0","dependencies":{"async":"1.5.2","deepmerge":"4.2.2","lru-cache":"4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"2.11.0","jsdoc":"3.5.5","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_2.10.3_1580497177772_0.0589172766478121","host":"s3://npm-registry-packages"}},"3.5.0":{"name":"cache-manager","version":"3.5.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@3.5.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"4cc179ac49475cc8dfab45c1d41c2f548e1cd731","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-3.5.0.tgz","fileCount":15,"integrity":"sha512-1beWBcHdHBULYupCXok4rVuEodQoHdZ86p/2nFqUiU226xf+yUt2ovGKVQN+QRA/X+2zUUpvh/twq1FeTapNDw==","signatures":[{"sig":"MEQCIGsYYLxY46SzyrueEbVjogLc+pbtaryne42rXLgTrP6UAiAFFf1gIUnpHZ1NoPuKrikcxi3wJpEHnDkFpY3/LYlBng==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80284},"main":"index.js","gitHead":"5268a877b90252d80d7df8202070ca149196eb07","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.9.0","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.16.3","dependencies":{"async":"3.2.0","lodash":"^4.17.21","lru-cache":"6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","jsdoc":"3.6.5","mocha":"8.1.1","sinon":"9.0.3","eslint":"7.7.0","optimist":"0.6.1","coveralls":"3.1.0","es6-promise":"^4.2.8"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_3.5.0_1636656277114_0.476971658337658","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"cache-manager","version":"3.1.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@3.1.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"a39851e54d0d2e51622bd687d95b4b8def9d7920","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-3.1.0.tgz","fileCount":28,"integrity":"sha512-ptrCPy+O0DhCDeN/YGHCJsOabcKtbL5RoMU8INsMhTvZbuzU9uWoWJvO3rt0GFN59lbKdpwW45Eg6Bmz9Vizrw==","signatures":[{"sig":"MEYCIQCWN57pg3D7i60i/w0brHtKYO6b5OL2W4UeyUCw25KExgIhAPpoH8K3rlK/nX5Q6V89+BpUmwIIr4JA4e6YlXHJr1FN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":217145,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeVAPMCRA9TVsSAnZWagAAqu4QAJQq3mYMZpfXdYG0meZv\nXeiX/Yv17fW7gtzs0biiY8JYhuRf1xK2kcLvxWFTJhMCNxd59qHf/1mqYwg7\nltt1KK9ECCeKTOYukE2X3QIRzks5ur32dvBSxTA+p0iu0zESwFKzXb6IZ46G\nZ6xlzNw4oJXiLhOnDl97hzZXiLa5Ak9WB9THNX1w0ohRlAJuM0SBXaBQgzGD\n1tiZ1dgUzNYE5SlYjqg5V/je4S3TJ5RidqEX//Ywmn6uP8kSjfG2AbRsOzgG\nP55wQ6vzES/YnHBgkeTAUnw0p4jOSqAq6M2MBfO8tvckhzJS0Dk5c1wobi4j\nsGklBoxE8mz/BA/chTDNqDsMxP2XzTLOhGD3ZgHNMJ1PMRzgMJ+IjGR89VWo\n6hS+i7QVzSND+7xz1rIHhPLecy0o88CpA4WBYtR6Z4Hi/px4fygRwPZTVOMz\nByEZivNb2tiKaFS0r08ymBH5cnuvWON2UoJNyg/BdA6dr1DWRlVxmRCybZUN\n56TusVOgw1gXunsUUMCYv8WDbI2yQDEe+OQ/dv5CTAKu0Npn/Yg9g4dMhwer\nYLZk5stDZOG20IgELSmUapbtjjm+3iXYleMNXsZUI1PiLiFbbL/6Zg89CM3i\nTOZSFSx/7U3uvv0xypgotjd1qrjvu5dXfjlEjPZvYQpsXe545ZtRTAgI5Ggq\nj95Q\r\n=fC26\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"141858e719914d0a982c8ae5faba830283b09c68","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.4.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.12.0","dependencies":{"async":"1.5.2","lru-cache":"4.0.0","lodash.clonedeep":"4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"14.1.1","jsdoc":"3.5.5","mocha":"7.0.1","sinon":"1.17.3","eslint":"5.16.0","optimist":"0.6.1","coveralls":"3.0.9","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_3.1.0_1582564299785_0.3614469796723989","host":"s3://npm-registry-packages"}},"0.18.0":{"name":"cache-manager","version":"0.18.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.18.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"12f803017871d4f854c66db9dc8f41ffb259a67c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.18.0.tgz","integrity":"sha512-ZfJSYAH1KskVSAeC2GxeMau1z1uYJ7RK4CW1TVPdx6UmC0D7oQkuM9VNaq6kthn32yoA38M8o7VA4fyzv60R9A==","signatures":[{"sig":"MEYCIQD1FGDqNOB5v/MxqDm8gKpVL5/LvMIMFnGVN+J9QMUOegIhAMN5cx1Yhu5wEjA8C47MbAct43TmmGmoO5ZfJ1MMJuRF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"12f803017871d4f854c66db9dc8f41ffb259a67c","gitHead":"770af766f72d8255c16998fed7091b9d943d232a","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"2.0.0","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"^2.5.0"},"devDependencies":{"jscs":"^1.9.0","mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.4","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}},"7.0.1":{"name":"cache-manager","version":"7.0.1","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@7.0.1","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"018934791251638efe13b1ab1e2b2c0c9d49d0ca","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-7.0.1.tgz","fileCount":7,"integrity":"sha512-Hd7FOyTtwhwLgkKeKQWEw6Ixj63VKuUWYwkGgL6g6Q7eISW6uxci5+DtUXlqI0gtbLCPPdhL1+HP9Zht27DbrA==","signatures":[{"sig":"MEUCIQCJBbu67TTNZQaOo8jfwg4OpwvzO6t14MXIjLXbK/JSRQIgYcx9+BCyGTvGti8IcmJVVlJgNDclCoMpq0WsXtYvQIY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":51373},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-7.0.1.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run","prepublish":"pnpm run build"},"_npmUser":{"name":"jaredwray","actor":{"name":"jaredwray","type":"user","email":"me@jaredwray.com"},"email":"me@jaredwray.com"},"_resolved":"/private/var/folders/q4/x95kq1ln6cd7rrnct9cby32r0000gn/T/11287eafe8a7cd60ed8e4ace61515f6c/cache-manager-7.0.1.tgz","_integrity":"sha512-Hd7FOyTtwhwLgkKeKQWEw6Ixj63VKuUWYwkGgL6g6Q7eISW6uxci5+DtUXlqI0gtbLCPPdhL1+HP9Zht27DbrA==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"11.3.0","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"22.12.0","dependencies":{"keyv":"^5.3.4"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.1.1","tsup":"^8.5.0","rimraf":"^6.0.1","vitest":"^3.2.4","cacheable":"^1.10.0","typescript":"^5.8.3","@keyv/redis":"^4.4.1","@types/node":"^24.0.6","@vitest/spy":"^3.2.4","@faker-js/faker":"^9.8.0","@vitest/coverage-v8":"^3.2.4","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_7.0.1_1751087400439_0.4582984806153503","host":"s3://npm-registry-packages-npm-production"}},"0.14.0":{"name":"cache-manager","version":"0.14.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.14.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"173d1bcc3d1aa2de4ff1042b912de8160c1baef9","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.14.0.tgz","integrity":"sha512-EVJsOKRA5uvj4txcLGw24soVIVcu9F7aQ4bRq5sGMvzC29X6n0zf7tjiyciAhdTNGujB7m5jNB4L+XYyH0BVgQ==","signatures":[{"sig":"MEYCIQDQplJ6VO6ROOxU0Poer0JZje2LZBnAK/z3/+xBIRdcNAIhAO7MnfXfWmIPcDSKSeDyVrRZ550XpkOqymrx0UNmsyhP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"173d1bcc3d1aa2de4ff1042b912de8160c1baef9","gitHead":"13eb09322e2d768230cc0d6fa174b5a9c534a353","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.4.23","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"^2.5.0"},"devDependencies":{"jscs":"^1.7.1","mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.4","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}},"3.6.3":{"name":"cache-manager","version":"3.6.3","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@3.6.3","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"48052f3cf9ee4bac1cbb6adeedd69faf9da4ec04","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-3.6.3.tgz","fileCount":15,"integrity":"sha512-dS4DnV6c6cQcVH5OxzIU1XZaACXwvVIiUPkFytnRmLOACuBGv3GQgRQ1RJGRRw4/9DF14ZK2RFlZu1TUgDniMg==","signatures":[{"sig":"MEYCIQCtintC5iyM5ylqjySrUeYhTkAKRuiaEEgHb+aaPgw3yQIhAI0wo7KwpkiezbVnsmrn4fnmvuYhoUgm4MTXAgtM7tOp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81074,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJih+SIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrg9Q/5AfOV1eRZkKKHqkfTXWtD8CV1xEHS7XXcN6nZdRpJAYkvZdzO\r\nUvD2gwcDat3pW6AbjHmFCAE9M4WOzgec6IucBwGBEKCfQp5OC3r/OJmRboOb\r\nhVh35NUq36m4rulNKUmb5Azjs/1i6go0pQGZahYYAfTdg/BQvUPdusosA6Hv\r\nQ3v6GNj/7Ypr4EEm3A4dntr0yFTAls1F43F3H1ZgTdW2zym2Pc9rvUYiobxm\r\ndEgkVWy1sZc8pdR4wTUI5Mcd8lk++YBnmYwGrePi6BlepGYZoo/15NN6xy3q\r\n1tm1obxCpqPq1PGVHpIrOcqyOQRRdG2y5AObc7ammE/tsh2FSbSoyvYgi6iR\r\nUFk8pqaQTXEKRX/HncUsk/RarL4AwADLzbswhwxCXtuWaogF3CIqsw+eCd8U\r\nyOmRTSLp+FVmYE71EpO0TAHgZEJXyBEOCouSQLkim7fucQZ0cXI7Usz1IoG8\r\n6TjtkW0eUOU33+Jd0BGqBjb1bq/PnkmnEGjljS6sr3qH2S2tJXLUAAVUJZth\r\npWE1wtw20RFDLoil0oiUJSS6GQXdsmpDaz6l28nYMyF6IaQLnVAdO+Uwsscs\r\n6NuIbiICWAIMnIo30he9uN4TKxx5/aNMlsuxCWG/8TcZv6IPcXY6D0riUS7M\r\nHsArq8lhcyrRMcHbNJI8VLzf2Ru9oZjJaNw=\r\n=5btg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"d38176ffb38ddec2ffe021bae0eea775c57efcec","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.9.0","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.16.3","dependencies":{"async":"3.2.3","lru-cache":"6.0.0","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","jsdoc":"3.6.5","mocha":"8.1.1","sinon":"9.0.3","eslint":"7.7.0","optimist":"0.6.1","coveralls":"3.1.0","es6-promise":"^4.2.8"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_3.6.3_1653073032272_0.2410094819312154","host":"s3://npm-registry-packages"}},"0.10.1":{"name":"cache-manager","version":"0.10.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.10.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"388774c24bdf16e54fce120b7313ffc6e5aacd83","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.10.1.tgz","integrity":"sha512-RL67ANsLnO6P5HKzZJ+GA/7aa9TDl/CoAmTlFKPNgc+qU+qgOdoQ5uPB2un0FtoTK1agO68H6PGsEVbChoG+cA==","signatures":[{"sig":"MEYCIQCRRlPoh8KnI8UxmMZXe4309d8DKYYIUewzZMsO67MzjAIhAL7HnkQ6V3gxB+JZDD7s9YoItFclNnQmKeQ+f27KWLYy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"388774c24bdf16e54fce120b7313ffc6e5aacd83","gitHead":"219d8b22e8d53d3a4f1ea633703bb06ce5aaeab1","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.4.23","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"^2.5.0"},"devDependencies":{"mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.1","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}},"7.0.0":{"name":"cache-manager","version":"7.0.0","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@7.0.0","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"3a591187372bcfa32e9cb479764a411a0a0d6a74","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-7.0.0.tgz","fileCount":7,"integrity":"sha512-5HLGorfU4g2GyLTXd+bbq8RhZPwLRlVm7hfS1EssJx4Ujq1FjyQAjHND93sI6ByQTlUlCQ0jrHZqLI0qtBFyHA==","signatures":[{"sig":"MEQCIA+6RdmSHhBR3ueUNJ+zAk2+B+HG8L5xWcfdGJleOZgRAiAc/e+53yReHxGPs9DDxp5Ma0dDV9cYfUBExPlwaQv6DA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":51165},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-7.0.0.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run","prepublish":"pnpm run build"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/8080a259d3c1bdcbaa87272354d6e721/cache-manager-7.0.0.tgz","_integrity":"sha512-5HLGorfU4g2GyLTXd+bbq8RhZPwLRlVm7hfS1EssJx4Ujq1FjyQAjHND93sI6ByQTlUlCQ0jrHZqLI0qtBFyHA==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"11.4.1","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"20.17.0","dependencies":{"keyv":"^5.3.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.0.5","tsup":"^8.5.0","rimraf":"^6.0.1","vitest":"^3.2.2","cacheable":"^1.9.0","typescript":"^5.8.3","@keyv/redis":"^4.4.0","@types/node":"^22.15.30","@vitest/spy":"^3.2.2","@faker-js/faker":"^9.8.0","@vitest/coverage-v8":"^3.2.2","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_7.0.0_1749404749209_0.3445692677024541","host":"s3://npm-registry-packages-npm-production"}},"2.7.0":{"name":"cache-manager","version":"2.7.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.7.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"8477802d0a257bea0d36b92420ac8998e460b09d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.7.0.tgz","fileCount":27,"integrity":"sha512-fIKgb0vuanFCYtmiDbNXS1/xl+Suvcl+ilG0Kv8Qv91XhI3+ZqAmoofgC9TDLQG3zDgB0UElTpGG1ReHmIletA==","signatures":[{"sig":"MEUCIQCIeD8XckgFleH5JZfrE4PJI8h3+V5KmXyYVYty8spOkQIgJCKCYcIe5xFsEHDUeFUehAh+2MZnQhJMYBMX66hHdW0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":195337},"main":"index.js","_from":".","_shasum":"8477802d0a257bea0d36b92420ac8998e460b09d","gitHead":"e957821213fa1dc79620f998c99848a09ddd9445","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"2.0.0","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"1.5.2","lru-cache":"4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"2.11.0","jsdoc":"3.5.5","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_2.7.0_1518546164036_0.5749305021196354","host":"s3://npm-registry-packages"}},"2.10.0":{"name":"cache-manager","version":"2.10.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.10.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"278e9f8784e5d7e6617bfe350358c8ccd17387bf","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.10.0.tgz","fileCount":28,"integrity":"sha512-IuPx05r5L0uZyBDYicB2Llld1o+/1WYjoHUnrC0TNQejMAnkoYxYS9Y8Uwr+lIBytDiyu7dwwmBCup2M9KugwQ==","signatures":[{"sig":"MEUCIBIfEswfiIMwmdHyu3jzPiVWkFGziWuAcoWbaUqbJAhWAiEAjUnJkpG/2RkNWxK00t/EXJCeg4hSr4qh8LYAQ/fs4k0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":206714,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJ7OmCRA9TVsSAnZWagAAN+8QAJKLq2Yh6Q6M391BoB6K\n9Y38a12SHws+NxiF3bPNLh8XAP5JRuuvGiPddTUAfQcyguhs1U27ATCQSIbL\nP999ZfEido999EKfwexq4iSgmrxvnjY+nblYRcZO4SAbXGQyjmjO7ZJ9SF5W\nsM5OUpbP2zV4qVJGL1uem2tQWi8UW0HRl5kI9A/gSHxPeQWhxgWEIntIJ264\n+Rz9ZlAda3WwEsBOP9/FETNBAJVasVRwVAT+AvA1LXuSjXliddDagQan3r1m\n5zp4BdBh17h2m4RO2gn7tDrZ1ju48Qazh5pKHCl4MG1Kvw1lgMEpdcAySWCT\nfLvMC1YFK0BKjGtu7J97fTQqFm7i6oTU3aLvmeYIwtQq5gz8pfXcWvdwtcuV\n2UIluemrKj/0wv0432QI3tatfH3bhAOL0ZoQg9oMFx8a4s6c3D+G9xQamtrp\nsNwb0L7M3AL2lSdEpnRSWBLLCHneqvnRKh4oPAYX2C/x1UQKRlV/qGHt3EK3\njLcOzKBjw5gVK8hDkiI5GJUtrqcp4bXUD2V3YH2ilDnNnHK6BpGAJ7VaEWNJ\nDnHg26kVe2lb0ImKQu3dSpWKzKnNPVQs17KiTHVNA+Pae1b0nyPsXky3QAeM\nU5Xxoh3bitgKghNq0M0E93CNRJbkub5VCseBZnrHKox8hmNIKZohrgtsi4d4\nLH9d\r\n=LyUV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"da840eb2505675f3f83ce2bbb29cc503ba95174f","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.4.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.12.0","dependencies":{"async":"1.5.2","lru-cache":"4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"2.11.0","jsdoc":"3.5.5","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_2.10.0_1562882981371_0.20517513835082912","host":"s3://npm-registry-packages"}},"2.10.2":{"name":"cache-manager","version":"2.10.2","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.10.2","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"7ecabfb82db9e80290dc6705f3a555ded1c9cc8c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.10.2.tgz","fileCount":28,"integrity":"sha512-VueuJaWPfugreadk88pZ23g0nGVd4qqG4Y8X8y9LQePEN+EhaDlXbJM5pbJB0CdpuTmqVPCmcWgtEDxLqbT1zw==","signatures":[{"sig":"MEYCIQDzD+M7VOh12Pp1ZgflTnyFddUjk5GDBG5RRGzOkAnKFQIhAOOAKiXJRFl2sT52eURplNQWeT9OO16jj+B6WUTpVRl3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":213501,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeMyCJCRA9TVsSAnZWagAAdtcP/jbuGvpDKqcVXbHYpsQA\nJANbEOKEAnuB9/igxgACm4OnAb5eNKXvHlB/fGrogv5wNZXyFErMHYet3Q92\nK7dEw36YDqm/88hDHt01XfTdINbrrA8Da8EJidHl7XOaZWWEXihHkTnUwDdQ\nUIR3LZEpy1KGt0xv+Oo2K5cyq2zlEg8tEc4IMdL6VLC2AUcMT19e3hUZMp0c\nM3GyfsvIWQRXxZNKM/DvNvUPknThXTIxcgeTe9ORJesERG5ygkUJu6w5uBxG\nkJ0u0frzQO19NUm1mAZGqx/9x2XmQlGCeLi1aSMp/1qBa5GLvmlgp96eociT\nv4+x6WHI0jSuKPSyBR1IusmCy5IPRrL9LrlgHj/cF+1bpshngSoQJKPN0lZ/\n/OSG78VXTOWo/fhogsECfhsBt30+tfgMbh+y02qTbMqplu8P8oHW9Gby1xIP\n6Eg94wRMOBqhx2BLFB7w9wBuzUiW9uxOu9bbmWb6eFHZchQ8TBF78bUyHbQn\nI2KJIlqoWS+opp3HN4dH/25auv5B0C1VyT5Qpo77QZvm6O1TNK7tKIo7iw7N\nzYh3t+N5Hefpn890W7K2aI3xJHl844GT9FojcikCSjAo/9fOEsD3Gg3LIHH2\nzclbM+fkUulF20OS/h9Pj/N32MaHTjh+LO1Z7NzmRCQfRQ0sR7bIc9v3GzUh\nYGa5\r\n=mKM/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"4e3e350ffb8abc8cda60287cf69b75d10f656e8a","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.4.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.12.0","dependencies":{"async":"1.5.2","lru-cache":"4.0.0","lodash.clonedeep":"4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"2.11.0","jsdoc":"3.5.5","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_2.10.2_1580408969360_0.903654050820176","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"cache-manager","version":"2.3.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.3.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"fb2a5d08b05ac4a24e1960bc0d05269a4bfb7721","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.3.0.tgz","integrity":"sha512-QpHNkldO9QdZckkBqzSGpoxY96YzRG2EzKZ24ScHUxigEkULAP9E8EjNwQKO+KfxxtlOjmoTTUkwzNrhUO2YMA==","signatures":[{"sig":"MEUCIQDUVPHzNX1CKTbBNEe6/bCjeEGnkKv7+9NlpJCel1ywmAIge+Erh61Fi18tBRkY0cbMYqtmUt5gbcv3zpVKOrqiZBY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"fb2a5d08b05ac4a24e1960bc0d05269a4bfb7721","gitHead":"fdb929ae01af70296cf0353c4daf6b0680bcec82","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"3.8.6","description":"Cache module for Node.js","directories":{},"_nodeVersion":"5.4.0","dependencies":{"async":"1.5.2","lru-cache":"4.0.0"},"devDependencies":{"jscs":"2.11.0","jsdoc":"3.3.0","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager-2.3.0.tgz_1482434923988_0.8381004089023918","host":"packages-12-west.internal.npmjs.com"}},"2.10.1":{"name":"cache-manager","version":"2.10.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.10.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"d8f312381255966cfc19c990bc8834c8d24edb2a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.10.1.tgz","fileCount":28,"integrity":"sha512-bk17v9IkLqNcbCzggEh82LEJhjHp+COnL57L7a0ESbM/cOuXIIBatdVjD/ps7vOsofI48++zAC14Ye+8v50flg==","signatures":[{"sig":"MEYCIQDHGcXSsZg728sTUwhPNYaAdAr/RmomlVI+d/KqPd+WjAIhANwjTu7qJ6kC3EAS5CEw5xecJq6iFTyP+nQ+aJCOq5Dc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":210173,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdwv7iCRA9TVsSAnZWagAAivgP/30/eIFCFPzgkGUBwH/s\nitImRFSeLH7zuH2rcFkoxXXOG86LSCGuQaVB4lxxN58Aw0BXJs7v8e73PyTr\ntbXGqz60bgyyMqD7LwNrGevFC6/JMOwlQJ7lkmQ1BdSSdiSyJ2omM5wHYcuz\nkMs5tKPDLnT1nJuGbn12wwRJlFMWYnVof9/hAtLEunSv0X543H0SWEWhcLSY\n2+ugO9f0jKfOY2AtcJloVnPEP2HFlU+K2sHvSQa3ipSRNkEr9ARiclg98F3i\niuEAmJw76NXI/y+6TSoyaBpUBu7KTokcD2aJ9lmDKpVC5bTrALtukbsSHf/n\nrYkfLSUUCYd4zfZsE5gfVnyjYHPf0C6PcYPLo7ESUN2iBheZuaeZOqRMwuUx\nEz0952TcvXrAZiEBMUYw+CjlFluwnZzL408EbDG2zoGQ4k4ZfvGzJLv8+xfZ\nQb98xRF8V1KWoPlFVjKg0NUatJwthHnhI0b3QJuXNFUZ4NSCDXsLUxSMY+tr\nVdEMPwDwUGynNI/0sEvfpYYT39i/OZmdiNyy6XhajTLNXHeyijlgVknhyH0i\ncqoSXYfgi3ZRBCngZYO0FjWUC1La+EKryFqjZD2lU/8V125EjAmSoibOmP6Q\n6Nm00pbqb8tRdH+j0nqCorUZHboOQAuW4SoXdzW3qcFg8R9HXJQCQKni+dqQ\nSKWo\r\n=BDuR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"66795d842a6254ccab72828dbf95326798bfd45e","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.4.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.12.0","dependencies":{"async":"1.5.2","lru-cache":"4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"2.11.0","jsdoc":"3.5.5","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_2.10.1_1573060322259_0.9844189518632942","host":"s3://npm-registry-packages"}},"1.5.0":{"name":"cache-manager","version":"1.5.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@1.5.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"529214bda57fa19514d106f070fabb16c3190811","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-1.5.0.tgz","integrity":"sha512-b5/yJfiVTpxsANbliIaGSOVeyS8P5wb2grDfThlXd8zJPmWeofcZ7SIBmHqZbvjozNs6wYmhR6UqxOsWaDsg1Q==","signatures":[{"sig":"MEUCIQCUakRjR32b8Tj2jr+ImQRY2ZDqnrpSvu13UT9le38hggIgSg+izrjwh/QHgvUkPjcOfe0ep92HlgIt8TJgggmcjM8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"529214bda57fa19514d106f070fabb16c3190811","gitHead":"03f791d30494da13d6af42bf6f11488cb2c58ace","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"3.6.0","description":"Cache module for Node.js","directories":{},"_nodeVersion":"5.4.0","dependencies":{"async":"^1.5.2","lru-cache":"4.0.0"},"devDependencies":{"jscs":"2.11.0","jsdoc":"3.3.0","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager-1.5.0.tgz_1457904158575_0.5704862610436976","host":"packages-12-west.internal.npmjs.com"}},"6.2.0":{"name":"cache-manager","version":"6.2.0","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@6.2.0","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"4055797d864b56e72b521aed2967b816e30dc8a0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-6.2.0.tgz","fileCount":7,"integrity":"sha512-ABh8Z0V8aXq7q0uVBySOi+ofV9EHdc+2U++Nqhv2GEmxHQ4qRamUkBlYZAP8dt+/KAuMnZ2Lpt8drzE/doUt0w==","signatures":[{"sig":"MEUCIDS4z3n93oQC/MigaiI5IEI4uY6V3+VZ7wIWmBN7t8oJAiEAv8qHAXYHpJomYtPRmhoBiggwIl4OC4kCUPHHOfmQVEs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39788},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-6.2.0.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/gs/5m4m2s857ts7l7nbvv0b57r80000gn/T/ce8f89a5b92e400cde95551ae00f4367/cache-manager-6.2.0.tgz","_integrity":"sha512-ABh8Z0V8aXq7q0uVBySOi+ofV9EHdc+2U++Nqhv2GEmxHQ4qRamUkBlYZAP8dt+/KAuMnZ2Lpt8drzE/doUt0w==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"10.9.1","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"20.17.0","dependencies":{"keyv":"^5.2.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.59.3","tsup":"^8.3.5","rimraf":"^6.0.1","vitest":"^2.1.3","cacheable":"^1.8.3","typescript":"^5.6.3","@keyv/redis":"^3.0.1","@types/node":"^22.8.1","@faker-js/faker":"^9.1.0","@vitest/coverage-v8":"^2.1.3","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_6.2.0_1732406111292_0.4670527737388994","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"cache-manager","version":"5.0.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.0.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"},{"name":"botikass","email":"mhpoin@gmail.com"}],"homepage":"https://github.com/node-cache-manager/node-cache-manager#readme","bugs":{"url":"https://github.com/node-cache-manager/node-cache-manager/issues"},"dist":{"shasum":"5fc1a6e53d289621fb97e243317d6d4e935367ce","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.0.0.tgz","fileCount":19,"integrity":"sha512-1qKdoeoJKmrf95Zvhr3NpBVAgBESt4TuZomBzn4N2gCFZvHjuUXBK1H8EDVsJdba6/grIgi6WGYb/ncJj+wjtg==","signatures":[{"sig":"MEYCIQDJDs8uPikTrzCy+prXb7XiqWcm7o0EYvQ6JUuO2p+UDwIhANxmCTmjzTds6Zgqj/6mBzw33lzfsjxSuiS6DD71EVVB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65521,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNfdSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoYAxAAhpJt3KKEGg47s7uxwYuF5b4yowVgOaL1WBGTFSEWwUdBo5K7\r\nOCP2p4tfO5/WHW+FjkV9uZtRuY245TmJBzf45TqttlG+qz/HrxmeQX5xQavm\r\nZAuFLPoQTh7pfbipHbwYdljMpicBYhAPQYFNSmiy927GIIR5gcgFRyJsh105\r\nP7TjSCsnyzn6/y7pkYzucSx3ekCY74COtRUG9EAHomZjp4CD6/DAczZVUln7\r\nrFGkGB6xFa2hvgQ1jKxZyxv4kGrpXRnVY53jQXyh+F0Spo3fVaqgnmjnwUxQ\r\numodYP6olQy3VVFyqSZwfZOzXAObofnH7nc85qsT8cF6YJK7EN9O+LYMBcLh\r\no82FSBQyDZWlx94rz5+Queh6Tae9EtsXxBDG0ZyK7f3Tps3WXeuyRs3NghbI\r\nVBn8mAEL6xgKWMXaMnb96JpRTwNJAjO4Q3Pkhj6otYMpxbww0g/77mlFlxMR\r\nDZmpu8J1d5pohh4Ug18jXZePgcK7+V8IcKJCzoUX69bJGUfVsYw0yXojFINE\r\nP0NNCv2yn07T2NT8vI3JzBMefOA5J8GfgxRUivu/Zn/5eiAcuAIJps6M2adL\r\nY51mg6s+3Dgl/NvjpuGRnrjxd6ITyzC7TXgB6V7SpyFFFxrHHkPfMuB7mbE+\r\nBzzsFrUJesa2y6/sFXIelUMmV2zQFbQPwLU=\r\n=vwXK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","_from":"file:cache-manager-5.0.0.tgz","types":"dist/index.d.ts","authors":[{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"pnpm lint && pnpm fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.ts'","test":"vitest","build":"rm -rf dist && tsc -p tsconfig.build.json","check":"pnpm lint:check && pnpm fmt:check","release":"pnpm check && pnpm test -- --run && pnpm build && dotenv release-it","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.ts'"},"_npmUser":{"name":"botikass","email":"mhpoin@gmail.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"_npmVersion":"6.14.17","description":"Cache module for Node.js","directories":{},"lint-staged":{"*.{ts,js}":"eslint --cache --fix","*.{md,json,yml}":"prettier --write"},"_nodeVersion":"14.20.0","dependencies":{"lru-cache":"^7.14.0","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"8.0.1","eslint":"8.24.0","vitest":"0.23.4","prettier":"2.7.1","dotenv-cli":"6.0.0","release-it":"15.4.2","typescript":"4.8.4","@types/node":"18.7.22","lint-staged":"13.0.3","@commitlint/cli":"17.1.2","@faker-js/faker":"7.5.0","@vitest/coverage-c8":"0.23.4","eslint-config-prettier":"8.5.0","eslint-plugin-prettier":"4.2.1","@types/lodash.clonedeep":"4.5.7","@typescript-eslint/parser":"5.38.1","@commitlint/config-conventional":"17.1.0","@typescript-eslint/eslint-plugin":"5.38.1","@release-it/conventional-changelog":"5.1.0"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.0.0_1664481106089_0.8919281069494147","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"cache-manager","version":"5.0.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.0.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"},{"name":"botikass","email":"mhpoin@gmail.com"}],"homepage":"https://github.com/node-cache-manager/node-cache-manager#readme","bugs":{"url":"https://github.com/node-cache-manager/node-cache-manager/issues"},"dist":{"shasum":"c276e624c57a9c95c1027b97dba70d5ec8400295","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.0.1.tgz","fileCount":19,"integrity":"sha512-cm7ZfxOYn8tpHqB6W77Yq072yfvrIQg0uLBQWsp8jrc1Jki0rsgetlPkmsI/NcaY9L6hR8I65kocN/jelHwUHg==","signatures":[{"sig":"MEYCIQDgJOzcxTFazy7pECnWBbh1hgMXu9NbXjHColfsSbg5ugIhAPPC49Yhse4W2F4wPAzOiQHTrTcXbxPjDDOC4gv8YP+s","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65668,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjQzEBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrhyA//Q+Y2IyE/q2QI+oe7u8KHK7MdfRtoOnA1VIxxGOz21Fag8aoO\r\nqpMPHVwWefCUS0hjel2+q18DyoPAdTUYFJuaM5ct0Nsi5uPGpHdYp2cZukZZ\r\n/OCJ/MOqx/p+2FzL4eO150GwHdri7pktMTXoJRMHWKv0nRRqwfD0gDoU/1ru\r\nkX4bKuLNAZEgjcFfl3dPixafVCLRU6NmERQ9yvxsvPcoE4dfBrp8r/Qgxtie\r\nOff1zSr6QdKWT+FHCQIXNpR8PZ0DNVHjACl/c53ZSIDktJNpg1EVyjFtRb0F\r\nhvx+Mkm/V5qvITFVLhL5A5A8qoDgPKNZTlzgd7o1cFjlx5pUt37YsTdgJ78/\r\niRIrBcVImAOY+1N66OdakY67872SngbW3up7X3FUH4Hsul8915A1FkBddu65\r\nUP2B1HxTVEB4gi3wfkDhZMcxKGUjN7pupafAAEcqgIy9M0ovBRbJYyP6K3p9\r\nUzyC0T3GZlZy1h0h16pgBGbdC2EK44LLUenCBoRtpd9Q3+9rxGPjxIQAzB/Z\r\nnpgN7lW5745UZZYJ9gDUQatJV/XVRuSqterVjesF5QPKEdQkTGxpbKi4oKNf\r\n4g7QXoIVBT20y3gT6JdvDQAMVv9qsLMRc6uR9/21t1TmgghHdmV3Ig9eYRaW\r\nMdhfczL0xyGukYy6UIr8CRIAUvG3dICmXs8=\r\n=KUDl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","_from":"file:cache-manager-5.0.1.tgz","types":"dist/index.d.ts","authors":[{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"pnpm lint && pnpm fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.ts'","test":"vitest","build":"rm -rf dist && tsc -p tsconfig.build.json","check":"pnpm lint:check && pnpm fmt:check","release":"pnpm check && pnpm test -- --run && pnpm build && dotenv release-it","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.ts'"},"_npmUser":{"name":"botikass","email":"mhpoin@gmail.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"_npmVersion":"6.14.17","description":"Cache module for Node.js","directories":{},"lint-staged":{"*.{ts,js}":"eslint --cache --fix","*.{md,json,yml}":"prettier --write"},"_nodeVersion":"14.20.0","dependencies":{"lru-cache":"^7.14.0","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"8.0.1","eslint":"8.25.0","vitest":"0.24.0","prettier":"2.7.1","dotenv-cli":"6.0.0","release-it":"15.5.0","typescript":"4.8.4","@types/node":"18.8.3","lint-staged":"13.0.3","@commitlint/cli":"17.1.2","@faker-js/faker":"7.5.0","@vitest/coverage-c8":"0.24.0","eslint-config-prettier":"8.5.0","eslint-plugin-prettier":"4.2.1","@types/lodash.clonedeep":"4.5.7","@typescript-eslint/parser":"5.39.0","@commitlint/config-conventional":"17.1.0","@typescript-eslint/eslint-plugin":"5.39.0","@release-it/conventional-changelog":"5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.0.1_1665347841509_0.20242981399025473","host":"s3://npm-registry-packages"}},"5.4.0":{"name":"cache-manager","version":"5.4.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.4.0","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"dist":{"shasum":"cec47dbea8e49e0f6970d117be10172b4e621358","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.4.0.tgz","fileCount":17,"integrity":"sha512-FS7o8vqJosnLpu9rh2gQTo8EOzCRJLF1BJ4XDEUDMqcfvs7SJZs5iuoFTXLauzQ3S5v8sBAST1pCwMaurpyi1A==","signatures":[{"sig":"MEUCIQCckVENHS7WbCdggkMsCXAiQkrAWyg/B+VqGtz07AcFOgIgYrURGFqEFKXXYHtHbSKtZFRWTJBovNiYTcuFkOntbr0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40050},"main":"dist/index.js","types":"dist/index.d.ts","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"yarn lint && yarn fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.{ts,mts,js}'","test":"vitest run --coverage","build":"rimraf dist && tsc -p tsconfig.build.json","check":"yarn lint:check && yarn fmt:check","clean":"rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock","prepare":"yarn build","release":"yarn check && yarn test -- --run && yarn build","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.{ts,mts,js}'"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"repository":{"url":"https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"description":"Cache module for Node.js","directories":{},"licenseText":"MIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.\n","lint-staged":{"*.{md,json,yml}":"prettier --write","*.{ts,js,mts,mjs}":"eslint --cache --fix"},"dependencies":{"lru-cache":"^10.1.0","lodash.clonedeep":"^4.5.0","promise-coalesce":"^1.1.2"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"8.56.0","rimraf":"^5.0.5","vitest":"1.2.1","prettier":"3.2.4","dotenv-cli":"7.3.0","typescript":"5.3.3","@types/node":"20.11.5","lint-staged":"15.2.0","@faker-js/faker":"8.3.1","@vitest/coverage-v8":"1.2.1","eslint-config-prettier":"9.1.0","eslint-plugin-prettier":"5.1.3","@types/lodash.clonedeep":"4.5.9","@typescript-eslint/parser":"6.19.0","@typescript-eslint/eslint-plugin":"6.19.0"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.4.0_1705702544782_0.8893122193302785","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"cache-manager","version":"1.1.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@1.1.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"b9db89ef33cb61a8480124e0d3a58c45a26e3130","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-1.1.0.tgz","integrity":"sha512-63q8rKO+Nh5h0xuGqfVZLpgV+P3LZ2aGOZTCBXh5MEsWqUDPRufJuZbJlyH9qQDF4+4SumwWFhY0yM3qFgUw1g==","signatures":[{"sig":"MEUCIQDCyuYUZ5KA0GzwPQrHvozN+fbEiHogTV97AuOZE46fEwIgO8Ta17vAlGj6Tbc5K/N1T0zR5X+qFKnReTybDPympfo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b9db89ef33cb61a8480124e0d3a58c45a26e3130","gitHead":"726b5b3946b820e961f4b5a8379d0311758e1463","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"2.0.0","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"2.6.5"},"devDependencies":{"jscs":"^1.9.0","jsdoc":"^3.3.0","mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.4","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}},"0.7.0":{"name":"cache-manager","version":"0.7.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.7.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"5b9c2c9a109e8852fca756c525feef9929fa1948","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.7.0.tgz","integrity":"sha512-g2lgQlIsZE5UIH/wQCInH1kavEVO4YASthf5h5eEe/zmxavEch/c4sKXJvTynF96yfDOeGjyLrV1R3tGNj1h6Q==","signatures":[{"sig":"MEQCID0F4xUPGqk7FmWyU+2qp0pCarwlwK2EwF7j/iLLYSeVAiBdQuZ0EJEKLtCyCcuwgqwyjWD6i3B3C3TMAiN329gV+A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.4.6","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"^2.5.0"},"devDependencies":{"mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.1","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}},"0.7.1":{"name":"cache-manager","version":"0.7.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.7.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"7e988ebc5d00491d7f7a35c5364468c4faba6dd1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.7.1.tgz","integrity":"sha512-UTDO6k/78AhNPk7acjweumeVrJueB28FOyEMoDUOv9yTNUL8n1Pu9sV9Su7opqsu+vSHfJzq+dZxuksepVNEbQ==","signatures":[{"sig":"MEQCIDgMBYYLGHiNZnPBi+EH+2PNwT912Eeb1WwFNK2BOLmCAiBGdSv3pSjdBYEqCZ6vyNPu3rlU29BI/GVmTCpZy4uKGQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.4.6","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"^2.5.0"},"devDependencies":{"mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.1","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}},"4.0.0":{"name":"cache-manager","version":"4.0.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@4.0.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"2eee2c2231aedca2bfb088f0fb5d92407df1fa1b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-4.0.0.tgz","fileCount":15,"integrity":"sha512-8HD47K/nObJwRRhPQ11QMgcbPCL9KNQRMc5ggUJUe/QLD6iW0i3UyWp8NcEeFlZSNMwaMG4gZfdn3Sn4syP+zA==","signatures":[{"sig":"MEUCIQDVee3Oy/6QWFPErNUljYWfSCf6iZQf4nTC5vg0DU1g/wIgA8abBDXu+WOxnMnPNkzo4jRm2GoRJcBQcr4i4A9xfxM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81315,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJil5MHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpKVw//VXT0gjUXkhGWwTtN9sVcK/wIStl6PGDUuN1VkaCvSIepiIIs\r\nx2sFeo3OKBOYrYxtXXKsRz2PuBmxAekDwn1VaZ91yInXbLesO9OJoQNPlIgP\r\nJCCo22lN7uxOkomOm+w2tjXHn6y/5xFqIZ6QlOBjkdnhT5Qmzl1BtyD/iIGy\r\nZ8Im3OdzFcHMETi2GkWeKvnSfBZG/oOBsy+FfZ9IuTG9ezXMIiroWJ2hKE9J\r\nbjyj0cFiiKmyLK4VBKjJ9EY3kJEwNeDqhtabXuMN3aWPGPTGhGF6PSxG7BDg\r\nf3JyRQzEiN47wkdzmrFbEghKg6HCD3GHWJKSvtpStS2vslF+ZCELFaiEMm6x\r\nvyC1OInJjmR3wsFzKdWkEVVoGZPX7lFwCxn7Cu/iXYPfHjOq7UF+TFf+PNvM\r\nAUEJuW5UlBPaXP8qqqew6UA+FF+zqzr2qA3tVAfC7VMe58fRZXQsyr+s+fh0\r\nM8UnSiRyxUzfKgl1tisfUFmSXzqPDgTluia7pAfOW0+J117H7mxKr96OuVoc\r\nq6IDm4SkeI8+lwU5tP2XQmADfAKFIySwq/V3I9/RM8Z838h/7kR22OSQ8wRQ\r\nBxOqAXVNJeSpMs01aImbTk7dHmlqiLsNpzDF0ctNAjXRvOs7FpBuXVSj22Dw\r\nUl75BXYlONVlU11YDtfdzlusxt4PMH5KmkA=\r\n=gefT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"5c6fe0cb4592b346c34769312d32bac243a745ca","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.9.0","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.16.3","dependencies":{"async":"3.2.3","lru-cache":"^7.10.1","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","jsdoc":"3.6.5","mocha":"8.1.1","sinon":"9.0.3","eslint":"7.7.0","optimist":"0.6.1","coveralls":"3.1.0","es6-promise":"^4.2.8"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_4.0.0_1654100743568_0.3782393995690463","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"cache-manager","version":"4.0.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@4.0.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"185b1d1aa1385fbb4fb0ec88fda7676f566a15b8","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-4.0.1.tgz","fileCount":15,"integrity":"sha512-JWdtjdX8e0e6eMehAZsdJvBMvHn/pVQGYUjgzc1ILFH0vtcffb9R7XIEAqfYgEeaVJVCOSP4+dxCius+ciW0RA==","signatures":[{"sig":"MEUCIQDxuFwzYDJKqZtByHpCc+EGKBJ87AsKJFB9IL2OnNSztQIgIax/HoypjGXn7Wil9TzwXgLF7vFJjhCm3jxvxMJxbtQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81361,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJimjWuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoJ3RAAhBSo22DVgyF0O0L2SbZ/rbsQnSiaTKVAlF1okwngUWG6Mls/\r\ntf3MOEFjnT/XQmZ8TvIMWkpjCWcGwlTHTwZf1W4EgtiWNMrlRBfxeu/XJr0l\r\numKhm3ABdeaUP5qpdBmDM8iioCFfuU2RnW3VwuXPlm8envdmI1tCBcVdUrWu\r\nh9r28cXMrzZfjmuiGmR+J1vwr372LhtfukqxFxmb2V3KtWdj2HCV6FStbwe2\r\nnMRZytDhcPtDnOYVBThZbFCO82eXaWbxY4QYbEr3Nuoi3NPG/uJ7hnRD6Rp9\r\nlvh+btR4feMBAvxU9pkZzmyAf5TDeWnOO+7KlVKEoP1GD8/UhGBt+av2wW3W\r\nh/UcxK7+mJIC8b0xNAF7TxpifJMvsQg/BvWZpzp8qHMX+tZM5eRTMej47EIJ\r\nANBU2S4hcT+qMpPFOcvG5BlkmYD0JzYe0FAC1vRSEzFMPrEhKBlQ90HQvGS1\r\nsm57Piu6uJhTeMXVF5CzQAvQ+lpt5VZNlXpMfJV0BYobMu+FQwW4YM4EtLCI\r\n+k8cDhMC3RWiLx7tIU6SsH8WyNJIFE2LrMatyXd5piHX5NGV43ct030o/Abx\r\nKUqTaO8tR8A7uvp47LRGdA7ZTB514eRoAd975lZVua0RjxPkbF/p+Xik+ozr\r\nmgwGteXjDCY+YxFEjnKzUNauFM1ZWsPt35Y=\r\n=QuPB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"3151a561e7edc75865075b0ea40cda7cb82939c0","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.9.0","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.16.3","dependencies":{"async":"3.2.3","lru-cache":"^7.10.1","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","jsdoc":"3.6.5","mocha":"8.1.1","sinon":"9.0.3","eslint":"7.7.0","optimist":"0.6.1","coveralls":"3.1.0","es6-promise":"^4.2.8"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_4.0.1_1654273454667_0.3314585974535398","host":"s3://npm-registry-packages"}},"0.3.0":{"name":"cache-manager","version":"0.3.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.3.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"26b606620f8c86908b62ab5daec9f7faad7760a2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.3.0.tgz","integrity":"sha512-ApIFDl+C8Vw3WDaqvFzoX9jXABk7uzSc8xCV5xDzpb/h+MC+f87T1uPo0pho02lbMexfv613cZQh6EZIHhjFgg==","signatures":[{"sig":"MEQCIFBNQd0rcRmN1zDZkkWF3j/RPwBhiYZlif52NfkL67yKAiBzWGrsc/pPjG/+i5us3kno2vkZqqWXn5yeK8umZK0Ufw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.3.11","description":"Cache module for Node.js","directories":{},"dependencies":{"async":">=0.1.22","lru-cache":">=2.3.0"},"devDependencies":{"mocha":">=1.8.1","sinon":">=1.5.2","jshint":">=1.0.1","istanbul":">=0.1.29","optimist":">=0.3.5","coveralls":"~2.3.0"}},"2.9.1":{"name":"cache-manager","version":"2.9.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.9.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"1b487252a77e63ccf46be5e41438282bcbc528fb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.9.1.tgz","fileCount":26,"integrity":"sha512-xHSL/neqi9HmaJJmPetbVoIp2C+vXXr2FgfVK6ZcS9H2nXQJVvf3DPm+yD2FG4g7cQSF8l3wOzQ8eHbWcqmOaQ==","signatures":[{"sig":"MEUCIQCFvqmYi+2TVFsTuf1BKUUU7qR4TWNq7ksUgsYp2qqJ/QIgb2T7YU8ZMZgLYBmHbVl8r+EA7aARyV1Lq9hTBKumv/w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":198467,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc7WfSCRA9TVsSAnZWagAAv7gP/2FRfAFUT4b7mIITGbmc\nGpR4MxZQHcvhPJfRiBIkfiGGiOiQa2vEI5gulutuJ0c7lJ6ms9rpDr6CsrLc\n22OVmB9DTdAYHgl4ctTFNOdDOA8jK3j9fcoUsfBEwnkFgb8k0b15k2fIiZr4\n16CDnwgVKEpUwqrI3Nca2ZieVc6ywZjdVXQx6ryhDRL97F/OoRifmP+6tmVy\nyo550twHyUYQyuvIDOlHIEfv0cxU3VP9XyLSfeowpOMCFJ1ita+fGUtW18Qb\n/7ESFFeQnJBxLJxfc7TF4M4GJrxPdpbgKEWdKXzQpGvAYST2Y1xpOhn+iwpi\n/CSEM91lMVngDpckuLyk2T4AsM+apVMktAHUuPpNRB3Mh2NvZ3iCyL7v62P9\njt0LeMQMXL7Iel5upEMJ2Q1qTJBiIrGvk5xHJtmoiCXQjrzu+XtzME2M9DSD\nWi5SgZLmeH+3u31SAoKtTZMZQFlPtNso0t/e2rB+wK04aFkjN5fTJgUNGpBl\nGFyNlaK9id+lWUBwTxIVUalrUbLZA+5VM2b/a8HjD5kzg4vJ7V/RiiNyYIj1\niydAq19fg2Qv1q+q5rj34S3XS/OKfSXOUbFfUKC0qNdM+yRHTL8/w937uL43\nsJ/GA/3QxmxXj1Z/4LGng293c4c2pMPuhavGtNeoH2+5A7VxpW1Tm2scP9nh\nX8uu\r\n=FuEc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"a5fa009a7ca39bd8672ee2a91f4deace612ed53d","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.4.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.12.0","dependencies":{"async":"1.5.2","lru-cache":"4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"2.11.0","jsdoc":"3.5.5","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_2.9.1_1559062482318_0.6517431372937623","host":"s3://npm-registry-packages"}},"3.6.0":{"name":"cache-manager","version":"3.6.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@3.6.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"696392402bb80447fbab2c9af7a939ce3cd01809","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-3.6.0.tgz","fileCount":15,"integrity":"sha512-D4GJZhyYgprYM30ZEPOn9kkdwdPUumX3ujbNbl7FYjcRViRvAgY53k6pO/82wNsm7c4aHVgXfR12/3huA47qnA==","signatures":[{"sig":"MEYCIQCG7zbb/lI9jXLRLpYQ97Y5H8acdVt0o+42Pshqac1XwgIhAN0yOiZ/54p+iChT2QNlo40NMzJuJh6aWXY8BP/VmVaY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80521,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2lWQCRA9TVsSAnZWagAA3+oP/AiADsqx/Iu+6XZa18Xv\niBSgS8N4M8/CW+FvKlY8Rgd2ZnJJvYQCInYM+glLmgTutVTbnFm3nhMqGB0s\ndhhCkLNKRHRFHcDfx+nryjAx7/mCfyj/S2CLZ4/6zfHsNBV+56kuKp61yztp\nRdmLPQxeTSc4pN//nwvHWkJDY+42XMOETLcMIIG4nlr9MHeSlxMKNu/w48BN\ngfcVKQXxz1w7H3ojLpWVMllLkmvERCICxfL7MAJn7zsPOh6xgtsHilV3cDMN\nYrBOPltPiDht+soD7yDoijr1ymHLWVmWiv7x067Uhl/A8y8vbc3l0m2mZ8yA\nLFd2LLhAlBwS30+ALljAEDo0nSTEXFSD4obmgWvNU9ULVt8DRihHWDWI49js\nEt7NCIfdeFA60YwvHTgdzIsN3DOfLEfZgeBGatpPkGH303A4l24KiA2QsU5t\nPs6wxa7omqCTxmzC0SXWdRmaB5EfcZ/7xrtf/A4XV7wywu5O8XVBx8M0uoyY\nMfzeR3vpZ0buQNZ08kw2Btw+V5vgR1eDKR+AnlV3FnH8HQvnyzU4YtipjRDy\nsseKBjhXrj2Ry2YAwGIRrRZKwV8z/amND3G7M8uoFHZrAGy9mQ1EryBCT4ne\nJ0P6SbTinYFry7ISCvw3dI39wNq2HkLcfIe4Lf5KIhheEG9zQshKaaG1zUGI\nJ+Fu\r\n=bGjq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"084ee381b7108be06b39bcbaa5f5dd73d54d1340","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.9.0","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.16.3","dependencies":{"async":"3.2.0","lodash":"^4.17.21","lru-cache":"6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","jsdoc":"3.6.5","mocha":"8.1.1","sinon":"9.0.3","eslint":"7.7.0","optimist":"0.6.1","coveralls":"3.1.0","es6-promise":"^4.2.8"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_3.6.0_1636749430481_0.09962285479843902","host":"s3://npm-registry-packages"}},"3.6.1":{"name":"cache-manager","version":"3.6.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@3.6.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"44f93b7a42265cb653cdebcffc311b5bdfb62596","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-3.6.1.tgz","fileCount":15,"integrity":"sha512-jxJvGYhN5dUgpriAdsDnnYbKse4dEXI5i3XpwTfPq5utPtXH1uYXWyGLHGlbSlh9Vq4ytrgAUVwY+IodNeKigA==","signatures":[{"sig":"MEYCIQDI8e/0hr2v0ilXHCrLlfkquzT14eKvw8C2Mh8bq33BmAIhAOC0X6lC1RsXBp+yYuvr524Vl+6yf69+urtjH1u0sNVX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80727,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiTxmrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrOfw/+JbUHhmPO/T9uzz3VNl9q3jANIV3IBzjH9mfA2FD0klVLIRLm\r\nJRMoH8NlJsf0eu1LYRmRd4FH18hsenuKKheOLBgx/+DMjUUM7fGUB1cg/z0F\r\n/DcprBgwehhdtxdDMykiyliXrHVYZ2TTSeOnzZR7937DKO1SehfDp2bpgjs5\r\nLUZ60g2JLMsz2RezQafBRLkXNJjslubEXCyuan7nvOT9kL/gW10n4jZRnjYJ\r\nHa38jtT2wT507eYDqVCp5ueM5ult3MrgEa3RAKJpA6eemu7jMPxBi/26dS4G\r\nl/k1BAqaoUQDP/FrdCnWDQv+X0ftNcMr7a+G3xY+pEpr8bp2D0lPHPWu+aU5\r\neMvjWkbogSqq1TRmGHQYwr+A7Y3OfIUCW7uznZPFJoBgfFqiJ1tcczoqeHlv\r\nlyM7VETnGRsvIMm7qDvoBBL044r0nHaTyrwsmTCblbuGL32wBD4YuKBxXkHA\r\n7NnSUpF3jnfm7i40urJPp7m2CyymsNctSebv99Y4Rg0GTjoOZPwKP28jodQu\r\nCo1LWqEXwK7FP/d73SDGJaxPh/F+jHxdRZ0FTfHM9TlManMdL8hQJpdSx29N\r\nhgDdYule64QN5kzvWeURL2c8GOaEM5klSvYbDnadK5SLqSlnqo+rhd6auSB1\r\ng1jcjBVOfhIliQEDhs+W0nbp07Pv2kQVLr0=\r\n=T8f3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"c14893fb8d9a17c8ce497b058cbac89ceb3cfb85","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.9.0","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.16.3","dependencies":{"async":"3.2.3","lodash":"^4.17.21","lru-cache":"6.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","jsdoc":"3.6.5","mocha":"8.1.1","sinon":"9.0.3","eslint":"7.7.0","optimist":"0.6.1","coveralls":"3.1.0","es6-promise":"^4.2.8"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_3.6.1_1649351083481_0.6511348230852501","host":"s3://npm-registry-packages"}},"3.6.2":{"name":"cache-manager","version":"3.6.2","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@3.6.2","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"79b08ec0ace3a662b6c4cbf92f570c1185d5e600","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-3.6.2.tgz","fileCount":15,"integrity":"sha512-JEkwAFT0RmUO4C6LtqpFeEKF2d6T6ELTrosMKPGdDyv6PzZjBDTvPJcbBNFPFNbnYfD06oD1KH3qB4vs7lDBig==","signatures":[{"sig":"MEUCIEeQO42bBrnzX3PAmBGMQ5zd2nYvO6OV/akZReZ5x9thAiEAz6x/RgTeVu1+hvrFzOB4H5hyZobroUGMh2KI823Ii2I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80837,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJihtBXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrf4RAAjK8Vq277THVDPtApUzXTMnIkz7gEcNJVf/bGG+c5boq7ooTn\r\nN/t01OU3BW7b/iMRWaTZGOCGVEymp9sCnn6kv+mjPesNXwpLi5rHBl4prIuD\r\ndvpsEa2cBxYiLyhervB8eI3kTz5XCwumoWDmoAfOO987elcsUFZJas7QN8mS\r\nkXGAcpnyjeOrlbuY0zSeraL5dy0/Oi2hwYrrBJdxqN3Clr3a87XR46tH+ouI\r\nNlH920ElLx85kAJFXlg17cVYMbygDDb6EPD4XkxzAgfDDUkIZBt9O+/dR69G\r\nHbugkMFtvnEUBs0MS3AwdY/EhP0tkBbYcwvPwzY5uAD/viQ79JELop0rYLSK\r\nR6Yp9eAIfNNFqjNL/j6PsBH8rIj1Af8Z/KStlOQA93Pkz/w1fkXdS8J+BCsQ\r\nCVVaOM/TCh6vSUeq3nc+fcBS0MwihI/mMyUvJ/tz6zzfoQTieiTyHg8ZDxFY\r\nuTksBVpmOkNhGsn4XB8Zl32ZAYe1QpeaS4riOameHaU70dUCTJSGIA8LBBvd\r\nwXtTrzWeXFkWIu4uBQ5uWjJoOsg8qZet2p2jsWp1H+GZZ4Ymz3oLQUkHdQHH\r\nJQN6Dsu8F166/4Fm3ozeK4vPE4LGGNVOuUzgWzy5/wFFc41a919mhBH9iZPg\r\nLcV3TYC63mnVgvTs7Thcm4IVR61PvOM0m6Y=\r\n=djfY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"cdf360ea1b0d953d172adb9046e9103c9adc8757","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.9.0","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.16.3","dependencies":{"async":"3.2.3","lru-cache":"6.0.0","lodash.clonedeep":"^4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","jsdoc":"3.6.5","mocha":"8.1.1","sinon":"9.0.3","eslint":"7.7.0","optimist":"0.6.1","coveralls":"3.1.0","es6-promise":"^4.2.8"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_3.6.2_1653002327089_0.7523686088311952","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"cache-manager","version":"3.2.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@3.2.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"32d76a18bd39fd0fc2b25bbc078208f0cdcafd00","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-3.2.0.tgz","fileCount":28,"integrity":"sha512-RkYKgbhAzWo9TtE27/BgS4/HWfmt2GWQBusjIaTK0DfBAC4ruMmEdHF/Z59O05jKujIoW7a+HVsgdkA4EFPo8w==","signatures":[{"sig":"MEUCIQCZ4DutQG4M/J/wtJpIikB/HR8VM5AVWqAuFgh7oPWR3AIgL6d2V7geNGwPaaV02dQoPXLe4mpHxgG2nySnhAtl2G0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":245905,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJea75ICRA9TVsSAnZWagAAMrcQAJgt3wngrgRKWlJwbNN3\nTfwd4PMYoM5TD62Bhrh8nOpVE0+JrRjcWqRhhbNmwiF2g4uEnCssOrPDj8Vw\nl8HRbz/HANKsVgAil9deIZIskzht2Dg9ufSd0iC+/iqkEejQbi4LX23SFeVD\nJqxfMSbgTlrupWjWBtO49JUHaF9mGdfmEeIuaR9d93O/NybFvMA/gfg3VLoG\nn2tPwTJVAHtbzcxFiqj0SzeCjJShSUPWDFCZxdTrSCZOJZ61Vbz5SXGbATq1\nakK62x7g7HLZ97GSmFu4hWYNZTOtYXtT81cKhVFZqdmQxOK4SfQR/XotGP00\n5+P+tm7AK4aU8TWuumH+fKYwrIbDV8IY/gE2LdxAkJ/meAR28WgFIFL635yK\nCBs2jeE7KDFh5ovi9fyv3IQa10y6SFOdalzrxokaeZdtkSD32xqXIX/HJ9ZV\n6yN6hO9tVtkJYyNIKLE5dhQvpqQPnryAc/HFO8IwBcqZQodO9v3SqNGOIE7i\nZZN3q4XZb6uPGeQ+8uakJ9fubYz8AMJGWWRuggJIAQGV6rxnluh/Klm0Jz+G\n0uP8MotzL9+PcDbT1XCyMaLozeH8zTdnezdZKYDywTFRwpgU3qvJ/9Kw3Hzh\nJj3wkXXM/MBToxHwtpc/fHDgWJDeysIYd0A5UmRF9p3fC/3yrC5z3NBKDkEt\nBjSZ\r\n=VsEl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"47394382c265de9f845993483519211d25f59a3d","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.4.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.12.0","dependencies":{"async":"1.5.2","lru-cache":"4.0.0","lodash.clonedeep":"4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"14.1.1","jsdoc":"3.5.5","mocha":"7.0.1","sinon":"1.17.3","eslint":"5.16.0","optimist":"0.6.1","coveralls":"3.0.9","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_3.2.0_1584119368140_0.2596761952792279","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"cache-manager","version":"3.2.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@3.2.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"a00db7fed1319daf942ca5e710524c6f1958e1e6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-3.2.1.tgz","fileCount":28,"integrity":"sha512-H0pVQgl59aFjLJUzF5sxdWjgI/G1ZjXz3HNhK0qoNSZDVWM3CPK9+niCo8cOzKGn869IswYj0ax97gUlDG1cxQ==","signatures":[{"sig":"MEUCIQCDlcamFFAonkxsUdZCZmvPd20ckHDBAywQHabIosomWgIgINvZZU72WCxRkOdpZFlG0/7nuQZUAMrQEl/7EindHgk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":254674,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJedT2KCRA9TVsSAnZWagAAsPUP/imPegs/DPalZY57yhqP\nSP0XSlStJqA41EZi/vsu2cfqnimp8mBlWd9OqN6+cPxc+h5KzcRzdPpaFXiW\nWe1dO0ZKbxOfNvyM4WEVPOnW+piozwV8BrEQg2ClSdl1QrVzOrDrDGMWyLzQ\nijoplnbNej7kgtjlW3W1O+ENejB0U5NBJit5x0hViD520y9SB/gVq9i4tiPy\nJw4CoNHb+m86rr5C+CrmBPXAbXaNDE0LaxJtmiN8Mj16hA1EbrKuHdolos4G\nkj3Vi++qkuQDoVAqjet8vlRQ3p0y6o7Xz+UcH3jVsgQbf4C495xrvCvmS8cp\n9+eRI9czk1xaPYvgTPvkUTs1e2BAJIzpM4lpSUzLf5Y3X8qNt1q9fi9wGL4e\nck7FjoM3866vHBDI+B1ZN/TfBlP7iWKvtD5Xup1bNMHCxrXO0awR3g8uqYa5\ns1ln+uaUjg+a0twBvV4iBuLOlfKfjNBc7Qwq8Q3EBwsG5zuVVQL33pp58fRM\nmwP7sSIyn7Q2xXRGCBfvDl3ETEtrwBSioaMG28ZJdmmYHdUxZkZfDVS53fm1\ndzYsj0g9iE2xCClMiv8JWqI14xYHvXRZ8Ng7Ph+CSXbHZQ5rTGNLABB7o+aB\nRDottw4nwIVkmX/9c24Z0gAVzNMCoucOTJYFUF2VOGeHypLND6bm3aS7jNqw\n0OCT\r\n=RNOI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"227fb2119e5e124ab9e6895beac13cbe11bccbf5","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.4.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.12.0","dependencies":{"async":"1.5.2","lru-cache":"4.0.0","lodash.clonedeep":"4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"14.1.1","jsdoc":"3.5.5","mocha":"7.0.1","sinon":"1.17.3","eslint":"5.16.0","optimist":"0.6.1","coveralls":"3.0.9","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_3.2.1_1584741769659_0.4214875414460597","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"cache-manager","version":"2.0.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.0.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"ab42429783fc0c66222d9db740ef4c9aefd68f94","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.0.0.tgz","integrity":"sha512-Ata+Sfu1C0EkwAjywUMxSDPPZkPFmukCMZKkr44z93g5MRUkeDYmNcCN1SsW7cYu/7mUfKaEPWo3iirjEYe9tQ==","signatures":[{"sig":"MEQCIE18A68OA+2TBDIhPGYY3fTyxPDHML+F6yDDwjk2g1wkAiB3rm7aMcmMFeS93jFial3HLYyATIHVHZOqVRTVjBOH6g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ab42429783fc0c66222d9db740ef4c9aefd68f94","gitHead":"8fc6636a768159c8bfcf8f1eaa79b39db8ce6c02","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"3.6.0","description":"Cache module for Node.js","directories":{},"_nodeVersion":"5.4.0","dependencies":{"async":"1.5.2","lru-cache":"4.0.0"},"devDependencies":{"jscs":"2.11.0","jsdoc":"3.3.0","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager-2.0.0.tgz_1457904688991_0.524851111928001","host":"packages-13-west.internal.npmjs.com"}},"0.17.0":{"name":"cache-manager","version":"0.17.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.17.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"43d9daf3cbbd97b7075cb85c84cc0d5add46c029","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.17.0.tgz","integrity":"sha512-HS0SnKUUSj3NStuWl+JOz+sL+vUvg9ixoOO8a5oSDiREtpUap0I1rS8cxSAHx9REL1E3MCUWx7MAGolFrIW3/w==","signatures":[{"sig":"MEUCIQDEHhn5B+UdS1NE8dR/jJTjWqWjF2+cu6CgnWcMuKuUDQIgYqLHmBITwoHMcK1BO6MI0eHz7zQ0OMh2TXZlS3rIKWs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"43d9daf3cbbd97b7075cb85c84cc0d5add46c029","gitHead":"7c258602698091bea6269d3173984210412d7e69","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"2.0.0","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"^2.5.0"},"devDependencies":{"jscs":"^1.9.0","mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.4","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}},"2.0.1":{"name":"cache-manager","version":"2.0.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.0.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"6472dce0ae820239c31daf78b2ef1fff55c58fdf","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.0.1.tgz","integrity":"sha512-O+A8ts9pgO9reJ4Fe2yCHQBsh7w9/ePJr+W9kXTy8ORzKAWkzLb91c95nxT5S2OH4idjfCyvV8R/NDGcSKcjxg==","signatures":[{"sig":"MEYCIQCVrkPwg423PNxOG8HdWz8XPWJpX0gxfHx48D6k+Z9M8AIhALJCEI2PZFEX5ep6dLDncEsgtK6kupNL2C145NZLAZG+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6472dce0ae820239c31daf78b2ef1fff55c58fdf","gitHead":"5620da9ba111d727aced4fe0e37d3bf07c07fbaf","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"3.8.6","description":"Cache module for Node.js","directories":{},"_nodeVersion":"5.4.0","dependencies":{"async":"1.5.2","lru-cache":"4.0.0"},"devDependencies":{"jscs":"2.11.0","jsdoc":"3.3.0","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager-2.0.1.tgz_1460998392158_0.9682336172554642","host":"packages-16-east.internal.npmjs.com"}},"0.13.0":{"name":"cache-manager","version":"0.13.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@0.13.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"440ebfbf2eca8c4967bdc9804987a41ac3c1f944","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-0.13.0.tgz","integrity":"sha512-Nwowzo4SkTjpzNWD4N8cgjxv9RHrWDA8nlljqH8nKnRwDnd+9+7pFQk31HiPi6D3lzQyJfGrCmLMXAy464vRkA==","signatures":[{"sig":"MEYCIQCwYWAtRaxMqyykzTdsa21T8sBI7PEvUY0Rc9RZTM8GGgIhALr/C03UuMpkqvtR2FaeO/TBTSvYQZG4hLOqJBoqK8J4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"440ebfbf2eca8c4967bdc9804987a41ac3c1f944","gitHead":"1d352ed6eff44c3f218a9128eaa0cbebb9c39ee0","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"1.4.23","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"^2.5.0"},"devDependencies":{"mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.1","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}},"2.8.0":{"name":"cache-manager","version":"2.8.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.8.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"9954baba5e7a0c0940418d98545642b8a23333f6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.8.0.tgz","fileCount":27,"integrity":"sha512-q0ZfHqf4k5qqZ3D+aEBU44oWMz0h+sucv87qYQIo+NVYL+/SI/tEFjCZB/IAFnZlOtqP50/JyUYMMj25euJpyw==","signatures":[{"sig":"MEYCIQCCLysyPFc1Ot0cV4TCeZhTDjeiVXA+4fn2GfPFzA0DcAIhAO9ey2Xf+1UZ2U2CFWyJ/W6nlhDo/39Eh+CYVVBEiVOP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":197722},"main":"index.js","_from":".","_shasum":"9954baba5e7a0c0940418d98545642b8a23333f6","gitHead":"2d9decef7c323dd35568965237e7c22039ffc041","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"2.0.0","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"1.5.2","lru-cache":"4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jscs":"2.11.0","jsdoc":"3.5.5","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_2.8.0_1519845796385_0.4236464829955575","host":"s3://npm-registry-packages"}},"2.4.0":{"name":"cache-manager","version":"2.4.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.4.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"272e4eee3a4ecebb281fcb086499804e59a6a251","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.4.0.tgz","integrity":"sha512-bS1ILAF8NdOWqR3PMybrxQVCA4Sk0H00vI9DTEszpcgSWxoQMp+DEK/C9uBt7tGNt5MQf5NIcK7Odc8jJv9ZLA==","signatures":[{"sig":"MEUCIAT2lafVj284jNZ3Zwp2DrQ0I6YRKMQd+OH2jNqydYM7AiEAjjIj2TfFinfYk8ZZ58QgFiiJXOMClfu7HWoz3+KH7qA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"272e4eee3a4ecebb281fcb086499804e59a6a251","gitHead":"ed0a42e5d0b69a39012cb3a58ef1e1bf56d7f33b","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"3.8.6","description":"Cache module for Node.js","directories":{},"_nodeVersion":"5.4.0","dependencies":{"async":"1.5.2","lru-cache":"4.0.0"},"devDependencies":{"jscs":"2.11.0","jsdoc":"3.3.0","mocha":"2.4.5","sinon":"1.17.3","jshint":"2.9.1","istanbul":"0.4.2","optimist":"0.6.1","coveralls":"^2.3.0","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager-2.4.0.tgz_1484677407649_0.6588236463721842","host":"packages-12-west.internal.npmjs.com"}},"2.11.1":{"name":"cache-manager","version":"2.11.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.11.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"212e8c3db15288af653b029a1d9fe12f1fd9df61","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.11.1.tgz","fileCount":28,"integrity":"sha512-XhUuc9eYwkzpK89iNewFwtvcDYMUsvtwzHeyEOPJna/WsVsXcrzsA1ft2M0QqPNunEzLhNCYPo05tEfG+YuNow==","signatures":[{"sig":"MEQCIAhSMYfR4pwXwTtDGsIIM9geqBnQQxB+FFLyW8TyYq8/AiB+BryM4zP64s9Uh8wapQmHBZ/5eWOexxVKom/iqVpBXQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":212093,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeOH2jCRA9TVsSAnZWagAAr8YQAKPAwYaVdMb8FMxV+KSw\n7Nt8DmiR2s6JzLUgaan20qoWxrdtraND6/ldpQkt6iqmXaHzDc9PaW9e0rkF\nTpN4kTDER5ne/BZ1jYzPGebVZLSVWTQI8iXGYiWujj0WBlCpV7KDfykXAh3B\n4CPp9I+QoXxEayjFTjByxzhJAKCF3rE4WApO4gqYobHDdm2hX2wsMVGPU+bL\noXfyGCZsm3qGyRPF1wUTNzE9FmG8SYS7nCRi1je2LU7HNAnhKVkj1TUoUhUd\nLcQQxmgNis+fKYYm8eEcNOosE5VX52g5UmXOdBF31yg41pheTLc8KigaAlOK\nkJq697eK3luHcvHgTlVQBeonbs3Lk5FqhH07u8Uwkp13nQlRmnx1YTpsOah3\nHD5WeOxkOGOLFn1dg4VM9xOWgprwEcxot3pUBOhoIccu4UNGc9wXWDDhUOWB\nTbC6zOWl34UzTpENgwoYws0T2updJsWfG0HaZdrlH0NZ9cZvJ6I3Ensl1Ipy\nsFRu9HH6l+dI5CAs36hDsK0LI1VS3PZz6T/kpb5pJM0f94ipVYhcvhWqHqSJ\nh5YgJBxP6nKmbwYThr4uSzJz5XlqMnXFItUPRTXk48KtVVmJt+xzkW6ElW6+\n756cCWbbDZtYSFsPQhLKAOWUN2amPq7n+zgFfu5CALmeubQLyTigvaJz/ln+\nNpXW\r\n=/pPq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"d174e2a03d6d40fdbe1b867076e00f822ec108d7","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.4.1","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.12.0","dependencies":{"async":"1.5.2","lru-cache":"4.0.0","lodash.clonedeep":"4.5.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"14.1.1","jsdoc":"3.5.5","mocha":"7.0.1","sinon":"1.17.3","eslint":"5.16.0","optimist":"0.6.1","coveralls":"3.0.9","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_2.11.1_1580760482446_0.040630590188669435","host":"s3://npm-registry-packages"}},"2.11.0":{"name":"cache-manager","version":"2.11.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@2.11.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager#readme","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"5ce7515a0079e73106c5e9eb80290cc1a0c87db3","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-2.11.0.tgz","fileCount":28,"integrity":"sha512-eKmGx69rnSBfT0eEDX6WhfxOG00LqvosnTmLpf8SNhvVFbOh1aHSsox1Tp3feNZ5tdkLCBZkmhQpaDfh0gDNTA==","signatures":[{"sig":"MEUCIHVtXUJtI7tX4W319GPMxOQDFCY46t53gINMiY2VtjY9AiEA2rgZDzl7peQdcxxecCjoQKzRKEp2vH5/LJCkvfSeO1M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":210742,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeNI6tCRA9TVsSAnZWagAApEQP/ikPl/5jNeT2YhJWxmy+\nNw7f4oamMWjpbyQiZh2i+fibWNoztyqNS0rTXCMbKq37VboJfKLhGHej8DmI\njBopYRVs//dzmWQYSjMXBddGc/Ks1sCRpRAisVB7PE5B/ObBwIXATR6CNSby\nVvjHQ7qBgae3Ib0B8X626zsVAFYcNghKxW8lgvvOFXzmgjavRAREzymf4ms7\n6RAhjVmy8yyr6CQpYziCQvoNJHWb61q+A9pqzuAiy6QS5v3WD6UojQXeppiz\nZfhdUwdFQ0N4hiCw21zx1s4q28WMfxtIGC6bejZKAuFWvSr2atbBT6vqJPfD\neB1IuQiF0dJuOKJ+UhkqamNNCN64Yuzy+NdtY6Ub0l/r2EEnDcci2BcKBBXv\nmW/6RvrHZP5UPI9XTo49D3FAHKPzKM91n/IdMaNQ9bfRbMaiycdC+84BrqNE\nKvY/+6sqYhdi6xqifhp8rDSKtm4j+s3QQ96HuB0WXsNk0RDyrWLw5I2dAVgy\nmLFitBIVLVH43oDRZnTX6yfxq9PgGoJ3luWr4XLcU69ZA9i5o52Ez3imP8pm\nsfXa3JX2LWWV+9PpCdpgVCgedPwE0qLj5wG+Ly7joXiJG587xFvz+dArfNh2\nzQ1/ehUyOKQNO5sCxL0uKf2bg1kAfWeWyseERTJBCb0Eslkejj60DR1DgTuI\nSivy\r\n=G4n2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"4c07564deb1167d4e33314332f0bcfabe81fac46","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"git+https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"6.13.4","description":"Cache module for Node.js","directories":{},"_nodeVersion":"10.18.1","dependencies":{"async":"1.5.2","deepmerge":"4.2.2","lru-cache":"4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"14.1.1","jsdoc":"3.5.5","mocha":"7.0.1","sinon":"1.17.3","eslint":"5.16.0","optimist":"0.6.1","coveralls":"3.0.9","es6-promise":"^3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_2.11.0_1580502701405_0.5575964010976204","host":"s3://npm-registry-packages"}},"1.2.1":{"name":"cache-manager","version":"1.2.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@1.2.1","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"5ec6ee99f7378a443a64e2dd66b3cc74e978f57c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-1.2.1.tgz","integrity":"sha512-C0wFeJK00Oa20/T8RaKOTd0PEHU/Ud5cBIKbOKsy3zfGoFR2v8z6YmMLM0IPHRhT3+LrZxeX+wK4gyD2XlYzBw==","signatures":[{"sig":"MEYCIQDZyoKNYAi9xcAgvIiOkUN8gfa+t4eheBrR0ubpFgzKegIhAOdH0Exh7GeuhyrVZVGLyBud1rpMx+NfE9Y9cK/Ksjcz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"5ec6ee99f7378a443a64e2dd66b3cc74e978f57c","gitHead":"aa2b345199ccc659d673d81855a875322e12b056","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"2.0.0","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"2.6.5"},"devDependencies":{"jscs":"^1.9.0","jsdoc":"^3.3.0","mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.4","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}},"6.1.3":{"name":"cache-manager","version":"6.1.3","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@6.1.3","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"3dd77fc5f81c3744f64323f66041acb43d85aa89","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-6.1.3.tgz","fileCount":7,"integrity":"sha512-IcBseSv1GquLxlTb1nH5KhOQQwwOjMC5hkBras+8zTYD/bRSCgT9bIah1DZ+4eKc3vcqqYtfUCI5pYvOHmDXtw==","signatures":[{"sig":"MEUCIQDwv++jwDBFBrGdSA+q1X45zAD3tvE3/zrD8j5OVpksAwIgaghY7bBquwwzvLKMBSbedif/Tlu4HJfOCzwQBE+m+LU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38260},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-6.1.3.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/gs/5m4m2s857ts7l7nbvv0b57r80000gn/T/c462e4d3733d91dd7567db33107af57d/cache-manager-6.1.3.tgz","_integrity":"sha512-IcBseSv1GquLxlTb1nH5KhOQQwwOjMC5hkBras+8zTYD/bRSCgT9bIah1DZ+4eKc3vcqqYtfUCI5pYvOHmDXtw==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"10.9.0","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"20.17.0","dependencies":{"keyv":"^5.2.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.59.3","tsup":"^8.3.5","rimraf":"^6.0.1","vitest":"^2.1.3","cacheable":"^1.8.3","typescript":"^5.6.3","@keyv/redis":"^3.0.1","@types/node":"^22.8.1","@faker-js/faker":"^9.1.0","@vitest/coverage-v8":"^2.1.3","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_6.1.3_1731275748787_0.1572007631490051","host":"s3://npm-registry-packages"}},"1.2.2":{"name":"cache-manager","version":"1.2.2","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@1.2.2","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"1ca136dd22046ee6b50993390c8217a866377252","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-1.2.2.tgz","integrity":"sha512-36TU+fMm0KkJdIh5c0fjs2beM3uZKwsBt9QOymS/3MhTFHCBtBFCKt9GMc58pAgrri31nHF3de9Wi6KGuSqBYA==","signatures":[{"sig":"MEUCIQCKMMOu0SHBQ3ZcRpe9L5HlfotqQqOzCBzEDs2X6WU9vgIgdJ/yhC/hme969rs0i3Uir9DvVGFKEXw/P2OxHhQ0Pm0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1ca136dd22046ee6b50993390c8217a866377252","gitHead":"eb52818430833230d929f5584d416c3cc9385c27","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"2.0.0","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"2.6.5"},"devDependencies":{"jscs":"^1.9.0","jsdoc":"^3.3.0","mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.4","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}},"6.1.1":{"name":"cache-manager","version":"6.1.1","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@6.1.1","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"2ea0a567a43102364bacc7aaabce4887e3344df7","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-6.1.1.tgz","fileCount":7,"integrity":"sha512-Gvj+GMPYJwYWZKvvk2Ssrd+HXjfVycQwblLfU9ezqAS2AJiesB2wqu6q/vQIouSZuGvfra4J85aO9RhQeMpVWQ==","signatures":[{"sig":"MEUCIQChW7dJ7NZzwO6XLMLPmV9n0uordjlFUwaJVKEdJdPlMQIgeKtFJwqrn/ILROofMu/kxz2A99MeLQ8jyFgC20fWDjM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38290},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-6.1.1.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/fdff7678a2182cccb1b68536e634965f/cache-manager-6.1.1.tgz","_integrity":"sha512-Gvj+GMPYJwYWZKvvk2Ssrd+HXjfVycQwblLfU9ezqAS2AJiesB2wqu6q/vQIouSZuGvfra4J85aO9RhQeMpVWQ==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"10.8.3","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"20.17.0","dependencies":{"keyv":"^5.1.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.59.3","tsup":"^8.3.0","rimraf":"^6.0.1","vitest":"^2.1.3","cacheable":"^1.8.0","typescript":"^5.6.3","@keyv/redis":"^3.0.1","@types/node":"^22.7.5","@faker-js/faker":"^9.0.3","@vitest/coverage-v8":"^2.1.3","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_6.1.1_1729101954721_0.7052579180060761","host":"s3://npm-registry-packages"}},"6.1.2":{"name":"cache-manager","version":"6.1.2","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@6.1.2","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"307eeb8b8888ce87a59c0ed73fccc009d97bfa7f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-6.1.2.tgz","fileCount":7,"integrity":"sha512-hBFCGc7g1sVMto7+Dwr1BWrOXOMuLvC77SbTYaI44tZPFK9myaySBmgvmBYgc7iqbG/qNyUc6oyuDOcHn6oTvw==","signatures":[{"sig":"MEYCIQDReSknUBR1ou4pl8jBsodpmf4gw4XGjmhNda7yR8cMXAIhAMOk82eSpHuSUyEFOzoFI6Z0oVM00LsBg9VAbwhjOnfM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38260},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-6.1.2.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/b641040359434a2c4b390bf758d9cb35/cache-manager-6.1.2.tgz","_integrity":"sha512-hBFCGc7g1sVMto7+Dwr1BWrOXOMuLvC77SbTYaI44tZPFK9myaySBmgvmBYgc7iqbG/qNyUc6oyuDOcHn6oTvw==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git","directory":"packages/cache-manager"},"_npmVersion":"10.8.3","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"20.17.0","dependencies":{"keyv":"^5.1.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.59.3","tsup":"^8.3.5","rimraf":"^6.0.1","vitest":"^2.1.3","cacheable":"^1.8.1","typescript":"^5.6.3","@keyv/redis":"^3.0.1","@types/node":"^22.8.1","@faker-js/faker":"^9.1.0","@vitest/coverage-v8":"^2.1.3","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_6.1.2_1730050925464_0.7055910739895164","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"cache-manager","version":"6.1.0","keywords":["cache","caching","cache manager","node","node.js","in-memory cache","redis","memcached","multi-store cache","ttl","caching layer","cache abstraction","cache middleware","cache strategies","cache wrapper"],"license":"MIT","_id":"cache-manager@6.1.0","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"homepage":"https://github.com/jaredwray/cacheable#readme","bugs":{"url":"https://github.com/jaredwray/cacheable/issues"},"xo":{"rules":{"@typescript-eslint/no-unsafe-call":"off","@typescript-eslint/no-unsafe-assignment":"off"}},"dist":{"shasum":"e1d60430b358decc8b6df2ce6cdc3013303740e4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-6.1.0.tgz","fileCount":7,"integrity":"sha512-Z0gN4aTrCPNxWnXJqdTM+fAFbjYV1al9PNb3bShtw8CeNuaDloYm184f4wPNodPzTBznT3F2sqzTpwlGcL2Hjg==","signatures":[{"sig":"MEUCIF0SeilTHY44dzIe6ut6AFO4Ol/tD9Ytnk1BIqHIcsGnAiEAh7v+U4yY5Gj150zleF/kN+U9LwndP0wA56YtvJ8z2UU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37914},"main":"./dist/index.cjs","type":"module","_from":"file:cache-manager-6.1.0.tgz","types":"./dist/index.d.ts","module":"./dist/index.js","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Tim Phan","email":"timphan.dev@gmail.com"}],"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"}},"scripts":{"test":"xo --fix && vitest run --coverage","build":"rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean","clean":"rimraf ./dist ./coverage ./node_modules","test:ci":"xo && vitest run --coverage"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"_resolved":"/private/var/folders/h1/n3vxgc0n1sn5_9pxftc4p6l80000gn/T/873ba3fb0945bd1d46911ae7928e648b/cache-manager-6.1.0.tgz","_integrity":"sha512-Z0gN4aTrCPNxWnXJqdTM+fAFbjYV1al9PNb3bShtw8CeNuaDloYm184f4wPNodPzTBznT3F2sqzTpwlGcL2Hjg==","repository":{"url":"git+https://github.com/jaredwray/cacheable.git","type":"git"},"_npmVersion":"10.8.2","description":"Cache Manager for Node.js","directories":{},"_nodeVersion":"20.17.0","dependencies":{"keyv":"^5.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.59.3","tsup":"^8.3.0","rimraf":"^6.0.1","vitest":"^2.1.1","typescript":"^5.6.2","@types/node":"^22.7.0","@faker-js/faker":"^9.0.2","@vitest/coverage-v8":"^2.1.1","cache-manager-redis-yet":"^5.1.5"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_6.1.0_1727280196234_0.3190395511599944","host":"s3://npm-registry-packages"}},"5.3.0":{"name":"cache-manager","version":"5.3.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.3.0","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"dist":{"shasum":"a6951cba5e993c045dfef94affd2f55c94f61790","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.3.0.tgz","fileCount":5,"integrity":"sha512-S4Ufb/XRflBshN2JrMrwW4Sjh3KziKx/0mwj0cAQjENQzKGXPj8y0Tf2nUVxuzKL347CVtxdUyWrqkYnL5dbfg==","signatures":[{"sig":"MEUCICfqo9mAeBf3C8F8y4wZv4Isq7noXjPdZRB2ltTZaJC/AiEAxoBKNNz9SWpug33rs+/xNPNRrEzyI2YCDf89JlpS18U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25848},"main":"dist/index.js","types":"dist/index.d.ts","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"yarn lint && yarn fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.{ts,mts,js}'","test":"vitest run --coverage","build":"rm -rf dist && tsc -p tsconfig.build.json","check":"yarn lint:check && yarn fmt:check","release":"yarn check && yarn test -- --run && yarn build","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.{ts,mts,js}'"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"repository":{"url":"https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"description":"Cache module for Node.js","directories":{},"licenseText":"MIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.\n","lint-staged":{"*.{md,json,yml}":"prettier --write","*.{ts,js,mts,mjs}":"eslint --cache --fix"},"dependencies":{"lru-cache":"^10.0.2","lodash.clonedeep":"^4.5.0","promise-coalesce":"^1.1.1"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"8.53.0","vitest":"0.34.6","prettier":"3.1.0","dotenv-cli":"7.3.0","typescript":"5.2.2","@types/node":"20.9.0","lint-staged":"15.1.0","@faker-js/faker":"8.3.1","@vitest/coverage-v8":"0.34.6","eslint-config-prettier":"9.0.0","eslint-plugin-prettier":"5.0.1","@types/lodash.clonedeep":"4.5.9","@typescript-eslint/parser":"6.11.0","@typescript-eslint/eslint-plugin":"6.11.0"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.3.0_1700163468059_0.896456355632032","host":"s3://npm-registry-packages"}},"5.3.1":{"name":"cache-manager","version":"5.3.1","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.3.1","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"dist":{"shasum":"80e4edd593b2d7f7b2b2199dc6fbb4748432bc47","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.3.1.tgz","fileCount":23,"integrity":"sha512-9HP6nc1ZqyZgcVEpy5XS2ns9MYE6cPEM6InA1wQhR6M7GviJzLH2NTFYnf3NEfRmLE351NCSkDo2VISX8dlG+w==","signatures":[{"sig":"MEUCIEXT5XR4faIBpeQ5M82SmQHlD0NPiMAAWrHRsD1XL30IAiEA3BSqqFo5wDJW6/LvbLLUttNLPY3+GDihc/jTx6IqprU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":84895},"main":"dist/index.js","types":"dist/index.d.ts","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"yarn lint && yarn fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.{ts,mts,js}'","test":"vitest run --coverage","build":"rm -rf dist && tsc -p tsconfig.build.json","check":"yarn lint:check && yarn fmt:check","release":"yarn check && yarn test -- --run && yarn build","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.{ts,mts,js}'"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"repository":{"url":"https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"description":"Cache module for Node.js","directories":{},"licenseText":"MIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.\n","lint-staged":{"*.{md,json,yml}":"prettier --write","*.{ts,js,mts,mjs}":"eslint --cache --fix"},"dependencies":{"lru-cache":"^10.0.2","lodash.clonedeep":"^4.5.0","promise-coalesce":"^1.1.1"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"8.53.0","vitest":"0.34.6","prettier":"3.1.0","dotenv-cli":"7.3.0","typescript":"5.2.2","@types/node":"20.9.0","lint-staged":"15.1.0","@faker-js/faker":"8.3.1","@vitest/coverage-v8":"0.34.6","eslint-config-prettier":"9.0.0","eslint-plugin-prettier":"5.0.1","@types/lodash.clonedeep":"4.5.9","@typescript-eslint/parser":"6.11.0","@typescript-eslint/eslint-plugin":"6.11.0"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.3.1_1700236006042_0.9311750740551781","host":"s3://npm-registry-packages"}},"5.3.2":{"name":"cache-manager","version":"5.3.2","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"license":"MIT","_id":"cache-manager@5.3.2","maintainers":[{"name":"jaredwray","email":"me@jaredwray.com"}],"dist":{"shasum":"a8b33ccc69323c59e1b2bdb6cc3638d902e1feda","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-5.3.2.tgz","fileCount":17,"integrity":"sha512-MBpwYqCqf8LFSso5CjMs5Kj2i3RYYUP0fLwjMSnxyspYx0y8uT1SZbWiOk33fw5r+Sbpe5ERfk1+pgXEJ/omEw==","signatures":[{"sig":"MEYCIQC3/rHAG+ycahsiVDF3d6Pp2mpkR5Avc0ugceMTGTpCMAIhAPyBeACI6Y9rbT1E7TD9801ngAazsKjKEntVsbL7sBv+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39833},"main":"dist/index.js","types":"dist/index.d.ts","authors":[{"name":"Jared Wray","email":"me@jaredwray.com"},{"name":"Bryan Donovan"},{"name":"Juan Aguilar Santillana","email":"mhpoin@gmail.com"}],"scripts":{"fix":"yarn lint && yarn fmt","fmt":"prettier --write '**/*.{md,json,yml}'","lint":"eslint --cache --max-warnings 0 --fix '**/*.{ts,mts,js}'","test":"vitest run --coverage","build":"rimraf dist && tsc -p tsconfig.build.json","check":"yarn lint:check && yarn fmt:check","clean":"rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock","prepare":"yarn build","release":"yarn check && yarn test -- --run && yarn build","fmt:check":"prettier --check '**/*.{md,json,yml}'","lint:check":"eslint --cache --max-warnings 0 '**/*.{ts,mts,js}'"},"_npmUser":{"name":"jaredwray","email":"me@jaredwray.com"},"repository":{"url":"https://github.com/node-cache-manager/node-cache-manager.git","type":"git"},"description":"Cache module for Node.js","directories":{},"licenseText":"MIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.\n","lint-staged":{"*.{md,json,yml}":"prettier --write","*.{ts,js,mts,mjs}":"eslint --cache --fix"},"dependencies":{"lru-cache":"^10.1.0","lodash.clonedeep":"^4.5.0","promise-coalesce":"^1.1.2"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"8.56.0","rimraf":"^5.0.5","vitest":"1.1.0","prettier":"3.1.1","dotenv-cli":"7.3.0","typescript":"5.3.3","@types/node":"20.10.5","lint-staged":"15.2.0","@faker-js/faker":"8.3.1","@vitest/coverage-v8":"1.1.0","eslint-config-prettier":"9.1.0","eslint-plugin-prettier":"5.0.1","@types/lodash.clonedeep":"4.5.9","@typescript-eslint/parser":"6.15.0","@typescript-eslint/eslint-plugin":"6.15.0"},"_npmOperationalInternal":{"tmp":"tmp/cache-manager_5.3.2_1703004776711_0.3903035305918856","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"cache-manager","version":"1.2.0","keywords":["cache","redis","lru-cache","memory cache","multiple cache"],"author":{"name":"Bryan Donovan"},"license":"MIT","_id":"cache-manager@1.2.0","maintainers":[{"name":"bryandonovan","email":"bdondo@gmail.com"}],"homepage":"https://github.com/BryanDonovan/node-cache-manager","bugs":{"url":"https://github.com/BryanDonovan/node-cache-manager/issues"},"dist":{"shasum":"f1ac1d0a565440a440f2bc0cd5eaa03854f609d6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/cache-manager/-/cache-manager-1.2.0.tgz","integrity":"sha512-eh6HWsHkty2BSliP0kWKSEvIbh/vYh9fRcgTRT3tIgVc3eLyqASqrPE5O6/VSi5sgZMN3zZm7Z7J4G9auXtXTw==","signatures":[{"sig":"MEQCIGiWRl9ZSXHL8u/WkXu7Ws0vjVtDASlGW0Muo7S7HJEqAiBg+vLPD96c9CNGTLnkgPCyepgUIk7SUenhpDQC30XcQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f1ac1d0a565440a440f2bc0cd5eaa03854f609d6","gitHead":"576501efe92a00e6a4d41997672dd53b30caf7cc","scripts":{"test":"make"},"_npmUser":{"name":"bryandonovan","email":"bdondo@gmail.com"},"repository":{"url":"https://github.com/BryanDonovan/node-cache-manager.git","type":"git"},"_npmVersion":"2.0.0","description":"Cache module for Node.js","directories":{},"dependencies":{"async":"^0.9.0","lru-cache":"2.6.5"},"devDependencies":{"jscs":"^1.9.0","jsdoc":"^3.3.0","mocha":"^1.20.1","sinon":"^1.10.2","jshint":"^2.5.4","istanbul":"^0.2.11","optimist":"^0.6.1","coveralls":"^2.3.0"}}},"name":"cache-manager","time":{"0.6.0":"2014-06-15T17:45:01.369Z","5.7.1":"2024-07-03T17:12:07.149Z","5.7.2":"2024-07-11T18:37:18.623Z","5.7.3":"2024-07-15T16:10:00.639Z","5.7.4":"2024-07-28T13:56:26.395Z","5.7.5":"2024-08-05T22:29:53.019Z","5.7.6":"2024-08-06T21:53:40.558Z","4.1.0":"2022-07-08T21:54:56.957Z","0.2.0":"2013-10-31T15:38:17.796Z","3.3.0":"2020-05-01T03:29:04.849Z","7.2.0":"2025-08-26T22:18:44.837Z","0.16.0":"2015-01-07T21:02:52.538Z","7.2.2":"2025-09-22T15:42:57.626Z","2.9.0":"2018-03-26T21:52:06.419Z","2.5.0":"2017-10-12T19:45:58.884Z","2.1.1":"2016-05-24T19:01:57.383Z","2.1.2":"2016-06-08T16:53:06.371Z","1.3.0":"2016-01-26T20:32:29.674Z","6.4.0":"2025-01-23T17:00:19.604Z","6.4.1":"2025-03-03T23:27:05.764Z","6.0.0":"2024-09-23T01:00:08.899Z","6.0.1":"2024-09-24T15:08:23.022Z","5.2.0":"2023-03-21T04:06:14.879Z","5.2.1":"2023-04-23T20:38:23.739Z","5.2.2":"2023-06-04T17:04:53.377Z","5.2.3":"2023-06-14T19:01:05.543Z","5.2.4":"2023-10-06T18:36:35.175Z","5.6.0":"2024-06-05T14:19:56.197Z","5.6.1":"2024-06-05T18:12:06.557Z","0.1.3":"2013-10-31T14:44:04.885Z","0.5.0":"2014-05-02T23:38:25.859Z","0.9.0":"2014-08-19T19:59:37.528Z","0.1.1":"2013-10-14T01:53:06.067Z","0.1.2":"2013-10-14T02:07:50.493Z","6.4.2":"2025-04-05T16:45:28.203Z","0.1.0":"2013-10-14T01:14:31.340Z","6.4.3":"2025-05-06T15:49:36.399Z","3.0.0":"2020-02-21T17:23:09.608Z","3.4.1":"2021-03-05T18:00:54.634Z","7.2.7":"2025-12-09T20:28:48.028Z","3.4.2":"2021-03-29T21:43:52.631Z","7.2.8":"2026-01-09T21:05:20.678Z","3.4.3":"2021-03-30T16:29:23.188Z","3.4.4":"2021-06-11T16:13:55.252Z","7.2.3":"2025-10-01T17:45:42.735Z","7.2.4":"2025-10-06T16:51:41.325Z","7.2.5":"2025-11-16T16:49:02.305Z","3.4.0":"2020-09-01T16:11:34.616Z","7.2.6":"2025-12-06T22:46:48.795Z","7.1.0":"2025-07-30T17:50:35.157Z","7.1.1":"2025-08-06T16:24:49.631Z","0.15.0":"2014-12-19T00:08:01.919Z","0.11.0":"2014-09-18T17:30:05.501Z","2.6.0":"2017-12-08T17:42:58.206Z","2.2.0":"2016-10-19T17:33:34.613Z","0.19.0":"2015-03-29T22:44:32.384Z","6.3.1":"2024-12-11T19:30:29.093Z","1.4.0":"2016-02-03T18:31:19.137Z","6.3.2":"2024-12-26T23:34:02.562Z","1.4.1":"2016-03-13T21:06:32.657Z","6.3.0":"2024-12-03T23:08:35.438Z","5.1.0":"2022-10-19T09:22:26.800Z","5.1.1":"2022-10-19T10:58:19.625Z","5.1.2":"2022-11-02T01:36:23.134Z","1.0.0":"2015-05-23T20:31:12.119Z","5.1.3":"2022-11-02T13:56:51.552Z","5.1.4":"2022-12-04T15:41:44.692Z","5.5.0":"2024-04-04T18:43:44.005Z","5.1.5":"2023-02-03T14:46:45.005Z","5.5.1":"2024-04-05T16:27:00.183Z","5.1.6":"2023-02-06T15:31:56.409Z","5.5.2":"2024-04-29T14:58:11.205Z","5.1.7":"2023-02-23T02:27:23.512Z","5.5.3":"2024-05-22T23:20:40.878Z","0.0.4":"2013-08-01T21:36:21.122Z","0.4.0":"2014-05-02T23:10:17.685Z","0.0.5":"2013-10-13T23:53:37.133Z","0.8.0":"2014-07-07T17:13:54.877Z","0.0.2":"2013-04-08T22:54:45.360Z","0.0.3":"2013-07-10T21:44:05.524Z","0.0.1":"2013-04-07T20:12:28.067Z","2.10.3":"2020-01-31T18:59:37.996Z","3.5.0":"2021-11-11T18:44:37.260Z","modified":"2026-01-14T01:22:53.952Z","3.1.0":"2020-02-24T17:11:39.928Z","0.18.0":"2015-02-12T18:31:36.720Z","7.0.1":"2025-06-28T05:10:00.642Z","0.14.0":"2014-10-15T18:59:09.715Z","3.6.3":"2022-05-20T18:57:12.529Z","created":"2013-04-07T20:12:26.695Z","0.10.1":"2014-09-10T18:29:03.743Z","7.0.0":"2025-06-08T17:45:49.398Z","2.7.0":"2018-02-13T18:22:44.211Z","2.10.0":"2019-07-11T22:09:41.617Z","2.10.2":"2020-01-30T18:29:29.498Z","2.3.0":"2016-12-22T19:28:44.235Z","2.10.1":"2019-11-06T17:12:02.439Z","1.5.0":"2016-03-13T21:22:39.146Z","6.2.0":"2024-11-23T23:55:11.473Z","5.0.0":"2022-09-29T19:51:46.313Z","5.0.1":"2022-10-09T20:37:21.734Z","5.4.0":"2024-01-19T22:15:45.033Z","1.1.0":"2015-08-19T23:31:16.007Z","0.7.0":"2014-06-15T17:56:15.606Z","0.7.1":"2014-06-15T19:12:00.006Z","4.0.0":"2022-06-01T16:25:43.761Z","4.0.1":"2022-06-03T16:24:14.799Z","0.3.0":"2013-12-08T18:49:53.527Z","2.9.1":"2019-05-28T16:54:42.432Z","3.6.0":"2021-11-12T20:37:10.636Z","3.6.1":"2022-04-07T17:04:43.626Z","3.6.2":"2022-05-19T23:18:47.275Z","3.2.0":"2020-03-13T17:09:28.336Z","3.2.1":"2020-03-20T22:02:49.836Z","2.0.0":"2016-03-13T21:31:29.429Z","0.17.0":"2015-02-05T19:11:03.591Z","2.0.1":"2016-04-18T16:53:14.778Z","0.13.0":"2014-10-14T21:57:53.394Z","2.8.0":"2018-02-28T19:23:16.465Z","2.4.0":"2017-01-17T18:23:27.895Z","2.11.1":"2020-02-03T20:08:02.600Z","2.11.0":"2020-01-31T20:31:41.537Z","1.2.1":"2015-10-17T16:55:56.015Z","6.1.3":"2024-11-10T21:55:49.030Z","1.2.2":"2015-10-19T18:24:12.346Z","6.1.1":"2024-10-16T18:05:54.931Z","6.1.2":"2024-10-27T17:42:05.733Z","6.1.0":"2024-09-25T16:03:16.438Z","5.3.0":"2023-11-16T19:37:48.191Z","5.3.1":"2023-11-17T15:46:46.470Z","5.3.2":"2023-12-19T16:52:56.850Z","1.2.0":"2015-10-07T20:43:12.946Z"},"readmeFilename":"README.md","homepage":"https://github.com/jaredwray/cacheable#readme"}