-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.26 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@hyperse/vitest-coverage-reporter",
"version": "1.0.15",
"description": "Using gitHub action for creating markdown coverage report, badges from Istanbul json report",
"keywords": [
"hyperse",
"reporter",
"markdown",
"coverage",
"badges",
"vitest",
"github actions"
],
"repository": {
"type": "git",
"url": "[email protected]:hyperse-io/vitest-coverage-reporter.git"
},
"main": "./dist/index.js",
"bin": {
"generate-coverage-report": "./bin/generate-coverage-report.mjs"
},
"files": [
"./bin/",
"./dist/",
"./index.js"
],
"scripts": {
"build": "tsup",
"bump": "node ./scripts/bump.mjs",
"changeset": "changeset",
"cz": "cz",
"lint": "eslint .",
"lint-staged-files": "lint-staged --allow-empty",
"prepare": "husky",
"release": "yarn build && node ./scripts/release.mjs",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:export": "tsx tests/testUtils/exportTestTable.ts",
"typecheck": "tsc --project ./tsconfig.json --noEmit"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@manypkg/get-packages": "^2.2.2",
"common-tags": "1.8.2",
"mdast-util-to-string": "^4.0.0",
"minimist": "^1.2.8",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.5"
},
"devDependencies": {
"@actions/exec": "^1.1.1",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.7",
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@hyperse/eslint-config-hyperse": "^1.1.3",
"@hyperse/ts-node-paths": "^1.0.9",
"@types/common-tags": "1.8.4",
"@types/minimist": "^1.2.5",
"@types/node": "^22.2.0",
"@vitest/coverage-istanbul": "^2.0.5",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"dotenv": "^16.4.5",
"eslint": "^9.9.0",
"husky": "9.1.4",
"lint-staged": "15.2.8",
"tsup": "^8.2.4",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}