botbuilder-js/package.json

114 строки
4.8 KiB
JSON

{
"private": true,
"name": "botbuilder-js",
"version": "4.13.0",
"workspaces": [
"libraries/*",
"libraries/functional-tests/dialogToDialog/*",
"libraries/testskills/*",
"testing/*",
"tools",
"transcripts"
],
"scripts": {
"browser-functional-test": "yarn workspace browser-functional-tests test",
"build": "wsrun -e -m -t build",
"build-docs": "wsrun -e -m build-docs",
"clean": "wsrun -m clean",
"depcheck": "wsrun -m -l depcheck",
"dev:link": "wsrun --if is-not-private --bin=yarn link",
"dev:unlink": "wsrun --if is-not-private --bin=yarn unlink",
"functional-test": "yarn build && yarn workspace functional-tests test",
"lint": "wsrun -m -l lint --max-warnings=0",
"package": "wsrun -e -t -l --if is-not-private --bin yarn pack",
"test": "npm-run-all build test:mocha test:runtime test:runtime test:mocha:transcripts test:nyc:report",
"test:compat": "wsrun -e -m -t test:compat",
"test:consumer": "yarn workspace consumer-test test",
"test:devops": "npm-run-all test:mocha:junit test:nyc:cobertura",
"test:github": "npm-run-all test:mocha:min test:runtime:min test:nyc:lcov",
"test:mocha": "nyc --silent mocha \"libraries/@(adaptive*|bot*)/tests/**/*.test.js\" --exit --check-leaks",
"test:mocha:junit": "yarn test:mocha --reporter mocha-junit-reporter --reporter-options includePending=true",
"test:mocha:min": "yarn test:mocha --reporter dot",
"test:mocha:transcripts": "yarn workspace transcript-tests test",
"test:nyc:cobertura": "nyc report --reporter=cobertura",
"test:nyc:lcov": "nyc report --reporter=text-lcov > .lcov.info",
"test:nyc:report": "nyc report",
"test:orchestrator": "yarn workspace botbuilder-ai-orchestrator test",
"test:repoutils": "yarn workspace botbuilder-repo-utils test",
"test:runtime": "wsrun -m -p \"botbuilder-dialogs-adaptive-runtime*\" -t test",
"test:runtime:min": "wsrun -m -p \"botbuilder-dialogs-adaptive-runtime*\" -t test:min",
"test:schemas": "mocha libraries/botbuilder-dialogs-declarative/tests/schemaMergeTest.js --exit --bail",
"update-versions": "yarn workspace botbuilder-repo-utils update-versions"
},
"resolutions": {
"@microsoft/recognizers-text-number": "~1.3.1",
"@types/ramda": "0.26.0",
"babel-traverse": "npm:@babel/traverse@^7.24.7",
"lodash.pick": "file:overrides/lodash.pick",
"**/nightwatch/ejs": "^3.1.10",
"**/nightwatch/semver": "^7.5.2",
"**/botbuilder-dialogs-adaptive-runtime-integration-restify/restify/send": "^0.19.0"
},
"resolutionComments": {
"lodash.pick": "Remove the resolution and override project when supporting Node >=18. Because we can't update nightwatch due to jsdom requires node >= 18. https://github.com/lodash/lodash/issues/5809#issuecomment-1910560681",
"**/nightwatch/ejs": "Remove the resolution when supporting Node >=18. Because we can't update nightwatch due to jsdom requires node >= 18. https://github.com/lodash/lodash/issues/5809#issuecomment-1910560681",
"**/nightwatch/semver": "Remove the resolution when nightwatch is updated to a latest version"
},
"devDependencies": {
"@types/node": "18.19.47",
"@azure/logger": "^1.0.2",
"@microsoft/api-extractor": "^7.38.2",
"@standardlabs/downlevel-dts": "^0.7.5",
"@standardlabs/is-private": "^1.0.1",
"@types/lodash": "^4.14.134",
"@types/mocha": "^5.2.7",
"@types/sinon": "^9.0.11",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"applicationinsights": "^1.7.5",
"browserify": "^17.0.0",
"depcheck": "^1.4.7",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.7",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-security": "^1.4.0",
"exorcist": "^2.0.0",
"mocha": "^10.4.0",
"mocha-junit-reporter": "^2.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"replace-in-file": "^4.1.0",
"rimraf": "^3.0.2",
"shx": "^0.3.3",
"sinon": "^9.2.4",
"source-map-support": "^0.5.19",
"sponge": "^0.1.0",
"ts-node": "^10.0.0",
"typedoc": "^0.24.8",
"typedoc-plugin-external-module-name": "^4.0.6",
"typedoc-plugin-markdown": "^3.11.17",
"typescript": "~4.7",
"wsrun": "^5.2.4",
"esmify": "^2.1.1",
"babelify": "^10.0.0"
},
"nyc": {
"exclude": [
"**/botframework*/**/generated/**",
"**/botbuilder*/**/generated/**",
"**/bot-integration-tests/**",
"**/adaptive-expressions/**/generated/**",
"**/botframework-luis/**",
"**/tests/**",
"**/tools/**",
"**/internal.*"
]
}
}