-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 900 Bytes
/
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
{
"name": "@kalimahapps/eslint-plugin-tailwind",
"description": "Provide eslint rules for tailwindcss",
"author": "khr2003",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "https://github.com/kalimahapps/eslint-plugin-tailwind.git"
},
"bugs": {
"url": "https://github.com/kalimahapps/eslint-plugin-tailwind/issues"
},
"license": "MIT",
"scripts": {
"coverage": "vitest run --coverage",
"test": "vitest"
},
"dependencies": {
"lodash.orderby": "^4.6.0"
},
"devDependencies": {
"@kalimahapps/eslint-config": "^1.1.7",
"@vitest/coverage-v8": "^1.5.2",
"eslint": "^9.1.1",
"vitest": "^0.34.3",
"vue-eslint-parser": "^9.3.1"
},
"keywords": [
"tailwindcss",
"eslint",
"eslint-plugin",
"vue",
"vue3"
],
"main": "index.js",
"files": [
"rules",
"index.js",
"readme.md",
"package.json",
"LICENSE"
],
"engines": {
"node": ">=14.16"
}
}