forked from thomasbrodusch/vitest-fail-on-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.8 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.5.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": {
".": {
"import": "./dist/vitest-fail-on-console.es.js",
"require": "./dist/vitest-fail-on-console.umd.js",
"types": "./dist/index.d.ts"
}
},
"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": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"husky": "^8.0.2",
"prettier": "2.8.1",
"standard-version": "^9.5.0",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite": "4.3.9",
"vite-plugin-dts": "^1.7.1",
"vite-plugin-node-stdlib-browser": "^0.2.1"
},
"dependencies": {
"vitest": "^0.26.2",
"chalk": "^5.2.0",
"node-stdlib-browser": "^1.2.0"
}
}