{
  "name": "envoy-node",
  "version": "2.0.0",
  "description": "",
  "keywords": [],
  "main": "dist/envoy-node.umd.js",
  "module": "dist/envoy-node.es5.js",
  "typings": "dist/types/envoy-node.d.ts",
  "files": [
    "dist"
  ],
  "author": "Yingyu Cheng <yingyu@tubi.tv>",
  "repository": {
    "type": "git",
    "url": "https://github.com/Tubitv/envoy-node.git"
  },
  "license": "MIT",
  "engines": {
    "node": ">=6.0.0"
  },
  "scripts": {
    "download-envoy": "if [ ! -f ./node_modules/.bin/envoy ]; then wget https://s3-us-west-1.amazonaws.com/tubi-public-binaries/envoy/v1.13.1/envoy -O node_modules/.bin/envoy && chmod +x node_modules/.bin/envoy; fi",
    "lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts' 'types/**/*.ts'",
    "prebuild": "rimraf dist",
    "build": "tsc && tsc --module commonjs --outDir dist/lib && rollup -c rollup.config.ts && typedoc --out dist/docs --target es6 --theme minimal --mode file src",
    "start": "tsc -w & rollup -c rollup.config.ts -w",
    "test": "jest --runInBand",
    "test:watch": "jest --watch --runInBand",
    "test:prod": "npm run lint && npm run test -- --coverage --no-cache",
    "deploy-docs": "ts-node tools/gh-pages-publish",
    "report-coverage": "cat ./coverage/lcov.info | coveralls",
    "commit": "git-cz",
    "semantic-release": "semantic-release",
    "semantic-release-prepare": "ts-node tools/semantic-release-prepare"
  },
  "lint-staged": {
    "{src,test}/**/*.ts": [
      "prettier --write",
      "git add"
    ]
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    },
    "validate-commit-msg": {
      "types": "conventional-commit-types",
      "helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
    }
  },
  "jest": {
    "transform": {
      ".ts": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "testRegex": "test/[\\w-\\.]+\\.test\\.ts",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/test/"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 90,
        "functions": 90,
        "lines": 95,
        "statements": 95
      }
    },
    "collectCoverage": true,
    "testEnvironment": "node"
  },
  "devDependencies": {
    "@grpc/proto-loader": "^0.5.4",
    "@types/jest": "^25.2.3",
    "@types/node": "^14.0.9",
    "@types/node-fetch": "^2.5.7",
    "@types/protobufjs": "^6.0.0",
    "@types/request": "^2.48.5",
    "colors": "^1.4.0",
    "commitizen": "^4.1.2",
    "coveralls": "^3.1.0",
    "cross-env": "^7.0.2",
    "cz-conventional-changelog": "^3.2.0",
    "husky": "^4.2.5",
    "jest": "^26.0.1",
    "lint-staged": "^10.2.7",
    "lodash.camelcase": "^4.3.0",
    "prettier": "^2.0.5",
    "prompt": "^1.0.0",
    "replace-in-file": "^6.0.0",
    "rimraf": "^3.0.2",
    "rollup": "^2.12.1",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-json": "^4.0.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "rollup-plugin-sourcemaps": "^0.6.2",
    "semantic-release": "^17.0.8",
    "ts-jest": "^26.1.0",
    "ts-node": "^8.10.2",
    "tslint": "^6.1.2",
    "tslint-config-prettier": "^1.18.0",
    "tslint-config-standard": "^9.0.0",
    "typedoc": "^0.17.7",
    "typedoc-plugin-internal-external": "^2.1.1",
    "typescript": "^3.9.3",
    "validate-commit-msg": "^2.14.0"
  },
  "dependencies": {
    "async_hooks": "^1.0.0",
    "@grpc/grpc-js": "^1.8.0",
    "node-fetch": "^2.6.0",
    "request": "^2.88.2"
  },
  "husky": {
    "hooks": {
      "commit-msg": "validate-commit-msg",
      "pre-commit": "lint-staged",
      "pre-push": "npm run test:prod && npm run build"
    }
  }
}
