{
  "name": "nestjs-grpc-reflection",
  "version": "0.2.2",
  "description": "A pluggable gRPC Reflection Server for the NestJS framework",
  "author": "Justin Timmons",
  "repository": "gitlab:jtimmons/nestjs-grpc-reflection-module",
  "bugs": "https://gitlab.com/jtimmons/nestjs-grpc-reflection-module/-/issues",
  "license": "MIT",
  "files": [
    "dist/index.*",
    "dist/grpc-reflection/"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "prebuild": "rimraf dist",
    "generate": "buf generate",
    "build": "nest build",
    "format": "npm run format:check -- --write",
    "format:check": "prettier \"src/**/*.ts\" --check",
    "start": "nest start",
    "start:dev": "nest start --watch",
    "start:debug": "nest start -e 'node --inspect-brk'",
    "start:prod": "node dist/main",
    "build:docs": "compodoc -p tsconfig.doc.json",
    "start:docs": "npm run build:docs -- --serve --watch --open",
    "lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
    "lint:fix": "npm run lint -- --fix",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:cov": "jest --coverage",
    "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
    "release": "standard-version",
    "prepare": "husky install"
  },
  "dependencies": {
    "@grpc/reflection": "^1.0.0",
    "google-protobuf": "^3.21.2",
    "protobufjs": "^7.2.5",
    "reflect-metadata": "^0.1.13",
    "ts-case-convert": "^2.0.2"
  },
  "peerDependencies": {
    "@grpc/grpc-js": ">=1.5.4",
    "@grpc/proto-loader": ">=0.6.9",
    "@nestjs/common": ">=8.4.0",
    "@nestjs/core": ">=8.4.0",
    "@nestjs/microservices": ">=8.4.0",
    "rxjs": ">=7.0.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.7.2",
    "@commitlint/config-conventional": "^17.7.0",
    "@compodoc/compodoc": "^1.1.21",
    "@nestjs/cli": "^10.1.18",
    "@nestjs/config": "^3.1.1",
    "@nestjs/schematics": "^10.0.2",
    "@nestjs/testing": "^10.2.6",
    "@types/google-protobuf": "^3.15.7",
    "@types/jest": "29.5.5",
    "@types/node": "^20.8.0",
    "@types/supertest": "^2.0.13",
    "@typescript-eslint/eslint-plugin": "^6.7.3",
    "@typescript-eslint/parser": "^6.7.3",
    "all-contributors-cli": "^6.26.1",
    "eslint": "^8.50.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-prettier": "^5.0.0",
    "husky": "^8.0.3",
    "jest": "^29.7.0",
    "jest-junit": "^16.0.0",
    "npm-check-updates": "^16.14.4",
    "prettier": "^3.0.3",
    "rimraf": "^5.0.5",
    "source-map-support": "^0.5.21",
    "standard-version": "^9.5.0",
    "supertest": "^6.3.3",
    "ts-jest": "^29.1.1",
    "ts-loader": "^9.4.4",
    "ts-node": "^10.9.1",
    "ts-proto": "^1.159.1",
    "tsconfig-paths": "^4.2.0",
    "typescript": "^5.2.2"
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "reporters": [
      "default",
      "jest-junit"
    ],
    "rootDir": "src",
    "testRegex": ".*\\.spec\\.ts$",
    "transform": {
      "^.+\\.(t|j)s$": "ts-jest"
    },
    "collectCoverageFrom": [
      "**/*.(t|j)s"
    ],
    "coveragePathIgnorePatterns": [
      "src/sample",
      "src/grpc-reflection/proto"
    ],
    "coverageReporters": [
      "text",
      "html",
      "cobertura"
    ],
    "coverageDirectory": "../coverage",
    "testEnvironment": "node"
  }
}
