postcss-var-func-fallback
Version:
PostCSS plugin Adds fallback values to var(name) occurences.
76 lines (75 loc) • 1.59 kB
JSON
{
"name": "postcss-var-func-fallback",
"version": "3.0.1",
"description": "PostCSS plugin Adds fallback values to var(name) occurences.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"css-variables"
],
"homepage": "https://github.com/dvitamin/postcss-var-func-fallback",
"bugs": "https://github.com/dvitamin/postcss-var-func-fallback/issues",
"repository": "https://github.com/dvitamin/postcss-var-func-fallback.git",
"license": "MIT",
"author": "dvitamin <dcoding@protonmail.com>",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"pretest": "eslint .",
"test": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2018
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended"
],
"rules": {
"jest/expect-expect": "off"
}
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100
}
},
"testEnvironment": "node"
},
"dependencies": {
"postcss-value-parser": "^4.1.0"
},
"devDependencies": {
"clean-publish": "^1.1.8",
"eslint": "^7.14.0",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.4.0",
"npm-pkg-lint": "1.11.1",
"postcss": "8.4.18"
},
"peerDependencies": {
"postcss": "^8"
},
"engines": {
"node": ">= 14"
}
}