{
  "name": "nestjs-firebase-admin",
  "version": "0.6.2",
  "description": "Firebase Admin SDK for Nestjs",
  "author": "hebertcisco <hebertcisco@outlook.com>",
  "license": "MIT",
  "homepage": "https://hebertcisco.github.io/nestjs-firebase-admin/",
  "url": "https://github.com/hebertcisco/nestjs-firebase-admin#readme",
  "keywords": [
    "nestjs",
    "firebase",
    "firebase-admin",
    "nestjs-module",
    "firebase-auth",
    "firestore",
    "realtime-database",
    "cloud-messaging",
    "fcm",
    "typescript",
    "nestjs-firebase",
    "admin-sdk"
  ],
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "start:debug": "nest start --debug --watch",
    "build": "npx tsc -p tsconfig.build.json",
    "prebuild": "rimraf dist",
    "format": "npx prettier --write \"{lib,test}/**/*.ts\"",
    "lint": "npx eslint \"lib/**/*.ts\" --fix",
    "prepublish:npm": "npm run build",
    "publish:npm": "npm publish --access public",
    "prepublish:next": "npm run build",
    "publish:next": "npm publish --access public --tag next",
    "test:e2e": "npx jest --config ./tests/jest-e2e.json --runInBand",
    "prepare": "npm run build",
    "test": "npx jest",
    "test:watch": "npx jest --watch",
    "test:cov": "npx jest --coverage",
    "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
    "prepublishOnly": "npm test && npm run lint",
    "preversion": "npm run lint",
    "version": "npm run format && git add -A lib",
    "postversion": "git push && git push --tags"
  },
  "engines": {
    "node": ">=20",
    "npm": ">=10"
  },
  "dependencies": {
    "@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.2.1 || ^10.2.1 || ^11.0.0",
    "@nestjs/core": "^7.0.0 || ^8.0.0 || ^9.2.1 || ^10.2.1 || ^11.0.0",
    "firebase-admin": "^13.7.0"
  },
  "devDependencies": {
    "@nestjs/testing": "^7.0.0 || ^8.0.0 || ^9.2.1 || ^10.2.1 || ^11.0.0",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.19.17",
    "@types/supertest": "^7.2.0",
    "@typescript-eslint/eslint-plugin": "^8.58.1",
    "@typescript-eslint/parser": "^8.58.1",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-jest": "^28.14.0",
    "eslint-plugin-prettier": "^5.5.5",
    "jest": "^29.7.0",
    "prettier": "^3.8.1",
    "reflect-metadata": "^0.2.2",
    "rimraf": "^5.0.10",
    "rxjs": "^7.8.2",
    "supertest": "^7.2.2",
    "ts-jest": "^29.4.9",
    "typescript": "^5.9.3"
  },
  "peerDependencies": {
    "@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.2.1 || ^10.2.1 || ^11.0.0",
    "reflect-metadata": "^0.2.2",
    "rxjs": "^6.0.0 || ^7.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/hebertcisco/nestjs-firebase-admin"
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "rootDir": "lib",
    "testRegex": ".*\\.spec\\.ts$",
    "transform": {
      "^.+\\.(t|j)s$": "ts-jest"
    },
    "collectCoverageFrom": [
      "**/*.(t|j)s",
      "!**/*.spec.ts",
      "!**/tests/**",
      "!**/mocks/**",
      "!**/interfaces/index.ts",
      "!**/types/index.ts",
      "!index.ts"
    ],
    "coverageDirectory": "../coverage",
    "coverageThreshold": {
      "global": {
        "statements": 85,
        "branches": 65,
        "functions": 92,
        "lines": 95
      }
    },
    "testEnvironment": "node"
  }
}
