-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.14 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
{
"name": "cypress-starter-kit",
"version": "1.0.0",
"description": "A starter kit for Cypress Testing with docker",
"repository": "https://github.com/ehasnain/cypress-starter-kit",
"author": "Ehtesham Hasnain <[email protected]>",
"license": "MIT",
"scripts": {
"clean-results": "./scripts/clean-results.sh",
"combine-junit-results": "./scripts/combine-junit-results.sh",
"fix-lint": "./scripts/lint.sh --fix",
"lint": "./scripts/lint.sh",
"pretest": "yarn run clean-results",
"test": "./scripts/test.sh",
"test-ci": "./scripts/test-ci.sh",
"test-local": "./scripts/test-local.sh",
"test-watch": "./scripts/test-watch.sh"
},
"devDependencies": {
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"cypress": "^9.3.1",
"cypress-multi-reporters": "^1.5.0",
"eslint": "^8.7.0",
"junit-report-merger": "^3.0.5",
"mocha": "^9.2.0",
"mocha-junit-reporter": "^2.0.2",
"typescript": "^4.5.5"
}
}