-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
84 lines (84 loc) · 2.1 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "eslint-plugin-vitest",
"version": "0.5.2",
"license": "MIT",
"description": "Eslint plugin for vitest",
"type": "module",
"repository": "veritem/eslint-plugin-vitest",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"vitest eslint plugin",
"vitest",
"eslint plugin"
],
"author": "Verite Mugabo Makuza <https://veritemugabo.com/>",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"default": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"lint:eslint-docs": "pnpm build && eslint-doc-generator --check",
"lint:js": "eslint . --fix",
"lint": "concurrently --prefixColors auto \"pnpm:lint:*\"",
"release": "pnpm build && bumpp package.json --commit --push --tag && pnpm publish",
"stub": "unbuild --stub",
"test:ci": "vitest run",
"test": "vitest",
"generate": "tsx scripts/generate.ts",
"update:eslint-docs": "pnpm build && eslint-doc-generator",
"tsc": "tsc --noEmit"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^1.7.0",
"@types/eslint": "^8.56.7",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.5",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@typescript-eslint/rule-tester": "^7.6.0",
"@veritem/eslint-config": "^0.0.11",
"bumpp": "^9.4.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-doc-generator": "^1.7.0",
"eslint-plugin-eslint-plugin": "^5.5.1",
"eslint-plugin-vitest": "0.4.2-beta.5",
"eslint-remote-tester": "^3.0.1",
"eslint-remote-tester-repositories": "^1.0.1",
"ts-node": "^10.9.2",
"tsx": "^4.7.2",
"typescript": "^5.4.4",
"unbuild": "^2.0.0",
"vitest": "^1.4.0"
},
"engines": {
"node": "^18.0.0 || >= 20.0.0"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
"vitest": "*"
},
"peerDependenciesMeta": {
"@typescript-eslint/eslint-plugin": {
"optional": true
},
"vitest": {
"optional": true
}
},
"dependencies": {
"@typescript-eslint/utils": "^7.6.0"
}
}