-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 859 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 859 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
28
29
30
31
{
"name": "raffy-qa-challenge",
"version": "1.0.0",
"description": "this is Raffy Rodriguez's Senior QA challenge for GBH",
"main": "index.js",
"scripts": {
"pretest-windows": "rmdir /S /Q cypress\\reports && mkdir cypress\\reports",
"pretest": "rm -rf cypress/reports && mkdir cypress/reports",
"lint": "eslint cypress/e2e",
"lint-fix": "npm run lint -- --fix",
"test": "npm run pretest && npx cypress run",
"test-windows": "npm run pretest-windows && npx cypress run --browser chrome"
},
"keywords": [
"testing",
"automation",
"GBH"
],
"author": "Raffy Rodriguez.",
"license": "ISC",
"devDependencies": {
"cypress": "^12.3.0",
"eslint": "^8.26.0"
},
"dependencies": {
"cypress-mochawesome-reporter": "^3.2.3",
"faker": "^5.5.3",
"md5": "^2.3.0",
"mocha": "^5.2.0"
}
}