-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
32 lines (32 loc) · 1.03 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
{
"name": "workshop-cbt-cypress",
"version": "1.0.0",
"description": "Workshop: Modern Cross-Browser Testing with Cypress",
"main": "index.js",
"scripts": {
"cypress": "cypress open",
"cypress:original": "cypress open --env DEMO_SITE=original",
"cypress:changed": "cypress open --env DEMO_SITE=changed",
"test": "cypress run",
"test:original": "cypress run --env DEMO_SITE=original",
"test:changed": "cypress run --env DEMO_SITE=changed",
"test:chrome": "cypress run --browser chrome",
"test:edge": "cypress run --browser edge",
"test:firefox": "cypress run --browser firefox"
},
"repository": {
"type": "git",
"url": "git+https://github.com/applitools/workshop-cbt-cypress.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/applitools/workshop-cbt-cypress/issues"
},
"homepage": "https://github.com/applitools/workshop-cbt-cypress#readme",
"dependencies": {
"@applitools/eyes-cypress": "^3.23.6",
"cypress": "^9.3.1"
}
}