-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.06 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
35
36
37
{
"name": "cypress-framework",
"version": "1.0.0",
"description": "cypress automation framework ",
"main": "index.js",
"scripts": {
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:run:chrome": "cypress run --browser chrome",
"cy:run:firefox": "cypress run --browser firefox",
"cy:run:electron": "cypress run --browser electron",
"cy:run-dashboard": "cypress run --record --key 271bfc37-8309-4f6f-aad4-4054d12838d0",
"cy:update-snapshots": "cypress run --env updateSnapshots=true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Citronex/cypress-framework.git"
},
"keywords": [
"cypress",
"automation"
],
"author": "Francisco Mejias",
"license": "ISC",
"bugs": {
"url": "https://github.com/Citronex/cypress-framework/issues"
},
"homepage": "https://github.com/Citronex/cypress-framework#readme",
"dependencies": {
"cypress": "^7.6.0",
"cypress-image-snapshot": "^4.0.1",
"prettier": "^2.3.0"
},
"devDependencies": {
"@types/cypress-image-snapshot": "^3.1.5"
}
}