forked from microsoft/botbuilder-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 4.28 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
{
"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: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",
"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": {
"adal-node": "0.2.3",
"async": "3.2.3",
"minimist": "^1.2.6",
"mixme": "0.5.2",
"node-fetch": "2.6.7",
"underscore": "1.13.1",
"json-schema": "0.4.0",
"jsonwebtoken": "9.0.0",
"@microsoft/recognizers-text-number": "~1.3.1",
"@xmldom/xmldom": "0.8.6",
"**/botbuilder-azure/@azure/core-auth/@azure/core-tracing": "1.0.0-preview.9",
"**/request/tough-cookie": "^4.1.3",
"**/request-promise/tough-cookie": "^4.1.3",
"**/request-promise-native/tough-cookie": "^4.1.3"
},
"devDependencies": {
"@azure/logger": "^1.0.2",
"@azure/ms-rest-js": "^2.7.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",
"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",
"tinyify": "^3.0.0",
"ts-node": "^10.0.0",
"typedoc": "^0.19.2",
"typedoc-plugin-external-module-name": "^4.0.3",
"typedoc-plugin-markdown": "^3.0.11",
"typescript": "^4.1.0",
"wsrun": "^5.2.4"
},
"nyc": {
"exclude": [
"**/botframework*/**/generated/**",
"**/botbuilder*/**/generated/**",
"**/bot-integration-tests/**",
"**/adaptive-expressions/**/generated/**",
"**/botframework-luis/**",
"**/tests/**",
"**/tools/**",
"**/internal.*"
]
}
}