0
0
Fork 0
mirror of https://github.com/DavidAnson/markdownlint-cli2-action.git synced 2024-12-22 12:53:32 +01:00
markdownlint-cli2-action/package.json

36 lines
1.2 KiB
JSON
Raw Normal View History

2021-01-13 07:10:33 +01:00
{
"name": "markdownlint-cli2-action",
2024-11-15 03:45:17 +01:00
"version": "18.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",
2024-11-18 01:48:20 +01:00
"type": "module",
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": {
2024-11-18 01:48:20 +01:00
"build": "ncc build markdownlint-cli2-action.mjs",
"lint": "eslint *.mjs --max-warnings 0 && markdownlint-cli2 *.md",
"test": "npm run lint && npm run build && git diff --exit-code"
2021-01-13 07:10:33 +01:00
},
"dependencies": {
"@actions/core": "1.11.1",
2024-12-19 07:09:48 +01:00
"markdownlint-cli2": "DavidAnson/markdownlint-cli2#next"
2021-01-13 07:10:33 +01:00
},
"devDependencies": {
"@eslint/js": "9.16.0",
"@stylistic/eslint-plugin": "2.12.1",
"@vercel/ncc": "0.38.3",
"eslint": "9.16.0",
"eslint-plugin-n": "17.15.0",
"eslint-plugin-unicorn": "56.0.1"
2021-01-13 07:10:33 +01:00
}
}