postcss-calc
Version:
PostCSS plugin to reduce calc()
50 lines • 1.1 kB
JSON
{
"name": "postcss-calc",
"version": "10.0.2",
"description": "PostCSS plugin to reduce calc()",
"keywords": [
"css",
"postcss",
"postcss-plugin",
"calculation",
"calc"
],
"homepage": "https://github.com/postcss/postcss-calc",
"repository": {
"type": "git",
"url": "https://github.com/postcss/postcss-calc.git"
},
"main": "src/index.js",
"types": "types/index.d.ts",
"files": [
"src",
"types",
"LICENSE"
],
"author": "Andy Jansson",
"license": "MIT",
"engines": {
"node": "^18.12 || ^20.9 || >=22.0"
},
"devDependencies": {
"@types/node": "^22.4.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"jison-gho": "0.6.1-216",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"typescript": "~5.5.4"
},
"dependencies": {
"postcss-selector-parser": "^6.1.2",
"postcss-value-parser": "^4.2.0"
},
"peerDependencies": {
"postcss": "^8.4.38"
},
"scripts": {
"build": "jison ./parser.jison -o src/parser.js",
"lint": "eslint . && tsc",
"test": "node --test"
}
}