54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"name": "stylelint-rem-over-px",
|
|
"version": "1.0.1",
|
|
"description": "A stylelint rule to enforce the usage of rem units over px units.",
|
|
"main": "index.js",
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/a-tokyo/stylelint-rem-over-px.git"
|
|
},
|
|
"author": {
|
|
"name": "Ahmed Tarek",
|
|
"email": "ahmed.tokyo1@gmail.com",
|
|
"url": "https://github.com/A-Tokyo"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/a-tokyo/stylelint-rem-over-px/issues"
|
|
},
|
|
"homepage": "https://github.com/a-tokyo/stylelint-rem-over-px",
|
|
"scripts": {
|
|
"test": "tape __tests__"
|
|
},
|
|
"dependencies": {
|
|
"postcss-value-parser": "^3.3.0 || ^4.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"stylelint": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
|
|
"stylelint-test-rule-tape": "^0.2.0",
|
|
"tape": "^4.7.0"
|
|
},
|
|
"peerDependencies": {
|
|
"stylelint": ">= 8"
|
|
},
|
|
"keywords": [
|
|
"stylelint",
|
|
"stylelint-plugin",
|
|
"rem",
|
|
"pixels",
|
|
"px",
|
|
"css",
|
|
"scss",
|
|
"sass",
|
|
"less",
|
|
"fix",
|
|
"autofix",
|
|
"migrate",
|
|
"migration",
|
|
"migrate-px-to-rem",
|
|
"replace-px-with-rem"
|
|
]
|
|
}
|