-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 780 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 780 Bytes
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
{
"name": "testing-microsoft365-playwright",
"description": "E2E Testing of Microsoft 365 solutions with Playwright",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "npx playwright test",
"generate:otp": "node ./scripts/get-otp.mjs",
"test:ui": "npx playwright test --ui",
"test:debug": "npx playwright test --debug"
},
"keywords": [
"testing",
"microsoft365",
"playwright",
"e2e"
],
"author": "Elio Struyf <elio@struyfconsulting.be>",
"license": "MIT",
"dependencies": {
"@estruyf/github-actions-reporter": "^1.8.0",
"@playwright/test": "^1.48.2",
"dotenv": "^16.3.1",
"otpauth": "^9.3.1",
"playwright-m365-helpers": "^0.0.2"
},
"devDependencies": {
"@types/node": "^20.14.12"
}
}