1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "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 <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"
- },
- "engines": {
- "node": ">= 12"
- },
- "eslintConfig": {
- "extends": "eslint:recommended",
- "env": {
- "node": true
- },
- "parserOptions": {
- "ecmaVersion": 8
- }
- },
- "prettier": {
- "singleQuote": true
- }
- }
|