-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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
{
"name": "codeceptjs-playwright-typescript-boilerplate",
"version": "1.0.0",
"description": "CodeceptJS Playwright Typescript Boilerplate",
"scripts": {
"test": "npx codeceptjs run tests/bear-plus.spec.ts --steps",
"test:chrome": "npx codeceptjs run-workers 2 desktop:chromium",
"test:firefox": "npx codeceptjs run-workers 2 desktop:firefox",
"test:safari": "npx codeceptjs run-workers 2 desktop:webkit",
"report:generate": "allure generate ./output/allure-raw -o ./output/allure-report --clean",
"report:patch": "allure-patch ./output/allure-report",
"report:open": "allure open ./output/allure-report"
},
"keywords": [
"qa",
"e2e",
"test",
"automation",
"codeceptjs",
"playwright",
"typescript"
],
"author": "Ruslan Kazakov <ruslan@bear.plus>",
"license": "ISC",
"engines": {
"node": ">=18.17.0"
},
"devDependencies": {
"@types/node": "^20.5.0",
"allure-codeceptjs": "^2.9.2",
"allure-commandline": "^2.24.1",
"allure-patch": "^1.0.3",
"axe-playwright": "^1.2.3",
"codeceptjs": "^3.5.5",
"codeceptjs-a11y-helper": "^1.5.3",
"dotenv": "^16.3.1",
"playwright": "^1.38.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}