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