forked from wlsf82/cypress-from-zero-to-the-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.13 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
{
"name": "cypress-from-zero-to-the-cloud",
"version": "1.0.0",
"description": "English version the 🌲 Cypress, from Zero to the Cloud ☁️ course, from the Talking About Testing online school.",
"main": "src/index.html",
"scripts": {
"cy:run:key": "npx cypress run --record",
"cy:open": "cypress open --e2e -b chrome",
"cy:run": "cypress run --e2e -b chrome",
"cy:open:mobile": "cypress open --e2e -b chrome --config viewportWidth=410 viewportHeight=860",
"cy:run:mobile": "cypress run --e2e -b chrome --config viewportWidth=410 viewportHeight=860",
"test": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wlsf82/cypress-from-zero-to-the-cloud.git"
},
"keywords": [
"Testing",
"Cypress.io",
"Talking About Testing",
"Cypress basic",
"Cypress, from Zero to the Cloud",
"Cypress cloud",
"GitHub Actions",
"TAT School"
],
"author": "Walmyr <[email protected]> (https://walmyr.dev/)",
"license": "MIT",
"homepage": "https://github.com/wlsf82/cypress-from-zero-to-the-cloud#readme",
"devDependencies": {
"cypress": "^13.1.0"
}
}