package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "postcss-prefix-selector",
  3. "description": "Prefix all CSS rules with a selector",
  4. "version": "1.16.0",
  5. "author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
  6. "contributors": [
  7. "Valentin Radulescu <hi@valentin.io> (https://valentin.io)"
  8. ],
  9. "license": "MIT",
  10. "repository": "RadValentin/postcss-prefix-selector",
  11. "bugs": "https://github.com/RadValentin/postcss-prefix-selector/issues",
  12. "homepage": "https://github.com/RadValentin/postcss-prefix-selector",
  13. "peerDependencies": {
  14. "postcss": ">4 <9"
  15. },
  16. "devDependencies": {
  17. "husky": "^4.0.2",
  18. "istanbul": "~0.4.5",
  19. "lint-staged": "^10.0.3",
  20. "mocha": "^9.2.2",
  21. "postcss": "^8.0.0",
  22. "postcss-nested": "^5.0.6",
  23. "prettier": "^2.0.0"
  24. },
  25. "scripts": {
  26. "test": "mocha",
  27. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
  28. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot",
  29. "lint": "prettier --write '**/*.{js,css}'"
  30. },
  31. "lint-staged": {
  32. "*.js": [
  33. "prettier --write"
  34. ]
  35. },
  36. "prettier": {
  37. "printWidth": 80,
  38. "singleQuote": true
  39. },
  40. "keywords": [
  41. "postcss",
  42. "prefix",
  43. "selectors",
  44. "postcss-plugin",
  45. "css",
  46. "selector",
  47. "plugin"
  48. ],
  49. "files": [
  50. "index.js"
  51. ],
  52. "husky": {
  53. "hooks": {
  54. "pre-commit": "lint-staged"
  55. }
  56. }
  57. }