This repository has been archived by the owner on Aug 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.62 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
97
{
"name": "@jarrodldavis/eslint-plugin-tailwindcss",
"version": "0.4.0",
"description": "An ESLint plugin to enforce usage of Tailwind CSS utility and component classes.",
"main": "dist/lib/index.js",
"files": [
"dist/lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "run-s -ns prepare:*",
"prepack": "run-s -ns test",
"pretest": "run-s -ns lint:* build:*",
"test": "mocha",
"postversion": "run-s push:*",
"prepare:patch": "patch-package",
"lint": "run-s -cns lint:*",
"lint:format": "prettier --check .",
"lint:ts": "tsc --noEmit",
"lint:es": "eslint .",
"build": "run-s -ns build:*",
"build:clean": "rimraf dist",
"build:ts": "tsc",
"push:npm": "npm publish",
"push:github": "npm publish --registry=https://npm.pkg.github.com",
"push:branch": "git push",
"push:tags": "git push --tags"
},
"engines": {
"node": "^12.18.3 || ^14.14.0",
"npm": "^6.14.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jarrodldavis/eslint-plugin-tailwindcss.git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"tailwind",
"tailwindcss",
"css",
"functional-css",
"utility-css",
"clsx",
"classname",
"classnames",
"classcat",
"classlist"
],
"author": "Jarrod Davis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jarrodldavis/eslint-plugin-tailwindcss/issues"
},
"homepage": "https://github.com/jarrodldavis/eslint-plugin-tailwindcss#readme",
"peerDependencies": {
"eslint": "^7.13.0",
"postcss": "^8.1.7",
"tailwindcss": "^1.9.6"
},
"dependencies": {
"ajv": "^6.12.6",
"esquery": "^1.3.1",
"postcss-load-config": "^3.0.0",
"postcss-selector-parser": "^6.0.4"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.1.4",
"@tailwindcss/ui": "^0.7.2",
"@types/eslint": "^7.2.4",
"@types/esquery": "^1.0.1",
"@types/estree-jsx": "0.0.0",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^8.2.1",
"npm-run-all": "^4.1.5",
"patch-package": "^6.2.2",
"postcss": "^8.1.7",
"postcss-extend": "^1.0.5",
"postcss-import": "^13.0.0",
"postcss-nested": "^5.0.1",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"tailwindcss": "^1.9.6",
"typescript": "^4.0.5"
}
}