mirror of
https://github.com/pi-hole/docs.git
synced 2025-12-25 05:28:32 +00:00
Bumps the npm-dependencies group with 1 update: [markdownlint-cli2](https://github.com/DavidAnson/markdownlint-cli2). Updates `markdownlint-cli2` from 0.18.1 to 0.19.0 - [Changelog](https://github.com/DavidAnson/markdownlint-cli2/blob/main/CHANGELOG.md) - [Commits](https://github.com/DavidAnson/markdownlint-cli2/compare/v0.18.1...v0.19.0) --- updated-dependencies: - dependency-name: markdownlint-cli2 dependency-version: 0.19.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
32 lines
906 B
JSON
32 lines
906 B
JSON
{
|
|
"name": "docs",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"description": "Source for the official Pi-hole documentation",
|
|
"main": "",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/pi-hole/docs.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "CC-BY-SA-4.0",
|
|
"bugs": {
|
|
"url": "https://github.com/pi-hole/docs/issues"
|
|
},
|
|
"homepage": "https://docs.pi-hole.net/",
|
|
"scripts": {
|
|
"build": "mkdocs build --clean --strict",
|
|
"markdownlint": "markdownlint-cli2 \"**/*.md\" \"!**/node_modules/**\"",
|
|
"linkinator": "linkinator site --recurse --silent --skip \"^(?!http://localhost)\"",
|
|
"pretest": "npm run build",
|
|
"test": "npm run markdownlint && npm run linkinator",
|
|
"serve": "mkdocs serve --dev-addr 0.0.0.0:8000",
|
|
"start": "npm run serve"
|
|
},
|
|
"devDependencies": {
|
|
"linkinator": "^7.5.0",
|
|
"markdownlint-cli2": "0.19.0"
|
|
}
|
|
}
|