el-beeswarm
Version:
<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;
120 lines (119 loc) • 2.76 kB
JSON
{
"name": "@stylelint/postcss-css-in-js",
"version": "0.37.2",
"description": "PostCSS syntax for parsing CSS in JS literals",
"keywords": [
"postcss",
"syntax",
"emotion",
"aphrodite",
"glamor",
"glamorous",
"react-native",
"react-style",
"reactcss",
"styled-components",
"styletron-react",
"typestyle",
"css-in-js",
"css"
],
"repository": "stylelint/postcss-css-in-js",
"license": "MIT",
"author": "gucong3000",
"main": "index.js",
"files": [
"*.js"
],
"scripts": {
"debug": "npm run mocha -- --inspect-brk",
"format": "prettier . --write",
"lint": "npm-run-all --parallel lint:*",
"lint:formatting": "prettier . --check",
"lint:js": "eslint . --cache --max-warnings=0",
"lint:md": "remark . --quiet --frail",
"mocha": "mocha --no-timeouts",
"release": "np",
"test": "nyc npm run mocha",
"watch": "mocha --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,md,yml}": "prettier --write"
},
"prettier": "@stylelint/prettier-config",
"eslintConfig": {
"extends": [
"stylelint"
],
"rules": {
"array-callback-return": "off",
"no-confusing-arrow": "off",
"no-else-return": "off",
"prefer--template": "off",
"prefer-object-spread": "off",
"prefer-rest-params": "off",
"prefer-spread": "off",
"prefer-template": "off",
"jest/expect-expect": "off",
"jest/valid-expect": "off"
}
},
"remarkConfig": {
"plugins": [
"@stylelint/remark-preset"
]
},
"nyc": {
"all": true,
"cache": true,
"check-coverage": true,
"exclude": [
"coverage/**",
"test{,s}/**",
"**/.{prettier,eslint,mocha}rc.{js,cjs}"
],
"reporter": [
"lcov",
"text"
]
},
"dependencies": {
"@babel/core": ">=7.9.0"
},
"devDependencies": {
"@stylelint/prettier-config": "^2.0.0",
"@stylelint/remark-preset": "^1.0.0",
"autoprefixer": "^9.7.6",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-stylelint": "^12.0.0",
"husky": "^4.2.5",
"json5": "^2.1.3",
"lint-staged": "^10.1.3",
"mocha": "^7.1.1",
"np": "^6.3.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.1",
"postcss": ">=7.0.27",
"postcss-parser-tests": "^6.5.0",
"postcss-safe-parser": "^4.0.2",
"postcss-syntax": ">=0.36.2",
"prettier": "^2.0.4",
"remark-cli": "^8.0.0"
},
"peerDependencies": {
"postcss": ">=7.0.0",
"postcss-syntax": ">=0.36.2"
},
"publishConfig": {
"access": "public"
}
}