ansible/package.json
ilia 5ad985d9f8 Update dependencies in package.json and package-lock.json
- Upgrade markdownlint-cli2 to version 0.20.0
- Update various dependencies to their latest versions, ensuring compatibility with Node.js 20.x
- Add new dependencies such as string-width and strip-ansi for improved functionality

This change enhances the development environment by keeping dependencies up to date and ensuring compliance with the latest Node.js version requirements.
2026-01-01 13:11:34 -05:00

29 lines
766 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 || true)",
"lint:format": "markdownlint-cli2 --fix README.md 'docs/**/*.md'"
},
"devDependencies": {
"markdown-link-check": "^3.13.7",
"markdownlint-cli2": "^0.20.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"keywords": [
"ansible",
"infrastructure",
"automation",
"devops"
],
"license": "MIT"
}