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.
38 lines
849 B
38 lines
849 B
5 months ago
|
{
|
||
|
"name": "postcss-px-to-viewport",
|
||
|
"description": "A CSS post-processor that converts px to viewport units (vw, vh, vmin, vmax).",
|
||
|
"version": "1.1.1",
|
||
|
"author": "Dmitry Karpunin <koderfunk@gmail.com>",
|
||
|
"license": "MIT",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git@github.com:evrone/postcss-px-to-viewport.git"
|
||
|
},
|
||
|
"bugs": "https://github.com/evrone/postcss-px-to-viewport/issues",
|
||
|
"homepage": "https://github.com/evrone/postcss-px-to-viewport",
|
||
|
"main": "index.js",
|
||
|
"scripts": {
|
||
|
"test": "jasmine-node spec"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"jasmine-node": "~1.11.0"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"css",
|
||
|
"units",
|
||
|
"pixel",
|
||
|
"px",
|
||
|
"viewport",
|
||
|
"vw",
|
||
|
"vh",
|
||
|
"vmin",
|
||
|
"vmax",
|
||
|
"postcss",
|
||
|
"postcss-plugin"
|
||
|
],
|
||
|
"dependencies": {
|
||
|
"object-assign": ">=4.0.1",
|
||
|
"postcss": ">=5.0.2"
|
||
|
}
|
||
|
}
|