forked from davelosert/vitest-coverage-report-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.43 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
{
"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",
"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.10.1",
"@actions/github": "6.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.1.3",
"common-tags": "1.8.2"
},
"devDependencies": {
"@semantic-release/exec": "6.0.3",
"@types/common-tags": "1.8.4",
"@types/node": "22.0.0",
"@vitest/coverage-v8": "2.0.4",
"esbuild": "0.23.0",
"semantic-release": "24.0.0",
"semantic-release-github-actions-tags": "1.0.3",
"typescript": "5.5.4",
"vite": "5.3.5",
"vitest": "2.0.4"
}
}