-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.66 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.66 KB
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
{
"name": "eslint-plugin-solid",
"version": "0.13.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 <joshwilsonvu@gmail.com>",
"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 --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",
"README.md"
],
"dependencies": {
"@typescript-eslint/utils": "^6.4.0",
"is-html": "^2.0.0",
"kebab-case": "^1.0.2",
"known-css-properties": "^0.24.0",
"style-to-object": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/eslint-parser": "^7.21.3",
"@eslint/js": "^8.44.0",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@tsconfig/node16": "^16.1.0",
"@types/eslint": "^8.40.2",
"@types/fs-extra": "^9.0.13",
"@types/is-html": "^2.0.0",
"@types/jest": "^27.5.2",
"@types/markdown-magic": "^1.0.1",
"@types/node": "^16.18.16",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.43.0",
"eslint-plugin-eslint-plugin": "^5.0.8",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-solid": "link:",
"eslint-v6": "npm:eslint@^6.8.0",
"eslint-v7": "npm:eslint@^7.32.0",
"execa": "^5.1.1",
"fast-glob": "^3.2.12",
"fs-extra": "^10.1.0",
"husky": "^7.0.4",
"jest": "^29.5.0",
"jest-node-exports-resolver": "^1.1.6",
"lint-staged": "^11.2.6",
"markdown-magic": "^2.6.1",
"prettier": "^2.8.4",
"rollup": "^2.79.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"lint-staged": {
"*!(test).{js,jsx,ts,tsx}": [
"eslint --ignore-pattern test/fixture/invalid --fix",
"prettier --write"
]
},
"prettier": {
"printWidth": 100
}
}