Files
markdownlint-cli2-action/package.json
T
dependabot[bot] 16d9da4591 Bump eslint from 8.20.0 to 8.21.0 (#13)
Bumps [eslint](https://github.com/eslint/eslint) from 8.20.0 to 8.21.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.20.0...v8.21.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-08-03 21:07:09 -07:00

35 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-config ./config/.markdownlint.jsonc *.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.9.0",
"markdownlint-cli2": "0.4.0"
},
"devDependencies": {
"@vercel/ncc": "0.34.0",
"eslint": "8.21.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "43.0.2"
}
}