-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.94 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
{
"name": "vitest-tiny-reporter",
"version": "0.0.0-development",
"description": "Tiny reporter for vitest",
"types": "dist/types/index.d.ts",
"files": ["dist"],
"keywords": ["vitest", "reporter", "lefthook"],
"scripts": {
"build": "npx concurrently npm:build:*",
"build:vite": "vite build",
"build:tsc": "tsc -b tsconfig.types.json",
"test": "vitest run",
"coverage": "vitest run --coverage",
"test:watch": "vitest --watch --coverage --ui",
"prepublish": "npm run build",
"semantic-release": "semantic-release",
"lint": "npx @biomejs/biome check",
"lint:fix": "npx @biomejs/biome check --write"
},
"repository": {
"type": "git",
"url": "https://github.com/manbearwiz/vitest-tiny-reporter.git"
},
"author": "Kevin Brey",
"license": "MIT",
"bugs": {
"url": "https://github.com/manbearwiz/vitest-tiny-reporter/issues"
},
"homepage": "https://github.com/manbearwiz/vitest-tiny-reporter#readme",
"peerDependencies": {
"@vitest/runner": "^2.0.0 || ^3.0.2",
"vitest": "^2.0.0 || ^3.0.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-angular": "^19.3.0",
"@tsconfig/recommended": "^1.0.3",
"@tsconfig/strictest": "^2.0.2",
"@tsconfig/vite-react": "^3.0.2",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^2.0.0 || ^3.0.2",
"@vitest/ui": "^2.0.0 || ^3.0.2",
"happy-dom": "^16.2.9",
"semantic-release": "^24.2.0",
"typescript": "^5.2.2",
"vite": "^6.0.1"
},
"dependencies": {
"tinyrainbow": "^1.2.0 || ^2.0.0"
},
"release": {
"branches": ["main"]
},
"type": "module",
"main": "./dist/vitest-tiny-reporter.umd.cjs",
"module": "./dist/vitest-tiny-reporter.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/vitest-tiny-reporter.js",
"require": "./dist/vitest-tiny-reporter.umd.cjs"
}
},
"sideEffects": false
}