{
  "name": "@scwar/nestjs-cloudinary",
  "version": "1.0.2",
  "description": "A comprehensive NestJS module for integrating with Cloudinary API",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:cov": "jest --coverage",
    "test:debug": "node --inspect-brkt node_modules/.bin/jest --runInBand",
    "test:e2e": "jest --config ./test/jest-e2e.json",
    "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
    "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
    "version:patch": "npm version patch --no-git-tag-version && npm run changelog:update",
    "version:minor": "npm version minor --no-git-tag-version && npm run changelog:update",
    "version:major": "npm version major --no-git-tag-version && npm run changelog:update",
    "version:auto": "node scripts/version-bump.js",
    "changelog:update": "node scripts/update-changelog.js",
    "changelog:generate": "conventional-changelog -p angular -i CHANGELOG.md -s",
    "release:patch": "npm run version:patch && npm run build && npm run test && git add . && git commit -m \"chore: bump version to $(node -p \"require('./package.json').version\")\" && git tag \"v$(node -p \"require('./package.json').version\")\"",
    "release:minor": "npm run version:minor && npm run build && npm run test && git add . && git commit -m \"chore: bump version to $(node -p \"require('./package.json').version\")\" && git tag \"v$(node -p \"require('./package.json').version\")\"",
    "release:major": "npm run version:major && npm run build && npm run test && git add . && git commit -m \"chore: bump version to $(node -p \"require('./package.json').version\")\" && git tag \"v$(node -p \"require('./package.json').version\")\"",
    "release:auto": "npm run version:auto && npm run build && npm run test && git add . && git commit -m \"chore: bump version to $(node -p \"require('./package.json').version\")\" && git tag \"v$(node -p \"require('./package.json').version\")\"",
    "prepublishOnly": "npm run build && npm run test"
  },
  "keywords": [
    "nestjs",
    "cloudinary",
    "image",
    "video",
    "upload",
    "transformation",
    "api",
    "typescript",
    "nodejs"
  ],
  "author": "Favour Max-Oti",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kellslte/nestjs-cloudinary.git"
  },
  "bugs": {
    "url": "https://github.com/kellslte/nestjs-cloudinary/issues"
  },
  "homepage": "https://github.com/kellslte/nestjs-cloudinary#readme",
  "peerDependencies": {
    "@nestjs/common": "^10.0.0",
    "@nestjs/core": "^10.0.0",
    "cloudinary": "^2.0.0",
    "rxjs": "^7.8.0"
  },
  "dependencies": {
    "cloudinary": "^2.0.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.19.11",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "conventional-changelog-cli": "^4.1.0",
    "eslint": "^8.0.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-prettier": "^5.0.0",
    "jest": "^29.5.0",
    "prettier": "^3.0.0",
    "ts-jest": "^29.1.0",
    "typescript": "^5.0.0"
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "rootDir": ".",
    "testRegex": ".*\\.spec\\.ts$",
    "transform": {
      "^.+\\.(t|j)s$": [
        "ts-jest",
        {
          "tsconfig": "tsconfig.test.json"
        }
      ]
    },
    "collectCoverageFrom": [
      "src/**/*.(t|j)s"
    ],
    "coverageDirectory": "./coverage",
    "testEnvironment": "node",
    "testPathIgnorePatterns": [
      "/node_modules/",
      "/dist/"
    ]
  }
}
