-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.87 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
{
"name": "stylelint-order",
"version": "8.1.1",
"description": "A collection of order related linting rules for Stylelint.",
"keywords": [
"stylelint-plugin",
"stylelint",
"css",
"lint",
"order"
],
"author": "Aleks Hudochenkov <aleks@hudochenkov.com>",
"license": "MIT",
"repository": "hudochenkov/stylelint-order",
"files": [
"rules",
"utils",
"!**/tests",
"!**/__tests__",
"index.js",
"!.DS_Store"
],
"type": "module",
"exports": "./index.js",
"engines": {
"node": ">=20.19.0"
},
"dependencies": {
"postcss": "^8.5.8",
"postcss-sorting": "^10.0.0"
},
"peerDependencies": {
"stylelint": "^16.18.0 || ^17.0.0"
},
"devDependencies": {
"eslint": "^9.39.4",
"eslint-config-hudochenkov": "^13.0.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-light-runner": "^0.7.11",
"jest-preset-stylelint": "^9.1.0",
"jest-watch-typeahead": "^3.0.1",
"lint-staged": "^16.3.2",
"postcss-html": "^1.8.1",
"postcss-less": "^6.0.0",
"postcss-styled-syntax": "^0.7.1",
"prettier": "~3.8.1",
"prettier-config-hudochenkov": "^0.4.0",
"stylelint": "^17.4.0"
},
"scripts": {
"lint": "eslint . --max-warnings 0 && prettier '**/*.js' --check",
"test": "jest",
"watch": "npm run test -- --watch",
"coverage": "npm run test -- --coverage",
"fix": "eslint . --fix --max-warnings 0 && prettier '**/*.js' --write",
"prepare": "husky"
},
"lint-staged": {
"*.js": [
"eslint --fix --max-warnings 0",
"prettier --write"
]
},
"jest": {
"runner": "jest-light-runner",
"preset": "jest-preset-stylelint",
"setupFiles": [
"./jest-setup.js"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
],
"testEnvironment": "node",
"testRegex": ".*\\.test\\.js$|rules/.*/tests/.*\\.js$"
},
"prettier": "prettier-config-hudochenkov"
}