-
-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.18 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.18 KB
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
{
"name": "bootstrap-blog",
"description": "Official blog for Bootstrap.",
"version": "1.0.0",
"private": true,
"author": "The Bootstrap Authors (https://github.com/twbs/blog/graphs/contributors)",
"repository": {
"type": "git",
"url": "git+https://github.com/twbs/blog.git"
},
"bugs": {
"url": "https://github.com/twbs/blog/issues"
},
"main": "",
"keywords": [],
"license": "MIT",
"homepage": "https://blog.getbootstrap.com",
"hugo-bin": {
"buildTags": "extended",
"version": "0.134.3"
},
"scripts": {
"start": "npm run serve",
"build": "hugo --cleanDestinationDir --printPathWarnings --printUnusedTemplates",
"serve": "hugo server --port 4000 --disableFastRender --noHTTPCache --renderToMemory --printPathWarnings --printUnusedTemplates",
"serve-only": "npx sirv-cli _site --port 4000",
"test": "npm-run-all build --parallel --continue-on-error --aggregate-output test-*",
"test-eslint": "eslint --cache --cache-location .cache/.eslintcache .",
"test-fusv": "fusv src/assets/scss/",
"test-stylelint": "stylelint src/assets/scss/ --cache --cache-location .cache/.stylelintcache",
"test-markdownlint": "markdownlint-cli2 \"**/*.md\" \"!**/node_modules/**\"",
"test-linkinator": "linkinator _site --recurse --silent --skip \"^(?!http://localhost)\"",
"test-vnu": "node scripts/vnu-jar.mjs",
"test-lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
"netlify": "cross-env-shell HUGO_BASEURL=$DEPLOY_PRIME_URL npm run build"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"autoprefixer": "^10.4.27",
"bootstrap": "^5.3.8",
"clipboard": "^2.0.11",
"cross-env": "^10.1.0",
"eslint": "^10.1.0",
"find-unused-sass-variables": "^6.1.1",
"globals": "^17.4.0",
"hugo-bin": "^0.149.2",
"linkinator": "^7.6.1",
"lockfile-lint": "^5.0.0",
"markdownlint-cli2": "^0.22.0",
"npm-run-all2": "^8.0.4",
"postcss": "^8.5.8",
"postcss-cli": "^11.0.1",
"stylelint": "^16.26.1",
"stylelint-config-twbs-bootstrap": "^16.1.0",
"vanilla-lazyload": "^19.1.3",
"vnu-jar": "25.11.3"
}
}