-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"name": "coverage",
"description": "GitHub Action: parse coverage, post sticky PR comment with deltas",
"type": "module",
"version": "0.4.0",
"license": "Apache-2.0",
"funding": "https://github.com/sponsors/xseman",
"homepage": "https://github.com/xseman/coverage",
"author": "Filip Seman <filip.seman@pm.me>",
"keywords": [
"github",
"action",
"coverage",
"reporter",
"diff"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xseman/coverage.git"
},
"scripts": {
"build": "bun build src/index.ts --minify --production --target=node --outdir=lib --format=esm --entry-naming [dir]/[name].js",
"fmt": "dprint fmt",
"fmt:check": "dprint check",
"typecheck": "tsc --noEmit",
"test": "bun test --concurrent",
"test:watch": "bun test --watch --concurrent",
"test:coverage": "bun test --coverage --concurrent",
"lint": "bun run typecheck && bun run fmt:check"
},
"dependencies": {
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.8",
"@types/node": "^25.2.2",
"dprint": "^0.51.1",
"typescript": "^5.9.3"
}
}