-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.5 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
{
"name": "eslint-plugin-fix-later",
"version": "0.0.0-semantic-release",
"description": "ESLint plugin to suppresses ESLint errors as warnings for future resolution",
"keywords": [
"eslint",
"plugin",
"fix",
"later",
"suppress",
"errors",
"warnings"
],
"license": "MIT",
"repository": "privatenumber/eslint-plugin-fix-later",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"dist"
],
"main": "./dist/index.cjs",
"exports": "./dist/index.cjs",
"imports": {
"eslint": {
"eslint7": "eslint7",
"eslint8": "eslint8"
},
"eslint/*": {
"eslint7": "eslint7/*",
"eslint8": "eslint8/*"
}
},
"packageManager": "pnpm@9.2.0",
"scripts": {
"test": "tsx tests",
"dev": "tsx watch tests",
"build": "pkgroll",
"lint": "lintroll . --ignore-pattern README.md",
"type-check": "tsc",
"prepack": "pnpm build && clean-pkg-json"
},
"peerDependencies": {
"eslint": "^7.0.0"
},
"devDependencies": {
"@types/eslint": "^8.56.10",
"@types/estree": "^1.0.5",
"@types/node": "^20.14.11",
"alias-imports": "^1.1.0",
"clean-pkg-json": "^1.2.0",
"dot-prop": "^8.0.2",
"eslint-plugin-vue": "^9.27.0",
"eslint7": "npm:eslint@7.0.0",
"eslint8": "npm:eslint@^8.56.0",
"execa": "^8.0.1",
"find-up-simple": "^1.0.0",
"fs-fixture": "^2.4.0",
"ignore": "^5.3.1",
"lintroll": "^1.8.1",
"manten": "^1.3.0",
"outdent": "^0.8.0",
"pkgroll": "^2.4.1",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vue-eslint-parser": "^9.4.3"
}
}