forked from wlsf82/curso-cypress-avancado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 934 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
33
34
35
36
37
38
39
40
{
"name": "curso-cypress-avancado",
"version": "1.0.0",
"description": "Projeto do curso avançado de Cypress da Escola TAT",
"main": "index.js",
"scripts": {
"lint": "npx standard",
"lint:fix": "npx standard --fix",
"test": "cypress run",
"cy:open": "cypress open"
},
"standard": {
"globals": [
"beforeEach",
"context",
"cy",
"Cypress",
"describe",
"it"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/wlsf82/curso-cypress-avancado.git"
},
"keywords": [
"cypress",
"cypress.io",
"testing"
],
"author": "Walmyr Filho <[email protected]> (https://walmyr.dev)",
"license": "MIT",
"homepage": "https://github.com/wlsf82/curso-cypress-avancado#readme",
"devDependencies": {
"cypress": "^6.6.0",
"cypress-localstorage-commands": "^1.4.1",
"faker": "^5.4.0",
"standardjs": "^1.0.0-alpha"
}
}