forked from apache/hop-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "hop-website",
"version": "1.0.0-SNAPSHOT",
"license": "Apache-2.0",
"scripts": {
"build:antora": "antora --require ./menu.js --clean --fetch site.yml",
"build:hugo": "hugo",
"build:minify": "gulp minify",
"build": "run-s build:*",
"preview": "run-s preview:*",
"preview:antora": "antora --require ./menu.js site.yml",
"preview:hugo": "hugo server -D",
"preview-local": "run-s preview-local:*",
"preview-local:antora": "antora --require ./menu.js site-local.yml",
"preview-local:hugo": "hugo server -D",
"check:xref": "antora --generator @antora/xref-validator site.yml",
"check:links": "link-checker --disable-external --mkdocs --allow-hash-href public",
"check:html": "html-validate 'public/*/**/*.html' 'public/!(google)*.html'",
"checks": "run-s check:*"
},
"devDependencies": {
"@antora/cli": "2.3",
"@antora/site-generator-default": "~2.3",
"gulp": "^4.0.2",
"gulp-htmlmin": "~5.0",
"html-validate": "~1.13",
"hugo-cli": "~0.11",
"link-checker": "~1.3",
"npm-run-all": "^4.1.5",
"opal-runtime": "1.0.11"
},
"installConfig": {
"pnp": true
},
"dependencies": {
"asciidoctor": "^2.0.3",
"cookies-eu-banner": "^2.0.1",
"handlebars": "~4.4",
"toml": "~3.0",
"unzipper": "~0.10",
"yaml": "~1.7"
}
}