-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.67 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
{
"name": "codecoverage-action",
"version": "1.1.0",
"private": true,
"type": "module",
"description": "GitHub Action to annotate PRs with lines that are missing test coverage",
"main": "src/main.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt --no-cache",
"test": "vitest",
"test:cov": "vitest run --coverage",
"all": "npm run build && npm run format && npm run lint && npm run package && npm run test:cov",
"lcov": "lcov-parse ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ggilder/codecoverage.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Gabriel Gilder, Shravan Dhakal",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@cvrg-report/clover-json": "ggilder/clover-json#include-path",
"golang-cover-parse": "^2.0",
"lcov-parse": "^1.0.0",
"octokit": "^4.1.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.25.1",
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"@vercel/ncc": "^0.38.4",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.25.1",
"eslint-plugin-github": "^6.0.0",
"prettier": "3.5.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"overrides": {
"undici": "6.24.0",
"minimatch@^3.0.4": "3.1.3",
"minimatch@^3.1.2": "3.1.3",
"minimatch@^9.0.4": "9.0.7"
}
}