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.
47 lines
890 B
47 lines
890 B
2 years ago
|
{
|
||
|
"name": "postcss-pxtorem",
|
||
|
"description": "A CSS post-processor that converts px to rem.",
|
||
|
"version": "5.1.1",
|
||
|
"author": "cuth",
|
||
|
"license": "MIT",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git@github.com:cuth/postcss-pxtorem.git"
|
||
|
},
|
||
|
"bugs": "https://github.com/cuth/postcss-pxtorem/issues",
|
||
|
"main": "index.js",
|
||
|
"scripts": {
|
||
|
"lint": "eslint .",
|
||
|
"test": "jasmine-node spec"
|
||
|
},
|
||
|
"husky": {
|
||
|
"hooks": {
|
||
|
"pre-commit": "lint-staged"
|
||
|
}
|
||
|
},
|
||
|
"lint-staged": {
|
||
|
"*.js": [
|
||
|
"eslint --fix",
|
||
|
"prettier --write"
|
||
|
]
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"eslint": "^6.8.0",
|
||
|
"husky": "^4.2.3",
|
||
|
"jasmine-node": "^3.0.0",
|
||
|
"lint-staged": "^10.0.8",
|
||
|
"prettier": "^1.19.1"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"css",
|
||
|
"rem",
|
||
|
"pixel",
|
||
|
"px",
|
||
|
"postcss",
|
||
|
"postcss-plugin"
|
||
|
],
|
||
|
"dependencies": {
|
||
|
"postcss": "^7.0.27"
|
||
|
}
|
||
|
}
|