UNPKG

nestjs-redis

Version:

a NestJS ioRedis module

60 lines (59 loc) 1.51 kB
{ "name": "nestjs-redis", "version": "1.3.3", "description": "a NestJS ioRedis module", "author": "skunight", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/skunight/nestjs-redis.git" }, "scripts": { "build": "rimraf dist && tsc -p tsconfig.json", "precommit": "lint-staged", "prepublish": "yarn run build", "publish-public": "yarn publish --access public", "test": "jest", "test:watch": "jest --watch", "test:cov": "jest --coverage", "test:e2e": "jest --config ./test/jest-e2e.json", "lint": "eslint -c .eslintrc.js" }, "dependencies": { "@nestjs/common": "^7.4.4", "@nestjs/core": "^7.4.4", "@types/ioredis": "*", "@types/uuid": "*", "ioredis": "^4", "reflect-metadata": "*", "rxjs": "^6", "uuid": "^8" }, "devDependencies": { "@nestjs/testing": "^7", "@types/node": "*", "@typescript-eslint/eslint-plugin": "^4", "@typescript-eslint/parser": "^4", "cz-conventional-changelog": "^3", "eslint": "*", "eslint-config-prettier": "^6", "eslint-plugin-jest": "^24", "eslint-plugin-prettier": "^3", "jest": "^26", "prettier": "^2", "rimraf": "*", "ts-jest": "^26", "typescript": "^4" }, "keywords": [ "nestjs", "nest", "redis", "nestjs-redis" ], "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }