| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "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": "npm run lint && npm run types:check && npm run test:unit",
- "test:ci": "npm run test:unit",
- "test:unit": "mocha --exit test/**/*.{js,cjs}",
- "types:check": "tsc --noEmit"
- },
- "peerDependencies": {
- "@overleaf/logger": "*",
- "@overleaf/metrics": "*",
- "@overleaf/o-error": "*"
- },
- "dependencies": {
- "async": "^3.2.5",
- "ioredis": "~4.27.1"
- },
- "devDependencies": {
- "@overleaf/logger": "*",
- "@overleaf/o-error": "*",
- "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"
- }
- }
|