UNPKG

@ezgdev/nest-ioredis

Version:
78 lines 1.97 kB
{ "name": "@ezgdev/nest-ioredis", "version": "10.0.1", "description": "Nest - a ioredis module (@ioredis)", "author": "Nest Modules TM (mod by ezgdev)", "private": false, "license": "MIT", "files": [ "index.js", "index.d.ts", "dist/**/*" ], "keywords": [ "nest", "nestjs", "nest-modules", "nestjs-modules", "redis", "ioredis" ], "peerDependencies": { "@nestjs/common": ">=6.7.0", "@nestjs/core": ">=6.7.0", "ioredis": ">=5.0.0" }, "optionalDependencies": { "@nestjs/terminus": "10.2.0" }, "devDependencies": { "@nestjs/common": "10.3.0", "@nestjs/core": "10.3.0", "@nestjs/platform-express": "10.3.0", "@nestjs/terminus": "10.2.0", "@nestjs/testing": "10.3.0", "@types/jest": "29.5.11", "@typescript-eslint/eslint-plugin": "6.15.0", "@typescript-eslint/parser": "6.15.0", "husky": "8.0.3", "ioredis": "5.3.2", "jest": "29.7.0", "lint-staged": "15.2.0", "prettier": "3.1.1", "reflect-metadata": "0.2.1", "rimraf": "5.0.5", "standard-version": "9.5.0", "ts-jest": "29.1.1", "ts-node": "10.9.2", "tslib": "2.6.2", "typescript": "5.3.3" }, "lint-staged": { "*.ts": [ "prettier --write" ] }, "husky": { "hooks": { "commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS", "pre-commit": "lint-staged" } }, "repository": { "type": "git", "url": "git@github.com:ezg-group/libs-ezg-nest-ioredis.git" }, "scripts": { "prepublish": "npm run build", "prebuild": "rimraf dist", "build": "tsc -p tsconfig.json", "format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write", "test": "jest", "release": "standard-version", "patch": "npm run release -- --release-as patch", "minor": "npm run release -- --release-as minor", "major": "npm run release -- --release-as major", "deploy": "sh ./publish.sh" } }