-
Notifications
You must be signed in to change notification settings - Fork 282
/
Copy pathpackage.json
131 lines (131 loc) · 5.49 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"private": true,
"name": "botbuilder-js",
"version": "4.13.0",
"workspaces": {
"packages": [
"libraries/*",
"testing/*",
"testing/browser-functional/browser-echo-bot",
"tools"
],
"generators": [
"generators/generator-botbuilder",
"generators/generator-botbuilder/generators/app/templates/*"
],
"nohoist": [
"**/@types/selenium-webdriver",
"adaptive-expressions/d3-format",
"botbuilder/filenamify",
"botbuilder-azure/p-map",
"botbuilder-azure-blobs/p-map",
"botbuilder/chai",
"botframework-streaming/chai"
],
"nohoistComments": {
"**/@types/selenium-webdriver": "This package is excluded from the root @types folder as it requires ES2015+, whereas some BotBuilder libraries support ES5+.",
"adaptive-expressions/d3-format": "This package is excluded because it's compiled as CJS by tsup as it's ESM-only.",
"botbuilder/filenamify": "This package is excluded because it's compiled as CJS by tsup as it's ESM-only.",
"botbuilder-azure/p-map": "This package is excluded because it's compiled as CJS by tsup as it's ESM-only.",
"botbuilder-azure-blobs/p-map": "This package is excluded because it's compiled as CJS by tsup as it's ESM-only.",
"botbuilder/chai": "This package is excluded because it's compiled as CJS by tsup as it's ESM-only.",
"botframework-streaming/chai": "This package is excluded because it's compiled as CJS by tsup as it's ESM-only."
}
},
"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",
"clean:node_modules": "rimraf --glob ./**/node_modules",
"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",
"package": "wsrun -e -t -l --if is-not-private --bin yarn pack",
"test": "npm-run-all build test:mocha 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",
"**/botbuilder-dialogs-adaptive-runtime-integration-restify/restify/send": "^0.19.0",
"**/restify/find-my-way": "^8.2.2"
},
"resolutionComments": {
"**/restify/find-my-way": "Remove the resolution when restify publishes a new version with the patch"
},
"devDependencies": {
"@azure/logger": "^1.1.4",
"@eslint/compat": "^1.2.0",
"@eslint/eslintrc": "^3.1.0",
"@microsoft/api-extractor": "^7.47.9",
"@standardlabs/downlevel-dts": "^0.7.5",
"@standardlabs/is-private": "^1.0.1",
"@types/lodash": "^4.17.7",
"@types/mocha": "^10.0.8",
"@types/node": "18.19.47",
"@types/sinon": "^17.0.3",
"applicationinsights": "^2.9.6",
"crypto-browserify": "^3.12.0",
"depcheck": "^1.4.7",
"esbuild-plugin-polyfill-node": "^0.3.0",
"https-browserify": "^1.0.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.3.1",
"eslint-plugin-lodash": "^8.0.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-security": "^3.0.1",
"mocha-junit-reporter": "^2.2.1",
"mocha": "^10.7.3",
"npm-run-all": "^4.1.5",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"shx": "^0.3.4",
"sinon": "^19.0.2",
"source-map-support": "^0.5.21",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typedoc-plugin-external-module-name": "^4.0.6",
"typedoc-plugin-markdown": "^4.2.7",
"typedoc": "^0.26.7",
"typescript": "~4.7",
"typescript-eslint": "^8.15.0",
"webpack-dev-server": "^5.1.0",
"wsrun": "^5.2.4"
},
"nyc": {
"exclude": [
"**/botframework*/**/generated/**",
"**/botbuilder*/**/generated/**",
"**/bot-integration-tests/**",
"**/adaptive-expressions/**/generated/**",
"**/botframework-luis/**",
"**/tests/**",
"**/tools/**",
"**/internal.*"
]
}
}