-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
53 lines (53 loc) · 2.02 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
{
"name": "starter-playwright",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf allure-results && rimraf allure-report && rimraf test-results && rimraf playwright-report && rimraf junit-results && rimraf lighthouse",
"api-example": "npx playwright test tests/api.basic.example.spec.ts --project=chromium",
"data-mgmt": "npx playwright test tests/api.data.example.spec.ts --project=chromium",
"api-ui": "npm run clean && npx playwright test tests/api.ui.spec.ts --project=chromium",
"play-report": "npx playwright show-report",
"allure-report": "allure generate ./allure-results --clean",
"open-report": "npm run allure-report && allure open ./allure-report",
"firefox": "npm run clean && npx playwright test --project=firefox",
"chromium": "npx playwright test --project=chromium",
"a11y": "npm run clean && npx playwright test tests/a11y.lighthouse.spec.ts --project=chromium",
"webkit": "npx playwright test --project=webkit",
"test": "npm run clean && npx playwright test --project=chromium",
"test-head": "npm run clean && npx playwright test --headed",
"reinstall": "npx playwright install",
"install-deps": "npx playwright install-deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/charlyautomatiza/starter-playwright.git"
},
"keywords": [
"playwright",
"playwright-test",
"allure report",
"web test automation"
],
"author": "CharlyAutomatiza",
"license": "CC0",
"bugs": {
"url": "https://github.com/charlyautomatiza/starter-playwright/issues"
},
"homepage": "https://github.com/charlyautomatiza/starter-playwright#readme",
"devDependencies": {
"@playwright/test": "^1.49.0",
"allure-commandline": "^2.32.0",
"allure-playwright": "^3.0.6",
"lighthouse": "^12.2.2",
"playwright-lighthouse": "^4.0.0",
"typescript": "^5.6.3"
},
"dependencies": {
"@faker-js/faker": "^9.2.0",
"dotenv": "^16.4.5",
"rimraf": "^6.0.1"
}
}