-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.21 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
{
"name": "playwright-cucumber-sample-project",
"version": "1.0.0",
"description": "Sample project with Playwright and Cucumber",
"main": "index.js",
"scripts": {
"test": "npx cucumber-js -p runner & npx ts-node ./src/support/reporter/HTMLReporter.ts & npx ts-node ./src/support/reporter/CucumberReporter.ts",
"test:tags": "npx cucumber-js -p runner --tags",
"failed:test": "npx cucumber-js -p rerun",
"report": "npx ts-node ./src/support/reporter/HTMLReporter.ts & npx ts-node ./src/support/reporter/CucumberReporter.ts",
"qa:test": "cross-env TEST_ENV=qa npx cucumber-js -p runner & cross-env TEST_ENV=qa npx ts-node ./src/support/reporter/HTMLReporter.ts & cross-env TEST_ENV=qa npx ts-node ./src/support/reporter/CucumberReporter.ts",
"dry:test": "npx cucumber-js -p runner --dry-run"
},
"keywords": [],
"author": "Vinay Kumar B M",
"license": "ISC",
"devDependencies": {
"@cucumber/cucumber": "8.7.0",
"@cucumber/pretty-formatter": "1.0.0",
"@playwright/test": "1.27.1",
"@types/cucumber-html-reporter": "5.0.1",
"@types/easy-soap-request": "4.1.1",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/ibm_db": "2.0.11",
"@types/jsonpath": "^0.2.0",
"@types/mssql": "^7.1.4",
"@types/oracledb": "5.2.3",
"@types/pdf-parse": "^1.1.1",
"@types/randomstring": "^1.1.8",
"@types/string-format": "^2.0.0",
"@types/xmldom": "^0.1.31",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"dotenv": "16.0.0",
"easy-soap-request": "^4.6.0",
"eslint": "^8.12.0",
"eslint-config-airbnb-typescript": "16.1.4",
"eslint-plugin-playwright": "0.8.0",
"fetch-to-curl": "0.5.2",
"fs-extra": "10.1.0",
"ibm_db": "2.8.1",
"jsonpath": "1.1.1",
"moment": "2.29.4",
"mssql": "^7.2.1",
"oracledb": "5.3.0",
"pdf-parse": "1.1.1",
"playwright": "1.27.1",
"randomstring": "1.2.2",
"string-format": "2.0.0",
"ts-node": "10.9.1",
"typescript": "4.8.4",
"winston": "3.8.2",
"xml-formatter": "2.6.1",
"xmldom": "0.6.0",
"xpath": "0.0.32",
"multiple-cucumber-html-reporter": "3.0.1",
"os": "0.1.2",
"cross-env": "7.0.3"
}
}