-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 806 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 806 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-e2e-framework",
"version": "1.0.0",
"description": "Sample framework created using Cypress",
"main": "index.js",
"scripts": {
"test:apiTests": "npx cypress run --spec cypress/e2e/api-tests/",
"test:uiTests": "npx cypress run --spec cypress/e2e/ui-tests/",
"test:all": "npx cypress run"
},
"author": "Mishal Alexander",
"repository": {
"type": "git",
"url": "git+https://github.com/mishalalex/cypress-e2e-framework"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/mishalalex/cypress-e2e-framework/issues"
},
"homepage": "https://github.com/mishalalex/cypress-e2e-framework/#readme",
"devDependencies": {
"ajv": "^8.12.0",
"cypress": "^13.6.2",
"cypress-mochawesome-reporter": "^3.8.0",
"npm": "^11.12.0"
}
}