-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 878 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 878 Bytes
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
{
"name": "@llbbl/uncov",
"version": "0.1.6",
"description": "Report files with low test coverage from Vitest/Istanbul output",
"type": "module",
"main": "./dist/cli.js",
"bin": {
"uncov": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "bun run src/cli.ts",
"test": "bun test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"build": "bun run scripts/build.ts",
"build:local": "bun build --compile --outfile=uncov src/cli.ts",
"build:npm": "bun build src/cli.ts --outdir=dist --target=node",
"test:coverage": "vitest run --coverage",
"coverage:low": "uncov"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/bun": "^1.3.10"
},
"keywords": [
"coverage",
"vitest",
"testing",
"cli"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/llbbl/uncov.git"
}
}