forked from solidjs-community/eslint-plugin-solid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.53 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
85
86
87
88
89
{
"name": "eslint-plugin-solid",
"version": "0.14.0",
"description": "Solid-specific linting rules for ESLint.",
"keywords": [
"eslint",
"eslintplugin",
"solid",
"solidjs",
"reactivity"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/solidjs-community/eslint-plugin-solid",
"author": "Josh Wilson <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"prepare": "husky install",
"prepublishOnly": "pnpm build && pnpm lint && prettier --check src && pnpm test:all",
"build": "tsc -p tsconfig.build.json && pnpm run docs",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --ignore-pattern test/fixture/invalid .",
"docs": "PARSER=none tsx scripts/docs.ts",
"test": "vitest",
"test:ts": "PARSER=ts pnpm test",
"test:babel": "PARSER=babel pnpm test",
"test:v6": "PARSER=v6 pnpm test",
"test:v7": "PARSER=v7 pnpm test",
"test:all": "PARSER=all pnpm test"
},
"files": [
"src",
"dist",
"configs",
"README.md"
],
"dependencies": {
"@typescript-eslint/utils": "^7.6.0",
"estraverse": "^5.3.0",
"is-html": "^2.0.0",
"kebab-case": "^1.0.2",
"known-css-properties": "^0.30.0",
"style-to-object": "^1.0.6"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@tsconfig/node20": "^20.1.4",
"@types/eslint-v6": "npm:@types/eslint@6",
"@types/eslint-v7": "npm:@types/eslint@7",
"@types/eslint-v8": "npm:@types/eslint@8",
"@types/estraverse": "^5.1.7",
"@types/is-html": "^2.0.2",
"@types/markdown-magic": "^1.0.4",
"@types/node": "^16.18.94",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^9.0.0",
"eslint-plugin-eslint-plugin": "^5.5.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-solid": "link:",
"eslint-v6": "npm:eslint@6",
"eslint-v7": "npm:eslint@7",
"eslint-v8": "npm:eslint@8",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"markdown-magic": "^2.6.1",
"prettier": "^2.8.8",
"tsx": "^4.7.3",
"typescript": "^5.4.3",
"typescript-eslint": "^7.7.1",
"vitest": "^1.5.2"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
},
"lint-staged": {
"*!(test).{js,jsx,ts,tsx}": [
"eslint --ignore-pattern test/fixture/invalid --fix",
"prettier --write"
]
},
"prettier": {
"printWidth": 100
}
}