{
  "name": "stylelint-config-prettier",
  "version": "8.0.2",
  "description": "Turns off all rules that are unnecessary or might conflict with Prettier.",
  "scripts": {
    "prepublishOnly": "npm run test",
    "pretest": "npm run lint && npm run format",
    "lint": "npr eslint --fix \"{bin,src,test}/*.js\"",
    "format": "npr prettier --write \"{bin,src,test}/*.js\"",
    "test": "node test/checker.js"
  },
  "keywords": [
    "stylelint",
    "prettier",
    "config",
    "lint",
    "css"
  ],
  "author": "Shannon Moeller <me@shannonmoeller.com>",
  "contributors": [
    "Corentin Tenret <tenretcorentin@gmail.com>"
  ],
  "repository": "prettier/stylelint-config-prettier",
  "license": "MIT",
  "type": "commonjs",
  "main": "src/index.js",
  "bin": {
    "stylelint-config-prettier": "bin/check.js",
    "stylelint-config-prettier-check": "bin/check.js"
  },
  "peerDependencies": {
    "stylelint": ">=11.0.0"
  },
  "devDependencies": {
    "npm-bin-deps": "^1.9.0",
    "eslint-config-prettier": "^6.11.0"
  },
  "binDependencies": {
    "eslint": "^7.3.0",
    "prettier": "^2.0.5"
  },
  "eslintConfig": {
    "env": {
      "es6": true,
      "node": true
    },
    "extends": [
      "eslint:recommended",
      "eslint-config-prettier"
    ],
    "parserOptions": {
      "ecmaVersion": 2019
    }
  },
  "prettier": {
    "singleQuote": true
  },
  "engines": {
    "node": ">= 10",
    "npm": ">= 5"
  }
}
