{
  "name": "adaptive-expressions",
  "author": "Microsoft Corp.",
  "description": "Common Expression Language",
  "version": "4.23.3",
  "license": "MIT",
  "keywords": [
    "botbuilder",
    "botframework",
    "expression"
  ],
  "bugs": {
    "url": "https://github.com/Microsoft/botbuilder-js/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Microsoft/botbuilder-js.git"
  },
  "main": "lib/index.js",
  "browser": "lib/browser.js",
  "types": "lib/index.d.ts",
  "typesVersions": {
    "<5.6": {
      "*": [
        "types/ts5.6/*"
      ]
    }
  },
  "dependencies": {
    "@microsoft/recognizers-text-data-types-timex-expression": "~1.3.1",
    "@types/atob-lite": "^2.0.2",
    "@types/btoa-lite": "^1.0.2",
    "@types/lru-cache": "^5.1.1",
    "antlr4ts": "0.5.0-alpha.4",
    "atob-lite": "^2.0.0",
    "big-integer": "^1.6.52",
    "@types/xmldom": "^0.1.34",
    "btoa-lite": "^1.0.0",
    "d3-format": "^3.1.0",
    "dayjs": "^1.11.13",
    "jspath": "^0.4.0",
    "lodash": "^4.17.21",
    "lru-cache": "^5.1.1",
    "uuid": "^10.0.0",
    "fast-xml-parser": "^4.4.1",
    "@xmldom/xmldom": "^0.8.6",
    "xpath": "^0.0.34"
  },
  "devDependencies": {
    "@types/jspath": "^0.4.2",
    "antlr4ts-cli": "0.5.0-alpha.4",
    "typescript": "~4.8"
  },
  "scripts": {
    "build": "npm-run-all build:src build:tests build:browser",
    "build:src": "tsc -b",
    "build:tests": "tsc -p tests/tsconfig.json",
    "build:browser": "npm-run-all build:browser:clean build:browser:run",
    "build:browser:clean": "rimraf --glob lib/browser.*",
    "build:browser:run": "tsup --config ../../tsup/browser.config.ts",
    "clean": "rimraf lib vendors tsconfig.tsbuildinfo",
    "depcheck": "depcheck --config ../../.depcheckrc --ignores @types/xmldom,d3-format,sinon",
    "build-docs": "typedoc --theme markdown --entryPoint adaptive-expressions --excludePrivate --includeDeclarations --ignoreCompilerErrors --module amd --out ..\\..\\doc\\adaptive-expressions .\\lib\\index.d.ts --hideGenerator --name \"Bot Builder SDK - Expression\" --readme none",
    "test": "yarn build && mocha tests --timeout 60000",
    "test:compat": "api-extractor run --verbose",
    "lint": "eslint .",
    "prebuild": "tsup ./node_modules/d3-format/src/*.js --format cjs --out-dir vendors/d3-format --clean --sourcemap",
    "antlr-build-expression": "antlr4ts src/parser/ExpressionAntlrLexer.g4 -o src/parser/generated && antlr4ts src/parser/ExpressionAntlrParser.g4 -visitor -o src/parser/generated",
    "antlr-build-commonregex": "antlr4ts src/CommonRegex.g4 -o src/generated -visitor"
  },
  "files": [
    "lib",
    "src",
    "types",
    "vendors"
  ]
}