{
  "name": "@dlghq/dialog-bot-sdk",
  "version": "6.0.2",
  "description": "Dialog Bot SDK",
  "main": "lib/index.js",
  "scripts": {
    "test": "jest --testTimeout 30000",
    "predocs": "rm -rf docs/",
    "docs": "typedoc --excludePrivate --theme minimal --mode file --out docs src/index.ts",
    "postdocs": "buildbranch gh-pages docs",
    "prebuild": "rm -rf lib/",
    "build": "tsc",
    "postversion": "npm run release",
    "prerelease": "npm run build",
    "release": "git push --follow-tags",
    "postrelease": "npm publish",
    "format": "prettier --write */**/*.{ts,json,md}"
  },
  "author": "Nikita Gusakov <gusnkt@gmail.com>",
  "license": "Apache-2.0",
  "dependencies": {
    "@dlghq/dialog-api": "1.10.1",
    "@grpc/proto-loader": "0.5.3",
    "@types/bluebird": "3.5.29",
    "@types/long": "4.0.0",
    "@types/node-fetch": "2.5.4",
    "@types/pino": "5.8.13",
    "@types/uuid": "3.4.6",
    "backoff-rxjs": "6.3.3",
    "bluebird": "3.7.2",
    "dataclass": "1.2.0",
    "grpc": "1.24.2",
    "jimp": "0.8.5",
    "lodash": "4.17.15",
    "mime": "2.4.4",
    "node-fetch": "2.6.0",
    "pino": "5.13.6",
    "pino-pretty": "3.2.2",
    "rxjs": "6.5.3",
    "uuid": "3.3.3"
  },
  "devDependencies": {
    "@types/dotenv": "8.2.0",
    "@types/jest": "24.0.23",
    "buildbranch": "2.0.1",
    "dotenv": "8.2.0",
    "husky": "3.0.9",
    "jest": "24.9.0",
    "jest-junit": "8.0.0",
    "lint-staged": "9.4.3",
    "nodemon": "1.19.4",
    "prettier": "1.18.2",
    "ts-jest": "24.1.0",
    "ts-node": "8.4.1",
    "typedoc": "0.15.5",
    "typescript": "3.6.4"
  },
  "gh-pages-deploy": {
    "staticpath": "docs"
  },
  "prettier": {
    "singleQuote": true,
    "arrowParens": "always",
    "trailingComma": "all"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{ts,json,md}": [
      "prettier --write",
      "git add"
    ]
  }
}
