ansible/package.json
ilia ba7d4eb5b3
Some checks failed
CI / lint-and-test (push) Failing after 1m17s
CI / build-and-test (push) Has been cancelled
Add CI workflow with markdown linting and self-hosted runner job
2025-12-13 23:00:58 -05:00

28 lines
755 B
JSON

{
"name": "ansible-infrastructure",
"version": "1.0.0",
"description": "Ansible infrastructure automation project",
"private": true,
"scripts": {
"test:markdown": "markdownlint-cli2 README.md 'docs/**/*.md'",
"test:links": "markdown-link-check README.md docs/**/*.md",
"lint": "markdownlint-cli2 README.md 'docs/**/*.md'",
"test": "npm run test:markdown && npm run test:links",
"lint:format": "markdownlint-cli2 --fix README.md 'docs/**/*.md'"
},
"devDependencies": {
"markdown-link-check": "^3.13.7",
"markdownlint-cli2": "^0.18.1"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"keywords": [
"ansible",
"infrastructure",
"automation",
"devops"
],
"license": "MIT"
}