forked from wlsf82/cypress-basico-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 931 Bytes
/
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
{
"name": "curso-cypress-basico",
"version": "^1.0.0",
"description": "Exercícios do Curso Básico de Cypress da escola Talking About Testing (Udemy)",
"scripts": {
"cy:open": "cypress open",
"test": "cypress run",
"open:mobile": "cypress open --config viewportWidth=410,viewportHeight=860",
"test:mobile": "cypress run --config viewportWidth=410,viewportHeight=860"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JVMatos/Curso-Cypress-Basico.git"
},
"keywords": [
"Testing",
"Cypress.io",
"Talking About Testin",
"Cypress Básico",
"QA",
"Software Test"
],
"author": {
"name": "João Vitor Matos",
"email": "[email protected]",
"url": "https://github.com/JVMatos/"
},
"license": "MIT",
"devDependencies": {
"cypress": "^9.5.1"
}
}