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.",
|
2016-10-19 11:27:41 -04:00
|
|
|
"version": "4.0.0-alpha.5",
|
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": {
|
2015-12-05 05:06:57 -05:00
|
|
|
"change-version": "node grunt/change-version.js",
|
2016-10-25 08:18:52 -04:00
|
|
|
"eslint": "eslint --ignore-path .eslintignore js",
|
2016-06-29 02:25:14 -04:00
|
|
|
"jscs": "jscs --config=js/.jscsrc js/src js/tests/unit docs/assets/js/src grunt Gruntfile.js docs/assets/js/ie-emulation-modes-warning.js docs/assets/js/ie10-viewport-bug-workaround.js",
|
2016-07-14 19:22:56 -04:00
|
|
|
"htmlhint": "htmlhint --config docs/.htmlhintrc _gh_pages/",
|
2016-06-20 19:18:21 -04:00
|
|
|
"postcss": "postcss --config grunt/postcss.js --replace dist/css/*.css",
|
|
|
|
"postcss-docs": "postcss --config grunt/postcss.js --no-map --replace docs/assets/css/docs.min.css && postcss --config grunt/postcss.js --no-map --replace docs/examples/**/*.css",
|
2016-07-16 17:12:49 -04:00
|
|
|
"update-shrinkwrap": "npm shrinkwrap --dev && shx mv ./npm-shrinkwrap.json ./grunt/npm-shrinkwrap.json",
|
2016-06-04 20:46:36 -04:00
|
|
|
"test": "npm run eslint && npm run jscs && grunt test"
|
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-06-29 01:19:46 -04:00
|
|
|
"jquery": "1.9.1 - 3",
|
2016-10-06 09:21:05 -04:00
|
|
|
"tether": "^1.3.7"
|
2016-03-07 04:23:55 -05:00
|
|
|
},
|
2013-12-15 13:56:51 -05:00
|
|
|
"devDependencies": {
|
2016-10-06 09:21:05 -04:00
|
|
|
"autoprefixer": "^6.5.0",
|
|
|
|
"babel-eslint": "^7.0.0",
|
|
|
|
"babel-plugin-transform-es2015-modules-strip": "^0.1.0",
|
|
|
|
"babel-preset-es2015": "^6.16.0",
|
|
|
|
"eslint": "^3.7.1",
|
2016-07-02 13:49:51 -04:00
|
|
|
"grunt": "^1.0.1",
|
2016-10-06 09:21:05 -04:00
|
|
|
"grunt-babel": "^6.0.0",
|
|
|
|
"grunt-build-control": "^0.7.1",
|
2016-03-07 04:41:37 -05:00
|
|
|
"grunt-contrib-clean": "^1.0.0",
|
2016-10-06 09:21:05 -04:00
|
|
|
"grunt-contrib-compress": "^1.3.0",
|
|
|
|
"grunt-contrib-concat": "^1.0.1",
|
|
|
|
"grunt-contrib-connect": "^1.0.2",
|
2016-03-07 04:41:37 -05:00
|
|
|
"grunt-contrib-copy": "^1.0.0",
|
2016-10-06 09:21:05 -04:00
|
|
|
"grunt-contrib-cssmin": "^1.0.2",
|
|
|
|
"grunt-contrib-qunit": "^1.2.0",
|
2016-03-07 04:41:37 -05:00
|
|
|
"grunt-contrib-sass": "^1.0.0",
|
2016-10-06 09:21:05 -04:00
|
|
|
"grunt-contrib-uglify": "^2.0.0",
|
2016-03-19 12:54:01 -04:00
|
|
|
"grunt-contrib-watch": "^1.0.0",
|
2016-10-06 09:21:05 -04:00
|
|
|
"grunt-exec": "^1.0.1",
|
|
|
|
"grunt-html": "^8.0.2",
|
|
|
|
"grunt-jekyll": "^0.4.4",
|
|
|
|
"grunt-sass": "^1.2.1",
|
2016-07-10 19:44:58 -04:00
|
|
|
"grunt-saucelabs": "^9.0.0",
|
2016-10-06 09:21:05 -04:00
|
|
|
"grunt-scss-lint": "^0.5.0",
|
2016-07-02 13:49:51 -04:00
|
|
|
"grunt-stamp": "^0.3.0",
|
2016-07-14 19:22:56 -04:00
|
|
|
"htmlhint": "^0.9.13",
|
2015-09-25 18:32:42 -04:00
|
|
|
"is-travis": "^1.0.0",
|
2016-10-06 09:21:05 -04:00
|
|
|
"jscs": "^3.0.7",
|
|
|
|
"load-grunt-tasks": "^3.5.2",
|
|
|
|
"postcss-cli": "^2.6.0",
|
2016-02-07 03:34:29 -05:00
|
|
|
"postcss-flexbugs-fixes": "^2.0.0",
|
2016-10-06 09:21:05 -04:00
|
|
|
"shelljs": "^0.7.4",
|
|
|
|
"shx": "^0.1.4",
|
|
|
|
"time-grunt": "^1.4.0"
|
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": [
|
|
|
|
"dist",
|
2016-02-26 21:36:00 -05:00
|
|
|
"grunt",
|
2016-07-30 13:44:19 -04:00
|
|
|
"js/**/*.js",
|
2015-02-14 07:36:50 -05:00
|
|
|
"scss/**/*.scss",
|
|
|
|
"Gruntfile.js",
|
|
|
|
"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
|
|
|
}
|