UNPKG

postcss-opacity-percentage

Version:

PostCSS plugin to transform percentage-based opacity values to more compatible floating-point values.

62 lines (61 loc) 1.27 kB
{ "name": "postcss-opacity-percentage", "version": "3.0.0", "description": "PostCSS plugin to transform percentage-based opacity values to more compatible floating-point values.", "keywords": [ "postcss", "css", "postcss-plugin", "opacity" ], "license": "MIT", "repository": "github:mrcgrtz/postcss-opacity-percentage", "funding": [ { "type": "kofi", "url": "https://ko-fi.com/mrcgrtz" }, { "type": "liberapay", "url": "https://liberapay.com/mrcgrtz" } ], "author": { "name": "Marc Görtz", "email": "git@marcgoertz.de", "url": "https://marcgoertz.de/" }, "engines": { "node": ">=18" }, "main": "index.js", "files": [ "index.js" ], "scripts": { "format": "xo --fix", "test": "xo && c8 node --test", "coverage": "c8 report --reporter=lcov", "prepare": "husky", "publish": "clean-publish" }, "peerDependencies": { "postcss": "^8.4" }, "devDependencies": { "c8": "^10.1.2", "clean-publish": "^5.0.0", "husky": "^9.0.7", "lint-staged": "^15.0.2", "postcss": "^8.4.5", "xo": "^0.54.0" }, "lint-staged": { "*.js": "xo --fix" }, "xo": { "rules": { "unicorn/prefer-module": "off" } } }