-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.3 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.3 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
{
"name": "cypress-e2e-typescript",
"version": "1.0.0",
"description": "\"Automation Testing framework using cypress, typescript and allure-reporter\"",
"main": "index.js",
"scripts": {
"cy:e2e:run": "npm run clear && npm run cy:run && npm run report",
"cy:open": "cypress open --config-file config/cypress.config.ts --env allure=true",
"cy:run": "cypress run --config-file config/cypress.config.ts --env allure=true",
"report": "npx allure generate reports/ui/allure-results --clean -o reports/ui/allure-report && allure open reports/ui/allure-report",
"allure:generate": "npx allure generate allure-results --clean",
"clear": "rm -r reports/** || true"
},
"keywords": [
"cypress",
"typescript",
"e2e",
"testing",
"automation",
"soft-assertions"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dreamquality/cypress-allure-starter.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/dreamquality/cypress-allure-starter/issues"
},
"homepage": "https://github.com/dreamquality/cypress-allure-starter#readme",
"devDependencies": {
"@types/node": "^25.5.2",
"allure-cypress": "^3.6.0",
"cypress": "^15.13.0",
"typescript": "^5.9.3"
},
"dependencies": {
"allure-commandline": "^2.38.1"
}
}