74 lines
1.7 KiB
JSON
74 lines
1.7 KiB
JSON
|
{
|
||
|
"name": "stylelint-order",
|
||
|
"version": "6.0.3",
|
||
|
"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"
|
||
|
],
|
||
|
"main": "index.js",
|
||
|
"dependencies": {
|
||
|
"postcss": "^8.4.21",
|
||
|
"postcss-sorting": "^8.0.2"
|
||
|
},
|
||
|
"peerDependencies": {
|
||
|
"stylelint": "^14.0.0 || ^15.0.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"eslint": "^8.33.0",
|
||
|
"eslint-config-hudochenkov": "^9.0.0",
|
||
|
"eslint-config-prettier": "^8.6.0",
|
||
|
"husky": "^8.0.3",
|
||
|
"jest": "^29.4.2",
|
||
|
"jest-preset-stylelint": "^6.0.0",
|
||
|
"jest-watch-typeahead": "^2.2.2",
|
||
|
"lint-staged": "^13.1.1",
|
||
|
"postcss-html": "^1.5.0",
|
||
|
"postcss-less": "^6.0.0",
|
||
|
"postcss-styled-syntax": "^0.4.0",
|
||
|
"prettier": "~2.8.4",
|
||
|
"prettier-config-hudochenkov": "^0.3.0",
|
||
|
"stylelint": "^15.2.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"
|
||
|
}
|