0
0
Fork 0
mirror of https://github.com/DavidAnson/markdownlint-cli2-action.git synced 2024-10-16 12:07:01 +02:00
markdownlint-cli2-action/package.json
dependabot[bot] a16bd3769f Bump @eslint/js from 9.11.0 to 9.11.1
Bumps [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) from 9.11.0 to 9.11.1.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/commits/v9.11.1/packages/js)

---
updated-dependencies:
- dependency-name: "@eslint/js"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-09-24 07:11:45 -07:00

38 lines
1.5 KiB
JSON

{
"name": "markdownlint-cli2-action",
"version": "17.0.0",
"description": "A GitHub Action to run the markdownlint-cli2 tool for linting Markdown/CommonMark files with the markdownlint library",
"author": {
"name": "David Anson",
"url": "https://dlaa.me/"
},
"license": "MIT",
"type": "commonjs",
"homepage": "https://github.com/DavidAnson/markdownlint-cli2-action",
"repository": {
"type": "git",
"url": "git+https://github.com/DavidAnson/markdownlint-cli2-action.git"
},
"bugs": "https://github.com/DavidAnson/markdownlint-cli2-action/issues",
"funding": "https://github.com/sponsors/DavidAnson",
"scripts": {
"build": "ncc build markdownlint-cli2-action.js",
"docker-npm-install": "docker run --rm --tty --name npm-install --volume $PWD:/home/workdir --workdir /home/workdir --user node node:16 npm install",
"docker-npm-run-upgrade": "docker run --rm --tty --name npm-run-upgrade --volume $PWD:/home/workdir --workdir /home/workdir --user node node:16 npm run upgrade",
"lint": "eslint *.js eslint.config.mjs --max-warnings 0 && markdownlint-cli2 *.md",
"test": "npm run lint && npm run build && git diff --exit-code",
"upgrade": "npx --yes npm-check-updates --upgrade"
},
"dependencies": {
"@actions/core": "1.10.1",
"markdownlint-cli2": "0.14.0"
},
"devDependencies": {
"@eslint/js": "9.11.1",
"@stylistic/eslint-plugin": "2.8.0",
"@vercel/ncc": "0.38.1",
"eslint": "9.11.1",
"eslint-plugin-n": "17.10.3",
"eslint-plugin-unicorn": "55.0.0"
}
}