{"maintainers":[{"name":"anonymous","email":"open-source@deuxhuithuit.com"},{"name":"anonymous","email":"open-source@deuxhuithuit.com"}],"keywords":["jquery-plugin","ajax-search","search","quicksearch"],"dist-tags":{"latest":"2.4.0"},"author":{"name":"Deux Huit Huit","url":"https://deuxhuithuit.com/"},"description":"A jQuery plugin for searching through tables, lists, etc quickly","readme":"# jQuery quicksearch plug-in\n\nA [jQuery][jquery_site] based plug-in for filtering large data sets with user input\n\nThis is an improved fork of the original work of riklomas <https://github.com/riklomas/quicksearch>.\nThis plugin is now maintained by [@DeuxHuitHuit][288]\n\n## Project pages\n\n* <https://deuxhuithuit.github.io/quicksearch/>\n* <https://www.npmjs.org/package/jquery.quicksearch/>\n* <https://plugins.jquery.com/jquery.quicksearch/>\n\n## Examples\n\n* <https://deuxhuithuit.github.io/quicksearch/r/examples/>\n* <https://deuxhuithuit.github.io/quicksearch/r/examples/super_table.html>\n\n## Usage\n\nNote that the usage has changed in the latest version of quicksearch, the code is *not* backwards compatible,\nthe form and input are not build by the script any more.\n```js\n$(input_selector).quicksearch(elements_to_search, options);\n```\n\n#### Example on table rows\n```html\n/* Example form */\n<form>\n\t<input type=\"text\" id=\"search\">\n</form>\n\n/* Example table */\n<table>\n\t<tbody>\n\t\t<tr>\n\t\t\t<td>Test cell</td>\n\t\t\t<td>Another test cell</td>\n\t\t</tr>\n\t</tbody>\n</table>\n\n<script src=\"jquery.js\"></script>\n<script src=\"jquery.quicksearch.js\"></script>\n<script>\n\t$('input#search').quicksearch('table tbody tr');\n</script>\n```\n\n#### Example on the `<th>` elements on a table row\n```js\n$('input#search').quicksearch('table tbody tr', {\n\tselector: 'th'\n});\n```\n#### Example of how to use with JS\n```js\nvar qs = $('input#id_search_list').quicksearch('ul#list_example li');\n$('ul#list_example').append('<li>Loaded with Ajax</li>');\nqs.cache();\n```\n#### Example of how to use with Ajax\n```js\nvar qs = $('input#search').quicksearch('table tbody tr');\n$.ajax({\n\t'type': 'GET',\n\t'url': 'index.html',\n\t'success': function (data) {\n\t\t$('table tbody tr').append(data);\n\t\tqs.cache();\n\t}\n});\n```\n\n## Options\n\n* \t**delay**\n\tDelay of trigger in milliseconds\n*\t**selector**\n\tA query selector on sibling elements to test\n*\t**stripeRows**\n\tAn array of class names to go on each row\n*\t**loader**\n\tA query selector to find a loading element\n*\t**caseSensitive**\n\tMaintain original case of searchable content when comparing to query, instead of converting to lowercase. Defaults to false.\n*\t**noResults**\n\tA query selector to show if there's no results for the search\n*\t**bind**\n\tEvent that the trigger is tied to. Defaults to 'keyup search'\n*\t**resetBind**\n\tEvent that the reset event is tied to. Defaults to 'reset'\n*\t**removeDiacritics**\n\tRemove diacritics from the search input. Defaults to false.\n*\t**minValLength**\n\tEstablish a minimum length that the search value must have in order to perform the search. Defaults to 0.\n*\t**onBefore**\n\tFunction to call before trigger is called\n*\t**onAfter**\n\tFunction to call after trigger is called\n*\t**onValTooSmall**\n\tFunction to call when the value does not exceeds the `minValLength` option.\n*\t**onNoResultFound**\n\tFunction to call when no results are found. The normal behavior (show the no result panel) is canceled when you specify this parameter. You get the quicksearch instance in parameter so you can manually call the no result behavior.\n*\t**show**\n\tFunction that will add styles to matched elements\n*\t**hide**\n\tFunction that will add styles to unmatched elements\n*\t**prepareQuery**\n\tFunction that transforms text from input_selector into query used by 'testQuery' function\n*\t**testQuery**\n\tFunction that tells if a given item should be hidden\n\tIt takes 3 arguments:\n\t- query prepared by 'prepareQuery'\n\t- stripped text from 'selector'\n\t- element to be potentially hidden\n\n### Callbacks\nFunctions are always `call`'d or `apply`'d, so except `this` to be the plugin object.\n\nFor example:\n```js\n$('input#search').quicksearch('table tbody tr', {\n\t'delay': 100,\n\t'selector': 'th',\n\t'stripeRows': ['odd', 'even'],\n\t'loader': 'span.loading',\n\t'noResults': 'tr#noresults',\n\t'bind': 'keyup keydown',\n\t'minValLength': 2,\n\t'removeDiacritics': true,\n\t'onBefore': function () {\n\t\tconsole.log('on before');\n\t},\n\t'onAfter': function () {\n\t\tconsole.log('on after');\n\t},\n\t'onValTooSmall': function (val) {\n\t\tconsole.log('value ' + val + ' is too small');\n\t},\n\t'show': function () {\n\t\t$(this).addClass('show');\n\t},\n\t'hide': function () {\n\t\t$(this).removeClass('show');\n\t}\n\t'prepareQuery': function (val) {\n\t\treturn new RegExp(val, \"i\");\n\t},\n\t'testQuery': function (query, txt, _row) {\n\t\treturn query.test(txt);\n\t}\n});\n```\n\n## Help make quicksearch better!\n\nIf you have a bug fix, the best way to help would be to:\n\n* Fork the project by clicking \"Fork this project\" at the top of this page\n* Clone your version of quicksearch from your Github account to your computer\n* Checkout the `dev` branch\n* Fix and commit the bugs, then push your version to your Github account\n* Click \"pull request\" at the top of my Github page\n* Please create the \"Pull Request\" to push in the `branch`\n\nI can't promise to answer every question about quicksearch, \nbut please do [report bugs here][issues].\n\n## License\n\nNow licensed under the MIT License: <http://deuxhuithuit.mit-license.org>\n\n## Credits\n\njQuery quicksearch was made by [Rik Lomas][rik_site] at [Lomalogue][lomalogue_site].\nIt is now maintain by [Deux Huit Huit][288]\n\nThanks to [Seth F.][thelizardreborn] for fixes and [Krzysiek Goj][goj] for the testQuery and prepareQuery option updates\n\n[jquery_site]: http://www.jquery.com\n[rik_site]: http://www.riklomas.co.uk\n[lomalogue_site]: http://www.lomalogue.com\n[issues]: https://github.com/deuxhuithuit/quicksearch/issues\n[thelizardreborn]: https://github.com/thelizardreborn\n[goj]: https://github.com/goj\n[288]: https://deuxhuithuit.com/\n","repository":{"type":"git","url":"git://github.com/DeuxHuitHuit/quicksearch.git"},"users":{"paroczi":true},"bugs":{"url":"https://github.com/DeuxHuitHuit/quicksearch/issues"},"license":"MIT","versions":{"2.0.5":{"name":"jquery.quicksearch","title":"jQuery-QuickSearch","description":"A jQuery plugin for searching through tables, lists, etc quickly","version":"2.0.5","homepage":"http://deuxhuithuit.github.io/quicksearch/","author":"","licenses":[{"type":"MIT","url":"http://deuxhuithuit.mit-license.org/"}],"repository":{"type":"git","url":"git://github.com/DeuxHuitHuit/quicksearch.git"},"bugs":{"url":"https://github.com/DeuxHuitHuit/quicksearch/issues"},"devDependencies":{"grunt":"~0.4.1","grunt-complexity":"~0.1.0","grunt-contrib-uglify":"~0.2.7","grunt-contrib-jshint":"~0.4.3","grunt-contrib-concat":"~0.2.0","grunt-contrib-watch":"~0.4.4","grunt-banner":"~0.2.0","matchdep":"~0.3.0"},"dependencies":{"jquery":">=1.4"},"keywords":["jquery-plugin","ajax-search","search","quicksearch"],"gitHead":"9aaa41a75b96ff17bb5888d0cabdbb7d95add095","_id":"jquery.quicksearch@2.0.5","scripts":{},"_shasum":"2649e2ddb4e12593dd9fb72e841070c000d0af7b","_from":".","_npmVersion":"2.1.6","_nodeVersion":"0.10.25","_npmUser":{"name":"anonymous","email":"open-source@deuxhuithuit.com"},"maintainers":[{"name":"anonymous","email":"open-source@deuxhuithuit.com"}],"dist":{"shasum":"2649e2ddb4e12593dd9fb72e841070c000d0af7b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery.quicksearch/-/jquery.quicksearch-2.0.5.tgz","integrity":"sha512-sZroQm93YLVXrJaey9dQBpWcrYBwJyJIKrDAfxWqFTvocB9mcxu4ux9k2wmNArd0xC5SXpRZ8Owui+FvtGMC+w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAtt6kcqv4FZX7X1ScrzC7AwT48GFkBL6bEj7xH73tTPAiEAq5SYP56fuELrENu/zjTQm/Zb7XZlOps7wpqYadBbX+Y="}]}},"2.1.0":{"name":"jquery.quicksearch","title":"jQuery-QuickSearch","description":"A jQuery plugin for searching through tables, lists, etc quickly","version":"2.1.0","homepage":"https://deuxhuithuit.github.io/quicksearch/","author":"","licenses":[{"type":"MIT","url":"http://deuxhuithuit.mit-license.org/"}],"repository":{"type":"git","url":"git://github.com/DeuxHuitHuit/quicksearch.git"},"bugs":{"url":"https://github.com/DeuxHuitHuit/quicksearch/issues"},"devDependencies":{"grunt":"~0.4.5","grunt-complexity":"~0.3.0","grunt-contrib-uglify":"~0.8.0","grunt-contrib-jshint":"~0.11.0","grunt-contrib-concat":"~0.5.1","grunt-contrib-watch":"~0.6.1","grunt-banner":"~0.3.1","matchdep":"~0.3.0"},"dependencies":{"jquery":">=1.8"},"keywords":["jquery-plugin","ajax-search","search","quicksearch"],"gitHead":"fd7d54432e77b37cafd6f4ff8bcdf99707375fb5","_id":"jquery.quicksearch@2.1.0","scripts":{},"_shasum":"4f27e218e6ee09851bf807e000d0fe8131ec49c1","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"anonymous","email":"open-source@deuxhuithuit.com"},"maintainers":[{"name":"anonymous","email":"open-source@deuxhuithuit.com"},{"name":"anonymous","email":"open-source@deuxhuithuit.com"}],"dist":{"shasum":"4f27e218e6ee09851bf807e000d0fe8131ec49c1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery.quicksearch/-/jquery.quicksearch-2.1.0.tgz","integrity":"sha512-1R48/gJMGlNzy79j8q3v21vWijwV8hHwV6KUA9ZGodaA4O2/Kxp+m/NwIkty9HYM3a4LNr79FbfBMLWCF6xSNw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICWG4+ok5D36t/LueysjIoEfwwUiYUpZA+A6+F87RBUfAiBUkXW8kOtkogxI+injdpYiXrY9z+07VecWTDrgRR15FA=="}]},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/jquery.quicksearch-2.1.0.tgz_1455033290880_0.6147249287459999"}},"2.2.0":{"name":"jquery.quicksearch","title":"jQuery-QuickSearch","description":"A jQuery plugin for searching through tables, lists, etc quickly","version":"2.2.0","homepage":"https://deuxhuithuit.github.io/quicksearch/","author":"","licenses":[{"type":"MIT","url":"http://deuxhuithuit.mit-license.org/"}],"repository":{"type":"git","url":"git://github.com/DeuxHuitHuit/quicksearch.git"},"bugs":{"url":"https://github.com/DeuxHuitHuit/quicksearch/issues"},"devDependencies":{"grunt":"~0.4.5","grunt-complexity":"~0.3.0","grunt-contrib-uglify":"~0.8.0","grunt-contrib-jshint":"~0.11.0","grunt-contrib-concat":"~0.5.1","grunt-contrib-watch":"~0.6.1","grunt-banner":"~0.3.1","matchdep":"~0.3.0"},"dependencies":{"jquery":">=1.8"},"keywords":["jquery-plugin","ajax-search","search","quicksearch"],"gitHead":"c73c88d353525bc01b93bccf154f9e7da503e261","_id":"jquery.quicksearch@2.2.0","scripts":{},"_shasum":"9bbf58cea8ff9f6b883851a8bf34b6340c5fabb8","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"anonymous","email":"open-source@deuxhuithuit.com"},"maintainers":[{"name":"anonymous","email":"open-source@deuxhuithuit.com"},{"name":"anonymous","email":"open-source@deuxhuithuit.com"}],"dist":{"shasum":"9bbf58cea8ff9f6b883851a8bf34b6340c5fabb8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery.quicksearch/-/jquery.quicksearch-2.2.0.tgz","integrity":"sha512-7XFSYP8+J3hfHXjnpL6CK+S3xl8prrgJWe/6vPr5nsvNJ4n2WQjaj7sHXl2Sfm3jCHWZ/qwJRAZDM5CNDR1+9Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDWptijryDBdDTxglNAQLNIlvELFDQDGMJApz+/bsEV9AiEAkclwkVHoyN8cvsi/4cL3BUb4gjydWYfzIMGszs3SGn8="}]},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/jquery.quicksearch-2.2.0.tgz_1455041618141_0.9246476802509278"}},"2.2.1":{"name":"jquery.quicksearch","title":"jQuery-QuickSearch","description":"A jQuery plugin for searching through tables, lists, etc quickly","version":"2.2.1","homepage":"https://deuxhuithuit.github.io/quicksearch/","author":"","licenses":[{"type":"MIT","url":"http://deuxhuithuit.mit-license.org/"}],"repository":{"type":"git","url":"git://github.com/DeuxHuitHuit/quicksearch.git"},"bugs":{"url":"https://github.com/DeuxHuitHuit/quicksearch/issues"},"devDependencies":{"grunt":"~0.4.5","grunt-complexity":"~0.3.0","grunt-contrib-uglify":"~0.8.0","grunt-contrib-jshint":"~0.11.0","grunt-contrib-concat":"~0.5.1","grunt-contrib-watch":"~0.6.1","grunt-banner":"~0.3.1","matchdep":"~0.3.0"},"dependencies":{"jquery":">=1.8"},"keywords":["jquery-plugin","ajax-search","search","quicksearch"],"gitHead":"05089bc3aa95a68eee2f7f484a304be06a8f1303","_id":"jquery.quicksearch@2.2.1","scripts":{},"_shasum":"b42e94454aa1a77f481d717eccc0b5942b5a10d6","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"anonymous","email":"open-source@deuxhuithuit.com"},"dist":{"shasum":"b42e94454aa1a77f481d717eccc0b5942b5a10d6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery.quicksearch/-/jquery.quicksearch-2.2.1.tgz","integrity":"sha512-ri6pCFTAsCQtO9R8FAAcCJaYoYrm2mA5mDZCNBU1oCj1uxQBGtUDdfqDYewpSWjEraGxEefEnMtGu/pyuPwtJw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDPMn+QLHzXdWjUoZX+7fzD6YNecPyVAS4NJAyXt+iHhAIgLhd14k7Nh2jZl0btfpHv+4wwzkocK1z0Z088sBwuTRo="}]},"maintainers":[{"name":"anonymous","email":"open-source@deuxhuithuit.com"},{"name":"anonymous","email":"open-source@deuxhuithuit.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/jquery.quicksearch-2.2.1.tgz_1464118263393_0.4519236464984715"}},"2.3.0":{"name":"jquery.quicksearch","title":"jQuery-QuickSearch","description":"A jQuery plugin for searching through tables, lists, etc quickly","version":"2.3.0","homepage":"https://deuxhuithuit.github.io/quicksearch/","author":"","licenses":[{"type":"MIT","url":"http://deuxhuithuit.mit-license.org/"}],"repository":{"type":"git","url":"git://github.com/DeuxHuitHuit/quicksearch.git"},"bugs":{"url":"https://github.com/DeuxHuitHuit/quicksearch/issues"},"devDependencies":{"grunt":"~0.4.5","grunt-complexity":"~0.3.0","grunt-contrib-uglify":"~0.8.0","grunt-contrib-jshint":"~0.11.0","grunt-contrib-concat":"~0.5.1","grunt-contrib-watch":"~0.6.1","grunt-banner":"~0.3.1","matchdep":"~0.3.0"},"dependencies":{"jquery":">=1.8"},"keywords":["jquery-plugin","ajax-search","search","quicksearch"],"gitHead":"c9cca84430e0d9f92336a67b7fe53fccc0bcda96","_id":"jquery.quicksearch@2.3.0","scripts":{},"_shasum":"c5499a09e4c3276e56a2eb9a63c408322f06c823","_from":".","_npmVersion":"2.13.5","_nodeVersion":"4.4.6","_npmUser":{"name":"anonymous","email":"open-source@deuxhuithuit.com"},"dist":{"shasum":"c5499a09e4c3276e56a2eb9a63c408322f06c823","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery.quicksearch/-/jquery.quicksearch-2.3.0.tgz","integrity":"sha512-QzhQOUycRI/2IeuCp56vRTXRCV4RuRpxnCNSM+QiYNHBYoM/k6g+QlWvAZDTvOpu2aJdwoPbpDP1qpVJaJk7bg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCC9zDWdvmkhNERrjaF+z3ryhJJyzmcbhmUBykap/X+1QIhAJLxotlXPNsMc2cwMPzf+ayakfZAKu0d/UVDdNXGPNvQ"}]},"maintainers":[{"name":"anonymous","email":"open-source@deuxhuithuit.com"},{"name":"anonymous","email":"open-source@deuxhuithuit.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/jquery.quicksearch-2.3.0.tgz_1469631119334_0.7683233143761754"}},"2.3.1":{"name":"jquery.quicksearch","title":"jQuery-QuickSearch","description":"A jQuery plugin for searching through tables, lists, etc quickly","version":"2.3.1","homepage":"https://deuxhuithuit.github.io/quicksearch/","author":{"name":"Deux Huit Huit","url":"https://deuxhuithuit.com/"},"contributors":[{"name":"deuxhuithuit"},{"name":"nitriques"}],"license":"MIT","repository":{"type":"git","url":"git://github.com/DeuxHuitHuit/quicksearch.git"},"bugs":{"url":"https://github.com/DeuxHuitHuit/quicksearch/issues"},"main":"dist/jquery.quicksearch.min.js","scripts":{"build":"npm i && grunt"},"devDependencies":{"grunt":"~1.0.1","grunt-complexity":"~1.0.1","grunt-contrib-uglify":"~2.0.0","grunt-contrib-jshint":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-watch":"~1.0.0","grunt-banner":"~0.6.0","matchdep":"~1.0.1"},"dependencies":{"jquery":">=1.8"},"keywords":["jquery-plugin","ajax-search","search","quicksearch"],"gitHead":"f3fdd0d3849110043981c0b7b157da52f1912a60","_id":"jquery.quicksearch@2.3.1","_shasum":"a67d413eb61a4b2c4992b928151702e7da652920","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.6.0","_npmUser":{"name":"anonymous","email":"open-source@deuxhuithuit.com"},"dist":{"shasum":"a67d413eb61a4b2c4992b928151702e7da652920","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery.quicksearch/-/jquery.quicksearch-2.3.1.tgz","integrity":"sha512-BySMAJH99aY4Oi01U+WI31ZooDmLc1/4SYh9QyCJLp9wV6tgCtKo++mxNC5NbMIYTsBH/XNGz5u7wl2MRHxlMg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC9ETVZSNhJ6KKdM8IH8ardolwei2MUT2cDe8zg03kqSAiAlSf7OvP58hVcMU5LZ4gXKoO1i6HnzXvTidWqyIrCr/A=="}]},"maintainers":[{"name":"anonymous","email":"open-source@deuxhuithuit.com"},{"name":"anonymous","email":"open-source@deuxhuithuit.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/jquery.quicksearch-2.3.1.tgz_1476315682046_0.9870528422761708"}},"2.3.2":{"name":"jquery.quicksearch","title":"jQuery-QuickSearch","description":"A jQuery plugin for searching through tables, lists, etc quickly","version":"2.3.2","homepage":"https://deuxhuithuit.github.io/quicksearch/","author":{"name":"Deux Huit Huit","url":"https://deuxhuithuit.com/"},"contributors":[{"name":"deuxhuithuit"},{"name":"nitriques"}],"license":"MIT","repository":{"type":"git","url":"git://github.com/DeuxHuitHuit/quicksearch.git"},"bugs":{"url":"https://github.com/DeuxHuitHuit/quicksearch/issues"},"main":"dist/jquery.quicksearch.min.js","scripts":{"build":"npm i && grunt"},"devDependencies":{"grunt":"~1.0.1","grunt-complexity":"~1.0.1","grunt-contrib-uglify":"~2.0.0","grunt-contrib-jshint":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-watch":"~1.0.0","grunt-banner":"~0.6.0","matchdep":"~1.0.1"},"dependencies":{"jquery":">=1.8"},"keywords":["jquery-plugin","ajax-search","search","quicksearch"],"gitHead":"2702929201aac2bdf7f5a874174e4d16b0bda058","_id":"jquery.quicksearch@2.3.2","_shasum":"660012a35a4c0d59d551fe0f204cc8b2ebf817e3","_from":".","_npmVersion":"4.2.0","_nodeVersion":"6.9.5","_npmUser":{"name":"anonymous","email":"open-source@deuxhuithuit.com"},"dist":{"shasum":"660012a35a4c0d59d551fe0f204cc8b2ebf817e3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery.quicksearch/-/jquery.quicksearch-2.3.2.tgz","integrity":"sha512-CVCmi94LUZbnZU2D6hdDfAW/dITr5FCL9p31jq7vTrGYEQs8wWk1QMscLrUjRzBZ4xyx2S8GSem+qwkfN3ZXbQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIADcoyq4NdU/6vnqRTGKMuLtaytQi6SmK3vrznBDvK/4AiBOThnhPcMX1eQYVjaFEnXWeWrcbOvnhV0QYkrzYALICg=="}]},"maintainers":[{"name":"anonymous","email":"open-source@deuxhuithuit.com"},{"name":"anonymous","email":"open-source@deuxhuithuit.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/jquery.quicksearch-2.3.2.tgz_1490128743905_0.21982821729034185"}},"2.4.0":{"name":"jquery.quicksearch","title":"jQuery-QuickSearch","description":"A jQuery plugin for searching through tables, lists, etc quickly","version":"2.4.0","homepage":"https://deuxhuithuit.github.io/quicksearch/","author":{"name":"Deux Huit Huit","url":"https://deuxhuithuit.com/"},"contributors":[{"name":"deuxhuithuit"},{"name":"nitriques"}],"license":"MIT","repository":{"type":"git","url":"git://github.com/DeuxHuitHuit/quicksearch.git"},"bugs":{"url":"https://github.com/DeuxHuitHuit/quicksearch/issues"},"main":"dist/jquery.quicksearch.min.js","scripts":{"build":"npm i && grunt"},"devDependencies":{"grunt":"~1.0.1","grunt-complexity":"~1.0.1","grunt-contrib-uglify":"~2.0.0","grunt-contrib-jshint":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-watch":"~1.0.0","grunt-banner":"~0.6.0","matchdep":"~1.0.1"},"dependencies":{"jquery":">=1.8"},"keywords":["jquery-plugin","ajax-search","search","quicksearch"],"gitHead":"cf5d29e930f4261a16c43b585daa77b62e15f707","_id":"jquery.quicksearch@2.4.0","_npmVersion":"5.3.0","_nodeVersion":"6.11.2","_npmUser":{"name":"anonymous","email":"open-source@deuxhuithuit.com"},"dist":{"integrity":"sha512-20FJSCW3kTawO6Jvy/6MtUCURvgUZFqRUOAGTxH/VaPlwLG4kba82sKaM3ghTi1DsmSZrM2BvrwLUwNWmwDXiw==","shasum":"240c9f435e936c63bf8fbba355144ffdddf9ea26","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/jquery.quicksearch/-/jquery.quicksearch-2.4.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDPf9gltYa+CrFTdhX8/nkQ7TMdHfyK5i8nFb/6dnWVSAIhAKymH+X2gehIxh0+KFP0TUQhJ//MHoy1s9XUh9y+Fa5o"}]},"maintainers":[{"name":"anonymous","email":"open-source@deuxhuithuit.com"},{"name":"anonymous","email":"open-source@deuxhuithuit.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jquery.quicksearch-2.4.0.tgz_1502811793027_0.291014886694029"}}},"name":"jquery.quicksearch","time":{"modified":"2022-06-19T05:23:03.249Z","created":"2014-11-14T15:49:58.268Z","2.0.5":"2014-11-14T15:49:58.268Z","2.1.0":"2016-02-09T15:54:53.960Z","2.2.0":"2016-02-09T18:13:41.279Z","2.2.1":"2016-05-24T19:31:04.620Z","2.3.0":"2016-07-27T14:51:59.838Z","2.3.1":"2016-10-12T23:41:24.054Z","2.3.2":"2017-03-21T20:39:05.887Z","2.4.0":"2017-08-15T15:43:13.248Z"},"readmeFilename":"README.md","contributors":[{"name":"deuxhuithuit"},{"name":"nitriques"}],"homepage":"https://deuxhuithuit.github.io/quicksearch/"}