binario/package.json
dependabot[bot] c6b93ce988
Bump postcss from 8.4.19 to 8.4.31
Bumps [postcss](https://github.com/postcss/postcss) from 8.4.19 to 8.4.31.
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/postcss/compare/8.4.19...8.4.31)

---
updated-dependencies:
- dependency-name: postcss
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-10-07 08:52:13 +00:00

75 lines
1.9 KiB
JSON

{
"name": "binario",
"version": "1.0.0",
"description": "Responsive card-based & code-light Hugo theme",
"license": "MIT",
"browserslist": [
"> 0.25%",
"last 2 version",
"not dead",
"IE 11",
"iOS >= 9"
],
"postcss": {
"plugins": {
"autoprefixer": {
"cascade": false
}
}
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"browser": true
},
"rules": {
"indent": [
2,
"tab"
],
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "ignore"
}
],
"no-tabs": 0
}
},
"dependencies": {},
"devDependencies": {
"autoprefixer": "^10.4.13",
"editorconfig-checker": "^4.0.2",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"postcss": "^8.4.31",
"postcss-cli": "^10.0.0",
"stylelint": "^15.10.1",
"stylelint-order": "^5.0.0"
},
"scripts": {
"lint:prefixes": "postcss static/css/*.css assets/css/*.css",
"lint:css": "stylelint static/css/*.css assets/css/*.css",
"lint:js": "eslint static/js/*.js",
"lint:editorconfig": "editorconfig-checker",
"lint": "npm run lint:css && npm run lint:js && npm run lint:editorconfig",
"fix:prefixes": "postcss -r static/css/*.css assets/css/*.css",
"fix:css": "stylelint static/css/*.css assets/css/*.css --fix",
"fix:js": "eslint static/js/*.js --fix",
"fix": "npm run fix:prefixes && npm run fix:css && npm run fix:js",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vimux/Binario.git"
},
"bugs": {
"url": "https://github.com/Vimux/Binario/issues"
},
"homepage": "https://github.com/Vimux/Binario"
}