-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.58 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.58 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "lcoview",
"version": "1.1.1",
"description": "LCOV coverage report viewer that generates interactive HTML reports with file filtering",
"keywords": [
"lcov",
"coverage",
"report",
"html",
"viewer",
"testing",
"code-coverage",
"cli"
],
"author": "Ramesh Nair <ram@hiddentao.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hiddentao/lcoview.git"
},
"homepage": "https://github.com/hiddentao/lcoview",
"bugs": {
"url": "https://github.com/hiddentao/lcoview/issues"
},
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"bin": {
"lcoview": "./bin/lcoview.js"
},
"files": [
"dist",
"bin",
"templates",
"logo.png",
"README.md",
"LICENSE.md",
"CHANGELOG.md"
],
"scripts": {
"build": "bun run scripts/build.ts",
"build:watch": "bun run scripts/build.ts --watch",
"test": "bun test",
"test:coverage": "bun test --coverage --coverage-reporter=lcov",
"test:watch": "bun test --watch",
"lint": "biome check --apply ./src",
"format": "biome format --write ./src ./tests",
"check": "biome check ./src ./tests",
"prepublishOnly": "bun run build && bun run test:coverage",
"postbuild": "chmod +x bin/lcoview.js",
"commit": "cz",
"release": "commit-and-tag-version && git push --follow-tags && bun publish",
"release:minor": "commit-and-tag-version --release-as minor && git push --follow-tags && bun publish",
"release:major": "commit-and-tag-version --release-as major && git push --follow-tags && bun publish",
"release:patch": "commit-and-tag-version --release-as patch && git push --follow-tags && bun publish"
},
"dependencies": {
"commander": "^12.0.0",
"chalk": "^5.3.0",
"open": "^10.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.5.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/bun": "latest",
"@types/node": "^22.0.0",
"commit-and-tag-version": "^12.6.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=22.0.0",
"bun": ">=1.2.0"
},
"engineStrict": true,
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}