twbs--bootstrap/package.json

206 lines
8.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-10-19 16:40:37 +00:00
"version": "4.0.0-beta.2",
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": {
2017-09-27 13:20:46 +00:00
"bundlesize": "bundlesize",
"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",
"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-04 09:24:25 +00:00
"css-lint": "stylelint --config build/.stylelintrc --syntax scss \"scss/**/*.scss\"",
2017-10-07 16:16:49 +00:00
"css-lint-docs": "stylelint --config build/.stylelintrc --syntax scss \"assets/scss/*.scss\" && stylelint --config docs/4.0/examples/.stylelintrc \"docs/**/*.css\"",
2017-10-04 09:24:25 +00:00
"css-prefix": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\"",
"css-prefix-docs": "postcss --config build/postcss.config.js --replace \"assets/css/docs.min.css\" \"docs/**/*.css\"",
"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",
"js": "npm-run-all js-lint* js-compile js-minify",
"js-main": "npm-run-all js-lint js-compile js-minify",
2017-04-19 11:59:12 +00:00
"js-docs": "npm-run-all js-lint-docs js-minify-docs",
2017-09-28 14:54:01 +00:00
"js-lint": "eslint js/ && eslint --config js/tests/.eslintrc.json --env node build/",
"js-lint-docs": "eslint --config js/tests/.eslintrc.json assets/js/ docs/ sw.js",
2017-04-19 11:59:12 +00:00
"js-compile": "npm-run-all --parallel js-compile-*",
2017-11-05 18:03:33 +00:00
"js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.js --sourcemap",
"js-compile-bundle": "rollup --environment BUNDLE:true --config build/rollup.config.js --sourcemap",
"js-compile-plugins": "cross-env PLUGINS=true babel js/src/ --out-dir js/dist/ --source-maps",
"js-minify": "npm-run-all --parallel js-minify-*",
"js-minify-standalone": "uglifyjs --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.js.map,includeSources,url=bootstrap.min.js.map\" --output dist/js/bootstrap.min.js dist/js/bootstrap.js",
"js-minify-bundle": "uglifyjs --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.bundle.js.map,includeSources,url=bootstrap.bundle.min.js.map\" --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 11:59:12 +00:00
"js-test": "phantomjs ./node_modules/qunit-phantomjs-runner/runner.js js/tests/index.html 60",
"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",
"docs": "npm-run-all --parallel css-docs js-docs --sequential docs-compile docs-lint",
"docs-compile": "bundle exec jekyll build",
"postdocs-compile": "npm run docs-workbox-precache",
"docs-github": "shx echo \"github: true\" > twbsconfig.yml && npm run docs-compile -- --config _config.yml,twbsconfig.yml && shx rm ./twbsconfig.yml",
"docs-lint": "npm-run-all docs-lint-*",
"docs-lint-htmllint": "htmllint --rc build/.htmllintrc \"_gh_pages/**/*.html\" \"js/tests/**/*.html\"",
"docs-lint-vnu-jar": "node build/vnu-jar.js",
"docs-serve": "bundle exec jekyll serve",
2017-04-19 11:59:12 +00:00
"docs-upload-preview": "build/upload-preview.sh",
"docs-workbox-precache": "node build/workbox.js",
2017-09-04 22:29:05 +00: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 11:59:12 +00: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 ..",
"dist": "npm-run-all --parallel css js",
"test": "npm-run-all dist js-test docs-compile docs-lint bundlesize",
"watch": "npm-run-all --parallel watch-css watch-js",
"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 js-compile\""
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": "git+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",
2017-08-10 02:41:05 +00:00
"dependencies": {},
"peerDependencies": {
"jquery": "1.9.1 - 3",
"popper.js": "^1.12.6"
},
2013-12-15 18:56:51 +00:00
"devDependencies": {
2017-11-05 18:03:33 +00:00
"@babel/cli": "7.0.0-beta.31",
"@babel/core": "7.0.0-beta.31",
"@babel/preset-env": "7.0.0-beta.31",
2017-07-15 09:23:36 +00:00
"autoprefixer": "^7.1.2",
2017-11-05 18:03:33 +00:00
"babel-eslint": "^8.0.2",
2017-04-19 11:59:12 +00:00
"babel-plugin-transform-es2015-modules-strip": "^0.1.1",
2017-10-09 07:44:10 +00:00
"bundlesize": "^0.15.2",
2017-07-15 09:23:36 +00:00
"clean-css-cli": "^4.1.6",
"cross-env": "^5.0.5",
2017-07-15 09:23:36 +00:00
"eslint": "^4.2.0",
2017-10-09 07:44:10 +00:00
"eslint-plugin-compat": "^2.0.1",
2017-10-04 10:13:42 +00:00
"htmllint-cli": "^0.0.6",
2017-09-28 15:18:20 +00:00
"jsunitsaucelabs": "^1.2.0",
"node-sass": "^4.5.3",
2017-04-22 06:35:24 +00:00
"nodemon": "^1.11.0",
2017-04-19 11:59:12 +00:00
"npm-run-all": "^4.0.2",
"phantomjs-prebuilt": "^2.1.14",
"popper.js": "^1.12.6",
2017-07-15 09:23:36 +00:00
"postcss-cli": "^4.1.0",
2017-04-19 11:59:12 +00:00
"qunit-phantomjs-runner": "^2.3.0",
2017-07-15 09:23:36 +00:00
"qunitjs": "^2.4.0",
2017-11-09 05:43:55 +00:00
"rollup": "^0.51.1",
2017-11-05 18:03:33 +00:00
"rollup-plugin-babel": "4.0.0-beta.0",
"rollup-plugin-node-resolve": "^3.0.0",
2017-07-15 09:23:36 +00:00
"shelljs": "^0.7.8",
2017-02-05 12:39:16 +00:00
"shx": "^0.2.2",
2017-10-03 03:34:56 +00: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",
"uglify-js": "^3.0.24",
"vnu-jar": "^17.11.1",
"workbox-build": "^2.0.1"
2013-12-15 18:56:51 +00:00
},
"engines": {
"node": ">=6"
},
"files": [
2017-04-19 11:59:12 +00:00
".babelrc",
".eslintignore",
"Gemfile",
"dist",
2017-04-19 11:59:12 +00:00
"build",
"js/.eslintrc.json",
2016-07-30 17:44:19 +00:00
"js/**/*.js",
"js/**/*.js.map",
2017-10-03 03:34:56 +00:00
"scss/**/*.scss"
],
"browserslist": [
"Chrome >= 45",
"Firefox ESR",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
],
2017-09-27 13:20:46 +00:00
"bundlesize": [
{
"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 13:20:46 +00:00
"maxSize": "25 kB"
},
{
"path": "./dist/css/bootstrap.min.css",
"maxSize": "20 kB"
},
2017-09-27 13:20:46 +00:00
{
"path": "./dist/js/bootstrap.bundle.js",
"maxSize": "45 kB"
2017-09-27 13:20:46 +00: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 18:56:51 +00:00
"jspm": {
2017-09-05 18:49:29 +00:00
"registry": "npm",
2013-12-15 18:56:51 +00:00
"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": [
2017-08-15 11:48:38 +00:00
"jquery",
"popper.js"
2015-10-13 21:49:05 +00:00
],
2013-12-15 18:56:51 +00:00
"exports": "$"
}
},
2017-08-15 11:48:38 +00:00
"dependencies": {},
"peerDependencies": {
2017-09-05 18:49:29 +00:00
"jquery": "^3.0.0",
"popper.js": "^1.12.6"
}
2013-11-26 10:10:06 +00:00
}
}