{ "name": "@overleaf/redis-wrapper", "version": "2.1.0", "description": "Redis wrapper for node which will either use cluster or single instance redis", "main": "index.js", "files": [ "index.js", "Errors.js", "RedisLocker.js", "RedisWebLocker.js" ], "author": "Overleaf (https://www.overleaf.com)", "repository": "github:overleaf/redis-wrapper", "license": "ISC", "scripts": { "lint": "eslint --cache --cache-location ../../node_modules/.cache/eslint/ --ext .cjs,.js,.jsx,.mjs,.ts --max-warnings 0 --format unix .", "lint:fix": "eslint --cache --cache-location ../../node_modules/.cache/eslint/ --fix --ext .cjs,.js,.jsx,.mjs,.ts .", "test": "yarn run lint && yarn run types:check && yarn run test:unit", "test:ci": "yarn run test:unit", "test:unit": "mocha --exit test/**/*.{js,cjs}", "types:check": "tsc --noEmit" }, "peerDependencies": { "@overleaf/logger": "workspace:*", "@overleaf/metrics": "workspace:*", "@overleaf/o-error": "workspace:*" }, "dependencies": { "async": "^3.2.5", "ioredis": "~4.27.1" }, "devDependencies": { "@overleaf/logger": "workspace:*", "@overleaf/o-error": "workspace:*", "chai": "^4.3.6", "mocha": "^11.1.0", "mocha-junit-reporter": "^2.2.1", "mocha-multi-reporters": "^1.5.1", "sandboxed-module": "^2.0.4", "sinon": "^9.2.4", "typescript": "^5.0.4" } }