You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
897 B

7 years ago
  1. {
  2. "name": "postcss-px-to-viewport",
  3. "description": "A CSS post-processor that converts px to viewport units (vw, vh, vmin, vmax).",
  4. "version": "1.1.1",
  5. "author": "Dmitry Karpunin <koderfunk@gmail.com>",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "git@github.com:evrone/postcss-px-to-viewport.git"
  10. },
  11. "bugs": "https://github.com/evrone/postcss-px-to-viewport/issues",
  12. "homepage": "https://github.com/evrone/postcss-px-to-viewport",
  13. "main": "index.js",
  14. "keywords": [
  15. "css",
  16. "units",
  17. "pixel",
  18. "px",
  19. "viewport",
  20. "vw",
  21. "vh",
  22. "vmin",
  23. "vmax",
  24. "postcss",
  25. "postcss-plugin"
  26. ],
  27. "scripts": {
  28. "test": "jest spec/*.spec.js"
  29. },
  30. "dependencies": {
  31. "object-assign": ">=4.0.1"
  32. },
  33. "devDependencies": {
  34. "jest": "^25.4.0",
  35. "postcss": ">=5.0.2"
  36. },
  37. "peerDependencies": {
  38. "postcss": ">=5.0.2"
  39. }
  40. }