{
	"name": "stylelint-order",
	"version": "8.1.1",
	"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",
		"!**/__tests__",
		"index.js",
		"!.DS_Store"
	],
	"type": "module",
	"exports": "./index.js",
	"engines": {
		"node": ">=20.19.0"
	},
	"dependencies": {
		"postcss": "^8.5.8",
		"postcss-sorting": "^10.0.0"
	},
	"peerDependencies": {
		"stylelint": "^16.18.0 || ^17.0.0"
	},
	"devDependencies": {
		"eslint": "^9.39.4",
		"eslint-config-hudochenkov": "^13.0.0",
		"eslint-config-prettier": "^10.1.8",
		"globals": "^17.4.0",
		"husky": "^9.1.7",
		"jest": "^30.2.0",
		"jest-light-runner": "^0.7.11",
		"jest-preset-stylelint": "^9.1.0",
		"jest-watch-typeahead": "^3.0.1",
		"lint-staged": "^16.3.2",
		"postcss-html": "^1.8.1",
		"postcss-less": "^6.0.0",
		"postcss-styled-syntax": "^0.7.1",
		"prettier": "~3.8.1",
		"prettier-config-hudochenkov": "^0.4.0",
		"stylelint": "^17.4.0"
	},
	"scripts": {
		"lint": "eslint . --max-warnings 0 && prettier '**/*.js' --check",
		"test": "jest",
		"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"
}
