-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 KB
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
38
39
40
41
42
43
44
{
"name": "sloth-javascript",
"version": "0.1.0",
"description": "Professional Cypress + TypeScript UI test automation framework demonstrating Page Object Model, Allure Reports, and CI/CD integration.",
"keywords": [
"cypress",
"typescript",
"e2e",
"test-automation",
"page-object-model",
"allure",
"sdet",
"qa-automation"
],
"author": "Weipeng Zheng",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/466725/sloth-javascript.git"
},
"bugs": {
"url": "https://github.com/466725/sloth-javascript/issues"
},
"homepage": "https://github.com/466725/sloth-javascript#readme",
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"cypress:open": "npx cypress open",
"cypress:run": "npx cypress run",
"test": "npm run cypress:run",
"allure:generate": "allure generate cypress/allure-results --clean -o cypress/allure-report",
"allure:open": "allure open cypress/allure-report"
},
"devDependencies": {
"@bahmutov/cy-grep": "^3.0.0",
"@shelex/cypress-allure-plugin": "^2.41.2",
"allure-commandline": "^2.38.0",
"cypress": "^15.12.0",
"cypress-multi-reporters": "^2.0.5",
"typescript": "^5.3.0"
}
}