-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
43 lines (43 loc) · 1.61 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": "@filipecarneiro/hugo-bootstrap-theme",
"version": "1.0.49",
"description": "Hugo theme for a secure, blazing fast and SEO-ready static website, using Bootstrap 5.",
"keywords": [
"hugo",
"hugo theme",
"bootstrap",
"bootstrap 5",
"static site generator"
],
"homepage": "https://github.com/filipecarneiro/hugo-bootstrap-theme/blob/main/README.md",
"bugs": {
"url": "https://github.com/filipecarneiro/hugo-bootstrap-theme/issues"
},
"author": {
"name": "Filipe Carneiro",
"url": "https://github.com/filipecarneiro/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/filipecarneiro/hugo-bootstrap-theme.git"
},
"scripts": {
"postinstall": "hugo-installer --version otherDependencies.hugo --extended",
"start": "exec-bin bin/hugo/hugo server --source exampleSite --cleanDestinationDir --gc",
"build": "exec-bin bin/hugo/hugo --minify --source exampleSite --baseURL '/' --cleanDestinationDir --gc --printPathWarnings --templateMetrics",
"test:htmltest": "docker run --rm -v $pwd/exampleSite/public:/test --rm wjdp/htmltest /test -l 3 -s",
"test:htmlproofer": "docker run --rm -it -v $pwd/public:/src klakegg/html-proofer --disable-external --check-favicon --check-html --check-img-http --check-opengraph --check-sri",
"test": "npm run test:htmlproofer",
"deploy": "npm version patch && npm publish --access public"
},
"devDependencies": {
"bootstrap": "^5.3.3",
"feather-icons": "^4.29.2",
"exec-bin": "^1.0.0",
"hugo-installer": "^4.0.1"
},
"otherDependencies": {
"hugo": "0.136.4"
}
}