This repository has been archived by the owner on Aug 26, 2021. It is now read-only.
forked from hudochenkov/stylelint-order
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.9 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
{
"name": "@rp-magrathea/stylelint-alphabetical-clockwise-order",
"version": "1.0.0",
"description": "A property ordering rule for stylelint.",
"keywords": [
"stylelint-plugin",
"stylelint",
"css",
"lint",
"order"
],
"license": "MIT",
"repository": "git://github.com/rp-magrathea/stylelint-alphabetical-clockwise-order.git",
"files": [
"rules",
"utils",
"!**/tests",
"index.js",
"!.DS_Store"
],
"main": "index.js",
"dependencies": {
"lodash": "^4.17.15",
"postcss": "^7.0.27",
"postcss-sorting": "^5.0.1"
},
"peerDependencies": {
"stylelint": "^10.0.1 || ^11.0.0 || ^12.0.0 || ^13.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-hudochenkov": "^5.0.3",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-unicorn": "^18.0.1",
"husky": "^4.2.5",
"jest": "^25.5.4",
"jest-preset-stylelint": "^3.0.0",
"jest-watch-typeahead": "^0.5.0",
"lint-staged": "^10.2.4",
"prettier": "^2.0.5",
"prettier-config-hudochenkov": "^0.2.0",
"stylelint": "^13.5.0"
},
"scripts": {
"pretest": "eslint . --max-warnings=0 && prettier '**/*.js' --check",
"test": "jest",
"jest": "jest",
"watch": "jest --watch",
"coverage": "jest --coverage",
"fix": "eslint . --fix --max-warnings=0 && prettier '**/*.js' --write"
},
"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$"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": "prettier-config-hudochenkov"
}