UNPKG

@stylelint/prettier-config

Version:

stylelint org's shareable config for prettier

57 lines (56 loc) 1.27 kB
{ "name": "@stylelint/prettier-config", "version": "3.0.0", "description": "stylelint org's shareable config for prettier", "keywords": [ "prettier", "prettierconfig" ], "repository": "stylelint/prettier-config", "license": "MIT", "author": "stylelint", "type": "module", "exports": "./prettier.config.js", "files": [ "prettier.config.js" ], "scripts": { "prepare": "husky install", "test": "npm run lint", "format": "prettier . --write", "lint": "npm-run-all --parallel lint:*", "lint:formatting": "prettier . --check", "lint:js": "eslint . --ignore-path .gitignore", "release": "np" }, "lint-staged": { "*.js": "eslint --cache --fix", "*.{js,json,md,yml}": "prettier --write" }, "eslintConfig": { "extends": [ "stylelint" ] }, "dependencies": { "prettier-plugin-packagejson": "^2.4.4" }, "devDependencies": { "eslint": "^8.44.0", "eslint-config-stylelint": "^19.0.0", "husky": "^8.0.3", "lint-staged": "^13.2.3", "np": "^8.0.4", "npm-run-all": "^4.1.5", "prettier": "^3.0.0" }, "peerDependencies": { "prettier": ">=3.0.0" }, "engines": { "node": ">=14.18.0" }, "publishConfig": { "access": "public" } }