package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "postcss-prefix-selector",
  3. "description": "Prefix all CSS rules with a selector",
  4. "version": "1.14.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": "7.x || 8.x"
  15. },
  16. "devDependencies": {
  17. "husky": "^4.0.2",
  18. "istanbul": "~0.4.5",
  19. "lint-staged": "^10.0.3",
  20. "mocha": "~7.2.0",
  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. "git add"
  35. ]
  36. },
  37. "prettier": {
  38. "printWidth": 80,
  39. "singleQuote": true
  40. },
  41. "keywords": [
  42. "postcss",
  43. "prefix",
  44. "selectors",
  45. "postcss-plugin",
  46. "css",
  47. "selector",
  48. "plugin"
  49. ],
  50. "files": [
  51. "index.js"
  52. ],
  53. "husky": {
  54. "hooks": {
  55. "pre-commit": "lint-staged"
  56. }
  57. }
  58. }