-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.03 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
{
"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": {
"cy": "cypress",
"open": "npm run cy open",
"test": "npm run cy run -- -q --headed",
"headless": "npm run cy run -- -q",
"home": "npm run cy run -- --spec specs/homePageSpec.js",
"pretty": "standard --fix",
"ci": "npm run cy 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"
}
}