postcss-fixie
Version:
Simple functions to use IE-specific CSS hacks
57 lines (56 loc) • 1.16 kB
JSON
{
"name": "postcss-fixie",
"version": "2.0.0",
"description": "Simple functions to use IE-specific CSS hacks",
"main": "index.js",
"repository": "tivac/fixie",
"scripts": {
"precommit": "lint-staged",
"lint": "eslint .",
"test": "jest",
"posttest": "npm run lint"
},
"keywords": [
"postcss",
"postcss-plugin",
"ie",
"internet-explorer",
"hacks"
],
"author": "Pat Cavit <npm@patcavit.com>",
"license": "MIT",
"devDependencies": {
"dedent": "^0.7.0",
"eslint": "^4.10.0",
"eslint-config-arenanet": "^3.3.1",
"eslint-plugin-no-only-tests": "^2.0.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^4.3.0",
"postcss-nested": "^2.1.2"
},
"dependencies": {
"postcss": "^6.0.13",
"postcss-selector-parser": "^3.1.0"
},
"eslintConfig": {
"extends": "arenanet",
"env": {
"node": true,
"jest": true
},
"plugins": [
"no-only-tests"
],
"rules": {
"indent": "off",
"no-only-tests/no-only-tests": "error"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}