-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
108 lines (108 loc) · 5.58 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
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "arizona-bootstrap",
"version": "5.0.0-alpha1",
"config": {
"version_short": "5.0"
},
"description": "University of Arizona theme for Bootstrap.",
"scripts": {
"start": "npm-run-all --parallel watch docs-serve",
"css": "npm-run-all css-compile css-prefix css-minify",
"css-compile": "sass --style expanded --source-map --embed-sources --no-error-css scss/:dist/css/",
"css-lint": "npm-run-all --aggregate-output --continue-on-error --parallel css-lint-*",
"css-lint-stylelint": "stylelint \"**/*.{css,scss}\" --cache --cache-location .cache/.stylelintcache --rd",
"css-lint-vars": "fusv scss/ site/assets/scss/",
"css-minify": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*.css\" \"!dist/css/*.min.css\"",
"css-prefix": "postcss --config build/postcss.config.mjs --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
"dist": "npm-run-all --aggregate-output --parallel css js",
"docs": "npm-run-all docs-build docs-lint",
"docs-build": "hugo --cleanDestinationDir --printUnusedTemplates",
"docs-compile": "npm run docs-build",
"docs-develop": "npm-run-all docs-serve-config dist docs-serve-external",
"docs-linkinator": "linkinator _site",
"docs-vnu": "node build/vnu-jar.mjs",
"docs-lint": "npm-run-all --aggregate-output --parallel docs-vnu docs-linkinator",
"docs-serve": "hugo server --port 9001 --disableFastRender",
"docs-serve-config": "scripts/create-hugo-config.sh",
"docs-serve-external": "hugo server --bind '0.0.0.0' --port 9001 --disableFastRender",
"docs-serve-only": "npx sirv-cli _site --port 9001",
"js": "npm-run-all js-compile js-minify",
"js-compile": "npm-run-all --aggregate-output --parallel js-compile-*",
"js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.mjs --sourcemap",
"js-compile-standalone-esm": "rollup --environment ESM:true,BUNDLE:false --config build/rollup.config.mjs --sourcemap",
"js-compile-bundle": "rollup --environment BUNDLE:true --config build/rollup.config.mjs --sourcemap",
"js-compile-plugins": "node build/build-plugins.mjs",
"js-lint": "eslint --cache --cache-location .cache/.eslintcache --report-unused-disable-directives .",
"js-minify": "npm-run-all --aggregate-output --parallel js-minify-*",
"js-minify-standalone": "terser --compress passes=2,typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/arizona-bootstrap.js.map,includeSources,url=arizona-bootstrap.min.js.map\" --output dist/js/arizona-bootstrap.min.js dist/js/arizona-bootstrap.js",
"js-minify-standalone-esm": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=dist/js/arizona-bootstrap.esm.js.map,includeSources,url=arizona-bootstrap.esm.min.js.map\" --output dist/js/arizona-bootstrap.esm.min.js dist/js/arizona-bootstrap.esm.js",
"js-minify-bundle": "terser --compress passes=2,typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/arizona-bootstrap.bundle.js.map,includeSources,url=arizona-bootstrap.bundle.min.js.map\" --output dist/js/arizona-bootstrap.bundle.min.js dist/js/arizona-bootstrap.bundle.js",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel js-lint css-lint",
"test": "npm-run-all lint dist docs-build docs-lint",
"update-deps": "ncu -u -x \"bootstrap,eslint,eslint-config-xo,sass\" ",
"version": "npm run dist",
"watch": "npm-run-all --parallel watch-*",
"watch-css-main": "nodemon --watch scss/ --ext scss --exec \"npm-run-all css-lint css-compile css-prefix\"",
"watch-css-docs": "nodemon --watch site/assets/scss/ --ext scss --exec \"npm run css-lint\"",
"watch-js-main": "nodemon --watch js/src/ --ext js --exec \"npm-run-all js-lint js-compile\"",
"watch-js-docs": "nodemon --watch site/assets/js/ --ext js --exec \"npm run js-lint\""
},
"style": "dist/css/arizona-bootstrap.css",
"sass": "scss/arizona-bootstrap.scss",
"main": "dist/js/arizona-bootstrap.js",
"repository": {
"type": "git",
"url": "git+https://github.com/az-digital/arizona-bootstrap.git"
},
"author": "Arizona Digital Contributors",
"bugs": {
"url": "https://github.com/az-digital/arizona-bootstrap/issues"
},
"license": "MIT",
"homepage": "https://github.com/az-digital/arizona-bootstrap",
"dependencies": {},
"peerDependencies": {
"@popperjs/core": "^2.11.6"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"autoprefixer": "^10.4.20",
"bootstrap": "^5.3.3",
"clean-css-cli": "^5.6.3",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-xo": "^0.45.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-unicorn": "^55.0.0",
"find-unused-sass-variables": "^6.0.0",
"globby": "^14.0.2",
"hugo-bin": "^0.133.5",
"jquery": "3.7.1",
"linkinator": "6.1.2",
"nodemon": "^3.1.7",
"npm-run-all2": "^7.0.1",
"popper.js": "^1.16.1",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"rollup": "^4.24.2",
"sass": "1.78.0",
"stylelint": "^16.9.0",
"stylelint-config-twbs-bootstrap": "^15.1.0",
"terser": "^5.34.1",
"vnu-jar": "24.10.17"
},
"files": [
"dist/{css,js}/**/*.{css,js,map,svg}",
"js/{src,dist}/**/*.{js,map}",
"scss/**/*.scss"
],
"hugo-bin": {
"buildTags": "extended"
}
}