0
0
Fork 0
mirror of https://github.com/DavidAnson/markdownlint-cli2-action.git synced 2024-10-16 20:17:01 +02:00
markdownlint-cli2-action/package.json

37 lines
1.4 KiB
JSON
Raw Normal View History

2021-01-13 07:10:33 +01:00
{
"name": "markdownlint-cli2-action",
2023-11-26 01:44:26 +01:00
"version": "14.0.0",
2021-01-13 07:10:33 +01:00
"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",
2021-01-13 07:10:33 +01:00
"homepage": "https://github.com/DavidAnson/markdownlint-cli2-action",
"repository": {
"type": "git",
"url": "git+https://github.com/DavidAnson/markdownlint-cli2-action.git"
2021-01-13 07:10:33 +01:00
},
"bugs": "https://github.com/DavidAnson/markdownlint-cli2-action/issues",
"funding": "https://github.com/sponsors/DavidAnson",
2021-01-13 07:10:33 +01:00
"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"
2021-01-13 07:10:33 +01:00
},
"dependencies": {
"@actions/core": "1.10.1",
"markdownlint-cli2": "0.11.0"
2021-01-13 07:10:33 +01:00
},
"devDependencies": {
"@vercel/ncc": "0.38.1",
"eslint": "8.56.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "49.0.0"
2021-01-13 07:10:33 +01:00
}
}