forked from hudochenkov/stylelint-order
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.68 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
{
"name": "stylelint-order",
"version": "5.0.0",
"description": "A collection of order related linting rules for Stylelint.",
"keywords": [
"stylelint-plugin",
"stylelint",
"css",
"lint",
"order"
],
"author": "Aleks Hudochenkov <[email protected]>",
"license": "MIT",
"repository": "hudochenkov/stylelint-order",
"files": [
"rules",
"utils",
"!**/tests",
"index.js",
"!.DS_Store"
],
"main": "index.js",
"dependencies": {
"postcss": "^8.4.16",
"postcss-sorting": "^7.0.1"
},
"peerDependencies": {
"stylelint": "^14.0.0"
},
"devDependencies": {
"@stylelint/postcss-css-in-js": "^0.38.0",
"eslint": "^8.22.0",
"eslint-config-hudochenkov": "^9.0.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-preset-stylelint": "^5.0.4",
"jest-watch-typeahead": "^2.0.0",
"lint-staged": "^13.0.3",
"postcss-html": "^1.5.0",
"postcss-less": "^6.0.0",
"prettier": "~2.7.1",
"prettier-config-hudochenkov": "^0.3.0",
"stylelint": "^14.10.0"
},
"scripts": {
"lint": "eslint . --max-warnings=0 && prettier '**/*.js' --check",
"test": "jest",
"watch": "jest --watch",
"coverage": "jest --coverage",
"fix": "eslint . --fix --max-warnings=0 && prettier '**/*.js' --write",
"prepare": "husky install"
},
"lint-staged": {
"*.js": [
"eslint --fix --max-warnings=0",
"prettier --write"
]
},
"jest": {
"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"
}