-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.52 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
{
"name": "demo-playwright-ts-cucumber-pom-api",
"version": "1.0.0",
"description": "Playwright Cucumber TS framework",
"main": "index.js",
"scripts": {
"allure:generate": "npx allure generate ./allure-results -o allure-report --clean",
"allure:open": "npx allure open ./allure-report",
"allure:serve": "npx allure serve",
"allure:clean": "rm -r ./allure-report ./allure-results || true",
"pretest": "npx ts-node src/helper/init.ts",
"test": "cross-env ENV=prod cucumber-js test || true",
"posttest": "npx ts-node src/helper/report.ts",
"test:failed": "cucumber-js -p rerun @rerun.txt",
"test:api": "npx playwright test src/api-test",
"test:ui": "npx playwright test src/default-ui-test",
"test:pom": "npx playwright test src/page-object-model",
"test:report": "npx playwright show-report",
"test:report:clean": "rm -r ./playwright-report ./test-results || true",
"playwright:version": "npx playwright --version",
"playwright:install":"npx playwright install --with-deps"
},
"keywords": [
"cucumber",
"cucumber - TS",
"playwright-cucumber"
],
"author": "Kanak",
"license": "ISC",
"devDependencies": {
"@cucumber/cucumber": "^9.0.1",
"@playwright/test": "^1.40.1",
"allure-commandline": "^2.21.0",
"allure-playwright": "^2.10.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"fs-extra": "^11.1.1",
"multiple-cucumber-html-reporter": "^3.3.0",
"playwright": "^1.40.1",
"ts-node": "^10.9.1",
"winston": "^3.11.0"
}
}