-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 928 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_automation",
"version": "1.0.0",
"description": "This repo have the basic project structure for Playwright with typescript and cucumber BDD frameworks",
"main": "index.js",
"scripts": {
"test": "cucumber-js test",
"test:tags": "cucumber-js --tags @test1, @test2",
"test:multiTags": "cucumber-js --tags \"@test1 or @test2\"",
"test:htmlReport": "npx ts-node src/support/report.ts",
"test:failed": "cucumber-js -p rerun @rerun.txt"
},
"keywords": [],
"author": "gunaseelan palanisamy",
"license": "ISC",
"devDependencies": {
"@cucumber/cucumber": "^10.6.0",
"@playwright/test": "^1.44.0",
"@types/node": "^20.12.10",
"multiple-cucumber-html-reporter": "^3.6.2"
},
"dependencies": {
"dotenv": "^16.4.5",
"moment": "^2.30.1",
"playwright": "^1.42.1",
"randomstring": "^1.3.0",
"ts-node": "^10.9.2",
"winston": "^3.12.0"
}
}