-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.56 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
{
"name": "cucumber-playwright-automation",
"version": "1.0.0",
"keywords": [
"testing",
"bdd",
"cucumber",
"gherkin",
"tests",
"uiautomation",
"automation",
"playwright",
"open-source",
"automation-ui"
],
"description": "ui test automation using cucumberjs & playwright",
"homepage": "https://github.com/shrinidhimanchi",
"scripts": {
"startUpScript": "node ui-tests/prerequisites/startUpScript.js",
"executeShellScript": "chmod 755 ui-tests/cli/runAcceptanceTest.sh",
"cucumber-test": "DEBUG=pw:api ./node_modules/.bin/cucumber-js --profile default --tags @test ui-tests/features/*.feature; npm run cucumber-report",
"cucumber-report": "node ui-tests/cucumber-report/report.js"
},
"author": {
"name": "Shrinidhi Manchi <[email protected]>"
},
"contributors": [
"shrinidhimanchi <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/shrinidhimanchi/ubank-ui-test"
},
"license": "MIT",
"engines": {
"node": ">=10",
"vscode": "^1.52.1"
},
"devDependencies": {},
"dependencies": {
"@cucumber/cucumber": "8.7.0",
"@playwright/test": "1.28.1",
"playwright": "1.28.1",
"prettier": "2.7.1",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"axios": "0.27.2",
"config": "3.3.7",
"uuid": "^9.0.0",
"multiple-cucumber-html-reporter": "1.20.0"
}
}