-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.22 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
{
"name": "eslint-plugin-tailwind",
"version": "0.2.1",
"license": "MIT",
"description": "ESLint rules for TailwindCSS",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"tailwind",
"tailwindcss"
],
"author": "Kasper Mikiewicz",
"repository": {
"type": "git",
"url": "https://github.com/Idered/eslint-plugin-tailwind"
},
"homepage": "https://github.com/Idered/eslint-plugin-tailwind",
"bugs": "https://github.com/Idered/eslint-plugin-tailwind/issues",
"main": "lib/index.js",
"scripts": {
"test": "mocha tests --reporter=min --recursive"
},
"files": [
"LICENSE",
"README.md",
"lib"
],
"dependencies": {
"eslint-html-parser": "^1.0.1"
},
"devDependencies": {
"@types/eslint": "^6.1.3",
"@types/node": "^13.1.4",
"babel-eslint": "^10.0.3",
"eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0",
"mocha": "^6.2.2",
"typescript": "^3.7.4",
"typescript-eslint-parser": "^22.0.0"
},
"peerDependencies": {
"eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"bracketSpacing": false,
"trailingComma": "es5"
},
"engines": {
"node": ">=4"
}
}