postcss-variables-prefixer
Version:
postcss plugin to prefix all css custom properties
56 lines (55 loc) • 1.26 kB
JSON
{
"name": "postcss-variables-prefixer",
"version": "1.0.0",
"description": "postcss plugin to prefix all css custom properties",
"main": "lib/prefixer.js",
"engines": {
"node": ">=10.0.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^24.1.0",
"husky": "^4.0.3",
"jest": "^26.5.3",
"postcss": "^8.1.1"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint ./lib",
"prepare": "npm run lint && npm test"
},
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"keywords": [
"css",
"postcss",
"postcss-plugin",
"postcss-prefixer"
],
"directories": {
"lib": "./lib",
"test": "./test"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ryuran/postcss-variables-prefixer.git"
},
"bugs": {
"url": "https://github.com/ryuran/postcss-variables-prefixer/issues"
},
"homepage": "https://github.com/ryuran/postcss-variables-prefixer#readme"
}