twbs--bootstrap/package.json

217 lines
9.9 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.",
2018-07-24 02:25:52 +00:00
"version": "4.1.3",
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": {
2018-07-12 05:29:23 +00:00
"start": "npm-run-all --parallel watch docs-serve",
2018-06-23 22:23:47 +00:00
"blc": "blc --exclude-external --filter-level 3 --get --ordered --recursive --host-requests 4 --input http://localhost:3000/",
"http-server": "http-server --silent -p 3000",
2017-09-27 13:20:46 +00:00
"bundlesize": "bundlesize",
2018-06-23 22:23:47 +00:00
"check-broken-links": "npm-run-all --parallel --race \"http-server -- _gh_pages/\" blc",
"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-copy",
"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 site/docs/4.1/assets/scss/docs.scss site/docs/4.1/assets/css/docs.min.css",
"css-copy": "shx mkdir -p site/docs/4.1/dist/ && shx cp -r dist/css/ site/docs/4.1/dist/",
"css-lint": "stylelint --syntax scss \"scss/**/*.scss\"",
2018-08-02 06:43:52 +00:00
"css-lint-docs": "stylelint --syntax scss \"site/docs/4.1/assets/scss/*.scss\" && stylelint \"site/docs/**/*.css\"",
"css-lint-vars": "node build/lint-vars.js scss/ site/docs/4.1/assets/scss/",
"css-prefix": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
2018-08-02 06:43:52 +00:00
"css-prefix-docs": "postcss --config build/postcss.config.js --replace \"site/docs/4.1/assets/css/docs.min.css\" \"site/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 site/docs/4.1/assets/css/docs.min.css site/docs/4.1/assets/css/docs.min.css",
"js": "npm-run-all js-lint* js-compile js-minify js-copy",
"js-copy": "shx mkdir -p site/docs/4.1/dist/ && shx cp -r dist/js/ site/docs/4.1/dist/",
"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",
2018-03-02 13:15:20 +00:00
"js-lint": "eslint js/src js/tests build/",
"js-lint-docs": "eslint site/docs/4.1/assets/js/ site/sw.js",
"js-compile": "npm-run-all --parallel js-compile-* --sequential js-copy",
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": "node build/build-plugins.js",
"js-compile-plugins-coverage": "cross-env NODE_ENV=test node build/build-plugins.js",
"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 site/docs/4.1/assets/js/docs.min.js site/docs/4.1/assets/js/vendor/anchor.min.js site/docs/4.1/assets/js/vendor/clipboard.min.js site/docs/4.1/assets/js/vendor/holder.min.js \"site/docs/4.1/assets/js/src/*.js\"",
"js-test": "npm-run-all js-test-karma*",
2017-11-17 16:38:34 +00:00
"js-test-karma": "karma start js/tests/karma.conf.js",
"js-test-karma-old": "cross-env USE_OLD_JQUERY=true npm run js-test-karma",
2018-03-29 20:16:56 +00:00
"js-test-karma-bundle": "cross-env karma start js/tests/karma-bundle.conf.js",
"js-test-karma-bundle-old": "cross-env USE_OLD_JQUERY=true npm run js-test-karma-bundle",
2018-06-23 22:23:47 +00:00
"js-test-cloud": "npm-run-all --parallel --race http-server saucelabs-test",
2018-03-23 14:26:09 +00:00
"coveralls": "shx cat js/coverage/lcov.info | coveralls",
"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-github-serve": "npm run docs-serve -- --skip-initial-build --no-watch",
"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",
"docs-workbox-precache": "node build/workbox.js",
"maintenance-dependencies": "ncu -a -x jquery && npm update && bundle update && shx echo \"Manually update site/docs/4.1/assets/js/vendor/*, js/tests/vendor/* and .travis.yml\"",
"release-sri": "node build/generate-sri.js",
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 ..",
2018-06-23 22:23:47 +00:00
"saucelabs-test": "node build/saucelabs-unit-test.js",
"dist": "npm-run-all --parallel css-main js",
"test": "npm-run-all dist js-test docs-compile docs-lint bundlesize",
2018-07-12 05:29:23 +00:00
"watch": "npm-run-all --parallel watch-*",
"watch-css-main": "nodemon --watch scss/ --ext scss --exec \"npm run css-main\"",
"watch-css-docs": "nodemon --watch site/docs/4.1/assets/scss/ --ext scss --exec \"npm run css-docs\"",
"watch-js-main": "nodemon --watch js/src/ --ext js --exec \"npm run js-compile\"",
"watch-js-docs": "nodemon --watch site/docs/4.1/assets/js/src/ --ext js --exec \"npm run js-docs\""
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",
2018-04-10 12:35:18 +00:00
"popper.js": "^1.14.3"
},
2013-12-15 18:56:51 +00:00
"devDependencies": {
2018-07-28 18:47:14 +00:00
"@babel/cli": "7.0.0-beta.54",
"@babel/core": "7.0.0-beta.54",
"@babel/preset-env": "7.0.0-beta.54",
"autoprefixer": "^9.0.1",
"babel-eslint": "^8.2.6",
2018-04-10 12:35:18 +00:00
"babel-plugin-istanbul": "^4.1.6",
2018-06-23 22:23:47 +00:00
"broken-link-checker": "^0.7.8",
"bundlesize": "^0.15.3",
"clean-css-cli": "^4.1.11",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
2018-07-28 18:47:14 +00:00
"eslint": "^5.2.0",
"glob": "^7.1.2",
"htmllint-cli": "^0.0.7",
2018-06-23 22:23:47 +00:00
"http-server": "^0.11.1",
"jsunitsaucelabs": "^1.3.2",
2018-07-28 18:47:14 +00:00
"karma": "^2.0.5",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.1",
2018-04-10 12:35:18 +00:00
"karma-detect-browsers": "^2.3.2",
"karma-firefox-launcher": "^1.1.0",
2018-05-22 12:47:40 +00:00
"karma-qunit": "^2.1.0",
2018-03-09 22:17:57 +00:00
"karma-sinon": "^1.0.5",
2018-07-28 18:47:14 +00:00
"node-sass": "^4.9.2",
"nodemon": "^1.18.3",
2018-05-22 12:47:40 +00:00
"npm-run-all": "^4.1.3",
2018-04-10 12:35:18 +00:00
"popper.js": "^1.14.3",
2018-07-28 18:47:14 +00:00
"postcss-cli": "^6.0.0",
2018-05-22 12:47:40 +00:00
"qunit": "^2.6.1",
2018-07-28 18:47:14 +00:00
"rollup": "^0.63.4",
"rollup-plugin-babel": "4.0.0-beta.5",
"rollup-plugin-node-resolve": "^3.3.0",
2018-05-22 12:47:40 +00:00
"shelljs": "^0.8.2",
2018-07-28 18:47:14 +00:00
"shx": "^0.3.2",
"sinon": "^6.1.4",
"sri-toolbox": "^0.2.0",
2018-07-28 18:47:14 +00:00
"stylelint": "^9.4.0",
2018-04-10 12:35:18 +00:00
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^0.8.1",
2018-07-28 18:47:14 +00:00
"stylelint-scss": "^3.2.0",
"uglify-js": "^3.4.6",
"vnu-jar": "^18.7.23",
"workbox-build": "^3.4.1"
2013-12-15 18:56:51 +00:00
},
"engines": {
"node": ">=6"
},
"files": [
"dist/{css,js}/*.{css,js,map}",
"js/{src,dist}/*.{js,map}",
"scss/**/*.scss"
],
2017-09-27 13:20:46 +00:00
"bundlesize": [
{
"path": "./dist/css/bootstrap-grid.css",
"maxSize": "6 kB"
},
{
"path": "./dist/css/bootstrap-grid.min.css",
"maxSize": "6 kB"
},
{
"path": "./dist/css/bootstrap-reboot.css",
"maxSize": "3 kB"
},
{
"path": "./dist/css/bootstrap-reboot.min.css",
"maxSize": "3 kB"
},
{
"path": "./dist/css/bootstrap.css",
2017-09-27 13:20:46 +00:00
"maxSize": "25 kB"
},
{
"path": "./dist/css/bootstrap.min.css",
"maxSize": "21 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": "21 kB"
2017-09-27 13:20:46 +00:00
},
{
"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": {
"jquery": "1.9.1 - 3",
"popper.js": "^1.14.1"
}
2013-11-26 10:10:06 +00:00
}
}