mirror of
https://github.com/ivuorinen/config-checker.git
synced 2026-01-26 11:24:02 +00:00
# 1.0.0 (2025-10-10) ### Bug Fixes * **ci:** .npmrc with token as an env ([316f897](316f897610)) * **ci:** add NPM_TOKEN to publish ([f144f27](f144f2771f)) * **ci:** publish.yml tweaks ([cebafd2](cebafd26a9)) * **ci:** release pat ([e78ab2a](e78ab2ac48)) * **ci:** switch to cycjimmy/semantic-release-action ([6ce643c](6ce643cdcb)) * **ci:** update publish pipeline permissions ([#6](https://github.com/ivuorinen/config-checker/issues/6)) ([1947d77](1947d77854)) * **github-action:** update actions/cache (v4.2.3 → v4.2.4) ([#15](https://github.com/ivuorinen/config-checker/issues/15)) ([738b712](738b7129d9)) * **github-action:** update ivuorinen/actions (25.6.23 → 25.6.25) ([#5](https://github.com/ivuorinen/config-checker/issues/5)) ([08563a1](08563a10d1)) * **github-action:** update ivuorinen/actions (25.6.25 → 25.6.30) ([#7](https://github.com/ivuorinen/config-checker/issues/7)) ([7e367c7](7e367c7a3d)) * **github-action:** update ivuorinen/actions (25.7.14 → 25.7.21) ([#11](https://github.com/ivuorinen/config-checker/issues/11)) ([dc1599d](dc1599db1f)) * **github-action:** update ivuorinen/actions (25.7.21 → 25.7.28) ([#12](https://github.com/ivuorinen/config-checker/issues/12)) ([3fb1101](3fb1101858)) * **github-action:** update ivuorinen/actions (25.7.7 → 25.7.14) ([#10](https://github.com/ivuorinen/config-checker/issues/10)) ([885a9fd](885a9fd180)) * **github-action:** update ivuorinen/actions (25.8.18 → 25.8.21) ([#21](https://github.com/ivuorinen/config-checker/issues/21)) ([7348f3a](7348f3a4d2)) * **github-action:** update ivuorinen/actions (25.8.4 → 25.8.18) ([#17](https://github.com/ivuorinen/config-checker/issues/17)) ([391c1f5](391c1f5443)) * **github-release:** update adrienverge/yamllint (v1.37.0 → v1.37.1) ([#19](https://github.com/ivuorinen/config-checker/issues/19)) ([89ae36c](89ae36c0ff)) * **github-release:** update bridgecrewio/checkov (3.2.400 → 3.2.464) ([#20](https://github.com/ivuorinen/config-checker/issues/20)) ([8ea111d](8ea111de5f)) * **github-release:** update renovatebot/pre-commit-hooks (41.82.6 → 41.82.9) ([#28](https://github.com/ivuorinen/config-checker/issues/28)) ([92e53c4](92e53c49cd)) * **lint:** .mega-linter.yml too many empty lines ([52cbe31](52cbe31c40)) ### Features * **ci:** update codeql ([#3](https://github.com/ivuorinen/config-checker/issues/3)) ([18f0015](18f0015ccf)) * **github-action:** update actions/checkout (v4.2.2 → v4.3.0) ([#18](https://github.com/ivuorinen/config-checker/issues/18)) ([0f7f989](0f7f989c5d)) * **github-action:** update ivuorinen/actions (25.6.30 → 25.7.7) ([#8](https://github.com/ivuorinen/config-checker/issues/8)) ([cb09795](cb09795ba4)) * **github-action:** update ivuorinen/actions (25.7.28 → 25.8.4) ([#14](https://github.com/ivuorinen/config-checker/issues/14)) ([7783dc8](7783dc8c36)) * **github-release:** update igorshubovych/markdownlint-cli (v0.44.0 → v0.45.0) ([#22](https://github.com/ivuorinen/config-checker/issues/22)) ([20be1f2](20be1f2ea7)) * **github-release:** update koalaman/shellcheck-precommit (v0.10.0 → v0.11.0) ([#23](https://github.com/ivuorinen/config-checker/issues/23)) ([a95abdb](a95abdb1c2)) * initial import from base-configs ([2c000e8](2c000e8e7e))
55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"name": "@ivuorinen/config-checker",
|
|
"version": "1.0.0",
|
|
"description": "Checks the commonly used configuration locations for configuration files",
|
|
"keywords": [
|
|
"check-config",
|
|
"config",
|
|
"ivuorinen",
|
|
"config-checker",
|
|
"cosmicconfig",
|
|
"rcfile",
|
|
"rcfiles"
|
|
],
|
|
"author": {
|
|
"name": "Ismo Vuorinen",
|
|
"url": "https://github.com/ivuorinen"
|
|
},
|
|
"homepage": "https://github.com/ivuorinen/config-checker#readme",
|
|
"license": "MIT",
|
|
"main": "lib/config-checker.js",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ivuorinen/config-checker.git"
|
|
},
|
|
"scripts": {
|
|
"test": "node ./__tests__/config-checker.test.js",
|
|
"generate-table": "node ./helpers/generate-md-table.js",
|
|
"eslint:fix": "eslint '**/*.{js,tsx,ts,mjs,cjs}' --fix",
|
|
"eslint:report": "eslint '**/*.{js,tsx,ts,mjs,cjs}'",
|
|
"markdownlint:fix": "markdownlint '**/*.md' --fix",
|
|
"markdownlint:report": "markdownlint '**/*.md'",
|
|
"prettier:fix": "prettier '**/*.{js,tsx,ts,json,mjs,cjs}' --write",
|
|
"prettier:report": "prettier '**/*.{js,tsx,ts,json,mjs,cjs}' --check"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/ivuorinen/config-checker/issues"
|
|
},
|
|
"devDependencies": {
|
|
"@ivuorinen/eslint-config": "^0.5.13",
|
|
"@ivuorinen/markdownlint-config": "^0.3.16",
|
|
"@ivuorinen/prettier-config": "^0.3.12",
|
|
"@ivuorinen/semantic-release-config": "^0.3.18"
|
|
}
|
|
}
|