{
  "name": "@atmus/nestjs-cache",
  "version": "0.1.0",
  "description": "NestJS - Redis Cache integration",
  "author": "Felipe Medeiros <medeiros.dev@gmail.com>",
  "license": "MIT",
  "main": "dist/index.js",
  "files": [
    "dist/**/*",
    "*.md"
  ],
  "scripts": {
    "build": "nest build",
    "deploy": "sh ./publish.sh",
    "format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write",
    "major": "npm run release -- --release-as major",
    "minor": "npm run release -- --release-as minor",
    "patch": "npm run release -- --release-as patch",
    "release": "standard-version",
    "test": "jest"
  },
  "precommit": [
    "format",
    "test"
  ],
  "keywords": [
    "nestjs",
    "redis",
    "cache",
    "nestjs-cache"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/atmus-tecnologia/nestjs-cache.git"
  },
  "bugs": {
    "url": "https://github.com/atmus-tecnologia/nestjs-cache"
  },
  "peerDependencies": {
    "@nestjs/common": "^10.0.0",
    "rxjs": "^7.2.0"
  },
  "dependencies": {
    "ioredis": "^5.3.2",
    "rxjs": "^7.2.0"
  },
  "devDependencies": {
    "@nestjs/common": "^10.0.0",
    "@nestjs/core": "^10.0.0",
    "@nestjs/testing": "^10.0.0",
    "@types/jest": "^29.5.0",
    "@types/node": "^20.3.1",
    "@typescript-eslint/eslint-plugin": "^5.57.0",
    "@typescript-eslint/parser": "^5.57.0",
    "husky": "^8.0.3",
    "jest": "^29.5.0",
    "lint-staged": "^13.2.0",
    "prettier": "^2.8.7",
    "reflect-metadata": "^0.1.13",
    "rimraf": "^4.4.1",
    "rxjs": "^7.2.0",
    "standard-version": "^9.5.0",
    "ts-jest": "^29.0.5",
    "ts-node": "^10.9.1",
    "tslint": "^6.1.3",
    "typescript": "^5.0.2"
  },
  "jest": {
    "moduleDirectories": [
      "node_modules",
      "src"
    ],
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "roots": [
      "src"
    ],
    "testRegex": ".*\\.spec\\.ts$",
    "transform": {
      "^.+\\.(t|j)s$": "ts-jest"
    },
    "collectCoverageFrom": [
      "**/*.(t|j)s"
    ],
    "coverageDirectory": "../coverage",
    "testEnvironment": "node",
    "moduleNameMapper": {
      "src/(.*)": "<rootDir>/src/$1"
    }
  },
  "types": "./dist/index.d.ts",
  "homepage": "https://github.com/atmus-tecnologia/nestjs-cache#readme"
}
