forked from solidjs-community/eslint-plugin-solid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.71 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
90
91
92
93
94
95
96
{
"name": "eslint-plugin-solid",
"version": "0.13.2",
"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": "./node_modules/eslint-v8/bin/eslint.js --ignore-pattern test/fixture/invalid .",
"docs": "PARSER=none ts-node --transpile-only scripts/docs.ts",
"test": "jest",
"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",
"@eslint/js": "8.57.0",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "14.1.0",
"@tsconfig/node20": "20.1.4",
"@types/eslint": "8.56.7",
"@types/estraverse": "5.1.7",
"@types/fs-extra": "11.0.4",
"@types/is-html": "2.0.2",
"@types/jest": "29.5.12",
"@types/node": "16.18.16",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"eslint": "8.56.0",
"eslint-plugin-eslint-plugin": "5.5.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-solid": "link:",
"eslint-v6": "npm:[email protected]",
"eslint-v7": "npm:[email protected]",
"eslint-v8": "npm:[email protected]",
"execa": "8.0.1",
"fast-glob": "3.3.2",
"fs-extra": "11.2.0",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-node-exports-resolver": "1.1.6",
"lint-staged": "15.2.2",
"markdown-magic": "3.0.5",
"prettier": "3.2.5",
"rollup": "2.79.1",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.4.4"
},
"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
}
}