]> git.ipfire.org Git - thirdparty/bootstrap.git/blame - package.json
Fix deprecation warning with sass 1.56.0 (#37425)
[thirdparty/bootstrap.git] / package.json
CommitLineData
c99dcd2e 1{
9a8e6195 2 "name": "bootstrap",
745111ba 3 "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
961d5ff9 4 "version": "5.2.2",
7e6d7b8f 5 "config": {
f7e8ca91 6 "version_short": "5.2"
7e6d7b8f 7 },
29aaf66a 8 "keywords": [
6f1cc694 9 "css",
2916ac43 10 "sass",
6f1cc694
CR
11 "mobile-first",
12 "responsive",
13 "front-end",
14 "framework",
15 "web"
29aaf66a 16 ],
10c64bda 17 "homepage": "https://getbootstrap.com/",
a90b3691 18 "author": "The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)",
a358fc9d
CR
19 "contributors": [
20 "Twitter, Inc."
21 ],
77e02a07
X
22 "license": "MIT",
23 "repository": {
24 "type": "git",
25 "url": "git+https://github.com/twbs/bootstrap.git"
26 },
27 "bugs": {
28 "url": "https://github.com/twbs/bootstrap/issues"
29 },
30 "funding": [
31 {
32 "type": "github",
33 "url": "https://github.com/sponsors/twbs"
34 },
35 {
36 "type": "opencollective",
37 "url": "https://opencollective.com/bootstrap"
38 }
39 ],
40 "main": "dist/js/bootstrap.js",
41 "module": "dist/js/bootstrap.esm.js",
42 "sass": "scss/bootstrap.scss",
43 "style": "dist/css/bootstrap.css",
29aaf66a 44 "scripts": {
6589408a 45 "start": "npm-run-all --parallel watch docs-serve",
9f6ccf9d 46 "bundlewatch": "bundlewatch --config .bundlewatch.config.json",
71ecc332 47 "css": "npm-run-all css-compile css-prefix css-rtl css-minify",
c31aef49 48 "css-compile": "sass --style expanded --source-map --embed-sources --no-error-css scss/:dist/css/",
eb618393 49 "css-rtl": "cross-env NODE_ENV=RTL postcss --config build/postcss.config.js --dir \"dist/css\" --ext \".rtl.css\" \"dist/css/*.css\" \"!dist/css/*.min.css\" \"!dist/css/*.rtl.css\"",
452e2f06 50 "css-lint": "npm-run-all --aggregate-output --continue-on-error --parallel css-lint-*",
82f24161 51 "css-lint-stylelint": "stylelint \"**/*.{css,scss}\" --cache --cache-location .cache/.stylelintcache --rd",
129bb08f 52 "css-lint-vars": "fusv scss/ site/assets/scss/",
452e2f06 53 "css-minify": "npm-run-all --aggregate-output --parallel css-minify-*",
d55abc2f
X
54 "css-minify-main": "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\" \"!dist/css/*rtl*.css\"",
55 "css-minify-rtl": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*rtl.css\" \"!dist/css/*.min.css\"",
452e2f06 56 "css-prefix": "npm-run-all --aggregate-output --parallel css-prefix-*",
eb618393 57 "css-prefix-main": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.rtl*.css\" \"!dist/css/*.min.css\"",
129bb08f 58 "css-prefix-examples": "postcss --config build/postcss.config.js --replace \"site/content/**/*.css\"",
7e6d7b8f 59 "css-prefix-examples-rtl": "cross-env-shell NODE_ENV=RTL postcss --config build/postcss.config.js --dir \"site/content/docs/$npm_package_config_version_short/examples/\" --ext \".rtl.css\" --base \"site/content/docs/$npm_package_config_version_short/examples/\" \"site/content/docs/$npm_package_config_version_short/examples/{blog,carousel,dashboard,cheatsheet}/*.css\" \"!site/content/docs/$npm_package_config_version_short/examples/{blog,carousel,dashboard,cheatsheet}/*.rtl.css\"",
1a935642 60 "js": "npm-run-all js-compile js-minify",
452e2f06 61 "js-compile": "npm-run-all --aggregate-output --parallel js-compile-*",
83fd91cd 62 "js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.js --sourcemap",
faba7e3f 63 "js-compile-standalone-esm": "rollup --environment ESM:true,BUNDLE:false --config build/rollup.config.js --sourcemap",
83fd91cd 64 "js-compile-bundle": "rollup --environment BUNDLE:true --config build/rollup.config.js --sourcemap",
eb81c39f 65 "js-compile-plugins": "node build/build-plugins.js",
abb1cf52 66 "js-lint": "eslint --cache --cache-location .cache/.eslintcache --report-unused-disable-directives --ext .html,.js .",
452e2f06 67 "js-minify": "npm-run-all --aggregate-output --parallel js-minify-*",
81042ff4
X
68 "js-minify-standalone": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.js.map,includeSources,url=bootstrap.min.js.map\" --output dist/js/bootstrap.min.js dist/js/bootstrap.js",
69 "js-minify-standalone-esm": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.esm.js.map,includeSources,url=bootstrap.esm.min.js.map\" --output dist/js/bootstrap.esm.min.js dist/js/bootstrap.esm.js",
70 "js-minify-bundle": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.bundle.js.map,includeSources,url=bootstrap.bundle.min.js.map\" --output dist/js/bootstrap.bundle.min.js dist/js/bootstrap.bundle.js",
452e2f06 71 "js-test": "npm-run-all --aggregate-output --parallel js-test-karma js-test-jquery js-test-integration-*",
acd1b562 72 "js-debug": "cross-env DEBUG=true npm run js-test-karma",
68ca2946 73 "js-test-karma": "karma start js/tests/karma.conf.js",
81ac002a
X
74 "js-test-integration-bundle": "rollup --config js/tests/integration/rollup.bundle.js",
75 "js-test-integration-modularity": "rollup --config js/tests/integration/rollup.bundle-modularity.js",
cad88abd 76 "js-test-cloud": "cross-env BROWSERSTACK=true npm run js-test-karma",
650a7a7b 77 "js-test-jquery": "cross-env JQUERY=true npm run js-test-karma",
452e2f06 78 "lint": "npm-run-all --aggregate-output --continue-on-error --parallel js-lint css-lint lockfile-lint",
129bb08f 79 "docs": "npm-run-all docs-build docs-lint",
142af240
X
80 "docs-build": "hugo --cleanDestinationDir",
81 "docs-compile": "npm run docs-build",
bce2b5e7 82 "docs-vnu": "node build/vnu-jar.js",
e1020a43 83 "docs-lint": "npm run docs-vnu",
678da2ea 84 "docs-serve": "hugo server --port 9001 --disableFastRender",
977c366c 85 "docs-serve-only": "npx sirv-cli _site --port 9001",
9d50c6a1 86 "lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
7648848e 87 "update-deps": "ncu -u -x globby,karma-browserstack-launcher,karma-rollup-preprocessor && echo Manually update site/assets/js/vendor",
df88748e 88 "release": "npm-run-all dist release-sri docs-build release-zip*",
cdab56d9 89 "release-sri": "node build/generate-sri.js",
b4ac48fd 90 "release-version": "node build/change-version.js",
c9ae98ee 91 "release-zip": "cross-env-shell \"rm -rf bootstrap-$npm_package_version-dist && cp -r dist/ bootstrap-$npm_package_version-dist && zip -r9 bootstrap-$npm_package_version-dist.zip bootstrap-$npm_package_version-dist && rm -rf bootstrap-$npm_package_version-dist\"",
df88748e 92 "release-zip-examples": "node build/zip-examples.js",
452e2f06 93 "dist": "npm-run-all --aggregate-output --parallel css js",
fda35d14 94 "test": "npm-run-all lint dist js-test docs-build docs-lint",
90f5dbae 95 "netlify": "cross-env-shell HUGO_BASEURL=$DEPLOY_PRIME_URL npm-run-all dist release-sri docs-build",
6589408a 96 "watch": "npm-run-all --parallel watch-*",
129bb08f 97 "watch-css-main": "nodemon --watch scss/ --ext scss --exec \"npm-run-all css-lint css-compile css-prefix\"",
71ecc332 98 "watch-css-dist": "nodemon --watch dist/css/ --ext css --ignore \"dist/css/*.rtl.*\" --exec \"npm run css-rtl\"",
129bb08f
X
99 "watch-css-docs": "nodemon --watch site/assets/scss/ --ext scss --exec \"npm run css-lint\"",
100 "watch-js-main": "nodemon --watch js/src/ --ext js --exec \"npm-run-all js-lint js-compile\"",
a28adc76 101 "watch-js-docs": "nodemon --watch site/assets/js/ --ext js --exec \"npm run js-lint\""
29aaf66a 102 },
b21fc944 103 "peerDependencies": {
b14190b5 104 "@popperjs/core": "^2.11.6"
b2bb83d8 105 },
9a8e6195 106 "devDependencies": {
812f891b
X
107 "@babel/cli": "^7.19.3",
108 "@babel/core": "^7.19.3",
109 "@babel/preset-env": "^7.19.3",
db349078 110 "@popperjs/core": "^2.11.6",
b7b376ce 111 "@rollup/plugin-babel": "^5.3.1",
af1bd974 112 "@rollup/plugin-commonjs": "^22.0.2",
a1b1e43d 113 "@rollup/plugin-node-resolve": "^14.1.0",
b7b376ce 114 "@rollup/plugin-replace": "^4.0.0",
2b65149e 115 "autoprefixer": "^10.4.12",
cd208341 116 "bundlewatch": "^0.3.3",
4035ad1a 117 "clean-css-cli": "^5.6.1",
9a4692d4 118 "cross-env": "^7.0.3",
2b65149e 119 "eslint": "^8.24.0",
585146a6 120 "eslint-config-xo": "^0.42.0",
abb1cf52 121 "eslint-plugin-html": "^7.1.0",
7648848e 122 "eslint-plugin-import": "^2.26.0",
4035ad1a 123 "eslint-plugin-markdown": "^3.0.0",
812f891b 124 "eslint-plugin-unicorn": "^44.0.0",
7648848e 125 "find-unused-sass-variables": "^4.0.4",
c1eab892 126 "globby": "^11.1.0",
caefd704 127 "hammer-simulator": "0.0.1",
812f891b 128 "hugo-bin": "^0.92.2",
124bdfa4 129 "ip": "^2.0.0",
db349078 130 "jquery": "^3.6.1",
0173f7a9 131 "karma": "^6.4.1",
bcf69163 132 "karma-browserstack-launcher": "1.4.0",
33827d24 133 "karma-chrome-launcher": "^3.1.1",
2c12dfd1 134 "karma-coverage-istanbul-reporter": "^3.0.3",
f59c2d94 135 "karma-detect-browsers": "^2.3.3",
05f1b15d 136 "karma-firefox-launcher": "^2.1.2",
7f70fcab 137 "karma-jasmine": "^5.1.0",
28b1bc67 138 "karma-jasmine-html-reporter": "^2.0.0",
7648848e 139 "karma-rollup-preprocessor": "7.0.7",
812f891b 140 "lockfile-lint": "^4.9.5",
d0117a17 141 "nodemon": "^2.0.20",
fdc5c1f4 142 "npm-run-all": "^4.1.5",
812f891b 143 "postcss": "^8.4.17",
81aa8e07 144 "postcss-cli": "^10.0.0",
2b65149e 145 "rollup": "^2.79.1",
93a4c0fb 146 "rollup-plugin-istanbul": "^3.0.0",
75e09b1c 147 "rtlcss": "^4.0.0",
2b65149e 148 "sass": "^1.55.0",
17260410 149 "shelljs": "^0.8.5",
812f891b 150 "stylelint": "^14.13.0",
bcfc8d0d 151 "stylelint-config-twbs-bootstrap": "^6.0.0",
db349078 152 "terser": "^5.15.0",
812f891b 153 "vnu-jar": "22.9.29"
9a8e6195 154 },
be9d1f43 155 "files": [
5570f1c1 156 "dist/{css,js}/*.{css,js,map}",
dae20da7 157 "js/{src,dist}/**/*.{js,map}",
5570f1c1 158 "scss/**/*.scss"
be9d1f43 159 ],
129bb08f
X
160 "hugo-bin": {
161 "buildTags": "extended"
162 },
9a8e6195 163 "jspm": {
c82110d0 164 "registry": "npm",
9a8e6195 165 "main": "js/bootstrap",
1ba4577c
JD
166 "directories": {
167 "lib": "dist"
168 },
9a8e6195
MO
169 "shim": {
170 "js/bootstrap": {
fe0ad821 171 "deps": [
adfdf716 172 "@popperjs/core"
83cea3ba 173 ]
9a8e6195
MO
174 }
175 },
f8223076
AW
176 "dependencies": {},
177 "peerDependencies": {
b14190b5 178 "@popperjs/core": "^2.11.6"
1ba4577c 179 }
ac6cfbba 180 }
9726fded 181}