{"_id":"react-bootstrap-multiselect","_rev":"38-066a0177c7c9aca2fd1d623c925e3703","name":"react-bootstrap-multiselect","time":{"modified":"2022-06-25T17:17:16.607Z","created":"2014-07-23T04:19:55.181Z","0.0.1":"2014-07-23T04:19:55.181Z","0.0.2":"2014-07-23T22:18:29.990Z","0.0.3":"2014-07-24T16:46:50.358Z","0.0.4":"2014-07-24T17:27:57.874Z","0.0.5":"2014-07-24T18:26:14.235Z","0.0.6":"2014-09-04T15:15:24.946Z","0.1.0":"2014-11-19T17:11:45.964Z","0.1.1":"2014-11-19T23:17:20.333Z","0.1.2":"2015-02-20T00:21:43.228Z","0.2.0":"2015-04-03T21:16:00.695Z","0.2.1":"2015-05-15T22:14:51.151Z","0.2.2":"2015-07-03T22:04:39.964Z","0.3.0":"2015-08-24T16:32:20.762Z","0.4.0":"2015-08-25T17:56:20.635Z","0.5.0":"2015-09-10T16:51:52.086Z","0.6.0":"2015-09-16T15:21:50.347Z","1.0.0":"2015-11-12T04:47:30.475Z","1.0.1":"2016-01-08T15:59:06.765Z","1.0.2":"2016-03-14T19:13:01.701Z","2.0.0":"2016-04-12T19:05:02.331Z","2.1.0":"2016-08-26T02:31:39.275Z","2.2.0":"2016-09-10T21:28:44.303Z","2.3.0":"2016-10-11T23:01:06.888Z","2.4.0":"2017-04-20T15:49:55.005Z","2.4.1":"2017-04-21T03:26:42.185Z"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist-tags":{"latest":"2.4.1"},"description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","readme":"# react-bootstrap-multiselect\n\n[![NPM version](https://badge.fury.io/js/react-bootstrap-multiselect.svg)](http://badge.fury.io/js/react-bootstrap-multiselect)\n[![Dependency Status](https://david-dm.org/skratchdot/react-bootstrap-multiselect.svg)](https://david-dm.org/skratchdot/react-bootstrap-multiselect)\n[![devDependency Status](https://david-dm.org/skratchdot/react-bootstrap-multiselect/dev-status.svg)](https://david-dm.org/skratchdot/react-bootstrap-multiselect#info=devDependencies)\n\n\n## Description\n\nA multiselect component for react (with bootstrap). This is a react wrapper\naround an existing jQuery/bootstrap library (it is not a pure react port):\n\n[bootstrap-multiselect](https://github.com/davidstutz/bootstrap-multiselect)\n\n\n## Getting Started\n\n1) Install the module with: `npm install --save react-bootstrap-multiselect`\n\n2) Create your module (you need to use something like browserify to build)\n\n```javascript\nvar React = require('react');\nvar Multiselect = require('react-bootstrap-multiselect');\nvar someReactComponent = React.createClass({\n    render: function () {\n        return (\n            <Multiselect />\n        );\n    }\n});\n```\n\n3) Include the multi-select CSS in your project somewhere. The CSS file is here:\n[bootstrap-multiselect.css](https://raw.githubusercontent.com/davidstutz/bootstrap-multiselect/master/dist/css/bootstrap-multiselect.css)\n(don't hotlink- download and host your own copy)\n\n```html\n<link rel=\"stylesheet\" href=\"bootstrap-multiselect.css\" type=\"text/css\" />\n```\n\n## Supported React Versions\n\n- React 13 users should use [react-bootstrap-multiselect v0.6.0](https://github.com/skratchdot/react-bootstrap-multiselect/tree/v0.6.0)\n\n- React 14 users should use [react-bootstrap-multiselect v1.0.2](https://github.com/skratchdot/react-bootstrap-multiselect/tree/v1.0.2)\n\n- React 15 users should use [react-bootstrap-multiselect v2.x.x](https://github.com/skratchdot/react-bootstrap-multiselect/)\n\n\n## Note on data synchronization\n\nIn case `this.state.myData` changes from outside of multiselect component, values and checkbox state will not update automatically. If you want to sync state, you have to call `.syncData()` on multiselect like in example below.\n\n```javascript\n\nvar React = require('react');\nvar Multiselect = require('react-bootstrap-multiselect');\n\nvar someReactComponent = React.createClass({\n    getInitialState: function(){\n        var that = this;\n        $(\"element\").on(\"event\", function(){\n            $.get(\"new-data-from-url\", function(newData){\n                that.setState(newData);\n\n                // to sync manually do\n                that.refs.myRef.syncData();\n            });\n        });\n\n        return {\n            myData : [{value:'One',selected:true},{value:'Two'}]\n        };\n    },\n    render: function () {\n        return (\n            <Multiselect onChange={this.handleChange} ref=\"myRef\" data={this.state.myData} multiple />\n        );\n    }\n});\n```\n\n## Documentation\n\nFor in depth documentation, see the original\n[bootstrap-multiselect](https://github.com/davidstutz/bootstrap-multiselect) project page.\n\n\n## Links\n\n- [Source Code](https://github.com/skratchdot/react-bootstrap-multiselect)\n- [Changelog](https://github.com/skratchdot/react-bootstrap-multiselect/blob/master/CHANGELOG.md)\n- [Live Demo](http://projects.skratchdot.com/react-bootstrap-multiselect/)\n- [Original Plugin](https://github.com/davidstutz/bootstrap-multiselect)\n\n\n## Similar React Components\n\n- [react-select](https://jedwatson.github.io/react-select/)\n- [react-selectize](https://www.npmjs.com/package/react-selectize)\n\n\n## License\n\nCopyright (c) 2014 skratchdot  \nUses the original [bootstrap-multiselect](https://github.com/davidstutz/bootstrap-multiselect) license.\n","versions":{"0.0.2":{"name":"react-bootstrap-multiselect","version":"0.0.2","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":"^2.1.1","react":"^0.11.0"},"devDependencies":{"bootstrap":"^3.2.0","gulp":"^3.8.6","gulp-browserify":"^0.5.0","gulp-connect":"^2.0.6","gulp-cssmin":"^0.1.6","gulp-less":"^1.3.2","gulp-nodemon":"^1.0.4","gulp-rename":"^1.2.0","gulp-uglify":"^0.3.1","gulp-wrap":"^0.3.0","jsxhint":"^0.4.14","react-bootstrap":"^0.11.0","reactify":"^0.14.0"},"keywords":["react","bootstrap","multiselect","select","list","ui","checkbox","radio"],"homepage":"https://github.com/skratchdot/react-bootstrap-multiselect","_id":"react-bootstrap-multiselect@0.0.2","_shasum":"99e25e8d7f06a469b56d45e37c416ed180351536","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"99e25e8d7f06a469b56d45e37c416ed180351536","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-0.0.2.tgz","integrity":"sha512-+HNNdC3iJq5r7kcDyPRVwuJDxD1/jYKdeNMO4wB1Mp+ji8sp8++ssW5iGsF4Pj60BXNTtybVLQtMsCGRnHstWg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCEcpgPqTSJsrSDbotVQtiTckK4lgrE/+RIcElycTnwjgIgPaqnLfe4CvtU2KeCgR8BFcs61cOIuWYKb6O9cwbjDtw="}]}},"0.0.3":{"name":"react-bootstrap-multiselect","version":"0.0.3","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"prepublish":"gulp prepublish","test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":"^2.1.1","react":">=0.10.0"},"devDependencies":{"bootstrap":"^3.2.0","gulp":"^3.8.6","gulp-browserify":"^0.5.0","gulp-connect":"^2.0.6","gulp-cssmin":"^0.1.6","gulp-less":"^1.3.2","gulp-nodemon":"^1.0.4","gulp-react":"^0.5.0","gulp-rename":"^1.2.0","gulp-uglify":"^0.3.1","gulp-wrap":"^0.3.0","jsxhint":"^0.4.14","react-bootstrap":"^0.11.0","reactify":"^0.14.0"},"keywords":["react","bootstrap","multiselect","select","list","ui","checkbox","radio"],"homepage":"https://github.com/skratchdot/react-bootstrap-multiselect","_id":"react-bootstrap-multiselect@0.0.3","_shasum":"c6b212e6c6a687dffd7d923e6327fe8e5ddd41c9","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"c6b212e6c6a687dffd7d923e6327fe8e5ddd41c9","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-0.0.3.tgz","integrity":"sha512-mzUTA/00ecRgnwb5kQGMBn8rmJ1e/ZdjoUrJ539TJzleInOwMlJIaRli+Ka+pHnwAjLhvoGMqu7Q+1k/Bi7F4g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCbP4V8HaxxZgEs4/C8009yrtHjrPdBq5v8pFkkx8X/FwIgCz/jr5BgEU2J1jqTcAbKCq9mz+xDeWPRYX95c2uFh2U="}]}},"0.0.4":{"name":"react-bootstrap-multiselect","version":"0.0.4","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"prepublish":"gulp prepublish","test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":"^2.1.1","react":">=0.10.0"},"devDependencies":{"bootstrap":"^3.2.0","gulp":"^3.8.6","gulp-browserify":"^0.5.0","gulp-connect":"^2.0.6","gulp-cssmin":"^0.1.6","gulp-less":"^1.3.2","gulp-nodemon":"^1.0.4","gulp-react":"^0.5.0","gulp-rename":"^1.2.0","gulp-uglify":"^0.3.1","gulp-wrap":"^0.3.0","jsxhint":"^0.4.14","react-bootstrap":"^0.11.0","reactify":"^0.14.0"},"keywords":["react","bootstrap","multiselect","select","list","ui","checkbox","radio"],"homepage":"https://github.com/skratchdot/react-bootstrap-multiselect","_id":"react-bootstrap-multiselect@0.0.4","_shasum":"618c4b6b7d20e85b985daf3c2db75ea70150fcaf","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"618c4b6b7d20e85b985daf3c2db75ea70150fcaf","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-0.0.4.tgz","integrity":"sha512-oNnHC5QCiwCpjq4esJDCGmWUkCfI2dEjV9KaJHrSJMSUVG18Rkz5GWfvSSgrmlDdGccoeN0NXUjx3PDzF36LQQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDj1NnioovHJ4ZvOnvli9ga52irX0vfEUHIC/XoYwqkhQIgApOcoGSTE5fqfOT3mZYpLDGEI8oajGdjIaOYiIxXDds="}]}},"0.0.5":{"name":"react-bootstrap-multiselect","version":"0.0.5","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"prepublish":"gulp prepublish","test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":"^2.1.1","react":">=0.10.0"},"devDependencies":{"bootstrap":"^3.2.0","gulp":"^3.8.6","gulp-browserify":"^0.5.0","gulp-connect":"^2.0.6","gulp-cssmin":"^0.1.6","gulp-less":"^1.3.2","gulp-nodemon":"^1.0.4","gulp-react":"^0.5.0","gulp-rename":"^1.2.0","gulp-uglify":"^0.3.1","gulp-wrap":"^0.3.0","jsxhint":"^0.4.14","react-bootstrap":"^0.11.0","reactify":"^0.14.0"},"keywords":["react","bootstrap","multiselect","select","list","ui","checkbox","radio"],"homepage":"https://github.com/skratchdot/react-bootstrap-multiselect","_id":"react-bootstrap-multiselect@0.0.5","_shasum":"8eb483c8f08ea01b5dee255ad3266bab031c4b52","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"8eb483c8f08ea01b5dee255ad3266bab031c4b52","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-0.0.5.tgz","integrity":"sha512-rN7Mavw7XicmyG91IGX1fkkIny/nWWbN+ELeARX+oXCpslAMM//yTR6SjAD8O31Bt6Sy9Dp8YhNS1a/m22OutA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCYeNEtqVRXDexZPTV3F2bWRxWDFJnYu6d/r/G+PW09rgIhAMavvGb8+IV75+VgD6rNbzDqQWrgtfeZlhGH8E442UrX"}]}},"0.0.6":{"name":"react-bootstrap-multiselect","version":"0.0.6","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"prepublish":"gulp prepublish","test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":"^2.1.1","react":">=0.10.0"},"devDependencies":{"bootstrap":"^3.2.0","gulp":"^3.8.6","gulp-browserify":"^0.5.0","gulp-connect":"^2.0.6","gulp-cssmin":"^0.1.6","gulp-less":"^1.3.2","gulp-nodemon":"^1.0.4","gulp-react":"^0.5.0","gulp-rename":"^1.2.0","gulp-uglify":"^0.3.1","gulp-wrap":"^0.3.0","jsxhint":"^0.4.14","react-bootstrap":"^0.11.0","reactify":"^0.14.0"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"7cf7105832c9c0aa74eacee3028173f33158f2a9","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect","_id":"react-bootstrap-multiselect@0.0.6","_shasum":"f723d99a3eeeef8fc42761a44ff5a8d0e09abd2a","_from":".","_npmVersion":"2.0.0-beta.0","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"f723d99a3eeeef8fc42761a44ff5a8d0e09abd2a","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-0.0.6.tgz","integrity":"sha512-+oeLIp2C/L33lji5BlwKQW9yD0rGIfkQyQWgfjEiJdYU0+7wN1euA7qFScLtkkGduc0gZ1QsPZb/bSHc+cqOjg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC/Cg79GdVnVfCUUSsHq2wW4JReNImBW2IhWTaA7KXeGgIgKg2jvBxRL5GWDMT+5IEt8vVmeBwBlb8BhQDbrsXXmcc="}]}},"0.1.0":{"name":"react-bootstrap-multiselect","version":"0.1.0","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":"^2.1.1","react":">=0.12.1"},"devDependencies":{"bootstrap":"^3.3.1","gulp":"^3.8.10","gulp-browserify":"^0.5.0","gulp-connect":"^2.2.0","gulp-cssmin":"^0.1.6","gulp-download":"0.0.1","gulp-less":"^1.3.6","gulp-nodemon":"^1.0.4","gulp-react":"^2.0.0","gulp-rename":"^1.2.0","gulp-replace":"^0.5.0","gulp-uglify":"^1.0.1","gulp-wrap":"^0.5.0","jsxhint":"^0.7.0","react-bootstrap":"^0.12.0","reactify":"^0.17.0"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"6914dd457b85ce39c14c467455848c918639752f","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect","_id":"react-bootstrap-multiselect@0.1.0","_shasum":"85181fad4f845932c547eb0ac947f82f07b00a35","_from":".","_npmVersion":"2.1.6","_nodeVersion":"0.10.33","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"85181fad4f845932c547eb0ac947f82f07b00a35","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-0.1.0.tgz","integrity":"sha512-W20X157AhVDdbtzGirLvwCX12OnhVEcurb5AsESSBGOwDfR/xnkRj6ZHieB0/u85LRp6lVwlCBLn434XAslGHQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDlKk7ThYeftHBiQQgLr1r6hKTffkQUr6U15YzqT5yz1gIgITCs14SbmlMYPbOL1tmjlujIGEuHdUUvgZXUeTbYs54="}]}},"0.1.1":{"name":"react-bootstrap-multiselect","version":"0.1.1","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":"^2.1.1","react":">=0.12.1"},"devDependencies":{"bootstrap":"^3.3.1","cheerio":"^0.18.0","gulp":"^3.8.10","gulp-browserify":"^0.5.0","gulp-connect":"^2.2.0","gulp-cssmin":"^0.1.6","gulp-download":"0.0.1","gulp-less":"^1.3.6","gulp-nodemon":"^1.0.4","gulp-react":"^2.0.0","gulp-rename":"^1.2.0","gulp-replace":"^0.5.0","gulp-uglify":"^1.0.1","gulp-wrap":"^0.5.0","jsxhint":"^0.7.0","react-bootstrap":"^0.12.0","reactify":"^0.17.0","request":"^2.48.0"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"fc1957c0e7829b7608baceefb6fb653dbfebc554","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect","_id":"react-bootstrap-multiselect@0.1.1","_shasum":"2574ccafc45cea990e5c48e4240dc7c10ecf87fe","_from":".","_npmVersion":"2.1.6","_nodeVersion":"0.10.33","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"2574ccafc45cea990e5c48e4240dc7c10ecf87fe","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-0.1.1.tgz","integrity":"sha512-33BBV8JcXJB7Dj8Cd09qCSp7CKGqhr9wV4ehlyorOb5bTepjaVRii5pqih0VUTw02q48fYkyL7sJwIXDp3gAXA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH+g+hcfy7iiOq9BwN/OHiPMfMHXkY9Ila6/4kebyDFxAiADABCb8vKMB5YVqjBVcQBSO9XNMdmD8gRWNiplUSgL9g=="}]}},"0.1.2":{"name":"react-bootstrap-multiselect","version":"0.1.2","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":"^2.1.3","react":">=0.12.1"},"devDependencies":{"bootstrap":"^3.3.2","cheerio":"^0.18.0","gulp":"^3.8.11","gulp-browserify":"^0.5.1","gulp-connect":"^2.2.0","gulp-cssmin":"^0.1.6","gulp-download":"0.0.1","gulp-less":"^3.0.0","gulp-nodemon":"^1.0.5","gulp-react":"^2.0.0","gulp-rename":"^1.2.0","gulp-replace":"^0.5.3","gulp-uglify":"^1.1.0","gulp-wrap":"^0.11.0","jsxhint":"^0.11.1","react-bootstrap":"^0.15.1","reactify":"^1.0.0","request":"^2.53.0"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"47ed9f08ef787df0c9d5b54d7c7e4ead8835dad0","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect","_id":"react-bootstrap-multiselect@0.1.2","_shasum":"aba9bedd54dc57bc768210e5f31e7136921fcf5e","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"aba9bedd54dc57bc768210e5f31e7136921fcf5e","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-0.1.2.tgz","integrity":"sha512-Ye5nPVXnYwLGhj2SoKE2Q5XxxY+btE4NjDrGgC/23AhWEtQAB8ZQ1Kmc4atdy1CyLDxvZRBfqF0xRNDaZyU5ZA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIALe5ZVUB78nJ+xF8iaE4gWOzOgnSW8p99R+OXCjfeFjAiEA5wdTRDEFnRGBUfzYCLC3z3wuOgfIAP/UYsi6N4MgUoU="}]}},"0.2.0":{"name":"react-bootstrap-multiselect","version":"0.2.0","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":"^2.1.3","react":">=0.13.0-alpha.1"},"devDependencies":{"bootstrap":"^3.3.4","cheerio":"^0.19.0","gulp":"^3.8.11","gulp-browserify":"^0.5.1","gulp-connect":"^2.2.0","gulp-cssmin":"^0.1.6","gulp-download":"0.0.1","gulp-less":"^3.0.2","gulp-nodemon":"^2.0.2","gulp-react":"^3.0.1","gulp-rename":"^1.2.2","gulp-replace":"^0.5.3","gulp-uglify":"^1.1.0","gulp-wrap":"^0.11.0","jsxhint":"^0.14.0","react-bootstrap":"^0.20.0","reactify":"^1.1.0","request":"^2.54.0"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"991664aadc58b8d6322f37b061a2d0d84f767597","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect","_id":"react-bootstrap-multiselect@0.2.0","_shasum":"8bd56de0319f96091a306758e9a0399b987a0795","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"8bd56de0319f96091a306758e9a0399b987a0795","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-0.2.0.tgz","integrity":"sha512-5Fu/LIO1Kesa5+U5j1wMX74uH4GpNmVbRFf6zxDJ6qpWJTQex8vhzG07E65M5g35bnLrzQ5wcIKpB99sdTZocA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDfujELmsXOkORKqJu040/TjxaN/eFpd5uw4J7fArJUxwIhAILGxZpwq1FAvRscuiu7vr4Fzgfv/aJ6Z36RCCHlkNXC"}]}},"0.2.1":{"name":"react-bootstrap-multiselect","version":"0.2.1","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":"^2.1.4","react":">=0.12 || >=0.13.0-a"},"devDependencies":{"bootstrap":"^3.3.4","cheerio":"^0.19.0","gulp":"^3.8.11","gulp-browserify":"^0.5.1","gulp-connect":"^2.2.0","gulp-cssmin":"^0.1.7","gulp-download":"0.0.1","gulp-less":"^3.0.3","gulp-nodemon":"^2.0.3","gulp-react":"^3.0.1","gulp-rename":"^1.2.2","gulp-replace":"^0.5.3","gulp-uglify":"^1.2.0","gulp-wrap":"^0.11.0","jsxhint":"^0.15.0","react-bootstrap":"^0.22.3","reactify":"^1.1.1","request":"^2.55.0"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"943b7006716c331a20bd3e333e9956faae8b16aa","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect","_id":"react-bootstrap-multiselect@0.2.1","_shasum":"168bf66e62298b2449312a4d2bd04be3e9beb839","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"168bf66e62298b2449312a4d2bd04be3e9beb839","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-0.2.1.tgz","integrity":"sha512-yBKie8VqaEOzIRJh8jg1aZLc2VSShvfJJeYplo1jzb9BAB8WsQPI8W3GJiPPlxTtlps0EvnSXyoFnGtkAyt21A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCuTJcOVZulAillsd4lgAms+KysHgyKulMZj3GpmoLi4wIhAI5O4aRA3NJWm2sBonPoZ2Qr1M/F3xwBSoDVkYyn2SYj"}]}},"0.2.2":{"name":"react-bootstrap-multiselect","version":"0.2.2","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":"^2.1.4","react":">=0.12 || >=0.13.0-a"},"devDependencies":{"bootstrap":"^3.3.4","cheerio":"^0.19.0","gulp":"^3.8.11","gulp-browserify":"^0.5.1","gulp-connect":"^2.2.0","gulp-cssmin":"^0.1.7","gulp-download":"0.0.1","gulp-less":"^3.0.3","gulp-nodemon":"^2.0.3","gulp-react":"^3.0.1","gulp-rename":"^1.2.2","gulp-replace":"^0.5.3","gulp-uglify":"^1.2.0","gulp-wrap":"^0.11.0","jsxhint":"^0.15.0","react-bootstrap":"^0.22.3","reactify":"^1.1.1","request":"^2.55.0"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"76e0201189c79f1be68973291db7e4e6209f9fd4","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect#readme","_id":"react-bootstrap-multiselect@0.2.2","_shasum":"6e038c88883d88563e4d14d6abf7bfa6853aefa7","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"6e038c88883d88563e4d14d6abf7bfa6853aefa7","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-0.2.2.tgz","integrity":"sha512-PTjG851wXJMpz8UV67SdjlKg5JI4U0OWBCSpgGAVvuVmnwOLRSHAg5u0mamqNlWYZ1b81ceeWLn+3pi0sBPztw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAO9Iq6p5lcK6AoJE4wFBNRnIlRywZ+7a4tygT9cR5DYAiEA2RK5r7vXAMxg7cju2mcbxds18x4m1pqqrXrYdzjsTig="}]}},"0.3.0":{"name":"react-bootstrap-multiselect","version":"0.3.0","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":"^2.1.4","react":">=0.13.3"},"devDependencies":{"bootstrap":"^3.3.5","cheerio":"^0.19.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-connect":"^2.2.0","gulp-cssmin":"^0.1.7","gulp-download":"0.0.1","gulp-less":"^3.0.3","gulp-nodemon":"^2.0.4","gulp-react":"^3.0.1","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-uglify":"^1.2.0","gulp-wrap":"^0.11.0","jsxhint":"^0.15.1","react-bootstrap":"^0.24.5","reactify":"^1.1.1","request":"^2.61.0"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"5430eed88f84982c76d1207a81373a4826de176c","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect#readme","_id":"react-bootstrap-multiselect@0.3.0","_shasum":"e1518bb97a8c4e714ad83e1a9745d18de65039ca","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.7","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"e1518bb97a8c4e714ad83e1a9745d18de65039ca","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-0.3.0.tgz","integrity":"sha512-EWp1J/91YgylavhMftlXrMFwOc3uwAUT0pODzqbsoZWvg3NqpMcnAI5RqEPtHw2XsI23ObxdQKiI59me2uhG3A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBed5tuU4KDbo4uz287yATwxTB/qGHgYKXnIEUWufHXkAiAsZ3Ltj12rcfwL4i+CCoguY45YIcE2CyISatRzGYMmTw=="}]}},"0.4.0":{"name":"react-bootstrap-multiselect","version":"0.4.0","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":">=1.11.3","react":">=0.13.3"},"devDependencies":{"bootstrap":"^3.3.5","cheerio":"^0.19.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-connect":"^2.2.0","gulp-cssmin":"^0.1.7","gulp-download":"0.0.1","gulp-less":"^3.0.3","gulp-nodemon":"^2.0.4","gulp-react":"^3.0.1","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-uglify":"^1.2.0","gulp-wrap":"^0.11.0","jsxhint":"^0.15.1","react-bootstrap":"^0.24.5","reactify":"^1.1.1","request":"^2.61.0"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"bf73b0243e7778ccbe5b4f67dcda5eac26f9a953","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect#readme","_id":"react-bootstrap-multiselect@0.4.0","_shasum":"87667c0a00dc156fdcc0c89de0f410e84928449b","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.7","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"87667c0a00dc156fdcc0c89de0f410e84928449b","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-0.4.0.tgz","integrity":"sha512-K/Ebi1TRnCNAcUFQdxM4VJvpr6LoRMaduK4ztyEqL9RrB4wQSZpqoU2EuHTM58G9bq/asQB/Ki8wSQKxQZjqdQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQChjgXf+32jri4h7ZAv3rXvCrdECw4cjtIrnCGZNJn6NAIgTzvcUUFCIK7gjx+7foooj2x6VDHX03OmMxOnHafHBSI="}]}},"0.5.0":{"name":"react-bootstrap-multiselect","version":"0.5.0","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":">=1.11.3","react":">=0.13.3"},"devDependencies":{"bootstrap":"^3.3.5","cheerio":"^0.19.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-connect":"^2.2.0","gulp-cssmin":"^0.1.7","gulp-download":"0.0.1","gulp-less":"^3.0.3","gulp-nodemon":"^2.0.4","gulp-react":"^3.0.1","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-uglify":"^1.4.1","gulp-wrap":"^0.11.0","jsxhint":"^0.15.1","react-bootstrap":"^0.25.1","reactify":"^1.1.1","request":"^2.61.0"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"893332d9048d125b166cd47e59c526cd00722975","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect#readme","_id":"react-bootstrap-multiselect@0.5.0","_shasum":"ee942bfd2a8bfd1262a184e6f1d487696e07e4e4","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.12.7","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"ee942bfd2a8bfd1262a184e6f1d487696e07e4e4","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-0.5.0.tgz","integrity":"sha512-cWsCii1hOQv/GO3WyLG6/fUxjEsyCIKOTHgBPxgqaVmx5f+AwbSlhJsm/KOk9mMAzlrmp6Wtmpg4YlVnVyXCSQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDOQpZcEHpc/0QSAoMnFuKUsqXLvx7jQHwW+CN5yUHfGwIgXOV5QjmtxyNZb6OQpX/84IchAW7oUCCdqdUq4a2ktZ8="}]}},"0.6.0":{"name":"react-bootstrap-multiselect","version":"0.6.0","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":">=1.11.3","react":">=0.13.3"},"devDependencies":{"bootstrap":"^3.3.5","cheerio":"^0.19.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-connect":"^2.2.0","gulp-cssmin":"^0.1.7","gulp-download":"0.0.1","gulp-less":"^3.0.3","gulp-nodemon":"^2.0.4","gulp-react":"^3.0.1","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-uglify":"^1.4.1","gulp-wrap":"^0.11.0","jsxhint":"^0.15.1","react-bootstrap":"^0.25.1","reactify":"^1.1.1","request":"^2.61.0"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"4153ef3a3abad5d9b4fb763b7c7281da295e1840","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect#readme","_id":"react-bootstrap-multiselect@0.6.0","_shasum":"c01736d698207b2a2d4fa490c8ebbd3f7fb1ffba","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.12.7","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"c01736d698207b2a2d4fa490c8ebbd3f7fb1ffba","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-0.6.0.tgz","integrity":"sha512-eCPkCYDgDffJp5+OWxMZ+xVuPgug7Bg/B8lPZ02nOV/p2x8wCQP0yAzPvFZwPq1yS43jnOQvmdXCRaErCZ0DgQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBaPSRiOdkCbS2Yc0APdqAqrev1PRLRBDvIWX70/D2TlAiEAghcqgvh9o0OwpK5tCgVlynU6Pixk9KUgnPWq8PR295o="}]}},"1.0.0":{"name":"react-bootstrap-multiselect","version":"1.0.0","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":">=2.1.x","react":">=0.14.x"},"devDependencies":{"bootstrap":"^3.3.5","cheerio":"^0.19.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-connect":"^2.2.0","gulp-cssmin":"^0.1.7","gulp-download":"0.0.1","gulp-less":"^3.0.3","gulp-nodemon":"^2.0.4","gulp-react":"^3.1.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-uglify":"^1.4.2","gulp-wrap":"^0.11.0","jsxhint":"^0.15.1","react-bootstrap":"^0.27.3","react-dom":"^0.14.2","reactify":"^1.1.1","request":"^2.65.0"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"6bd385ee42144d89973123bbf0414377d30762af","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect#readme","_id":"react-bootstrap-multiselect@1.0.0","_shasum":"3042937d5504602acfcb119712a03e35fbc01f15","_from":".","_npmVersion":"3.4.0","_nodeVersion":"5.0.0","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"3042937d5504602acfcb119712a03e35fbc01f15","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-1.0.0.tgz","integrity":"sha512-2uPHIenwzC96EqERBKKrYmnuDnath9XQuLrWe7/ZTkn4YOe1o0J6ga+rLQnCN1B/Wbhzg0pQe6vwanGA6GigAw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDAf5qULpZqq0099MDv7ZTmVWQwdG/nxehOGdVfIGyrZAiBpFXxll4wySjVCR7zMv1JoagnyvKYo3QJTM3AVMoqIMQ=="}]}},"1.0.1":{"name":"react-bootstrap-multiselect","version":"1.0.1","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":">=2.1.x","react":">=0.14.x"},"devDependencies":{"bootstrap":"^3.3.5","cheerio":"^0.19.0","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-connect":"^2.2.0","gulp-cssmin":"^0.1.7","gulp-download":"0.0.1","gulp-less":"^3.0.3","gulp-nodemon":"^2.0.4","gulp-react":"^3.1.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-uglify":"^1.4.2","gulp-wrap":"^0.11.0","jsxhint":"^0.15.1","react-bootstrap":"^0.27.3","react-dom":"^0.14.2","reactify":"^1.1.1","request":"^2.65.0"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"a3ff617efb85a4392a476b06357a1a19643ee6f4","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect#readme","_id":"react-bootstrap-multiselect@1.0.1","_shasum":"01953d173dc436c6b2894effe6ee68f78e716601","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"01953d173dc436c6b2894effe6ee68f78e716601","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-1.0.1.tgz","integrity":"sha512-bja1qvMPMCuoWvuB7MhMpWWu/UJOkMRH4Q/Wb9MUi6T7q6M1YixGQyZwm6ND0d/65MuQMp/c0jWHXANhe9rvGw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCccVAH01ZRVyoilDMWYuvfS6SUlQdr0g3+2QbRxaQXRgIgUvpq9P5GCCIicWECWLyv+T/7DBURR4rGinKVrZZ2Q+o="}]}},"1.0.2":{"name":"react-bootstrap-multiselect","version":"1.0.2","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":">=2.1.x","react":">=0.14.x"},"devDependencies":{"bootstrap":"^3.3.5","gulp":"^3.9.0","gulp-browserify":"^0.5.1","gulp-connect":"^2.2.0","gulp-cssmin":"^0.1.7","gulp-download":"0.0.1","gulp-less":"^3.0.3","gulp-nodemon":"^2.0.4","gulp-react":"^3.1.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-uglify":"^1.4.2","gulp-wrap":"^0.11.0","jsxhint":"^0.15.1","react-bootstrap":"^0.27.3","react-dom":"^0.14.2","reactify":"^1.1.1"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"b6bfa756d94e7a7d8a522d11e79b281059a25651","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect#readme","_id":"react-bootstrap-multiselect@1.0.2","_shasum":"217396b1ef58b95925099adbfc89de8e8217334e","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"217396b1ef58b95925099adbfc89de8e8217334e","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-1.0.2.tgz","integrity":"sha512-JJo4zb82Tq2kvxAjia2X11BaeQuA/ad93Nz2vUMALOSssXnW9hdg82sIOWfwe+fTSf9GhDIL7g0oWovxhYrbzQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF+4MnUkbF1ZgcuPtk857aO+qqWErI6XnSDsinnYgzS7AiEA/tOENeaXWrOiUImju0xWrb0yFO4R882cMVbyManizjM="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-bootstrap-multiselect-1.0.2.tgz_1457982779472_0.350210138829425"}},"2.0.0":{"name":"react-bootstrap-multiselect","version":"2.0.0","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":">=2.2.0","object-assign":"^4.0.1","react":">=15.0.0"},"devDependencies":{"bootstrap":"^3.3.6","gulp":"^3.9.1","gulp-browserify":"^0.5.1","gulp-connect":"^3.2.2","gulp-cssmin":"^0.1.7","gulp-download":"0.0.1","gulp-less":"^3.0.5","gulp-nodemon":"^2.0.6","gulp-react":"^3.1.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-uglify":"^1.5.3","gulp-wrap":"^0.11.0","jsxhint":"^0.15.1","react-bootstrap":"^0.28.5","react-dom":"^15.0.1","reactify":"^1.1.1"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"84cba9ef045253306a0e4e366e5ad0df0df9d8c4","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect#readme","_id":"react-bootstrap-multiselect@2.0.0","_shasum":"c67ba41075be3daa6bc402ac13e7738691e67946","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"c67ba41075be3daa6bc402ac13e7738691e67946","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-2.0.0.tgz","integrity":"sha512-tbAqFAESBDlUJyLDav97EDJIWjjOaX+Xj0A81MzzJIGhQdbziNQWdB7InDCIZf8imyfePxxIqh8cq9GMgzteaw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICtyCpGrmxYHxPdXgDKr/zAuz/RliRY9slFd+bB2YqHJAiEA8K6opapDt+16QU8MIP6LAGTd7ratTufY5DNZFAN0luM="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-bootstrap-multiselect-2.0.0.tgz_1460487899799_0.5168026981409639"}},"2.1.0":{"name":"react-bootstrap-multiselect","version":"2.1.0","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":">=2.2.0","object-assign":"^4.1.0","react":">=15.0.0"},"devDependencies":{"bootstrap":"^3.3.7","gulp":"^3.9.1","gulp-browserify":"^0.5.1","gulp-connect":"^5.0.0","gulp-cssmin":"^0.1.7","gulp-download":"0.0.1","gulp-less":"^3.1.0","gulp-nodemon":"^2.1.0","gulp-react":"^3.1.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-uglify":"^2.0.0","gulp-wrap":"^0.13.0","jsxhint":"^0.15.1","react-bootstrap":"^0.30.3","react-dom":"^15.3.1","reactify":"^1.1.1"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"7e00f65aa45185bc83f979339c06ea7bd94ededc","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect#readme","_id":"react-bootstrap-multiselect@2.1.0","_shasum":"8436591490608424c0797950e3d3fe0a96300488","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"8436591490608424c0797950e3d3fe0a96300488","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-2.1.0.tgz","integrity":"sha512-YFRqtoCYTRezaVNn7G5UlqgNRmTCKgMhDbkCra7ddxuTun2QVhjLbID6qdZEbMzn4fYmm/g68q8BKvdIA72y0w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDOf8CZmkalw0RLUikOVifCEw3EmnUf+QvMs74WJy4jMwIgL2Yh+4xBI+fDd1PQpkWnGley8MIeNNOkfZIhJgDHwdw="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/react-bootstrap-multiselect-2.1.0.tgz_1472178698614_0.33568949811160564"}},"2.2.0":{"name":"react-bootstrap-multiselect","version":"2.2.0","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"build":"gulp build","changelog":"github_changelog_generator","start":"gulp default","test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":">=2.2.0","object-assign":"^4.1.0","react":">=15.0.0"},"devDependencies":{"bootstrap":"^3.3.7","gulp":"^3.9.1","gulp-browserify":"^0.5.1","gulp-connect":"^5.0.0","gulp-cssmin":"^0.1.7","gulp-download":"0.0.1","gulp-less":"^3.1.0","gulp-nodemon":"^2.1.0","gulp-react":"^3.1.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-uglify":"^2.0.0","gulp-wrap":"^0.13.0","jsxhint":"^0.15.1","react-bootstrap":"^0.30.3","react-dom":"^15.3.1","reactify":"^1.1.1"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"dd44cc4683739eb88a7c22569dadbc1856fcd7e7","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect#readme","_id":"react-bootstrap-multiselect@2.2.0","_shasum":"7db0a986ea0138235260b13159073e73f3f03b3b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"7db0a986ea0138235260b13159073e73f3f03b3b","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-2.2.0.tgz","integrity":"sha512-zMdpSeZewjRMbLLyM2bhFaRjxvbXmgB8imk4YbuVjWX996oAfsbHPfmTps1wwMg1oNEs5Xp6PQLbCxiEGfIowA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCPDnpgii9EkHFk+1ZKrsvANmXxhQagBRQZVzKWFmNbHgIgY35goEtWz8gfCQNRhlH77XM7uUIm9GIQ4Nvg/lVSBxE="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-bootstrap-multiselect-2.2.0.tgz_1473542922757_0.3037142837420106"}},"2.3.0":{"name":"react-bootstrap-multiselect","version":"2.3.0","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./lib/index.js","scripts":{"build":"gulp build","changelog":"github_changelog_generator","start":"gulp default","test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":">=2.2.0","object-assign":"^4.1.0","react":">=15.0.0"},"devDependencies":{"bootstrap":"^3.3.7","gulp":"^3.9.1","gulp-browserify":"^0.5.1","gulp-connect":"^5.0.0","gulp-cssmin":"^0.1.7","gulp-download":"0.0.1","gulp-less":"^3.1.0","gulp-nodemon":"^2.1.0","gulp-react":"^3.1.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-uglify":"^2.0.0","gulp-wrap":"^0.13.0","jsxhint":"^0.15.1","react-bootstrap":"^0.30.3","react-dom":"^15.3.1","reactify":"^1.1.1"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"61ca55fba9e1cf905d182911f4d0694e155bef94","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect#readme","_id":"react-bootstrap-multiselect@2.3.0","_shasum":"1347c21fac061a4a94af0de973d19fe582c04c81","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"dist":{"shasum":"1347c21fac061a4a94af0de973d19fe582c04c81","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-2.3.0.tgz","integrity":"sha512-wYHqG2TSqQ2kqLgBIqCGme/oMHkg7X3xLepbTsOuivxZe21BCPxdT7mkYTX1O+RfkFr3YxAvZAYqYvm6T9xvnw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCJrw7fzvV1CgCbkloqem6MyGa0Wx/lCT1OrGpHLlA/DwIhAM41Aidbz5tMXdEBhCm5h/0O/3UfiT8eifUEGRyqgL0O"}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/react-bootstrap-multiselect-2.3.0.tgz_1476226866211_0.3957001194357872"}},"2.4.0":{"name":"react-bootstrap-multiselect","version":"2.4.0","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"./dist/index.js","scripts":{"build":"gulp build","changelog":"github_changelog_generator","start":"gulp default","test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":">=2.2.0","object-assign":"^4.1.0","react":">=15.0.0"},"devDependencies":{"babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","babelify":"^7.3.0","bootstrap":"^3.3.7","browserify":"^14.3.0","gulp":"^3.9.1","gulp-connect":"^5.0.0","gulp-cssmin":"^0.1.7","gulp-download":"0.0.1","gulp-less":"^3.1.0","gulp-nodemon":"^2.1.0","gulp-react":"^3.1.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-uglify":"^2.0.0","gulp-wrap":"^0.13.0","jsxhint":"^0.15.1","react-bootstrap":"^0.30.3","react-dom":"^15.3.1","reactify":"^1.1.1","vinyl-buffer":"^1.0.0","vinyl-source-stream":"^1.1.0"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"d0f295f6e5176f48cc4a023e330ab9e76b435886","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect#readme","_id":"react-bootstrap-multiselect@2.4.0","_shasum":"020ba2425afbf5c29a9fccf5b71185aacbed268c","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"dist":{"shasum":"020ba2425afbf5c29a9fccf5b71185aacbed268c","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-2.4.0.tgz","integrity":"sha512-k29pV9896kg/ckI68wzMpnO0rgfGEzdiQpTOdtqi2bjqaLaQl/iIlpKnYe+Jst4Bpyy5KUdYZeZYdNJRN6D/FA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDpz63ce76XTKG4VE7pX7Amx2ZDVySW0B4f/MchXlTX/wIgaAGsuht4oeXuoTJVpqQdT8ltIAgV30YAVssWs2c+/kM="}]},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-bootstrap-multiselect-2.4.0.tgz_1492703394422_0.5171963265165687"}},"2.4.1":{"name":"react-bootstrap-multiselect","version":"2.4.1","description":"A multiselect component for react (with bootstrap). This is a react port of: https://github.com/davidstutz/bootstrap-multiselect","main":"dist/index.js","scripts":{"build":"gulp build","changelog":"github_changelog_generator","start":"gulp default","test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"skratchdot"},"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"dependencies":{"jquery":">=2.2.0","object-assign":"^4.1.0","react":">=15.0.0"},"devDependencies":{"babel-preset-es2015":"^6.24.1","babel-preset-react":"^6.24.1","babelify":"^7.3.0","bootstrap":"^3.3.7","browserify":"^14.3.0","gulp":"^3.9.1","gulp-babel":"^6.1.2","gulp-connect":"^5.0.0","gulp-cssmin":"^0.1.7","gulp-download":"0.0.1","gulp-less":"^3.1.0","gulp-nodemon":"^2.1.0","gulp-react":"^3.1.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","gulp-uglify":"^2.0.0","gulp-wrap":"^0.13.0","jsxhint":"^0.15.1","react-bootstrap":"^0.30.3","react-dom":"^15.3.1","reactify":"^1.1.1","vinyl-buffer":"^1.0.0","vinyl-source-stream":"^1.1.0"},"keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"gitHead":"9c2ee2ccf3450c44e2e3c4f7a9edf0096c102b41","homepage":"https://github.com/skratchdot/react-bootstrap-multiselect#readme","_id":"react-bootstrap-multiselect@2.4.1","_shasum":"2b6a1cad44d37aebb4be5ae3cefd9ea55cc9654f","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"skratchdot","email":"git@skratchdot.com"},"dist":{"shasum":"2b6a1cad44d37aebb4be5ae3cefd9ea55cc9654f","tarball":"https://registry.npmjs.org/react-bootstrap-multiselect/-/react-bootstrap-multiselect-2.4.1.tgz","integrity":"sha512-JVoiesQeRMqvM3lioP/+E3EdenlSM8Zd77e83/6D/uNkV4JYkQ2wfiaVTt7nu4JurIRsS375ZHwJWpmyJ03JuA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDQq8ZiaL8aUCUyxVgNjXaag6FWVbAJGlvnzdO2pYNbGgIgFnAg73YpByAfPQ787eDpC/tOMD6x+tolUuYD+J25uUM="}]},"maintainers":[{"name":"skratchdot","email":"git@skratchdot.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-bootstrap-multiselect-2.4.1.tgz_1492745201660_0.23764526844024658"}}},"homepage":"https://github.com/skratchdot/react-bootstrap-multiselect#readme","keywords":["react","react-component","bootstrap","multiselect","select","list","ui","checkbox","radio"],"repository":{"type":"git","url":"git://github.com/skratchdot/react-bootstrap-multiselect.git"},"author":{"name":"skratchdot"},"bugs":{"url":"https://github.com/skratchdot/react-bootstrap-multiselect/issues"},"license":["Apache-2.0","BSD-3-Clause"],"readmeFilename":"README.md","users":{"nkalodimas":true}}