-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 844 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 844 Bytes
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": "cypress-playground",
"version": "1.0.0",
"description": "Cypress Playground app and tests.",
"main": "src/index.html",
"scripts": {
"cy:open": "cypress open",
"cy:open:prod": "cypress open --expose environment=prod",
"test": "cypress run --record false --browser chrome",
"test:prod": "cypress run --record false --browser chrome --expose environment=prod",
"test:prod:cloud": "cypress run --browser chrome --record --tag 'prod' --expose environment=prod"
},
"keywords": [
"Cypress Playground",
"Test Design Masterclass TAT",
"Talking About Testing",
"Cypress Testing",
"Testing"
],
"author": "Walmyr <wlsf82@gmail.com> (https://walmyr.dev/)",
"license": "MIT",
"devDependencies": {
"axe-core": "^4.11.2",
"cypress": "^15.13.0",
"cypress-axe": "^1.7.0"
}
}