forked from owncloud/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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 Core documentation",
"version": "1.0.0",
"license": "AGPL-3.0",
"author": "The ownCloud Team <[email protected]>",
"homepage": "https://github.com/owncloud/docs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/owncloud/docs.git"
},
"bugs": {
"url": "https://github.com/owncloud/docs/issues"
},
"contributors": [
{
"name": "Matthew Setter",
"email": "[email protected]"
},
{
"name": "Martin Mattel",
"email": "[email protected]"
},
{
"name": "Thomas Boerger",
"email": "[email protected]"
}
],
"scripts": {
"prose": "write-good --parse **/*.adoc",
"serve": "http-server public/ -d -i",
"antora": "antora --stacktrace generate --cache-dir cache --redirect-facility static --generator ./generator/generate-site.js --clean --fetch --attribute format=html site.yml",
"validate": "antora --stacktrace generate --cache-dir cache --redirect-facility disabled --generator ./generator/xref-validator.js --clean --fetch --attribute format=html site.yml",
"linkcheck": "broken-link-checker --filter-level 3 --recursive --verbose"
},
"dependencies": {
"@antora/cli": "^2.3",
"@antora/site-generator-default": "^2.3",
"asciidoctor-kroki": "^0.11.0",
"cheerio": "^1.0.0-rc.5",
"elasticsearch": "^16.7.2",
"html-entities": "2.1.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"broken-link-checker": "^0.7.8",
"http-server": "^0.12.3",
"write-good": "^1.0"
},
"keywords": [
"antora",
"asciidoc",
"documentation",
"owncloud"
]
}