package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "postcss-page-break",
  3. "version": "3.0.4",
  4. "description": "PostCSS plugin postcss-page-break to fallback `break-` properties with `page-break-` alias",
  5. "files": [
  6. "/index.js"
  7. ],
  8. "scripts": {
  9. "test": "jest && npm run lint",
  10. "lint": "eslint *.js",
  11. "lint:fix": "eslint *.js --fix"
  12. },
  13. "keywords": [
  14. "postcss",
  15. "css",
  16. "postcss-plugin",
  17. "break",
  18. "break-inside",
  19. "page-break-inside",
  20. "avoid"
  21. ],
  22. "author": "shrpne <shrpne@gmail.com>",
  23. "license": "MIT",
  24. "repository": {
  25. "type" : "git",
  26. "url" : "https://github.com/shrpne/postcss-page-break"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/shrpne/postcss-page-break/issues"
  30. },
  31. "peerDependencies": {
  32. "postcss": "^8"
  33. },
  34. "devDependencies": {
  35. "eslint": "^7.10.0",
  36. "eslint-config-google": "^0.14.0",
  37. "eslint-plugin-jest": "^24.0.2",
  38. "eslint-plugin-node": "^11.1.0",
  39. "eslint-plugin-security": "^1.4.0",
  40. "eslint-plugin-unicorn": "^22.0.0",
  41. "jest": "^26.4.2",
  42. "postcss": "^8.1.0"
  43. }
  44. }