UNPKG

cache-manager-ioredis-store

Version:
81 lines (80 loc) 2.2 kB
{ "name": "cache-manager-ioredis-store", "authors": [ { "name": "Matthijs Dabroek", "email": "dabroek@gmail.com" }, { "name": "Juan Aguilar Santillana", "email": "mhpoin@gmail.com" }, { "name": "Dinko Osrecki", "email": "dinko.osrecki@gmail.com" } ], "description": "Redis store for node-cache-manager updated", "version": "1.1.0", "license": "MIT", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "repository": { "type": "git", "url": "https://github.com/edosrecki/node-cache-manager-ioredis.git" }, "keywords": [ "cache-manager", "ioredis", "redis", "redis-cluster" ], "scripts": { "build": "rm -rf dist && tsc -p tsconfig.build.json", "test:watch": "vitest test.ts", "test": "npm run test:watch --run", "release": "npm run check && npm test && npm run build && dotenv release-it", "fix": "npm run lint && npm run fmt", "check": "npm run lint:check && npm run fmt:check", "lint": "eslint --cache --fix '**/*.{ts,js}'", "fmt": "prettier --write '**/*.{md,prisma,json}'", "lint:check": "eslint --cache --max-warnings 0 '**/*.{ts,js}'", "fmt:check": "prettier --check '**/*.{md,json}'", "commitlint": "commitlint", "prepare": "husky install" }, "dependencies": { "cache-manager": "^5.1.0", "ioredis": "^5.2.3" }, "devDependencies": { "@commitlint/cli": "17.3.0", "@commitlint/config-conventional": "17.3.0", "@release-it/conventional-changelog": "5.1.1", "@types/node": "18.11.11", "@typescript-eslint/eslint-plugin": "5.45.1", "@typescript-eslint/parser": "5.45.1", "@vitest/coverage-c8": "0.25.4", "c8": "7.12.0", "dotenv-cli": "6.0.0", "eslint": "8.29.0", "eslint-config-prettier": "8.5.0", "eslint-plugin-prettier": "4.2.1", "husky": "8.0.2", "lint-staged": "13.1.0", "prettier": "2.8.0", "release-it": "15.5.1", "typescript": "4.9.3", "vitest": "0.25.4" }, "engines": { "node": ">= 16.17.0" }, "lint-staged": { "*.{ts,js}": "eslint --cache --fix", "*.{json,prisma,md,yml}": "prettier --write" } }