postcss-autoreset
Version:
PostCSS plugin for partial styles reset
67 lines (66 loc) • 1.44 kB
JSON
{
"name": "postcss-autoreset",
"version": "3.1.0",
"description": "PostCSS plugin for partial styles reset",
"main": "index.js",
"scripts": {
"lint": "eslint index.js lib/ test/",
"test": "yarn run lint && yarn run test-unit",
"test-unit": "mocha test/index.js",
"test-dev": "mocha -w test/index.js",
"precommit": "yarn test"
},
"repository": {
"type": "git",
"url": "https://github.com/maximkoretskiy/postcss-autoreset.git"
},
"keywords": [
"postcss",
"postcss-plugin",
"css",
"reset",
"autoreset",
"isolation"
],
"author": "Maksim Koretskiy",
"license": "MIT",
"files": [
"README.md",
"index.js",
"lib/"
],
"bugs": {
"url": "https://github.com/maximkoretskiy/postcss-reset/issues"
},
"homepage": "https://github.com/maximkoretskiy/postcss-reset",
"dependencies": {
"postcss-js": "^4.0.1"
},
"devDependencies": {
"clean-publish": "^4.2.0",
"eslint": "^7.10.0",
"eslint-plugin-mocha": "^8.0.0",
"husky": "^4.3.0",
"mocha": "^10.3.0",
"postcss": "^8.1.1"
},
"peerDependency": {
"postcss": "^8.1.1"
},
"optionalPeerDependencies": {
"postcss-js": "^3.0.1"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"mocha": true
},
"extends": [
"eslint:recommended",
"plugin:mocha/recommended"
]
}
}