-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "automated-software-testing-with-cypress",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"cy:verify": "cypress verify",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:run:chrome": "cypress run --browser chrome",
"cy:run:firefox": "cypress run --browser firefox",
"clean:reports": "rimraf cypress/reports/*",
"pretest": "npm run clean:reports",
"test": "npm run cy:run",
"chrome:test": "npm-run-all pretest cy:run:chrome",
"firefox:test": "npm-run-all pretest cy:run:firefox"
},
"author": "Daniela Pochini",
"keywords": [
"cypress",
"QA",
"automation",
"cucumber",
"BDD"
],
"license": "ISC",
"description": "",
"dependencies": {
"cypress-xpath": "^2.0.0",
"prettier": "^2.6.2",
"tsify": "^5.0.4",
"typescript": "^4.7.4"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^12.1.0",
"@cypress/browserify-preprocessor": "^3.0.2",
"cypress": "^10.6.0",
"multiple-cucumber-html-reporter": "^1.21.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
},
"cypress-cucumber-preprocessor": {
"html": {
"enabled": true,
"output": "cypress/reports/cucumber-report.html"
},
"messages": {
"enabled": false
}
}
}