Socket
Socket
Sign inDemoInstall

@keyv/redis

Package Overview
Dependencies
11
Maintainers
2
Versions
44
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.5.3 to 2.5.4

20

package.json
{
"name": "@keyv/redis",
"version": "2.5.3",
"version": "2.5.4",
"description": "Redis storage adapter for Keyv",
"main": "src/index.js",
"scripts": {
"test": "xo && nyc ava --serial",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"clean": "rm -rf node_modules && rm -rf .nyc_output && rm -rf coverage.lcov"
"test": "xo && c8 ava --serial",
"test:ci": "xo && ava --serial",
"clean": "rm -rf node_modules && rm -rf ./coverage"
},

@@ -62,11 +62,11 @@ "xo": {

"@keyv/test-suite": "*",
"ava": "^5.0.1",
"ava": "^5.1.0",
"c8": "^7.12.0",
"delay": "^5.0.0",
"keyv": "*",
"nyc": "^15.1.0",
"requirable": "^1.0.5",
"ts-node": "^10.9.1",
"requirable": "^1.0.5",
"tsd": "^0.24.1",
"typescript": "^4.8.4",
"xo": "^0.52.4"
"tsd": "^0.25.0",
"typescript": "^4.9.3",
"xo": "^0.53.1"
},

@@ -73,0 +73,0 @@ "tsd": {

/* eslint-disable @typescript-eslint/consistent-type-definitions */
import {EventEmitter} from 'events';
import type {Store, StoredData} from 'keyv';
import type {Redis, Cluster} from 'ioredis';
import type{Store, StoredData} from 'keyv';
import type{Redis, Cluster} from 'ioredis';

@@ -23,2 +23,3 @@ declare class KeyvRedis<Value=any> extends EventEmitter implements Store<Value> {

has?(key: string): boolean | Promise<boolean>;
disconnect(): void;
}

@@ -25,0 +26,0 @@ declare namespace KeyvRedis {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc