package.json 7.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "name": "bower",
  3. "version": "1.3.12",
  4. "description": "The browser package manager",
  5. "author": {
  6. "name": "Twitter"
  7. },
  8. "licenses": [
  9. {
  10. "type": "MIT",
  11. "url": "https://github.com/bower/bower/blob/master/LICENSE"
  12. }
  13. ],
  14. "repository": {
  15. "type": "git",
  16. "url": "git://github.com/bower/bower"
  17. },
  18. "main": "lib",
  19. "homepage": "http://bower.io",
  20. "engines": {
  21. "node": ">=0.10.0"
  22. },
  23. "dependencies": {
  24. "abbrev": "~1.0.4",
  25. "archy": "0.0.2",
  26. "bower-config": "~0.5.2",
  27. "bower-endpoint-parser": "~0.2.2",
  28. "bower-json": "~0.4.0",
  29. "bower-logger": "~0.2.2",
  30. "bower-registry-client": "~0.2.0",
  31. "cardinal": "0.4.0",
  32. "chalk": "0.5.0",
  33. "chmodr": "0.1.0",
  34. "decompress-zip": "0.0.8",
  35. "fstream": "~1.0.2",
  36. "fstream-ignore": "~1.0.1",
  37. "glob": "~4.0.2",
  38. "graceful-fs": "~3.0.1",
  39. "handlebars": "~2.0.0",
  40. "inquirer": "0.7.1",
  41. "insight": "0.4.3",
  42. "is-root": "~1.0.0",
  43. "junk": "~1.0.0",
  44. "lockfile": "~1.0.0",
  45. "lru-cache": "~2.5.0",
  46. "mkdirp": "0.5.0",
  47. "mout": "~0.9.0",
  48. "nopt": "~3.0.0",
  49. "opn": "~1.0.0",
  50. "osenv": "0.1.0",
  51. "p-throttler": "0.1.0",
  52. "promptly": "0.2.0",
  53. "q": "~1.0.1",
  54. "request": "~2.42.0",
  55. "request-progress": "0.3.0",
  56. "retry": "0.6.0",
  57. "rimraf": "~2.2.0",
  58. "semver": "~2.3.0",
  59. "shell-quote": "~1.4.1",
  60. "stringify-object": "~1.0.0",
  61. "tar-fs": "0.5.2",
  62. "tmp": "0.0.23",
  63. "update-notifier": "0.2.0",
  64. "which": "~1.0.5"
  65. },
  66. "devDependencies": {
  67. "coveralls": "~2.11.0",
  68. "expect.js": "~0.3.1",
  69. "grunt": "~0.4.4",
  70. "grunt-cli": "^0.1.13",
  71. "grunt-contrib-jshint": "~0.10.0",
  72. "grunt-contrib-watch": "~0.6.1",
  73. "grunt-exec": "~0.4.2",
  74. "grunt-simple-mocha": "~0.4.0",
  75. "istanbul": "~0.3.2",
  76. "load-grunt-tasks": "~0.6.0",
  77. "mocha": "~1.21.4",
  78. "nock": "~0.46.0",
  79. "node-uuid": "~1.4.1",
  80. "proxyquire": "~1.0.1"
  81. },
  82. "scripts": {
  83. "test": "grunt test"
  84. },
  85. "bin": {
  86. "bower": "bin/bower"
  87. },
  88. "preferGlobal": true,
  89. "readme": "# Bower\n\n[![Build Status](https://travis-ci.org/bower/bower.svg?branch=master)](https://travis-ci.org/bower/bower) [![Coverage Status](https://coveralls.io/repos/bower/bower/badge.png?branch=master)](https://coveralls.io/r/bower/bower?branch=master)\n\n<img align=\"right\" height=\"300\" src=\"http://bower.io/img/bower-logo.png\">\n\n> A package manager for the web\n\nBower offers a generic, unopinionated solution to the problem of **front-end package management**, while exposing the package dependency model via an API that can be consumed by a more opinionated build stack. There are no system wide dependencies, no dependencies are shared between different apps, and the dependency tree is flat.\n\nBower runs over Git, and is package-agnostic. A packaged component can be made up of any type of asset, and use any type of transport (e.g., AMD, CommonJS, etc.).\n\n**View complete docs on [bower.io](http://bower.io)**\n\n[View all packages available through Bower's registry](http://bower.io/search/).\n\n## Install\n\n```sh\n$ npm install -g bower\n```\n\nBower depends on [Node.js](http://nodejs.org/) and [npm](http://npmjs.org/). Also make sure that [git](http://git-scm.com/) is installed as some bower\npackages require it to be fetched and installed.\n\n\n## Usage\n\nSee complete command line reference at [bower.io/docs/api/](http://bower.io/docs/api/)\n\n### Installing packages and dependencies\n\n```sh\n# install dependencies listed in bower.json\n$ bower install\n\n# install a package and add it to bower.json\n$ bower install <package> --save\n\n# install specific version of a package and add it to bower.json\n$ bower install <package>#<version> --save\n```\n\n### Using packages\n\nWe discourage using bower components statically for performance and security reasons (if component has an `upload.php` file that is not ignored, that can be easily exploited to do malicious stuff).\n\nThe best approach is to process components installed by bower with build tool (like [Grunt](http://gruntjs.com/) or [gulp](http://gulpjs.com/)), and serve them concatenated or using module loader (like [RequireJS](http://requirejs.org/)).\n\n### Uninstalling packages\n\nTo uninstall a locally installed package:\n\n```sh\n$ bower uninstall <package-name>\n```\n\n### prezto and oh-my-zsh users\n\nOn `prezto` or `oh-my-zsh`, do not forget to `alias bower='noglob bower'` or `bower install jquery\\#1.9.1`\n\n### Running commands with sudo\n\nBower is a user command, there is no need to execute it with superuser permissions.\nHowever, if you still want to run commands with sudo, use `--allow-root` option.\n\n### Windows users\n\nTo use Bower on Windows, you must install\n[msysgit](http://msysgit.github.io/) correctly. Be sure to check the\noption shown below:\n\n![msysgit](http://f.cl.ly/items/2V2O3i1p3R2F1r2v0a12/mysgit.png)\n\nNote that if you use TortoiseGit and if Bower keeps asking for your SSH\npassword, you should add the following environment variable: `GIT_SSH -\nC:\\Program Files\\TortoiseGit\\bin\\TortoisePlink.exe`. Adjust the `TortoisePlink`\npath if needed.\n\n## Configuration\n\nBower can be configured using JSON in a `.bowerrc` file. Read over available options at [bower.io/docs/config](http://bower.io/docs/config).\n\n## Completion (experimental)\n\n_NOTE_: Completion is still not implemented for the 1.0.0 release\n\nBower now has an experimental `completion` command that is based on, and works\nsimilarly to the [npm completion](https://npmjs.org/doc/completion.html). It is\nnot available for Windows users.\n\nThis command will output a Bash / ZSH script to put into your `~/.bashrc`,\n`~/.bash_profile`, or `~/.zshrc` file.\n\n```sh\n$ bower completion >> ~/.bash_profile\n```\n\n\n## Support\n\n* [StackOverflow](http://stackoverflow.com/questions/tagged/bower)\n* [Mailinglist](http://groups.google.com/group/twitter-bower) - twitter-bower@googlegroups.com\n* [\\#bower](http://webchat.freenode.net/?channels=bower) on Freenode\n\n\n## Contributing\n\nWe welcome contributions of all kinds from anyone. Please take a moment to\nreview the [guidelines for contributing](CONTRIBUTING.md).\n\n* [Bug reports](CONTRIBUTING.md#bugs)\n* [Feature requests](CONTRIBUTING.md#features)\n* [Pull requests](CONTRIBUTING.md#pull-requests)\n\n\n## Bower Team\n\nBower is made by lots of people across the globe, contributions large and small. Our thanks to everyone who has played a part.\n\n### Core team\n\n* [@satazor](https://github.com/satazor)\n* [@wibblymat](https://github.com/wibblymat)\n* [@paulirish](https://github.com/paulirish)\n* [@benschwarz](https://github.com/benschwarz)\n* [@sindresorhus](https://github.com/sindresorhus)\n* [@svnlto](https://github.com/svnlto)\n* [@sheerun](https://github.com/sheerun)\n\n### Bower Alumni\n\n* [@fat](https://github.com/fat)\n* [@maccman](https://github.com/maccman)\n\n\n## License\n\nCopyright (c) 2014 Twitter and other contributors\n\nLicensed under the MIT License\n",
  90. "readmeFilename": "README.md",
  91. "bugs": {
  92. "url": "https://github.com/bower/bower/issues"
  93. },
  94. "_id": "bower@1.3.12",
  95. "_shasum": "37de0edb3904baf90aee13384a1a379a05ee214c",
  96. "_from": "bower@^1.3.1",
  97. "_resolved": "https://registry.npmjs.org/bower/-/bower-1.3.12.tgz"
  98. }