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.

37 lines
849 B

7 years ago
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.0.0",
  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. "scripts": {
  15. "test": "jasmine-node spec"
  16. },
  17. "devDependencies": {
  18. "jasmine-node": "~1.11.0"
  19. },
  20. "keywords": [
  21. "css",
  22. "units",
  23. "pixel",
  24. "px",
  25. "viewport",
  26. "vw",
  27. "vh",
  28. "vmin",
  29. "vmax",
  30. "postcss",
  31. "postcss-plugin"
  32. ],
  33. "dependencies": {
  34. "object-assign": ">=4.0.1",
  35. "postcss": ">=5.0.2"
  36. }
  37. }