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",
|
|
|
|
"css": "npm-run-all css-lint css-compile css-prefix css-minify",
|
|
|
|
"css-docs": "npm-run-all css-lint-docs css-compile-docs css-prefix-docs css-minify-docs",
|
2017-05-28 02:54:23 +02:00
|
|
|
"css-lint": "bundle exec scss-lint --config .scss-lint.yml scss/*.scss",
|
2017-05-29 07:50:57 +02:00
|
|
|
"css-lint-docs": "bundle exec scss-lint --config .scss-lint.yml --exclude assets/scss/docs.scss assets/scss/*.scss",
|
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-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-08-26 13:57:50 +02:00
|
|
|
"js": "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-04-20 12:33:51 +02:00
|
|
|
"js-lint": "eslint js/ && eslint --config js/tests/.eslintrc.json --env node build/ Gruntfile.js",
|
2017-08-26 13:57:50 +02:00
|
|
|
"js-lint-docs": "eslint --config js/tests/.eslintrc.json assets/js/ sw.js",
|
2017-04-19 13:59:12 +02:00
|
|
|
"js-compile": "npm-run-all --parallel js-compile-*",
|
2017-08-29 21:16:00 +02:00
|
|
|
"js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.js",
|
|
|
|
"js-compile-bundle": "rollup --environment BUNDLE:true --config build/rollup.config.js",
|
|
|
|
"js-compile-plugins": "babel --no-babelrc js/src/ --out-dir js/dist/ --source-maps --presets=es2015 --plugins=transform-es2015-modules-strip",
|
2017-09-04 15:57:07 +02:00
|
|
|
"js-minify": "npm-run-all --parallel js-minify-standalone js-minify-bundle",
|
2017-08-29 21:16:00 +02:00
|
|
|
"js-minify-standalone": "uglifyjs --config-file build/uglifyjs.config.json --output dist/js/bootstrap.min.js dist/js/bootstrap.js",
|
|
|
|
"js-minify-bundle": "uglifyjs --config-file build/uglifyjs.config.json --output dist/js/bootstrap.bundle.min.js dist/js/bootstrap.bundle.js",
|
2017-07-16 15:54:09 +02:00
|
|
|
"js-minify-docs": "uglifyjs --config-file build/uglifyjs.config.json --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-06-22 22:26:13 +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\" & grunt saucelabs-qunit",
|
2017-04-19 13:59:12 +02:00
|
|
|
"docs": "npm-run-all docs-compile docs-lint",
|
2017-05-29 20:15:43 +02:00
|
|
|
"docs-lint": "htmllint --rc build/.htmllintrc _gh_pages/*.html _gh_pages/**/*.html js/tests/visual/*.html",
|
2017-05-29 07:50:57 +02:00
|
|
|
"docs-compile": "bundle exec jekyll build",
|
|
|
|
"docs-serve": "bundle exec jekyll serve",
|
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-04-19 13:59:12 +02:00
|
|
|
"docs-upload-preview": "build/upload-preview.sh",
|
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-06-30 07:04:06 +02:00
|
|
|
"dist": "npm-run-all --parallel css js css-docs",
|
2017-04-22 08:35:24 +02:00
|
|
|
"test": "npm-run-all dist js-test docs",
|
2017-08-13 23:59:44 +02:00
|
|
|
"watch": "npm-run-all --parallel watch-css watch-js",
|
2017-05-29 07:50:57 +02:00
|
|
|
"watch-css": "nodemon --ignore js/ --ignore dist/ -e scss -x \"npm run css && npm run css-docs\"",
|
2017-08-13 23:59:44 +02:00
|
|
|
"watch-js": "nodemon --ignore scss/ --ignore js/dist/ --ignore dist/ -e js -x \"npm run js-compile-plugins\""
|
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-08-22 20:28:04 +02:00
|
|
|
"jquery": "3.0.0 - 4.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-04-19 13:59:12 +02:00
|
|
|
"babel-cli": "^6.24.1",
|
2017-05-31 06:11:56 +02:00
|
|
|
"babel-eslint": "^7.2.3",
|
2017-08-29 21:16:00 +02:00
|
|
|
"babel-plugin-external-helpers": "^6.22.0",
|
2017-04-19 13:59:12 +02:00
|
|
|
"babel-plugin-transform-es2015-modules-strip": "^0.1.1",
|
2017-05-31 22:02:26 +02:00
|
|
|
"babel-preset-es2015": "^6.24.1",
|
2017-07-15 11:23:36 +02:00
|
|
|
"clean-css-cli": "^4.1.6",
|
|
|
|
"eslint": "^4.2.0",
|
2017-06-22 22:26:13 +02:00
|
|
|
"grunt": "^1.0.1",
|
|
|
|
"grunt-cli": "^1.2.0",
|
|
|
|
"grunt-saucelabs": "^9.0.0",
|
2017-02-05 13:39:16 +01:00
|
|
|
"htmllint-cli": "^0.0.6",
|
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-08-29 21:16:00 +02:00
|
|
|
"rollup": "^0.49.2",
|
|
|
|
"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-07-15 11:23:36 +02:00
|
|
|
"uglify-js": "^3.0.24"
|
2013-12-15 19:56:51 +01:00
|
|
|
},
|
2014-03-07 07:42:48 +01:00
|
|
|
"engines": {
|
2016-06-20 07:09:29 +02:00
|
|
|
"node": ">=4"
|
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",
|
|
|
|
"Gruntfile.js",
|
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-05-28 02:54:23 +02:00
|
|
|
".scss-lint.yml",
|
2015-02-14 13:36:50 +01:00
|
|
|
"scss/**/*.scss",
|
|
|
|
"LICENSE"
|
|
|
|
],
|
2013-12-15 19:56:51 +01:00
|
|
|
"jspm": {
|
|
|
|
"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": {
|
|
|
|
"jquery": "3",
|
2017-08-22 21:28:36 +02:00
|
|
|
"popper.js": "npm: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
|
|
|
}
|