-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.55 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.55 KB
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
{
"name": "selenium-jest-cucumber-automation",
"version": "1.0.0",
"description": "E2E automation framework using Selenium WebDriver, Jest, and Cucumber with Page Object Model",
"type": "module",
"main": "index.js",
"scripts": {
"test:e2e": "cucumber-js --require src/config/cucumber.js",
"test:e2e:smoke": "cucumber-js --require src/config/cucumber.js --tags @smoke",
"test:e2e:regression": "cucumber-js --require src/config/cucumber.js --tags @regression",
"test:unit": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.cjs",
"test:all": "npm run test:unit && npm run test:e2e && npm run report:cucumber",
"report:cucumber": "node tools/cucumber-html-report.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install"
},
"keywords": [
"selenium",
"webdriver",
"cucumber",
"jest",
"e2e",
"automation",
"testing",
"bdd"
],
"author": "",
"license": "MIT",
"dependencies": {
"@cucumber/cucumber": "^12.2.0",
"dotenv": "^17.2.2",
"selenium-webdriver": "^4.35.0"
},
"devDependencies": {
"@babel/preset-env": "^7.28.3",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@faker-js/faker": "^10.0.0",
"cross-env": "^10.0.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.1",
"husky": "^9.1.7",
"jest": "^30.1.3",
"jest-html-reporters": "^3.1.7",
"multiple-cucumber-html-reporter": "^3.9.3",
"tslib": "^2.6.3"
}
}