forked from JBaczuk/pr-test-coverage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.14 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": "pr-test-coverage",
"version": "1.0.5",
"description": "A Github Action to report the test coverage of changed files in a pull request",
"main": "dist/index.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node24 --outfile=dist/index.js --minify",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"format:check": "prettier --check src/**/*.ts",
"format:fix": "prettier --write src/**/*.ts"
},
"keywords": [
"github-action",
"test-coverage",
"pull-request"
],
"author": "Jordan Baczuk",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^2.1.7",
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"esbuild": "^0.28.0",
"@eslint/js": "^10.0.1",
"@types/node": "^24.12.4",
"@types/xml2js": "^0.4.14",
"@vercel/ncc": "^0.38.1",
"@vitest/coverage-v8": "^1.2.0",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"prettier": "^3.2.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vitest": "^1.2.0"
}
}