-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
53 lines (53 loc) · 1.55 KB
/
package.json
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
{
"name": "vitest-coverage-report-action",
"version": "0.0.0",
"description": "A GitHub Action to report the test coverage of vitest",
"main": "src/index.js",
"private": true,
"scripts": {
"test": "vitest",
"test:coverage": "vitest run --coverage.enabled true",
"test:export": "npx ts-node test/exportTestTable.ts",
"lint": "biome check",
"lint:write": "biome check --write",
"lint:ci": "biome ci",
"build": "rm -rf dist && node esbuild.cjs",
"start": "npm run build && node dist/index.js",
"typecheck": "npx tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davelosert/vitest-coverage-report-action.git"
},
"keywords": [
"vitest",
"coverage",
"nyc"
],
"author": "David Losert <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/davelosert/vitest-coverage-report-action/issues"
},
"homepage": "https://github.com/davelosert/vitest-coverage-report-action#readme",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"common-tags": "1.8.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.1",
"@types/common-tags": "1.8.4",
"@types/node": "22.9.0",
"@vitest/coverage-v8": "2.1.5",
"esbuild": "0.24.0",
"semantic-release": "24.2.0",
"semantic-release-github-actions-tags": "2.0.2",
"typescript": "5.6.3",
"vite": "5.4.11",
"vitest": "2.1.5"
}
}