2012-04-19 15:32:41 -07:00
|
|
|
{
|
2013-12-15 10:56:51 -08:00
|
|
|
"name": "bootstrap",
|
2014-03-03 14:18:03 -08:00
|
|
|
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
|
2021-05-13 19:22:20 +03:00
|
|
|
"version": "5.0.1",
|
2021-01-10 08:03:49 +02:00
|
|
|
"config": {
|
|
|
|
"version_short": "5.0"
|
|
|
|
},
|
2013-12-17 14:39:36 +02:00
|
|
|
"keywords": [
|
2014-03-03 14:20:37 -08:00
|
|
|
"css",
|
2015-01-15 21:20:40 +00:00
|
|
|
"sass",
|
2014-03-03 14:20:37 -08:00
|
|
|
"mobile-first",
|
|
|
|
"responsive",
|
|
|
|
"front-end",
|
|
|
|
"framework",
|
|
|
|
"web"
|
2013-12-17 14:39:36 +02:00
|
|
|
],
|
2018-04-02 14:55:58 +03:00
|
|
|
"homepage": "https://getbootstrap.com/",
|
2016-05-20 09:04:31 -07:00
|
|
|
"author": "The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)",
|
2016-06-20 16:18:21 -07:00
|
|
|
"contributors": [
|
|
|
|
"Twitter, Inc."
|
|
|
|
],
|
2013-12-17 14:39:36 +02:00
|
|
|
"scripts": {
|
2018-07-12 08:29:23 +03:00
|
|
|
"start": "npm-run-all --parallel watch docs-serve",
|
2020-04-08 21:28:54 +03:00
|
|
|
"bundlewatch": "bundlewatch --config .bundlewatch.config.json",
|
2020-06-08 18:19:14 +03:00
|
|
|
"css": "npm-run-all css-compile css-prefix css-rtl css-minify",
|
2020-09-23 11:13:24 +03:00
|
|
|
"css-compile": "sass --style expanded --source-map --embed-sources --no-error-css scss/:dist/css/",
|
2020-11-19 15:55:32 +02:00
|
|
|
"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\"",
|
2019-07-24 09:47:37 +03:00
|
|
|
"css-lint": "npm-run-all --continue-on-error --parallel css-lint-*",
|
2020-11-06 12:00:03 +02:00
|
|
|
"css-lint-stylelint": "stylelint \"**/*.{css,scss}\" --cache --cache-location .cache/.stylelintcache --rd",
|
2019-09-17 00:22:49 +03:00
|
|
|
"css-lint-vars": "fusv scss/ site/assets/scss/",
|
2020-06-08 18:19:14 +03:00
|
|
|
"css-minify": "npm-run-all --parallel css-minify-*",
|
2021-02-18 20:53:18 +02:00
|
|
|
"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\"",
|
|
|
|
"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\"",
|
2018-10-21 12:32:07 +03:00
|
|
|
"css-prefix": "npm-run-all --parallel css-prefix-*",
|
2020-11-19 15:55:32 +02:00
|
|
|
"css-prefix-main": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.rtl*.css\" \"!dist/css/*.min.css\"",
|
2019-09-17 00:22:49 +03:00
|
|
|
"css-prefix-examples": "postcss --config build/postcss.config.js --replace \"site/content/**/*.css\"",
|
2021-01-10 08:03:49 +02:00
|
|
|
"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\"",
|
2019-07-29 10:57:54 +03:00
|
|
|
"js": "npm-run-all js-compile js-minify",
|
|
|
|
"js-compile": "npm-run-all --parallel js-compile-*",
|
2017-11-05 19:03:33 +01:00
|
|
|
"js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.js --sourcemap",
|
2019-03-01 18:40:39 +02:00
|
|
|
"js-compile-standalone-esm": "rollup --environment ESM:true,BUNDLE:false --config build/rollup.config.js --sourcemap",
|
2017-11-05 19:03:33 +01:00
|
|
|
"js-compile-bundle": "rollup --environment BUNDLE:true --config build/rollup.config.js --sourcemap",
|
2018-06-27 11:33:07 +02:00
|
|
|
"js-compile-plugins": "node build/build-plugins.js",
|
2019-09-02 12:44:19 +03:00
|
|
|
"js-lint": "eslint --cache --cache-location .cache/.eslintcache --report-unused-disable-directives .",
|
2019-09-17 00:22:49 +03:00
|
|
|
"js-minify": "npm-run-all --parallel js-minify-*",
|
2020-12-11 15:48:21 +02:00
|
|
|
"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",
|
|
|
|
"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",
|
|
|
|
"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",
|
2020-11-25 09:29:16 +02:00
|
|
|
"js-test": "npm-run-all --parallel js-test-karma js-test-jquery js-test-integration-*",
|
2020-05-08 16:17:40 +03:00
|
|
|
"js-debug": "cross-env DEBUG=true npm run js-test-karma",
|
2017-11-17 18:38:34 +02:00
|
|
|
"js-test-karma": "karma start js/tests/karma.conf.js",
|
2020-11-25 09:29:16 +02:00
|
|
|
"js-test-integration-bundle": "rollup --config js/tests/integration/rollup.bundle.js",
|
|
|
|
"js-test-integration-modularity": "rollup --config js/tests/integration/rollup.bundle-modularity.js",
|
2021-01-13 19:16:51 +02:00
|
|
|
"js-test-cloud": "cross-env BROWSERSTACK=true npm run js-test-karma",
|
2020-05-06 07:23:05 +02:00
|
|
|
"js-test-jquery": "cross-env JQUERY=true npm run js-test-karma",
|
2019-12-27 14:29:48 +02:00
|
|
|
"lint": "npm-run-all --parallel js-lint css-lint lockfile-lint",
|
2019-09-17 00:22:49 +03:00
|
|
|
"docs": "npm-run-all docs-build docs-lint",
|
2019-02-05 19:39:41 +02:00
|
|
|
"docs-build": "hugo --cleanDestinationDir",
|
|
|
|
"docs-compile": "npm run docs-build",
|
2021-03-02 17:05:26 +02:00
|
|
|
"docs-linkinator": "linkinator _site --recurse --skip \"^(?!http://localhost)\" --verbosity error",
|
2019-07-15 16:26:36 +03:00
|
|
|
"docs-vnu": "node build/vnu-jar.js",
|
|
|
|
"docs-lint": "npm-run-all --parallel docs-vnu docs-linkinator",
|
2019-02-07 13:10:06 +02:00
|
|
|
"docs-serve": "hugo server --port 9001 --disableFastRender",
|
2021-03-02 17:05:26 +02:00
|
|
|
"docs-serve-only": "npx sirv-cli _site --port 9001",
|
2020-02-20 11:34:01 +02:00
|
|
|
"lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
|
2020-12-20 17:38:11 +02:00
|
|
|
"update-deps": "ncu -u -x karma-browserstack-launcher,terser && npm update && echo Manually update site/assets/js/vendor",
|
2020-04-29 21:03:26 +03:00
|
|
|
"release": "npm-run-all dist release-sri docs-build release-zip*",
|
2017-11-23 10:22:54 +02:00
|
|
|
"release-sri": "node build/generate-sri.js",
|
2017-04-19 21:59:12 +10:00
|
|
|
"release-version": "node build/change-version.js",
|
2019-11-07 11:33:10 +02:00
|
|
|
"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\"",
|
2020-04-29 21:03:26 +03:00
|
|
|
"release-zip-examples": "node build/zip-examples.js",
|
2018-08-02 11:30:03 +03:00
|
|
|
"dist": "npm-run-all --parallel css js",
|
2019-08-08 21:26:02 +03:00
|
|
|
"test": "npm-run-all lint dist js-test docs-build docs-lint",
|
2020-02-22 09:15:19 +02:00
|
|
|
"netlify": "cross-env-shell HUGO_BASEURL=$DEPLOY_PRIME_URL npm-run-all dist release-sri docs-build",
|
2018-07-12 08:29:23 +03:00
|
|
|
"watch": "npm-run-all --parallel watch-*",
|
2019-09-17 00:22:49 +03:00
|
|
|
"watch-css-main": "nodemon --watch scss/ --ext scss --exec \"npm-run-all css-lint css-compile css-prefix\"",
|
2020-06-08 18:19:14 +03:00
|
|
|
"watch-css-dist": "nodemon --watch dist/css/ --ext css --ignore \"dist/css/*.rtl.*\" --exec \"npm run css-rtl\"",
|
2019-09-17 00:22:49 +03:00
|
|
|
"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\"",
|
2019-11-04 14:44:07 +02:00
|
|
|
"watch-js-docs": "nodemon --watch site/assets/js/ --ext js --exec \"npm run js-lint\""
|
2013-12-17 14:39:36 +02:00
|
|
|
},
|
2014-03-07 23:07:38 +01:00
|
|
|
"style": "dist/css/bootstrap.css",
|
2015-01-18 14:53:06 -08:00
|
|
|
"sass": "scss/bootstrap.scss",
|
2019-03-01 11:11:41 +02:00
|
|
|
"main": "dist/js/bootstrap.js",
|
|
|
|
"module": "dist/js/bootstrap.esm.js",
|
2013-12-15 10:56:51 -08:00
|
|
|
"repository": {
|
2013-12-20 20:09:51 +01:00
|
|
|
"type": "git",
|
2017-10-09 14:34:32 +03:00
|
|
|
"url": "git+https://github.com/twbs/bootstrap.git"
|
2013-12-15 10:56:51 -08:00
|
|
|
},
|
|
|
|
"bugs": {
|
2013-12-20 20:09:51 +01:00
|
|
|
"url": "https://github.com/twbs/bootstrap/issues"
|
2013-12-15 10:56:51 -08:00
|
|
|
},
|
2015-07-25 11:28:00 -07:00
|
|
|
"license": "MIT",
|
2020-01-02 10:20:57 +02:00
|
|
|
"funding": {
|
|
|
|
"type": "opencollective",
|
|
|
|
"url": "https://opencollective.com/bootstrap"
|
|
|
|
},
|
2017-08-10 05:41:05 +03:00
|
|
|
"dependencies": {},
|
2017-08-07 21:37:01 -07:00
|
|
|
"peerDependencies": {
|
2021-04-06 17:56:00 +03:00
|
|
|
"@popperjs/core": "^2.9.2"
|
2016-03-07 01:23:55 -08:00
|
|
|
},
|
2013-12-15 10:56:51 -08:00
|
|
|
"devDependencies": {
|
2021-06-13 08:05:49 +03:00
|
|
|
"@babel/cli": "^7.14.5",
|
2021-06-15 17:39:57 +03:00
|
|
|
"@babel/core": "^7.14.6",
|
2021-06-22 12:46:19 +03:00
|
|
|
"@babel/preset-env": "^7.14.7",
|
2021-04-06 17:56:00 +03:00
|
|
|
"@popperjs/core": "^2.9.2",
|
2021-02-16 12:48:56 +02:00
|
|
|
"@rollup/plugin-babel": "^5.3.0",
|
2021-05-11 13:11:40 +03:00
|
|
|
"@rollup/plugin-commonjs": "^19.0.0",
|
2021-05-11 13:27:06 +03:00
|
|
|
"@rollup/plugin-node-resolve": "^13.0.0",
|
2021-03-30 16:05:21 +03:00
|
|
|
"@rollup/plugin-replace": "^2.4.2",
|
2021-06-01 13:05:28 +03:00
|
|
|
"autoprefixer": "^10.2.6",
|
2021-01-26 22:24:46 +02:00
|
|
|
"bundlewatch": "^0.3.2",
|
2021-05-01 14:47:54 +03:00
|
|
|
"clean-css-cli": "^5.3.0",
|
2020-12-02 06:46:31 +02:00
|
|
|
"cross-env": "^7.0.3",
|
2021-06-22 12:34:54 +03:00
|
|
|
"eslint": "^7.29.0",
|
2021-05-04 15:57:55 +03:00
|
|
|
"eslint-config-xo": "^0.36.0",
|
2021-06-01 13:00:58 +03:00
|
|
|
"eslint-plugin-import": "^2.23.4",
|
2021-05-04 15:27:03 +03:00
|
|
|
"eslint-plugin-unicorn": "^31.0.0",
|
2021-01-05 15:51:47 +02:00
|
|
|
"find-unused-sass-variables": "^3.1.0",
|
2021-05-11 13:00:52 +03:00
|
|
|
"glob": "^7.1.7",
|
2021-06-18 09:02:46 +03:00
|
|
|
"globby": "^11.0.4",
|
2018-03-03 23:04:11 +02:00
|
|
|
"hammer-simulator": "0.0.1",
|
2021-06-22 12:31:29 +03:00
|
|
|
"hugo-bin": "^0.72.1",
|
2018-08-01 10:11:10 +02:00
|
|
|
"ip": "^1.1.5",
|
2021-03-08 18:46:39 +02:00
|
|
|
"jquery": "^3.6.0",
|
2021-06-13 08:05:49 +03:00
|
|
|
"karma": "^6.3.4",
|
2020-12-22 15:45:01 +02:00
|
|
|
"karma-browserstack-launcher": "1.4.0",
|
2019-08-16 11:10:07 +03:00
|
|
|
"karma-chrome-launcher": "^3.1.0",
|
2020-06-02 19:21:06 +03:00
|
|
|
"karma-coverage-istanbul-reporter": "^3.0.3",
|
2018-10-06 11:49:39 +03:00
|
|
|
"karma-detect-browsers": "^2.3.3",
|
2021-06-08 08:51:15 +03:00
|
|
|
"karma-firefox-launcher": "^2.1.1",
|
2020-08-18 21:28:26 +03:00
|
|
|
"karma-jasmine": "^4.0.1",
|
2021-05-11 13:05:52 +03:00
|
|
|
"karma-jasmine-html-reporter": "^1.6.0",
|
2021-03-16 12:35:45 +02:00
|
|
|
"karma-rollup-preprocessor": "^7.0.7",
|
2021-02-22 09:12:05 +02:00
|
|
|
"linkinator": "^2.13.6",
|
2021-03-02 15:49:12 +02:00
|
|
|
"lockfile-lint": "^4.6.2",
|
2021-01-07 10:03:00 +02:00
|
|
|
"nodemon": "^2.0.7",
|
2018-11-24 18:14:31 +02:00
|
|
|
"npm-run-all": "^4.1.5",
|
2021-06-18 09:08:48 +03:00
|
|
|
"postcss": "^8.3.5",
|
2020-12-14 16:41:34 +02:00
|
|
|
"postcss-cli": "^8.3.1",
|
2021-06-22 12:41:32 +03:00
|
|
|
"rollup": "^2.52.2",
|
2020-12-29 12:31:04 +02:00
|
|
|
"rollup-plugin-istanbul": "^3.0.0",
|
2021-05-25 16:14:43 +03:00
|
|
|
"rtlcss": "^3.2.0",
|
2021-06-08 08:51:15 +03:00
|
|
|
"sass": "1.32.13",
|
2020-04-28 15:23:03 +03:00
|
|
|
"shelljs": "^0.8.4",
|
2021-05-01 14:44:46 +03:00
|
|
|
"stylelint": "^13.13.1",
|
2021-06-13 08:05:49 +03:00
|
|
|
"stylelint-config-twbs-bootstrap": "^2.2.1",
|
2020-10-19 16:05:25 +03:00
|
|
|
"terser": "5.1.0",
|
2021-06-13 08:05:49 +03:00
|
|
|
"vnu-jar": "21.6.11"
|
2013-12-15 10:56:51 -08:00
|
|
|
},
|
2015-02-14 14:36:50 +02:00
|
|
|
"files": [
|
2018-08-02 09:25:40 +03:00
|
|
|
"dist/{css,js}/*.{css,js,map}",
|
2019-02-13 15:21:04 +02:00
|
|
|
"js/{src,dist}/**/*.{js,map}",
|
2018-08-02 09:25:40 +03:00
|
|
|
"scss/**/*.scss"
|
2015-02-14 14:36:50 +02:00
|
|
|
],
|
2019-09-17 00:22:49 +03:00
|
|
|
"hugo-bin": {
|
|
|
|
"buildTags": "extended"
|
|
|
|
},
|
2013-12-15 10:56:51 -08:00
|
|
|
"jspm": {
|
2017-09-05 21:49:29 +03:00
|
|
|
"registry": "npm",
|
2013-12-15 10:56:51 -08:00
|
|
|
"main": "js/bootstrap",
|
2015-08-24 07:44:30 -04:00
|
|
|
"directories": {
|
|
|
|
"lib": "dist"
|
|
|
|
},
|
2013-12-15 10:56:51 -08:00
|
|
|
"shim": {
|
|
|
|
"js/bootstrap": {
|
2015-10-14 00:49:05 +03:00
|
|
|
"deps": [
|
2020-06-19 11:17:01 +03:00
|
|
|
"@popperjs/core"
|
2018-06-17 22:59:48 +02:00
|
|
|
]
|
2013-12-15 10:56:51 -08:00
|
|
|
}
|
|
|
|
},
|
2017-08-15 13:48:38 +02:00
|
|
|
"dependencies": {},
|
|
|
|
"peerDependencies": {
|
2021-04-06 17:56:00 +03:00
|
|
|
"@popperjs/core": "^2.9.2"
|
2015-08-24 07:44:30 -04:00
|
|
|
}
|
2013-11-26 12:10:06 +02:00
|
|
|
}
|
2012-12-19 23:52:38 -08:00
|
|
|
}
|