2021-01-13 07:10:33 +01:00
|
|
|
{
|
|
|
|
"name": "markdownlint-cli2-action",
|
2024-09-11 04:59:48 +02:00
|
|
|
"version": "17.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",
|
2022-01-23 00:35:27 +01:00
|
|
|
"type": "commonjs",
|
2021-01-13 07:10:33 +01:00
|
|
|
"homepage": "https://github.com/DavidAnson/markdownlint-cli2-action",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2023-09-17 20:09:28 +02:00
|
|
|
"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",
|
2023-10-09 05:02:39 +02:00
|
|
|
"funding": "https://github.com/sponsors/DavidAnson",
|
2021-01-13 07:10:33 +01:00
|
|
|
"scripts": {
|
2021-01-16 05:35:50 +01:00
|
|
|
"build": "ncc build markdownlint-cli2-action.js",
|
2022-01-23 00:16:11 +01:00
|
|
|
"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",
|
2024-04-30 05:56:24 +02:00
|
|
|
"lint": "eslint *.js eslint.config.mjs --max-warnings 0 && markdownlint-cli2 *.md",
|
2023-11-21 05:06:04 +01:00
|
|
|
"test": "npm run lint && npm run build && git diff --exit-code",
|
2022-01-23 00:16:11 +01:00
|
|
|
"upgrade": "npx --yes npm-check-updates --upgrade"
|
2021-01-13 07:10:33 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-10-07 11:23:03 +02:00
|
|
|
"@actions/core": "1.11.1",
|
2024-11-11 10:09:22 +01:00
|
|
|
"markdownlint-cli2": "0.15.0"
|
2021-01-13 07:10:33 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-11-04 10:51:03 +01:00
|
|
|
"@eslint/js": "9.14.0",
|
2024-11-01 10:39:51 +01:00
|
|
|
"@stylistic/eslint-plugin": "2.10.1",
|
2024-09-24 16:12:19 +02:00
|
|
|
"@vercel/ncc": "0.38.2",
|
2024-11-04 10:51:10 +01:00
|
|
|
"eslint": "9.14.0",
|
2024-11-08 10:54:43 +01:00
|
|
|
"eslint-plugin-n": "17.13.1",
|
2024-10-04 11:26:53 +02:00
|
|
|
"eslint-plugin-unicorn": "56.0.0"
|
2021-01-13 07:10:33 +01:00
|
|
|
}
|
|
|
|
}
|