-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
36 lines (36 loc) · 949 Bytes
/
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
{
"name": "stylelint-config-clean-order",
"version": "7.0.0",
"description": "Order your styles with stylelint-order.",
"keywords": [
"stylelint",
"stylelint-config",
"stylelint-order",
"property order"
],
"repository": "github:kutsan/stylelint-config-clean-order",
"license": "MIT",
"author": "Kutsan Kaplan <[email protected]> (https://kutsan.dev)",
"main": "./warning.js",
"files": [
"src/**/*.js",
"warning.js",
"error.js"
],
"scripts": {
"test": "stylelint --config ./warning.js --max-warnings 0 -- ./test/test.css",
"format": "npm run format:prettier",
"format:prettier": "prettier --write --list-different .",
"format:test": "stylelint --config ./warning.js --fix -- ./test/test.css"
},
"dependencies": {
"stylelint-order": "^6.0.4"
},
"devDependencies": {
"husky": "^8.0.3",
"stylelint": "^15.1.0"
},
"peerDependencies": {
"stylelint": ">=14"
}
}