{
  "name": "postcss-sorting",
  "version": "6.0.0",
  "description": "PostCSS plugin to keep rules and at-rules content in order.",
  "keywords": [
    "postcss",
    "css",
    "postcss-plugin",
    "sorting",
    "order"
  ],
  "author": "Aleks Hudochenkov <aleks@hudochenkov.com>",
  "license": "MIT",
  "repository": "hudochenkov/postcss-sorting",
  "bugs": {
    "url": "https://github.com/hudochenkov/postcss-sorting/issues"
  },
  "homepage": "https://github.com/hudochenkov/postcss-sorting",
  "files": [
    "lib",
    "!lib/**/__tests__",
    "index.js",
    "!.DS_Store"
  ],
  "dependencies": {
    "lodash": "^4.17.20"
  },
  "peerDependencies": {
    "postcss": "^8.0.4"
  },
  "devDependencies": {
    "eslint": "^7.9.0",
    "eslint-config-hudochenkov": "^7.1.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-import": "^2.22.0",
    "eslint-plugin-unicorn": "^21.0.0",
    "husky": "^4.3.0",
    "jest": "^26.4.2",
    "jest-watch-typeahead": "^0.6.1",
    "lint-staged": "^10.4.0",
    "postcss": "^8.0.4",
    "postcss-html": "^0.36.0",
    "postcss-jsx": "^0.36.4",
    "postcss-syntax": "^0.36.2",
    "prettier": "^2.1.2",
    "prettier-config-hudochenkov": "^0.2.0"
  },
  "scripts": {
    "test": "npm run lint && jest",
    "jest": "jest",
    "watch": "jest --watch",
    "coverage": "jest --coverage",
    "fix": "npm run lint -- --fix && prettier --write *.js 'lib/**/*.js'",
    "lint": "eslint *.js 'lib/**/*.js' --max-warnings=0"
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix --max-warnings=0",
      "prettier --write"
    ]
  },
  "jest": {
    "setupFiles": [
      "./jest-setup.js"
    ],
    "testEnvironment": "node",
    "testRegex": "__tests__/[a-zA-Z-.]+\\.js$",
    "watchPlugins": [
      "jest-watch-typeahead/filename",
      "jest-watch-typeahead/testname"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "prettier": "prettier-config-hudochenkov"
}
