-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 917 Bytes
/
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
{
"name": "playwright-sample",
"version": "1.0.0",
"description": "Playwright automation framework skeleton with Typescript.",
"scripts": {
"test": "playwright test",
"run": "playwright test --headed",
"debug": "playwright test --debug",
"report": "playwright test --reporter=dot",
"test:firefox": "playwright test --project=firefox",
"test:chromium": "playwright test --project=chromium",
"test:safari": "playwright test --project=webkit",
"run:firefox": "playwright test --headed --project=firefox",
"run:chromium": "playwright test --headed --project=chromium",
"run:safari": "playwright test --headed --project=webkit"
},
"keywords": [
"playwright",
"test",
"automation",
"typescript",
"framework"
],
"author": "Vikash Chauhan",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.21.1",
"winston": "^3.7.2"
}
}