postcss-grid-reset
Version:
PostCSS plugin for resetting CSS Grid.
68 lines (67 loc) • 1.31 kB
JSON
{
"name": "postcss-grid-reset",
"version": "1.0.3",
"description": "PostCSS plugin for resetting CSS Grid.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"grid"
],
"scripts": {
"test": "jest-ci --coverage && eslint-ci ."
},
"author": "Andrej Gajdos <agajdy@gmail.com>",
"license": "MIT",
"repository": "AndrejGajdos/postcss-grid-reset",
"engines": {
"node": ">=10.0.0"
},
"peerDependencies": {
"postcss": "^8.1.0"
},
"devDependencies": {
"clean-publish": "^1.1.8",
"eslint": "^7.10.0",
"eslint-ci": "^1.0.0",
"eslint-plugin-jest": "^24.0.2",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-ci": "^0.1.1",
"jest-cli": "^26.4.2",
"lint-staged": "^10.4.0",
"postcss": "^8.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended"
],
"rules": {
"jest/expect-expect": "off"
}
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"statements": 100
}
}
}
}