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-01-06 11:38:04 -05:00
|
|
|
"version": "4.0.0-alpha.6",
|
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",
|
|
|
|
"css-lint": "bundle exec scss-lint --config scss/.scss-lint.yml scss/*.scss",
|
|
|
|
"css-lint-docs": "bundle exec scss-lint --config scss/.scss-lint.yml --exclude docs/assets/scss/docs.scss docs/assets/scss/*.scss",
|
|
|
|
"css-compile": "node-sass --output-style expanded --source-map true --precision 6 scss/bootstrap.scss dist/css/bootstrap.css && node-sass --output-style expanded --source-map true --precision 6 scss/bootstrap-grid.scss dist/css/bootstrap-grid.css && node-sass --output-style expanded --source-map true --precision 6 scss/bootstrap-reboot.scss dist/css/bootstrap-reboot.css",
|
|
|
|
"css-compile-docs": "node-sass --output-style expanded --source-map true --precision 6 docs/assets/scss/docs.scss docs/assets/css/docs.min.css",
|
|
|
|
"css-prefix": "postcss --config build/ --replace dist/css/*.css",
|
2017-04-22 02:46:54 -04:00
|
|
|
"css-prefix-docs": "postcss --config build/ --no-map --replace docs/assets/css/docs.min.css",
|
2017-04-19 07:59:12 -04:00
|
|
|
"css-minify": "cleancss --level 1 --source-map --output dist/css/bootstrap.min.css dist/css/bootstrap.css && cleancss --level 1 --source-map --output dist/css/bootstrap-grid.min.css dist/css/bootstrap-grid.css && cleancss --level 1 --source-map --output dist/css/bootstrap-reboot.min.css dist/css/bootstrap-reboot.css",
|
|
|
|
"css-minify-docs": "cleancss --level 1 --source-map --output docs/assets/css/docs.min.css docs/assets/css/docs.min.css",
|
|
|
|
"js": "npm-run-all js-compile js-minify",
|
|
|
|
"js-docs": "npm-run-all js-lint-docs js-minify-docs",
|
2017-04-20 06:33:51 -04:00
|
|
|
"js-lint": "eslint js/ && eslint --config js/tests/.eslintrc.json --env node build/ Gruntfile.js",
|
2017-04-19 07:59:12 -04:00
|
|
|
"js-lint-docs": "eslint --config js/tests/.eslintrc.json docs/assets/js/",
|
|
|
|
"js-compile": "npm-run-all --parallel js-compile-*",
|
2017-04-20 06:33:51 -04:00
|
|
|
"js-compile-bundle": "shx cat js/src/util.js js/src/alert.js js/src/button.js js/src/carousel.js js/src/collapse.js js/src/dropdown.js js/src/modal.js js/src/scrollspy.js js/src/tab.js js/src/tooltip.js js/src/popover.js | shx sed \"s/^(import|export).*//\" | babel --filename js/src/bootstrap.js | node build/stamp.js > dist/js/bootstrap.js",
|
2017-04-19 07:59:12 -04:00
|
|
|
"js-compile-plugins": "babel js/src/ --out-dir js/dist/ --source-maps",
|
|
|
|
"js-minify": "uglifyjs --compress warnings=false --mangle --comments '/^!/' --output dist/js/bootstrap.min.js dist/js/bootstrap.js",
|
|
|
|
"js-minify-docs": "uglifyjs --compress warnings=false --mangle --comments '/^!/' --output docs/assets/js/docs.min.js docs/assets/js/vendor/anchor.min.js docs/assets/js/vendor/clipboard.min.js docs/assets/js/vendor/holder.min.js docs/assets/js/src/application.js",
|
|
|
|
"js-test": "phantomjs ./node_modules/qunit-phantomjs-runner/runner.js js/tests/index.html 60",
|
2017-04-27 17:03:17 -04:00
|
|
|
"js-test-dep": "npm install grunt && npm install grunt-saucelabs",
|
|
|
|
"js-launch-cloud": "ruby -run -ehttpd . -p3000 > /dev/null & grunt saucelabs-qunit",
|
|
|
|
"js-test-cloud": "npm-run-all js-test-dep js-launch-cloud",
|
2017-04-19 07:59:12 -04:00
|
|
|
"docs": "npm-run-all docs-compile docs-lint",
|
|
|
|
"docs-lint": "htmlhint --config docs/.htmlhintrc _gh_pages/ js/tests/visual/ && htmllint --rc docs/.htmllintrc _gh_pages/*.html _gh_pages/**/*.html js/tests/visual/*.html",
|
|
|
|
"docs-clean": "shx rm -r docs/dist/* && shx cp -r dist/* docs/dist/",
|
|
|
|
"docs-compile": "npm run docs-clean && bundle exec jekyll build",
|
|
|
|
"docs-serve": "npm run docs-clean && bundle exec jekyll serve",
|
|
|
|
"docs-github": "shx echo 'github: true' > $npm_config_tmp/twbsconfig.yml && npm run docs-compile -- --config _config.yml,$npm_config_tmp/twbsconfig.yml && shx rm $npm_config_tmp/twbsconfig.yml",
|
|
|
|
"docs-upload-preview": "build/upload-preview.sh",
|
|
|
|
"maintenance-dependencies": "ncu -a -x jquery && bundle update && shx echo 'Manually update docs/assets/js/vendor/*, js/tests/vendor/*, bower.json and .travis.yml'",
|
|
|
|
"maintenance-shrinkwrap": "npm shrinkwrap --dev && shx mv npm-shrinkwrap.json build/npm-shrinkwrap.json",
|
|
|
|
"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-04-20 06:33:51 -04:00
|
|
|
"dist": "npm-run-all --parallel css js",
|
2017-04-22 02:35:24 -04:00
|
|
|
"test": "npm-run-all dist js-test docs",
|
2017-04-28 07:43:42 -04:00
|
|
|
"watch-css": "nodemon --ignore js/ --ignore dist/ -e scss -x \"npm run css && npm run css-docs\"",
|
|
|
|
"watch-js": "nodemon --ignore scss/ --ignore js/dist/ --ignore dist/ -e js -x \"npm run js-compile\"",
|
|
|
|
"watch": "npm-run-all --parallel watch-css watch-js"
|
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",
|
2016-03-07 04:23:55 -05:00
|
|
|
"dependencies": {
|
2016-12-27 13:00:55 -05:00
|
|
|
"jquery": ">=1.9.1",
|
2017-01-04 22:19:27 -05:00
|
|
|
"tether": "^1.4.0"
|
2016-03-07 04:23:55 -05:00
|
|
|
},
|
2013-12-15 13:56:51 -05:00
|
|
|
"devDependencies": {
|
2017-03-11 22:32:50 -05:00
|
|
|
"autoprefixer": "^6.7.7",
|
2017-04-19 07:59:12 -04:00
|
|
|
"babel-cli": "^6.24.1",
|
|
|
|
"babel-eslint": "^7.2.2",
|
|
|
|
"babel-plugin-transform-es2015-modules-strip": "^0.1.1",
|
|
|
|
"babel-preset-es2015": "^7.0.0-alpha.7",
|
|
|
|
"clean-css-cli": "^4.0.12",
|
|
|
|
"eslint": "^3.19.0",
|
2016-07-14 19:22:56 -04:00
|
|
|
"htmlhint": "^0.9.13",
|
2017-02-05 07:39:16 -05:00
|
|
|
"htmllint-cli": "^0.0.6",
|
2017-04-19 07:59:12 -04:00
|
|
|
"node-sass": "^4.5.2",
|
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",
|
|
|
|
"postcss-cli": "^3.1.1",
|
|
|
|
"postcss-flexbugs-fixes": "^2.1.1",
|
|
|
|
"qunit-phantomjs-runner": "^2.3.0",
|
|
|
|
"qunitjs": "^2.3.1",
|
2017-03-11 22:32:50 -05:00
|
|
|
"shelljs": "^0.7.7",
|
2017-02-05 07:39:16 -05:00
|
|
|
"shx": "^0.2.2",
|
2017-04-19 07:59:12 -04:00
|
|
|
"uglify-js": "^2.8.22"
|
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",
|
|
|
|
"Gruntfile.js",
|
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-04-19 07:59:12 -04:00
|
|
|
"scss/.scss-lint.yml",
|
2015-02-14 07:36:50 -05:00
|
|
|
"scss/**/*.scss",
|
|
|
|
"LICENSE"
|
|
|
|
],
|
2013-12-15 13:56:51 -05:00
|
|
|
"jspm": {
|
|
|
|
"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": [
|
|
|
|
"jquery"
|
|
|
|
],
|
2013-12-15 13:56:51 -05:00
|
|
|
"exports": "$"
|
|
|
|
}
|
|
|
|
},
|
2015-08-24 07:44:30 -04:00
|
|
|
"dependencies": {
|
2016-10-06 09:21:05 -04:00
|
|
|
"jquery": "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
|
|
|
}
|