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.",
|
2017-12-28 12:16:39 -05:00
|
|
|
"version": "4.0.0-beta.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
|
|
|
],
|
2016-10-03 12:55:59 -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": {
|
2017-09-27 09:20:46 -04:00
|
|
|
"bundlesize": "bundlesize",
|
2017-10-01 04:09:45 -04:00
|
|
|
"css": "npm-run-all --parallel css-lint* css-compile* --sequential css-prefix* css-minify*",
|
|
|
|
"css-main": "npm-run-all --parallel css-lint css-compile --sequential css-prefix css-minify",
|
|
|
|
"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",
|
|
|
|
"css-compile-docs": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 assets/scss/docs.scss assets/css/docs.min.css",
|
2017-12-16 06:44:17 -05:00
|
|
|
"css-lint": "stylelint --syntax scss \"scss/**/*.scss\"",
|
|
|
|
"css-lint-docs": "stylelint --syntax scss \"assets/scss/*.scss\" && stylelint \"docs/**/*.css\"",
|
2017-11-27 12:41:48 -05:00
|
|
|
"css-lint-vars": "node build/lint-vars.js scss/ 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\"",
|
2017-10-07 11:49:35 -04:00
|
|
|
"css-prefix-docs": "postcss --config build/postcss.config.js --replace \"assets/css/docs.min.css\" \"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",
|
|
|
|
"css-minify-docs": "cleancss --level 1 --source-map --source-map-inline-sources --output assets/css/docs.min.css assets/css/docs.min.css",
|
2017-10-24 07:48:17 -04:00
|
|
|
"js": "npm-run-all js-lint* js-compile js-minify",
|
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",
|
2017-12-16 06:44:17 -05:00
|
|
|
"js-lint": "eslint js/ build/",
|
|
|
|
"js-lint-docs": "eslint assets/js/ docs/ sw.js",
|
2017-04-19 07:59:12 -04:00
|
|
|
"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",
|
|
|
|
"js-compile-bundle": "rollup --environment BUNDLE:true --config build/rollup.config.js --sourcemap",
|
2017-09-17 02:59:08 -04:00
|
|
|
"js-compile-plugins": "cross-env PLUGINS=true babel js/src/ --out-dir js/dist/ --source-maps",
|
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",
|
2017-11-19 07:30:10 -05:00
|
|
|
"js-minify-docs": "uglifyjs --mangle --comments \"/^!/\" --output assets/js/docs.min.js assets/js/vendor/anchor.min.js assets/js/vendor/clipboard.min.js assets/js/vendor/holder.min.js \"assets/js/src/*.js\"",
|
2017-11-17 11:38:34 -05:00
|
|
|
"js-test": "npm-run-all --parallel js-test-karma*",
|
|
|
|
"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",
|
2017-09-28 08:55:15 -04:00
|
|
|
"js-test-cloud": "ruby -r webrick -e \"s = WEBrick::HTTPServer.new(:Port => 3000, :DocumentRoot => Dir.pwd, :Logger => WEBrick::Log.new('/dev/null'), :AccessLog => []); trap('INT') { s.shutdown }; s.start\" & node build/saucelabs-unit-test.js",
|
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",
|
2017-12-30 18:54:42 -05:00
|
|
|
"docs-github-serve": "bundle exec jekyll 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-04-19 07:59:12 -04:00
|
|
|
"docs-upload-preview": "build/upload-preview.sh",
|
2017-09-15 06:37:34 -04:00
|
|
|
"docs-workbox-precache": "node build/workbox.js",
|
2017-11-20 03:47:39 -05:00
|
|
|
"maintenance-dependencies": "ncu -a -x jquery && npm update && bundle update && shx echo \"Manually update 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 ..",
|
2017-10-01 04:09:45 -04:00
|
|
|
"dist": "npm-run-all --parallel css js",
|
2017-10-29 19:28:52 -04:00
|
|
|
"test": "npm-run-all dist js-test docs-compile docs-lint bundlesize",
|
2017-08-13 17:59:44 -04:00
|
|
|
"watch": "npm-run-all --parallel watch-css watch-js",
|
2017-10-01 04:09:45 -04:00
|
|
|
"watch-css": "nodemon --ignore js/ --ignore dist/ -e scss -x \"npm run css\"",
|
2017-10-29 19:28:52 -04:00
|
|
|
"watch-js": "nodemon --ignore scss/ --ignore js/dist/ --ignore dist/ -e js -x \"npm run js-compile\""
|
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",
|
2017-11-16 05:53:11 -05:00
|
|
|
"popper.js": "^1.12.9"
|
2016-03-07 04:23:55 -05:00
|
|
|
},
|
2013-12-15 13:56:51 -05:00
|
|
|
"devDependencies": {
|
2018-01-11 03:48:46 -05:00
|
|
|
"@babel/cli": "7.0.0-beta.37",
|
|
|
|
"@babel/core": "7.0.0-beta.37",
|
|
|
|
"@babel/preset-env": "7.0.0-beta.37",
|
|
|
|
"autoprefixer": "^7.2.4",
|
|
|
|
"babel-eslint": "^8.2.1",
|
2017-04-19 07:59:12 -04:00
|
|
|
"babel-plugin-transform-es2015-modules-strip": "^0.1.1",
|
2017-11-13 05:11:55 -05:00
|
|
|
"bundlesize": "^0.15.3",
|
|
|
|
"clean-css-cli": "^4.1.10",
|
2017-12-22 03:37:59 -05:00
|
|
|
"cross-env": "^5.1.3",
|
2018-01-11 03:48:46 -05:00
|
|
|
"eslint": "^4.15.0",
|
2017-11-13 05:11:55 -05:00
|
|
|
"eslint-plugin-compat": "^2.1.0",
|
2017-11-27 12:41:48 -05:00
|
|
|
"glob": "^7.1.2",
|
2017-10-04 06:13:42 -04:00
|
|
|
"htmllint-cli": "^0.0.6",
|
2017-11-13 05:11:55 -05:00
|
|
|
"jsunitsaucelabs": "^1.3.0",
|
2017-12-22 03:37:59 -05:00
|
|
|
"karma": "^2.0.0",
|
2017-11-10 05:25:47 -05:00
|
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
|
|
"karma-detect-browsers": "^2.2.6",
|
2017-12-22 03:37:59 -05:00
|
|
|
"karma-firefox-launcher": "^1.1.0",
|
2017-11-10 05:25:47 -05:00
|
|
|
"karma-qunit": "^1.2.1",
|
2017-11-28 05:26:50 -05:00
|
|
|
"node-sass": "^4.7.2",
|
2018-01-11 03:48:46 -05:00
|
|
|
"nodemon": "^1.14.10",
|
2017-11-13 05:11:55 -05:00
|
|
|
"npm-run-all": "^4.1.2",
|
2017-11-16 05:53:11 -05:00
|
|
|
"popper.js": "^1.12.9",
|
2017-11-13 05:11:55 -05:00
|
|
|
"postcss-cli": "^4.1.1",
|
|
|
|
"qunitjs": "^2.4.1",
|
2018-01-11 03:48:46 -05:00
|
|
|
"rollup": "^0.53.4",
|
2017-11-05 13:03:33 -05:00
|
|
|
"rollup-plugin-babel": "4.0.0-beta.0",
|
2018-01-11 03:48:46 -05:00
|
|
|
"rollup-plugin-node-resolve": "^3.0.2",
|
2017-07-15 05:23:36 -04:00
|
|
|
"shelljs": "^0.7.8",
|
2017-02-05 07:39:16 -05:00
|
|
|
"shx": "^0.2.2",
|
2017-11-23 03:22:54 -05:00
|
|
|
"sri-toolbox": "^0.2.0",
|
2017-12-22 03:37:59 -05:00
|
|
|
"stylelint": "^8.4.0",
|
2017-12-04 18:02:29 -05:00
|
|
|
"stylelint-config-recommended-scss": "^3.0.0",
|
2017-11-28 05:26:50 -05:00
|
|
|
"stylelint-config-standard": "^18.0.0",
|
2017-12-22 03:37:59 -05:00
|
|
|
"stylelint-order": "^0.8.0",
|
2017-12-04 18:02:29 -05:00
|
|
|
"stylelint-scss": "^2.2.0",
|
2018-01-11 03:48:46 -05:00
|
|
|
"uglify-js": "^3.3.5",
|
2017-09-27 11:18:23 -04:00
|
|
|
"vnu-jar": "^17.11.1",
|
2017-11-20 03:47:39 -05:00
|
|
|
"workbox-build": "^2.1.2"
|
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": [
|
2017-11-24 19:02:25 -05:00
|
|
|
"dist/",
|
|
|
|
"js/{src,dist}/",
|
|
|
|
"scss/"
|
2015-02-14 07:36:50 -05:00
|
|
|
],
|
2017-09-17 01:39:45 -04:00
|
|
|
"browserslist": [
|
2017-12-23 03:09:10 -05:00
|
|
|
"last 1 major version",
|
|
|
|
">= 1%",
|
2017-09-17 01:39:45 -04:00
|
|
|
"Chrome >= 45",
|
2017-12-23 03:09:10 -05:00
|
|
|
"Firefox >= 38",
|
2017-09-17 01:39:45 -04:00
|
|
|
"Edge >= 12",
|
|
|
|
"Explorer >= 10",
|
|
|
|
"iOS >= 9",
|
|
|
|
"Safari >= 9",
|
|
|
|
"Android >= 4.4",
|
|
|
|
"Opera >= 30"
|
|
|
|
],
|
2017-09-27 09:20:46 -04:00
|
|
|
"bundlesize": [
|
|
|
|
{
|
2017-10-02 15:03:12 -04:00
|
|
|
"path": "./dist/css/bootstrap-grid.css",
|
|
|
|
"maxSize": "5 kB"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/css/bootstrap-grid.min.css",
|
|
|
|
"maxSize": "5 kB"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"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",
|
|
|
|
"maxSize": "20 kB"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"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",
|
2017-11-16 05:53:11 -05:00
|
|
|
"popper.js": "^1.12.9"
|
2015-08-24 07:44:30 -04:00
|
|
|
}
|
2013-11-26 05:10:06 -05:00
|
|
|
}
|
2012-12-20 02:52:38 -05:00
|
|
|
}
|