-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.5 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "cy-sorry-cypress-dashboard",
"version": "1.0.0",
"description": "This project integrates Cypress with Sorry-Cypress, an open-source, on-premise, self-hosted alternative to Cypress Cloud.",
"main": "cypress.config.js",
"scripts": {
"build": "cypress install",
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
"lint:fix": "npm run lint --fix",
"format": "npx prettier --write --ignore-path .gitignore \"*.{js,json,yml,md}\" \"cypress/**/*.{js,json}\" \".github/workflows/**/*.yml\" \"*.yml\" \"*.md\" \"*.prettierrc\" ",
"check-format": "npx prettier --check .",
"validate": "npm-run-all --parallel lint check-format",
"clean:modules": "rimraf ./node_modules",
"clean:results": "rimraf ./cypress/reports ./cypress/videos ./cypress/screenshots ./cypress/downloads",
"clean": "npm run clean:results && npm run clean:modules",
"cy:info": "cypress info",
"cy:open": "cypress open",
"cy:run": "cypress run --spec cypress/e2e/1-getting-started/todo.cy.js",
"cy:run:chrome": "cypress run --browser chrome",
"cy:run:edge": "cypress run --browser edge",
"cy:run:electron": "cypress run --browser electron",
"cy:run:sorry-cypress": "cypress-cloud run --parallel --key cy-key --ci-build-id Run#01",
"cy:run:sorry-cypress:chrome": "cypress-cloud run --browser chrome --parallel",
"cy:run:sorry-cypress:edge": "cypress-cloud run --browser edge --parallel",
"cy:run:sorry-cypress:electron": "cypress-cloud run --browser electron --parallel",
"cy:run:parallel": "cypress-parallel -s cypress run -t 2 -d 'cypress/e2e/**/*.cy.js' -o 'cypressParallel=true'",
"cy:open-report": "open cypress/reports/html/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hamza-lem/cy-sorry-cypress-dashboard.git"
},
"keywords": [
"cypress",
"sorry-cypress",
"dashboard",
"js",
"e2e"
],
"author": "Hamza-Lem",
"license": "MIT",
"bugs": {
"url": "https://github.com/hamza-lem/cy-sorry-cypress-dashboard/issues"
},
"homepage": "https://github.com/hamza-lem/cy-sorry-cypress-dashboard#readme",
"dependencies": {
"cypress": "^12.17.4",
"mocha": "^10.7.0"
},
"devDependencies": {
"cypress-cloud": "^1.9.6",
"cypress-mochawesome-reporter": "^3.8.2",
"cypress-parallel": "^0.14.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rimraf": "^6.0.1"
}
}