This repository was archived by the owner on Jan 28, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.71 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.71 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
42
43
44
45
46
{
"name": "code-reviews-of-gui-tests",
"version": "1.0.0",
"description": "Prototype to address the challenge of reviewing GUI tests",
"main": "index.js",
"scripts": {
"format:check": "prettier --check \"tests/**/*.{js,ts,tsx,json}\"",
"format:write": "prettier --write \"tests/**/*.{js,ts,tsx,json}\"",
"lint:eslint": "eslint tests --format=json -o artifacts/eslint.json",
"lint": "npm run format:check && npm run lint:eslint",
"test:gui": "playwright test",
"flowchart": "node scripts/generate-flowchart.js",
"checklist": "node scripts/checklist.js",
"review": "node scripts/summary-comment.js",
"dev": "npm run lint && npm run test:gui && npm run flowchart && npm run checklist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DigitalProductInnovationAndDevelopment/Code-Reviews-of-GUI-Tests.git"
},
"bugs": {
"url": "https://github.com/DigitalProductInnovationAndDevelopment/Code-Reviews-of-GUI-Tests/issues"
},
"homepage": "https://github.com/DigitalProductInnovationAndDevelopment/Code-Reviews-of-GUI-Tests#readme",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@mermaid-js/mermaid-cli": "10.6.1",
"@octokit/core": "^5.0.0",
"@playwright/test": "^1.52.0",
"@types/node": "^24.0.7",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"eslint": "^8.0.0",
"eslint-plugin-playwright": "^2.2.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-sonarjs": "^0.22.0",
"eslint-plugin-unicorn": "49.0.0",
"jq": "^1.6.0",
"@types/marked": "6.0.0",
"marked": "15.0.12",
"prettier": "^3.3.2"
}
}