forked from konflux-ci/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 826 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "konflux-ci-docs",
"devDependencies": {
"@antora/collector-extension": "^1.0.2",
"@antora/lunr-extension": "^1.0.0-alpha.10",
"antora": "^3.1.12"
},
"overrides": {
"glob-parent": "6.0.2"
},
"scripts": {
"api-gen": "./hack/gen-api-docs.sh",
"build": "antora generate --clean --fetch antora-playbook.yml",
"preview:netlify": "netlify deploy --dir public",
"lint:docs": "./hack/vale-check.sh",
"lint:docs:errors": "./hack/vale-check.sh --minAlertLevel=error",
"lint:docs:changed": "git diff --name-only --diff-filter=d HEAD | grep '\\.adoc$' | xargs -r ./hack/vale-check.sh",
"lint:docs:changed:errors": "git diff --name-only --diff-filter=d HEAD | grep '\\.adoc$' | xargs -r ./hack/vale-check.sh --minAlertLevel=error"
},
"engines": {
"node": "18"
}
}