-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1017 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 1017 Bytes
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
{
"name": "hellyone-automation",
"version": "1.0.0",
"scripts": {
"clean": "rimraf allure-results allure-report reports",
"test": "npm run clean && npm run test:run",
"test:run": "cucumber-js --require-module ts-node/register --exit -- $@ ; EXIT_CODE=$? ; npm run allure:generate ; exit $EXIT_CODE",
"allure:generate": "./node_modules/.bin/allure generate allure-results --clean -o allure-report",
"allure:open": "./node_modules/.bin/allure open allure-report",
"allure:report": "npm run allure:generate && npm run allure:open"
},
"devDependencies": {
"@cucumber/cucumber": "^11.0.0",
"@playwright/test": "^1.49.0",
"@types/node": "^22.0.0",
"allure-commandline": "^2.34.1",
"allure-cucumberjs": "^3.4.2",
"allure-js-commons": "^3.4.3",
"cross-env": "^7.0.3",
"playwright": "^1.49.0",
"playwright-extra": "^4.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.0"
}
}