mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-03-01 17:59:11 +00:00
50 lines
1.5 KiB
JSON
50 lines
1.5 KiB
JSON
{
|
|
"name": "ivuorinen-dotfiles",
|
|
"version": "1.0.0",
|
|
"description": "ivuorinen's dotfiles, this is for linting and formatters",
|
|
"directories": {
|
|
"doc": "docs"
|
|
},
|
|
"scripts": {
|
|
"lint:biome": "biome check .",
|
|
"fix:biome": "biome check --write .",
|
|
"format": "biome format --write .",
|
|
"lint:prettier": "prettier --check '**/*.{yml,yaml}'",
|
|
"fix:prettier": "prettier --write '**/*.{yml,yaml}'",
|
|
"format:yaml": "prettier --write '**/*.{yml,yaml}'",
|
|
"test": "bash test-all.sh",
|
|
"lint:ec": "ec -f gcc",
|
|
"lint:md-table": "git ls-files '*.md' | xargs markdown-table-formatter --check",
|
|
"fix:md-table": "git ls-files '*.md' | xargs markdown-table-formatter",
|
|
"lint": "yarn lint:biome && yarn lint:prettier && yarn lint:ec && yarn lint:md-table",
|
|
"fix": "yarn fix:biome && yarn fix:prettier && yarn fix:md-table"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ivuorinen/dotfiles.git"
|
|
},
|
|
"keywords": [
|
|
"dotfiles",
|
|
"ivuorinen"
|
|
],
|
|
"author": "Ismo Vuorinen",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/ivuorinen/dotfiles/issues"
|
|
},
|
|
"homepage": "https://github.com/ivuorinen/dotfiles#readme",
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.4",
|
|
"@types/node": "^25.3.2",
|
|
"bats": "^1.13.0",
|
|
"editorconfig-checker": "^6.1.1",
|
|
"markdown-table-formatter": "^1.7.0",
|
|
"prettier": "^3.8.1",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"resolutions": {
|
|
"minimatch": "^10.2.4"
|
|
},
|
|
"packageManager": "yarn@4.12.0"
|
|
}
|