2012-04-20 00:32:41 +02:00
|
|
|
{
|
2013-12-15 19:56:51 +01:00
|
|
|
"name": "bootstrap",
|
2014-03-03 23:18:03 +01:00
|
|
|
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
|
2017-08-11 05:56:35 +02:00
|
|
|
"version": "4.0.0-beta",
|
2013-12-17 13:39:36 +01:00
|
|
|
"keywords": [
|
2014-03-03 23:20:37 +01:00
|
|
|
"css",
|
2015-01-15 22:20:40 +01:00
|
|
|
"sass",
|
2014-03-03 23:20:37 +01:00
|
|
|
"mobile-first",
|
|
|
|
"responsive",
|
|
|
|
"front-end",
|
|
|
|
"framework",
|
|
|
|
"web"
|
2013-12-17 13:39:36 +01:00
|
|
|
],
|
2016-10-03 18:55:59 +02:00
|
|
|
"homepage": "https://getbootstrap.com",
|
2016-05-20 18:04:31 +02:00
|
|
|
"author": "The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)",
|
2016-06-21 01:18:21 +02:00
|
|
|
"contributors": [
|
|
|
|
"Twitter, Inc."
|
|
|
|
],
|
2013-12-17 13:39:36 +01:00
|
|
|
"scripts": {
|
2017-04-19 13:59:12 +02:00
|
|
|
"bash": "bash",
|
2017-09-27 15:20:46 +02:00
|
|
|
"bundlesize": "bundlesize",
|
2017-10-01 10:09:45 +02: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 18:37:50 +02: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-10-03 05:34:56 +02:00
|
|
|
"css-lint": "stylelint --config build/.stylelintrc --syntax scss scss/**/*.scss",
|
|
|
|
"css-lint-docs": "stylelint --config build/.stylelintrc --syntax scss assets/scss/*.scss",
|
2017-08-10 04:41:05 +02:00
|
|
|
"css-prefix": "postcss --config build/postcss.config.js --replace dist/css/*.css",
|
|
|
|
"css-prefix-docs": "postcss --config build/postcss.config.js --no-map --replace assets/css/docs.min.css",
|
2017-08-08 18:37:50 +02: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-01 10:09:45 +02:00
|
|
|
"js": "npm-run-all js-lint* js-compile* js-minify*",
|
|
|
|
"js-main": "npm-run-all js-lint js-compile js-minify",
|
2017-04-19 13:59:12 +02:00
|
|
|
"js-docs": "npm-run-all js-lint-docs js-minify-docs",
|
2017-09-28 16:54:01 +02:00
|
|
|
"js-lint": "eslint js/ && eslint --config js/tests/.eslintrc.json --env node build/",
|
2017-09-28 16:25:28 +02:00
|
|
|
"js-lint-docs": "eslint --config js/tests/.eslintrc.json assets/js/ docs/ sw.js",
|
2017-04-19 13:59:12 +02:00
|
|
|
"js-compile": "npm-run-all --parallel js-compile-*",
|
2017-09-17 08:59:08 +02:00
|
|
|
"js-compile-standalone": "cross-env ROLLUP=true rollup --environment BUNDLE:false --config build/rollup.config.js",
|
|
|
|
"js-compile-bundle": "cross-env ROLLUP=true rollup --environment BUNDLE:true --config build/rollup.config.js",
|
|
|
|
"js-compile-plugins": "cross-env PLUGINS=true babel js/src/ --out-dir js/dist/ --source-maps",
|
2017-10-01 10:09:45 +02:00
|
|
|
"js-minify": "npm-run-all --parallel js-minify-*",
|
2017-09-28 14:35:23 +02:00
|
|
|
"js-minify-standalone": "uglifyjs --compress typeofs=false --mangle --comments \"/^!/\" --output dist/js/bootstrap.min.js dist/js/bootstrap.js",
|
|
|
|
"js-minify-bundle": "uglifyjs --compress typeofs=false --mangle --comments \"/^!/\" --output dist/js/bootstrap.bundle.min.js dist/js/bootstrap.bundle.js",
|
|
|
|
"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/application.js assets/js/src/pwa.js",
|
2017-04-19 13:59:12 +02:00
|
|
|
"js-test": "phantomjs ./node_modules/qunit-phantomjs-runner/runner.js js/tests/index.html 60",
|
2017-09-28 14:55:15 +02: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 10:09:45 +02:00
|
|
|
"docs": "npm-run-all --parallel css-docs js-docs --sequential docs-compile docs-lint",
|
2017-09-26 12:08:02 +02:00
|
|
|
"docs-compile": "bundle exec jekyll build",
|
|
|
|
"postdocs-compile": "npm run docs-workbox-precache",
|
2017-08-26 11:59:04 +02:00
|
|
|
"docs-github": "shx echo \"github: true\" > twbsconfig.yml && npm run docs-compile -- --config _config.yml,twbsconfig.yml && shx rm ./twbsconfig.yml",
|
2017-10-01 10:09:45 +02:00
|
|
|
"docs-lint": "htmllint --rc build/.htmllintrc _gh_pages/*.html _gh_pages/**/*.html js/tests/visual/*.html",
|
|
|
|
"docs-serve": "bundle exec jekyll serve",
|
2017-04-19 13:59:12 +02:00
|
|
|
"docs-upload-preview": "build/upload-preview.sh",
|
2017-09-15 12:37:34 +02:00
|
|
|
"docs-workbox-precache": "node build/workbox.js",
|
2017-09-05 00:29:05 +02: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-04-19 13:59:12 +02: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 10:09:45 +02:00
|
|
|
"dist": "npm-run-all --parallel css js",
|
2017-09-27 15:20:46 +02:00
|
|
|
"test": "npm-run-all dist --parallel js-test --sequential docs-compile docs-lint bundlesize",
|
2017-08-13 23:59:44 +02:00
|
|
|
"watch": "npm-run-all --parallel watch-css watch-js",
|
2017-10-01 10:09:45 +02:00
|
|
|
"watch-css": "nodemon --ignore js/ --ignore dist/ -e scss -x \"npm run css\"",
|
|
|
|
"watch-js": "nodemon --ignore scss/ --ignore js/dist/ --ignore dist/ -e js -x \"npm-run-all --parallel js-compile-*\""
|
2013-12-17 13:39:36 +01:00
|
|
|
},
|
2014-03-07 23:07:38 +01:00
|
|
|
"style": "dist/css/bootstrap.css",
|
2015-01-18 23:53:06 +01:00
|
|
|
"sass": "scss/bootstrap.scss",
|
2016-07-28 18:55:10 +02:00
|
|
|
"main": "dist/js/bootstrap",
|
2013-12-15 19:56:51 +01:00
|
|
|
"repository": {
|
2013-12-20 20:09:51 +01:00
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/twbs/bootstrap.git"
|
2013-12-15 19:56:51 +01:00
|
|
|
},
|
|
|
|
"bugs": {
|
2013-12-20 20:09:51 +01:00
|
|
|
"url": "https://github.com/twbs/bootstrap/issues"
|
2013-12-15 19:56:51 +01:00
|
|
|
},
|
2015-07-25 20:28:00 +02:00
|
|
|
"license": "MIT",
|
2017-08-10 04:41:05 +02:00
|
|
|
"dependencies": {},
|
2017-08-08 06:37:01 +02:00
|
|
|
"peerDependencies": {
|
2017-09-05 20:49:29 +02:00
|
|
|
"jquery": "^3.0.0",
|
2017-08-22 21:28:36 +02:00
|
|
|
"popper.js": "^1.12.3"
|
2016-03-07 10:23:55 +01:00
|
|
|
},
|
2013-12-15 19:56:51 +01:00
|
|
|
"devDependencies": {
|
2017-07-15 11:23:36 +02:00
|
|
|
"autoprefixer": "^7.1.2",
|
2017-09-17 19:27:30 +02:00
|
|
|
"babel-cli": "^7.0.0-beta.0",
|
2017-09-15 12:49:51 +02:00
|
|
|
"babel-eslint": "^8.0.0",
|
2017-09-17 19:27:30 +02:00
|
|
|
"babel-plugin-external-helpers": "^7.0.0-beta.0",
|
2017-04-19 13:59:12 +02:00
|
|
|
"babel-plugin-transform-es2015-modules-strip": "^0.1.1",
|
2017-09-17 19:27:30 +02:00
|
|
|
"babel-preset-env": "^2.0.0-beta.0",
|
2017-09-27 15:20:46 +02:00
|
|
|
"bundlesize": "^0.14.4",
|
2017-07-15 11:23:36 +02:00
|
|
|
"clean-css-cli": "^4.1.6",
|
2017-09-17 08:59:08 +02:00
|
|
|
"cross-env": "^5.0.5",
|
2017-07-15 11:23:36 +02:00
|
|
|
"eslint": "^4.2.0",
|
2017-09-17 07:42:53 +02:00
|
|
|
"eslint-plugin-compat": "^1.0.4",
|
2017-02-05 13:39:16 +01:00
|
|
|
"htmllint-cli": "^0.0.6",
|
2017-09-28 17:18:20 +02:00
|
|
|
"jsunitsaucelabs": "^1.2.0",
|
2017-05-31 06:11:56 +02:00
|
|
|
"node-sass": "^4.5.3",
|
2017-04-22 08:35:24 +02:00
|
|
|
"nodemon": "^1.11.0",
|
2017-04-19 13:59:12 +02:00
|
|
|
"npm-run-all": "^4.0.2",
|
|
|
|
"phantomjs-prebuilt": "^2.1.14",
|
2017-08-29 21:16:00 +02:00
|
|
|
"popper.js": "^1.12.5",
|
2017-07-15 11:23:36 +02:00
|
|
|
"postcss-cli": "^4.1.0",
|
2017-04-19 13:59:12 +02:00
|
|
|
"qunit-phantomjs-runner": "^2.3.0",
|
2017-07-15 11:23:36 +02:00
|
|
|
"qunitjs": "^2.4.0",
|
2017-09-17 08:40:48 +02:00
|
|
|
"rollup": "^0.50.0",
|
2017-08-29 21:16:00 +02:00
|
|
|
"rollup-plugin-babel": "^3.0.2",
|
|
|
|
"rollup-plugin-node-resolve": "^3.0.0",
|
2017-07-15 11:23:36 +02:00
|
|
|
"shelljs": "^0.7.8",
|
2017-02-05 13:39:16 +01:00
|
|
|
"shx": "^0.2.2",
|
2017-10-03 05:34:56 +02:00
|
|
|
"stylelint": "^8.1.1",
|
|
|
|
"stylelint-config-recommended-scss": "^2.0.0",
|
|
|
|
"stylelint-config-standard": "^17.0.0",
|
|
|
|
"stylelint-order": "^0.7.0",
|
|
|
|
"stylelint-scss": "^2.1.0",
|
2017-09-15 12:37:34 +02:00
|
|
|
"uglify-js": "^3.0.24",
|
|
|
|
"workbox-build": "^2.0.1"
|
2013-12-15 19:56:51 +01:00
|
|
|
},
|
2014-03-07 07:42:48 +01:00
|
|
|
"engines": {
|
2017-09-27 15:47:38 +02:00
|
|
|
"node": ">=6"
|
2014-03-07 07:42:48 +01:00
|
|
|
},
|
2015-02-14 13:36:50 +01:00
|
|
|
"files": [
|
2017-04-19 13:59:12 +02:00
|
|
|
".babelrc",
|
|
|
|
".eslintignore",
|
2017-08-14 18:09:38 +02:00
|
|
|
"Gemfile",
|
2015-02-14 13:36:50 +01:00
|
|
|
"dist",
|
2017-04-19 13:59:12 +02:00
|
|
|
"build",
|
|
|
|
"js/.eslintrc.json",
|
2016-07-30 19:44:19 +02:00
|
|
|
"js/**/*.js",
|
2017-10-03 05:34:56 +02:00
|
|
|
"scss/**/*.scss"
|
2015-02-14 13:36:50 +01:00
|
|
|
],
|
2017-09-17 07:39:45 +02:00
|
|
|
"browserslist": [
|
|
|
|
"Chrome >= 45",
|
|
|
|
"Firefox ESR",
|
|
|
|
"Edge >= 12",
|
|
|
|
"Explorer >= 10",
|
|
|
|
"iOS >= 9",
|
|
|
|
"Safari >= 9",
|
|
|
|
"Android >= 4.4",
|
|
|
|
"Opera >= 30"
|
|
|
|
],
|
2017-09-27 15:20:46 +02:00
|
|
|
"bundlesize": [
|
|
|
|
{
|
2017-10-02 21:03:12 +02: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",
|
|
|
|
"maxSize": "5 kB"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/css/bootstrap-reboot.min.css",
|
|
|
|
"maxSize": "5 kB"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./dist/css/bootstrap.css",
|
2017-09-27 15:20:46 +02:00
|
|
|
"maxSize": "25 kB"
|
|
|
|
},
|
2017-10-02 21:03:12 +02:00
|
|
|
{
|
|
|
|
"path": "./dist/css/bootstrap.min.css",
|
|
|
|
"maxSize": "20 kB"
|
|
|
|
},
|
2017-09-27 15:20:46 +02:00
|
|
|
{
|
|
|
|
"path": "./dist/js/bootstrap.bundle.js",
|
2017-10-02 21:03:12 +02:00
|
|
|
"maxSize": "45 kB"
|
2017-09-27 15:20:46 +02: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 19:56:51 +01:00
|
|
|
"jspm": {
|
2017-09-05 20:49:29 +02:00
|
|
|
"registry": "npm",
|
2013-12-15 19:56:51 +01:00
|
|
|
"main": "js/bootstrap",
|
2015-08-24 13:44:30 +02:00
|
|
|
"directories": {
|
|
|
|
"lib": "dist"
|
|
|
|
},
|
2013-12-15 19:56:51 +01:00
|
|
|
"shim": {
|
|
|
|
"js/bootstrap": {
|
2015-10-13 23:49:05 +02:00
|
|
|
"deps": [
|
2017-08-15 13:48:38 +02:00
|
|
|
"jquery",
|
|
|
|
"popper.js"
|
2015-10-13 23:49:05 +02:00
|
|
|
],
|
2013-12-15 19:56:51 +01:00
|
|
|
"exports": "$"
|
|
|
|
}
|
|
|
|
},
|
2017-08-15 13:48:38 +02:00
|
|
|
"dependencies": {},
|
|
|
|
"peerDependencies": {
|
2017-09-05 20:49:29 +02:00
|
|
|
"jquery": "^3.0.0",
|
|
|
|
"popper.js": "^1.12.3"
|
2015-08-24 13:44:30 +02:00
|
|
|
}
|
2013-11-26 11:10:06 +01:00
|
|
|
}
|
2012-12-20 08:52:38 +01:00
|
|
|
}
|