{
  "name": "eslint-plugin-css-import-order",
  "version": "1.1.0",
  "description": "A simple eslint rule to correctly order css imports",
  "main": "lib/index.js",
  "scripts": {
    "clean": "rimraf lib",
    "prebuild": "rimraf node_modules/@types/eslint/node_modules/@types/estree",
    "build": "tsc",
    "test": "jest",
    "prepublish": "npm run clean && npm run build"
  },
  "keywords": [
    "eslint",
    "typescript",
    "imports"
  ],
  "author": "777PolarFox777",
  "license": "MIT",
  "devDependencies": {
    "@types/eslint": "8.2.1",
    "@types/estree": "0.0.50",
    "@types/node": "17.0.2",
    "@typescript-eslint/parser": "5.8.0",
    "eslint": "^8.5.0",
    "husky": "7.0.4",
    "jest": "27.4.5",
    "prettier": "2.5.1",
    "pretty-quick": "3.1.3",
    "rimraf": "3.0.2",
    "ts-jest": "27.1.2",
    "typescript": "4.5.4"
  },
  "peerDependencies": {
    "eslint": ">= 6.0.0 < 9.0.0"
  },
  "jest": {
    "globals": {
      "ts-jest": {
        "diagnostics": false
      }
    },
    "transform": {
      "^.+\\.ts$": "ts-jest"
    },
    "testRegex": "(src/.*\\.test)\\.ts$",
    "testPathIgnorePatterns": [
      "/node_modules/",
      "\\.d\\.ts$",
      "lib/.*"
    ],
    "moduleFileExtensions": [
      "js",
      "ts",
      "json"
    ]
  }
}
