@songkeys/nestjs-redis
Version:
Redis(ioredis) module for Nest framework (node.js).
62 lines • 1.71 kB
JSON
{
"name": "@songkeys/nestjs-redis",
"version": "10.0.0",
"description": "Redis(ioredis) module for Nest framework (node.js).",
"author": "Songkeys <songv587@gmail.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"keywords": [
"redis",
"ioredis",
"sentinel",
"cluster",
"nestjs",
"nest",
"nodejs",
"node",
"typescript",
"javascript"
],
"dependencies": {
"tslib": "2.6.0"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"ioredis": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/songkeys/nestjs-redis#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/songkeys/nestjs-redis.git"
},
"bugs": {
"url": "https://github.com/songkeys/nestjs-redis/issues"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"lint": "concurrently \"npm:lint:es\" \"npm:lint:tsc\"",
"lint:es": "eslint \"{lib,test}/**/*.ts\"",
"lint:tsc": "tsc -p tsconfig.json --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"test:clear": "jest --clearCache",
"make-badges": "istanbul-badges-readme --coverageDir=\"./coverage\" --readmeDir=\"./\" --style=\"flat-square\" --logo=\"jest\"",
"madge": "madge --image ./dependency-graph.svg dist/index.js",
"publish:next": "npm publish --tag next",
"publish:rc": "npm publish --tag rc"
}
}