{
  "name": "stylelint-find-rules",
  "version": "2.2.0",
  "description": "Find stylelint rules that you don't have in your config",
  "main": "index.js",
  "scripts": {
    "start": "node index.js",
    "start-mixed": "node index.js --config tests/configs/mixed.config.js --test-deprecated",
    "base-prettier": "prettier --ignore-path .gitignore",
    "base-eslint": "eslint --ignore-path .gitignore --rule 'no-console: 1'",
    "format": "npm run base-eslint -- --fix \"**/*.js\" && npm run base-prettier -- --write \"**/*.js\"",
    "lint-prettier": "npm run base-prettier -- -l \"**/*.js\"",
    "lint-eslint": "npm run base-eslint -- --max-warnings 0 \"**/*.js\"",
    "lint": "npm run lint-prettier && npm run lint-eslint",
    "test": "jest ./src",
    "test-watch": "npm run test -- --watch --notify",
    "test-coverage": "npm run test -- --coverage",
    "test-ci": "npm run test-coverage"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "npm run base-eslint -- --fix --max-warnings 0",
      "npm run base-prettier -- --write",
      "git add"
    ]
  },
  "bin": {
    "stylelint-find-rules": "src/bin/stylelint-find-rules.js"
  },
  "dependencies": {
    "bluebird": "3.7.0",
    "chalk": "2.4.2",
    "columnify": "1.5.4",
    "cosmiconfig": "5.2.1",
    "lodash": "4.17.15",
    "yargs": "14.0.0"
  },
  "devDependencies": {
    "babel-eslint": "10.0.3",
    "eslint": "6.5.1",
    "eslint-config-ai": "1.7.0",
    "eslint-config-prettier": "6.4.0",
    "eslint-find-rules": "3.4.0",
    "eslint-plugin-jest": "22.17.0",
    "eslint-plugin-lodash": "6.0.0",
    "eslint-plugin-promise": "4.2.1",
    "husky": "3.0.8",
    "jest": "24.9.0",
    "lint-staged": "9.4.1",
    "prettier": "1.18.2",
    "stylelint": "9.9.0",
    "stylelint-config-recommended": "2.1.0",
    "stylelint-config-standard": "18.2.0"
  },
  "peerDependencies": {
    "stylelint": ">=8.3.0"
  },
  "engines": {
    "node": "^8.12.0 || >=9.7.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/alexilyaev/stylelint-find-rules.git"
  },
  "keywords": [],
  "author": "Alex Ilyaev",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/alexilyaev/stylelint-find-rules/issues"
  },
  "homepage": "https://github.com/alexilyaev/stylelint-find-rules#readme"
}
