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.",
|
2018-07-23 22:25:52 -04:00
|
|
|
"version": "4.1.3",
|
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",
|
2018-06-23 18:23:47 -04:00
|
|
|
"blc": "blc --exclude-external --filter-level 3 --get --ordered --recursive --host-requests 4 --input http://localhost:3000/",
|
|
|
|
"http-server": "http-server --silent -p 3000",
|
2017-09-27 09:20:46 -04:00
|
|
|
"bundlesize": "bundlesize",
|
2018-06-23 18:23:47 -04:00
|
|
|
"check-broken-links": "npm-run-all --parallel --race \"http-server -- _gh_pages/\" blc",
|
2018-07-03 03:43:57 -04:00
|
|
|
"css": "npm-run-all --parallel css-lint* css-compile* --sequential css-prefix* css-minify*",
|
2018-07-03 04:12:38 -04:00
|
|
|
"css-main": "npm-run-all --parallel css-lint css-compile --sequential css-prefix css-minify css-copy",
|
2017-10-01 04:09:45 -04:00
|
|
|
"css-docs": "npm-run-all --parallel css-lint-docs css-compile-docs --sequential css-prefix-docs css-minify-docs",
|
2017-08-08 12:37:50 -04:00
|
|
|
"css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/bootstrap.scss dist/css/bootstrap.css && node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/bootstrap-grid.scss dist/css/bootstrap-grid.css && node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/bootstrap-reboot.scss dist/css/bootstrap-reboot.css",
|
2018-06-21 00:31:38 -04:00
|
|
|
"css-compile-docs": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 site/docs/4.1/assets/scss/docs.scss site/docs/4.1/assets/css/docs.min.css",
|
|
|
|
"css-copy": "shx mkdir -p site/docs/4.1/dist/ && shx cp -r dist/css/ site/docs/4.1/dist/",
|
2017-12-16 06:44:17 -05:00
|
|
|
"css-lint": "stylelint --syntax scss \"scss/**/*.scss\"",
|
2018-08-02 02:43:52 -04:00
|
|
|
"css-lint-docs": "stylelint --syntax scss \"site/docs/4.1/assets/scss/*.scss\" && stylelint \"site/docs/**/*.css\"",
|
2018-06-21 00:31:38 -04:00
|
|
|
"css-lint-vars": "node build/lint-vars.js scss/ site/docs/4.1/assets/scss/",
|
2017-11-16 07:48:08 -05:00
|
|
|
"css-prefix": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
|
2018-08-02 02:43:52 -04:00
|
|
|
"css-prefix-docs": "postcss --config build/postcss.config.js --replace \"site/docs/4.1/assets/css/docs.min.css\" \"site/docs/**/*.css\"",
|
2017-08-08 12:37:50 -04:00
|
|
|
"css-minify": "cleancss --level 1 --source-map --source-map-inline-sources --output dist/css/bootstrap.min.css dist/css/bootstrap.css && cleancss --level 1 --source-map --source-map-inline-sources --output dist/css/bootstrap-grid.min.css dist/css/bootstrap-grid.css && cleancss --level 1 --source-map --source-map-inline-sources --output dist/css/bootstrap-reboot.min.css dist/css/bootstrap-reboot.css",
|
2018-06-21 00:31:38 -04:00
|
|
|
"css-minify-docs": "cleancss --level 1 --source-map --source-map-inline-sources --output site/docs/4.1/assets/css/docs.min.css site/docs/4.1/assets/css/docs.min.css",
|
|
|
|
"js": "npm-run-all js-lint* js-compile js-minify js-copy",
|
|
|
|
"js-copy": "shx mkdir -p site/docs/4.1/dist/ && shx cp -r dist/js/ site/docs/4.1/dist/",
|
2017-10-01 04:09:45 -04:00
|
|
|
"js-main": "npm-run-all js-lint js-compile js-minify",
|
2017-04-19 07:59:12 -04:00
|
|
|
"js-docs": "npm-run-all js-lint-docs js-minify-docs",
|
2018-03-02 08:15:20 -05:00
|
|
|
"js-lint": "eslint js/src js/tests build/",
|
2018-06-21 00:31:38 -04:00
|
|
|
"js-lint-docs": "eslint site/docs/4.1/assets/js/ site/sw.js",
|
2018-07-03 04:12:38 -04:00
|
|
|
"js-compile": "npm-run-all --parallel js-compile-* --sequential js-copy",
|
2017-11-05 13:03:33 -05:00
|
|
|
"js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.js --sourcemap",
|
|
|
|
"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",
|
|
|
|
"js-compile-plugins-coverage": "cross-env NODE_ENV=test node build/build-plugins.js",
|
2017-10-01 04:09:45 -04:00
|
|
|
"js-minify": "npm-run-all --parallel js-minify-*",
|
2017-10-19 02:01:26 -04:00
|
|
|
"js-minify-standalone": "uglifyjs --compress typeofs=false --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-bundle": "uglifyjs --compress typeofs=false --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",
|
2018-06-21 00:31:38 -04:00
|
|
|
"js-minify-docs": "uglifyjs --mangle --comments \"/^!/\" --output site/docs/4.1/assets/js/docs.min.js site/docs/4.1/assets/js/vendor/anchor.min.js site/docs/4.1/assets/js/vendor/clipboard.min.js site/docs/4.1/assets/js/vendor/holder.min.js \"site/docs/4.1/assets/js/src/*.js\"",
|
2018-06-21 10:02:23 -04:00
|
|
|
"js-test": "npm-run-all js-test-karma*",
|
2017-11-17 11:38:34 -05:00
|
|
|
"js-test-karma": "karma start js/tests/karma.conf.js",
|
|
|
|
"js-test-karma-old": "cross-env USE_OLD_JQUERY=true npm run js-test-karma",
|
2018-03-29 16:16:56 -04:00
|
|
|
"js-test-karma-bundle": "cross-env karma start js/tests/karma-bundle.conf.js",
|
|
|
|
"js-test-karma-bundle-old": "cross-env USE_OLD_JQUERY=true npm run js-test-karma-bundle",
|
2018-06-23 18:23:47 -04:00
|
|
|
"js-test-cloud": "npm-run-all --parallel --race http-server saucelabs-test",
|
2018-03-23 10:26:09 -04:00
|
|
|
"coveralls": "shx cat js/coverage/lcov.info | coveralls",
|
2017-10-01 04:09:45 -04:00
|
|
|
"docs": "npm-run-all --parallel css-docs js-docs --sequential docs-compile docs-lint",
|
2017-09-26 06:08:02 -04:00
|
|
|
"docs-compile": "bundle exec jekyll build",
|
|
|
|
"postdocs-compile": "npm run docs-workbox-precache",
|
2017-08-26 05:59:04 -04:00
|
|
|
"docs-github": "shx echo \"github: true\" > twbsconfig.yml && npm run docs-compile -- --config _config.yml,twbsconfig.yml && shx rm ./twbsconfig.yml",
|
2018-07-12 02:43:15 -04:00
|
|
|
"docs-github-serve": "npm run docs-serve -- --skip-initial-build --no-watch",
|
2017-10-29 19:28:52 -04:00
|
|
|
"docs-lint": "npm-run-all docs-lint-*",
|
|
|
|
"docs-lint-htmllint": "htmllint --rc build/.htmllintrc \"_gh_pages/**/*.html\" \"js/tests/**/*.html\"",
|
|
|
|
"docs-lint-vnu-jar": "node build/vnu-jar.js",
|
2017-10-01 04:09:45 -04:00
|
|
|
"docs-serve": "bundle exec jekyll serve",
|
2017-09-15 06:37:34 -04:00
|
|
|
"docs-workbox-precache": "node build/workbox.js",
|
2018-06-21 00:31:38 -04:00
|
|
|
"maintenance-dependencies": "ncu -a -x jquery && npm update && bundle update && shx echo \"Manually update site/docs/4.1/assets/js/vendor/*, js/tests/vendor/* and .travis.yml\"",
|
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",
|
|
|
|
"release-zip": "cd dist/ && zip -r9 bootstrap-$npm_package_version-dist.zip * && shx mv bootstrap-$npm_package_version-dist.zip ..",
|
2018-06-23 18:23:47 -04:00
|
|
|
"saucelabs-test": "node build/saucelabs-unit-test.js",
|
2018-07-03 13:10:09 -04:00
|
|
|
"dist": "npm-run-all --parallel css-main js",
|
2018-05-23 04:27:36 -04:00
|
|
|
"test": "npm-run-all dist js-test docs-compile docs-lint bundlesize",
|
2018-07-12 01:29:23 -04:00
|
|
|
"watch": "npm-run-all --parallel watch-*",
|
2018-07-03 04:12:38 -04:00
|
|
|
"watch-css-main": "nodemon --watch scss/ --ext scss --exec \"npm run css-main\"",
|
2018-07-03 03:43:57 -04:00
|
|
|
"watch-css-docs": "nodemon --watch site/docs/4.1/assets/scss/ --ext scss --exec \"npm run css-docs\"",
|
2018-07-03 04:12:38 -04:00
|
|
|
"watch-js-main": "nodemon --watch js/src/ --ext js --exec \"npm run js-compile\"",
|
2018-07-03 03:43:57 -04:00
|
|
|
"watch-js-docs": "nodemon --watch site/docs/4.1/assets/js/src/ --ext js --exec \"npm run js-docs\""
|
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",
|
2016-07-28 12:55:10 -04:00
|
|
|
"main": "dist/js/bootstrap",
|
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",
|
2017-08-09 22:41:05 -04:00
|
|
|
"dependencies": {},
|
2017-08-08 00:37:01 -04:00
|
|
|
"peerDependencies": {
|
2017-10-19 12:02:27 -04:00
|
|
|
"jquery": "1.9.1 - 3",
|
2018-04-10 08:35:18 -04:00
|
|
|
"popper.js": "^1.14.3"
|
2016-03-07 04:23:55 -05:00
|
|
|
},
|
2013-12-15 13:56:51 -05:00
|
|
|
"devDependencies": {
|
2018-07-28 14:47:14 -04:00
|
|
|
"@babel/cli": "7.0.0-beta.54",
|
|
|
|
"@babel/core": "7.0.0-beta.54",
|
|
|
|
"@babel/preset-env": "7.0.0-beta.54",
|
|
|
|
"autoprefixer": "^9.0.1",
|
|
|
|
"babel-eslint": "^8.2.6",
|
2018-04-10 08:35:18 -04:00
|
|
|
"babel-plugin-istanbul": "^4.1.6",
|
2018-06-23 18:23:47 -04:00
|
|
|
"broken-link-checker": "^0.7.8",
|
2018-04-30 08:18:30 -04:00
|
|
|
"bundlesize": "^0.15.3",
|
2018-03-05 02:14:58 -05:00
|
|
|
"clean-css-cli": "^4.1.11",
|
2018-07-06 05:11:26 -04:00
|
|
|
"coveralls": "^3.0.2",
|
2018-06-20 01:50:02 -04:00
|
|
|
"cross-env": "^5.2.0",
|
2018-07-28 14:47:14 -04:00
|
|
|
"eslint": "^5.2.0",
|
2017-11-27 12:41:48 -05:00
|
|
|
"glob": "^7.1.2",
|
2018-04-30 08:18:30 -04:00
|
|
|
"htmllint-cli": "^0.0.7",
|
2018-06-23 18:23:47 -04:00
|
|
|
"http-server": "^0.11.1",
|
2018-04-30 08:18:30 -04:00
|
|
|
"jsunitsaucelabs": "^1.3.2",
|
2018-07-28 14:47:14 -04:00
|
|
|
"karma": "^2.0.5",
|
2017-11-10 05:25:47 -05:00
|
|
|
"karma-chrome-launcher": "^2.2.0",
|
2018-06-20 01:50:02 -04:00
|
|
|
"karma-coverage-istanbul-reporter": "^2.0.1",
|
2018-04-10 08:35:18 -04:00
|
|
|
"karma-detect-browsers": "^2.3.2",
|
2017-12-22 03:37:59 -05:00
|
|
|
"karma-firefox-launcher": "^1.1.0",
|
2018-05-22 08:47:40 -04:00
|
|
|
"karma-qunit": "^2.1.0",
|
2018-03-09 17:17:57 -05:00
|
|
|
"karma-sinon": "^1.0.5",
|
2018-07-28 14:47:14 -04:00
|
|
|
"node-sass": "^4.9.2",
|
|
|
|
"nodemon": "^1.18.3",
|
2018-05-22 08:47:40 -04:00
|
|
|
"npm-run-all": "^4.1.3",
|
2018-04-10 08:35:18 -04:00
|
|
|
"popper.js": "^1.14.3",
|
2018-07-28 14:47:14 -04:00
|
|
|
"postcss-cli": "^6.0.0",
|
2018-05-22 08:47:40 -04:00
|
|
|
"qunit": "^2.6.1",
|
2018-07-28 14:47:14 -04:00
|
|
|
"rollup": "^0.63.4",
|
2018-06-20 01:50:02 -04:00
|
|
|
"rollup-plugin-babel": "4.0.0-beta.5",
|
2018-03-20 11:39:54 -04:00
|
|
|
"rollup-plugin-node-resolve": "^3.3.0",
|
2018-05-22 08:47:40 -04:00
|
|
|
"shelljs": "^0.8.2",
|
2018-07-28 14:47:14 -04:00
|
|
|
"shx": "^0.3.2",
|
|
|
|
"sinon": "^6.1.4",
|
2017-11-23 03:22:54 -05:00
|
|
|
"sri-toolbox": "^0.2.0",
|
2018-07-28 14:47:14 -04:00
|
|
|
"stylelint": "^9.4.0",
|
2018-04-10 08:35:18 -04:00
|
|
|
"stylelint-config-recommended-scss": "^3.2.0",
|
2018-03-05 02:14:58 -05:00
|
|
|
"stylelint-config-standard": "^18.2.0",
|
|
|
|
"stylelint-order": "^0.8.1",
|
2018-07-28 14:47:14 -04:00
|
|
|
"stylelint-scss": "^3.2.0",
|
|
|
|
"uglify-js": "^3.4.6",
|
|
|
|
"vnu-jar": "^18.7.23",
|
|
|
|
"workbox-build": "^3.4.1"
|
2013-12-15 13:56:51 -05:00
|
|
|
},
|
2014-03-07 01:42:48 -05:00
|
|
|
"engines": {
|
2017-09-27 09:47:38 -04:00
|
|
|
"node": ">=6"
|
2014-03-07 01:42:48 -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}",
|
|
|
|
"js/{src,dist}/*.{js,map}",
|
|
|
|
"scss/**/*.scss"
|
2015-02-14 07:36:50 -05:00
|
|
|
],
|
2017-09-27 09:20:46 -04:00
|
|
|
"bundlesize": [
|
|
|
|
{
|
2017-10-02 15:03:12 -04:00
|
|
|
"path": "./dist/css/bootstrap-grid.css",
|
2018-07-29 00:34:27 -04:00
|
|
|
"maxSize": "6 kB"
|
2017-10-02 15:03:12 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/css/bootstrap-grid.min.css",
|
2018-07-29 00:34:27 -04:00
|
|
|
"maxSize": "6 kB"
|
2017-10-02 15:03:12 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/css/bootstrap-reboot.css",
|
2017-12-23 03:09:10 -05:00
|
|
|
"maxSize": "3 kB"
|
2017-10-02 15:03:12 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/css/bootstrap-reboot.min.css",
|
2017-12-23 03:09:10 -05:00
|
|
|
"maxSize": "3 kB"
|
2017-10-02 15:03:12 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/css/bootstrap.css",
|
2017-09-27 09:20:46 -04:00
|
|
|
"maxSize": "25 kB"
|
|
|
|
},
|
2017-10-02 15:03:12 -04:00
|
|
|
{
|
|
|
|
"path": "./dist/css/bootstrap.min.css",
|
2017-12-23 03:09:10 -05:00
|
|
|
"maxSize": "21 kB"
|
2017-10-02 15:03:12 -04:00
|
|
|
},
|
2017-09-27 09:20:46 -04:00
|
|
|
{
|
|
|
|
"path": "./dist/js/bootstrap.bundle.js",
|
2017-10-02 15:03:12 -04:00
|
|
|
"maxSize": "45 kB"
|
2017-09-27 09:20:46 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/js/bootstrap.bundle.min.js",
|
|
|
|
"maxSize": "25 kB"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/js/bootstrap.js",
|
2018-05-01 08:09:24 -04:00
|
|
|
"maxSize": "21 kB"
|
2017-09-27 09:20:46 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/js/bootstrap.min.js",
|
|
|
|
"maxSize": "15 kB"
|
|
|
|
}
|
|
|
|
],
|
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": [
|
2017-08-15 07:48:38 -04:00
|
|
|
"jquery",
|
|
|
|
"popper.js"
|
2015-10-13 17:49:05 -04:00
|
|
|
],
|
2013-12-15 13:56:51 -05:00
|
|
|
"exports": "$"
|
|
|
|
}
|
|
|
|
},
|
2017-08-15 07:48:38 -04:00
|
|
|
"dependencies": {},
|
|
|
|
"peerDependencies": {
|
2017-11-24 19:02:25 -05:00
|
|
|
"jquery": "1.9.1 - 3",
|
2018-03-20 11:39:54 -04:00
|
|
|
"popper.js": "^1.14.1"
|
2015-08-24 07:44:30 -04:00
|
|
|
}
|
2013-11-26 05:10:06 -05:00
|
|
|
}
|
2012-12-20 02:52:38 -05:00
|
|
|
}
|