mirror of
https://github.com/DavidAnson/markdownlint-cli2-action.git
synced 2024-12-22 21:03:53 +01:00
efb8a0501c
Bumps [eslint](https://github.com/eslint/eslint) from 8.47.0 to 8.48.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.47.0...v8.48.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
34 lines
1.4 KiB
JSON
34 lines
1.4 KiB
JSON
{
|
|
"name": "markdownlint-cli2-action",
|
|
"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": "https://github.com/DavidAnson/markdownlint-cli2-action.git"
|
|
},
|
|
"bugs": "https://github.com/DavidAnson/markdownlint-cli2-action/issues",
|
|
"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 ':(exclude)dist/index.js'",
|
|
"upgrade": "npx --yes npm-check-updates --upgrade"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "1.10.0",
|
|
"markdownlint-cli2": "0.9.2"
|
|
},
|
|
"devDependencies": {
|
|
"@vercel/ncc": "0.36.1",
|
|
"eslint": "8.48.0",
|
|
"eslint-plugin-node": "11.1.0",
|
|
"eslint-plugin-unicorn": "48.0.1"
|
|
}
|
|
}
|