UNPKG

botbuilder-dialogs-adaptive

Version:

Rule system for the Microsoft BotBuilder dialog system.

74 lines 2.79 kB
{ "name": "botbuilder-dialogs-adaptive", "author": "Microsoft Corp.", "description": "Rule system for the Microsoft BotBuilder dialog system.", "version": "4.22.1-preview", "preview": true, "license": "MIT", "keywords": [ "botbuilder", "botframework", "bots", "chatbots" ], "bugs": { "url": "https://github.com/Microsoft/botbuilder-js/issues" }, "repository": { "type": "git", "url": "https://github.com/Microsoft/botbuilder-js.git" }, "main": "./lib/index.js", "types": "./lib/index.d.ts", "typesVersions": { "<3.9": { "*": [ "_ts3.4/*" ] } }, "dependencies": { "@microsoft/recognizers-text": "~1.1.4", "@microsoft/recognizers-text-choice": "~1.1.4", "@microsoft/recognizers-text-date-time": "~1.1.4", "@microsoft/recognizers-text-number": "~1.3.1", "@microsoft/recognizers-text-number-with-unit": "~1.1.4", "@microsoft/recognizers-text-sequence": "~1.1.4", "@microsoft/recognizers-text-suite": "1.1.4", "adaptive-expressions": "4.22.1", "botbuilder": "4.22.1", "botbuilder-core": "4.22.1", "botbuilder-dialogs": "4.22.1", "botbuilder-dialogs-adaptive-runtime-core": "4.22.1-preview", "botbuilder-dialogs-declarative": "4.22.1-preview", "botbuilder-lg": "4.22.1", "botframework-connector": "4.22.1", "lodash": "^4.17.21", "node-fetch": "^2.6.7" }, "devDependencies": { "@types/node-fetch": "^2.5.3" }, "scripts": { "build": "npm-run-all build:src build:tests", "build-docs": "typedoc --theme markdown --entryPoint botbuilder-dialogs-adaptive --excludePrivate --includeDeclarations --ignoreCompilerErrors --module amd --out ..\\..\\doc\\botbuilder-dialogs .\\lib\\index.d.ts --hideGenerator --name \"Bot Builder SDK - Dialogs\" --readme none", "build:src": "tsc -b", "build:tests": "tsc -p tests/tsconfig.json", "clean": "rimraf _ts3.4 lib tsconfig.tsbuildinfo", "depcheck": "depcheck --config ../../.depcheckrc --ignores botbuilder-dialogs-adaptive-testing,mocha,sinon", "lint": "eslint . --ext .js,.ts", "postbuild": "downlevel-dts lib _ts3.4/lib --checksum", "test": "yarn build && nyc mocha tests/", "test:compat": "api-extractor run --verbose", "postinstall": "npm run text-suite && npm run date-time && npm run number-with-unit", "text-suite": "npx rimraf ../@microsoft/recognizers-text-suite/node_modules/@microsoft/recognizers-text-number", "date-time": "npx rimraf ../@microsoft/recognizers-text-date-time/node_modules/@microsoft/recognizers-text-number", "number-with-unit": "npx rimraf ../@microsoft/recognizers-text-number-with-unit/node_modules/@microsoft/recognizers-text-number" }, "files": [ "_ts3.4", "lib", "schemas", "src" ] }