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",
|
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",
|
2023-06-11 05:35:20 +02:00
|
|
|
"lint": "eslint *.js && 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": {
|
2023-09-12 11:09:53 +02:00
|
|
|
"@actions/core": "1.10.1",
|
2023-11-21 05:07:10 +01:00
|
|
|
"markdownlint-cli2": "0.11.0"
|
2021-01-13 07:10:33 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-10-19 11:16:29 +02:00
|
|
|
"@vercel/ncc": "0.38.1",
|
2023-11-20 10:42:59 +01:00
|
|
|
"eslint": "8.54.0",
|
2022-01-23 00:33:41 +01:00
|
|
|
"eslint-plugin-node": "11.1.0",
|
2023-10-30 10:28:07 +01:00
|
|
|
"eslint-plugin-unicorn": "49.0.0"
|
2021-01-13 07:10:33 +01:00
|
|
|
}
|
|
|
|
}
|