-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
44 lines (44 loc) · 1.38 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
{
"name": "jenkins-docs",
"version": "1.0.0",
"description": "Provides a template Antora component file and directory structure, along with some other helpful command-line tools. Its aim is to make it as quick and painless as possible to get up and running with new Antora projects and to extend existing ones.",
"devDependencies": {
"prettier": "^3.2.5",
"yaml-lint": "^1.2.4"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "yamllint antora.yml",
"install-subfolders": "cd ui && npm install && cd ../playbook && npm install",
"build-ui": "cd ui && npm install && npx gulp bundle",
"build-antora": "cd playbook && npm install && npx antora --fetch local-antora-playbook.yml",
"clean": "rm -rf ui/build && rm -rf playbook/build",
"format": "prettier --write ."
},
"keywords": [
"Antora",
"AsciiDoc"
],
"author": "Jenkins community",
"overrides": {
"ini": "^5.0.0",
"js-yaml": "^4.1.0",
"lodash.merge": "^4.6.2",
"minimatch": "^10.0.0",
"nconf": "^0.12.0",
"y18n": "^5.0.8",
"gulp-postcss": "^10.0.0"
},
"dependencies": {
"@types/jquery": "^3.5.16",
"audit": "^0.0.6",
"bootstrap": "^5.3.1",
"datatables.net-dt": "^2.0.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"gulp": "^5.0.0",
"ionicons": "^7.4.0",
"jstz": "^2.1.1",
"postcss": "^8.4.47"
}
}