-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
80 lines (80 loc) · 1.89 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
{
"name": "stylelint-order",
"version": "6.0.4",
"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",
"index.js",
"!.DS_Store"
],
"type": "module",
"exports": "./index.js",
"engines": {
"node": ">=18.12.0"
},
"dependencies": {
"postcss": "^8.4.47",
"postcss-sorting": "^8.0.2"
},
"peerDependencies": {
"stylelint": "^16.3.1"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-hudochenkov": "^10.0.2",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-light-runner": "^0.6.0",
"jest-preset-stylelint": "^7.1.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^15.2.10",
"postcss-html": "^1.7.0",
"postcss-less": "^6.0.0",
"postcss-styled-syntax": "^0.7.0",
"prettier": "~3.3.3",
"prettier-config-hudochenkov": "^0.4.0",
"stylelint": "^16.10.0"
},
"scripts": {
"lint": "eslint . --max-warnings 0 && prettier '**/*.js' --check",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"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"
}