package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "stylelint-config-prettier",
  3. "version": "9.0.4",
  4. "description": "Turns off all rules that are unnecessary or might conflict with Prettier.",
  5. "scripts": {
  6. "lint": "npx eslint --fix \"**/*.js\" && npx prettier --write \"**/*.js\"",
  7. "test": "node test/checker.js",
  8. "cover": "npx c8 npm test"
  9. },
  10. "keywords": [
  11. "stylelint",
  12. "prettier",
  13. "config",
  14. "lint",
  15. "css"
  16. ],
  17. "author": "Shannon Moeller <me@shannonmoeller.com>",
  18. "contributors": [
  19. "Corentin Tenret <tenretcorentin@gmail.com>"
  20. ],
  21. "repository": "prettier/stylelint-config-prettier",
  22. "license": "MIT",
  23. "type": "commonjs",
  24. "main": "src/index.js",
  25. "bin": {
  26. "stylelint-config-prettier": "bin/check.js",
  27. "stylelint-config-prettier-check": "bin/check.js"
  28. },
  29. "peerDependencies": {
  30. "stylelint": ">=11.0.0"
  31. },
  32. "engines": {
  33. "node": ">= 12"
  34. },
  35. "eslintConfig": {
  36. "extends": "eslint:recommended",
  37. "env": {
  38. "node": true
  39. },
  40. "parserOptions": {
  41. "ecmaVersion": 8
  42. }
  43. },
  44. "prettier": {
  45. "singleQuote": true
  46. }
  47. }