{
  "name": "teamsdev-client",
  "version": "1.1.1",
  "description": "",
  "main": "dist/index.js",
  "module": "dist-esm/src/index.js",
  "browser": {
    "./dist-esm/src/core/cache.js": "./dist-esm/src/core/cache.browser.js",
    "./dist-esm/src/credential/onBehalfOfUserCredential.js": "./dist-esm/src/credential/onBehalfOfUserCredential.browser.js",
    "./dist-esm/src/core/sqlConnector.js": "./dist-esm/src/core/sqlConnector.browser.js",
    "./dist-esm/src/credential/teamsUserCredential.js": "./dist-esm/src/credential/teamsUserCredential.browser.js",
    "./dist-esm/src/credential/m365TenantCredential.js": "./dist-esm/src/credential/m365TenantCredential.browser.js",
    "./dist-esm/src/bot/teamsBotSsoPrompt.js": "./dist-esm/src/bot/teamsBotSsoPrompt.browser.js"
  },
  "types": "types/teamsdev-client.d.ts",
  "scripts": {
    "build:browser": "tsc -p . && cross-env ONLY_BROWSER=true rollup -c 2>&1",
    "build:node": "tsc -p . && cross-env ONLY_NODE=true rollup -c 2>&1",
    "build:test": "tsc -p . && rollup -c rollup.test.config.js 2>&1",
    "build": "tsc -p . && api-extractor run --local",
    "build:api-markdown": "tsc -p . && api-extractor run --local && api-documenter markdown -i temp -o doc",
    "check-format": "prettier --list-different --config ./.prettierrc.json --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples/**/*.ts\" \"*.{js,json}\"",
    "clean": "rimraf dist dist-* temp types *.tgz *.log",
    "format": "prettier --write --config ./.prettierrc.json --ignore-path ./.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples/**/*.ts\" \"*.{js,json}\"",
    "integration-test:browser": "karma start --single-run --glob=./dist-test/index.integration.browser.js",
    "integration-test:node": "mocha -r test/mocha.env.ts -r ts-node/register \"./test/integration/node/*.spec.ts\" --timeout 100000 --exit --reporter ./tools/mocha-multi-reporter.js",
    "test:integration": "npm run integration-test:node && npm run integration-test:browser",
    "lint:staged": "lint-staged",
    "lint": "eslint \"**/*.ts\"",
    "prebuild": "npm run clean",
    "test:browser": "npm run build:test && npm run unit-test:browser && npm run integration-test:browser",
    "test:node": "npm run build:test && npm run unit-test:node && npm run integration-test:node",
    "test": "npm run test:unit && npm run test:integration",
    "unit-test:browser": "karma start --single-run --glob=./dist-test/index.unit.browser.js",
    "unit-test:node": "mocha dist-test/index.node.js --reporter ./tools/mocha-multi-reporter.js",
    "test:unit": "npm run build:test && npm run unit-test:node && npm run unit-test:browser",
    "e2e-test": "mocha --no-timeouts -r test/mocha.env.ts -r ts-node/register test/e2e/**/*.spec.ts --exit"
  },
  "files": [
    "dist/",
    "dist-esm/src/",
    "types/teamsdev-client.d.ts"
  ],
  "repository": "https://github.com/",
  "engines": {
    "node": ">=10.0.0"
  },
  "keywords": [
    "typescript"
  ],
  "author": "",
  "license": "MIT",
  "homepage": "https://github.com/",
  "sideEffects": false,
  "dependencies": {
    "@azure/core-auth": "^1.1.3",
    "@azure/core-http": "^1.2.0",
    "@azure/identity": "^1.3.0",
    "@azure/msal-node": "^1.0.1",
    "@microsoft/microsoft-graph-client": "^2.2.1",
    "@microsoft/teams-js": "^1.9.0",
    "axios": "^0.21.1",
    "botbuilder-core": ">=4.9.3",
    "botbuilder-dialogs": ">=4.9.3",
    "events": "^3.0.0",
    "jwt-decode": "^3.1.2",
    "memory-cache": "^0.2.0",
    "tedious": "^9.2.1",
    "tslib": "^2.0.0",
    "uuid": "^8.3.2"
  },
  "devDependencies": {
    "@azure/arm-sql": "^7.0.2",
    "@azure/ms-rest-nodeauth": "^3.0.6",
    "@commitlint/cli": "^12.0.1",
    "@commitlint/config-conventional": "^12.0.1",
    "@microsoft/api-documenter": "^7.12.4",
    "@microsoft/api-extractor": "7.7.11",
    "@rollup/plugin-commonjs": "^13.0.2",
    "@rollup/plugin-json": "^4.0.0",
    "@rollup/plugin-multi-entry": "^3.0.0",
    "@rollup/plugin-node-resolve": "^8.0.0",
    "@rollup/plugin-replace": "^2.2.0",
    "@shared/eslint-config": "file:../eslint-config",
    "@types/atob": "^2.1.2",
    "@types/babel__core": "^7.1.12",
    "@types/chai": "^4.1.6",
    "@types/chai-as-promised": "^7.1.0",
    "@types/fs-extra": "^9.0.11",
    "@types/memory-cache": "^0.2.1",
    "@types/mocha": "^7.0.2",
    "@types/node": "^12.11.7",
    "@types/sinon": "^9.0.10",
    "@types/tedious": "^4.0.3",
    "@types/url-join": "^4.0.0",
    "@types/uuid": "^8.3.0",
    "@typescript-eslint/eslint-plugin": "^4.14.0",
    "@typescript-eslint/parser": "^4.13.0",
    "chai": "^4.2.0",
    "chai-as-promised": "^7.1.1",
    "cross-env": "^7.0.2",
    "dotenv": "^8.2.0",
    "eslint": "^7.15.0",
    "eslint-plugin-no-only-tests": "^2.4.0",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-tsdoc": "^0.2.10",
    "fs-extra": "^9.1.0",
    "husky": "^4.3.8",
    "inherits": "^2.0.3",
    "isomorphic-fetch": "^3.0.0",
    "jwt-builder": "^1.1.0",
    "karma": "^5.1.0",
    "karma-chrome-launcher": "^3.0.0",
    "karma-coverage": "^2.0.0",
    "karma-edge-launcher": "^0.4.2",
    "karma-env-preprocessor": "^0.1.1",
    "karma-firefox-launcher": "^1.1.0",
    "karma-ie-launcher": "^1.0.0",
    "karma-junit-reporter": "^2.0.1",
    "karma-mocha": "^2.0.1",
    "karma-mocha-reporter": "^2.2.5",
    "lint-staged": "^10.5.4",
    "mocha": "^7.1.1",
    "mocha-junit-reporter": "^1.18.0",
    "mocked-env": "^1.3.2",
    "nyc": "^14.0.0",
    "playwright-chromium": "^1.10.0",
    "prettier": "^1.16.4",
    "puppeteer": "^1.11.0",
    "rimraf": "^3.0.0",
    "rollup": "^2.41.0",
    "rollup-plugin-sourcemaps": "^0.4.2",
    "rollup-plugin-terser": "^5.1.1",
    "sinon": "^9.2.4",
    "ts-node": "^8.3.0",
    "typescript": "^4.1.2",
    "url-join": "^4.0.1",
    "util": "^0.12.1"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
    }
  },
  "lint-staged": {
    "**/*.ts": [
      "eslint"
    ]
  }
}
