mirror of
https://github.com/corona-warn-app/cwa-documentation
synced 2024-11-22 17:24:28 +01:00
36471e2065
* Remove "alex" inconsiderate language scanner * Remove job in workflow * Remove .alexignore & .alexrc.yaml
27 lines
746 B
JSON
27 lines
746 B
JSON
{
|
|
"name": "docs",
|
|
"version": "1.1.0",
|
|
"description": "Corona-Warn-App: Documentation repository",
|
|
"main": "README.md",
|
|
"dependencies": {
|
|
"markdown-link-check": "~3.8.7",
|
|
"markdownlint": "^0.26.2",
|
|
"markdownlint-cli": "^0.32.2",
|
|
"npm-run-all": "^4.1.5"
|
|
},
|
|
"scripts": {
|
|
"test": "run-s markdownlint checklinks",
|
|
"markdownlint": "markdownlint '**/*.md' --ignore node_modules",
|
|
"checklinks": "find . -not -path \"*node_modules*\" -not -path \"*.github*\" -name \"*.md\" | xargs -n 1 markdown-link-check"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:corona-warn-app/cwa-documentation.git"
|
|
},
|
|
"keywords": [
|
|
"docs"
|
|
],
|
|
"author": "Johannes Amorosa",
|
|
"license": "Apache-2.0"
|
|
}
|