forked from wlsf82/cypress-basico-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 870 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
{
"name": "curso-cypress-v2",
"version": "1.0.0",
"description": "Repositório da versão 2 do curso básico de Cypress da Escola Talking About Testing",
"main": "src/index.html",
"scripts": {
"cy:open": "cypress open",
"cy:open: mobile": "cypress open --config viewportWidth=410,viewportHeight=860",
"test": "cypress run",
"test:mobile": "cypress run --config viewportWidth=410,viewportHeight=860"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wlsf82/cypress-basico-v2.git"
},
"keywords": [
"Testing",
"Cypress.io",
"Talking About Testing",
"Cypress Básico",
"Escola TAT"
],
"author": "Walmyr Filho <[email protected]> (https://walmyr.dev/)",
"license": "MIT",
"homepage": "https://github.com/wlsf82/cypress-basico-v2#readme",
"devDependencies": {
"cypress": "^9.5.2"
}
}