UNPKG

@squareboat/nest-cache

Version:

The cache package for your NestJS Applications

50 lines 1.55 kB
{ "name": "@squareboat/nest-cache", "version": "0.2.9", "description": "The cache package for your NestJS Applications", "main": "dist/index.js", "types": "dist/index.d.ts", "keywords": [ "nestjs", "nestjs-cache", "nestjs-redis" ], "repository": { "type": "git", "url": "https://github.com/squareboat/nest-cache.git" }, "bugs": { "url": "https://github.com/squareboat/nest-cache/issues" }, "homepage": "https://squareboat.com/open-source/nest-cache/", "author": "Vinayak Sarawagi <vinayaksarawagi25@gmail.com>", "private": false, "license": "MIT", "scripts": { "build": "rm -rf dist && tsc -p tsconfig.json", "format": "prettier --write \"**/*.ts\"", "lint": "eslint 'lib/**/*.ts' --fix", "prepublish:npm": "npm run build", "publish:npm": "npm publish --access public", "prepublish:next": "npm run build", "publish:next": "npm publish --access public --tag next", "test:e2e": "jest --config ./tests/jest-e2e.json --runInBand", "test:e2e:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch" }, "devDependencies": { "@nestjs/common": "^9.3.10", "@nestjs/core": "^9.3.10", "@types/ioredis": "^5.0.0", "@types/node": "^20.3.3", "reflect-metadata": "^0.1.13", "typescript": "^4.4.4" }, "peerDependencies": { "@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0", "@nestjs/core": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0", "reflect-metadata": "^0.1.13" }, "dependencies": { "ioredis": "^5.3.1" } }