{
  "name": "nestjs-telegram-bot-api",
  "version": "1.1.1",
  "description": "A NestJS Module for Telegram Bots",
  "author": {
    "email": "me@jaymcdoniel.dev",
    "name": "Jay McDoniel"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/bukhalo/nestjs-telegram-bot-api"
  },
  "types": "./dist/index.d.ts",
  "main": "./dist/index.js",
  "license": "MIT",
  "keywords": [
    "nest",
    "nestjs",
    "telegram",
    "bot"
  ],
  "scripts": {
    "build": "rimraf dist && tsc -p tsconfig.build.json",
    "format": "prettier --write \"src/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\"",
    "start": "node dist/main.js",
    "start:dev": "tsc-watch --onSuccess \"node -r tsconfig-paths/register dist/main.js\" --onFailure \"echo 'There was a problem compiling'\"",
    "start:debug": "tsc-watch --onSuccess \"node --inspect-brk -r tsconfig-paths/register dist/main.js\" --onFailure \"echo 'There was a problem compiling'\"",
    "lint": "tslint -p tsconfig.json -c tslint.json",
    "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",
    "test:e2e": "jest --config ./test/jest-e2e.json"
  },
  "dependencies": {
    "@nestjs/common": "^6.0.0",
    "@nestjs/core": "^6.0.0",
    "reflect-metadata": "^0.1.12",
    "rxjs": "^6.3.3"
  },
  "devDependencies": {
    "@commitlint/cli": "^9.1.1",
    "@commitlint/config-conventional": "^9.1.1",
    "@nestjs/testing": "^6.0.0",
    "@types/express": "^4.16.0",
    "@types/jest": "^26.0.4",
    "@types/node": "^14.0.23",
    "@types/supertest": "^2.0.7",
    "coveralls": "^3.0.5",
    "husky": "^4.2.5",
    "jest": "^25.2.3",
    "npm-check": "^5.9.0",
    "prettier": "^2.0.5",
    "rimraf": "^3.0.2",
    "supertest": "^4.0.2",
    "ts-jest": "25.5.1",
    "ts-node": "^8.3.0",
    "tsc-watch": "^4.2.9",
    "tsconfig-paths": "3.9.0",
    "tslint": "^6.1.2",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^3.5.3"
  }
}
