-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.76 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "playwright-cucumber-framework",
"version": "1.0.0",
"description": "Starter project to write and debug cucumber-js features with Playwright",
"main": "index.js",
"scripts": {
"all": "cucumber-js features/*.feature",
"pretest": "npx ts-node src/utils/setup/init.ts",
"test": "cross-env ENV=stable HEADLESS=false cucumber-js --tags=@all",
"testsauce": "saucectl run --region us-west-1 --build playwright-build-VDO5T",
"test:parallel": "cucumber-js --parallel=2",
"allure": "allure serve reports/allure-results",
"clean-reports": "allure generate --clean",
"build": "rimraf build && tsc && npm run cucumber-check",
"cucumber-check": "cucumber-js features/**/*.feature --dry-run --require env/set-environment-variables.ts --require world/custom-world.ts --require step-definitions/**/*.ts --require hooks/**/*.ts --require-module ts-node/register --format-options \"{\\\"snippetInterface\\\": \\\"async-await\\\"}\" --format summary --format progress --format progress-bar --publish-quiet",
"eslint-fix": "eslint ./ --ext .js,.ts,.tsx --fix",
"eslint-init": "eslint --init",
"lint": "eslint ./ --ext .js,.ts,.tsx",
"only": "npx cucumber-js --tags @ExactSearch",
"report": "start reports/report.html",
"snippets": "cucumber-js features/**/*.feature --dry-run --format snippets",
"steps-usage": "cucumber-js features/**/*.feature --dry-run",
"rerun-failed": "cucumber-js @failedrerun.txt",
"codegen": "npx playwright codegen https://google.com"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "Github",
"url": ""
},
"author": "Prajwal Acharya",
"license": "MIT",
"dependencies": {
"@cucumber/cucumber": "9.1.2",
"@cucumber/messages": "^22.0.0",
"@cucumber/pretty-formatter": "1.0.0",
"@playwright/test": "1.35.0",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/expect": "24.3.0",
"@types/node": "20.2.5",
"allure-commandline": "^2.22.1",
"allure-cucumberjs": "^2.4.0",
"axe-html-reporter": "^2.2.3",
"axe-playwright": "^1.2.3",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"dotenv": "^16.1.4",
"fs-extra": "11.1.1",
"playwright": "^1.35.0",
"rimraf": "5.0.1",
"saucectl": "^0.146.0",
"test-results-reporter": "^1.0.17",
"ts-node": "10.9.1",
"typescript": "5.1.3",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"cross-env": "^7.0.3",
"dotenv": "^16.1.4",
"eslint": "^8.42.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"winston": "^3.8.2"
}
}