generated from Idea-Pool/evaluation-js-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1012 Bytes
/
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
{
"name": "evaluation-cypress",
"version": "0.0.1",
"description": "This is a test-ware for evaluation of Cypress test automation tool.",
"main": "-",
"scripts": {
"test": "cypress run --browser chrome --reporter junit --reporter-options \"results/cypress-[hash].xml\"",
"cy:open": "cypress open",
"lint": "eslint cypress --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/szikszail/evaluation-template.git"
},
"keywords": [
"Test",
"automation",
"Tool",
"Evaluation",
"JavaScript"
],
"author": "Laszlo Szikszai <[email protected]>",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/szikszail/evaluation-template/issues"
},
"homepage": "https://github.com/szikszail/evaluation-template#readme",
"dependencies": {
"cypress": "^13.16.0",
"eslint": "^8.43.0",
"eslint-plugin-cypress": "^2.8.1",
"husky": "^4.0.10"
},
"husky": {
"pre-commit": "npm run lint"
}
}