-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 3.09 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@feelpp/ui-default",
"description": "An archetype project that produces a UI for creating documentation sites with Antora",
"homepage": "https://github.com/feelpp/antora-ui-default",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/feelpp/antora-ui-default.git"
},
"engines": {
"node": ">= 10.0.0"
},
"browserslist": [
"last 2 versions"
],
"devDependencies": {
"@asciidoctor/core": "~2.2",
"@feelpp/asciidoctor-extensions": "^1.0.0-rc.13",
"@fontsource/roboto": "~4.5",
"@fontsource/roboto-mono": "~4.5",
"@fortawesome/fontawesome-free": "~6.4",
"@fortawesome/fontawesome-svg-core": "~6.4",
"@fortawesome/free-brands-svg-icons": "~6.4",
"@fortawesome/free-regular-svg-icons": "~6.4",
"@fortawesome/free-solid-svg-icons": "~6.4",
"@octokit/rest": "~18.0",
"asciidoctor-jupyter": "0.3.0",
"asciidoctor.js": "1.5.9",
"autoprefixer": "~9.7",
"browser-pack-flat": "~3.4",
"browserify": "~16.5",
"core-js": "~3.6",
"cssnano": "~4.1",
"docsearch.js": "~2.6",
"eslint": "~7.3",
"eslint-config-standard": "~14.1",
"eslint-plugin-import": "~2.21",
"eslint-plugin-node": "~11.1",
"eslint-plugin-promise": "~4.2",
"eslint-plugin-standard": "~4.0",
"fancy-log": "~1.3",
"fs-extra": "~9.0",
"gulp": "~4.0.2",
"gulp-concat": "~2.6",
"gulp-connect": "~5.7",
"gulp-eslint": "~6.0",
"gulp-imagemin": "~6.2",
"gulp-postcss": "~8.0",
"gulp-stylelint": "~13.0",
"gulp-uglify": "~3.0",
"gulp-vinyl-zip": "~2.2",
"handlebars": "~4.7",
"handlebars-utils": "^1.0.6",
"highlight.js": "11.11.1",
"http-server": "^14.1.1",
"js-yaml": "~3.13",
"merge-stream": "~2.0",
"postcss-calc": "~7.0",
"postcss-custom-properties": "~9.1",
"postcss-import": "~12.0",
"postcss-url": "~8.0",
"prettier-eslint": "~11.0",
"require-directory": "~2.1",
"require-from-string": "~2.0",
"stylelint": "~13.3",
"stylelint-config-standard": "~20.0",
"vinyl-buffer": "~1.0",
"vinyl-fs": "~3.0"
},
"optionalDependencies": {
"@fortawesome/pro-regular-svg-icons": "~5.13",
"@fortawesome/pro-solid-svg-icons": "~5.13"
},
"scripts": {
"start": "npm run generate-fontawesome-icon-defs && LIVERELOAD=true gulp preview",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint \"src/css/**/*.css\"",
"lint:js": "eslint gulpfile.js \"gulp.d/**/*.js\" \"src/{helpers,js}/**/*.js\"",
"build": "npm run generate-fontawesome-icon-defs && gulp bundle",
"antora": "npx antora site.yml --stacktrace",
"serve": "http-server build/site",
"generate-fontawesome-icon-defs": "node tasks/generate-fontawesome-icon-defs.js"
},
"dependencies": {
"@antora/cli": "^3.1",
"@antora/collector-extension": "^1.0.1",
"@antora/site-generator": "^3.1",
"@asciidoctor/core": "~2.2.8",
"asciidoctor": "~2.2.8",
"asciidoctor-jupyter": "^0.7.0",
"asciidoctor-kroki": "^0.18.1",
"gulp-cli": "^2.3.0",
"handlebars": "^4.7.7",
"handlebars-utils": "^1.0.6"
}
}