botbuilder-js/package.json

108 строки
4.0 KiB
JSON
Исходник Обычный вид История

{
"private": true,
"name": "botbuilder-js",
2021-03-30 18:54:42 +03:00
"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: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:nyc:cobertura": "nyc report --reporter=cobertura",
"test:nyc:lcov": "nyc report --reporter=text-lcov > .lcov.info",
"test:nyc:report": "nyc report",
2021-06-02 19:48:20 +03:00
"test:orchestrator": "yarn workspace botbuilder-ai-orchestrator test",
"test:repoutils": "yarn workspace botbuilder-repo-utils test",
2021-06-02 19:48:20 +03:00
"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": {
"async": "3.2.3",
2022-04-29 16:17:13 +03:00
"minimist": "^1.2.6",
"mixme": "0.5.2",
"node-fetch": "2.6.7",
"underscore": "1.13.1"
},
"devDependencies": {
port:[#3906] Port Managed Identity (MSI) + Single Tenant from DotNet (#3923) * Port MSI and SingleTenant support * Add unit tests for botframework-connector * Restore yarn.lock * Test nohoist for azure/identity * Fix dependencies issues * Connect ManagedIdentityAuthenticator.getToken * Add remaining tests and fix the already added * Update yarn.lock * Fixing depcheck errors in PR * Fixing depcheck, adjusting versions and ignores * Fix parity port with DotNet causing SingleTenant to fail at authentication * Apppliying feedback * Applying fixes for tests, lint and zod related feedback * Fixing asserts import and extra parameter * Fix tests failing due to wrong link and fixing case-wise comparison failures * Fixing lint * Add ignore-casing to MicrosoftAppType based on DotNet code and add unit tests to validate * Improve issuer array assignation * fix: export ms-rest-js type and remove added dep * Improve issuers, assertions, unit tests and many other small changes * fix: skillValidation validTokenIssuers * Update @azure/identity to 2.0.0-beta.6 * Change logical operator for nullable operator * Improve SingleTenant and MSI implementation from feedback * fix: IJwtTokenProviderFactory * fix: reintroduced typo Co-authored-by: CeciliaAvila <cecilia.avila@southworks.com> Co-authored-by: Martin Luccanera <18757147+MartinLuccanera@users.noreply.github.com> Co-authored-by: Cecilia Avila <44245136+ceciliaavila@users.noreply.github.com> Co-authored-by: Josh Gummersall <jgummersall@microsoft.com>
2021-09-27 22:05:09 +03:00
"@azure/logger": "^1.0.2",
"@azure/ms-rest-js": "2.6.0",
"@microsoft/api-extractor": "^7.15.1",
"@standardlabs/downlevel-dts": "^0.7.5",
"@standardlabs/is-private": "^1.0.1",
"@types/jsonwebtoken": "7.2.8",
"@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.1",
"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": "^1.0.1",
"mocha": "^6.2.3",
"mocha-junit-reporter": "^2.0.0",
"ms-rest-azure": "^2.6.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"read-text-file": "^1.1.0",
"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",
"tinyify": "^3.0.0",
"ts-node": "^9.0.0",
"typedoc": "^0.19.2",
"typedoc-plugin-external-module-name": "^4.0.3",
"typedoc-plugin-markdown": "^3.0.11",
"typescript": "^4.0.5",
"wsrun": "^5.2.4"
},
"nyc": {
"exclude": [
"**/botframework*/**/generated/**",
"**/botbuilder*/**/generated/**",
"**/bot-integration-tests/**",
"**/adaptive-expressions/**/generated/**",
"**/botframework-luis/**",
"**/tests/**",
"**/tools/**",
"**/internal.*"
]
}
2020-03-23 11:20:51 +03:00
}