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] d73fc7d0b5 Bump markdownlint-cli2 from 0.12.1 to 0.13.0
Bumps [markdownlint-cli2](https://github.com/DavidAnson/markdownlint-cli2) from 0.12.1 to 0.13.0.
- [Changelog](https://github.com/DavidAnson/markdownlint-cli2/blob/main/CHANGELOG.md)
- [Commits](https://github.com/DavidAnson/markdownlint-cli2/compare/v0.12.1...v0.13.0)

---
updated-dependencies:
- dependency-name: markdownlint-cli2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-03 22:06:26 -07:00

36 lines
1.4 KiB
JSON

{
"name": "markdownlint-cli2-action",
"version": "15.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 && 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.13.0"
},
"devDependencies": {
"@vercel/ncc": "0.38.1",
"eslint": "8.57.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "52.0.0"
}
}