-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 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
{
"name": "evaluation-js-playwright",
"version": "1.0.0",
"description": "This is a repository to create test-ware for evaluating the Playwright test automation tool.",
"main": "-",
"scripts": {
"test": "jest --runInBand",
"lint": "eslint tests --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Idea-Pool/evaluation-js-playwright.git"
},
"keywords": [
"Test",
"automation",
"Tool",
"Evaluation",
"JavaScript",
"Playwright"
],
"author": "Idea Pool <SpecialEPM-DEBIdeaPoolStaff@epam.com>",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/idea-pool/evaluation-js-template/issues"
},
"homepage": "https://github.com/idea-pool/evaluation-js-template#readme",
"dependencies": {
"@types/jest": "^26.0.15",
"eslint": "^9.39.2",
"husky": "^8.0.3"
},
"husky": {
"precommit": "npm run lint"
},
"devDependencies": {
"jest": "^29.7.0",
"jest-playwright-preset": "^4.0.0",
"playwright": "^1.55.1"
}
}