-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 761 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 761 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
{
"name": "vitest-failed-summary-reporter",
"version": "0.0.2",
"description": "A vitest reporter that prints a summary of failed tests",
"private": false,
"sideEffects": false,
"type": "module",
"module": "build/index.js",
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [
"vitest",
"vitest reporter",
"test fail summary"
],
"author": "https://github.com/hjoelh",
"license": "MIT",
"files": [
"build"
],
"scripts": {
"dev": "pnpm tsc --watch",
"build": "rm -rf ./build && pnpm tsc",
"pack": "pnpm pack",
"publish:test": "npm publish --dry-run",
"buildNPublish": "pnpm build && npm publish"
},
"dependencies": {},
"devDependencies": {
"typescript": "5.4.2"
}
}