@microsoft/teamsfx 0.4.0-rc.0 → 0.4.1-alpha.0f7a905a.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +10 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/teamsfx",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1-alpha.0f7a905a.0",
|
|
4
4
|
"description": "Microsoft Teams Framework for Node.js and browser.",
|
|
5
5
|
"main": "dist/index.node.cjs.js",
|
|
6
6
|
"browser": "dist/index.esm2017.js",
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"lint:staged": "lint-staged",
|
|
19
19
|
"lint": "eslint \"**/*.ts\"",
|
|
20
20
|
"test": "npm run test:unit && npm run test:e2e",
|
|
21
|
-
"test:unit:browser": "
|
|
21
|
+
"test:unit:browser": "karma start --single-run --unit",
|
|
22
22
|
"test:unit:node": "nyc --no-clean -- mocha 'test/unit/{,!(browser)/**/}*.spec.ts' --file src/index.ts -r config/mocha.env.ts --config config/mocharc.node.js",
|
|
23
23
|
"test:unit": "npm run test:unit:node && npm run test:unit:browser",
|
|
24
24
|
"test:e2e:browser": "node test/e2e/scripts/DownloadSimpleAuth.js && concurrently --kill-others --success first \"node test/e2e/scripts/StartSimpleAuth.js\" \"npm run test:e2e:browser-case\"",
|
|
25
|
-
"test:e2e:browser-case": "
|
|
25
|
+
"test:e2e:browser-case": "karma start --single-run --integration",
|
|
26
26
|
"test:e2e:node": "nyc --reporter lcovonly -- mocha 'test/e2e/node/*.spec.ts' --file src/index.ts -r config/mocha.env.ts --config config/mocharc.node.js",
|
|
27
27
|
"test:e2e": "npm run test:e2e:node && npm run test:e2e:browser",
|
|
28
28
|
"ui-test": "mocha --no-timeouts -r test/mocha.env.ts -r ts-node/register test/ui/**/*.spec.ts --exit",
|
|
@@ -51,15 +51,17 @@
|
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@azure/identity": "^2.0.1",
|
|
53
53
|
"@azure/msal-node": "~1.1.0",
|
|
54
|
+
"@microsoft/microsoft-graph-client": "^3.0.1",
|
|
54
55
|
"axios": "^0.24.0",
|
|
55
|
-
"botbuilder": ">=4.15.0
|
|
56
|
-
"botbuilder-dialogs": ">=4.15.0
|
|
56
|
+
"botbuilder": ">=4.15.0 <5.0.0",
|
|
57
|
+
"botbuilder-dialogs": ">=4.15.0 <5.0.0",
|
|
58
|
+
"botframework-schema": ">=4.15.0 <5.0.0",
|
|
57
59
|
"jwt-decode": "^3.1.2",
|
|
60
|
+
"tedious": "^14.0.0",
|
|
58
61
|
"tslib": "^2.3.1",
|
|
59
62
|
"uuid": "^8.3.2"
|
|
60
63
|
},
|
|
61
64
|
"peerDependencies": {
|
|
62
|
-
"@microsoft/microsoft-graph-client": "^3.0.0",
|
|
63
65
|
"@microsoft/teams-js": "^1.9.0"
|
|
64
66
|
},
|
|
65
67
|
"devDependencies": {
|
|
@@ -70,7 +72,6 @@
|
|
|
70
72
|
"@istanbuljs/nyc-config-typescript": "^1.0.1",
|
|
71
73
|
"@microsoft/api-documenter": "^7.13.68",
|
|
72
74
|
"@microsoft/api-extractor": "^7.18.19",
|
|
73
|
-
"@microsoft/microsoft-graph-client": "^3.0.0",
|
|
74
75
|
"@microsoft/teams-js": "^1.9.0",
|
|
75
76
|
"@rollup/plugin-json": "^4.1.0",
|
|
76
77
|
"@shared/eslint-config": "file:../eslint-config",
|
|
@@ -87,10 +88,10 @@
|
|
|
87
88
|
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
|
88
89
|
"@typescript-eslint/parser": "^4.13.0",
|
|
89
90
|
"adm-zip": "^0.5.9",
|
|
91
|
+
"botbuilder-core": ">=4.15.0 <5.0.0",
|
|
90
92
|
"chai": "^4.3.4",
|
|
91
93
|
"chai-as-promised": "^7.1.1",
|
|
92
94
|
"concurrently": "^6.3.0",
|
|
93
|
-
"cross-env": "^7.0.3",
|
|
94
95
|
"dotenv": "^10.0.0",
|
|
95
96
|
"eslint": "^8.1.0",
|
|
96
97
|
"eslint-plugin-import": "^2.25.2",
|
|
@@ -122,7 +123,6 @@
|
|
|
122
123
|
"semver": "^7.3.5",
|
|
123
124
|
"sinon": "^12.0.1",
|
|
124
125
|
"source-map-loader": "^3.0.0",
|
|
125
|
-
"tedious": "^14.0.0",
|
|
126
126
|
"ts-loader": "^9.2.6",
|
|
127
127
|
"ts-node": "^10.4.0",
|
|
128
128
|
"typescript": "^4.4.4",
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"webpack": "^5.62.1",
|
|
131
131
|
"yargs": "^17.2.1"
|
|
132
132
|
},
|
|
133
|
-
"gitHead": "
|
|
133
|
+
"gitHead": "1d6465444e4b8d3c473b296e7968117098a2a867",
|
|
134
134
|
"publishConfig": {
|
|
135
135
|
"access": "public"
|
|
136
136
|
},
|