binario/package.json
dependabot[bot] 643a999085
Bump yaml and stylelint
Bumps [yaml](https://github.com/eemeli/yaml) to 2.2.2 and updates ancestor dependency [stylelint](https://github.com/stylelint/stylelint). These dependencies need to be updated together.


Updates `yaml` from 2.1.1 to 2.2.2
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](https://github.com/eemeli/yaml/compare/v2.1.1...v2.2.2)

Updates `stylelint` from 14.15.0 to 15.6.0
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/stylelint/stylelint/compare/14.15.0...15.6.0)

---
updated-dependencies:
- dependency-name: yaml
  dependency-type: indirect
- dependency-name: stylelint
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-04-24 23:26:21 +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.19",
"postcss-cli": "^10.0.0",
"stylelint": "^15.6.0",
"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"
}