-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.38 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.38 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@containerbase/istanbul-reports-html",
"version": "0.0.0-semantic-release",
"keywords": [
"coverage",
"highlight",
"highlight.js",
"istanbul",
"jest",
"reports",
"syntax",
"vitest"
],
"repository": {
"type": "git",
"url": "git+https://github.com/containerbase/istanbul-reports.git"
},
"license": "MIT",
"author": "Michael Kriese <michael.kriese@visualon.de>",
"type": "module",
"main": "index.cjs",
"files": [
"dist/",
"vendor/",
"index.cjs"
],
"scripts": {
"eslint": "eslint --cache .",
"eslint-fix": "eslint --cache --fix .",
"prepare": "husky",
"build": "run-s 'build:*'",
"build:hljs": "esbuild src/vendor/hljs.ts --bundle --target=es2020 --outfile=vendor/hljs.js --banner:js='/* eslint-disable */ // @ts-nocheck'",
"build:main": "esbuild src/index.ts --platform=node --target=node20 --format=esm --outfile=dist/index.js --banner:js='/* eslint-disable */ // @ts-nocheck'",
"lint:types": "run-p 'lint:types:*'",
"lint:types:default": "tsc",
"prettier": "prettier --cache -c -u \"**/*.*\"",
"prettier-fix": "prettier --cache -w -u \"**/*.*\""
},
"dependencies": {
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.2.0"
},
"devDependencies": {
"@containerbase/eslint-plugin": "1.1.36",
"@containerbase/semantic-release-pnpm": "1.3.33",
"@eslint/js": "9.39.4",
"@tsconfig/node20": "20.1.9",
"@tsconfig/strictest": "2.0.8",
"@types/eslint-config-prettier": "6.11.3",
"@types/istanbul-lib-report": "3.0.3",
"@types/node": "22.19.17",
"@vitest/eslint-plugin": "1.6.15",
"conventional-changelog-conventionalcommits": "9.3.1",
"esbuild": "0.28.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-formatter-gha": "1.6.0",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-promise": "7.2.1",
"globals": "16.5.0",
"highlight.js": "11.11.1",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"markdownlint-cli2": "0.22.0",
"npm-run-all2": "8.0.4",
"prettier": "3.8.2",
"prettier-plugin-packagejson": "2.5.22",
"semantic-release": "25.0.3",
"typescript": "5.9.3",
"typescript-eslint": "8.58.2"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": "^20.9.0 || ^22.11.0 || ^24.0.0",
"pnpm": "^10.0.0"
}
}