-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 2.03 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"private": true,
"name": "owncloud-docs",
"description": "The ownCloud documentation",
"version": "4.0.0",
"license": "AGPL-3.0",
"author": "The ownCloud Team",
"homepage": "https://github.com/owncloud/docs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/owncloud/docs-ocis.git"
},
"bugs": {
"url": "https://github.com/owncloud/docs-ocis/issues"
},
"contributors": [
{
"name": "Martin Mattel"
},
{
"name": "Edith Parzefall"
},
{
"name": "Phil Davis"
}
],
"scripts": {
"antora": "antora --stacktrace --cache-dir cache --redirect-facility static --clean --fetch site.yml",
"antora-local": "antora --stacktrace --cache-dir cache --redirect-facility static --clean --fetch --url http://localhost:8080 site.yml",
"antora-staging": "antora --stacktrace --cache-dir cache --redirect-facility static --clean --fetch --url https://doc.staging.owncloud.com site.yml",
"antora-bundle": "antora --stacktrace --cache-dir cache --redirect-facility static --clean --fetch --ui-bundle-url ../docs-ui/build/ui-bundle.zip --url https://doc.staging.owncloud.com site.yml",
"antora-dev-local": "antora --stacktrace --cache-dir cache --redirect-facility static --clean --fetch --url http://localhost:8080 site-dev.yml",
"antora-dev-bundle": "antora --stacktrace --cache-dir cache --redirect-facility static --clean --fetch --ui-bundle-url ../docs-ui/build/ui-bundle.zip --url http://localhost:8080 site-dev.yml",
"serve": "http-server public/ -d -i",
"linkcheck": "broken-link-checker --filter-level 3 --recursive --verbose"
},
"dependencies": {
"@elastic/elasticsearch": "^7.17.14",
"antora": "^3.1.9",
"asciidoctor": "^3.0.4",
"asciidoctor-kroki": "^0.18.1",
"cheerio": "^1.0.0",
"html-entities": "2.5.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"broken-link-checker": "^0.7.8",
"http-server": "^14.1.1"
},
"keywords": [
"antora",
"asciidoc",
"documentation",
"owncloud",
"kiteworks"
]
}