-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.87 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "github-actions-ctrf",
"version": "1.0.29",
"description": "View test results directly within your GitHub workflow summary and Pull Requests",
"type": "module",
"main": "index.js",
"scripts": {
"bundle": "npm run format:write && npm run package",
"ci-test": "vitest run",
"test": "vitest run",
"coverage": "vitest run --coverage && npx make-coverage-badge --output-path ./badges/coverage.svg",
"lint": "biome lint --write . --unsafe",
"lint:check": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"package": "tsup && npm run copyfiles",
"copyfiles": "copyfiles -u 2 \"src/reports/*.hbs\" dist/reports && copyfiles -u 2 \"community-reports/**/*.hbs\" dist/community-reports",
"package:watch": "tsup --watch && npm run copyfiles",
"all": "npm run check && npm run test && npm run coverage && npm run package",
"modify-reports": "tsx scripts/modify-reports.ts"
},
"engines": {
"node": ">=24.0.0"
},
"files": [
"dist/",
"README.md"
],
"keywords": [],
"author": "Matthew Poulton-White",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@d2t/vitest-ctrf-json-reporter": "1.3.0",
"@types/adm-zip": "0.5.8",
"@types/node": "25.9.2",
"@vitest/coverage-v8": "4.1.8",
"copyfiles": "2.4.1",
"make-coverage-badge": "1.2.0",
"tsup": "8.5.1",
"tsx": "4.22.4",
"typescript": "6.0.3",
"vitest": "4.1.8"
},
"dependencies": {
"@actions/artifact": "6.2.1",
"@actions/core": "3.0.1",
"@actions/github": "9.1.1",
"@octokit/plugin-retry": "8.1.0",
"@octokit/rest": "22.0.1",
"@types/adm-zip": "0.5.8",
"adm-zip": "0.5.17",
"ai-ctrf": "0.0.17",
"ansi-to-html": "0.7.2",
"ctrf": "0.2.1",
"glob": "13.0.6",
"handlebars": "4.7.9",
"handlebars-helpers-ctrf": "0.0.8",
"junit-to-ctrf": "0.0.14",
"slack-ctrf": "0.0.24",
"teams-ctrf": "0.0.6"
}
}