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-08-10 23:56:35 -04:00
|
|
|
"version": "4.0.0-beta",
|
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-04-19 07:59:12 -04: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-27 20:54:23 -04:00
|
|
|
"css-lint": "bundle exec scss-lint --config .scss-lint.yml scss/*.scss",
|
2017-05-29 01:50:57 -04:00
|
|
|
"css-lint-docs": "bundle exec scss-lint --config .scss-lint.yml --exclude assets/scss/docs.scss assets/scss/*.scss",
|
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-08-09 22:41:05 -04: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 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-08-26 07:57:50 -04:00
|
|
|
"js": "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-09-28 10:54:01 -04:00
|
|
|
"js-lint": "eslint js/ && eslint --config js/tests/.eslintrc.json --env node build/",
|
2017-09-28 10:25:28 -04:00
|
|
|
"js-lint-docs": "eslint --config js/tests/.eslintrc.json assets/js/ docs/ sw.js",
|
2017-04-19 07:59:12 -04:00
|
|
|
"js-compile": "npm-run-all --parallel js-compile-*",
|
2017-09-17 02:59:08 -04: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-09-04 09:57:07 -04:00
|
|
|
"js-minify": "npm-run-all --parallel js-minify-standalone js-minify-bundle",
|
2017-09-28 08:35:23 -04: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 07:59:12 -04:00
|
|
|
"js-test": "phantomjs ./node_modules/qunit-phantomjs-runner/runner.js js/tests/index.html 60",
|
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-04-19 07:59:12 -04:00
|
|
|
"docs": "npm-run-all docs-compile docs-lint",
|
2017-05-29 14:15:43 -04:00
|
|
|
"docs-lint": "htmllint --rc build/.htmllintrc _gh_pages/*.html _gh_pages/**/*.html js/tests/visual/*.html",
|
2017-09-26 06:08:02 -04:00
|
|
|
"docs-compile": "bundle exec jekyll build",
|
|
|
|
"postdocs-compile": "npm run docs-workbox-precache",
|
2017-05-29 01:50:57 -04:00
|
|
|
"docs-serve": "bundle exec jekyll serve",
|
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-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-09-04 18:29:05 -04: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 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-06-30 01:04:06 -04:00
|
|
|
"dist": "npm-run-all --parallel css js css-docs",
|
2017-04-22 02:35:24 -04:00
|
|
|
"test": "npm-run-all dist js-test docs",
|
2017-08-13 17:59:44 -04:00
|
|
|
"watch": "npm-run-all --parallel watch-css watch-js",
|
2017-05-29 01:50:57 -04:00
|
|
|
"watch-css": "nodemon --ignore js/ --ignore dist/ -e scss -x \"npm run css && npm run css-docs\"",
|
2017-08-13 17:59:44 -04:00
|
|
|
"watch-js": "nodemon --ignore scss/ --ignore js/dist/ --ignore dist/ -e js -x \"npm run js-compile-plugins\""
|
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",
|
|
|
|
"url": "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-09-05 14:49:29 -04:00
|
|
|
"jquery": "^3.0.0",
|
2017-08-22 15:28:36 -04:00
|
|
|
"popper.js": "^1.12.3"
|
2016-03-07 04:23:55 -05:00
|
|
|
},
|
2013-12-15 13:56:51 -05:00
|
|
|
"devDependencies": {
|
2017-07-15 05:23:36 -04:00
|
|
|
"autoprefixer": "^7.1.2",
|
2017-09-17 13:27:30 -04:00
|
|
|
"babel-cli": "^7.0.0-beta.0",
|
2017-09-15 06:49:51 -04:00
|
|
|
"babel-eslint": "^8.0.0",
|
2017-09-17 13:27:30 -04:00
|
|
|
"babel-plugin-external-helpers": "^7.0.0-beta.0",
|
2017-04-19 07:59:12 -04:00
|
|
|
"babel-plugin-transform-es2015-modules-strip": "^0.1.1",
|
2017-09-17 13:27:30 -04:00
|
|
|
"babel-preset-env": "^2.0.0-beta.0",
|
2017-07-15 05:23:36 -04:00
|
|
|
"clean-css-cli": "^4.1.6",
|
2017-09-17 02:59:08 -04:00
|
|
|
"cross-env": "^5.0.5",
|
2017-07-15 05:23:36 -04:00
|
|
|
"eslint": "^4.2.0",
|
2017-09-17 01:42:53 -04:00
|
|
|
"eslint-plugin-compat": "^1.0.4",
|
2017-02-05 07:39:16 -05:00
|
|
|
"htmllint-cli": "^0.0.6",
|
2017-09-28 11:18:20 -04:00
|
|
|
"jsunitsaucelabs": "^1.2.0",
|
2017-05-31 00:11:56 -04:00
|
|
|
"node-sass": "^4.5.3",
|
2017-04-22 02:35:24 -04:00
|
|
|
"nodemon": "^1.11.0",
|
2017-04-19 07:59:12 -04:00
|
|
|
"npm-run-all": "^4.0.2",
|
|
|
|
"phantomjs-prebuilt": "^2.1.14",
|
2017-08-29 15:16:00 -04:00
|
|
|
"popper.js": "^1.12.5",
|
2017-07-15 05:23:36 -04:00
|
|
|
"postcss-cli": "^4.1.0",
|
2017-04-19 07:59:12 -04:00
|
|
|
"qunit-phantomjs-runner": "^2.3.0",
|
2017-07-15 05:23:36 -04:00
|
|
|
"qunitjs": "^2.4.0",
|
2017-09-17 02:40:48 -04:00
|
|
|
"rollup": "^0.50.0",
|
2017-08-29 15:16:00 -04:00
|
|
|
"rollup-plugin-babel": "^3.0.2",
|
|
|
|
"rollup-plugin-node-resolve": "^3.0.0",
|
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-09-15 06:37:34 -04:00
|
|
|
"uglify-js": "^3.0.24",
|
|
|
|
"workbox-build": "^2.0.1"
|
2013-12-15 13:56:51 -05:00
|
|
|
},
|
2014-03-07 01:42:48 -05:00
|
|
|
"engines": {
|
2016-06-20 01:09:29 -04:00
|
|
|
"node": ">=4"
|
2014-03-07 01:42:48 -05:00
|
|
|
},
|
2015-02-14 07:36:50 -05:00
|
|
|
"files": [
|
2017-04-19 07:59:12 -04:00
|
|
|
".babelrc",
|
|
|
|
".eslintignore",
|
2017-08-14 12:09:38 -04:00
|
|
|
"Gemfile",
|
2015-02-14 07:36:50 -05:00
|
|
|
"dist",
|
2017-04-19 07:59:12 -04:00
|
|
|
"build",
|
|
|
|
"js/.eslintrc.json",
|
2016-07-30 13:44:19 -04:00
|
|
|
"js/**/*.js",
|
2017-05-27 20:54:23 -04:00
|
|
|
".scss-lint.yml",
|
2015-02-14 07:36:50 -05:00
|
|
|
"scss/**/*.scss",
|
|
|
|
"LICENSE"
|
|
|
|
],
|
2017-09-17 01:39:45 -04:00
|
|
|
"browserslist": [
|
|
|
|
"Chrome >= 45",
|
|
|
|
"Firefox ESR",
|
|
|
|
"Edge >= 12",
|
|
|
|
"Explorer >= 10",
|
|
|
|
"iOS >= 9",
|
|
|
|
"Safari >= 9",
|
|
|
|
"Android >= 4.4",
|
|
|
|
"Opera >= 30"
|
|
|
|
],
|
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-09-05 14:49:29 -04:00
|
|
|
"jquery": "^3.0.0",
|
|
|
|
"popper.js": "^1.12.3"
|
2015-08-24 07:44:30 -04:00
|
|
|
}
|
2013-11-26 05:10:06 -05:00
|
|
|
}
|
2012-12-20 02:52:38 -05:00
|
|
|
}
|