{ "name": "stylelint-config-prettier", "version": "9.0.4", "description": "Turns off all rules that are unnecessary or might conflict with Prettier.", "scripts": { "lint": "npx eslint --fix \"**/*.js\" && npx prettier --write \"**/*.js\"", "test": "node test/checker.js", "cover": "npx c8 npm test" }, "keywords": [ "stylelint", "prettier", "config", "lint", "css" ], "author": "Shannon Moeller ", "contributors": [ "Corentin Tenret " ], "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" }, "engines": { "node": ">= 12" }, "eslintConfig": { "extends": "eslint:recommended", "env": { "node": true }, "parserOptions": { "ecmaVersion": 8 } }, "prettier": { "singleQuote": true } }