-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.7 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
{
"name": "vitest-fail-on-console",
"version": "0.7.1",
"description": "Utility to make vitest tests fail when console.error() or console.warn() are used",
"scripts": {
"prebuild": "rm -rf dist",
"build": "vite build",
"lint": "yarn eslint .",
"test": "vitest related ./tests/index.spec.ts --run",
"release": "standard-version",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomasbrodusch/vitest-fail-on-console.git"
},
"keywords": [
"vitest",
"testing",
"utility",
"console-warning"
],
"author": "Thomas Brodusch <[email protected]>",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/vitest-fail-on-console.es.js"
}
},
"types": "./dist/index.d.ts",
"bugs": {
"url": "https://github.com/thomasbrodusch/vitest-fail-on-console/issues"
},
"homepage": "https://github.com/thomasbrodusch/vitest-fail-on-console#readme",
"devDependencies": {
"@commitlint/cli": "19.4.1",
"@commitlint/config-conventional": "19.2.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.0",
"husky": "9.1.5",
"prettier": "3.3.3",
"standard-version": "9.5.0",
"typescript": "5.5.4",
"vite": "5.4.2",
"vite-plugin-dts": "3.9.1",
"vitest": "2.0.5"
},
"dependencies": {
"chalk": "^5.3.0"
},
"peerDependencies": {
"vitest": ">=0.26.2",
"vite": ">=4.5.2"
}
}