forked from ghoshasish99/Playwright-Cucumber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 856 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
31
32
33
34
35
{
"author": "Ashish Ghosh",
"description": "Playwright end-to-end test automation with Cucumber",
"devDependencies": {
"chai": "^4.2.0",
"cucumber": "^7.0.0-rc.0",
"cucumber-junit": "^1.7.1",
"cucumberjs-junitxml": "^1.0.0",
"playwright": "1.7.1"
},
"keywords": [
"cucumber",
"playwright",
"playwright automation",
"e2e",
"e2e tests",
"integration test",
"test automation",
"javascript"
],
"license": "",
"name": "playwright-cucumberjs",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"test": "cucumber-js --parallel 1 -f json:report/report.json && node report.js && cat report/report.json | npx cucumber-junit > report/junitreport.xml"
},
"version": "1.0.0",
"dependencies": {
"cucumber": "^7.0.0-rc.0",
"cucumber-html-reporter": "^5.3.0"
}
}