-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.11 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.11 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
{
"name": "automation-project-2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -R -f cypress/reports; mkdir cypress/reports; rm -f mochawesome.json",
"run": "npx cypress run",
"test": "npm-run-all clean run report -c",
"test:spec": "npm-run-all clean \"run -- --spec {1}\" report -c --",
"report": "npx mochawesome-merge cypress/reports/*.json > mochawesome.json && npx margemochawesome.json && start mochawesome-report/mochawesome.html && rm -f mochawesome.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sabtries/Automation-Project-2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sabtries/Automation-Project-2/issues"
},
"homepage": "https://github.com/Sabtries/Automation-Project-2#readme",
"devDependencies": {
"cypress": "^12.1.0",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.2.2",
"mochawesome-report-generator": "^6.2.0",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"cypress-iframe": "^1.0.1",
"faker": "^5.5.3"
}
}