forked from wlsf82/cypress-basico-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 885 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
{
"name": "curso-cypress-v2",
"version": "1.0.0",
"description": "Repositório do curso básico de Cypress",
"main": "src/index.html",
"scripts": {
"ci": "ci",
"cy:open": "cypress open --config-file=cypress.config.js",
"cy:run": "cypress run --config-file=cypress.config.js",
"cy:open:mobile": "cypress open --config-file=cypress.config.js --config viewportWidth=410 viewportHeight=860",
"cy:run:mobile": "cypress run --config-file=cypress.config.js --config viewportWidth=410 viewportHeight=860"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeohsPaixao/cypress-basico.git"
},
"author": "Leonardo Paixão",
"license": "MIT",
"homepage": "https://github.com/LeohsPaixao/cypress-basico",
"devDependencies": {
"chance": "^1.1.11",
"cypress": "^13.4.0"
},
"dependencies": {
"lodash": "^4.17.21"
}
}