forked from jelingi/cypress-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1 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
{
"name": "cypress-example",
"version": "1.0.0",
"description": "An example Cypress e2e test project",
"author": "brine",
"license": "MIT",
"keywords": [
"cypress",
"e2e",
"ui",
"test",
"automation"
],
"standard": {
"globals": [
"cy",
"beforeAll",
"afterAll",
"describe",
"it",
"beforeEach",
"afterEach"
]
},
"scripts": {
"open": "npx cypress open",
"test": "npx cypress run -q --headed",
"headless": "npx cypress run -q",
"home": "npx cypress run -s cypress/e2e/homePage.cy.js",
"pretty": "standard --fix",
"ci": "npx cypress run -q"
},
"dependencies": {
"@badeball/cypress-cucumber-preprocessor": "^20.1.2",
"standard": "^17.1.0"
},
"devDependencies": {
"cypress": "^13.13.3",
"cypress-multi-reporters": "^1.6.4",
"cypress-xray-junit-reporter": "^1.1.7",
"cypress-xray-plugin": "^7.2.0",
"mocha": "^10.7.3",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.3.0"
}
}