-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.36 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": "@aacn.eu/eslint-plugin-tailwind-classname-order",
"version": "0.4.3",
"description": "Automatically orders tailwind classes included in the className tags from each element by the provided default order list.",
"license": "MIT",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/aacn/eslint-plugin-tailwind-classname-order"
},
"publishConfig": {
"access": "public"
},
"files": [
"README.md",
"LICENSE.md",
"package.json",
"lib"
],
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"tailwind",
"className",
"order",
"sort"
],
"author": "AACN Software- und Systementwicklung GmbH <info@aacn.eu> (https://aacn.eu)",
"contributors": [
"Marlon Kerth <marlon@aacn.eu> (https://aacn.eu)"
],
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"build": "tsc && tsc-alias",
"build:clean": "rimraf lib && tsc && tsc-alias",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "yarn test src/rules/debug.test.ts",
"prepare": "husky install"
},
"devDependencies": {
"@types/eslint": "^8.4.6",
"@types/estree": "^1.0.0",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.19.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-eslint-plugin": "^5.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-rulesdir": "^0.2.1",
"husky": "^8.0.1",
"jest": "^29.0.1",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"tsc-alias": "^1.8.3",
"tsconfig-paths": "^4.1.2",
"typescript": "4.1.3"
},
"engines": {
"node": "^14.17.0 || ^16.0.0 || >= 18.0.0"
},
"peerDependencies": {
"eslint": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(src/.*\\.test)\\.ts$",
"testPathIgnorePatterns": [
"/node_modules/",
"\\.d\\.ts$",
"lib/.*"
],
"moduleFileExtensions": [
"js",
"ts",
"json"
],
"moduleNameMapper": {
"@/(.*)": "<rootDir>/src/$1"
}
}
}