2021-01-13 07:10:33 +01:00
|
|
|
{
|
|
|
|
"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",
|
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",
|
|
|
|
"url": "https://github.com/DavidAnson/markdownlint-cli2-action.git"
|
|
|
|
},
|
|
|
|
"bugs": "https://github.com/DavidAnson/markdownlint-cli2-action/issues",
|
|
|
|
"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",
|
2022-08-04 06:02:44 +02:00
|
|
|
"test": "npm run lint && npm run build && git diff --exit-code ':(exclude)dist/index.js'",
|
2022-01-23 00:16:11 +01:00
|
|
|
"upgrade": "npx --yes npm-check-updates --upgrade"
|
2021-01-13 07:10:33 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-09-30 18:03:55 +02:00
|
|
|
"@actions/core": "1.10.0",
|
2023-08-27 23:24:02 +02:00
|
|
|
"markdownlint-cli2": "0.9.2"
|
2021-01-13 07:10:33 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-01-26 10:10:32 +01:00
|
|
|
"@vercel/ncc": "0.36.1",
|
2023-08-27 23:24:14 +02:00
|
|
|
"eslint": "8.48.0",
|
2022-01-23 00:33:41 +01:00
|
|
|
"eslint-plugin-node": "11.1.0",
|
2023-07-26 11:18:51 +02:00
|
|
|
"eslint-plugin-unicorn": "48.0.1"
|
2021-01-13 07:10:33 +01:00
|
|
|
}
|
|
|
|
}
|