mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-13 03:02:49 +00:00
56 lines
8.9 KiB
JSON
56 lines
8.9 KiB
JSON
{
|
|
"name": "bootstrap",
|
|
"description": "Sleek, intuitive, and powerful front-end framework for faster and easier web development.",
|
|
"version": "3.0.2",
|
|
"keywords": [
|
|
"bootstrap",
|
|
"css"
|
|
],
|
|
"homepage": "http://getbootstrap.com",
|
|
"author": {
|
|
"name": "Twitter, Inc."
|
|
},
|
|
"scripts": {
|
|
"test": "grunt test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/twbs/bootstrap.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/twbs/bootstrap/issues"
|
|
},
|
|
"licenses": [
|
|
{
|
|
"type": "Apache-2.0",
|
|
"url": "http://www.apache.org/licenses/LICENSE-2.0"
|
|
}
|
|
],
|
|
"devDependencies": {
|
|
"browserstack-runner": "~0.0.12",
|
|
"btoa": "~1.1.1",
|
|
"grunt": "~0.4.1",
|
|
"grunt-contrib-clean": "~0.5.0",
|
|
"grunt-contrib-concat": "~0.3.0",
|
|
"grunt-contrib-connect": "~0.5.0",
|
|
"grunt-contrib-copy": "~0.4.1",
|
|
"grunt-contrib-jshint": "~0.7.0",
|
|
"grunt-contrib-qunit": "~0.3.0",
|
|
"grunt-contrib-uglify": "~0.2.4",
|
|
"grunt-contrib-watch": "~0.5.3",
|
|
"grunt-html-validation": "~0.1.6",
|
|
"grunt-jekyll": "~0.4.0",
|
|
"grunt-recess": "~0.5.0",
|
|
"grunt-sed": "~0.1.1",
|
|
"regexp-quote": "~0.0.0"
|
|
},
|
|
"readme": "# [Bootstrap](http://getbootstrap.com) [](http://travis-ci.org/twbs/bootstrap) [](https://david-dm.org/twbs/bootstrap#info=devDependencies)\n\nBootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created and maintained by [Mark Otto](http://twitter.com/mdo) and [Jacob Thornton](http://twitter.com/fat).\n\nTo get started, check out <http://getbootstrap.com>!\n\n\n\n## Quick start\n\nThree quick start options are available:\n\n* [Download the latest release](https://github.com/twbs/bootstrap/archive/v3.0.2.zip).\n* Clone the repo: `git clone https://github.com/twbs/bootstrap.git`.\n* Install with [Bower](http://bower.io): `bower install bootstrap`.\n\nRead the [Getting Started page](http://getbootstrap.com/getting-started/) for information on the framework contents, templates and examples, and more.\n\n### What's included\n\nWithin the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:\n\n```\nbootstrap/\n├── css/\n│ ├── bootstrap.css\n│ ├── bootstrap.min.css\n│ ├── bootstrap-theme.css\n│ └── bootstrap-theme.min.css\n├── js/\n│ ├── bootstrap.js\n│ └── bootstrap.min.js\n└── fonts/\n ├── glyphicons-halflings-regular.eot\n ├── glyphicons-halflings-regular.svg\n ├── glyphicons-halflings-regular.ttf\n └── glyphicons-halflings-regular.woff\n```\n\nWe provide compiled CSS and JS (`bootstrap.*`), as well as compiled and minified CSS and JS (`bootstrap.min.*`). Fonts from Glyphicons are included, as is the optional Bootstrap theme.\n\n\n\n## Bugs and feature requests\n\nHave a bug or a feature request? [Please open a new issue](https://github.com/twbs/bootstrap/issues). Before opening any issue, please search for existing issues and read the [Issue Guidelines](https://github.com/necolas/issue-guidelines), written by [Nicolas Gallagher](https://github.com/necolas/).\n\nYou may use [this JS Bin](http://jsbin.com/aKiCIDO/1/edit) as a template for your bug reports.\n\n\n\n## Documentation\n\nBootstrap's documentation, included in this repo in the root directory, is built with [Jekyll](http://jekyllrb.com) and publicly hosted on GitHub Pages at <http://getbootstrap.com>. The docs may also be run locally.\n\n### Running documentation locally\n\n1. If necessary, [install Jekyll](http://jekyllrb.com/docs/installation) (requires v1.x).\n2. From the root `/bootstrap` directory, run `jekyll serve` in the command line.\n - **Windows users:** run `chcp 65001` first to change the command prompt's character encoding ([code page](http://en.wikipedia.org/wiki/Windows_code_page)) to UTF-8 so Jekyll runs without errors.\n3. Open <http://localhost:9001> in your browser, and voilà.\n\nLearn more about using Jekyll by reading its [documentation](http://jekyllrb.com/docs/home/).\n\n### Documentation for previous releases\n\nDocumentation for v2.3.2 has been made available for the time being at <http://getbootstrap.com/2.3.2/> while folks transition to Bootstrap 3.\n\n[Previous releases](https://github.com/twbs/bootstrap/releases) and their documentation are also available for download.\n\n\n\n## Compiling CSS and JavaScript\n\nBootstrap uses [Grunt](http://gruntjs.com/) with convenient methods for working with the framework. It's how we compile our code, run tests, and more. To use it, install the required dependencies as directed and then run some Grunt commands.\n\n### Install Grunt\n\nFrom the command line:\n\n1. Install `grunt-cli` globally with `npm install -g grunt-cli`.\n2. Navigate to the root `/bootstrap` directory, then run `npm install`. npm will look at [package.json](package.json) and automatically install the necessary local dependencies listed there.\n\nWhen completed, you'll be able to run the various Grunt commands provided from the command line.\n\n**Unfamiliar with `npm`? Don't have node installed?** That's a-okay. npm stands for [node packaged modules](http://npmjs.org/) and is a way to manage development dependencies through node.js. [Download and install node.js](http://nodejs.org/download/) before proceeding.\n\n### Available Grunt commands\n\n#### Build - `grunt`\nRun `grunt` to run tests locally and compile the CSS and JavaScript into `/dist`. **Uses [recess](http://twitter.github.io/recess/) and [UglifyJS](http://lisperator.net/uglifyjs/).**\n\n#### Only compile CSS and JavaScript - `grunt dist`\n`grunt dist` creates the `/dist` directory with compiled files. **Uses [recess](http://twitter.github.io/recess/) and [UglifyJS](http://lisperator.net/uglifyjs/).**\n\n#### Tests - `grunt test`\nRuns [JSHint](http://jshint.com) and [QUnit](http://qunitjs.com/) tests headlessly in [PhantomJS](http://phantomjs.org/) (used for CI).\n\n#### Watch - `grunt watch`\nThis is a convenience method for watching just Less files and automatically building them whenever you save.\n\n### Troubleshooting dependencies\n\nShould you encounter problems with installing dependencies or running Grunt commands, uninstall all previous dependency versions (global and local). Then, rerun `npm install`.\n\n\n\n## Contributing\n\nPlease read through our [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development.\n\nMore over, if your pull request contains JavaScript patches or features, you must include relevant unit tests. All HTML and CSS should conform to the [Code Guide](http://github.com/mdo/code-guide), maintained by [Mark Otto](http://github.com/mdo).\n\nEditor preferences are available in the [editor config](.editorconfig) for easy use in common text editors. Read more and download plugins at <http://editorconfig.org>.\n\nWith v3.1, we're moving from the Apache 2 to the MIT license for the Bootstrap code (not the docs). Please see the [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md) for more information.\n\n\n## Community\n\nKeep track of development and community news.\n\n* Follow [@twbootstrap on Twitter](http://twitter.com/twbootstrap).\n* Read and subscribe to [The Official Bootstrap Blog](http://blog.getbootstrap.com).\n* Have a question that's not a feature request or bug report? [Ask on the mailing list.](http://groups.google.com/group/twitter-bootstrap)\n* Chat with fellow Bootstrappers in IRC. On the `irc.freenode.net` server, in the `##twitter-bootstrap` channel.\n\n\n\n\n## Versioning\n\nFor transparency and insight into our release cycle, and for striving to maintain backward compatibility, Bootstrap will be maintained under the Semantic Versioning guidelines as much as possible.\n\nReleases will be numbered with the following format:\n\n`<major>.<minor>.<patch>`\n\nAnd constructed with the following guidelines:\n\n* Breaking backward compatibility bumps the major (and resets the minor and patch)\n* New additions without breaking backward compatibility bumps the minor (and resets the patch)\n* Bug fixes and misc changes bumps the patch\n\nFor more information on SemVer, please visit <http://semver.org/>.\n\n\n\n## Authors\n\n**Mark Otto**\n\n+ <http://twitter.com/mdo>\n+ <http://github.com/mdo>\n\n**Jacob Thornton**\n\n+ <http://twitter.com/fat>\n+ <http://github.com/fat>\n\n\n\n## Copyright and license\n\nCopyright 2013 Twitter, Inc under [the Apache 2.0 license](LICENSE).\n",
|
|
"readmeFilename": "README.md",
|
|
"_id": "bootstrap@3.0.2",
|
|
"dist": {
|
|
"shasum": "b6e7a6cec29c86d40531ec7bdfef787ef9532fe1"
|
|
},
|
|
"_resolved": "git://github.com/twbs/bootstrap.git#b7b72cc8773b88d4ba23a84847e93fb9e8d3e1bb",
|
|
"_from": "git://github.com/twbs/bootstrap.git"
|
|
}
|