twbs--bootstrap/package.json

113 lines
4.8 KiB
JSON
Raw Normal View History

{
2013-12-15 18:56:51 +00:00
"name": "bootstrap",
2014-03-03 22:18:03 +00:00
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
2017-01-06 16:38:04 +00:00
"version": "4.0.0-alpha.6",
2013-12-17 12:39:36 +00:00
"keywords": [
"css",
"sass",
"mobile-first",
"responsive",
"front-end",
"framework",
"web"
2013-12-17 12:39:36 +00:00
],
"homepage": "https://getbootstrap.com",
"author": "The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)",
"contributors": [
"Twitter, Inc."
],
2013-12-17 12:39:36 +00:00
"scripts": {
"change-version": "node grunt/change-version.js",
2017-02-05 12:39:16 +00:00
"clean-css": "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",
"clean-css-docs": "cleancss --level 1 --source-map --output docs/assets/css/docs.min.css docs/assets/css/docs.min.css",
"eslint": "eslint --ignore-path .eslintignore js && eslint --config js/tests/.eslintrc.json --env node grunt Gruntfile.js && eslint --config js/tests/.eslintrc.json docs/assets/js/src docs/assets/js/ie-emulation-modes-warning.js docs/assets/js/ie10-viewport-bug-workaround.js",
"htmlhint": "htmlhint --config docs/.htmlhintrc _gh_pages/",
2017-01-23 09:38:34 +00:00
"htmllint": "htmllint --rc docs/.htmllintrc _gh_pages/**/*.html js/tests/visual/*.html",
2017-02-25 05:32:18 +00:00
"jekyll": "bundle exec jekyll build",
"jekyll-github": "shx echo 'github: true' > $npm_config_tmp/twbsjekyll.yml && npm run jekyll -- --config _config.yml,$npm_config_tmp/twbsjekyll.yml && shx rm $npm_config_tmp/twbsjekyll.yml",
2017-03-12 03:32:50 +00:00
"postcss": "postcss --config grunt/ --replace dist/css/*.css",
"postcss-docs": "postcss --config grunt/ --replace docs/assets/css/docs.min.css && postcss --config grunt/ --replace docs/examples/**/*.css",
"sass": "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",
"sass-docs": "node-sass --output-style expanded --source-map true --precision 6 docs/assets/scss/docs.scss docs/assets/css/docs.min.css",
Drop Normalize, port relevant parts to Reboot (#21741) * Get this party started by removing mention of Normalize.css * Nuke the old comment, consolidate to a single line and number as appropriate * Bring over styles for HTML element from Normalize to Reboot * Move margin override for body element from Normalize to Reboot * Drop the block reset for HTML5 elements in IE9- from Normalize given we dropped IE9 support * Building on previous commit, do the same thing for figure, figcaption, and main * Remove IE9- display from Normalize given our browser support * Drop IE8 figure margin because we're IE10+ * No need for the h1 overrides because we reset these font and margin styles anyway in _type.scss already * Drop Safari 6 b and strong normalization because we're Safari 8+ * Remove mark styles for IE9- from Normalize * Remove old iOS audio fixes from Normalize * Remove IE9- display for progress from Normalize * Remove more IE9- rules from Normalize * One more IE9- display removal for canvas element * Move pre overrides from Normalize to Reboot * Move over some link resets to Reboot, drop others - Move over background-color and text-decoration - Drop focus outline change given it affects the offset on hover of focused links * Move over more code element resets, consolidate with pre overrides, too * Move over sub and sup wholesale * Move over img normalization to Reboot * Move over SVG override too * - Drop dupe hidden, but add comment for it - Move over template - Move over summary * Remove bulk of @viewport comment * edit down that code comment * consolidate html-based normalizations * update comments * Consolidate abbr styles * move over more type elements * move over hr changes * move over form controls and more * move over button resets * move over firefox button changes * move over search changes and more * we nuke all these styles for fieldsets anyway, so outright remove them * no need for those, we override them * move over legend, fieldset, progress * line break * delete normalize file * linting * update comment * clarify docs mentions of normalize and reboot * remove normalize excludes from linter * remove normalize excludes from cli task * linting * callout license since we forked part of normalize * Improve comments, move table background reset to .table class instead of in reboot * trailing space
2017-01-21 22:14:25 +00:00
"scss-lint": "bundle exec scss-lint --config scss/.scss-lint.yml scss/*.scss",
2016-12-21 06:38:32 +00:00
"scss-lint-docs": "bundle exec scss-lint --config scss/.scss-lint.yml --exclude docs/assets/scss/docs.scss docs/assets/scss/*.scss",
2016-12-23 12:43:46 +00:00
"uglify": "uglifyjs --compress warnings=false --mangle --comments '/^!/' --output dist/js/bootstrap.min.js dist/js/bootstrap.js",
"uglify-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",
"update-shrinkwrap": "npm shrinkwrap --dev && shx mv ./npm-shrinkwrap.json ./grunt/npm-shrinkwrap.json",
"test": "npm run eslint && grunt test"
2013-12-17 12:39:36 +00:00
},
2014-03-07 22:07:38 +00:00
"style": "dist/css/bootstrap.css",
"sass": "scss/bootstrap.scss",
"main": "dist/js/bootstrap",
2013-12-15 18:56:51 +00:00
"repository": {
2013-12-20 19:09:51 +00:00
"type": "git",
"url": "https://github.com/twbs/bootstrap.git"
2013-12-15 18:56:51 +00:00
},
"bugs": {
2013-12-20 19:09:51 +00:00
"url": "https://github.com/twbs/bootstrap/issues"
2013-12-15 18:56:51 +00:00
},
"license": "MIT",
"dependencies": {
"jquery": ">=1.9.1",
2017-01-05 03:19:27 +00:00
"tether": "^1.4.0"
},
2013-12-15 18:56:51 +00:00
"devDependencies": {
2017-03-12 03:32:50 +00:00
"autoprefixer": "^6.7.7",
2017-01-05 03:19:27 +00:00
"babel-eslint": "^7.1.1",
"babel-plugin-transform-es2015-modules-strip": "^0.1.0",
2017-03-20 05:07:18 +00:00
"babel-preset-es2015": "^6.24.0",
"clean-css-cli": "^4.0.9",
"eslint": "^3.18.0",
2016-07-02 17:49:51 +00:00
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-build-control": "^0.7.1",
"grunt-contrib-clean": "^1.0.0",
2017-02-05 12:39:16 +00:00
"grunt-contrib-compress": "^1.4.1",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-copy": "^1.0.0",
2017-03-12 03:32:50 +00:00
"grunt-contrib-qunit": "^1.3.0",
2016-03-19 16:54:01 +00:00
"grunt-contrib-watch": "^1.0.0",
2017-03-12 03:32:50 +00:00
"grunt-exec": "^2.0.0",
2016-07-10 23:44:58 +00:00
"grunt-saucelabs": "^9.0.0",
2016-07-02 17:49:51 +00:00
"grunt-stamp": "^0.3.0",
"htmlhint": "^0.9.13",
2017-02-05 12:39:16 +00:00
"htmllint-cli": "^0.0.6",
"is-travis": "^1.0.0",
"load-grunt-tasks": "^3.5.2",
2017-02-05 12:39:16 +00:00
"node-sass": "^4.5.0",
2017-03-20 05:07:18 +00:00
"postcss-cli": "^3.0.0",
2017-01-05 03:19:27 +00:00
"postcss-flexbugs-fixes": "^2.1.0",
2017-03-12 03:32:50 +00:00
"shelljs": "^0.7.7",
2017-02-05 12:39:16 +00:00
"shx": "^0.2.2",
2016-12-23 12:43:46 +00:00
"time-grunt": "^1.4.0",
2017-03-20 05:07:18 +00:00
"uglify-js": "^2.8.14"
2013-12-15 18:56:51 +00:00
},
"engines": {
"node": ">=4"
},
"files": [
"dist",
2016-07-30 17:44:19 +00:00
"js/**/*.js",
"scss/**/*.scss",
"LICENSE"
],
2013-12-15 18:56:51 +00:00
"jspm": {
"main": "js/bootstrap",
"directories": {
"lib": "dist"
},
2013-12-15 18:56:51 +00:00
"shim": {
"js/bootstrap": {
2015-10-13 21:49:05 +00:00
"deps": [
"jquery"
],
2013-12-15 18:56:51 +00:00
"exports": "$"
}
},
"dependencies": {
"jquery": "3"
}
2013-11-26 10:10:06 +00:00
}
}