{"maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"keywords":["tags","tagging","component","tag","ui"],"dist-tags":{"latest":"4.36.0"},"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","readme":"<h1 align=\"center\">\n  <a href='https://yaireo.github.io/tagify'><img src=\"/docs/readme-header.svg\" width=\"320\" height=\"160\"></a>\n  <br><br>\n  <a href='https://yaireo.github.io/tagify'>Tagify</a> - <em>tags</em> input component\n</h1>\n\n<p align=\"center\">\n  Transforms an input field or a textarea into a <em>Tags component</em>, in an easy, customizable way,\n  with great performance and small code footprint, exploded with features.\n  <br>\n  <strong>Vanilla</strong> ⚡ <strong>React</strong> ⚡ <strong>Vue</strong> ⚡ <strong>Angular</strong>\n</p>\n\n<h3 align=\"center\">\n  👉 <a href=\"https://yaireo.github.io/tagify\">See Many Examples</a> 👈\n  <br/><br/>\n</h3>\n\n<p align=\"center\">\n  <a href='https://www.npmjs.com/package/@yaireo/tagify'>\n      <img src=\"https://img.shields.io/npm/v/@yaireo/tagify.svg\" />\n  </a>\n  <a href='https://simple.wikipedia.org/wiki/MIT_License'>\n      <img src=\"https://img.shields.io/badge/license-MIT-lightgrey\" />\n  </a>\n  <img src=\"https://img.shields.io/bundlephobia/minzip/@yaireo/tagify\" />\n  <img src=\"https://img.shields.io/npm/dw/@yaireo/tagify\" />\n</p>\n\n<p align=\"center\">\n    <a href=\"https://yaireo.github.io/tagify/#section-mix\">\n        <img src=\"/docs/mix3.gif?sanitize=true\" />\n    </a>\n   <a href=\"https://yaireo.github.io/tagify/#users-list\">\n      <img src=\"/docs/demo2.apng?sanitize=true\" />\n    </a>\n</p>\n\n## Table of Contents\n\n<!--ts-->\n- [Table of Contents](#table-of-contents)\n- [Installation](#installation)\n  - [Option 1 - import from CDN:](#option-1---import-from-cdn)\n  - [Option 2 - import as a *Node module*:](#option-2---import-as-a-node-module)\n- [Basic Usage Examples](#basic-usage-examples)\n  - [Debugging](#debugging)\n- [Features](#features)\n- [Building the project](#building-the-project)\n  - [Output files:](#output-files)\n- [Adding tags dynamically](#adding-tags-dynamically)\n- [Output value](#output-value)\n  - [Modify original input value format](#modify-original-input-value-format)\n- [Ajax whitelist](#ajax-whitelist)\n- [Persisted data](#persisted-data)\n- [Edit tags](#edit-tags)\n- [Validations](#validations)\n- [Drag \\& Sort](#drag--sort)\n  - [Integration example:](#integration-example)\n- [DOM Templates](#dom-templates)\n  - [Example of overriding the `tag` template:](#example-of-overriding-the-tag-template)\n- [Suggestions list](#suggestions-list)\n  - [Example for a suggestion item alias](#example-for-a-suggestion-item-alias)\n  - [Example whitelist:](#example-whitelist)\n- [Mixed-Content](#mixed-content)\n- [Single-Value](#single-value)\n- [React](#react)\n  - [Update regarding `onChange` prop:](#update-regarding-onchange-prop)\n    - [Updating the component's state](#updating-the-components-state)\n- [Vue](#vue)\n- [jQuery version](#jquery-version)\n    - [`jQuery.tagify.js`](#jquerytagifyjs)\n- [HTML input \\& textarea attributes](#html-input--textarea-attributes)\n- [Caveats](#caveats)\n- [FAQ](#faq)\n- [CSS Variables](#css-variables)\n  - [Suggestions Dropdown CSS variables](#suggestions-dropdown-css-variables)\n  - [Full list of Tagify's SCSS variables](#full-list-of-tagifys-scss-variables)\n- [Methods](#methods)\n- [Events](#events)\n- [Hooks](#hooks)\n- [Settings](#settings)\n<!--te-->\n\n## Installation\n\n### Option 1 - import from CDN:\n\nPlace these lines before any other code which is (or will be) using *Tagify* ([Example here](https://jsbin.com/jekuqap/edit?html))\n```html\n<script src=\"https://cdn.jsdelivr.net/npm/@yaireo/tagify\"></script>\n<script src=\"https://cdn.jsdelivr.net/npm/@yaireo/tagify/dist/tagify.polyfills.min.js\"></script>\n<link href=\"https://cdn.jsdelivr.net/npm/@yaireo/tagify/dist/tagify.css\" rel=\"stylesheet\" type=\"text/css\" />\n```\n\n`Tagify` will then be available globally.\nTo load specific version use `@` - for example: `unpkg.com/@yaireo/tagify@3.1.0`\n\n### Option 2 - import as a *Node module*:\n```sh\nnpm i @yaireo/tagify --save\n```\n\n## Basic Usage Examples\n\n- Many demos with code examples can be [seen here](https://yaireo.github.io/tagify/)\n- [CodeSandbox live demo](https://codesandbox.io/s/simple-tagify-setup-6pfi2)\n\n\n\n```js\nimport Tagify from '@yaireo/tagify'\n\nvar inputElem = document.querySelector('input') // the 'input' element which will be transformed into a Tagify component\nvar tagify = new Tagify(inputElem, {\n  // A list of possible tags. This setting is optional if you want to allow\n  // any possible tag to be added without suggesting any to the user.\n  whitelist: ['foo', 'bar', 'and baz', 0, 1, 2]\n})\n```\n\nThe above example shows the most basic `whitelist` array setting possible, with a mix\nof *Strings* and *Numbers* but the array also support Objects which has a must-have property of `value`:\n\n```js\nwhitelist: [{value: 'foo', id: '123', email: 'foo@whatever.com'}, ...]\n```\n\nThe `value` property is what will be used when actually defining the `value` property of the original input element (`inputElem` in the example above) which was transformed\ninto a *Tagify* component, and so when the form data is sent to the server, it will contain all the values (which are the selected tags in the component).\n\nFor selected tags to show a different text than what is defined in `value` for a whitelist item, see the `tagTextProp` [setting](#settings)\n\n⚠️ Important:\nDon't forget to **include `tagify.css`** file in your project.\nCSS location: `@yaireo/tagify/dist/tagify.css`\nSCSS location: `@yaireo/tagify/src/tagify.scss`\n[See SCSS usecase & example](https://github.com/yairEO/tagify/pull/282)\n\n### Debugging\nThere are several places in the source code which emits `console.warn` logs to help identify issues.\n<del>Those will only work if `Tagify.logger.enabled` flag is set to `true`</del>.\nTo disable the default logging, set the following global variable:\n\n\n```js\nwindow.TAGIFY_DEBUG = false\n\nvar tagify = new Tagify(...)\n```\n\n\n## Features\n* Can be applied to input & textarea elements\n* Supports [mix content](#mixed-content) (text and tags together)\n* Supports [single-value](#single-value) mode (like `<select>`)\n* Supports whitelist/blacklist\n* Customizable HTML templates for the different areas of the component (wrapper, tags, dropdown, dropdown item, dropdown header, dropdown footer)\n* Shows suggestions list (flexible settings & styling) at *full (component) width* or *next to* the typed text (caret)\n* Allows setting suggestions' [aliases](#example-for-a-suggestion-item-alias) for easier fuzzy-searching\n* Auto-suggest input as-you-type with the ability to auto-complete\n* Can paste in multiple values: `tag 1, tag 2, tag 3` or even newline-separated tags\n* Tags can be created by Regex delimiter or by pressing the \"Enter\" key / focusing of the input\n* Validate tags by Regex *pattern* or by function\n* Tags may be [editable](#edit-tags) (double-click)\n* <del>ARIA accessibility support</del>(Component too generic for any meaningful ARIA)\n* Supports read-only mode to the whole component or per-tag\n* Each tag can have any properties desired (class, data-whatever, readonly...)\n* Automatically disallow duplicate tags (via \"settings\" object)\n* Has built-in CSS loader, if needed (Ex. <em>AJAX</em> whitelist pulling)\n* Tags can be trimmed via `hellip` by giving `max-width` to the `tag` element in your `CSS`\n* RTL alignment ([See demo](https://yaireo.github.io/tagify/#section-rtl))\n* <del>Internet Explorer - A polyfill script should be used: `tagify.polyfills.min.js` (in `/dist`)</del> ***(IE support has been dropped)***\n* Many useful custom [events](#events)\n* Original input/textarea element values kept in sync with Tagify\n\n## Building the project\nSimply run `gulp` in your terminal, from the project's path ([Gulp](https://gulpjs.com) should be installed first).\n\nSource files are this path: `/src/`\n\nOutput files, which are automatically generated using Gulp, are in: `/dist/`\n\n### Output files:\n\nFilename                             | Info\n------------------------------------ | -----------------------------------------------------------\n`tagify.esm.js`                      | ESM version. [see jsbin demo](https://jsbin.com/sulijap/edit?html,output)\n`tagify.js`                          | *minified* UMD version, including its sourcemaps. This is the **main** file the package exports.\n`tagify.polyfills.min.js`            | Used for old Internet Explorer browser support\n`react.tagify.js`                    | Wrapper-only for React. [Read more](#react)\n<del>`jQuery.tagify.min.js`</del>    | jQuery wrapper - same as `tagify.js`. Might be removed in the future. **(Deprecated as of APR 24')**\n`tagify.css`                         |\n\n\n## Adding tags dynamically\n```javascript\nvar tagify = new Tagify(...);\n\ntagify.addTags([\"banana\", \"orange\", \"apple\"])\n\n// or add tags with pre-defined properties\n\ntagify.addTags([{value:\"banana\", color:\"yellow\"}, {value:\"apple\", color:\"red\"}, {value:\"watermelon\", color:\"green\"}])\n```\n\n## Output value\nThere are two possible ways to get the value of the tags:\n\n1. Access the tagify's instance's `value` prop: `tagify.value` (Array of tags)\n2. Access the *original* input's value: `inputElm.value` (Stringified Array of tags)\n\nThe most common way is to simply listen to the `change` event on the *original input*\n\n```javascript\nvar inputElm = document.querySelector('input'),\n    tagify = new Tagify (inputElm);\n\ninputElm.addEventListener('change', onChange)\n\nfunction onChange(e){\n  // outputs a String\n  console.log(e.target.value)\n}\n\n```\n\n### [Modify original input value format](https://jsbin.com/paxijaj/edit?html,js,output)\n\nDefault format is a JSON string:<br>\n`'[{\"value\":\"cat\"}, {\"value\":\"dog\"}]'`\n\nI **recommend** keeping this because some situations might have values such as addresses (tags contain commas):<br>\n`'[{\"value\":\"Apt. 2A, Jacksonville, FL 39404\"}, {\"value\":\"Forrest Ray, 191-103 Integer Rd., Corona New Mexico\"}]'`\n\nAnother example for complex tags state might be disabled tags, or ones with custom identifier *class*:<br>\n*(tags can be clicked, so developers can choose to use this to disable/enable tags)*<br>\n`'[{\"value\":\"cat\", \"disabled\":true}, {\"value\":\"dog\"}, {\"value\":\"bird\", \"class\":\"color-green\"}]'`\n\nTo change the format, assuming your tags have no commas and are fairly simple:\n\n```js\nvar tagify = new Tagify(inputElm, {\n  originalInputValueFormat: valuesArr => valuesArr.map(item => item.value).join(',')\n})\n```\n\n**Output:**<br>\n`\"cat,dog\"`\n\n\n## Ajax whitelist\nDynamically-loaded suggestions list (*whitelist*) from the server (as the user types) is a frequent need to many.\n\nTagify comes with its own loading animation, which is a very lightweight CSS-only code, and the <em>loading</em>\nstate is controlled by the method `tagify.loading` which accepts `true` or `false` as arguments.\n\nBelow is a basic example using the `fetch` API. I advise aborting the last request on any input before starting a new request.\n\n<details>\n  <summary>Example:</summary>\n\n```javascript\nvar input = document.querySelector('input'),\n    tagify = new Tagify(input, {whitelist:[]}),\n    controller; // for aborting the call\n\n// listen to any keystrokes which modify tagify's input\ntagify.on('input', onInput)\n\nfunction onInput( e ){\n  var value = e.detail.value\n  tagify.whitelist = null // reset the whitelist\n\n  // https://developer.mozilla.org/en-US/docs/Web/API/AbortController/abort\n  controller && controller.abort()\n  controller = new AbortController()\n\n  // show loading animation.\n  tagify.loading(true)\n\n  fetch('http://get_suggestions.com?value=' + value, {signal:controller.signal})\n    .then(RES => RES.json())\n    .then(function(newWhitelist){\n      tagify.whitelist = newWhitelist // update whitelist Array in-place\n      tagify.loading(false).dropdown.show(value) // render the suggestions dropdown\n    })\n}\n```\n</details>\n\n## Persisted data\n\nSometimes the whitelist might be loaded asynchronously, and so any pre-filled value in the original input field\nwill be removed if the `enforceWhitelist` is set to `true`.\n\nTagify can automatically restore the last used `whitelist` by setting a ***unique id*** to the Tagify instance,\nby using the *localstorage* to persist the `whitelist` & `value` data:\n\n```js\nvar input = document.querySelector('input'),\n    tagify = new Tagify(input, {\n      id: 'test1',  // must be unique (per-tagify instance)\n      enforceWhitelist: true,\n    }),\n```\n\n## Edit tags\nTags that aren't `read-only` can be edited by double-clicking them (by default)\nor by changing the `editTags` *setting* to `1`, making tags editable by single-clicking them.\n\nThe value is saved on `blur` or by pressing `enter` key. Pressing `Escape` will revert the change trigger `blur`.\n<kbd>ctrl</kbd><kbd>z</kbd> will revert the change if an edited tag was marked as not valid (perhaps duplicate or blacklisted)\n\nTo prevent *all* tags from being allowed to be editable, set the `editTags` setting to `false` (or `null`).<br>\nTo do the same but for specific tag(s), set those tags' data with `editable` property set to `false`:\n\n```html\n<input value='[{\"value\":\"foo\", \"editable\":false}, {\"value\":\"bar\"}]'>\n```\n\n\n## Validations\nFor \"regular\" tags (not *mix-mode* or *select-mode*) the easiest way is to use the `pattern` setting and use a Regex, or\napply the `pattern` attribute directly on the `input` which will be \"transformed\" into a *Tagify* component (for vanilla code where the `input` tag is fully accessible to developers).\n\nIf the `pattern` setting does not meet your needs, use the [`validate` setting](#settings), which receives a *tag data object* as an argument and should return `true` if validation is passing, or `false`/`string` of not.\nA *string* may be returned as the reason of the validation failure so it would be printed as the `title` attribute of the invalid tag.\n\n[Here's an example](https://jsbin.com/rojixul/edit?js,output) for async validation for an added tag. The idea is to listen to `\"add\"` event,\nand when it fires, first set the tag to \"loading\" state, run an async call, and then set the *loading* state (of the tag) back to `false`.\nIf the custom async validation failed, call the `replaceTag` Tagify method and set the `__isValid` tag data property to the error string which will\nbe shown when hovering the tag.\n\n\nNote - there is a setting to keep invalid tags ([`keepInvalidTags`](#settings))  and if it's set to `true`, the user can see the reason for the invalidation by\nhovering the tag and see the browser's native tooltip via the `title` attribute:\n\n```js\n{\n  empty      : \"empty\",\n  exceed     : \"number of tags exceeded\",\n  pattern    : \"pattern mismatch\",\n  duplicate  : \"already exists\",\n  notAllowed : \"not allowed\"\n}\n```\n\nThe texts for those (invalid tags) *titles* can be customized from the settings:\n\n```js\nnew Tagify(inputElement, {\n  texts: {\n    duplicate: \"Duplicates are not allowed\"\n  }\n})\n```\n\nOr by directly manipulating the *Tagify* function *prototype*:\n\n```js\nTagify.prototype.TEXTS = {...Tagify.prototype.TEXTS, {duplicate: \"Duplicates are not allowed\"}}\n```\n\n## Drag & Sort\n\nTo be able to sort tags by dragging, a 3rd-party script is needed.\n\nI have made a very simple *drag & drop* (~`11kb` *unminified*) script which uses [HTML5 native API](https://developer.mozilla.org/en-US/docs/Web/API/HTML_Drag_and_Drop_API) and\nit is available to download via [NPM](https://www.npmjs.com/package/@yaireo/dragsort) or [Github](https://github.com/yairEO/dragsort)\nbut any other *drag & drop* script may work. I could not find on the whole internet a decent lightweight script.\n\n### [Integration example](https://codepen.io/vsync/pen/jOqYOVJ):\n\n```js\nvar tagify = new Tagify(inputElement)\n\n// bind \"DragSort\" to Tagify's main element and tell\n// it that all the items with the below \"selector\" are \"draggable\"\nvar dragsort = new DragSort(tagify.DOM.scope, {\n    selector: '.'+tagify.settings.classNames.tag,\n    callbacks: {\n        dragEnd: onDragEnd\n    }\n})\n\n// must update Tagify's value according to the re-ordered nodes in the DOM\nfunction onDragEnd(elm){\n    tagify.updateValueByDOMTags()\n}\n```\n\n\n## DOM Templates\nIt's possible to control the templates for some of the HTML elements Tagify is using by\nmodifying the `settings.templates` Object with your own custom functions which **must return** an *HTML string*.\n\nAvailable templates are: `wrapper`, `input`, `tag`, `dropdown`, `dropdownItem`, `dropdownContent`, `dropdownHeader`, `dropdownFooter` and the optional `dropdownItemNoMatch`\nwhich is a special template for rendering a suggestion item (in the dropdown list) only if there were no matches found for the typed input, for example:\n\n```js\n// ...more tagify settings...\ntemplates: {\n  dropdownItemNoMatch: data =>\n    `<div class='${tagify.settings.classNames.dropdownItem}' value=\"noMatch\" tabindex=\"0\" role=\"option\">\n        No suggestion found for: <strong>${data.value}</strong>\n    </div>`\n}\n```\n\n[View templates](https://github.com/yairEO/tagify/blob/master/src/parts/templates.js)\n\n### Example of overriding the `tag` template:\n\nEach template function is automatically bound with `this` pointing to the current *Tagify* instance.\nIt is imperative to preserve the class names and also the `this.getAttributes(tagData)` for proper functionality.\n\n```js\nnew Tagify(inputElem, {\n  templates: {\n    tag(tagData, tagify){\n      return `<tag title=\"${(tagData.title || tagData.value)}\"\n              contenteditable='false'\n              spellcheck='false'\n              tabIndex=\"${this.settings.a11y.focusableTags ? 0 : -1}\"\n              class=\"${this.settings.classNames.tag} ${tagData.class ? tagData.class : \"\"}\"\n              ${this.getAttributes(tagData)}>\n      <x title='' class=\"${this.settings.classNames.tagX}\" role='button' aria-label='remove tag'></x>\n      <div>\n          <span class=\"${this.settings.classNames.tagText}\">${tagData[this.settings.tagTextProp] || tagData.value}</span>\n      </div>\n    </tag>`,\n\n    dropdownFooter(suggestions){\n      var hasMore = suggestions.length - this.settings.dropdown.maxItems;\n\n      return hasMore > 0\n        ? `<footer data-selector='tagify-suggestions-footer' class=\"${this.settings.classNames.dropdownFooter}\">\n            ${hasMore} more items. Refine your search.\n          </footer>`\n        : '';\n    }\n  }\n})\n```\n\n## Suggestions list\n\n<p align=\"center\">\n  <img src=\"/docs/suggestions-list.apng\" alt='suggestions list dropdown'/>\n</p>\n\nThe suggestions list is a *whitelist Array* of *Strings* or *Objects* which was set in the [settings](#settings) Object when the Tagify instance was created, and can be set later directly on the instance: `tagifyInstance.whitelist = [\"tag1\", \"tag2\", ...]`.\n\nThe suggestions dropdown will be appended to the document's `<body>` element and will be rendered by default in a position below (bottom of) the Tagify element.\nUsing the keyboard arrows up/down will highlight an option from the list, and hitting the Enter key to select.\n\nIt is possible to tweak the list dropdown via 2 settings:\n\n - `enabled` - this is a numeral value that tells Tagify when to show the suggestions dropdown, when a minimum of N characters were typed.\n - `maxItems` - Limits the number of items the suggestions list will render\n\n```javascript\nvar input = document.querySelector('input'),\n    tagify = new Tagify(input, {\n        whitelist : ['aaa', 'aaab', 'aaabb', 'aaabc', 'aaabd', 'aaabe', 'aaac', 'aaacc'],\n        dropdown : {\n            classname     : \"color-blue\",\n            enabled       : 0,              // show the dropdown immediately on focus\n            maxItems      : 5,\n            position      : \"text\",         // place the dropdown near the typed text\n            closeOnSelect : false,          // keep the dropdown open after selecting a suggestion\n            highlightFirst: true\n        }\n    });\n```\n\n<p align=\"center\"><b>Will render</b></p>\n\n```html\n<div class=\"tagify__dropdown tagify__dropdown--text\" style=\"left:993.5px; top:106.375px; width:616px;\">\n    <div class=\"tagify__dropdown__wrapper\">\n      <div class=\"tagify__dropdown__item tagify__dropdown__item--active\" value=\"aaab\">aaab</div>\n      <div class=\"tagify__dropdown__item\" value=\"aaabb\">aaabb</div>\n      <div class=\"tagify__dropdown__item\" value=\"aaabc\">aaabc</div>\n      <div class=\"tagify__dropdown__item\" value=\"aaabd\">aaabd</div>\n      <div class=\"tagify__dropdown__item\" value=\"aaabe\">aaabe</div>\n    </div>\n</div>\n```\n\nBy default searching the suggestions is using [fuzzy-search](https://en.wikipedia.org/wiki/Approximate_string_matching) (see [settings](#settings)).\n\nIf you wish to assign *alias* to items (in your suggestion list), add the `searchBy` property to *whitelist* items you wish\nto have an *alias* for.\n\nIn the below example, typing a part of a string which is included in the `searchBy` property, for example *`land midd\"`* -\nthe suggested item which matches the value \"Israel\" will be rendered in the suggestions (dropdown) list.\n\n### [Example](https://yaireo.github.io/tagify/#section-extra-properties) for a suggestion item alias\n\n```javascript\nwhitelist = [\n    ...\n    { value:'Israel', code:'IL', searchBy:'holy land, desert, middle east' },\n    ...\n]\n```\n\nAnother handy setting is `dropdown.searchKeys` which, like the above `dropdown.searchBy` setting, allows\nexpanding the search of any typed terms to more than the `value` property of the whitelist items (if items are a *Collection*).\n\n### Example whitelist:\n\n```javascript\n[\n  {\n    value    : 123456,\n    nickname : \"foo\",\n    email    : \"foo@mail.com\"\n  },\n  {\n    value    : 987654,\n    nickname : \"bar\",\n    email    : \"bar@mail.com\"\n  },\n  ...more..\n]\n```\n\nModified `searchKeys` setting to also search in other keys:\n```javascript\n{\n  dropdown: {\n    searchKeys: [\"nickname\", \"email\"] //  fuzzy-search matching for those whitelist items' properties\n  }\n}\n```\n\n## Mixed-Content\n\n[See demo here](https://yaireo.github.io/tagify/#section-mix)\n\nThis feature must be toggled using these [settings](#settings):\n\n```js\n{\n  //  mixTagsInterpolator: [\"{{\", \"}}\"],  // optional: interpolation before & after string\n  mode: 'mix',    // <--  Enable mixed-content\n  pattern: /@|#/  // <--  Text starting with @ or # (if single, String can be used here instead of Regex)\n}\n```\n\nWhen mixing text with tags, the original textarea (or input) element will have a value as follows:\n\n    [[cartman]]⁠ and [[kyle]]⁠ do not know [[Homer simpson]]⁠\n\nIf the initial value of the textarea or input is formatted as the above example, Tagify will try to\nautomatically convert everything between `[[` & `]]` to a tag, if tag exists in the *whitelist*, so make\nsure when the Tagify instance is initialized, that it has tags with the correct `value` property that match\nthe same values that appear between `[[` & `]]`.\n\nApplying the setting `dropdown.position:\"text\"` is encouraged for mixed-content tags, because the suggestions list\nlooks weird when there is already a lot of content on multiple lines.\n\nIf a tag does not exist in the *whitelist*, it may be created by the user and all you should do is listen to the `add` event and update your local/remote state.\n\n## Single-Value\n\nSimilar to native `<Select>` element, but allows typing text as value.\n\n## React\n\nSee [**live demo**](https://codesandbox.io/s/tagify-react-wrapper-oempc) for React integration examples.\n⚠️ Tagify is **not** a [controlled component](https://github.com/yairEO/tagify/issues/489#issuecomment-629316093).\n\nA none-minified and raw source-code Tagify React component is exported from [`react.tagify.jsx`](https://github.com/yairEO/tagify/blob/master/src/react.tagify.jsx) and you can import it as seen in the below code example.\nThis React port will only work if your bundler can handle raw source-code in ES2015+ which is better for tree-shaking.\n\n---\n### Update regarding `onChange` prop:\n\nI have changed how the `onChange` works internally within the Wrapper of Tagify\nso as of *March 30, 2021* the `e` argument will include a `detail` parameter with the value as string.\nThere is no more `e.target`, and to access the original DOM input element, do this: `e.detail.tagify.DOM.originalInput`.\n\n----\n\n> Note: You will need to import Tagify's CSS also, either by JavaScript or by SCSS `@import` (which is preferable)\n> Also note that you will need to use [*dart-sass*](https://www.npmjs.com/package/sass) and not *node-sass* in order to compile the file.\n\n```javascript\nimport { useCallback, useRef } from 'react'\nimport Tags from '@yaireo/tagify/react' // React-wrapper file\nimport '@yaireo/tagify/dist/tagify.css' // Tagify CSS\n\nconst App = () => {\n    // on tag add/edit/remove\n    const onChange = useCallback((e) => {\n        console.log(\"CHANGED:\"\n            , e.detail.tagify.value // Array where each tag includes tagify's (needed) extra properties\n            , e.detail.tagify.getCleanValue() // Same as above, without the extra properties\n            , e.detail.value // a string representing the tags\n        )\n    }, [])\n\n    return (\n        <Tags\n            whitelist={['item 1', 'another item', 'item 3']}\n            placeholder='Add some tags'\n            settings={{\n                blacklist: [\"xxx\"],\n                maxTags: 4,\n                dropdown: {\n                    enabled: 0 // always show suggestions dropdown\n                }\n            }}\n            defaultValue=\"a,b,c\" // initial value\n            onChange={onChange}\n        />\n    )\n}\n```\n\nTo gain full access to Tagify's (instance) inner methods, A custom `ref` can be used:\n\n```jsx\nimport Tags, {MixedTags} from \"@yaireo/tagify/react\";\n\n...\nconst tagifyRef = useRef()\n...\n<Tags tagifyRef={tagifyRef} ... />\n\n// or mix-mode\n<MixedTags\n  settings={...}\n  onChange={...}\n  defaultValue={`This is a textarea which mixes text with [[{\"value\":\"tags\"}]].`}\n/>\n```\n\n`<MixedTags>` component is a shorthand for `<Tags InputMode=\"textarea\">`\n\n#### Updating the component's state\n\nThe `settings` prop is **only used once** in the initialization process, please do not update it afterwards.\n\n---\n<details>\n  <summary>📖 List of (React) props for the <code>&lt;Tags/&gt;</code> component</summary>\n\n\nProp                    | Type                      | Updatable | Info\n----------------------- | ------------------------- |:---------:| -----------------------------------------------------------\nsettings                | <sub>Object</sub>         |           | See [*settings* section](#settings)\nname                    | <sub>String</sub>         | ✔         | `<input>`'s element `name` attribute\nvalue                   | <sub>String/Array</sub>   | ✔         | Initial value.\ndefaultValue            | <sub>String/Array</sub>   |           | Same as `value` prop\nplaceholder             | <sub>String</sub>         | ✔         | placeholder text for the component\nreadOnly                | <sub>Boolean</sub>        | ✔         | Toggles `readonly` state. With capital `O`.\ntagifyRef               | <sub>Object</sub>         |           | `useRef` hook refference for the component inner instance of vanilla *Tagify* (for methods access)\nshowDropdown            | <sub>Boolean/String</sub> | ✔         | if `true` shows the suggestions dropdown. if assigned a String, show the dropdown pre-filtered.\nloading                 | <sub>Boolean</sub>        | ✔         | Toggles `loading` state for the whole component\nwhitelist               | <sub>Array</sub>          | ✔         | Sets the `whitelist` which is the basis for the suggestions dropdown & autocomplete\nclassName               | <sub>String</sub>         |           | Component's optional class name to be added\nInputMode               | <sub>String</sub>         |           | `\"textarea\"` will create a `<textarea>` (hidden) element instead of the default `<input>` and automatically make Tagify act as [*\"mix mode\"*](#mixed-content)\nautoFocus               | <sub>Boolean</sub>        |           | Should the component have focus on mount. Must be unique, per-page.\nchildren                | <sub>String/Array</sub>   |           | `value`/`defaultValue` props are prefered\nonChange                | <sub>Function</sub>       |           | See [*events* section](#events)\nonInput                 | <sub>Function</sub>       |           | See [*events* section](#events)\nonAdd                   | <sub>Function</sub>       |           | See [*events* section](#events)\nonRemove                | <sub>Function</sub>       |           | See [*events* section](#events)\nonInvalid               | <sub>Function</sub>       |           | See [*events* section](#events)\nonClick                 | <sub>Function</sub>       |           | See [*events* section](#events)\nonKeydown               | <sub>Function</sub>       |           | See [*events* section](#events)\nonFocus                 | <sub>Function</sub>       |           | See [*events* section](#events)\nonBlur                  | <sub>Function</sub>       |           | See [*events* section](#events)\nonEditInput             | <sub>Function</sub>       |           | See [*events* section](#events)\nonEditBeforeUpdate      | <sub>Function</sub>       |           | See [*events* section](#events)\nonEditUpdated           | <sub>Function</sub>       |           | See [*events* section](#events)\nonEditStart             | <sub>Function</sub>       |           | See [*events* section](#events)\nonEditKeydown           | <sub>Function</sub>       |           | See [*events* section](#events)\nonDropdownShow          | <sub>Function</sub>       |           | See [*events* section](#events)\nonDropdownHide          | <sub>Function</sub>       |           | See [*events* section](#events)\nonDropdownSelect        | <sub>Function</sub>       |           | See [*events* section](#events)\nonDropdownScroll        | <sub>Function</sub>       |           | See [*events* section](#events)\nonDropdownNoMatch       | <sub>Function</sub>       |           | See [*events* section](#events)\nonDropdownUpdated       | <sub>Function</sub>       |           | See [*events* section](#events)\n</details>\n\n---\n\n## Vue\n\nI don't know *Vue* at all and this thin wrapper was built by a friend who knows.\nTo import the [wrapper file](https://github.com/yairEO/tagify/blob/master/dist/tagify.vue), use the import path `@yaireo/tagify/vue`\n\n\n## jQuery version\n\nThis variant of Tagify code has been **deprecated** because it doesn't really add much in terms of ease-of-use.\nI only made it so it would be possible to use jQuery selectors & chaining but the (jQuery) port really isn't needed\nwhen implementing Tagify within a jQuery code.\n\nBelow is the documentation for previous Tagify packages versions which included support:\n\n#### `jQuery.tagify.js`\n\nA jQuery wrapper version is also available, but I advise not using it because it's basically the exact same as the \"normal\"\nscript (non-jqueryfied) and all the jQuery's wrapper does is allowing to chain the event listeners for ('add', 'remove', 'invalid')\n\n```javascript\n$('[name=tags]')\n    .tagify()\n    .on('add', function(e, tagData){\n        console.log('added', ...tagData)  // data, index, and DOM node\n    });\n```\n\nAccessing methods can be done via the [`.data('tagify')`](https://api.jquery.com/data):\n\n```javascript\n$('[name=tags]').tagify();\n// get tags from the server (ajax) and add them:\n$('[name=tags]').data('tagify').addTags('aaa, bbb, ccc')\n````\n\n## HTML input & textarea attributes\n\nThe below list of *attributes* affect *Tagify*.<br>\nThese can also be set by Tagify [settings](#settings) Object manually, and not *declaratively* (via attributes).\n\nAttribute         | Example                                               | Info\n----------------- | ----------------------------------------------------- | --------------------\n[pattern](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern) | <pre lang=html>`<input pattern='^[A-Za-z_✲ ]{1,15}$'>`</pre>               | Tag Regex pattern which tag input is validated by.\n[placeholder](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefplaceholder) | <pre lang=html>`<input placeholder='please type your tags'>`</pre>        | This attribute's value will be used as a constant placeholder, which is visible unless something is being typed.\nreadOnly          | <pre lang=html>`<input readOnly>`</pre> | No user-interaction (add/remove/edit) allowed.\nautofocus         | <pre lang=html>`<input autofocus>`</pre> | Automatically focus the Tagify component when the component is loaded\nrequired          | <pre lang=html>`<input required>`</pre> | Adds a `required` attribute to the Tagify wrapper element. Does nothing more.\n\n\n\n## Caveats\n- `<input>` wrapped in a `<label>` doesn't work - [#1219](https://github.com/yairEO/tagify/issues/1219) and so Tagify internally sets the label's `for` attribute to an empty string, so clicking the Tagify component will not blur it and re-focus on the hidden input/textarea element Tagify is \"connected\" to\n\n## FAQ\nList of questions & scenarios which might come up during development with Tagify:\n\n<details>\n  <summary><strong>Dynamic whitelist</strong></summary>\nThe whitelist initial value is set like so:\n\n```js\nconst tagify = new Tagify(tagNode, {\n  whitelist: [\"a\", \"b\", \"c\"]\n})\n```\n\nIf changes to the whitelist are needed, they should be done like so:\n\n**Incorrect:**\n\n```js\ntagify.settings.whitelist = [\"foo\", \"bar\"]\n```\n\n**Correct:**\n```js\n// set the whitelist directly on the instance and not on the \"settings\" property\ntagify.whitelist = [\"foo\", \"bar\"]\n```\n</details>\n\n---\n\n<details>\n  <summary><strong>tags/whitelist data structure</strong></summary>\n\nTagify does not accept just *any* kind of data structure.<br>\nIf a tag data is represented as an `Object`, it **must** contain a **unique** property `value`\nwhich Tagify uses to check if a tag already exists, among other things, so make sure it is present.\n\n**Incorrect:**\n\n```javascript\n[{ \"id\":1, \"name\":\"foo bar\" }]\n```\n\n**Correct:**\n\n```javascript\n[{ \"id\":1, \"value\": 1, \"name\":\"foo bar\" }]\n```\n\n```javascript\n[{ \"value\":1, \"name\":\"foo bar\" }]\n```\n\n```javascript\n[{ \"value\":\"foo bar\" }]\n```\n\n```javascript\n// add a simple array of Strings\n[\"foo bar\"]\n```\n</details>\n\n---\n\n<details>\n  <summary><strong>Save changes (Ex. to a server)</strong></summary>\n\nIn framework-less projects, the developer should save the state of the Tagify component (somewhere), and\nthe question is:<br/>\n**when should the state be saved?**\nOn every change made to *Tagify's* internal state (`tagify.value` via the `update()` method).<br>\n\n\n```javascript\nvar tagify = new Tagify(...)\n\n// listen to \"change\" events on the \"original\" input/textarea element\ntagify.DOM.originalInput.addEventListener('change', onTagsChange)\n\n// This example uses async/await but you can use Promises, of course, if you prefer.\nasync function onTagsChange(e){\n  const {name, value} = e.target\n  // \"imaginary\" async function \"saveToServer\" should get the field's name & value\n  await saveToServer(name, value)\n}\n```\n\nIf you are using *React/Vue/Angular* or any \"modern\" framework, then you already know how to\nattach \"onChange\" event listeners to your `<input>`/`<textarea>` elements, so the above is irrelevant.\n</details>\n\n----\n\n<details>\n  <summary><strong>Render tags in one single line</strong></summary>\n\nStopping tags from wrapping to new lines, add this to your `.tagify` *selector CSS Rule*:\n\n```css\nflex-wrap: nowrap;\n````\n</details>\n\n----\n\n<details>\n  <summary><strong>Submit on `Enter` key</strong></summary>\n\nTagify internally has `state` property, per `Tagify` instance\nand this may be useful for a variety of things when implementing a specific scenario.\n\n```js\nvar tagify = new Tagify(...)\nvar formElm = document.forms[0]; // just an example\n\ntagify.on('keydown', onTagifyKeyDown)\n\nfunction onTagifyKeyDown(e){\n  if( e.detail.event.key == 'Enter' &&  // \"enter\" key pressed\n      !tagify.state.inputText &&        // assuming user is not in the middle or adding a tag\n      !tagify.state.editing             // user not editing a tag\n    ){\n    setTimeout(() => formElm.submit())  // put some buffer to make sure tagify has done with whatever, to be on the safe-side\n  }\n\n}\n```\n</details>\n\n---\n* [Disable the automatic whitelist (suggestions) filtering](https://github.com/yairEO/tagify/issues/1114)\n* [Double-click tag fires both \"edit\" & \"click\" custom events](https://github.com/yairEO/tagify/issues/247)\n* [Manualy open the suggestions dropdown](https://github.com/yairEO/tagify/issues/254)\n* [Render your own suggestions dropdown](https://github.com/yairEO/tagify/issues/244)\n* [Allow max length on mix mode](https://github.com/yairEO/tagify/issues/252)\n* [Always show dropdown](https://github.com/yairEO/tagify/issues/253)\n* [Limit the length of a tag value (minimum & maximum)](https://github.com/yairEO/tagify/issues/245)\n* [*Mixed mode* initial value](https://github.com/yairEO/tagify/issues/237)\n* [Random colors for each tag](https://github.com/yairEO/tagify/issues/223)\n* [Format input value for server side](https://github.com/yairEO/tagify/issues/220)\n* [Writing to tagify textarea](https://github.com/yairEO/tagify/issues/294)\n* [Scroll all tags within one line, instead of growing vertically](https://github.com/yairEO/tagify/issues/145)\n* [Insert emoji at caret location when editing a tag](https://github.com/yairEO/tagify/issues/365)\n* [propagate `change` event](https://github.com/yairEO/tagify/issues/413)\n* [Manually update tag data after it was added](https://github.com/yairEO/tagify/issues/433)\n* [Ajax Whitelist with \"enforceWhitelist\" setting enabled](https://github.com/yairEO/tagify/issues/465)\n* [Custom (multiple) tag validation & AJAX](https://github.com/yairEO/tagify/issues/474)\n* [Make tags from pasted multi-line text](https://github.com/yairEO/tagify/issues/160)\n* [Add a tag at *caret* position in *mixed mode*](https://github.com/yairEO/tagify/issues/524#issuecomment-699140465)\n* [Change automatic title tooltips for invalid tags](https://github.com/yairEO/tagify/issues/862)\n* [Create a submenu for the suggestions dropdown](https://github.com/yairEO/tagify/issues/1016#issuecomment-1106910803)\n* [Hide placeholder if tags exist](https://github.com/yairEO/tagify/issues/495#issuecomment-620498047)\n\n## CSS Variables\n\n> Learn more about [CSS Variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties)) (custom properties)\n\nTagify's utilizes *CSS variables* which allow easy customization without the need to manually write CSS.\nIf you do wish to heavily style your Tagify components, then you can (and should) use the below variables within\nyour modified styles as much as you can.\n\nFor a *live* example, see the [demos page](https://yaireo.github.io/tagify/#section-different-look).\n\nName                            | Info\n------------------------------- | --------------------------------\n--tags-disabled-bg              | Tag background color when *disabled*\n--tags-border-color             | The outer border color which surrounds tagify\n--tags-hover-border-color       | *hover* state\n--tags-focus-border-color       | *focus* state\n--tag-border-radius             | Tag border radius\n--tag-bg                        | Tag background color\n--tag-hover                     | Tag background color on hover (mouse)\n--tag-text-color                | Tag text color\n--tag-text-color--edit          | Tag text color when a Tag is being edited\n--tag-pad                       | Tag padding, from all sides. Ex. `.3em .5em`\n--tag--min-width                | Minimum Tag width\n--tag--max-width                | Maximum tag width, which gets trimmed with *hellip* after\n--tag-inset-shadow-size         | This is the inner shadow size, which dictates the color of the Tags.<br>It's important the size fits *exactly* to the tag.<br>Change this if you change the `--tag-pad` or fontsize.\n--tag-invalid-color             | For border color of edited tags with invalid value being typed into them\n--tag-invalid-bg                | Background color for invalid Tags.\n--tag-remove-bg                 | Tag background color when hovering the `×` button.\n--tag-remove-btn-color          | Remove (`×`) button text color\n--tag-remove-btn-bg             | Remove (`×`) button background color\n--tag-remove-btn-bg--hover      | Remove (`×`) button hover background color\n--input-color                   | Input text color\n--tag-hide-transition           | Controls the transition property when a tag is removed. default is '.3s'\n--placeholder-color             | Placeholder text color\n--placeholder-color-focus       | Placeholder text color when Tagify has focus and no input was typed\n--loader-size                   | Loading animation size. `1em` is pretty big, default is a bit less.\n--readonly-striped              | Either a value `1` or `0` can be used to toggle the striped diagonal background in *readonly*\n\n### Suggestions Dropdown CSS variables\n\nshould be applied on the `:root {...}` selector\n\nName                              | Info\n--------------------------------- | --------------------------------\n--tagify-dd-color-primary         | Suggestion's background color on hover\n--tagify-dd-text-color            | Suggestion's text color\n--tagify-dd-bg-color              | The suggestion's dropdown background color\n--tagify-dd-item--hidden-duration | When selecting a suggestion, this is the duration for it to become hidden (shrink)\n--tagify-dd-item-pad              | Suggestion item padding\n--tagify-dd-max-height            | Maximum height of the suggestions dropdown (`300px` by default)\n\n### Full list of Tagify's [SCSS variables](https://github.com/yairEO/tagify/blob/master/src/tagify.scss#L9-L24)\n\n\n## Methods\n\n`Tagify` is [prototype](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects/Object_prototypes) based and There are many methods, but I've chosen to list the most relevant ones:\n\nName                       | Parameters                                                                              | Info\n-------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------\n`destroy`                  |                                                                                         | Reverts the input element back as it was before Tagify was applied\n`removeAllTags`            |                                                                                         | Removes all tags and resets the original input tag's value property\n`addTags`                  | <ol><li>`Array`/`String`/`Object` tag(s) to add</li><li>`Boolean` clear input after adding</li><li>`Boolean` - skip adding invalids</li><ol>  | Accepts a String (word, single or multiple with a delimiter), an Array of Objects (see above) or Strings.\n`addMixTags`               | `Array`/`String`                                                                        | Bypasses the normalization process in `addTags`, forcefully adding tags at the last caret location or at the end, if there's no last caret location saved (at `tagify.state.selection`)\n`removeTags`               | <ol><li>`Array`/`HTMLElement`/`String` tag(s) to remove</li><li>`silent` does not update the component's value</li><li>`tranDuration` Transition duration (in `ms`)</li></ul> | (#502) Remove single/multiple Tags. When nothing passed, removes last tag. <ul><li>`silent` - A flag, which when turned on, does not remove any value and does not update the original input value but simply removes the tag from tagify</li><li>`tranDuration` - delay for animation, after which the tag will be removed from the DOM</li></ul>\n`addEmptyTag`              | `Object` <sub>(`tagData`)</sub>                                                         | Create an empty tag (optionally with pre-defined data) and enters \"edit\" mode directly. [See demo](https://yaireo.github.io/tagify#section-different-look)\n`loadOriginalValues`       | `String`/`Array`                                                                        | Converts the input's value into tags. This method gets called automatically when instansiating Tagify. Also works for mixed-tags\n`getTagIndexByValue`       | `String`                                                                                | Returns the index of a specific tag, by value\n`getTagElmByValue`         | `String`                                                                                | Returns the first matched tag node, if found\n`isTagDuplicate`           | `String`                                                                                | Returns how many tags already exists with that value\n`parseMixTags`             | `String`                                                                                | Converts a String argument (`[[foo]]⁠ and [[bar]]⁠ are..`) into HTML with mixed tags & texts\n`getTagElms`               |                                                                                         | Returns a DOM nodes list of all the tags\n`getTagElmByValue`         | `String`                                                                                | Returns a specific tag DOM node by value\n`getSetTagData`            | `HTMLElement`, `Object`                                                                 | set/get tag data on a tag element (has`.tagify__tag` class by default)\n`editTag`                  | `HTMLElement`                                                                           | Goes to edit-mode in a specific tag\n`getTagTextNode`           | `HTMLElement`                                                                           | Get the node which has the actual tag's content\n`setTagTextNode`           | `HTMLElement`, `String`                                                                 | Sets the text of a tag (DOM only, does not affect actual data)\n`replaceTag`               | `tagElm`, `Object` <sub>(`tagData`)</sub>                                               | Exit a tag's edit-mode. if \"tagData\" exists, replace the tag element with new data and update Tagify value\n`loading`                  | `Boolean`                                                                               | toggle loading state on/off (Ex. AJAX whitelist pulling)\n`tagLoading`               | `HTMLElement`, `Boolean`                                                                | same as above but for a specific tag element\n`createTagElem`            | `Object` <sub>(`tagData`)</sub>                                                         | Returns a tag element from the supplied tag data\n`injectAtCaret`            | `HTMLElement` <sub>(`injectedNode`)</sub>, `Object` <sub>(`range`)</sub>                | Injects text or HTML node at last caret position. `range` parameter is *optional*\n`placeCaretAfterNode`      | `HTMLElement`                                                                           | Places the caret after a given node\n`setRangeAtStartEnd`       | `Boolean`, `HTMLElement`                                                                | Places the caret at the start or the end of a node.\n`insertAfterTag`           | `HTMLElement` <sub>(tag element)</sub>, `HTMLElement`/`String` <sub>(whatever to insert after)</sub> |\n`toggleClass`              | `Boolean`                                                                               | Toggles `class` on the main *tagify* container (`scope`)\n`dropdown.selectAll`       |                                                                                         | Add **all** whitelist items as tags and close the suggestion dropdown\n`dropdown.show`            | `String`                                                                                | Shows the suggestions list dropdown. A string parameter allows filtering the results\n`dropdown.hide`            | `Boolean`                                                                               | Hides the suggestions list dropdown (if it's not managed manually by the developer)\n`dropdown.toggle`          | `Boolean`                                                                               | Toggles dropdown show/hide. the boolean parameter will force-show\n`updateValueByDOMTags`     |                                                                                         | Iterate tag DOM nodes and re-build  the `tagify.value` array (call this if tags get sorted manually)\n`parseTemplate`            | `String`/`Function` <sub>(template name or function)</sub>, `Array` <sub>(data)</sub>   | converts a template string (by selecting one from the `settings.templates` by name or supplying a template function which returns a String) into a DOM node\n`setReadonly`              | `Boolean`                                                                               | Toggles \"readonly\" mode on/off\n`setDisabled`              | `Boolean`                                                                               | Toggles \"disabled\" mode on/off\n`getPersistedData`         | `String`                                                                                | Get data for the specific instance by parameter\n`setPersistedData`         | `*`, `String`                                                                           | Set data for the specific instance. Must supply a second parameter which will be the key to save the data in the localstorage (under the tagify namespace)\n`clearPersistedData`       | `String`                                                                                | Clears data for the specific instance, by parameter. If the parameter is omitted, clears all persisted data related to this instance (by its `id` which was set in the instance's settings)\n`setPlaceholder`           | `String`                                                                                | Sets the placeholder's value. [See demo](https://yaireo.github.io/tagify/#section-advance-options)\n\n## Events\n\nTo listen to `tagify` events use the `.on(EVENT_NAME, EVENT_CALLBACK_REFERENCE)` method and stop listening use the `.off(EVENT_NAME, EVENT_CALLBACK_REFERENCE)`\n\nAll triggered events return the instance's scope (tagify).<br>\nSee `e.detail` for custom-event additional data.\n\n<details>\n  <summary>Example 1</summary>\n\n```javascript\nvar tagify = new Tagify(...)\n\n// events can be chainable, and multiple events may be binded for the same callback\ntagify\n  .on('input', onInput)\n  .on('edit:input edit:updated edit:start edit:keydown', e => console.log(e.type, e.detail))\n\nfunction onInput(e) {\n  console.log(e.detail)\n}\n\n// later in the code you might do to unsubscribe the event listener with a specific callback\ntagify.off('input', onInput)\n```\n</details>\n\n<details>\n  <summary>Example 2</summary>\n\n```javascript\nvar tagify = new Tagify(inputNode, {\n  callbacks: {\n    \"change\": (e) => console.log(e.detail),\n    \"dropdown:show\": (e) => console.log(e.detail)\n  }\n})\n```\n</details>\n\nName               | Info\n------------------ | --------------------------------------------------------------------------\nchange             | Any change to the value has occurred. `e.detail.value` callback listener argument is a *String*\nadd                | A tag has been added\nremove             | A tag has been removed ([use `removeTag`](https://github.com/yairEO/tagify/issues/222) instead with *jQuery*)\ninvalid            | A tag has been added but did not pass validation. See [event detail](https://developer.mozilla.org/en-US/docs/Web/Guide/Events/Creating_and_triggering_events)\ninput              | [Input](https://developer.mozilla.org/en-US/docs/Web/Events/input) event, when a tag is being typed/edited. `e.detail` exposes `value`, `inputElm` & `isValid`\npaste              | Text pasted (not while editing a tag). The pasted text might or might not have been converted into tags, depending if `pasteAsTags` setting is set to `false`\nclick              | Clicking a tag. Exposes the tag element, its index & data\ndblclick           | Double-clicking a tag\nkeydown            | When Tagify input has focus and a key was pressed\nfocus              | The component currently has focus\nblur               | The component lost focus\nedit:input         | Typing inside an edited tag\nedit:beforeUpdate  | Just before a tag has been updated, while still in \"edit\" mode\nedit:updated       | A tag as been updated (changed view editing or by directly calling the `replaceTag()` method)\nedit:start         | A tag is now in \"edit mode\"\nedit:keydown       | keydown event while an edited tag is in focus\ndropdown:show      | Suggestions dropdown is to be rendered. The dropdown DOM node is passed in the callback, [see demo](https://yaireo.github.io/tagify/#section-basic).\ndropdown:hide      | Suggestions dropdown has been removed from the DOM\ndropdown:select    | Suggestions dropdown item selected (by mouse/keyboard/touch)\ndropdown:scroll    | Tells the percentage scrolled. (`event.detail.percentage`)\ndropdown:noMatch   | No whitelist suggestion item matched for the typed input. At this point it is possible to manually set `tagify.suggestedListItems` to any possible custom value, for example: `[{ value:\"default\" }]`\ndropdown:updated   | Fired when the dropdown list is re-filtered while suggestions list is visible and a tag was removed so it was re-added as a suggestion\n\n## Hooks\n\n**Promise**-based hooks for *async* program flow scenarios.\n\nAllows to \"hook\" (intervene) at certain points of the program, which were selected as a suitable place to\n**pause** the program flow and wait for further instructions on how/if to proceed.\n\n<details>\n  <summary>For example, if a developer wishes to add a (native) confirmation popup before a tag is removed (by a user action):\n</summary>\n\n```javascript\nvar input = document.querySelector('input')\nvar tagify = new Tagify(input,{\n    hooks: {\n        /**\n         * Removes a tag\n         * @param  {Array}  tags [Array of Objects [{node:..., data:...}, {...}, ...]]\n         */\n        beforeRemoveTag : function( tags ){\n            return new Promise((resolve, reject) => {\n                confirm(\"Remove \" + tags[0].data.value + \"?\")\n                    ? resolve()\n                    : reject()\n            })\n        }\n    }\n})\n```\n</details>\n\n\nName                   | Parameters                                  | Info\n---------------------- | ------------------------------------------- | --------------------------------------------------------------------------\nbeforeRemoveTag        | Array <sub>(of Objects)</sub>               | [Example](https://jsbin.com/xoseyux/edit?html,js,output)\nsuggestionClick        | Object <sub>(click event data)</sub>        | [Example](https://jsbin.com/tuwihuf/edit?html,js,output)\nbeforePaste            | `tagify`, `pastedText`, `clipboardData`     | Before pasted text was added to Tagify. *Resolve* with new paste value if needed\nbeforeKeyDown          |                                             | On any browser keydown event, but called after `keydown` Tagify event\n\n## [Settings](https://github.com/yairEO/tagify/blob/master/src/parts/defaults.js#L1)\n\nName                           | Type                         | Default                                     | Info\n------------------------------ | ---------------------------- | ------------------------------------------- | --------------------------------------------------------------------------\nid                             | <sub>String</sub>            |                                             | See [*Persisted data*](https://github.com/yairEO/tagify/#persisted-data)\ntagTextProp                    | <sub>String</sub>            | `\"value\"`                                   | Tag data Object property which will be displayed as the tag's text. Remember to keep \"value\" property <em>unique</em>. See Also: `dropdown.mapValueTo`, `dropdown.searchKeys`\nplaceholder                    | <sub>String</sub>            |                                             | Placeholder text. If this attribute is set on an input/textarea element it will override this setting\ndelimiters                     | <sub>String</sub>            | `\",\"`                                       | [RegEx **string**] split tags by any of these delimiters. Example delimeters: \",&#124;.&#124; \" (*comma*, *dot* or *whitespace*)\npattern                        | <sub>String/RegEx</sub>      | null                                        | Validate input by RegEx pattern (can also be applied on the input itself as an attribute) Ex: `/[1-9]/`\nmode                           | <sub>String</sub>            | null                                        | Use `select` for single-value dropdown-like select box. See `mix` as value to allow mixed-content. The 'pattern' setting must be set to some character.\nmixTagsInterpolator            | <sub>Array</sub>             | <sub>`['[[', ']]']`</sub>                   | Interpolation for mix mode. Everything between these will become a tag\nmixTagsAllowedAfter            | <sub>RegEx</sub>             | <sub>`/,\\|\\.\\|\\:\\|\\s/`</sub>                | Define conditions in which typed mix-tags content is allowing a tag to be created after.\nduplicates                     | <sub>Boolean</sub>           | false                                       | Should duplicate tags be allowed or not\ntrim                           | <sub>Boolean</sub>           | true                                        | If `true` trim the tag's value (remove before/after whitespaces)\nenforceWhitelist               | <sub>Boolean</sub>           | false                                       | Should ONLY use tags allowed in whitelist.<br>In `mix-mode`, setting it  to `false` will not allow creating new tags.\nuserInput                      | <sub>Boolean</sub>           | true                                        | Disable manually typing/pasting/editing tags (tags may only be added from the whitelist). Can also use the `disabled` attribute on the original input element. To update this after initialization use the setter `tagify.userInput`\nfocusable                      | <sub>Boolean</sub>           | true                                        | Allow the component as a whole to recieve focus. Implementations of Tagify without an external border should not allow 'focusability' which causes unwanted behaviour. ([use-case example](file:///C:/Users/vsync/projects/tagify/index.html#section-different-look))\nfocusInputOnRemove             | <sub>Boolean</sub>           | true                                        | Refocus the input when a tag is removed\nautoComplete.enabled           | <sub>Boolean</sub>           | true                                        | Tries to suggest the input's value while typing (match from whitelist) by adding the rest of term as grayed-out text\nautoComplete.rightKey          | <sub>Boolean</sub>           | false                                       | If `true`, when `→` is pressed, use the suggested value to create a tag, else just auto-completes the input. In mixed-mode this is ignored and treated as \"true\"\nautoComplete.tabKey            | <sub>Boolean</sub>           | false                                       | If `true`, pressing `tab` key would only auto-complete (if a suggestion is highlighted) but will not convert to a tag (like `rightKey` does) also, unless clicked again (considering the `addTagOn` setting).\nwhitelist                      | <sub>Array</sub>             | `[]`                                        | An array of allowed tags (*Strings* or *Objects*). When using *Objects* in the *whitelist* array a `value` property is a must & should be unique. <br/>Also, the *whitelist used for auto-completion when `autoCompletion.enabled` is `true`\nblacklist                      | <sub>Array</sub>             | `[]`                                        | An array of tags which aren't allowed\naddTagOnBlur                   | <sub>Boolean</sub>           | true                                        | Automatically adds the text which was inputed as a tag when blur event happens\naddTagOn                       | <sub>Array</sub>             | `['blur', 'tab', 'enter']`                  | If the tagify field (in a normal mode) has any non-tag input in it, convert it to a tag on any of these \"events\": blur away from the field, click \"tab\"/\"enter\" key\nonChangeAfterBlur              | <sub>Boolean</sub>           | true                                        | By default, the native way of inputs' `onChange` events is kept, and it only fires when the field is blured.\npasteAsTags                    | <sub>Boolean</sub>           | true                                        | Automatically converts pasted text into tags\ncallbacks                      | <sub>Object</sub>            | `{}`                                        | Exposed callbacks object to be triggered on events: `'add'` / `'remove'` tags\nmaxTags                        | <sub>Number</sub>            | Infinity                                    | Maximum number of allowed tags. when reached, adds a class \"tagify--hasMaxTags\" to `<Tags>`\neditTags                       | <sub>Object/Number</sub>     | `{}`                                        | `false` or `null` will disallow editing\neditTags.*clicks*              | <sub>Number</sub>            | 2                                           | Number of clicks to enter \"edit-mode\": 1 for single click. Any other value is considered as double-click\neditTags.*keepInvalid*         | <sub>Boolean</sub>           | true                                        | keeps invalid edits as-is until `esc` is pressed while in focus\ntemplates                      | <sub>Object</sub>            | <sub>`wrapper`, `tag`, `dropdownItem`</sub> | Object consisting of functions which return template strings\nvalidate                       | <sub>Function</sub>          |                                             | If the `pattern` setting does not meet your needs, use this function, which receives *tag data object* as an argument and should return `true` if validation passed or `false`/`string` if not. A *string* may be returned as the reason for the validation failure.\ntransformTag                   | <sub>Function</sub>          |                                             | Takes a tag data as argument and allows mutating it before a tag is created or edited and also before validation.<br>Should not `return` anything, only **mutate** the argument.\nkeepInvalidTags                | <sub>Boolean</sub>           | false                                       | If `true`, do not remove tags which did not pass validation\ncreateInvalidTags              | <sub>Boolean</sub>           | true                                        | If `true`, create invalid-tags. Otherwise, keep the editable input and do not create tags from it\nskipInvalid                    | <sub>Boolean</sub>           | false                                       | If `true`, do not add invalid, temporary, tags before automatically removing them\nbackspace                      | <sub>*</sub>                 | true                                        | On pressing backspace key:<br> `true` - remove last tag <br>`edit` - edit last tag<br>`false` - do nothing (useful for outside style)\noriginalInputValueFormat       | <sub>Function</sub>          |                                             | If you wish your original input/textarea `value` property format to other than the default (which I recommend keeping) you may use this and make sure it returns a *string*.\nmixMode.*insertAfterTag*       | <sub>Node/String</sub>       | `\\u00A0`                                    | `node` or `string` to add after a tag added |\na11y.*focusableTags*           | <sub>Boolean</sub>           | false                                       | allows tags to get focus, and also to be deleted via <kbd>Backspace</kbd>\na11y.*inputAriaLabel*          | <sub>String</sub>            | `Tags input field`                        | Provides an accessible name for Tagify’s internal `contenteditable` input. When set, the value is applied as `aria-label`. Useful for WCAG compliance when the component replaces a native text input.\ndropdown.*enabled*             | <sub>Number</sub>            | 2                                           | Minimum characters input for showing a suggestions list. `false` will not render a suggestions list.\ndropdown.*caseSensitive*       | <sub>Boolean</sub>           | false                                       | if `true`, match **exact** item when a suggestion is selected (from the dropdown) and also more strict matching for duplicate items. **Ensure** `fuzzySearch` is `false` for this to work.\ndropdown.*maxItems*            | <sub>Number</sub>            | 10                                          | Maximum items to show in the suggestions list\ndropdown.*classname*           | <sub>String</sub>            | `\"\"`                                        | Custom *classname* for the dropdown suggestions list\ndropdown.*fuzzySearch*         | <sub>Boolean</sub>           | true                                        | Enables filtering dropdown items values' by string *containing* and not only *beginning*\ndropdown.*sortby*              | <sub>String/Function</sub>   |                                             | If set as `startsWith` string, the suggestions list will be sorted with matched items which starts with the query shown first, and *exact* matches shown before all.<br><br> If this setting is defined as a `function`, it receives two arguments: the array of filtered items and the query and it must return an ","repository":{"type":"git","url":"git+https://github.com/yairEO/tagify.git"},"bugs":{"url":"https://github.com/yaireo/tagify/issues"},"license":"MIT","versions":{"1.1.2":{"name":"@yaireo/tagify","version":"1.1.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@1.1.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"408fb42628d472b3bdc5082a0d16bcb1154523b5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-1.1.2.tgz","integrity":"sha512-4yHTKVUCebTxFWjReVIu2qcav8i0TTdTcsZDzX8CpfDn3SGf8Ej+8s9cvSRcV6E1klWO0+8S8aQcGNuUkJk0FQ==","signatures":[{"sig":"MEUCIQDTnwpHIKBAih83kOZu6laXd5lvi7u+sD7Qq4xEYhccawIgDo6PxMnFsgHXu2pHaNRfdLAle7IK+2dWKG0hFe9Ho6I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"tagify.js","_from":".","_shasum":"408fb42628d472b3bdc5082a0d16bcb1154523b5","gitHead":"a05985f0a0917c6dd6175a65715e2f47e31f3e5b","scripts":{},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"3.10.10","description":"Want to simply convert an input field into a tags element, in a easy customizable way, with good performance and smallest code footprint? You are in the right place my friend.","directories":{},"_nodeVersion":"6.10.1","devDependencies":{"gulp":"^3.9.1","path":"^0.12.7","gulp-if":"^2.0.2","beepbeep":"^1.2.1","gulp-umd":"^0.2.1","gulp-csso":"^3.0.0","gulp-sass":"^3.1.0","gulp-util":"^3.0.8","gulp-watch":"latest","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^3.0.1","gulp-insert":"^0.5.0","gulp-rename":"~1.2.2","gulp-uglify":"^2.1.2","gulp-replace":"^0.5.4","run-sequence":"^1.2.2","gulp-combine-mq":"^0.4.0","gulp-minify-css":"^1.2.4","gulp-sourcemaps":"^2.6.0","gulp-autoprefixer":"4.0.0","gulp-css-globbing":"^0.1.9"},"_npmOperationalInternal":{"tmp":"tmp/tagify-1.1.2.tgz_1496176427919_0.016950275283306837","host":"s3://npm-registry-packages"}},"1.2.2":{"name":"@yaireo/tagify","version":"1.2.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@1.2.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"30fd0eb286e279aa6b23b2c5cbdb5cce3c918bd4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-1.2.2.tgz","integrity":"sha512-Q8K7utvbLzVkDuRneC4fxddXsocZys+fw5JfX+37V8gviRDhjyf+Fa7fVTjhdp5WhXu+hFHYp/chwtUQnDe5NA==","signatures":[{"sig":"MEUCIQDy9a6I+lE6HC+9MYcXd4jpJVvSBzRALnweNji2/L21bwIgSD+Le5AbSwwa8WM/3gkt1LmB6r6rz7uzlVLw5ha36kY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"tagify.js","gitHead":"efacb252edc0a96fc8c1883345ac0b494871013d","_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"5.4.2","description":"Want to simply convert an input field into a tags element, in a easy customizable way, with good performance and smallest code footprint? You are in the right place my friend.","directories":{},"_nodeVersion":"6.10.1","devDependencies":{"gulp":"^3.9.1","path":"^0.12.7","gulp-if":"^2.0.2","beepbeep":"^1.2.1","gulp-umd":"^0.2.1","gulp-csso":"^3.0.0","gulp-sass":"^3.1.0","gulp-util":"^3.0.8","gulp-watch":"latest","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^3.0.1","gulp-insert":"^0.5.0","gulp-rename":"~1.2.2","gulp-uglify":"^3.0.0","gulp-replace":"^0.5.4","run-sequence":"^1.2.2","gulp-combine-mq":"^0.4.0","gulp-minify-css":"^1.2.4","gulp-sourcemaps":"^2.6.0","gulp-autoprefixer":"4.0.0","gulp-css-globbing":"^0.1.9"},"_npmOperationalInternal":{"tmp":"tmp/tagify-1.2.2.tgz_1508843797921_0.9031239743344486","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"@yaireo/tagify","version":"2.0.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.0.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"f25119f93266fe92a6930bef6ed507527b91b4c4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.0.0.tgz","fileCount":16,"integrity":"sha512-qg+1/fs6ds09owDRka9aI7pKiYEDM2nL2B2bDg19n/BJFGN6J6+lbNgwF3VVj2dkuUE20fkizgi64vepcBa2zg==","signatures":[{"sig":"MEUCIFZyCfhyVZx/CNqg5Wk+LrgQRB2IExa7Jl7uutkGRH9uAiEAgDOC0nZLR6fTkT9RoTZwzenDdUxAnjebQXUVu+qwPlY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":259993,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbJnvXCRA9TVsSAnZWagAAsygP/iSedcUo+254ExEg7gOh\no37XHc9P7OR/SASxUomco16fEQ4sRbg/GlRtVVTJguN70wn8wx1Qwxma88DS\nEEZyY57mgfTQx7kvr1MgkKB+tZU//BZ19iWRfMchMpBT5iQFa/rFE0ldsKjw\nEVTKKqogIYAyRfcsvQpzs5ZA1Y6j59ukVoBQjqAO7T1jjVrPuvD1b1dgt8qh\nsQ5Uz9JJ6x11yq4jHaCdFeSuI5vJy6CD6eIrCTbTw4FgyrQN3zNwNX87ffXm\n1dlF7UxpP2hJt9AGWu04ZFQuUiVZX6XY2zdxhul/Lb6t1+yY5BCUjsI1sPBR\n5ZvGpHBmAHoPpCZN0fBJmJ0iWN8IaFit274EHBA2jjf5/+Cu5KvgQs9kmgN2\nOT7V1CSjQJznl8N9nlfaVdzMy9Sd/ZXxiAlduBAmAoaxmRzw6ddEhS71nL8o\nUyR80ImGfTA/gyRPzWJZIkKy1baL64MwaYX1nR3a6ZkfI66CZQ6cLWuEw2pk\nEEW4N5pkQZ9uHFKlWVa2uihX50smtKHb7TgrcuqDB5GPCgWRy90Yw1ankaKQ\nYIgJOj5JNyqLSAWoRwQ5yDf543ss/gfI8wJycGGsode5pNtzKfvCCLdzu1gY\nEYQQKcj2i6xY//KlY2YrO8qxqag1mh8aQE0LpK2VI1+TTttS4OLep4QksZ95\nmSe8\r\n=lm8e\r\n-----END PGP SIGNATURE-----\r\n"},"main":"tagify.js","gitHead":"a011f780a9926db19b8b5c4b842cfae9f607a453","_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.1.0","description":"Want to simply convert an input field into a tags element, in a easy customizable way, with good performance and smallest code footprint? You are in the right place my friend.","directories":{},"_nodeVersion":"6.10.1","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","path":"^0.12.7","beepbeep":"^1.2.1","gulp-umd":"^0.2.1","gulp-sass":"^3.1.0","gulp-util":"^3.0.8","babel-core":"^6.26.3","gulp-babel":"^7.0.1","gulp-watch":"latest","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^3.0.1","gulp-insert":"^0.5.0","gulp-rename":"~1.2.2","gulp-uglify":"^3.0.0","gulp-replace":"^0.5.4","run-sequence":"^1.2.2","gulp-clean-css":"^3.9.4","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","gulp-autoprefixer":"4.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.0.0_1529248726030_0.849057866040436","host":"s3://npm-registry-packages"}},"2.0.3":{"name":"@yaireo/tagify","version":"2.0.3","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.0.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"abdec2535aa9ad7533f4eef7f8a25e0e3859f4be","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.0.3.tgz","fileCount":16,"integrity":"sha512-q7ntGvfEz4DfalGQES0n08SryyzYjUt8YaQbC3+xG5Tl7EDrSLDQlJOmWzSU6ZGL3zqVv1aPf4KJfUTHWowZGA==","signatures":[{"sig":"MEYCIQDGzsZDicoGlYO7xJ+pOg1cXLJxsm6x9r3pDNJhFzgf5AIhAOcyLf8dF3TFmSvp12JMd8fUzLTKCqAYNytQJj/ek4rz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":294624,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbO+i3CRA9TVsSAnZWagAA+OQQAI981EJmN64W3vyb9KI+\n+8AsQuNGP0xTCnUNfsgCZ9eUhkOVFfFUtMXHdZsJJTSjT956MgRuYF69sL3G\nRS3B1soSEVT4JEYRQNte9oWd1tEzjsFPaqF/ATKkriucp3AG9TN0UL73r4ng\nRyI34HZzQjpZDezdurxkl6fjqsSBSZvlo86SOKTUaGHo76MRZZdcuaLTqs6T\nJQZ20oO/19/OO+OxwcrG6njvA/2cM8efGRgxU9Ueb0DTlorzBxuATqd6oVXu\nLjx8BZHXib3Hf/dYDaadWtG90hSixPJuRTvYzod2GAOBs4yKQpT0MfsAVF2c\nehiOQJs1uiyfOxwtBnMr+GJW7UfcR3A9BPk5zxScP1Gt5jt7/BdMHVDqvRrc\n4uZXyM0HE5+Uit2F68LMjDEfmcAbNLsw0b5CEyVbMh3IAU0REAqQMsijK9S4\nU3yTkZm7Ny2QEKl6cTc7JU6UTFcsXWWDtOZPZR6Va9FdZ5tFns/t5xMI7sI0\nFCH5mkjUEKfCk6iDThyB6Aq7aF1UE05LTEhdUUzK06b7viTQx8ulbLFl8iZF\nEZ3TV6a65lAyBItAotXwsjh9J5VjBSQngq2VmzCp/GPX49uaeFXklOAcyPhz\nzf6l9adFmVbb+ghkZ/TfLgHo1qybKAWXBWFPNJXAvKgv6JlRBV0XWtQxqFKW\nrcAr\r\n=EVjC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"tagify.js","gitHead":"1daa45de528c7f4c0899b4bbdd67247a46b3938b","_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.1.0","description":"Want to simply convert an input field into a tags element, in a easy customizable way, with good performance and smallest code footprint? You are in the right place my friend.","directories":{},"_nodeVersion":"6.10.1","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","path":"^0.12.7","beepbeep":"^1.2.1","gulp-umd":"^0.2.1","gulp-sass":"^3.1.0","gulp-util":"^3.0.8","babel-core":"^6.26.3","gulp-babel":"^7.0.1","gulp-watch":"latest","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^3.0.1","gulp-insert":"^0.5.0","gulp-rename":"~1.2.2","gulp-uglify":"^3.0.0","gulp-replace":"^0.5.4","run-sequence":"^1.2.2","gulp-clean-css":"^3.9.4","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","gulp-autoprefixer":"4.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.0.3_1530652855864_0.12580867682336794","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"@yaireo/tagify","version":"2.1.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.1.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"5cfc5061fb512cbbb33a5a1505a84d312efc3cf5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.1.0.tgz","fileCount":16,"integrity":"sha512-Oh7RNbe5PJH2GDtJ6in5xrYZlJvh2Qnf0850rZ7dzHtrvMBOM55YQN9ICPdeudlCHBeA5M/lOoaTDAVkDTYHyA==","signatures":[{"sig":"MEYCIQCkuveNzWwtWdAb7BLIzVCxu0UMn7AAAUNQXrCzlfhEFgIhAIxGTgH4ItY7Z1Sg+zSTOieyoQuKmSv/ozt8V9MZZYgW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":299260,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbQOx6CRA9TVsSAnZWagAAd50P+gP7mQIbX5MC2pVkDm0W\n8Uw455kv8weRB0O7v06rDSLo9Lf1WNoNSgMflwR6bhcqyjETOsgkcm5A9Yi/\n2N89Rj7SJFB3LtA2bdzveIJMzj71HThHvhM6W20PCoWR1eF4osy4ZNQ4PMlf\neDO1iSNCyUGa+7hEcqpF4hga6hmWm2+kPFOVzob+PdJ8qaYPnLMefPqrJoE9\nfBDJKACTNNbpyLNsTA/FpzumiAUhQELaYaREG79BcwKINI0L/fsPxTsVuu7c\nRxT7QtWPM+Fowrm2A2ZfWX/Ni+gCurI9CGsnW/7a/t9pb06FUpPTJbNqzbqp\nw/HnaT+vT7wo7RI2DpOlob9rl+Mgd8H9oRHWg8uwNLShxaYW0hBSjh+fuTqE\nkw+HVG+6aB0XIWbaqz0bBe/09s+J37quAIuaxK3wmUQIalsHxVMQRHXpPVZS\nyqrwtRdsAB9fXgmoc5EOJsn/mBfcPP8Hr0C/f5Mpi86CZmBBFk+h4zaTTYGf\ng74yyFQ0C/Dd2SamUt1tqK1fAuizUynTHnJVqX6w7EQdsPuqU7fQTrY1895i\n6td+1jZI0HeXJoM5jw2voI8jS7GIGJER1rwJ++/bCx0p0rgC8Iaenm8aI9X4\n4q4WRgiBIYND+ZJA8S1bOL3Bq2rCGV5Eiee/rQIcs5qY4eAfJcEoD8/kMpHI\nobX+\r\n=1VTp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"tagify.js","gitHead":"f78e40dc223f172a44f52ad2f99e037f66521749","_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.1.0","description":"Want to simply convert an input field into a tags element, in a easy customizable way, with good performance and smallest code footprint? You are in the right place my friend.","directories":{},"_nodeVersion":"6.10.1","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","path":"^0.12.7","beepbeep":"^1.2.1","gulp-umd":"^0.2.1","gulp-sass":"^3.1.0","gulp-util":"^3.0.8","babel-core":"^6.26.3","gulp-babel":"^7.0.1","gulp-watch":"latest","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^3.0.1","gulp-insert":"^0.5.0","gulp-rename":"~1.2.2","gulp-uglify":"^3.0.0","gulp-replace":"^0.5.4","run-sequence":"^1.2.2","gulp-clean-css":"^3.9.4","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","gulp-autoprefixer":"4.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.1.0_1530981498505_0.6656588591928168","host":"s3://npm-registry-packages"}},"2.1.7":{"name":"@yaireo/tagify","version":"2.1.7","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.1.7","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"21db4eacf222cf03136ddb3a29a251d4eee72fc7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.1.7.tgz","fileCount":17,"integrity":"sha512-bOszaey1yGw7v9xUbp3Hm8+4bNqYfeHJbCZYP5Exb7ZXqZL2jM/D/zrnGirkEcB1mwBES42YXhUuD11YqGnHMA==","signatures":[{"sig":"MEQCIGGi6XH1siuK0GUeRNq3rWOb3okvFzkUZcw4gbTsjk3qAiA2jeWRXwB9RxvPD8164p9O0NqQyigmeiUdM0v0b+CNTA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":322471,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbgYAmCRA9TVsSAnZWagAASjEP/j43ueq/trei33FU4UNC\nZdiAN6jrkE4xhNL6vVcL53VdzzEkPqhgKYyAqP9O8lOy6b5Ja2Oouvst4NLk\nFFbRg8g8Mx/JFsPWzKR0F21HdHXBernc87PrjEhEwk1iGxBZ/ZjF8PfHJ0Gb\n3RMOHcZK1vro/KagKVUnXRQBY1zt9+5KrE1jUW/jHjPkhBxPEIARZ47I9xrc\nDEaKtJoktPQwM2SmmlA2UDcFmPWS+U4TkpVLNpyffno0guO/lTjxT0lAlFVb\nwnUUwaTVi+lPMsShS2MAhdLT/v2qrRDtu6eY4/w7Ar/vQAnCoZiYSxRp5fMw\nvlLLh0mx+8x3LkbNxFX47P5jKo/x2ih/6St7dix4QoE15OpXOZPelSk+0GQu\nE/Abg6hp3IcCnu25q11nhJUcy7Qw+dQdr+6To246pBObv/IIvuU4ojyFbuRv\nVomBanWttEsp9FVHT8T5eFmIeOiEq2xtzh6+Y5vH1QOG025HGxhUmr8alxqL\nLVLPu5XVA+D3WoDlOChyy5rZ1b9oxqV3GAFHYIMa4+OPsJKtGL1COcHUKN4y\naN1iAun2h+DN3kfVDnQPEGhVk0yPPsCibgHs1vuTIg8sb8bN+6td6YprXa1W\nrkK1T9yYMJHdn9NmW5sBo8f/PT7Tc8+0kucoPfxFy9dbYlYkSYEPBqN9dw3b\n+iGa\r\n=UXNu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"tagify.js","gitHead":"64395021a682926a7fd2759ae98dde702fd0b2c0","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"5.4.2","description":"Want to simply convert an input field into a tags element, in a easy customizable way, with good performance and smallest code footprint? You are in the right place my friend.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.5.0","path":"^0.12.7","jsdom":"^11.12.0","beepbeep":"^1.2.2","gulp-umd":"^0.2.1","gulp-sass":"^3.2.1","gulp-util":"^3.0.8","puppeteer":"^1.7.0","babel-core":"^6.26.3","babel-jest":"^23.4.2","gulp-babel":"^7.0.1","gulp-watch":"^5.0.1","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^3.0.1","gulp-insert":"^0.5.0","gulp-rename":"^1.2.3","gulp-uglify":"^3.0.1","gulp-replace":"^0.5.4","run-sequence":"^1.2.2","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","gulp-autoprefixer":"4.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.1.7_1535213605815_0.322475946057853","host":"s3://npm-registry-packages"}},"2.1.9":{"name":"@yaireo/tagify","version":"2.1.9","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.1.9","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"54c985888fbb9e9401ad6628f1cace1aa42a4f64","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.1.9.tgz","fileCount":16,"integrity":"sha512-KnMS6ZRnET2EsYgYiRUlR7iuYetTpP8IZmjdCFP31d8gZlFqF7ZzTvcyMUyJtvjepkdEKS1KskhIpP8Ba8nWJw==","signatures":[{"sig":"MEUCIQDF1TT1Rzc0FWVo2SOULy9ixK9OX+jBWJTPyagmtGivzgIgIB6c/UQiRlhmUzZH3l6I3sKeKzCEh+kBw+mnSzTuZbg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":325323,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbklRVCRA9TVsSAnZWagAADAgQAJNBgpXfADzdQ1MlIKLh\nemq1eEJ73ELfcJRkQMxiLq3LdLfvpWvFgT1lFK7uFSlWUY2Cx7G2gjRkQM09\n1+932uF6VCZGNJGIg/ziA5U60JPLL9JSDhvm6Yv5zqcMWKLXGbMAF5O61PRS\nlkGT7lGj+mnKukA6/rQIH/Vh50kQMmHY8m8tz825a5zEDpRtx2mkgWjzgh4j\naV0XslSl7CLlsJi8Z0TMDncN7xf2rQrxFelUHSM72+GW7GstzELd7S4o1XVo\nc+jvodVOpifMM2jTUdAS0v8ch7O09VmM+qMFJO+NtYuTHhTVO1K30rBf88n6\nsFGTORve9Cvb/2sTrEFhH7YFhp9ilK8jUvBGKEX2j6tHRp7applQSFjsg/Gv\n0d+eKaiZQMhcmfF/w/OU5sdlbWr/W8tjb6c489Wnq0Z6B75ipXtLaRFBok8i\npl4fDz3DESxjUeALIJk3l/hBq8sijSI7pdUyF3mogd4I1x1yFjV16U7GwnWm\nBjj88A/ILJvBPTf8i6VCJ5RD59DreKoc55nPRgsGPvQdiJgCsODCRKKzxsrm\nx2U31SACYcifLGGQ8rseD6zf7ng+aY79eKvNhqgGf3HFypMyuIsIRvZkYi3T\n3Za8PYeXu4Mllkq+740VTy7b/+uW4YC1EsUmuO/H7bBKz9wnsIHgbos9wTzy\nwBdh\r\n=bX2S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"tagify.js","gitHead":"0e4def7f423b0b269ab5811f87245e2bf80434f2","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"5.4.2","description":"Want to simply convert an input field into a tags element, in a easy customizable way, with good performance and smallest code footprint? You are in the right place my friend.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.5.0","path":"^0.12.7","jsdom":"^11.12.0","beepbeep":"^1.2.2","gulp-umd":"^0.2.1","gulp-sass":"^3.2.1","gulp-util":"^3.0.8","puppeteer":"^1.7.0","babel-core":"^6.26.3","babel-jest":"^23.4.2","gulp-babel":"^7.0.1","gulp-watch":"^5.0.1","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^3.0.1","gulp-insert":"^0.5.0","gulp-rename":"^1.2.3","gulp-uglify":"^3.0.1","gulp-replace":"^0.5.4","run-sequence":"^1.2.2","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","gulp-autoprefixer":"4.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.1.9_1536316500495_0.30308350862615985","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"@yaireo/tagify","version":"2.3.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.3.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"787cc423ff4f31935468a7536b688cba3b8080f8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.3.0.tgz","fileCount":16,"integrity":"sha512-cGF5nVXr8/t5vsT19z98tn7GCIpe0y04XBMRImNuXlSqCzdcNPA43p8UC2/yCLiaFMd5V7ao3/r8qBo822XDOg==","signatures":[{"sig":"MEUCIQDIXmQe+qYAB6ayi9Mh/g0TQEz9+3k3KrDEP6b4k+o06QIgBa87FMheOObiP5IClcrA7u3IWuR7f+nbCIQ265GmPtY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":318384,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbsH5LCRA9TVsSAnZWagAAwPcP+wTpgjHTS0+SRcT8VCJ8\naFeJ6LSsNbK1BraBUqeMKw0e7kKy3eVZA+UL2cF/ep2YCaSXAm7R3a4FaPdY\nWULmKUBIahdJg/ksS7rJn9MIZrTu/TotHUeMQKk4J6noZPJyIot4/bCUayp5\nm+H14CWkYZLKZokgfSXaSCWv2QNmqldntTJ93/Q0tWo/gEpBE+M8u7/3xt1l\nLw3gWVK+DFhMoM7b2FfGbAXLo/F2QzuT6N/UrtPD9V3+8ebDyI4CDE76mjJg\nd2rEro/hodqHmf7EpcVjG47Dm9J1gdIofFSGulcM3h5T8Ton0X3NpB7uKg/w\nwnVavKYcd4+0hlXc/hfRtoBxf/jPq1d5v+w6gGxQquAaOODxqIwDvEo/+bre\nkbz/dJzJSQ/wQ9S2p6Dxo/V9OfhWjfFWrUro6QR3L0t/zrdHfT8mug0o2VFw\nigo6UrXTDYzESLL8CjVvYwuUK+p2EueGSSqDOuOJShUji20vEVXTUqLDFgiG\nHsDdBIJGUKVpl/QYPhWvs4j/hDm0ze49d5ugSOrygPZLVHiDfdGpnXx7BbkP\nlgysS9awtKt12aOKUj2zkzzPxd90G4qGxzdpyJSvzthurTJgInEpdcJ2I/Yv\n50++qjd2TgqPLDX31TgnDevuT5WKqF+7qJzp3jvKKwvHjGoKvEnUaH0drzvM\nHCXz\r\n=6m2M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"9d3a1388bdc12b0fb0be4365ce6725ebc368a0e0","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"5.4.2","description":"Want to simply convert an input field into a tags element, in a easy customizable way, with good performance and smallest code footprint? You are in the right place my friend.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^12.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.1","gulp-util":"^3.0.8","puppeteer":"^1.8.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.0","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.0","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.3.0_1538293323102_0.2691346731314055","host":"s3://npm-registry-packages"}},"2.5.0":{"name":"@yaireo/tagify","version":"2.5.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.5.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"2a0dadc9568df96bcdc2176970e7edb9155a5c3e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.5.0.tgz","fileCount":18,"integrity":"sha512-UEBdNsGy3IB8Z+OTyCjd//pAzxiJYrBamq4aDpGzjpbZRMxl9Ip+gd8ujLx3JgOxRS8kYId9m5b27M8ffJpE8A==","signatures":[{"sig":"MEQCIHuJuNcuvGoZYunBSXFwokvFrLeC9fZdZH2rh+BSmm4xAiAgjkx+Qo5Q32pm9UwAthG8rbksWwPLNAvelxn7UYKLzw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":368100,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbsn+9CRA9TVsSAnZWagAAcPsP/0JM2YkXPjYQb+Ew5SO+\n7keA7lSxs3e4E3k1HZi55BxrefagmOR0DodzaUxyJ/Vj2Sr2BpzqyPY4zSUd\nSNkpAgZbwf8SRscOPtk7y5ySidGCH7O8uEiFSHt9F2d2K6GWH50//SrYBqVQ\nrfGinZ8B6bSuIdc6EL6i23Ml7j/r3HQ2vXDHmUyX4bz6w17wOAgAACm72T9s\nMfx3ff3wY07UOx2GZCauX3Jf6Gj3WFk0Ry1HD/Pw0pISwyqONXwR0wIyIbVo\nLGL63SU4a54mrZ3PjxkwoYBwpk2Z44ra78+8npgsutLITQ6l91sRFvLpXaBk\nlfJWsebQkG0oI74gdKrJ7kVsZBf9LqpztvnF51SCKWSRKV7VYT2dsf+CySr1\njOEHyX8fAJcf5alDWzJTKkR2CNaLlxlonVFFosgpsaPoo3Uq8jyCBiZ24WbP\n9U9ClRByP8SFHhKziH+nlxt3Z6KKClb0JmB2gGt775kVitDVTHcfvlyVUsaY\nInqs0AIdPEGDfcJaa+Ya4z59lfVo4M5mVI921FdjgfxrS5sY4pD9zjpNqPbJ\nlWL5a8WLy/xgvjrsKlKASPFuSFeJb3AK7aKZtaAI0VeOldXWNWLkqjNK552Y\n70ztYbCKGbUlFaBX4ASfVbcsXt/ovtRLpXq2Mh4kfGUAFIvdZ0Q+X1T5TvMT\nrdu3\r\n=kBct\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"28c2327e0c7727c0da7e5f05f73a3806b6e5a1fe","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"5.4.2","description":"Want to simply convert an input field into a tags element, in a easy customizable way, with good performance and smallest code footprint? You are in the right place my friend.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^12.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.1","gulp-util":"^3.0.8","puppeteer":"^1.8.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.0","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.0","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.5.0_1538424764994_0.436954298248611","host":"s3://npm-registry-packages"}},"2.5.1":{"name":"@yaireo/tagify","version":"2.5.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.5.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"9c577965a44ad4f8583a00e164285d1f57bc9741","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.5.1.tgz","fileCount":18,"integrity":"sha512-N+T6uQqUr1sxOe4ZUI/favbVSFsIjIF7bD5eRQVOtNpAzB2fGPgfw0GC3EwgmAARjRVdHtYSv4BmOcXJ7uyQSw==","signatures":[{"sig":"MEYCIQDzEpebAlnjIjjs6Kxg+SJTkh7cvvoBk/qLblMO2oN13QIhALWv1ZCf1tNSIiiIV3dOLB0VRO8hhC5+USuXh6gfrnOG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":369610,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbs9bjCRA9TVsSAnZWagAAGEkP/3CCa4fgQV61clpC9dnI\n03PUWTxkO4yiVGDlCrXD5D8hOqqiTwzoRh1Zi2fOf6QIZoRoZCWFISLln6P5\nfesp/ox5H8vhx42cB93y3MSL3FnDyGFviATaCTd9rt0X1qhHrKlLn0IVe2HM\nFrVd+ipcMoxdrktDh/Qirah095s//IGsI4yL5FnkE0syo0Pv31/vjFdqpvkW\n6AOwG3LYynMBAHqlOqpjaXbK9KoI7zOY23uUcwDp2aHdMwASiAg/hNwnGYBu\nKKgkdJMafc/uJlrtj61f2Qmi3OiLeaDnYG+OYE9QhkaIHLfpcnD7jEZhF3QF\n2ZvydpuPjYU6xFf09IOPXCZH7vtLuKgPidIT5EOj7UzrstNtCc0tYtqCXu2w\nafQELc/LI1JiStI9dxut0Muq8MGJjxl9yrwQbRXI+CsZqAe4ucJ8guP8V+65\nCiSorTjRkgrslmd13ZsgCWas7saUGQbhe/fRpMMJr9A1zfQDz3DIL+bYLErU\nfm+Gh3WDa3DAlBrJWoXewwM7b/kJo1kwom+H0BScKFHbUx/WRRrbbuW74o4Y\nxvbBxEFC82iLq/gXdk2SiCdXJURSC7w5PaFNY5JinwC0qudZbS1r+irZ7P/z\nJrCDLgRENgGja+sFalr72+j0y9DltTniQqTay88bw99ahnF4HTQHsy0h4J4a\nNkyV\r\n=TcM/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"9539a640a35b8280bfe49d092abfc93b4fb2e037","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"5.4.2","description":"Want to simply convert an input field into a tags element, in a easy customizable way, with good performance and smallest code footprint? You are in the right place my friend.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^12.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.1","gulp-util":"^3.0.8","puppeteer":"^1.8.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.0","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.0","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.5.1_1538512610989_0.4071792079646146","host":"s3://npm-registry-packages"}},"2.6.0":{"name":"@yaireo/tagify","version":"2.6.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.6.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"9ab37eafdc272918ef72f7a1e6e3da61adac76b3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.6.0.tgz","fileCount":18,"integrity":"sha512-B8kelIRmh4uuPQCm3J9xAdPI7jGHBwwsT9xzLIkg93kyITxNzsyRgic6XzUAU6YJzPyb7d1cyCGT1685oCmLQw==","signatures":[{"sig":"MEYCIQDmXJFIYKj0lKDfm9es11JlPnGzz8dxuvAkEgnFhbSv0wIhALP00KrHNKeE3lnS1K2EWe5haCyTA0gjzbeWvMXJYFLV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":369706,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbum0gCRA9TVsSAnZWagAAbE4P/Rqi23QGKEfPNRlyY7bL\n38LalINCG7lfELWikfrz7HGrd6EOcWWcVbB/TmMErwX/Tc8xG7wtkY6LzYRv\nV9daUs0g6mLXQ141734hoLeWvz0v/Fl2EcKjpo7TAWefSB7XOEB/F+Gh/PVZ\nx6qKLuZt/lImh+HFsk8mJr4O+BVcHirNT62BgGqpIZi+9GL3CEv043IqhqmL\n1op7K++xD+L/QB1993IincW7TzciIIU3+9B9OJpCaObGSQHsksuhO+bWd1kV\nGFWxmmP7kHDrGhMzScxEcFRH0SjhGdV7nfTswSHgcrNgo+FXqFGRsgDngLHM\nhLhFYlGRDirJHGvMu6Y539VCpMfQreCSCn8uK0GdULb4UR/clg+2UgEstMAt\ncRa5V4l1aLrgCDueKDPig9iUDtzE7CX60x3K+kA591uRshmgCsNpb2+sUqKS\nKdwA7YrpxMhrQaqWUgDWpl1bm6rwB5p/Vayol+rLAL2fEi2Yt0BzA76Qe30c\nIRyaoxrCPGPngLDi256WMout/MZBCuVRRwD1zTJyrTbAkqGZTS+AzpTDKPM3\nbIbt6GeZW3kR+g18zwAmnFMARaNODyx2qu7n/ujPwDhSAN9jHC3o8nYx3juQ\ntlg1KOUV5pJ5NFckmagyfET31/AEyJt5JUO3u+dDQ+iVxhVa4QSI0bKPlWPp\nDZKZ\r\n=K80+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"69cd7db890f6ab9f310014488ce82acc9df4a1e7","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"5.4.2","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^12.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.1","gulp-util":"^3.0.8","puppeteer":"^1.8.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.0","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.0","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.6.0_1538944288106_0.8145609780240499","host":"s3://npm-registry-packages"}},"2.6.2":{"name":"@yaireo/tagify","version":"2.6.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.6.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"6bbe78d7f3dd3c68be8758d28307cdbcd1335c7b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.6.2.tgz","fileCount":18,"integrity":"sha512-AX79Gjy62Sk41bWcrc/bJqlCqxoZHmpswevSRTorYaNppseTdbJ4Yqos8+9pix5s0IhAQeNmqC5SfAVqO83Xfg==","signatures":[{"sig":"MEYCIQCTUnua3WzYXFqpWYKNUompS1Qix3HpdpbnSUl/sV6/ywIhAOEwalM/PGKKP23FuQK/vFIFE409hj26bsBcLCZwWs6w","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":370340,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbwLneCRA9TVsSAnZWagAADL8P/RN+L2TRVwVVrKBCMrmN\nOL28ivu8nHvhT5lEyatAcMTQxEbO8JTJ+qvK8ZDm7r5GEsladjgP4ts4hEJ8\nQXWizz9C8MOOm9ac/BD8yyD3kYSe0/J9KF+GHv30BpGwQQxoVeRdHZHYMHvf\nCZ+vmtAcgRjOD5Znco6Xe1Dan448MskT7dNJFxNcM8+6EjK9A+hQPJqVFn7l\npxwcTccj+sXbhuAbv96AIrRb3rKJN3BoAIZ3QukCmmdIEjhu0luoH4FUV9Zo\nAED6fUOh/Jjp27MOlqdXEyh8bA/YP6i7BW4YnbXHW8G0FD6hO3bWOu1Yxwly\niAGODbb1ZO0L/fEwdxuvMMvf+j8mM1sxdQw7ccBVCbxn7z9S2XVN+obYnyEC\nrTXxh0/A0ws0e5wrDFTnVjxr+/eBRxv8LPikveXxBLXzAVFdFhx5I4zAA7wk\nVZzckZGSqJR/x10c76l4etyAXoJTd42pxTlB3+LP7DkBt0DsgAIHhwpioZI2\n9wNhOHnq8KxLDbzZ6uqNMEXba8wW92nZoiD/B8krDqN14WKOSPEHxsi1RRl9\nnS2cLK3dVJXjj9qCYfsswxuXbfgzBQampxwqhi9XlmcW5CSTO7ts0jGTTrVw\najbm4Mo1bven2B8fcNMQc2f2r3/kfCfWsgalUWui6+pkZ7fbxjtSpaak4bYg\noLkW\r\n=rJPR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"48b6dc5312422de5d83f513c5d74a699a69fe1c2","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"5.4.2","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^12.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.1","gulp-util":"^3.0.8","puppeteer":"^1.8.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.0","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.0","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.6.2_1539357149794_0.9911616614721783","host":"s3://npm-registry-packages"}},"2.6.3":{"name":"@yaireo/tagify","version":"2.6.3","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.6.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"d8dc5cd8031eb103bf09ef841f64b9afd089d5fe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.6.3.tgz","fileCount":18,"integrity":"sha512-/P7hnkUP9jsDz0AquRjGLDeb3OO2zm/avK7hHefI/369wZTunR3S4mvAkAEyKa7/LdWpKeUuAWyx9CSyBlZnYQ==","signatures":[{"sig":"MEUCIDEDWmj/jiyRd6xGQrhmd27kfUIQeapOS89HwTnwGqB1AiEA2rA0DAoNSRggqYKvnbZEjPJ5YqedMaxzekEloY3UnCE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":370568,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb0CAfCRA9TVsSAnZWagAABN8P/2NRHItOjgh3Wb7t7Y0D\nCmUBFn72EmGevr0d300L6/OF6uNplYnpcKrAAfTrf5D896mjPZ2M6kfLYwfZ\n95yjGoDD08yDxKlo47RA/SvNEwu2nlVXgbyOx0JodS0fsbA27p3+hVgox1BS\nsekhS2IvIPeZPhq/e45n8NYIyN2TvPb6gcqrm0iBvYbBNtlnUUyIJBcLJ/NS\n8lb6MODevspCccZtqTWcxnqzsECxBF0PpKg/jF9s6OnY0XHJrPgHPajsQf7y\nwcIPWQxh9z7OdX4TjIxtgmmddJQzE3AmHKXqVAZnlfjIdqzzV+3ticHJ9l3M\nvb1PhCdfhZVujNCo5OzuFNViXueqb+u65arzxwF1ExrbVJzKes6Is38BaNDN\n6gAHEWZ0z3LDDgi1W/OW6OM1yW/MTS+WqvmtwShzKYEN/UzmEYIBP3V9cLMi\nbs0zR04lLOjS9g9Cz8Co5jGdeMiN6sn90aQQP1yAuVmCbow6xY4qS1DqL8j2\nZCdlQKk6nuzWfWE6L49I+Chxgg9QTr5O0uAO+H/VL8XSfRSo3ej3nhtqwCaz\naSddemJATd3yMsK29uqzAQdeiN8LhCVhjK2GZa5b9NbGPyFMxlINpraYjU92\ndu5Di8qSFH4NoGC/bHJSmQGifWeL7EnkupW51ECi+XNvbBrP7xyL6vNuHvq7\ny5kb\r\n=vl0K\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"fddb4fdb4f08652f3059c8715f06b929a9a34a9a","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^12.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.1","gulp-util":"^3.0.8","puppeteer":"^1.8.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.0","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.0","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.6.3_1540366366711_0.0876495837792155","host":"s3://npm-registry-packages"}},"2.6.4":{"name":"@yaireo/tagify","version":"2.6.4","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.6.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"b06a202297733707d24a3f2ac8cb7c3dd9dfc5f2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.6.4.tgz","fileCount":17,"integrity":"sha512-LS6NI/vyVq6cuxIuT08KbSicQ9EeqkmMoAFWP/7+HguuYrIDu/0d+Klqx0Y5AvuL0urfm//ftzlpLF7lC3N1kw==","signatures":[{"sig":"MEUCIFb13wdm3OZnyDXxMY+ZEpOYK976ztPthbVl0hWmEFtlAiEAgiczYy7VWAG/KUV48PFl5kvqNWVW0EHW55DDo2iE9vU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":371874,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb1LtGCRA9TVsSAnZWagAAnAIP/AgO0oagdjYKNfsahG2v\nhuJVQAciyEel8FNWEpPVtHC+6nJlUYhdh+4y80biF6KXJz0HMISpAez49NZY\nRPhFmFtHNVql5LLfRRMloMcghA5iY3EYT8iBWHVXE2RZR6K2WIfmuLxsB2ed\nNvGGny/jhMfTULk6rA9Vh8Z4DJi8wc2/XcB8DJojUL4qYE7H2c3eV/WCHmaE\nVlY1K7vdRc/tjDmSKyJXx/YtOwrd5shl7mrlovi0eTckk1LL8VCueOrrkwOd\nKFuQcS2JKnV3M3ULq6HV3ruoKmoa3YrIf/t/0izIHjDtOz7Xd0OmRFTrUd+M\ncot+QF23Uql7vlkybSsd1CR0c+fyXL8EUnu5aZvuIk+dXUKHanVAr+QZ31SL\nyVxuatGGRc6TwDqaA6UJpD7xzI+Y5bIXXo7FXwwcUcR7ilfk5DKTNj3QY+ZQ\nEDb2jpsdJiP1FHw2GLPN/k2Wjok6w9GTWPlciaDPURhzzn958jvZKA/XavVk\nho5TDmRjErFXjOHpqog0avMXJcoXwB1HmktU12HoGcSQAunSs/3Ne5Ixj9vm\nkR6tWJkOrIurID724sdOBYLvMb3UnnFZyGRTLh+ZZMVBZg3FcJeHM4h8SgsG\nqpuaUrxc1Q/ubeJYqCGSmrHY38nBtXA40qEOjCxS7oq1MQFBsmh1Pilo469u\nkPUj\r\n=4EFX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"83eecac3c96e3ca3f05e0adf9d76a8872cf7175d","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"5.4.2","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^12.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.1","gulp-util":"^3.0.8","puppeteer":"^1.8.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.0","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.0","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.6.4_1540668230184_0.20164178545983646","host":"s3://npm-registry-packages"}},"2.6.5":{"name":"@yaireo/tagify","version":"2.6.5","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.6.5","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"5465b049af8999d9f46369d7b93f17a43d1051e2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.6.5.tgz","fileCount":17,"integrity":"sha512-7Jc0JQIRDC/Jnr0JOet6H9qB6AHi7V2RK5pB5Blr25+b5JHH9CQQ70ycR4NWy0pK1+3wjoOxYomm0xCVMa9SMQ==","signatures":[{"sig":"MEUCIDMlefB/Zs06/9HRJiSujcTshTL0ddNleyJ3UQYmVzaqAiEAqeJuN1N/hXFXuP/WO7z20tHHoT4p1q3JBPh96V0eSPQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":372602,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2KglCRA9TVsSAnZWagAAissP/3w4osgGRqxa5L5Utkfw\nwwtoCoV8w+7zPaly/8KUrA8P9mvi7hNGAkYNREaIqFadkd263ZpZEsJm6h1Z\n9nw7UmbG1j1YZHDVFaaaNNbUipQu5IF9GxDWf5Ng7eumfJVDEYzPD1Nrw59H\nyg9LouV0zd5O5N8rbh75ox/mClzLcKLDmFBKYoCzhNRB405Vw4I+ag1hxLPw\nHiGTW1WDvVFSGwBGn9pff/y3xuKXg2LMZYbnfzLGu9gWhtK7PocfMAcdOQaf\n+WpSErsan3P78TRBY45DUqBHbkmlbFO+WpsHQWHvxoF3xFuBhGScM8+sSf7L\nCttxvazgPjMnRj3IpPppO6878uQdc6eJWd1mGdFJt6jJIGTxgMcH86S+MKsv\nkLTnLyXEo+1sWmAYKMkCIMtVM7OareQHsmSwGyLKmbg5QZRWeXf/Wd93CQok\nuOeZUkEHLVW8EgtXkPk2fXGWkB8cDFO9HWgK/vRMzKwHyWPSe+qfa/+3nekG\nFq03gFexi02zmFXTKeqMHexU50XVvwsgI5qv1KZPOwumEvFA9nRpmj2y2+so\nXD4mBeSJPUunHKW0hV3JBic4DBujImKVkBVtvD7wwWOkON2eYe8Pt51RSF8P\nLH2agdTV1yT/i8DqolXQGN9pts4AwwMKDexR7rK9REsnE9GIXMHEV4Cmpi3o\nF6up\r\n=xUYX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"f6ce0da7b0d83e066665a42b679207a63ebca3df","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"5.4.2","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^12.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.1","gulp-util":"^3.0.8","puppeteer":"^1.8.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.0","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.0","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.6.5_1540925477076_0.39948907404416123","host":"s3://npm-registry-packages"}},"2.6.6":{"name":"@yaireo/tagify","version":"2.6.6","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.6.6","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"ea8187776938f07b7fce00b272489e50fd792829","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.6.6.tgz","fileCount":17,"integrity":"sha512-HjyeVn/7FHyvNY6Ud0HMJ4xpGZFLODwpDr+zyahqVhxQaUEm+L/FJ+KYJP9+kjsKykYSCWajkU1sswTsLlVRFQ==","signatures":[{"sig":"MEUCIQCkx9m6Urh9JaYLj6Q9nrEANgri2XnoaAildMDEyCo6LwIgVdPcP3/+KqMQsPake6qW4rFApP170YRpgpYdHGwrthA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":372944,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3bDBCRA9TVsSAnZWagAAqc0QAIk+EMKRoUY0w+Fj6uL5\nhmx7ChcsOoKVAtXWqE8lc4OB5EyOEhCcrg4c0KIL7+no7BRyj7XXARrW9MAm\ndOEvRevNUYQZRUo7z26FV3c0+KJornO0B2f+hE1mmA5v3mleWp6vn5mZEnpT\nofa7yixYjQyZ8Br/2iz5xAcNTQ9AL9Le88MNBikBmqyKTAcHO5r/8Eyh1TUt\n7KohAnazUU8WKuMdWhu3+2bGkqJC0l3vxKz96y8AeNwvO5115c+dK1iByXtv\nSiSSYSG9ajPhytJhzRlvb1+NHWdGRXtwgLzr1TWBXkOJ4o/6Ja/u0a91ikq5\njvnnBT1vWBgS4au0dmi/Gp/NF2Ua6uzUqilo6jIBrJ7B5Q4MjPrn+1dzBGHg\nVaaknE9xK3zYPXCxZ4bJ0913eG0huQZXxiSSoT4Ftp1T1vwS1c3YfHYvOzFK\nmh3iPMxlmrXdlZX78uIbpTD5UHARL79v+YgV/zLfsaK0BIf7jowhWEXinbD/\n39f08ReS2Eg4byxi9FwTa293HTgugODCtc2NMOA3zUoljnqCInAdKwFlgdDi\nVT4r6fGM49VuicjPxQlNAxuu7NZsh2DZT7Sm6gdWL5z2/orpJZfmrDIzw1nS\n5BUcERDJivqw1UOCXpyEd/+BwRi0CHz5G2muCOj1dMUwm6nd/r0lX8RFO1ki\nbskn\r\n=4Cbx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"4b4af41047c2ca811342c6faf2862cff1fa6293d","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"5.4.2","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^12.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.1","gulp-util":"^3.0.8","puppeteer":"^1.8.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.0","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.0","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.6.6_1541255360301_0.296209824030522","host":"s3://npm-registry-packages"}},"2.7.0":{"name":"@yaireo/tagify","version":"2.7.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.7.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"80d419d70069daeba0991ba04d750fc6832deffa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.7.0.tgz","fileCount":17,"integrity":"sha512-/MIXbFyq1cHXNBhpAUIuykKm/iwh+hZrMaOgsJ1RpiyoQ6YoSBnKeHYzS9EEBI4dSSTt2Gwmz1joY1ITUaOlVQ==","signatures":[{"sig":"MEYCIQDyMttzADvfUKHuijsTurtnmRg/oZPhNdV1TfeYNe8H9AIhANIvNAMv3kbL+x4Q5l0ucZJInqACAEk9ikXPf1S3273o","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":383998,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb5zz4CRA9TVsSAnZWagAALrIP/0fWfxMpUuVAdK9LiKpX\n7NrteyOUYqDCEc9mGjdlhsMi4uSXOBDCAqQHdE7UNNhY7sHeYytxx/6a0LDo\nRBdoDatNywXE2JKFh7Q0C0vDDXQ8yBVOdYtaS32J6ZX0zd6aetN9uErNBdPz\n8VJcFa5nX8xeRXUJ6fFT6HwZvYz4EoE/CUGO+I1IH3jwAS7QinsRrl/RaZKR\nhpy0EPcElvRhNo3KqAWHgwrWnbqXjlng7G/edGyi3q3Hdij5SjF2huhiDo4H\n0SkOHksRwmZjfYud7hiz/Y56eWe4o3jZBNdee6j8KkFUGETlCnMm3W454Q4m\n9pE3h9JbVaXiaQ2WX5CcKrm3Z7VrK49rsbeXAJNAmrTKMTAuC9yUCL2hhpx1\nbMYuj++gkbWPXWxNjsTOsD4b4WRaxhrlbOTi9/itJNSSBa23J8v4lJoPvPlF\nJecjnr7QIJrlXugHosamfSApNLLDIQDsFww2KHuvePKTn4+vN4Xx2a1tPmq0\nCj9yA/d7eOjvTf0edCE67OtRxCckK94RqDGX9LlWPtSxN2fnAVCRawc0eZNn\nFB4/DPoDLKlsRUCtCz7mRe8uxGt2Aey5BvPor82VIDg1AdU89zibTHs3WoFL\nCWM7TAwNSZhOHuJtT2BPoZeDh6TOeC19IrqhqSxnmCpOMNkDFuNM4z7K619c\nh9Vo\r\n=ZyBS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"62e5137eb9ad0cc050ad16f3bf2505d756194f27","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"5.4.2","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.7.0_1541881079584_0.14156252671426683","host":"s3://npm-registry-packages"}},"2.7.1":{"name":"@yaireo/tagify","version":"2.7.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.7.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"0b03cce468f50e46c050fa40123c7f816dd2f5ce","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.7.1.tgz","fileCount":17,"integrity":"sha512-Yj0S670i7oU9mRQ2XXjkGQcagqX2WVBQxf1YYG4IgmCpFwuNg2TSBh4zW6TR18WQU/kqJgw9AQV+IhTg3+J+lA==","signatures":[{"sig":"MEQCIEVcmX4uhflj2gRXcUsGFYOFR+WHMFiBkO2Rfq2nSTAHAiAWZUvqzb1XU4wXuPjaDOBBkNVAOnb5S3WwQeWulp40DA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":381930,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb691jCRA9TVsSAnZWagAAF2kP/1ba0Nzfp0Ehzxboom/t\n4t5JXxHFjb4LsDyrT0ZhIVYb07o3hlwCQFQhvmOuiOau7ze3jD1sygHOxPPo\nPfbwM2Tp95DPWNrbr5GKs434FyJGtsmAGz5aB7/oUhp23l9dGh5gYON8VExl\nYW3kD22Ax3m9mBlfmPjGUOrQ+XL7vavFcEHB60RPumgqefTw2mRFh/nSptsE\nPFhNRxwnILyC41OnDFvoWEAmje9P00o4k0BAfEEvopwD1gdLzKiqmrj3uGIg\nsmHUURp9J+VjlkSGD/zmrwtlbtto9jwR1UbyeZjTb2R+jdDqY9zJfFQAo4u/\nxoP17EAxmRBk1FxFdTSNdy9DZMZHd2GzNlYkdZO9nDCIq7WnxKBw1bKvorpk\nl+fJJyBXF6rLmWWiM0COzRqkNMhxeaIJnUHwB+weQnXF6PDJEpAvlU7Wh4iQ\nYjQ65ltPHVT+nTFflnseGh695gYeyX6clA61MXCvtZ2aGWbkCVp9nxKLnSlT\nDg3fJokIeVVMSThy5+0Ig63Z6GgBYPp3FJVPGA/dcl/ivKMA6Re9zn3oKmMm\nq8NO4ZEXo679zK7Y30FeD4ydiZOBLwChahNcNwxM0yF2ZLwrmoISeOpXnBS1\nHxyaU0SrbdbLpg02lUiK8AIt6BCbMSPZ7SUa5fW6/7IExNeD3vGco3/4eLjY\ntyWS\r\n=uQYQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"5bcfcdaf153edb763202af3498d0bc137da022f4","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"5.4.2","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.7.1_1542184291113_0.1823763359195123","host":"s3://npm-registry-packages"}},"2.7.2":{"name":"@yaireo/tagify","version":"2.7.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.7.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"a1ecfc6e1340e739f8e57600220340a6a298b6a2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.7.2.tgz","fileCount":18,"integrity":"sha512-jq8Bipk4YgKULfj85biM0Kc1m9+BM5BOEcEkEJQMmIGK8Vj6Q3mgtvLtegnWIV9rWDXodbHw84vmv9+gAWk5Mw==","signatures":[{"sig":"MEUCIGY08idhcLayyNc618yMOcY1y7mRR6uvgJ/JpRVOrU0BAiEA9n1igabLqH7o706SjkH6Xn+kw93lcXO3eu8IX2M2gLs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":385980,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb7DTrCRA9TVsSAnZWagAA/NAP/2XmqpyyRYbqWXxkqQtM\nq4UsKFvqf4HpTyHRQ6Nk2n7pfTuDyWnJr2X8vf0vj+kFX+ZTz436jtM2Dh0f\nlTXL0HWfRQSj9X0XYfTLK6R66uRyEB8wzpxauIOC8xXSkV/OSOzzIuAVIlwR\nTbDXhV3ARTYiMBnQLrs7rsXiO05ycENXRtf5JifaoWGwVljiCzwduOuGJJau\nVh76we8XbinK6oWmrkQ3TOV9RUU9OIHL2AuJQu5STDGLhlUOTGWvZ2uvPyUL\n50hFdUdYgG17mphET7ImaQf3QbVxn0rLwH/rBN7jaUzb/6GcWbsbithYHnJX\nSCS7POBaJaoQbwPH+svirn/mzB9874CM5tuUwsw+NK6OU2ZTs2YbcO4Vl9+6\neSlI8gPv1HqH+GkUYCbfPWrb7ybDRIS2AkzPjRHKiviACsDngktBGmJaLVzK\n7HuqaHBNP+b4NBF/qqr525gMGamRgCvlrXoYQxHrPoBfr5oNXA2bnfdtbjwH\n1Sl5OfxF5doPfjexqTAXs51SwigXEfa93Fq9IeSb0+k1+RCPXCUqdrCO1mGi\nA3F3PnG8i34ckSarlt1s67Mmpt1m0V4lqb/a4YJcQCwYilpJxcDuJjK7oZ0D\nzoPXidXX716hTQRQpFOvjeKsFCzGtEmvgzVl87+doDAhTYMF07T/0Sqk/7j0\nc478\r\n=hOrP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"b7faad5f0b8eda9b7a537fc660e898cfbd7f4997","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.7.2_1542206698921_0.6480738283399128","host":"s3://npm-registry-packages"}},"2.7.4":{"name":"@yaireo/tagify","version":"2.7.4","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.7.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"4c65cc1b3bc30d1bec00233c0c35e2daf5676d7a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.7.4.tgz","fileCount":18,"integrity":"sha512-HwtAdWJkCqZGF40hqBEXT97K3mehLOb34uwXAHsB5adPtzglIxjHBIJVs5IzNEvqf3RK5b3nCnBxT9NA5T1zlg==","signatures":[{"sig":"MEQCIBDCNRrVVeE+xEvbAbRPfpu7j0AkCQNhKT//mON9OFkRAiAa8I4fIVSwvDA01zK6t9JG52l1h96uXteO58gvq5R8og==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":383794,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb7IdbCRA9TVsSAnZWagAAdt8P/3MK2slI/stLU7deQhOV\n8TqQ2tVJalggutPHVW6GdAl1zjPNbcxBTJadUYyuqZ2gD1wzbbArhID3Y+Tf\n4syUSOlZ+ThfID3EWT3sy42AKcmsLXg2XmdVLPYTvX2ku93KzfKs2g3AJmQk\nmM0+q9uAKcL2/GZt4iEr4twr3xsdXAVE9NkjO+UBMTSEy06gpKX6V5kLoyv2\niSReOWMxK7aNhK4g/0rNIyFA+846Pwio3ZJe6IW7zK38L45DrJ8a3ZWBegY5\nNMG8dTaXSMcoLRuAxPeC9y2UKYVlw2XtVN4ujsNDWPp3h2x0UYvi6CHOZi49\nJAykWzRBmJ3xRPRSlRrLrtsv9HrpwjubWZj+/Z3FNaPpOTLIzXPWsgyI6G1t\nblZcbVu+d3/HAX6KMbu1LZ3C5QwxwYZaJbme8aI7mLGrR1cKkNbNbqKJmyx5\nnW2JxUacQR6eXOjoDMxmy0H5jKJlJBB1C8j52iP6taTk7Vs19HP4AKEwXYF1\n8xaFaSp9qOj0oEaI/mlkTAYJNi1qGX/HFYrtCK3Y3JQC76uEEHJCO8TyDjEz\n3EGHNruboUku1vCkgqsOVR2RCnSI2sHp2ldM2Zw8xzy1eJJs0U+gfk77I/TI\nnzeufFrjoyPAxPmktX7uRCueppDiXPAR/j1ShIv6MJ+aisk/76K2C/chh5bc\n02A6\r\n=GOca\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"ef7dd9f7f4f255cf9242f31ffe516e21ba272aa3","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.7.4_1542227802128_0.7916834005364133","host":"s3://npm-registry-packages"}},"2.7.5":{"name":"@yaireo/tagify","version":"2.7.5","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.7.5","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"7394f085a5a0948c53812497ab0289abcb630144","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.7.5.tgz","fileCount":18,"integrity":"sha512-IPkKwkQoquqsSBt/8HPGkcRLIhuQ5vvY0Lge95GgooEwVCHhPt3c52yEzZazkQ5fCBbcpXVOfBMGKdx65jgXFA==","signatures":[{"sig":"MEUCIQCHLPGLvEdVhqS6IF+5pVeJYoU9hwnunu+k1fpaI4Kd6gIgdA2d6MO0ooc2eUl2YCITGWu/ONu7GBil7dPSRUEK+z8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":383726,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb7fvPCRA9TVsSAnZWagAAT/wQAKMEEMNtMX/KSbY+Jpu3\n9a65kIbw0+TkV/zD6tcbujiJRi0rH7E34a7VUrHS54NqwaPcTaqm4KYbxD9e\nHP6QD+vwWeHfFL9VgBnv7mzkR5L5M842gsgW/UGfN/uZlPS7sFwZOpLlTpiV\n3Qn34NFXs2nssoRVvzLb16x2WarwTTF1OscfVrXNynfQNIUoGNBoemwmDYit\nGYNywRlrcFC1hDBodsSf9sMZQ/UHMLpMOekmEFXYtzqFm9HGEIsdX/SZdYPF\nx1LNz629Adsu14fQCgyt9ao8bGGyBcBosKWC2LxkfuHnk+Lp8F/+XIX1euZL\nabob5KiifeMP8nxnc/tIn1MymsZ6/VEqEqOY1nAiPKBAvHYGX+KsddLj32ex\nmZXFDu0dL4TnFd5FCKDCCVPpoE6L8lvpVEuW+9T6NpiJdAo0cbpnaI4hAxjj\nicZk+ZOP02MDqaUeKmDn3QWB0GbKD1+07POJs/V/PDtDdwZFPLQk/0NV34EO\neSpEiOLKbYGUL1nz0VqYpn4XnSCszPQK8M1wAuVe8J2udgBiOLNMdxukHmlf\nAHdNWokEWl4AwEtQcPs7f3fapCqS9/HdVBlvVzz++ROqru42EqqsM1VugmG4\nLRZ4HTpchtge6CKjvwZhNjN1zY6vAhOVvU+NZ6O9mmBewlVA/ola3GBIlZYA\nbaSc\r\n=n94q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"51c0094905090f817d60f51fdb5c1b8dc1768050","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.7.5_1542323150991_0.801136285305659","host":"s3://npm-registry-packages"}},"2.7.6":{"name":"@yaireo/tagify","version":"2.7.6","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.7.6","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"b70d8b7799dc87bd2a10246dde3ce402fc51047d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.7.6.tgz","fileCount":18,"integrity":"sha512-7leDQpHlURsdGDLgsUW7fpSuAfIul2W4WxL6WdkE8jdCGGxcPqy7KiSv0vKUGF8PWktQ4nqgfiZy6illqvrXmw==","signatures":[{"sig":"MEYCIQDbdSYLa/jxr1dQlDtPlzqPjh5G+TyzZk/POWlwH5mMUwIhANRe8Fxk/7R+QY0S1lkPLDIKPfaqaUWQycJ8UGuasmRd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":383700,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb7sb9CRA9TVsSAnZWagAARVsP/02NBMukkwLwFPNuMfyi\nwDRkYbEK8WLOL3p5KUOQoArRZYMJnZaLUrIAOBOXes4nhOeuxDvo4Vi8Ij4s\nDWU/QZ5d6CIFak6uDxZ0KJMty5xPPNr45+vQwfeMnmEmjS0YyBJn07XmvjNv\nXpGT+2ktMOtOITz3JYBrvUU9vDjUO4B1iVIsJZyJ1hqS2JFphmHUFOKjq/gU\nbn4pFCH5l0EFo4Tp9mzS0abbe+65WdXAQ6YyB+g2ENKN5qxArx0GMeBb91Vo\neHec0ebpesBTVmjWK3cLrxA0wqx/3N772+cX4sAIJQKKYDL4sHKyGQbS5NVR\nmQm3FyYthWinMPvJWGOE8DboCo5Hqe+3CxPdJb95aNw3AoW3kj+dxKLwMhQ0\nWkqro8l7HA1LMXkTzTJO2wfh/qS8X047BfzYbGiFbCs8xULOGLqc73eZ43go\n8sM93DPXLXuHa52RTJ2pZQH/Xg+sp96fxshdWtNzIy2QZ5V1LlRX3tubsvcW\nImzrEY6NVUJMBTVk79h5mTLg5uziSQtWyIPsayyN5Xb1ereYOWEPzwioqkEj\nWMQvrUKCSvPmkwSVKUxfvTUuZgIU/lg8nBOeVq+IC4fDeFHkEiSIo8vp8uId\nis4Sa+jZIfEk/kAokj5UeMt96YzDYvbxissm2Q3FNvb+mQxyKkxSoqz3UnW4\nGVZ0\r\n=uvqA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"0bf8afccd06c390fcacdba36df55af808301c8ba","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.7.6_1542375164744_0.8785526809948323","host":"s3://npm-registry-packages"}},"2.7.7":{"name":"@yaireo/tagify","version":"2.7.7","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.7.7","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"9c2f8c343e278918542d357d6708b0b083934749","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.7.7.tgz","fileCount":20,"integrity":"sha512-KyUkH4EUblWj0Dh+8/Iqev/Hg511LjY81PRrV7lN/HYw+QMWF3uLtYUaDtiOu3WsavELacg7yUA2RwbpgskWSQ==","signatures":[{"sig":"MEQCIDP4obE4DJIKgfbCAe+MtFXE30wmtn3tFYKh6XKGzhHVAiBi5I85cws1mPLcQ4PhHQxlcrnt6oclFg951Y0H1HjUrA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":387589,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb+ZTdCRA9TVsSAnZWagAA1RUQAJsxxw0M4b7iziwlUAxB\nD1oDftQNzGRMgLZZcxUWVbbYfytXmUa+bM5yQbE4sSNn+IUna/ShfHvg9Arc\nBGkAfq87ILm1UE2X319teMvHCS3QcJSK0hZG1c+VoIVE42B3t4wr0wWlu3Ra\ni7NVcmzyLHl5JLGvfJ6n5EYGk1yH7xoWSdU23Kp027QvymZZeCPde5Ptmz/Y\nNPWzbBGaZeweFqdIW5+DQRauLleuDGFE2f36gpxSKhO0szSFjiR3V+xnYjz6\n5e3bq8bmaBMWLE8tv7qaXA87b6Bw1nCKPtmEVGoDAf42IQAprIwf9mfoqYGv\n4Mu031dNhB3wC20wtQ27bI2EoCuclHOcUrPJGrcG/9nmDgptTvQC0k76ZQqC\nspMyvX47DVLNOIWWOMaoHmAVwZMQLb2FlPtA2LDuEteq3/VWeBnAhAJyJxPr\natzn/c2Tcw8W55bTfsXoo1rB01rlFQQDF77dzfUxu/aVhEuPv0Sjb9LAEttP\nTxzFXRoQ1wVTEhVbKe9yUo9vXV+1/6xZn486O5aOh7WIEe5hLhmQClQREouU\nxWHaBIFcTlogZcc718lOMhXBRusYtI6q/tOSm2wwRI9T18D5NOphGkVAxZ9y\na6CAgchL8oKstU8mowsWJPrdE2/6nUijSUrwgvtCqNvebuAhTLMfwXzuEO4m\nudZY\r\n=Y7xQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"cb6cf93b64bdbdbb8d1ff4d8f9e820789b3fffd5","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.7.7_1543083228449_0.8756336878561375","host":"s3://npm-registry-packages"}},"2.8.0":{"name":"@yaireo/tagify","version":"2.8.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.8.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"46fb1af478e89375a477e97f411ea1259e9ac200","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.8.0.tgz","fileCount":19,"integrity":"sha512-zr9KZwsg4KX9or0/wCLLyXNJsELf6L+kBh0ifnSSrzmXAEitsa1oKWSI+SwzP+TfkDR3heAu0J34rIGgH5Un8g==","signatures":[{"sig":"MEQCIC9dI5zDNowgr1V93jhhHQgC1L2UjTVBl/WEuPFWAWLUAiAi+6FIFnZ/2f6O3duZy3TOuw59uFYW/w//B/cZhAIJhw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":316819,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcArXUCRA9TVsSAnZWagAAe1sP/jR7tdzDaFfZ/t4TSqrC\n6ur+Nkx5eJtuydR1yPZQnMSLqMkaiZoutUyZ1Xp0+dUkLcOUTlqdWpGDMDnx\nRTETY967JKZ1qObONTMndwk1/nqBDo+e4BZqUfRinE7jJ2ZOlZZEnh7pq/ZR\nfNZYWiMpr+wSO7K9CibjZZ+u8COh+eRv1uSI8LgvfvfZgFy5ht+qxQb7enpl\n9YW2OQwalq0FHGqKBCSO6rYGX5w1GymAWNk4iKzCrNq3VJSBDM6AUGbLc328\nFE98spz6mLStMoGRdp3z5zXGwX+B/utVB1eueCLFqArHXF5odh4X1xSr2YxM\nqZsQe1XR2p0VQUFsDoLylTgArAHoGK/270ITn3FrbplrWM6hYJtwTcQ3KrNV\nd0pv6+Ao+1QrQi7NPcj3pwDGVyMndX7KzehQO0mJO5iUhx2EKLXNW29AXj++\nrrvScueU1hDLdnB93C1Sz+1u69VMGXZqwp8ZP4rj6UmYa0gHrDP80rCYmiZt\n3FWUL/NKcVMVMEI45CFMPuEgP5yhS8jsGjOtRPQK/NHuY/+Cl5ZSKyRXuJqG\nYg72DYkKRcuaWZ1pngXpeF1fNEMGKjXQiKiLN50gVTaGMbsLlpclmokz0ajy\n5Uj+s+14ax2c4iKflQ+7E2NRrlWjPIKruroTDYk4ST1iWgWhdwC1mZ5cV+Sq\nwCwj\r\n=6zqo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"2537f1df771831bfb17cc74c7647087456bd471a","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.8.0_1543681491596_0.23146294671295697","host":"s3://npm-registry-packages"}},"2.8.1":{"name":"@yaireo/tagify","version":"2.8.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.8.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"d6c4b8c3f26910b2a1ea9ae4a728b4a95190f79e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.8.1.tgz","fileCount":19,"integrity":"sha512-mZ/Qq+3qUhTVtLkf1svUfT+kRPuTDtPJwLpAt/08+TChrU8I3F6mOYSSCEtehj9C8XBMIoUgwByv61qJxnv6hg==","signatures":[{"sig":"MEQCICEDiu8gFk3dKFE5wDBGPSJWoKkdXEz+KL3WqrcFsplQAiBaK3TVUNUdFz0lS1ozxKm+BW6OtBAW+HvuTt8jGxOwzQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":317460,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcAr2ACRA9TVsSAnZWagAA9vsQAItaYYU3TBVUSFRtFWnT\nLp49bYkRIAcI/xOGL3y97uI2Vo6QuKoPmawgGcXw8fKexiqGbrQJmjI9dbTP\nzE090uCdX8uhSkpbMUII4Tsi8u5TEK6V84STGl38XOMOAtdaAN97sJsLC8KE\nJKrbZZPl2kSav18+fweZoU3kbEhGTI9eSTOx/S7YcFUOcASwHItX/KOhB/Cj\ntTSGRxqoKCVmz6tNKNufst030xRkHOmX6RkAyxECM+TZqwiRdpZVz75LOTKU\n+6Mo1rg22NEv+YccyhCYcbtFn1sByNyDqFQOHfN86TTIaA9IwQzvp1+HE6bp\nhvwSJqZe806TcdBJ7IjAz4LOTtjZt1+scVOa7OVBuiWgPQly8s83KNnq9o3V\niDPa3/ylAT+ex0qVBr9IP/PEiB+rP6MlsSnlccu3p7NR8QqL15Vekwkz7xGG\ni5wZI0ynX04o62sv0kh4lUTt0ShRmWw+GorIiZskekfku/QYfyrRPKAhE9z1\nD0iZ6CIrV0xpHDBK3Yx5OCTgZQXzfMXzBWAIAetyDdUpGHeBK/U6weiCCbHy\nrVfyxOSyX8GDL+XceEzowcZe6/ltLQS31dYYaWtPYbKj8YnzkkqrWxOgS4Tl\n/EgHeNXyqS2h1w5ITCQWWcuO4BArV3os+jNu+NK12xNjpjyEtdYDIiNFd1wB\nPwou\r\n=ErLP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"a9cf25fbbbce5bc04c71768e930ddd8c489f3186","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.8.1_1543683454955_0.1478140650029638","host":"s3://npm-registry-packages"}},"2.8.2":{"name":"@yaireo/tagify","version":"2.8.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.8.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"f0ffead110dcf6499dc77952e8a135452efe5d06","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.8.2.tgz","fileCount":19,"integrity":"sha512-abZJgWPzFPQZVPyM+0t88VKP/wOO55cJsdAOH7CPfpRPLzPcDLYr/XL+/rzHi0wwIssn/Qkt+GRVRGh2n9+xIg==","signatures":[{"sig":"MEUCICpnWg+FtNJKLjJblfXQOWtWxHHqQwgfxQRlV5sV6W6OAiEAnEK3fwNMH19K6hXfIQ+/dDNODhHAF5wJgJf71NaSCIQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":317941,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcAshkCRA9TVsSAnZWagAAb6gP/jVXgAmQweGdNdGHddMD\nXqmlpbsLy43Ve1P1Fpdpqwqub4Q5Wk0087ySgveO9khX8JMjcs8xKh8i2x3m\nE+EZSzDOW+yO2+fg7wfEupFn+TnAG6oGBZv9y2phKz05MX07BqMNn71BK/nQ\nENbXE3ijm91L7aHzgarbce6mFhkJa6+81t/m5o5DHPLR/yL0V17nNmUswo2/\nvHKB433wiLQPTcoLvdZX6cZ1irz1fy6p3D7iLuxQpSl4e5/bWQCMu4HJgWV2\nI1v5QrWO0O0IWDJ0g3mrx0naRFyy93dsww+Yl+G30nafY24pEBJhChQ/3kXq\nDEG6Lnk9lHwHPKoji2XSSd+5wPeqPgs9BnRRzYBCbt/czc0KjSFnRPdQzNV8\nLCbKazRDR129qul5OJ15qBSmK8Z17fYp6HbLXdNww8aIqwOKiVyM07s9KBs1\nX0rZ6SLXCzepBmHwxxY6TZPFFTbHgfkZnGf5jvj0pkn3LDLTATS4R/VDCFrU\nMvC/CyDhG5BQ+xshXAsV9Tt/3emp8vm25FTc0JlUhTTsmQzzMQ3BT6cRF+Ve\nYRP8Sl3HcjrNPGEw5jtDrJTOvZBjqRnxG5kP/0F7tgvrtQ0qwfwri0Vr/zYP\nGUb7ghsvzrBhwMkLAXwztLn3GTN57pBihZ6I29ddu15DpmceiXh+CGh2v06o\nwpAh\r\n=prDN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.js","gitHead":"85e4280103c7f7567df55c0806ec8be9c649ee89","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.8.2_1543686244157_0.973624474799061","host":"s3://npm-registry-packages"}},"2.8.4":{"name":"@yaireo/tagify","version":"2.8.4","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.8.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"56c9d887b577dcbbae21631a177cb2c09a845e5b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.8.4.tgz","fileCount":19,"integrity":"sha512-rb0WnzIGFD3rDjfF5Gs/uhewctjcuRRwKwiSN5HL+XCdJNCwNd9Xhl9kC27Pz+clxtzlIbT0hjhBvvolmmUU1g==","signatures":[{"sig":"MEUCIQDcqRysiGlU2U2EI0T9iSVJEBBAvnAWWx0pg9KYd4e1bgIgJib3Z/N3xP4RJuSHEOHlM6ngyHe67WijFLo5RKzjI6I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":319600,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcDDxgCRA9TVsSAnZWagAAAkYP/1q3A1M4GLFkAWdC/V1U\nCwd0HSyLeoYMP9denoRqUArrErUQdNenz1SMNQXsbbt2Y4mdeF2P2GTa3mxE\nX15YI3LDlyiI9rwNlSOzFTUPjripPynvIeV8eWsJOhoKqDMjrzvGFMMgScqA\n+96ik0i7V3NcUFcNVlyyk5q+W3k8M5xueiPc17GC4j8a4dTcjV8zxc2XJjJ9\ni93dbwrBEATjO5J6GmlsbFeJQDUFUmcCFq87V0PnNsnAmryaftZmHjdPvywI\ngpd5WFJuweQzAkv/j9sMmk8yw00HN0Ff/0GJJsciYY0ZSZQq+DbFGROcWzwB\njuHfdan5ZRxHW/7g2qSBotj6HPlom05BWPph6HCdeTkbAzNJrQmUuhwjHKPn\nwgyKDSq9yk++6AB7uPjzGgXaXCXsa/1gPNu7fH42FlNwZQOKMhQEfJKqFNIU\n87RVoQ6DSq/agjvdOynv/9VDBL4OTIT5mLJdDMhMCIJNs9JhQwPATATsPmP6\neYaJCdWEZu2vdr/Y+iRNmgOumi4nCmxR741BaCwE7LWQNt3b2olevRGpVZ4V\nA+x7liNkaMznYjpyAwI1dQjS0I0bElcZSGvHJOB0EKFBqx/wpij1r99/TW2t\nXgKZUWno3DD/s5F5jXVegzx25gDM2ocMhXDbrXVAnDChx+5BCl0RYZFfns4g\nLFJm\r\n=0Zr/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"db4add04fd1a365d63de4d70905017ac43caf463","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.8.4_1544305759355_0.37029630101844946","host":"s3://npm-registry-packages"}},"2.8.5":{"name":"@yaireo/tagify","version":"2.8.5","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.8.5","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"def0ed1cc5cea60a49f64c9f0d0c500f42cbaa15","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.8.5.tgz","fileCount":19,"integrity":"sha512-12VqZI9ecpjYtLg/vIbE/lXMFoTeicfyCX52fqfUwsZR2CokehEUTYqSEfe6QwZ/DGNyyn8pyR1xnn9LqFIamQ==","signatures":[{"sig":"MEQCIHw5Yc10DTf8tH6cD8QKWSIJUUkSJiwv2FUG15MPTkD1AiBoYWCFOycfPsg62Oe7RuF9vcg3UyQJ7cjuqnKpy7OG9A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":319785,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcDYUSCRA9TVsSAnZWagAAEYQQAJsQebnUpm4U2EWvrkO8\n7QCouV8edhqocyojGCrZBCjV+A0YlOv+rPVWNHl3rfun1NuFWrmXtVlyIDrk\nlUzd6BF27Oz43w0TKuLLwpJ14WavDzLFIWcXmLa/vIPOTTeOcSiNgKtmJO8n\nrJdz7RP+p15ntblc+UsczCai3KPyfIrKIEHvKCZgS4rz32BnnqnQZ33sP1jz\nB5cXTobKrv+su8vBufFmV2ieUsuPaVpzgrLYfDoFgrQR1MwgIG4Pt8He+WvS\nHr6FxTFk4il/tk0+I+0lRjcIco7xYuSNlmGHidMvh0b9BSBPKxM0qZdIpKfg\nVf4+dBMX4Ns4Aq80XzPSo5731EsXz1xIO6IJBjp+kkXE2nGmEQg5z5ONp7gT\ntF9zcnmLYlMf8Dyy0po00tXYZTJf2d+qU/hpRrcT9Z9Lm0bCwgMNjpdVkzYH\n6am+rDnXLWWTgTg4SYpPD0o8I0bmBUTpZ5yvYscTht+sXQbD32Lme323Ghb8\nGPHv43NYrBRSmwW78ojKIBJMxw8SpOYMxQJQJznI1fs/TtLkS3mumlS5Ed7g\n7pNgvq+YeNTi+hNVDpdOHOHXcvqg/THRsRi4aLmELQ0CdSnzO/S5WeAtTP8q\nxi+2SIhARWW78tMgxUa8vvEKRNCHLlHoQAs23hVhTdZgXil25Y6bQsdy8flR\n7hH+\r\n=0e3E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"6434921ea5feafd1d65e8cff462acb28e2676b2c","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.8.5_1544389905505_0.41838297123153545","host":"s3://npm-registry-packages"}},"2.8.6":{"name":"@yaireo/tagify","version":"2.8.6","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.8.6","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"c58f2f5d04b1064f9185ba27d37f9e1585e95cbd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.8.6.tgz","fileCount":19,"integrity":"sha512-WJ7EU4BhkEWFJAu9/es617xV4l2Z5XXHNPGFxLyxAhtadpnOru8093qSFv3XMB/ITMuRId4uxiUuaRcWRMKCVg==","signatures":[{"sig":"MEUCIDwybJUAXVBcrAoJ2YL5mKBZjiN2B3g2W0s5hWBMh6nLAiEA7KV7KWlEVJB5TpGwHCeP0LC27dFvuhOGsHuk8qCLgYU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":320232,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcEkv2CRA9TVsSAnZWagAA0iEP/iMxRQtWq4hFOsDFZm1F\n7ub0t78Wn67tUrPYqJ6iRYqXiO3Wjahjpz5pVaNczErNQBRVSDRP0DpmSenD\nUT+S5iAC0psGsx3E5kglxry0tfn/Oy6C7LfL7dIGG1Dbs4KtWTlSOgRC8dRO\nef3+EeIE0OOG1SyhlENf/fE2L7+2sL9B/1PjsSisNqjSwfnPVUxtSg4+VFWm\nzyiC20B2HbXPFoGJzn/zCY0vCtwuYUbqYoM7dpXGwtJnqH36b0h5xCOMKR4c\nOH0Lo1NtjVPUf681BVEOrI88WxfeD4pd15mtpnItebfpexDuKQJEIwpXzvlw\nNvXGWCU2PgEquMVjsHk7r5Dgj51ZAlQmmisTfpefuKYjupWnmTu7YrVFCdtN\nsBrIXD0ZmHLnsxNhSdiIo7KnSCDwroJLgL7AbCqUE5uVL7OO64RMBtnPox4N\n2mGnwHQTNJeDFqyM2CaS6RzL+PgXk1UP6sC7JzBlmkiYGYLEwl7K7efiIW3e\nDslCgl9U7les5RqURYzR3CcgnBRXvyRDNCVMoCVRtxFTf9Oo+HLgeqP8Pbpz\noZuyePvuBePjz97+GsbLE2ZyAEYytqfjRi8vK2egusTbQXRhnbSdRvzIEy+b\nwLctsEP3n5V8sVMP8CC3gJHQ/EvtWTkeuK4MB1ycymTARYyNDoG/MzG/z+pD\nSXM6\r\n=Z855\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"c954d26404f2e2c411073d25866095a44af20292","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.5.0","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.8.6_1544702965775_0.10005820921051711","host":"s3://npm-registry-packages"}},"2.9.0":{"name":"@yaireo/tagify","version":"2.9.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.9.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"8ed71ea3c281bc59259551be245fbbc629dd184a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.9.0.tgz","fileCount":22,"integrity":"sha512-UbK99B0IB9IniscHWYkBqnc4JP4y6Hl5OIhCT6TT9hXGIgszx9BmZDyDaVkApLc9ek7LycsB3e72h5Xvtc13nw==","signatures":[{"sig":"MEUCIQCwaV9/rbC/oJN+nZnjLcygyo4zpLeJvC2yqP4l2Mj+xQIgTiSUa2AmrL7WpL+tQRUtyML7bfstESXrOOruxKfFijc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":337894,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcFjL1CRA9TVsSAnZWagAA3r0P/1VvC8pp2JhKwZlR1l/T\nvQhF607v8WbCm9uh1ghslydvsxZIie6tqCuGSQRqtiMgng43KuEKlEUGgEna\n+Zegs7RawJU9gfJh4o5wsjy3qdKNh8qGn9Mx9kP3Y5gtoPSQjkxGoJcoUo/M\nBXs9QxKHph/mqpNMw/ndG+ZGlZpjB806iKJchDjiPw2SwgfO8r1wSy82wD45\n7XKMESmbIkIBWL+pO2N1VoGk31FSmK+XeSXHjV81DcWzkiVgmmuEzW0YOB7o\n9VAwXHbl+4N0jhrPorQSozhh/Hs8PsgZTiZ/R1jAmM4EYYRFb5AcWHfme0uS\n3ZEv9wNa5MMJDpIKrzT6wgnTLDoNQQMUCrlWAt3daldflQavcIutfijZe7dT\nmGJAj3cgkwzA2JE8cnz//jT5oNbLwKVXOkerysuRusHfxA2V/HTrc0gDAIHc\nqSlmRtk8LpkMaPLZbCqyoiga8PZbWfM7ZUAszNVdXbu/ajAxLuVqS1fyrf5Q\nTuyG+dSD0zjMAr1EzOFdhqXJWa2YGL7Ywhdg3+9+fuS7FUfdy4qS6ayGgzZZ\nr3pek/IykWsnO+nYvPLn8ETMhsWKmUP7xeSZrck3PEFUFAGVCQRiEKmKUMWa\nKvDYiOIXIXt4eOjI3Cv+uxObj2TQ0tBwGBbesHkKhrKbYJwQhekcfoAr46Xa\ntfS7\r\n=glBq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"821968c3957f65a5137b8af9c778a69eee37f2b3","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.9.0_1544958708592_0.0951486130782826","host":"s3://npm-registry-packages"}},"2.9.1":{"name":"@yaireo/tagify","version":"2.9.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.9.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"3a8871a739d93b931f364956bed91bde92cdc8bb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.9.1.tgz","fileCount":22,"integrity":"sha512-isw6aSlin0P3i0gNbFrd+LCwzKoLupsLYF36tBKZ19PZbxNMBXSMtjam9hu9M8hVXEOS45t7FsItp91VgphWYA==","signatures":[{"sig":"MEUCIBVBaTRtwOE4zuIw4ui8M+sLvnliwaDQRGG8iWAKq6sdAiEAvG9LKoLGVxqwEKxlR/RZO/ScIUCfOVrKmCe7sgaJPKU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":338057,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcF2zyCRA9TVsSAnZWagAAyIQQAJV1xlv6AatRBlWDDrpr\n1nMykQdDz4WcTBr4jem9ayN7dhQNRZXgFm4S1O6EHF7VEvifwkJ2CMHjzCA8\n4oWiXpQ5VdfFsVBClgKNyofXm0JGSSfeOl33g9uqQilsH8CiUg5lIYenNHSY\nrWBl6e8S7SjVlD4GNA+EK3nYq2/ZofsZsj3Gd7RqhvjOOJNK6G9GsmoLDa7U\nlLTGRiRQRRNlZjkF/yi7GfBaf5gk55LqfKWu7l+EBzygXKHW/JBrz/odkt4q\nwCNKhHiNkBkTjR3hkYrXmW/LmxUPPQs86nvIUBoTFs02e7Vp1YPMkjldx/SR\nv26MVSZ1bSa8X4UiYRBiR4oE/rO8+uPMg/XTIBpkG/qNIbmjp+xfLNZRITNf\n1Kdfh9VRBIKPf1oIXyC1aU2MqKBrokb71wRHAgtlViUDKWyOzEz4UAQcmz21\n8OB16CE9UfXSJ2TjtDEhWOh0avt+/zdqwH8TDHsv9PIIj4k/D5CYpWN231j3\nu0ocvlWNB2AtQ5tf2dXhrpVFkUAO5Uf+Ar+gXve6hZte0cNjaTbcehwBuJZJ\nsrYC2WxmjjAqfLuTbf78pkKi6bcGhW4wMTEeUzgZbso/+E/MZOD6VnKX0zDI\nHhaFqf1qiZnA1IHKrHfiSZIqCMZMIjeveLV09h0nqtF1PKzjzgADPylgIpL7\nOQCJ\r\n=Z5vp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"d21bea94106c58ad6e73a05ff3367a427a9fa959","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.9.1_1545039089157_0.6563216426255731","host":"s3://npm-registry-packages"}},"2.9.7":{"name":"@yaireo/tagify","version":"2.9.7","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.9.7","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"196bed64d844fdff77a801fb3eb15285fa163e8c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.9.7.tgz","fileCount":21,"integrity":"sha512-pNdYiYMMw47EME95CCZcqp4tbWdgZKzKk2Z+IKW144LMbKAa48yYIWF5ZCua1cZThaOaI88TNv/wNlapQ4GXBA==","signatures":[{"sig":"MEQCICDQsp4G/hCtVBUd4Rx9BD2VoaP7F7pmgOn835YQC8/uAiAxJVC9eNd2Z19R1dBn3Jrsod9I1OZBJIAKurPC4cdXUw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":327213,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcKIjKCRA9TVsSAnZWagAAA8oP/2v7+apv5zmQX/3Xk82c\nDOerywhm86McV1gEk7BRRiMudsm/yJSHNCPx4PG+rKCJ6pCP5iEGpZsodYd6\nIjsUVyFfAtF6HlhqNUis4iplllZq9a2LUpkHAw9vYkXyWYz2AWdFqSKhJdE/\nhDRos4/xXJ5esNU6Ofti+whnaWkumROs9nUkozrUiooHhIfOAre7OuEsm3WQ\nqxxe5nZCeEQJTVY+O6pOz/+NCtaCjI41z3H60IA9QJMoFod7m8RAf3m0fPgc\ndkfRWGoYckgB1DsnujpynpBAcwr54WTkD3Cu+Xg1sxwxj3RXDjoKrqcQ3nHf\n5klPQombAB2w6zSrt4Aognf0USi7eCzc93kgKhSbyRr8CKhNo3CGDBc2AKBl\nryP5Uy8grj1fAGBfODKNX4ZE3AdzgWYpez+DkyidINTAmDBLqdqwa0ZhBihQ\nBNHDpy3BdnccnwjUl52uBbimNd9yPl0LiCAGyaJ0pVNmZtX+4gMT/YuJMh3F\naRZTL9hVoKRg7jEcqQT7daYKWph+yyLC3RkaY9IjC0w0XZk3ar4Ibxsz111H\nUCdT1JUlsAUt+j3IF2OwNPCuUdmS582G3mfjvXM9kW1+XYuwZa2OiucvfMjv\njxjBzcbjVhmH4530zTj/qBqbBl7cTC0nxXz4fPk5sw/hXxbxtoqsFOqEHmJg\nK3u9\r\n=hG/0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"9e2436fc7a3ecf2909bfb2b89f47e23b5926d979","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.9.7_1546160329556_0.5160466448926178","host":"s3://npm-registry-packages"}},"2.9.8":{"name":"@yaireo/tagify","version":"2.9.8","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.9.8","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"8c6070f7f2fb0e90c5290f32c20d2bf86ed95f4f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.9.8.tgz","fileCount":19,"integrity":"sha512-aoVzZK58EB2vSM8ttoJcGk8rPC/srmJKiviyCNj61lJ4+8D8N4JXqR2pfsuo5EjEZLafNaV7tdyEe7MOlTX97g==","signatures":[{"sig":"MEUCIQCouPegQDusB7h70k74bS0w5G8GnjPQj76LQdLsJ++YrAIgBYu1BAPcVmROdqbTwo0kmyjMgFSDAxRI20KxdUotD7U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":322134,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcK9tUCRA9TVsSAnZWagAAXO4P/2e89KA6XodNZR9mB4Jz\nq3YkeKwFuP0qkxrozFORrH+Kj4cNok22hKG7C9XHgv5TuBjaisGc3ouManf8\nc2gaSEE3zDBsTGleASW+fpWKVrQiv75RUcToeSdHxWfByZXS3Rkb663M574C\n7UO4tbjja/TR9rgt38uELqjAJv4lq7giXUE6aQfpI6NcqlhwQFPIQsSFbPfc\nx9qorTIyLIdmaOp++h5KFJQ+v18h2hRTCVowJvs8A+sS25X1tpSeDDioMydz\n41TQu906/AuAmJ2ADAjQsu6B6jMy34EVfHzPrL+zTwdV1wNleZUbKUZ2g1FU\nPc0hzGKND4IYapVnj/cw+InYv2SXEHmC/C+i944FtixlZ3rvazisYcix9Sib\nM8BrIvt211L7RcDidVu1Q+V4cF+ii3OizYdtWJp5oTXmCi1UHHXlQaFKr6FQ\naIoEnoSR+yidVDDnIeZ7NL604clkK6ktG0nFMFUfBj9bnF9mVlvpFw2OxfD+\nT1Xwgj9BN76wUDPfcbjjxyRX19m7SFpW0+/covC29OGGe6rzlszSywdE8v12\nN+GYxhbImHQTjsBgJj9fESXl+Nu3Ev7AwjaVOk8hy3nHuiWKe4CU1QjdPWno\nEbaYSvDnrHCQrdKk9hOjUOxm4uujNJuMYUca7TxfRi6XFUTwZw1ecLl9rkRw\nqWG9\r\n=9ZmT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"d1e9582f16d325ced2947fc6fa907cea93177c09","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.5.0","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.9.8_1546378067336_0.13640499495655045","host":"s3://npm-registry-packages"}},"2.9.9":{"name":"@yaireo/tagify","version":"2.9.9","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.9.9","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"703cdfd63f5e23493952ae2abcbc3e2318083c6b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.9.9.tgz","fileCount":19,"integrity":"sha512-+OSJ7EjdQzo8VVGktz6GhUQ6JH1aXZIx0KVETBh4fWDcfi91f1jXgKPI+pJuyYJUtyb09qDhVMmM8qRAhxtw9A==","signatures":[{"sig":"MEUCIF1SKuaAQ2mQYkj7hcbojPhFLLrEKGcK3A1rwQfYIePAAiEAhJbG8kxwt+yxQSj72i2sipJeazMMI2B+ZgVDo6aXoYY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":322518,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLR7LCRA9TVsSAnZWagAAWuUP/i1ocYZntJS5xrUVkzg6\nvGlYk7X/rIUaGIhjn/xQxef9ZG3ZQfOsqIU4wtmcETozRWVcLiI34hF926y7\n2sFLVR/ZHNZcznyOD1FtqEzsvEf9Mj/yhhegHZUp6ImkUubR6iJLz1axpyf+\nPxgU4yRh9SdBil+SAh9uCUWmKEsmt/vQ90WF2KrEnQILMfUq+e3xPi69Nben\nJBWmHhHSaydLtx5JDp8sdO/LOuQ6zqpApVVja3G62h+QFzKg26X8v/1oNwun\naRktCNjlZAcXbJv94YH4U+dF32zAzQauJU/abiyhRblTW1TzEwoL2/GSCrXJ\n84j8fsfwbHupXI/xb5c2Aap6qhYLILyKW/UBveuZOErHbqzfZOhM+fwCeO1E\nEwZbsnuFpMSwPKxG7Mn4s9rpOWpETpk4tBoKXEc/xemLxcAnmXZZKnk4jHEM\nu7yS0P9K45RS+svx0XsrLGihUruZY9gAwsA5R+ZHipXC1iQYPwzcbxjwIXii\n7/xgO+SzEnjPdPfFhBznFHco7Qf1kKtGB/QQLmQdFtcTEWuyc4Y+kxYsc9Pd\nXiUHfwqiaitP6sp52lOqxINqNHpRh25I/WhkRa0tx5XrUKiIvbsmU2NfIKo4\n9B0jorT/OEZ+H4w95/wexZ7GHmnOWf5OLKZu5hCsOQrs3pXw9sxPc4isTYHV\n0YqQ\r\n=N79v\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"610d7a558175c58dd2098232d7da76b2948a9373","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.5.0","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.9.9_1546460874027_0.3392113816328268","host":"s3://npm-registry-packages"}},"2.10.1":{"name":"@yaireo/tagify","version":"2.10.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.10.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"a7b03fb94b35f8eb156691b36c35230688f902d6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.10.1.tgz","fileCount":19,"integrity":"sha512-YPF2M4yfWrqOo9PAbHk6xRze2c4b6edcJ6s+DvSaOTBo6WL9O0aFUfMz5eSM1doHxz08NmY90mewBPB62aITVA==","signatures":[{"sig":"MEYCIQD91I0QSBOyhNxN41zDnqcm+3mPXq5/EznPQDUbPtwUhAIhANyH2c+6L+ajPBlLKSIJxBnXehzjyfIQlgZRx1Kk0i/1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":324423,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLTCuCRA9TVsSAnZWagAA4HwQAJAkSGbCTiOh5htsx5tC\nVoffoStUTCC9xyz3BBAVK5f5nrdyzzDJFjtgwLqemW8s86a1yK6Icji781x1\nk5jrtsT84Bf8fVk8DMMAsLIE3KxXm2WxYlbB9wOxAYDxeV6trFgW66Y3umtc\nrBaNQwDyLE/3WAvaIzo790mgvD2xJwNH1PxAPA8h41NIfhyFm7wf62Lk+gUr\n/FL7+NwzI0q8FG0J3t8+Fzv/wX2W6KgA+gJLzO2iUOhwRK4bvaEDFi2j5/PR\nA6bXu3ea68Usku+zCk8A8/+KpQ89YHDVjQvTooUuwv49FWojZ+waXEwRGx+W\n22Tg38nuT9RcTIKLqAYIJnYVxu7wCWWlj5O/aOAi3Q8+6EwLgtCDuRvKgsmk\nzUHgsgXKQxR+21r4w7fyadO3cMEge5tvOqWfyyKKDBzb9ehfaxsp9eE4jzR+\nLb14gormz25tf7JiEA9WDkIN8/PHKMUpXREAGzZaVVkqZdmtVGQ5ufXxKYj8\nNA5n8XEo03OT4XdZgQA+aKPGqyBFWTPRSSbkviBaLD2jB/bGqWtRVryAdqwM\nVTqNahqBGgjV7L7E4Y/McOKDH7gtPyf4W4q0nZm1/6iLnTNl4kMcUs50f5iX\nK6CH79iREboWKsAfFQRKnwG6FSVB+lff0MR9C/ZQ8qdablji//YftDfaNaDa\nyCkd\r\n=y4A3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"e08e96edc7d9f362e497e72a46d3866fefd7ca8d","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.5.0","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.10.1_1546465453442_0.30474844476202745","host":"s3://npm-registry-packages"}},"2.11.0":{"name":"@yaireo/tagify","version":"2.11.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.11.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"8b527a96985f05a05b2dbd4adafc7e1b043ddc44","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.11.0.tgz","fileCount":20,"integrity":"sha512-OLBH6bP+fXL7fjPmPlWHjY0HZ9QJmq33kkdkyYxgBqkqyOePIPH+eVR2+aQVz0vOwGXIXVAjspEyrN/PB4myrQ==","signatures":[{"sig":"MEUCIQC57ZSbKz/Sow+9LyAZHIpsEXaA8VQUQiq+WQ9H8kyD+gIgRQkJJ7Ha5R+rGTjpTfyzvM9UZgnUVsZS4fbdWp2ZvT0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":370359,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcTNj5CRA9TVsSAnZWagAAXxUQAJGxwnWnjrR/ksV8cRcE\nnjR5kyqiEhkuRJbmRWn13atYzpxtNf6y263O7lV33NMg3QALhCrblVEx62Xe\nx2qbZnt7EjiO/6N4PQlZuFOkMgSsRra2CKF+b4g88aN0li9n/zkfE/JNY3nL\nu2hBzvnHHmO9Mn4aHjGU908qcScSjgTwYSF6HpEJYHPA88kGCtNfTok1eG27\n3nQm4iScxFhMeLAGdZ8iodT8WAcSUcQGgx42Y2E+Bl+SSTCjQ1CT99IclaZr\nTuLGxrp/gUZ8ly23JNgN61nojE/4yO+WtPSi7hyHuDh5aa/ak97sGdgDFwcJ\nSMuqmucxuwUwTzwU1TmkRTSahd3o/p/+a19c1IzD0YLU9Yd9B6wWkkLBB0UE\nkMInVe8NH90mVcxgiEjKSMrGfPmDpxgKSf/GpUyEnmaPS64Ra2hNESCq4dYM\nN3UaCWaRIpiJ4VTRIx359IlIsKD5D+moq4FrDXvvtqoqbqAqfm/SUVZ7iSNc\n68OWGIy8rSdHA4t2dBOt7QsVpjXatHGnroo5RVwHT9PCNozQB0QR645xG3fM\nTZbkKwCKQqqMtNVHQsmLfi5yfI9MLoOXvJikakye0Kwe+gi5b8Mkwr5mhAbm\nW64+cpo3KBEjZvZRXyt5LobK9yXKhTg9/sPdgR8hZjR8tPNC7vRdZe+OTIxR\nKHfJ\r\n=5LMh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"2abf429e353731630a0481045805d8c7d76dc99e","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.5.0","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.11.0_1548540152534_0.7499182149446166","host":"s3://npm-registry-packages"}},"2.11.1":{"name":"@yaireo/tagify","version":"2.11.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.11.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"931868256a267ac2a14ce997d06f278d721586e7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.11.1.tgz","fileCount":20,"integrity":"sha512-Hru8stcRVa3c5xhRFQ2+VC6vjeSSCcd3Q4dQtraOBe07uXLfmsLm4Astbxr/nxD0/Mo0bNcY7Z7XOXJtV2t+Tg==","signatures":[{"sig":"MEUCIQCdQZuHCf3OZlo5iopAP9D1HnPTHYpZRzbDwFrozDOL1QIgH+SRknJxH6oGVPBNjszYK/C1o9gZkWNpzw530MHnHj8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":370356,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcTNmOCRA9TVsSAnZWagAAHhMP/jt0CJBZ+gXEt0n/0iEj\npmoXTdJSn3HVgt9g0mixs+5erV6slBPC0T2QJABLNnxV7W8G0Jvq99Dt+X1A\nm9yCsaZgOGC4Mxkv1v6jOeGbTUeN/Sjuwhv8UKwa6B/m8HJCBQmmbaxGbpip\nEvKXVIrY3E6b55Mbz1Tllh0XgyerxvPCGifVy3j6MALDgAGZAnV5s7MEdLN/\nyPZxjbZ7KXsfwJ3FeWuGeDylfbJoXLEE93+Q6NyVW/WTL8TEioC2uSlD9N04\nLIREKj/jqUg6wiQ1jcoRkMEqNxclde1D6Y6mdLNoooBpdps1oaE2f537bHv/\n4lQLad0nwXPIslW1mIw3kVEI3chuovrswMpgEX84ajfTpLJd+25Cyl88IoPI\n+s89IfujO5inS72mEEiwh264SAtPRRMvkIycTdYNM++KnMo0yFdPw6Qw/YFX\nEBVNq5fIh3BLhesehKOVlGE9CRCC2dYujNcdVYonDqCTLcvdcv/iNGHSxR7s\nfc7a3j9Vnwis19y+TPTJBCNr9E5cdjfwI7UaRwcr6ggpEshqhF531p9z4TEO\n480LSH8X3FmSwZHKF6oWltRnIaNyltfS+kvSs6zmktMqR7hewI1nZQHPq63J\noZN9pr6Zsu8YLzS91tP/Bku/DPSGxGO5ZadjlCI8AGCZB7LVcwTVDrO3Ol2x\n6JP4\r\n=O/Jl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"8c67d9b17445430ee185a207d88c2fca7523a8fd","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.5.0","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.11.1_1548540301416_0.1639716530464459","host":"s3://npm-registry-packages"}},"2.12.0":{"name":"@yaireo/tagify","version":"2.12.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.12.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"28e5d144c22ea7647a2be9008551978653f1c700","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.12.0.tgz","fileCount":20,"integrity":"sha512-RCnbaQ8up6QhjGtWue9Wayz8d5uQTMTlfe6k8/F2iFRg+3NuEkuK/AIhmV+mBB6qUk8Ph1CJaysjS/NnSqXrcA==","signatures":[{"sig":"MEUCIEtEdkB3mwF0lrBALzaUiFouKVJ2gtNOEeBP38ixROqVAiEAlm/VVuRCjTNNvcj1s2jrSJUAqML1cpWRUVhTbYmBkp8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":371474,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcX1K6CRA9TVsSAnZWagAAOCUP/1i0i69UOXq6r2qLfIGw\nxmkt/Ob4kpgeho7HE1a+VZuGs1iwUAtlpi3X8Rmg77pgbVohOjOJNRhcUP7i\npggjkVly8KcWqUXieWsXMnJ489w8jPpRTu7a9xu4paAJFPasOxsytJbSElXI\nDL/bH4A2DZAnC3CXciLqXcNGGklM6vAkx+vM6KTIU/uXXAze7UO0lvT+uDPj\n7UEUv6HMqtuxGJLOUJ19PPqrJPjSipH5mwGkUjACkvvxaShcRdwu76lGK+HW\nimmDmqjIulJIQN/NMA0FaJNi/aSCD3rtL3wk8XHNeQPxeJ7JM9hXgddoSbPj\nisjaHhGAloyDfJ7d4i5IJr7rqOHw18Tm6fuh/lAwt8j0agpUjIBzFXCYqra4\noOC7oQsVYNh1ZkTB9M0F5lLBKGk+Pyhbf2NRE7pP31WNcWjS5QzVJTaj8J9R\nm4E/HHk/mnrSrwWMlkTgnnv8R6PxMtaUEAmralz4Sc7F94shY1lg3LtMWJbx\n8mg9yiaiU92HmUZb1i1c1tfdN0vH1R4oIUMCj8WIGo072C8d8ZMCB2WZu9kD\nyR9dHy6yMMwJTGXda4HOjF4At1wqvYru1SQGk7xZfrSJJXuu38AoR0JcSXp9\ndsXTC+OlJo4CwCtWmOdz7amNkjrf4hgH+kBup1VXYfl5JqtD7TEORexjomoN\nkRYt\r\n=SUUB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"cd9b26caa1e0b26393afb6fb659239efdf107ac7","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.5.0","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.12.0_1549750969256_0.7781113571168763","host":"s3://npm-registry-packages"}},"2.12.1":{"name":"@yaireo/tagify","version":"2.12.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.12.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"d2cc13722aeb1f775774c72c6b6d7183ed751fad","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.12.1.tgz","fileCount":20,"integrity":"sha512-jtIn/djP97XEMJd9eTl7T/W9McyPZ3UoJVhcwNnL8s7sx2qskBjjYUdrUlle3i147AFu8LlDOneO8mgt4FP7Bw==","signatures":[{"sig":"MEUCIFr+P1RiK4XK2LoKd6ehufMxeSf+3KwTk9qZRKabsgb5AiEA3wPlorA/9z/4DTVhNjFQ0ys7UGLhPII1w+s4CoOgOfw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":372593,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZdlJCRA9TVsSAnZWagAAtccP/2JXTGNc3ZNgxXS+X74o\nL1L0hl3iRuOVy5rhU5xgVJ6Kl/uAmeDY0AAYIC2iuf0JwoFG9pox7s80rUtB\n2ULv+ln/GCHFwz7lqbQJn+HdIWllXOC080hNY53sSvBoWsewaPwX7j1BRR7l\na55JBneLb44as3vSs3VNE/OoQdafeSrI9G51Agi8C16fl7DZi84pLUSZvcgG\nTHqasRe5b9A0XnRFTRXGWpzMEernA7j67ouzBzo9NQ/efuNqfaUeaUGqTYpg\nB4lLz+b/KBLnZ/O7uGJa4gsEghty1QPUKBdqbgaXndjLAZ04iPLQTZIlYKw3\nS10nssJSbytn3L78NG6rNG+H7Ra5bHmbigqwebjlMYb9NBnjjZVBCU8NQP20\n1VWGfpNLrytgKIaTTidzW24r43xHNHZEMZWUxy/wQaBOTFa5a1520wS+C2nC\n+3hessJmdkaYb3rJ03YqzvB0/6Tui6V3hf8wyHJbMIcd4n+adWjmbIjOSQPG\nRCT2Rm4Fk1A4JxyWwOweUMfirToNl5lbYtmBvGpa4R6TQVT87ZE4V5GFCGGc\nSRYDBIjwuOQAxtKxOoApeQa0kn2dTNRxykI58WVhFFPhnJo4zcnanoBHa3wi\n/fc+nWesaceFufCIWbTZ9B8XTkcv36ua9RJEOpPXuOmafDa+KbwJe/xizXH5\n/4YG\r\n=rux9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"f55b303d1d35f7119e5e9bce45c8bdea4fd2d420","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.5.0","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.12.1_1550178632370_0.017853747760266936","host":"s3://npm-registry-packages"}},"2.12.2":{"name":"@yaireo/tagify","version":"2.12.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.12.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"175a386c91559ee8b01eee9140b9b6bf52f62ace","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.12.2.tgz","fileCount":20,"integrity":"sha512-PkXnOaX6hemr/uD+/QYDE+pPUv+kDg0FRoqwitC2Zcre0bagF+5wyFmcVdCaju1II/MDdSC36Elwf4pLj6ADeQ==","signatures":[{"sig":"MEUCIQDBNyebZV91Ll0rXy++hThzUPYJIXN6OZPp8oHBoZfTGwIgLb+vwuE+5XTu6kCbOPsvbTNhHq+Z6bUh91tsknh/IMA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":373146,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbHB2CRA9TVsSAnZWagAAiXoP/i1G3F89QHdY9NQ3LvLM\nfiQWBiqBBpnYlLz++MEzRepRP3a3VAHQIdEI/X3tdmbvhHVNiNcs8fIxLbmI\nhfzmcz3qbpIXScwGzEZ3IV7CJJY9aI2ohKJ07Km0LQ52YRacELi/Y7e/n3Bf\nVyZ2blpS83LaC3bU3U8/2qlvrQ1h9B2sS8mXxWeXsEldXTZ638u8QQivepKT\nBd6HniVz83YEPW31GKtkU6IdQqO2TZXDiKzkpUc35CzBF8rMoXA66zWeCf1c\n2V7oVuASRBaN18N0Yg5pp6eGXnWSOlVVIMtNp/AOPaHMXDYUf8nqIBePDTOW\nGkAkSjIOPPoNSQg3jSHLjtjiIosNLEDZdxEFIlf4UY9ni2PGMCBLeQ26IT2n\nu9RAJMqyLj4kl0Pyt2IDR1dw7GCLLbtg8+UsO3dD0t6xqN74ji/8Z+x9CZlI\nl0Y3n+aeLpjCBng8YaDSqoHqAFAyiJwGt+/9nMtfcZ5XWHV0K2bsSIVSGgFb\nkZjEI+UhvfgAnap7i0x52+qESKO0BbcZJDAIXMNsyNIRFup/IQa2ZWNzSV5G\nUYiGgc08RPXt/rW14OHwafkUXSBduJaU8ckZBkIdh2BP0EvSuXKRUzrFlgmY\nmLRJuepA0drx5bZly6z7UQl+0GfNQHmsV/fO84h77xuNzfwNGGVP/IBISP5u\nFwBp\r\n=VhiS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"61fd42109322e5bbfd69600dac91c27f95921b50","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.8.0","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.12.2_1550610550181_0.16609849060363624","host":"s3://npm-registry-packages"}},"2.12.6":{"name":"@yaireo/tagify","version":"2.12.6","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.12.6","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"9a79b9970067c38d9c732ea957c306c11e51501f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.12.6.tgz","fileCount":20,"integrity":"sha512-Ayef93XG9ZObPUa+YTpUkw4Fvc3xscyHhKJt/z0BlwRaWc5sudD3J3MvOO9aTcRcge0MdkNGgYprcqU9sqFb0Q==","signatures":[{"sig":"MEQCIFcDpBKUleHIpNsmsJBbb0MkxGsGiTdhhKOaK9A6qBKtAiBO6mzBZB/4qlpageuJnEcq342Uu9MVyLe10gjJW4U/1g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":373927,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJccZ0uCRA9TVsSAnZWagAAq1oP/2umE+pw/65XpiMbemGH\nE6WwPCBk8S/aM6pGU8O5TgZYbf95IhFW9N/EYXnxSe58Z3/k5u0KXRyeUsPQ\nWFXB7F8po8DrJ9kb+ohs3vTzapHYOuansYTQgFnJ4p2NPazlSmeHXWT1i9Pm\nv37kHbcagnwQ6XwAYhkY+HDDcq3T8NDPBIWP8DDH9cv3KVmr2x+CRn/p4eIh\n6vQv47+x5GjRN2YLY/zgvgV7FrSwe047wfhuysBfpBYvbbX9Bc6WR1ukq/Zw\nmvNoanaz0OvYPqK6nMA2d4zwMSNfk2t3So7IFOlGKdsl71vw17y6EN8AtcH/\n1Lj9p9WLwT/uMtvPxnvZYxZpd1YMuUkukFXK5HCq74kxUM7FTuxYTJXYI1vm\nsQPxSxGg2vtgAvgy8XQk2LrVU5OdHn9cgTbobY1/F374XbQ7osmA9CdBLIM+\nc6wKfD6MTQG2ipLcrxCCaWPFwNg4pCDHDUoZi58ZiArwzCZEif/4kH9mWWZW\nc0qHCIDtFuONo47RbNDHJ0RwsUpmBddb1BQ1I/uvF3z6oSy0q2L0U6VRY0WD\nmImpy/qO0Kd3XXpcKXFAmDnYvbKPwJ26Ka9adLB9IcBYtc/lI61Oi6SUJUKo\ngVDeupnfwHWe0RUJVZ74NqrSLWrWgZcSUljusrEk74z7sTdPy/1pBncPSlIS\nd66F\r\n=lrLr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"0839fcb8f55b1e57761fe41a37e02fd8ef5ff109","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.8.0","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.12.6_1550949677308_0.641484418068446","host":"s3://npm-registry-packages"}},"2.13.0":{"name":"@yaireo/tagify","version":"2.13.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.13.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"3a55a1eea8e8d1e01dc3c65fad3cf7119252f071","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.13.0.tgz","fileCount":20,"integrity":"sha512-r/48qHcprxZ6pTGZfwRY1XxiM6VBq5hVakfdeg6dkGVma7w+RYKVJupAS7FNSJPQ8jvIDJZMNNm+Py7vOF08Yg==","signatures":[{"sig":"MEQCIGzsh2Ls4XYh3nOsF8iMrH8Rb0+Cj5mqfjAUYJAckkqcAiAhPf/2uCQ5/V+uYjBl8PBGrAwsUofwFyWYtsTrfoGrvQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":374157,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdFh4CRA9TVsSAnZWagAATEsQAJ0HHTAQlM0j62FT0Ps5\n7YrC3hFAb/w/pkZ0smn8oGVWyso/nxdJw3jIt2iUBgdRa0jQKNdOWCAuKFYz\nLJBQlhFHm952W9QsnqnH3TkLbZZfqBkWpdfz1C9w4f0/1jxQFihPpmZsXEve\nFjBdpDI1FqyDvoNCSWjNBi3iPO/AdbClgbLYaItlJFMJkup/cj76JNqwvAs9\nYfURYgPlfa1WvnKV74MnEWcmGgvXJUOiE3H/ukumEQ2z0CCmY0h2OdDzEU7M\nFdiYS9oJEu5GdMyivC9df2v7/cuDb2elbpYtJclRbNXrtN5CSYxyWlY03436\nqb1GIlw229Ned8PxdyFc4W89Ycxfg/jFHA5Zbwy9yvv5XTvFKS1zNcA5oHUN\nejezQ93qqN8CmQ52QwPZtvXigO+68dLIw9Lsv6GsQPnogSCgXP2p3YLhe9VA\nwdlKN7ZgHMOkoUpjuzQ+cU02crPxgwFEdbaGSTvmctSrg0cVou/ZbiUz1IWp\n7+gQwn2MsUYirkmUpCkoJA/FSFQzhw2A6oj/KyGwxk7C8riAYPt0iTCCzatM\ntQ1CTBNJD3k+GZpLXBN9enPBP6aDWU1Tk+hdqVP6VVOse/lRxdlYwM2egLFX\nNkyaoE5PmId+3NOdkzU6zqQWmliSXxfbjrCuzCzPZwAIL1C2/PtlAKjwgx6V\nGCi1\r\n=+Jyj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"9762234e699cef9cf1eaaa96259f1c596bac2827","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.8.0","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.13.0_1551128694940_0.15914087315087921","host":"s3://npm-registry-packages"}},"2.15.0":{"name":"@yaireo/tagify","version":"2.15.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.15.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"49cb8ca425469ae4cebeb52de722e664fbb8b185","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.15.0.tgz","fileCount":23,"integrity":"sha512-l1C0yb6ru5Rc9L7+AIjw14qbbREjEEwc0mfw6OrIOoomjbWDyXndMo3RYa7xzThqaceNbprny1Wun5+1Kozeeg==","signatures":[{"sig":"MEQCIErlSHDMvet5Trs19pLqgzW525TUAjCQUT0Y1lydwHB7AiA/YKBV81/I665TNqp4ZLzO0czqdowORA4gtx/Dg1+kOA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":381851,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcmkIQCRA9TVsSAnZWagAALUkP/10zJ22q/sD9ewX98ByH\numV0QmtSacVDnJccfKK52bwsprLCmUFR8OvrAZ0zKTxOgjIjDD2pM+nhipq1\nOXu7MncYKnZNf4A9wsKsZSdORQ1hiD5gJ/8xmfpd7JuKI+B3kZsJtwulI0oD\nMYy5ILeewWUSp0A0jXzRm9fxmSLh2T/BbbjGFlu25hDBfSWn0jR89BUcFWUn\nFJsia6rairzuCo671nbGH/mkaUMCeQmTgCnkTS+iyp9zjHZUjOMR/sLOED0K\nZ+Cf2Phgql6q7xTkgGe/znM1eMQvC87qB0OGeWTqZEXG7FtOj/iPp0JLK1tG\nQJRiect/8G+tjrvIsiZJUTBvZBuXbdHI1ZO9/0wapgsIvGcM4/a2ePULKYfW\nCpIiHNGkXIHBhWQ89u0MJR6/qzqf8bKOXBC37klxQ2wZul4AeG5dQTZ1i7uk\nyYXtoJEDsDITFd/oMbPuRgtRY8/tEOfvki7vvc0ebWj3Ro5w5e8MeUcLOxpm\nxpudO+4uaTU3cfa5cgr7Fs9TCTqVanVkp6Up2hQF/q7QRFfy+d68M1Gsk09a\nmWB9d1V4F6VOw/RIvLTDEyw8uBZ2D+aBo734E1ljky47AI0Ccm5cH/SWaTbL\nT5PShM7mTVvvnydPOkbXCOAuRmsu12bDuwj1g29UuFr8R1Ggg8P7oO8QsEIB\nL9rR\r\n=cRCi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"19de5d598f31f6562b3aa38330245780c3ed21f0","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.15.0_1553613327968_0.14728980899235622","host":"s3://npm-registry-packages"}},"2.15.1":{"name":"@yaireo/tagify","version":"2.15.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.15.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"1c233d211de77409d6eab5ae7e51a893b4a006a8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.15.1.tgz","fileCount":20,"integrity":"sha512-fi8EAna+Z6HWISbkWEEydToMgCJtdNiLWN5zzFMLCBPCGw4PCcnS0FHRY44dDCr7dDiP9CYbHzceC6rl4JZBpw==","signatures":[{"sig":"MEUCIQDac70J/d0xg1Gn6urlgZ7mbKvXZYFLkUbZmMrmAUIlDwIgZAf8kXoAYRM06nKWJjFkZu71wM5r+G1bRGLKCOgXd0g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":377217,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJco4WuCRA9TVsSAnZWagAAI+8P+QB2+NQkHDwjZRvxeVtJ\nvj8wO4TSMD7fpAv903rzH6F2oSKNBCxHXAcPxwh+wcYriU+iD7BfyNS4Q/jp\nDOnD1hkMPOyRkzLZMV/2gK+J+0Q1Q2F4wT3K0mMqIkOl5Si++5hznYhjI6Op\nsRgFjD4ImDGt06SMpj5lymgLAOcj47B+VRaE1QsMS3fspbpjKhEjsyLCetzx\ntkScEMtDQLv9pvdw3OyM/uAc+e1t/Rdde64WRWkpSQII886IUO/q+MLyLmMs\n9ducBTT0RIFNtBOdc6fEIG4Od2+gSJW/QAIlMazIvbuj96bzyNJtV5ejC/OI\nvky0ud8URgklhNbDE6uneHqgbpshJ3q8IkwVAj0NO+60yJcwmwWGDJm95Sby\nkPifioIdKH/MrDv112PMPrwjbmcjLOOo9AMDsG1Yv1ac6RdT1nLfjZSz6ZNk\nKBHUToj1MjmUjI8DGFIIxQ7uGC6ODQe7icN13MZ7LpB8bp5faJpKQ9E6Rd+m\nzEDPuDwkjR8glU6596bvrsTUNItXXxKJt60JXjNADAHH2M91xxkYgsGoP4eL\nrs7oQ5B+ND9/bxjJDYNRz5rFitfp5nJYRiQZXWo+AmoJ7zUGWeP3Ip1wb32q\nGOqBQqeCHukFV3TMWzSYYat4JuQaB7RbhTpza2qk5byX6kucwPqf9J0uNrtm\n3TGK\r\n=R3jK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"96ff4d606c4b4d678407aa07e489084708918549","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.8.0","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.15.1_1554220461754_0.36407353533275955","host":"s3://npm-registry-packages"}},"2.15.2":{"name":"@yaireo/tagify","version":"2.15.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.15.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"7c7a89e0f009618c17abe010a31ef76d16ccbe9e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.15.2.tgz","fileCount":20,"integrity":"sha512-60a75F4CDUF60dnt3gTxdBAjPC+m6kg1aWgpOfTfH4BbubsCKTf5RA7dSPnER2p+R3l9bbPgLJDgsdd9HuQkJQ==","signatures":[{"sig":"MEUCIQC18LpQZl6wwXjw+ZlD88Y1iGn1WvbVdUYIgczS2qPOqgIgR8cwwBHvfTijKxbrMGDbZzDkgk+Qw9bFSnz8hJWUDC8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":376016,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcp7SbCRA9TVsSAnZWagAADfUQAIHPZwqvXyWXa2m4KrI6\natTwI/5lTeB3CofndfUSnEwfSeEiy9xik1l5DjjBzNbTPT8jnZXI7ycAPenE\n86waYLyZogTBJvwDDw85a1/1FjbE+HdpsvW+EPF8kujmjsDxhW89FCeu75Fv\nJRl+w2p//kbxDySmiFoCm9ImN4k/gVYIW8dzgoIDAulAi3I/ZhFImWhx11W3\n1QJKRGlupF0lT2LC71e8v3QKlzVC4+4aNvbDxSr+YOI3MHFwb9AFP2KBkJAd\n/nk2eTcEjdz6Mp1FsrSq1co32FWKzLlnszv6yIG8IUNsX+6H7JQ0XeKgnmjr\n0l7Va45d3LnT5yoFFexwACbxcsBiGviCoT1QPi8A6zVfpFap02Owh01ekbk9\nbGAG2Kci/lhGd76gkaJpByxRnbIvmr9CRxIr4niZbNd5YzccK8n1sSx4jKHH\nDfHSOsYZ1f0mV+LfHjiUmkM5XBPKGytgVUWTmcKWE+ogUTxj+mc1WTBbw3hs\nbI06it1BiGTizNB4IBLJJhr80i2BY+SzRD5jwNT9qD9cZkzRa9CeejVLgc/f\nEhZFVkAWr4kXr6S0T9fWs61fNr0XTLj1N/mT61hystuA54E5XZhIftC5MjoB\nTvrKwQtZzqn5bA4UXFfPkP1Ay4OKQiuK5JWo8lYPLgEwPAdeSLp1t9GkrW5Z\nhHLz\r\n=wOoJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"db9eac877764ea2eaeee3554946637ec5a77d514","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.8.0","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.15.2_1554494618259_0.36329736405543755","host":"s3://npm-registry-packages"}},"2.16.0":{"name":"@yaireo/tagify","version":"2.16.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.16.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"02b6a71ea9873a370e1d94c27be451dc1b641856","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.16.0.tgz","fileCount":23,"integrity":"sha512-lEsxCLqJzheTOKozn4FVbpnR5eg0cV76MPJPkKqDlbRgmSO4ZRwGRxasphwsPuhtpiot0RxIZspHCzy5NryuUA==","signatures":[{"sig":"MEQCIDWIWeSvIh/YespQrU5A2flKJz0oBwsd/vrArZQhLIcvAiADFRTd8nEf1GGYadXqHU5r+EQoYoEv+Gh8TcYjzBWnXw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":381668,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrlUICRA9TVsSAnZWagAAg7MP/ipuHt5T39mk01Fna6R9\n2qu2pENHFDsLn94RAI6Bp04Kn4w7p3f15BAc7mrPMUpIG+iqKnPhL8a/enct\naytIF7RIDFnjuhXR2yVsrqFpprrGpTiIAszQqRiUiUZqKLFIF5p7G28U3IKo\nUmKdmdKJBh+8eENV2h0t87SE87U7Te2ilbbdl6aXMlIM5XoJ2QQoqgPa9bMK\nFyGud71j465E5wifL5VrM6Z4eiaQMryiOnYC2ZhNMTH2dqhqjJUnfwtqtxGP\nsWpFPz2XXh1kOtlIPhOgfV5uiFFoQdJv3q5C5sH040k9cwtFfAdP3zwi9CM2\nR5pS0hQktjMNvMBZXJZVqeKRIFgEJ9dS4S+cMPs37W8P50NekP1J8muuS1Jb\nCefSkCM94ufLoH0IubKFNoUSAfK4EC/lLbAZHJslYyJqcHxFlih4RH70oozX\nIMcY2uLzZxaH+h/Ber+aYRPJHJFU48/EvE9By2SbWH6D9iy65IsNhhjvixfU\nmjk3jbaODFnlw/mVmPLzkcZsvGR6zuG/GXFX0VwpucHeA60ri1L5GdlpOVej\novm5uAaiA7reDO+tgMPTE+1TrfqDzled49SbCG2ixZR0DhsazTcwPQnz4Xo5\n3Lx5Hiq7Cr2mFNR/KbKTGzxqHhI6W04zDacL+HoMrf9vlDpZFOZhp7EB/2vu\nk2i7\r\n=f0ga\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"f5aa2a7d9d36990560e415d101935634f77da8cd","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","jsdom":"^13.0.0","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.16.0_1554928903601_0.3602032236323889","host":"s3://npm-registry-packages"}},"2.17.0":{"name":"@yaireo/tagify","version":"2.17.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.17.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"67c325a5e23a9cd545747610df6890ae8d0e98c3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.17.0.tgz","fileCount":23,"integrity":"sha512-TeyDcOtiedGW9S3trqyg0WP9oW98bmNkbwIq0CUozs+BOK0fCJXO0uE7L3JOvu4tPXvtx/Z33Em4zuQcQV0M4w==","signatures":[{"sig":"MEUCIDH0nxbD8s5wdcs5w6ZQdbMdceRjgdn3xp0acpSktQzUAiEA/3ahDf6aMiS0eRG8qH56/3fKME82oNSnv9rXYlwv518=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":384729,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcsihrCRA9TVsSAnZWagAAipwP/00xwM0OfTu1Fo99SWja\nuGJU3duihbtpYQVV9O3vVO8XjhOhJHdG78H4Apd74wMNmZ6kpF02DE8Y76Ax\n81MfWx5dJngXDyN+3oU6oz+Pu94+RyNDtC3Z2RI+JaKzjsbUyST773OowcLv\nsLerv/Mhw4h5TJNes2+atW2K3I395cSf81QRCsQJgHdk5Z3W+mA15vdhB/EF\n5u+/Jgy9bjC1S5Nh5NTnJRFjlCDFljHOWg4cXdQD2echpCEm1nrddVCOHhvO\nTNhVx+BAPJpTjwwWT1jBpoH08qbmOfhmfBBfKf10KULseZ+WxLRDGEPdOjDR\nnkz5Dh6RNyiixeB+iGOX8qsT2XwtXR+x8NhyFwmy7pw25QZ4BjF7wL1fkmMm\nFORhOIDkD8/RsMukFoseh0w61DxZ75YYwdz751vznZM7EcKl0P48Qw3ASXF3\nArLab8MmbSf2IYgzw+w1DpcyW5MgW15LnIRP7f/whOmrpTsBrkz8A80t19/Z\n7tLS2UZzRHAnHQGWTywWGOoZ+lbqcY1P5/JOxni4+w2NW8PL0NNxmJfkvqf9\nm+AgTFs6m8/YUFPxURpSHXEUVmiW2X5cZa4GjuPQKgvsOVj8FxbAKmec/bmg\neOpIHyk+aIjzjK8unvl1k/6MVs6ZCISvoIER+gyqiOA0dPcspZLZcAKVUMXn\n715G\r\n=dpHa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"2cde6c5c54c1036ce626b597b709f0de39e3f60b","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0","@babel/plugin-proposal-object-rest-spread":"^7.4.3"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.17.0_1555179626979_0.6264705722334953","host":"s3://npm-registry-packages"}},"2.18.0":{"name":"@yaireo/tagify","version":"2.18.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.18.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"841ea6b6fb02dd78d678f5e04f0e69b88b940712","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.18.0.tgz","fileCount":23,"integrity":"sha512-q42FTLehsdRDh39l15zqAACpZWMbGiE1+lvzBNuD8JxPlmzXxlW4j//ySLaS2gY8a49unPIjouFnpEXO8Du2Ow==","signatures":[{"sig":"MEUCIGQ2rdzHnDSUITwyUIEPyCA2p9/+c5et4EtNv4dSFKQAAiEAnHrMdQ9VyBXH6sr7Y5yMhzrr754OMXoZHWrO4nBchvc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":388758,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcwLPhCRA9TVsSAnZWagAAqVsP/3IOECxcNXQDjSBciVYT\nglVxWS+d6/fprznQAnZqpX8m35u3KEbuWsQIVIcOi9LMsRLGUOxSuxL4Y8Rj\nUujSkp4MP3WNb/3ziS0i9ncswT7+Ru5UkX/PyYJvyvepMHR2ONzBEeIuyaja\nRwb4pvMIp8KgWU7PJxMF0cOvl48NkUQN220LLwRdM22J07baLuUOmcIMLC+L\nDTld4zyegt8ZYy+K9HdJagFwQBC8QXgSzyvU2diZZbTIptosjZ9geFlc3UeT\nTT7w6J3VZbFRv3rZGuWNQpduqxtYWzC5JeILW9811o/xg9u711igRwo5t2PH\n/64c3vTfV/lW2a3CuU/e0yO1eSSnVVJnEM/wjGhfLMNdJenwH7Fi20G2mES6\nsy/+CQcFRnR1yGIIWqdx7J44oo/dcoGjR254hnOcKWhQXCVcZl/x7n9I8wB3\n4SoQ3MxUrxQW94gej++cFF3iQISGptAi1y93qbONkYCvQgmznYxHcbgyj07i\neI3at/ousBYvS2oYHGS/5sEyQ4nSCANR7iOEbUgSRDRONI4XMrvCg6dPnvqL\nxBXjt9hXD1N3PM5q/rXsI13rHAL9IwsSK3M0l3u7l9u6BIu/RvHCvcpQ0td2\nOv+AAyju/aaopTAHskei2zOptQCz+a0OwpwWN3h9dttIzp6WPkvFpTgsPqne\naVIZ\r\n=dTKP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"f3a0057e1206a2edcd69d8a1ed8c093a4832d84f","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0","@babel/plugin-proposal-object-rest-spread":"^7.4.3"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.18.0_1556132832325_0.9117219509618018","host":"s3://npm-registry-packages"}},"2.18.1":{"name":"@yaireo/tagify","version":"2.18.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.18.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"e4ce23a83fb560eb3a836bcff662eb07054ba5b7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.18.1.tgz","fileCount":20,"integrity":"sha512-Hz320zk1l6lClz6h/qzrdoTGpfhPk/h+fpsLWal3Q02aWEANMtPPF55Yzun5cQeef/TZJtXaXdvpVaiG4MnXWg==","signatures":[{"sig":"MEUCIQCvh/p6/gxm2LK1S5KQcfbusjN700I5aANH5c599e1PjgIgOLr+9ZWGETeNZvTVfVY6EpVzyNoJEKzR/0ijwuL/ekI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":384734,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcwiVMCRA9TVsSAnZWagAAO50P/jIQMyaWLO+OZER58UKm\nPgQ2a82pJyBRzO78DbNJa6r8xemkE1/EMBNNLsAiYP0N2McuQU7BmMSt1HYb\nyRzdD50HUaqPI4iq5rDDl2whG9fRz9pFM2Yo9P4TzPyXVkeQN7kRpIPc5ELS\nWDKmv3Jz7cvQbV/QiiFVgr+IKXETrtxtw55x+4Sb32aWmPHFwBh2xAb4wy4g\nC9CzP5dFBg+Q+9YlY0seObzaAotUyODpTZftHi5zWQu6bgtombMFne4MTN7o\nW0t/+ht50mPkVHAS6MWXNIXKLG8vihLAaKq3K13+eP8in5TsbKOFUAV4S2Ah\nYKhp99hQTimsw1wKz+V31/sD/8pNzmKng1/1PTE5cLXt0E7S5OltwVmsbssB\n9zxLTQx3HuimuFZjyipW77DeAOoHLliRlTR8aX4LikxcmoujBd0aHxwegB5o\n+4evsFESM4kUi4E+1AuWkUBwjU1ss+q9B+OgZyBZvF9u6FmfX5rIEt4M2ofU\n1UUJmpf2FEcja6CVvDo8a191JLE64N7v5FpbBRsHl5ujNvlQVHJSdbUjW0se\nFyrPzjmX0+XNyJswNJJomgUw6A+k/U+UcxfL3R5fEkvUUpEuRCUQlWemPZsv\nH7UiK3c50+GLqazM0w6XggG/4cxVxc8pL4eYun77hBBBHUSPDP7sT1UGBGub\n2iZW\r\n=KGm9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"bb9170e9554489eab43c6b9c9b748fee7324b927","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.8.0","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.10.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0","@babel/plugin-proposal-object-rest-spread":"^7.4.3"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.18.1_1556227403999_0.7213879064891482","host":"s3://npm-registry-packages"}},"2.18.2":{"name":"@yaireo/tagify","version":"2.18.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.18.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"47734512835b10d09b9f9548acaa33481af0ba7c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.18.2.tgz","fileCount":24,"integrity":"sha512-CNYHjRH70z58/m/o3JO2xNWqu3MF+WFaTkBtpZ4fgOMMtQOIXnGCPJLCb4/9CvX9+erQj2GLf+B4B/GuqODs8w==","signatures":[{"sig":"MEUCIQDuO77rg6RzDSZh3OzpNE4SYV5Ts7zdo8Ce9XcSUVTKlQIgAf2dfd5Gjl15k6+frl2MeCkGHUaUMhjRiffZiSvSiQw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":391458,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcyLzRCRA9TVsSAnZWagAAyRcP/R/Jk8fapjHvqtdF2SUE\nC6WiGz8ZHwduyJETQMCP+69xmx8w+SRErBH1Yq595+IsRf7ygBJzIXw+lU30\ntWXBQV/UFd/Rm2jCsHzO/oID9S1Aqpmw6TD+FLNUnXp/y5EJ1aDKstiitWo4\n+5tqx4u2HLOqUjYE7sLK1ICTczZQ1n74yhf9DtvnrWnr9p0Aq6TwyVZ7w1VB\n4MrMc96K9pJCd9sfmyGxJHlIdceQwzf7MvkPc2rfo+ndBikd6h7HsMXZpeUE\nDC5ELL9OImSudfmQQaIjv0RWGNKrNXG/GjOhTSQcxdy9qZTWGW3TLM5Tl3NR\nUw9o1o9Dl+n+vgv75K8TxzP5LcUqQdoNB5qMlGBmxkQrZHDcLsMtxsW0FwK0\nOIXcCEeYyuXQ2gNiun9IP6wlFbj2/mLnw6yDj08u/SYlFInP4RNzXXMeR73U\nLT+MIEbMZfkEunsdzJ71Ta4gYJ/1YrpAvktfYDm7yMdVqipyxinix6AoAsry\ndLt5a0Cu0VcpFxTPGkwM39BNu9OEJylt9JaFpCcRznZW4fGX/gDGZYYH7Igq\nBUtraGIbq+HPFoC72PEF0jPLLaWDKax0iYNo/ZmxUlW2MeLcROLJ+MLetNnc\nz1DZpiCoBnYy+Bp5O/zVx3wtilKHfH1S1fVl7DY/G6zfbPrcgDYNcPWohtqy\na+l3\r\n=LT0Y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"f6b4e6dac641a6c54978fbfd96e2cf094c1f57e4","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.14.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0","@babel/plugin-proposal-object-rest-spread":"^7.4.3"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.18.2_1556659408859_0.08564287058857278","host":"s3://npm-registry-packages"}},"2.18.3":{"name":"@yaireo/tagify","version":"2.18.3","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.18.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"6ffd34294ce85550002e280bbd5df2a42eda010f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.18.3.tgz","fileCount":24,"integrity":"sha512-SX3myM/VAqvLHsyvNvNd7FmdjmjtWyBkaG7fyLIpglILupgJXYPhie5i0F7aPcxtKqDcwby4U2Ef5eWhv1sEAA==","signatures":[{"sig":"MEUCIGsVw9PEVA6MSMMb1vUn/FCTdFhkSbpUYWEFB40vLIPaAiEAyHygNsurlCvkjZ47qa37rXW6+iI4eXdtuSyntEiI9hI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":391474,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJczdwICRA9TVsSAnZWagAAI44P/3Z45rJlOyy5TYAI+HW1\n1j5uwV2EE+f4Lz/oDW7awmn+NGIewMY0egLznAP/P01nCytDGFzn3snwGyGF\nRAcodUunH+snyTKLT8bZjphDpncsoxM7bA5VFqaXUaaRUKY8wXxH3fohExX+\nhiB7CAI+vbMSRiu02GbZ+1UciJyIXewgBaapk+TFbke+PkPcH1TtPdNW3939\nP0WAu8bd4XJmuG2sZeNmBwQvXfPoetFCc58Tc99ey6Q/+sNiFQyjGpWXAy7a\nYW16tYA94A0HZg0E1ftg7wUt13Po+9sFBV90w2jl7mtDdPM1qAi6TbamKyjr\nxdDYrUsOanvDK5fRuK4oajzywPig8jQ+7sslxUD4U2HT851jQqX6d8e6tGrb\nEb/c67IV+91u5vIg6nriYlM4ZgtHqB5EIWYqzoL7GCBlA1bw4QZoxcJ+TrYS\nQtrJ7bv3LMrbfAx88v1CREPXuZSE0JpNyLFmZCKUOwBmhL4cY4t/9bjO7MW+\n63ZKWWHpiilOqTeWyXZa51gYj0MFx55vmg3fchiCX/jFVs4ujaDckaa21ClL\nC+W7zfVokHahqvMyNpf4+Fd2YMzQ1dI+BR+rO5LAit1AuRfBYW1OdFcqPLP9\nZfVlsvQudkMk7DbTsGtODhyW1A1s2uOUe5LYtw2+jFkppAWqledUhf2EmHVD\nuQxa\r\n=1452\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"039e142b59c92147d31998558f05b3e60ee3a9d4","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.14.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.1.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.1.5","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0","@babel/plugin-proposal-object-rest-spread":"^7.4.3"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.18.3_1556995079660_0.9830841958048184","host":"s3://npm-registry-packages"}},"2.19.0":{"name":"@yaireo/tagify","version":"2.19.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.19.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"ddc8f0beaf8b013527c3135586346eb844f4c120","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.19.0.tgz","fileCount":23,"integrity":"sha512-12jkPTvcORFvLv3bM8PSAVUX8zCE2a2V4pwY92Aw5iWpvWfdNTpwWJgwkr1+/SGqnR2lAOSYunzmZSGxbw7Suw==","signatures":[{"sig":"MEQCIF1QrB0V4X6biJgc+fESoXApJjXrjD5wruu7Ewi9P3C4AiA1KDU6wKC57MWNFjAFvhL5DJogfLwqy96YHGWiLpFWMw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":395343,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc2ykFCRA9TVsSAnZWagAAR7MP/3FaGgfkTTD6t3jlgbaJ\nNwvck5ZhrJfdmzyFQPv6Im1uw2HMMnrwTTSHY8m/rdOjv3sy8JL9Sb1L3LNB\n0+njoBalWuC98lHPk6oDzmm5w/0DbE0PVwWxHmvJJ6dx8kdD5ujf8c1dw0T0\nAfquMCplhP+7/tK2YN3s2CjMCp+DXxte8t139oa/CPmRidffr394btd9DIEE\nDvVpt2psyFF1M6/BBLtSsTZotvVRfEK2RkvObf+RvMOd9mTtar/wZxX5zRoa\nrFOAfcLEOi9RM2dDgz7RVSGVEHIjlSAPobypu3XjbTni1bbIabtvTqoQwPy9\nAgu5+nTL7Oh9qv0OPnBy9nKPaIPfQ0cxeGHUoiiFSIxcKyHABnoMv5YZzD4e\n2gA0zlgBLQTG1KmpioKaFaRRCpiEPWreoIRx1Hj97fOmRXOPGKjMJLXEvsTF\nTbBMXg4fCwMbGQA8O7yCx1NACRKLadtRGBxU0WZkm4Un1/v3DQO6somtpi4B\nz23aVJf4DO5GbcaBsGO2H3YfrTL04ActCIX/dX8BgVZXBJjk5LYYBq8wJR9d\nUPVYN047yPKn19N/vFRO6yyWzwQOO3ozx6nqkuBfi06XCwtVwKkao42c1Q9F\n6ktDaoDZ3T7p+/KGOHz+hISmRXsh4FxFU7S5dWpdV2QYnTTadb06fx/XjLXQ\ndUQD\r\n=zIgC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"45176991ea1ed46a788df97ebd948a72c25db5ce","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.14.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.4.4","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.4.4","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0","@babel/plugin-proposal-object-rest-spread":"^7.4.3"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.19.0_1557866756506_0.4087361473599256","host":"s3://npm-registry-packages"}},"2.19.1":{"name":"@yaireo/tagify","version":"2.19.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.19.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"d84e16d72b796fcc52a7798768ed9d484084559a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.19.1.tgz","fileCount":23,"integrity":"sha512-nIkJPRgjGffnFacBPOZd7CGfQriBFab4yR8yjiUgywnCW67jRsu7U4zeTUuE0zSVq05Dm2k2rbf14CQWmVnzAw==","signatures":[{"sig":"MEQCIHSgE/GJNG5xGkbionIJMyMH5G+SZsQZZKhuwAiGhunHAiBSmdrI0f3QiME5M2YEonkOA8XK5+iy8RYKmfW5MpTpaQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":397713,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc3HubCRA9TVsSAnZWagAARZIP/jLnIQKNr/0dR5rTfWeZ\ne2a0DgE0qPctVwPj30+JdyaFa6LgPG94OgeiAqg35ccb7nUhWplogQa14GYH\nytSk5AoKivu9p/MKUAZMUjZp4wNxB7JO9Ku+iPE48vPlWL6IAOpii/9fIK5+\nd0emCqxtq5TXsRPxjsGeQsCwSjYmEnywJTx6+UaHR7dagGkk9VC3zJ+EoLDB\nYnyzit3k7wzqRt4PRarA+A7EfZN1oNL5J+CNa+JEMZtXNdKQyyFj22q6y9a3\nRHvc130tayMEvBp25y9Aais1CHFN9XmWcyWV6EyNjfL7KnSlADIyYIDhdWFU\nTLUI+a4GUpZXQC8VwaYKNs9+U/xXkaF6z1Rz+4pUOWBpFTzaGArDvi0lXpZH\n6MFXsQaD2RHK+jHPfJlBd7Wo9lCeRvMIEAhlRCY4kubK/VZPJxAO3WEclEHF\nbDkjXxKr2YV2Yu6/dsJ2mgFs3Eh5k5L/HD2DFBRRr4+0n1cyNLae5+LaWAI/\n9dhDuIOMURNZTTfZV45xgirMyXHAYP2GxLuA3W/s/2bZnOL3Vv6y13aw6dqM\nahp3NIf/i4TZ2YkU9td3oo3wEj/n6l39q7BAlNU0hoZize+DU/9C07xqt1ZJ\nv38nkjjds3GuW950cYx+/9VWzs/jMPTH4qySB6yIP5cQVRBp3pATX9wKxs6/\nsnQC\r\n=GceO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"68fb9b38b1d330154da199fb8405e98218197556","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","beepbeep":"^1.2.2","gulp-umd":"^2.0.0","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.14.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.4.4","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","@babel/preset-env":"^7.4.4","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0","@babel/plugin-transform-destructuring":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.3"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.19.1_1557953434954_0.22734106452313863","host":"s3://npm-registry-packages"}},"2.20.1":{"name":"@yaireo/tagify","version":"2.20.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.20.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"c2c200bae94bafca5eb47e5ae39194a44fa35853","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.20.1.tgz","fileCount":24,"integrity":"sha512-dJ48PxHDRtza8R0t1asVtvjeaxdQRLae+UIl+xITNG3GM14QGGCbJqX+FbFYosZWlNT3iPg8V72hSp+4sVA/KQ==","signatures":[{"sig":"MEYCIQD/W81gJyKF9Dkk6Xl5TDV5Jmaqu59EoVX0UcPF6ruyvwIhAN6vZ12tF6a+yvL10HdO0eyeaVxAlTlTXNf1fQlMCr27","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":402490,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc7F3OCRA9TVsSAnZWagAAIiYQAIGh8+lHvYew1tmVh0Aj\nMPCEdIAb0k1VzGxUav5hwN9iq4Rcz8u0BpnRi3JmZlk6LNwLbi/EuH4CBMo3\nbLU1MbS6nwKP/aCttbewYrgWIbompR1Ta3xocxD8/FocXXFudaC9Ttl0hpB6\nQN4RUlh6xOqaZ3F5pTgS8Yn9++mDNQw8Upektx6UEpJdm1QoRa9Jujv+pUX2\nKVm3R+Q6eROaqlCQoiZ9vkUMdxgl9+9sU0X1lmkeCfn4Cd+N5m4zMs/Fp6xb\n0+TJB5wYjETWT9rJ8CNVBBZZFJZ1Y0aZkNuFwKECPOjYLFP6NMxi1j/DX1Kz\nxVihtRcUDoD+hvAZwJfbsoMMosos8qmXoed8SOLzTomkeXQiVisCOJwT2L/w\nu3EhSbcIrhejqGK0tYdOdTxBGAtHY8zWj9K2QH4epbud2O1xZ3SJGM7TvmPt\neV1IKf82d83Yna+r7rFoTt/oolcc0FMN1PLLB3l3fFhPAUwCbhHmnGhZrYw1\nUUizikUTKxa/YwAkQNctSKqI6jtaC9q6Yg7tCnDav99zWbVKVk2fgGGYoQO1\nda9C5fDbuM+WAc3by1n73Q0LS6494Qr+5j2dcc72qf1KvAfAiPB9cY9eyPVu\nlqJ025XG4+xXJ99AVgL0sGa8iVp/rf0QfpUXi/wuWeUBHXDuF/kP1TRyNwQl\nZnF0\r\n=PFXJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"1928b70293bb11d044413af38108757e9fc12d69","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","semver":"^6.0.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.14.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.4.4","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-filter":"^5.1.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.4.4","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0","@babel/plugin-transform-destructuring":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.3"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.20.1_1558994381383_0.5949070951863977","host":"s3://npm-registry-packages"}},"2.21.0":{"name":"@yaireo/tagify","version":"2.21.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.21.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"5ecba19a82f3399c8408e27e10c62511d9c53c39","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.21.0.tgz","fileCount":20,"integrity":"sha512-zIoiV+MXwUqzjtjR2UzG4xGWHF30oQsviXpSm8C/dXYxuAdGMJ4SXEkkVT/S0CYFCvRYFj/oWyLWKA4XOMovvw==","signatures":[{"sig":"MEQCICoeNqD7ixKR5pZ06InfIUheOnRStfRmG+nWMhfK29HRAiA9EkH8i0qzsa/WiM+iRwqsQLEY5ia05Nj4GcGnFxUtLQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":398199,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc7Z0SCRA9TVsSAnZWagAATLoP/2qjjtWS8T42reJvYsp2\n0qivvgiE2ENoxsOgjR5qyimhS7UbanL5zfTn7HxxtV0517epEXZtBb/EN8CF\n5ggTPXvO5lbqxevzFyiOIdrcQvGItLWt1qjIMlX/SirSznmkmKuOaIHz5orJ\nO7I9z75eiuYpAwqpgvraTMQqMb0DyKNShEULY/PpW3CqOvLy5XjtgOf4FrjQ\ncO2F68YKRcziAxIRkC+nbCyD1wwy11G+J7R3CLL0Qej522lo4D/QAQpdQXZc\nOHs7J4RiMTv8XtAEImhmMYU6mFiHznGP51S1nDKKNDd3oMeZigzJH28dFFhs\nZFnCP13ZPCYTirSK2P7dxF6JCI9VFW4can+VcBhtmUK9LDQiRbgAj80Qe+/Q\nrCkIMszYIkOvVgNxthF9sHzD4XVntwayeogh+VWqhYKZ/7BQP+XdH29CEvZr\nC5Vz172bDuQFILeP0TCaalpb/56bKV31jQUjtjeknl06EPGJE62dk+mdRdEF\nLYawhIveZ3MewmKoXWzCzF0j0U2IKcDJ9SMiZ4C2jtdTuO3emrVWrZcpbBRs\nB51YpVCEbi0TLd5s5EIGPFGOHW/PEBlBGXFro/UY/3uKmqb2tdAPCB038/jq\nIQpRNker66oB3wDQmf0EI0/PuQv5ZBFTCrMiU4py2nCOGJEZjvQ6vrVJT7HD\nxo/9\r\n=UJlt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"6b97ef8bead7d1757dd35fe805cdeb39bdb754a3","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","semver":"^6.0.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.14.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.4.4","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-filter":"^5.1.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.4.4","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0","@babel/plugin-transform-destructuring":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.3"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.21.0_1559076114092_0.21810868643272885","host":"s3://npm-registry-packages"}},"2.21.1":{"name":"@yaireo/tagify","version":"2.21.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.21.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"9c39938555a5d9690798778163bd1fad0087d843","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.21.1.tgz","fileCount":20,"integrity":"sha512-oIsoGG1umthqWF5Dq78E6dgsOuxg2mAAl6dIhIBApEpwuYvLPJ4KQ+5HZpR4xaGFYM+ElUCRBzhOWNgEPMiw1A==","signatures":[{"sig":"MEYCIQCTAYrVYJLV+qLg8b41cUQ4TeXHQ6bz0OLWRvRerN7BvgIhAKnlMqfRwGaAWSxvRDfZqhAMv0HeClZcxTBd7RPxRQYc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":400455,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc+AgqCRA9TVsSAnZWagAAK6sQAImNP2A0REbOvRPFMoeF\nxPKBr2bqGsH5AAGvqOUthGymutauGdoQvl8biwoGb/qxpZ/zzjjoFYyLZTq7\n7S3eA8AtMWac14N0S92NTljPPeFos5TPiPQHpOiTxVxWeyivcNwYGdphTTu2\n/VnjAcGB6COdZyppjYNsEviyQRlXVcoi2JravzOC5cN1hJH9Rr6lZyHLCBjP\nG1XBCchUYqDwKJpTZ3A455dhhhIabZKWK3zQw84kthj02bf72Zuv7FQdaYuh\nJh4s2HQq1vx5Z9B8FWlEWDaovPJTlUqwUZ6uuitHC2OxYWkUzhoMujmGQibX\nqQZciAV0D65t8zmSuYLs4P/WBSFqklsa1FEY56gyfJUkUpx4W2XshY1iJDyX\nRBRKKwzLPk8/gX1nJwSDYlJzil0Sj0ekkrBfCYvAcSwjGrYRZBWsllTEtlPV\nrAyu6GGj8eU44PkycPKA2YNipdHZXWg68IHKaksSLjE50Ci2nZWWZ9l1SJTt\nGNF3TuScVHiLXWxnPMfTTNvwRgn1oEHYg0/Qu2oXO3NOxZ/13OxxlHCjpwuI\nACWHyfpypJSWgN61ThtdWtiUzL1T5ZAO3Bqv23YRUY96WclegpDua0yn0suI\n4CtuKCg7Vc2gBWoE0VoK+bB35VaBak5dRq4AN/3jRldMDtm5fMHbJ7ZaYnw8\nHjgJ\r\n=uuYJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"211156e27dfd2636059b1b7071490c8beb25a480","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","semver":"^6.0.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.14.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.4.4","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-filter":"^5.1.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.4.4","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0","@babel/plugin-transform-destructuring":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.3"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.21.1_1559758888908_0.3676018762197699","host":"s3://npm-registry-packages"}},"2.22.0":{"name":"@yaireo/tagify","version":"2.22.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.22.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"28fd8256bab86d63f87ff4b43ebdb0a0a0dabaca","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.22.0.tgz","fileCount":20,"integrity":"sha512-tSaeoTPAK+1H552sH8LLvJy85aQ14KrF9PSuz5Xe7NVS7WzcsWp/1KdidwiHAu1GFhdgMnEhcLXf7hGZtxZ1zQ==","signatures":[{"sig":"MEYCIQD5RWpxYg8BXhDUc+sBHj5Sdz3Unm6OBG8qVa2NzPFqDQIhAPz2bmhBfH94Ag+HZxvmk2ffXhn8UrZM+oWRMYQNNbMg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":402020,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc+CGvCRA9TVsSAnZWagAAbhkP/iiMfN7avV9oDJy7SnXv\nHfP6HPJ88Xv2kaUhIPID/PeEYVRXf8J8Im6kY1YmbIBdZGwtMrC3AqbVELie\nZanQ7tLJfmz0yptHNVv6x/16bzTwkyrNw05JGrdkD4rXzFJYCRmF657xp0hg\nOn/Vb7FnXm3dV6uQAmR+MssAzFQw+ccOmZ2zDqhXidyfPau6JWlg9U6C2E9U\nLwyvdxlGc77Kwu1NC+68Z6pk0FWK16QWq93JcRGM64DNSZTI48FCdJFrxQ+i\nPvuLEQLUMUCgjUrRxxikDCECxySEKLPxby2PSxbFgBbSUUHhyYkeyX7Os4Ag\nGsTHoeh2odmmn5Una0B2K7m81PUd12G330tcodSREJtLoVtW6p4rPz3LKNho\nh96ou2XS59knpXdkZ5hlNzyWCeRq4wqkSmN9ze0l87wq9pPTWgpZIDivpekq\nw3h77PsOR7we6C/RfKjiNUZjAsmNQXiSiJ34pybJrgbh2FzyNtlbkJcQcLBV\nbB/ROFirnuiHamDbMEG3X6kthjbxK58S1sFKZNH6YugPSseBxSG7oSwYnvbD\nbEncL9+vEn7H5VQJZv6LMxeHMQiTZNyE72888ZYXpVieEcC8KXycCRftmOXz\n/vd181oyc7YX1ajnCgHyE9nHwnbqedJS+8Wa4pCvB2Z8erdwcR0iovOIOJgz\niZaY\r\n=FA9j\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"f2539943e80be8239ad97ddca68bbf8c073a59cd","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","semver":"^6.0.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.14.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.4.4","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-filter":"^5.1.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.4.4","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0","@babel/plugin-transform-destructuring":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.3"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.22.0_1559765423056_0.42135462594821416","host":"s3://npm-registry-packages"}},"2.22.1":{"name":"@yaireo/tagify","version":"2.22.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.22.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"cd76b07f1a2853b0ebb4de8e84ac8bbb58e258f0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.22.1.tgz","fileCount":20,"integrity":"sha512-++avOBVUbmZfdv3R5uK3wn/xUgTZvpxT7jmcU9f3wfpgYlAYTFVtDZ6QgR0Zs3bAJ3qAaSZrc/eD6EI/Oxwu+A==","signatures":[{"sig":"MEUCIQDIlWvsxxm59H1J8ReZ2axzgP3X/9L6thFxGIdq+9xBGgIgeqpCxZ1rmnN/eV4M1zgQs+ZEgFAoCDXJe/gu6JfmmEI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":402222,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc+Vz5CRA9TVsSAnZWagAA/zUP+gIIB2HBa/ZkVcK5bmJA\noHYvj/4/ECTjLoTRTg/KayUbqm0dtT4f7wPN59oq88x1R89t4bi5f5bKbVb/\n6y3ZZoLJQewQQ9q+Z+lV5Y3BJC3p0/kcA5C9mNSCg0e9JVAwcmaRhRlbFkyD\noTqKkrkzOE/tGp48hRv9OHvFG3yXGqwKOerVoL35fJizrFIkOSc9Mpi7hZMv\ndZskkLy1Fxp/sSkdl8Bad7xXCyH2FvYVlKgTcysq9/m0iMfclDCzZ0BUKnYo\nIV8c9O5dVFOL1Lq4USBNUTUEfcsJtalLQsxjPtAdP+APowZjxJjCocqg+MlI\n1+mDDBtcNhV6/2NfFtTArw5XTmw0Yj5k6loHhnMNQPWMauItCt7HSUhxFrXd\nDnjclkqeqzbqD1425WXUgxUnJxIaxPP17gCAX9z4RvGoG+k9jh7lY5xaef+G\nVGsEowP+pJ08d1SEHpEHFzdwZa4QhbwpwhG6YNatKm4W81PhoJs0Qcm3jZVK\nUdG2YvVmRyTdQEuqsUbbhIPvcYq8l/a/y5pRZX37OJebeJx6UTtKmSB4fPCc\nGK7RhFu/oFQB6ITh8RIuaoC9UA5H0zVwzULZF2EVQR0PFhUdxfJX5l48RuWd\n1FnTcYLeidOT62XJASDqwWBIiVQDULmA6WvtBWzdi4vaGQba4MYyQAVdpJW0\nkUId\r\n=dd92\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"eee14cb8449e28934ba296475899cb54cc645c53","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","semver":"^6.0.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.14.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.4.4","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-filter":"^5.1.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.4.4","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0","@babel/plugin-transform-destructuring":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.3"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.22.1_1559846136988_0.16156235909233208","host":"s3://npm-registry-packages"}},"2.22.2":{"name":"@yaireo/tagify","version":"2.22.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.22.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"ec98210bc8a8654516386bb71088f4c6124960d0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.22.2.tgz","fileCount":20,"integrity":"sha512-/GNdNAya4vBQG6MDflpDM54BgmpHnqcXHtpqcaHZqcJ6u6ngMZV2ISfffZ5puCAqhoAoBeTnODmKJO5gpEW/bA==","signatures":[{"sig":"MEYCIQC5FOOzYC7nYw2VyzJONn53oajNbfx38ZoAOTl40zTNbgIhAPNpXdA9RaO6aPD9sOr5QGqXSzu5BlbJsD0FmndLE8nF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":406939,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdBTbMCRA9TVsSAnZWagAAQOgQAJ+0lvH+BudxVddwm32R\nbKTmGdsHNOZsLz3fUj/hsc04B1xQWTE4Jwg/5k4Eqg3kzod7HSBFB54ZMIEz\n8iqZh0mZlpb0NVKspbVZXERg6w3X70MrVUJfGCHu4L7Lr8B9kJl//YW+/dRh\nq/fL7sMBP5znreeIxHO0TaLAI89nggLbYsGjqbiJxjGFqwyIR6SC7QMKtj8X\n/kKbBZKcBP+v6RuNj7JqdjDWjNXDMW0Vhnfp/pySQHmYdz/oM+Kxdi9JCG66\n7kTXSrN+hHLCuiwHkwCNFBty0/JBsK2XdpwFDE9j+BDQjwR59fIt4cm58Lq/\nFeYk9hUc5GmxviG5hxuHqtYqujCOh+mA3L/bQWYmM9/RcdSz2LJadBeUOWC0\nd4S5xktHd+mxj7UOXzc+d81By4FjBcE9g9lmEoZAj6ZMh+neQHN12iQraIFd\nS6R8W8ge1W81RnQMX7nRerZL2IJsHLZyaSwYca2TFQCBa1I6Sr+DeL+lIprA\nk1+UOvsW/pfCBccgK8Ryyn4Jgl8qOH+lkRoBIQT7Vva13hcg5oo2jcCKg227\nxSy5+IddtJ6NuMwZSm5+E7/sbfCM2HQLF8lporyMYZoKp1Kkt5Ay9pl7ATrA\nbqTplps7dIKlMElDSkby+NaBgSFsiZsmbCyf/FPxwOACHHzNQMnJHbgtPxBh\na4zo\r\n=YPuK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"f3ffcfd20bf6b9b5c83d7c68c6a6b4c997f0ccbc","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","semver":"^6.0.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.14.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.4.4","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-filter":"^5.1.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.4.4","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0","@babel/plugin-transform-destructuring":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.3"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.22.2_1560622795161_0.2154171697974987","host":"s3://npm-registry-packages"}},"2.22.3":{"name":"@yaireo/tagify","version":"2.22.3","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.22.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"45946cba7820c6d97d42d069bd5362b50c969f60","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.22.3.tgz","fileCount":20,"integrity":"sha512-p/Sb05JeN1Duzm2nF0dttz0+IC6JgR9bxrwoDpTwHakhPArQNxObatOjVxz1XbhHAhjwQ6vKk9Uu77mqpliPRA==","signatures":[{"sig":"MEQCIADGI8B949Y1niOL3/jyxwTmgjQG7seBo3ChVqYs7ytHAiA4cYE77qS4WyvM5PFVbOdZEURplj4K0mM/XTJxyX8jQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":407215,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCVcnCRA9TVsSAnZWagAABAwP/2HZRxFUukUyG4v7AtV2\nxZJ3Rfv6FDXG+Yo+zFygq++fBUZP9Pj/qLF52YVOH+BefOIa31fZ4gp3nULi\nH6K49PBI+8aDy/x3XNP0s2votnpqjZ1rjqpxegfiBKgG3kk7NXFmUFWgVuUF\nB/a2xcFxCbHo5fQ61yQqFYzM7KsEAjnpZx80Y8PK1mTuV8QFKKPOlQv31ynH\ns3P1HP4LHLWstzU+xIyz/6a9W3dG0e1weFtUVvKWHkCfXHg4kpSOBHfD89l2\npF3zPRn35qiJT6PAAJdwPPrlSfUnQ6eEn02h0KqneTpecifm0XMH1/2cEmID\nXS2c9Yl+bdqW1NPCLmwBAK7pHXpburak4/GhI787MpuaordFw8oK9slMktVG\n2cnIb9gjk4Cx5Ns2HX30BfokJRTLto0h4VsqUWcXCKp8xSzw9NRFRPONEA6W\nAGXHuzPZzauY0T6Du3EAQTVIBp6B0LVeiD98f5/Ecn79czXlVv993jVWoVEz\nutjFvkWRY02N+SEBe2tqDVZlYgZTZKwawtIg3nz9NapJJcURV2q1ytcmSHcY\nx2gUKNx56nBmgz37mWhG+G2KHbPUubu3B9dYTlcfFxGhuphUAVaUdPEXbuNa\n2NMWwf4V7tZNEJYQxpu/eE6teXo3ONUQwqIPyNP4WOpmSZJdtcc6szgYMDY4\nszJG\r\n=15Oi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"69f5409a6091716e8760bb1fe1f23f75f8dfb42c","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^23.6.0","path":"^0.12.7","semver":"^6.0.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.14.0","babel-core":"^6.26.3","babel-jest":"^23.6.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.4.4","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^5.0.0","gulp-filter":"^5.1.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^3.10.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.4","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.4.4","gulp-autoprefixer":"6.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^1.5.0","@babel/plugin-transform-destructuring":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.3"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.22.3_1560893221925_0.6350802019808188","host":"s3://npm-registry-packages"}},"2.23.0":{"name":"@yaireo/tagify","version":"2.23.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.23.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"e4ff91edbcbe99691f95f1ab83958fbff9d7e567","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.23.0.tgz","fileCount":21,"integrity":"sha512-Cus1FkooRAPZqd9QgALdTJuIvb0vhD48+/4dSdu4gr2+lc9QbQgDampma/YOCJROl+fdvxToww7BlvazeHtohQ==","signatures":[{"sig":"MEYCIQDolH8nQEL4YMvgXtX2QkWntred2IRKa3hBLPhe1XAFtAIhAIMas060pJMOyhv0qgPoyThJogTssCHUfPnnkuVlZyCp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":413325,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJlSLCRA9TVsSAnZWagAA7EoQAJ1mZjqwwR1Fe+KfWCck\ncqg8NPHO6ULE573L7d2L+j1TK7U5aWlcximZle/GmIyE1SkpbLIDHVy9r4eT\n4TP5SJyPXTCzhQvno83A8CQAnLAHe8cDXbHoHD7nfENfwg8cm/awm2wLqnB+\n2y4JqnxSQNUCgKz2s97FYzyfOqGqodycABq9xqGgmaVsQBHzvugaXF6WJ7ud\nhDHbpovBIbb+wB5k9BUyVZHZ1B397Ww1+eiVOfYl/qcGroUayPn6FzjHnDIZ\nQd9exNrhzPKrIEMv5Ay+g6f1o/YriHfp8PXt9FoWPbJfcDzDJUZynl4GE026\nPQbzs7UOAdRTcWpmog1x3Gz41OJ086+KH/Mehv2TgIuF0TAUWVRZX59HrKot\noB1zhYR25QZW6SJrnp82cmlVk2XAnxyft33fcKAaGmLLp0ZHcTDB+lbQ75aC\n6UAYcPfIWSCw0Va3a35k4RWNduuidLBcQFMDR4uQWbZoPcLoUoehkCWRbhkG\niWoDSGf0hbSf8tGBeGMqKuNxSue/WCq1aCDyEPrY/7ygCytdgWvZEatJg+BJ\nHia/GOtRMLcAfnNxOjTPeu92teABMQ0irTod1dcsFyXWvapIuk7HLePgGpiY\nB/ga1UR9qJexYu5u43Iovv49izO1uUQOwQJy9X5jb2RfFdMlVz3VSUVm+9MZ\nZp07\r\n=OqYP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"8f1ab4dff32e0e7ef22bfbf1fb08735ecf73a3b7","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.8.0","path":"^0.12.7","semver":"^6.2.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.14.0","babel-core":"^6.26.3","babel-jest":"^24.8.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.0","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.2","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.0","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.23.0_1562793099132_0.764199061808055","host":"s3://npm-registry-packages"}},"2.23.1":{"name":"@yaireo/tagify","version":"2.23.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.23.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"7473655d80131191422951cddea080b0569f0a8d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.23.1.tgz","fileCount":21,"integrity":"sha512-n9k3dR7puF6gp9L8lET1cACk7vN4j2UmrWeTmIvMNLPtWis9hTJ0M6zLC2XYc7edcuUO0/axO6bTqqT+9se8vg==","signatures":[{"sig":"MEQCIHf9G+eTL9yqxlHKpxd9pTcYGFw0ZPeoB7fVz+i0jx9AAiA1+rGzdjgwOvEhHw+2Mn4YfY3MwjHb5HbJFp3OZOeI5g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":413520,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdP1IfCRA9TVsSAnZWagAAA0MP/0ifXVuwfaEv3WlaIYbv\narHe2w66ZFeqDhScPAFBG0UwPGpQM5XlqEwKX0pUVj5kx5D1Su16vhtqjQKx\nIvJyQlBuyPzQ7a0JkF5efr231soCvbHRORs6yNjwlQJkVG+FU93G0OtfqAIf\nAjqyt5hofW+K5sYukIb1UkE7OVlAKV6KNfiooKUrHY5Hcoz4nl7fXVwZZO/I\nixwTJS2s0kEx08Bk48uRm6rUtGKE0Dgs6ljVTZdPzSlqP02FimWhnAIng0vm\nxxRbkJgyO6k9r1+jZNNnS19H4u5vi4pUUr/+bX1/EgVLzTeNk970bPDfV3sP\n2/Xr0X2xAgeGsiuB9+xPRivRi6DDpkDuIK5/8aq5B/eBeDQlwhn1EznvZZ16\nhJc3Ny+50AjtYavgIuvLp8e69QN+N0mAQtemdNTMke3j67b16dtAUAcRVc5j\nshUthAbwYhv88ESzIWZv1kSVVl2O7/uxkGMuJPqc8o57uN3RyDHrrSHmiZCw\nRdc4XTC1aG/JFVH5VRqhBhqakbcRy1Gr0DEO5munr9lMZQIVZSi0UzJNfa/p\noa9gLmRKLr1mxN5ml5Ldw36RZL1lZG2G0mCcpluA9JB40oN/VsNQPvr5eGlT\nhgfAdiv0NVLhUJDlIKJFADTyK+cK502pwB7oTIV55tYI/J1EzJ6jcuNT4OGo\nEeTG\r\n=GiQp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"cbecd2f960da13917fd49c4a65784fd4aa2a476e","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"Convert an input field into a Tags element. Easy, customizable, with good performance and small code footprint.","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.8.0","path":"^0.12.7","semver":"^6.2.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.14.0","babel-core":"^6.26.3","babel-jest":"^24.8.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.0","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.2","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.0","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.23.1_1564430878467_0.11410885394703785","host":"s3://npm-registry-packages"}},"2.24.0":{"name":"@yaireo/tagify","version":"2.24.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.24.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"d003db5f06a0ddfe2d73aae26b9ca7943f13a2b6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.24.0.tgz","fileCount":24,"integrity":"sha512-qED3w5KqslcIWblXgpixAI5r8CRvZun8Rr7cBaBCfFaNnObIPd58RGgNpPzE3gxLSxg6rGIkSgPfOo0rjyxBWQ==","signatures":[{"sig":"MEYCIQC02EAslFyObVyy2D5clcIvakeVQ8zWh2FEcj/ITbgFUQIhAIUtjWCg311XOaVS43Wb3JtDooRiyLiZqOn0elPSneku","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":417685,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdWA1iCRA9TVsSAnZWagAAvdYP/2k4vJlIjWwvGIKoHCkg\nURQFAf477aeKa22uEhfAQWqbj24/kXs4anzaO32nj9GuZsKMY62h4TV+vTq4\nE0DH0+Mn3d7ZC9gchi2rKT4l71iyoGEwNp3Qea16KikekVRx/1uIZYyWkJpQ\n/eKJzxoK3nzpadQ3HUCFD+BlkCt1Pb2WOomSaa1HQ5GjdODK55GdpyhTTqDo\nPlPl0yIcflahyT/2HIHneiSKDCAqCkbZl9zwBp0vFqkJxxFUy/uPTeJCTSck\nuC0BzvYd310+xnA7ydSRRAVMbP7YCbCYktBICj2oVJSrMDnAR+FHXsLxW6mO\nDa2Xbo80g0U4iakjcVZt7iyE6e5VNGN25ZrTJq9EMnzg1zfGAcrZXo1maWx8\nlJD+xonEaJ0fg+JBiZJD5oaVqYolVUOxKrFgcCpR5ThqJHrqYz9cQ7R7nSp9\nAlSFsX37kXION+c+iNbOtdkMnCt2M8ieGwa20sP00eYW9WoAqcTYUk5JZtIF\n5YYVWT9q80coUAzmY+AMOdqQhJ5vILGFvsPQFF04H1BE5PaIOPxXvOLoU/6B\nLzOVScJQK8L5KP2im4t5HrGrT3DespywwrHJLh5RjbkHqU4LVDfLLip0a7zJ\nF3IFuzTQZkb1hOWEHmdeDofc3qnQF/KTeONHWMUKoxUIEXvKoGg/Ujjz+s+1\nMOaw\r\n=Hh+T\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"ab4cdbfbb3dfeaac37514b1fdf5f3429e5e6a494","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.8.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.19.0","babel-core":"^6.26.3","babel-jest":"^24.8.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.24.0_1566051681676_0.4410496087795235","host":"s3://npm-registry-packages"}},"2.25.1":{"name":"@yaireo/tagify","version":"2.25.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.25.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"508324e77ccac30053f579618297aa83607cd879","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.25.1.tgz","fileCount":24,"integrity":"sha512-KLRq8ThQw7sje0fAq521dt6phcSRdEwkSbKXC04DKbXChUyciadKVdI9Ab8ei9nilhEoaVhuUaqiRVCQCEw/XQ==","signatures":[{"sig":"MEQCIBSGAIeWqOnPeSWIExXCi5BtY8CQRSyXwba00fPs1gFbAiBz/NRaM/8Q0YGdI3JCbrGHdLxUXR2PjE74gcrFpIa21Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":416417,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdYEj9CRA9TVsSAnZWagAAcAoP+gJ0tXHnRAq5DDoGhBeD\nfEIxpXvV2bAZcYPTNzXSFBJGsPQXTASgIcDoiUTf1q0r+Vjv3f25iX3C+/JL\nEBW2UgUdr4BzKCgOzdZ08gHnRbv1IUnUTq3lBfm2oNtb8JIp5zE5baA1UByK\nqLLFaNQtkHZaT9oG5BkPYoQ+aSx6X+lzTQ4H3okUDj9oTRcyidHHbrzakbRa\nsbIi0lnCKjzQPWspZZCJF4TIevkj6xpPVjTxBHLzkD6lvhpXKDVDwwMdnwCW\nbRCGEkrL/g63J3q3TQ210arOSscmreo/OOLDz0Z7bIB4ukJdvnymhwvrMHWm\n1epiE3F+XuoKcF3DzDoSRGVdJFjutVJ/PD9WOFzss0mAho3l+Sy5acg36Hud\nu0ZvVYAVQ7wIuihxKM3gODc4wzgWioIMnLhrsgRyL3sUU19IaohLoMumaG1b\nERlbaS6ws2wfz6nrcPjMra4wZYtFw1MH0OLQ5Tn00CaLM/j6mq1HRyZ2Oxwj\niXsguWoQOB+Tqc52OqP+7ihtHpeMjHh8V7NMonsiJTRv/o3btNg6nf3/4uCc\nOevHYO9IN2SIzp8VU8LyWRQff9SqOmt4IFARht5oT6/xQ2OOzYFS1254W6kQ\nOfV0sTJnsskQcenobEhM3m73LNjg2R8pyL9U/qLpFLfWJ8Q9jZNj7+bqWmjL\n2fPL\r\n=eJ2g\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"5d87927819549c2be0a5f7084ef654fb6b9136ce","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.8.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.19.0","babel-core":"^6.26.3","babel-jest":"^24.8.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.25.1_1566591228538_0.464994914146436","host":"s3://npm-registry-packages"}},"2.25.2":{"name":"@yaireo/tagify","version":"2.25.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.25.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"4868766ae59c21cd2c8c117fa3a4018c7de05ee2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.25.2.tgz","fileCount":24,"integrity":"sha512-7xry8HYHTPQahIfmDdgRNn4uuAmzHK9PODf6IJsUpPab6bO5f/ggJT/5hreKfDbUB4fzNWfVz9Sclo69ctkUGA==","signatures":[{"sig":"MEUCIDbOxYBFc4Fn2OJi8kba5xkzzSq1kpSxdOSKksBT+rqMAiEAzDAAouBpTaylUOahpcx6eFNfEFubR25473ibdtltQ9w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":416942,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdYFI+CRA9TVsSAnZWagAAOo4P/3nR/WCSCl1JcqV7ExCc\nyj2cFuWVdX2Kp896miuA0f4SzpHQf3rZ43OOYZhaKeJsrgXpINuopkmODQvr\n2AxF3Cj2zmbd9mHGmClLb1iDlitVuoTF/JBm2MQoS3FYiIezg0o+/DP7xOp0\nHRiQIz923UvQI1OHVn+9tXjZPRSYRnhpcf1OoarBpml24sxPz1Jc/ijyNGVh\nlO2IVejrQDB3ygct49qCLWnDKq6SOfXX56061GoSQ+ZIrKvWbQlf/5cBg/ua\nBjeYYiYic2UgJEZO+XRWx3Qhepw6076v9fehHhVno8kKDId6xD9vUKTihlJ/\nLCin5b8n/fAJApb9Sh46w6s5lUjuRayUsXtKg6UTxDTxIktOr9yA5u0eYmiu\n/V4LRd13y54TKKREdiUGSau9/6O/X37MjIGO9Xoc3vK0ufI7UezfVQNUPe5O\n8+Js+yCYZUYOnSxtphZ7/j/xhO5jEAhWR9uLS9yr258BjLkve1CGO6mxMyY0\nIaCLTa3E3O6KV97VwZGBnZIMImMGXe4BI4xyLVohn9h0/tGh9OuH4S4z1gNK\nnsoK8pK+i463K3zRsgjghxRInOwWf5POtvJgqQA/1FSpLqrsxNpfyohgX09v\npQlDa9f+RUSYuWTlmoVK1nBJIVbTPT0UHznKGoGXfsdAmLYLYJqtqtz+5R7j\nBDpg\r\n=E2Q9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"8543f2a261eaffec817eb957187410e330fe7ce7","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.8.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.19.0","babel-core":"^6.26.3","babel-jest":"^24.8.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.25.2_1566593597265_0.3842604212263354","host":"s3://npm-registry-packages"}},"2.25.3":{"name":"@yaireo/tagify","version":"2.25.3","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.25.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"bf15d9170fa171c80f78dabe89014caeb55069a5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.25.3.tgz","fileCount":24,"integrity":"sha512-oeAXuOov1js0+o8TrpAurWEXblpVPiVOl5pGvEthWJvW/jtRbvJ0fT34qbSM4h0RiW2bRH7c2C8XIfxiFM0OgQ==","signatures":[{"sig":"MEUCIQD7RPhAQVPCIn54YQjtOkLNPKGtA2XuT8wWK1sJFWgjpwIgSf3rXB5QO1tY5KuoOg7mS468vwZ0zYcUFe2kahwSFdY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":416991,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZYMWCRA9TVsSAnZWagAA+rsP/0BhEq7jx7nMrxk1vN+7\nsRzG9SFEnOFZ8zbo59wEMXQMyinGblEgS2jSWOgWIk5pYZct3R0Uai+/7Ory\nGykeueCIqYy99lWhKEGivxPBg6vpipAG9kYcm65pEFJwaSSii7k28DlObv0e\nc9lluZAaxs0o/Hq84zHSvUSy/QP3T55qOSUXkyFSKXWjH5+Bs3+4gmfOh7mM\nZK9hrm9ycl+nspvzruB8H55d/9I10xw3OHMz8pYyCL6upSz61lBT8cpf1w2E\niQQG1VLfF4E4uy+8pRb4c9ZfpOCWQPaJT1kiZc5clIDSGxsDHYzxRdF/a8vR\niDFijW0PtaIw/nIyJIIshLnpUcZEc1zSq2Kf4W5oGnbIJmPC2h0LLvWGESdi\n5HCS0fZlHp5BfAgK+Zx72fxSSHGpKut5+Stn4DC+Qa5GdnDBXejtDcLGcGKk\nrBTSfBYAGnydHbCM9WCNYB5iYqdgwpSbidYjsAQ7aqLIMZ2eNYxuIb/c9EeB\nq7+gPMOTAsI8yWsI3bwCqddQmMgQpA89NQPTVHgZqrP2484P5cHDGPdkkhbc\noKBdFhwWcDkfRQMCEUb5V2IE86GuOEgcAVEWaAMDbUQCDMsNfBo0glrxyqvl\nLQDi6sBn7lUxcIeMJFt8ZbvonNerPvJW2RnnHpIZBC5dMKb/2jKZeaeyDO/a\nLRG6\r\n=gkXQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/tagify.min.js","gitHead":"70bfa37b82a5be42b1c1e028345f0031ec794737","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.8.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.19.0","babel-core":"^6.26.3","babel-jest":"^24.8.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.25.3_1566933781521_0.08145502811341832","host":"s3://npm-registry-packages"}},"2.26.0":{"name":"@yaireo/tagify","version":"2.26.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.26.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"7cb488e89f929b2f990acaa03dac37ee1c243a9a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.26.0.tgz","fileCount":26,"integrity":"sha512-aAG3ahm1PlP/2rPhQc4oOmGKTcj+yWXbESMENIp9nQ/XI+LEYf+irbDI2zaB+4NHddTaGlSpWX+m9pi9OaBUMQ==","signatures":[{"sig":"MEQCICI6GGzfgKWMapTMaQ4hgfXCQywpaid2uLGOYvd6IFFrAiBoDV9V5GHPowOlmBGOK+Wyi7hBe0Etcf0R6BJjqmMFyg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":457712,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZtfpCRA9TVsSAnZWagAAhQUP+gNzdPdoYYIxSe6SPwt9\nJs0tOQIC+f41c8FMJLzy6vCSKZcbLUs8WE54Ry789obffNJXZeQXoFMtLhOr\n7i7m3uiGcoi/YhtYdMOAVT+RwNw1HPXIh2d/poSMXlJWUwTUDYt4QtdSNlmC\ntLnKgWeBPOw3YQk8pIHU4H+aEIawGCXsHzcjP1UxWgCNTFTCWE+ts//bg/dj\nEkiDwKxB+5p9WfBXg4WyyzPL6jrveE2NaL7AAOV0jUab/qqO1bvJ85JZ2GWP\nS2BJWjo/baJrkZojClIJ2fpdsDEIdLPbTPO6MzRHAjk29yGPzzyRt7yXQHIE\na9IBx+3b9b2UONuowasKyYvKQEG6qhBupAjOhlWG8bVC+gFg7Wc8leFRUpPV\nX2FMGv46wn40efx2OtPp+VzC3C45amM8WFp0iRuy/vm5JkCLZep5q3b4HzJ0\nPtZEkkjB5cyb6Pnui4x++fFcwkKOIRgkt/ESod2dSUpZuNsh3TFAEB6NEppY\n/pERcuU5HrG3kcZD/NKGo1LbiYjf/3VQF+f6fQMq00FJYq7MIGPhMtJQhM2l\npQXI+6KUKEJ8JR6LF0jtggSx38cV2V2DCV3z2GvHa1bzztH1gJ4G3QGj0NN5\nLEcikaPMTvFrE1vIzNVR/KrnmNMgGpEGQruK9XKablF3yLc9E5d8Yuwpc6u6\nkNkz\r\n=h7Ff\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"e48ca49263bb0b61439206863fc3cb01c6c90c9c","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.19.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.26.0_1567021032572_0.9669138796962018","host":"s3://npm-registry-packages"}},"2.26.1":{"name":"@yaireo/tagify","version":"2.26.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.26.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"7359b5a09e6a929703524f0f11aad9c2dd627275","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.26.1.tgz","fileCount":26,"integrity":"sha512-9beVCkEEvwCG/IJeC+55mWWQTEcT8DSKcTDQ/RFqKkBVXmwtQrwAQ6r00f1990BUbaB3FtEYyvCIFS7YgYrmzA==","signatures":[{"sig":"MEUCIQDeaeLeQb+rbiWiE2yfBgVP27PNqXH7ufiM5KzmH82UHgIgfZcqepYuVDnxML6MZ0gHGqA3GObipDNGLUjcxyQjtlQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":459105,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdakXECRA9TVsSAnZWagAAhj8P/0P1TlHWEcgGJwPG2QX7\nfYiEEANxcNqyGFgl6v/dQq+fDaf+nv5Nppd9c9hdmnjjX0WwYgWRQS+R+LIB\nENNAxp8Y2lbFFNnOZpC8/tfyrMmprGQkFKP6FdYq0TeR2CmcBBCvBk5yUtfQ\n+nizNvf4SVCy0rBa0r0zgg78NzNy2+apDGwwgLWA02733m7G1vkke3T+Ic/A\nXg/oXjmhh2GpIVrC9txipwYeZSSTOArCQTXa/Db3GS8c3a93+9DaHeszjlgj\nIiVjaj8uhHmDl7ODf2PSM0PivILusG+Vm5Hf/NQjQqWzFGsNkpMkIWGfZcKH\nUxf9/dHTa3NypjcRIoKUhuLvjVmYCP/dmkE79mJSxBFK68pOsWJPPQnJ4PTT\nYMl7cWCyV1kKjTVsTJ5EwehiGl5WNupMSRLtWYZT1OE0zxE/7KR5B+4kgmud\nDWI03kHlo/+8A6vQNopHCXibC+LaGpvAUt/wtvKvCIdguUVpROKMOfuwc0vN\n/R59Hq3tZbM7yyi0a/QCJReXeW1iJk14nrvVts2WIc2dIlKv14K9xACgPVxP\nYbnO8gD+Omo6T6vHx51J3VYoEobq9xeCu5DUxED1i9EoWRFCLpyvq9imzUoS\nDPxhZCYRRo9QPoxdrzPN3d+KSELJPXwWI4cv4V6ky5efa/vW6DfUktct2wDg\n+AoA\r\n=lji1\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"79d382a8e9686003b874af33a3d06d891ab3a6c2","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.19.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.26.1_1567245763700_0.8784187269443842","host":"s3://npm-registry-packages"}},"2.26.2":{"name":"@yaireo/tagify","version":"2.26.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.26.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"28c560e5af30f73ac38f8de73f88a22fbaa7e6a8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.26.2.tgz","fileCount":26,"integrity":"sha512-guSnhIqTg0M7v4zihgo9/6gFWaLLTiJ39s1JDkhKH1R4xMPeogCCL7L3fKpgmFLV16v8XAJOUz8Vd/vPFCBQyg==","signatures":[{"sig":"MEUCIAFr5eJpcqwZLiH1uCB/0ejouzTrZGVkOHtQ4CSZ1QXzAiEAsXVukEUQBdazx8l8ImRzqKhd+JAqpXMxEcsuKSCh2EU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":459241,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdauHaCRA9TVsSAnZWagAA5K8P/ju/KlIY2+idZLV7AsO0\n97MCxUikOPTckT7dY6Acjb38JfNSQcAeheENEpOSC5pW5wPOVbcpBndWs//n\ncuoUH8RZlmybDYp3uDMsxEwBS19ZquFBC4H9U10UGHNzFgx3GYRaIZdAd9OZ\nSGMGGH4hOP+IYEt0YtoFGENAKmShUEIkAOV+kBpQWPdYkhbfWbejP2Mobsah\nMRk3FeUSNLYVAfR2V9NKbf/CPxWluOUEQPKkULhKqU6W1ngNNq8IalencmJ2\nRduzmG5rzchz+Fq+4lMDEubQpV5fVXTC9rK1ZMmHGcs6JEvxsLIG5FDm5I35\nbGhiG5aWVvPsET223+UhxvLWe4ns/V4Cf/dc0qXE41wrJw88iwet+rNJHK87\nJpmE1/HtTIMjzZr12xaUIGZydBM/qG0Fh7q+z4Sux4bkq15veg+v7NlEKANc\nVTWOK35P8biD4bC+lmqg2XScCyXZmxVs/+NJ7H+AXN+RWYRga2n7Q1zcvGcu\npPL9rNdF8jpvlucYcuIzjd6/ezbIbMPLy7v5uijpiQOnCp1SxHLufPJfWn/V\nEVDLMpY2uZdCUUsVrcY6hTYrpGAdZiIgIu/VVvh16D9pGQ0J1p6Tu/C9Icbj\ngLv2E1g0qTuRiNUKoUPtSgmAo/QnXR/IR2d2k02GIoQSDFhKp8f/tbkOjQn7\nOTxW\r\n=9vKR\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"a398a7b9f82aaba1745718225067441f68c1e9b8","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.19.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.26.2_1567285721715_0.725914445560295","host":"s3://npm-registry-packages"}},"2.27.0":{"name":"@yaireo/tagify","version":"2.27.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.27.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"3a97157b5ab6541e9c9f60dc0f0056eae607dbce","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.27.0.tgz","fileCount":26,"integrity":"sha512-BdIgJnuI72BGnhKjrlQTKPbz4OfEu/lUok91dtdi5Jr7PvJLNT/KzGz+VVGwmyyP+6baqza9OeUEBTbaVmuYZA==","signatures":[{"sig":"MEUCIEAyfTNtaA0QndXd+xRFDZ/NuZEEHhNlGsYi/yXHCyFRAiEAuRRBQPcmBtVEb6Uz2sCw7kKBciXjIMPdvFXZI+h3hCY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":459806,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdbLg5CRA9TVsSAnZWagAAjbkP/R1iu3tX+gxrd/Qn5TZv\nNUUSKfH2HaaDXweSjrR5q7h+1Th01GtcLTT/tb4rRv3Xon5K0hnsXwXxBIcI\nlB1l0GGORuc/N5Nn0IU5DhblTeF8psPv8F/Z4BUjysRT3ZkpTrHOLuRwc81m\nwgdhH0zbJUrSkDgWWrHKg3SoBnz+7ki9IYU1Y2hqvtXjAAtm/8+vSyAEyZx5\nJclNCwmvNHubYk//+hs+IZtaPwtcEhzc2rVzIUWUGIrjEnvcptNhNTk2HbLR\nNUrkQCAQIbxWpGaBUBrrfpQ7Cuep4hQq5e94XilZA3c76cJWdoNAsiqYW5Eh\n6BE7cfqj36InAwFQbBvKWk3EtsPxJjvLJb21MwI7P74g49t54DxFIPTOPV8r\nOWizJWEs1fnhhwYjfIQdnrrBASGluE15tlQfjWc4R300y0Ii4+XpzRHh4RU4\nJIzbJ5rIqJ07FL1NOdZy/21bF2U9mhIGz4EWzpa6oF7j4cMCotU9MBKoxUE0\nSYcqfJdt2Hhgen+tIhesPUV7NzeZGjYDX7yP5WIljIaSknBSXpTKocOg/oKH\nOMsMW9hJYwoy9Psf0cxJ8gDrjTir9tE7XpUsTb8CBgjwaQjOIL3grfML2U63\nfVvKWoD5fNAyP+HF2s8VKLdnc+NonU1DlEQBBOX0H7y4BTkv92tsDKZSDnwF\nO69I\r\n=dDXL\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"8078e78ba753c7155085e5ac7c279ac0fb50c841","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.19.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.27.0_1567406137066_0.31230992273705294","host":"s3://npm-registry-packages"}},"2.28.0":{"name":"@yaireo/tagify","version":"2.28.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.28.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"8b350711c9e190a3c4bc0a8dfc9dd5978275856f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.28.0.tgz","fileCount":26,"integrity":"sha512-fU7C0suFJWcu5fgnYt4hTQVrSOHpx8ZOTSAqdFoPAhBOzksYgS+kWd9P0Wh6cv4if2p6XJIDPfskGW+nx+jQ2Q==","signatures":[{"sig":"MEYCIQCurtlgxDuz24/m7oyk+AAkDlXI4VhYH339Y4yN1/ZHIgIhALvISok9Xw2k91TgFG89x88hkTw9ZUSmzEn/K9/mh51v","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":466980,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeV20CRA9TVsSAnZWagAASkkP/Ajnd4cWvZI7iY5QMvCD\n1pw73Z0ZLRvufgbo5Z/K0aHz0B8lAw5AOx1WFvzAtwHv/2aIAI0QQkWDY9E7\n+RIkZjBiNR78f4+W+YqJ1fjZYZ45SxzwnbKRjtTRdvS5Uo+Ev4Kv5ynOUIra\nsdD9txy/vuV02JJkr1pUizlwqCAhUXs0sU38rlHb/mWQajhppZ4HXruCckqo\n13j4hMk90Zw+iObJjEk9SmCFBXUApDdvNZus7lyCLyYXfSObHze3zsx1AmG6\njF6HbZ+6Tl5EQj5ix7k0xkd4OlS4/xpaTZ2Yci2726gSknFGEZCGuKAEPUmp\nlmkjSgI84tKEFgpDJ2gZdiRwfdy/yODhkNc4FJK58p9XWxp0Ql7PlmaS/i/o\nyTKzw0mGTJNPkrZJ3YqqxqrrlzD79sDWaaxmewxW0NJoHFoXzp4PLkwgiOkf\n10PBs4iO/yuAso5y2m+wZ42HNjf0Cu1AczxxsYV2HmFO5Bs5e4d1+7tM/KA9\nIGzKnGPxfDJqfd8Fe8e/ns+bD0J/1/4EL/AikkJ43WzmAQwY9kSbSXEZE3/k\nNxzsRB2Yv1aadB1PWXVbQXssruTd8RPi+F/FrwKvUHKYFWl1nVgyUhGKlTh7\nsH/O1e/hMRJwJ9tpPJZ5MvMOhwtth/xPg/ZHiWg93sWlXZ+J5PNC5lccIrpf\nl25l\r\n=/NWO\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"aeab6c01a8776eae82feda1370fd4feeb1b91633","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.19.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.28.0_1568234931786_0.041214103161635984","host":"s3://npm-registry-packages"}},"2.28.1":{"name":"@yaireo/tagify","version":"2.28.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.28.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"c388ab132a630c4c58b96c8fc8eaf58cfb70000b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.28.1.tgz","fileCount":26,"integrity":"sha512-fr+WoxVVcjR2McnRyYvsyngfSWvtlWOtQV48a7+FDfBWPlhliKX38/dXxaW4qPzlxe1PUi7WPgBqFFBWW7TtMA==","signatures":[{"sig":"MEYCIQDW17mvR5rMuO8ORVTcQHKTHc3isSCqy/P0sOvf6FQxQwIhANVtnbPSiKd/NcQ241+cuiZCdsigb27xnXcOnpYIZtfR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":468463,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeeG9CRA9TVsSAnZWagAAB0cP+wR5jabh88kOZ/8wnCrf\nc+jcyDfAYwOr6RPCurc862JGaAT8YcVBVPJUU5zi4CSpW7oXDC7RAnvyr7FI\nioP9xWJgCvgwBKJ/Gj3NKSuw7q6mGABakh/8v8rDUwqIk9dUZCtxV6VFgwrC\nDDJ492zpQcKmXp9J/8GVWfSSe2MdbSj4CEj9vbTwTlmXoZrB/tTINdNb7anE\nVevWgbZpykYKrfBUFvLd5QPeb0th1OLil8z0qZLNBTIJJdI1Wh2OzFDMSGY9\naUmFvG51OoBCXTHnXv9jBdcZ8AbfRtXyiU1ox9HDcAB7SShSiFyRnJbqudad\nkjNcn1HtT74r+B46ucLWTMhw+jZzsoqEFTwzsJ+BGEebgHUv+UWT/w6jgOBN\nyzXEuYOFi9G4Bvh7HVbBzEaneJ/U/FmFqEDAsmRBnQfpvOQeqtDYSp8g3FE2\ntGN71DSJuKSX8oR0ifrvwh3q+w7Rj+0BCLpzl9zhCW973FJgrQnJHU3L6lZ+\n2hSk3RsWu1oJ04WDuM1tDZjM65sW350teleDhgWkMpf6tv9EuvMGC2ElzptG\n2qplAewkvknvv783J+BZ5CJGuuI+6xH7I8gI7FURsKfIfk7hJNDzJS+hj4jG\nLiir6tzdycd20IB81lDXfGE6kkrBQt0PbYg3NArLqI/5KLwjlkRhxX/3u/0m\nQlhL\r\n=7itA\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"d00025b510a9d6e049b32da9ce669f86ecd993bf","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.19.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.28.1_1568268732429_0.05616391141772459","host":"s3://npm-registry-packages"}},"2.28.2":{"name":"@yaireo/tagify","version":"2.28.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.28.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"30e6d84b4c796947d21479ffcc2c483eb49c4c20","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.28.2.tgz","fileCount":26,"integrity":"sha512-UZ8ymD45fjtkf1SzNeFKb6xvXxU2WURMo/KtH8n4WEN0m0kngyTEmRyUQqAuGiXzvQ9HMvXnAjuO3iBenNMGHA==","signatures":[{"sig":"MEUCIQDnOKUvOTwzDDLQ5wwQbwnNnhaeNiZKgO0cK+KHwklwLAIgd8bRn/HLIUNSnhu1jjOHKCaU33opOsXRCxNSSHNl/sk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":467644,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJde5ESCRA9TVsSAnZWagAAD4AP/iMBnnyMofOT2nNiF1oU\ncUNnlqZF9BEKFamFVZmuUFVi6pJ4X+RfALrX9FRpKpUj5axulU0SdknF14gQ\ncQgE3fE4YPkhN+Pn/fyhlA0rRDQ+xQ2JVY+H5uTDHVw4tbLnFF0xkx+C0QbI\nKYLquubva80byAQp2w2Fw8G5zEQfdboI1KYAWg9TN1M3lc/yHCHqZ6crA7i8\nNLXdr+uI3RTxyXf2lW47+IvlWYSbS6y66MJWApuE5M3sTYVA5nX+N/IaMzVu\nU3tY18U2QBVXSuqMo3dvA+/VNRYPTozxtpILL98Io/PZXKNHJKjZxEkQIRvS\nPU9Nn982EJe/D+k94b+8w9ss1D7SX+P3iTXwUyHgyLHGgv6Npb0ECO5JSJ5E\nnpp2n7exGkUWdfwab83lWRnEGS4g0qeM8/zsFugU9ynYTkGnYAG6HqGkXIBB\nzNbVCdZjdUFLGMYPQdTUOdMl0QmtU+BOfawMJTR38G8n7jB5I+be18b1plvs\ne0QRpRvd31IZwpZX4RwuKM8ewy/4hfQfI0FxoQSIL6JPa1q5wTaNA6FQ6nIU\n/y0+3uTaSC5R68/zOzwQ15BFx+L0tJtH2OIEwsggcLlSHiW4rUqlvYtulyCq\nBtAPkpaxqXkbwDOw/75FPQtbRhL7mDAwnESmPHLgx8jS0sdNCsXNS37QXwKY\nxodt\r\n=t2CF\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"8d5a16517297e39d6409633384aee2bea6651fee","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.19.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.28.2_1568379153923_0.4671213644148182","host":"s3://npm-registry-packages"}},"2.28.4":{"name":"@yaireo/tagify","version":"2.28.4","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.28.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"03444568eeeac23434b5e07a665b5a348b51e770","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.28.4.tgz","fileCount":26,"integrity":"sha512-MDHPwULSAXvvxAEj3QZUASD0v77F/bH7eI2FoFy1TMO/asqiLELVFIxxNnn037jVWhKiZ4Psv1PCK5YSfJN51A==","signatures":[{"sig":"MEUCIQCGXZ+X7VoAsjNgm9l7aXKdgd79ZZkktODS3RCHtFU6mQIgIHASvxDFT6gsAXoMK6L++jvGwL7ZmlFYgvE1j3lrwh8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":469188,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdfU0dCRA9TVsSAnZWagAA9y0QAJUuiN1D9uvK9EMV9lR6\nV/Olx2okHE3LW3YOVtEkXqLluTJa0RkVZWRO5uSDNAlOyiJ7/LPhYuZyGDXT\nF2W+J80DljQZvUMce1KZVBuxSTp8SQPw87zBZhiRTIeBLMsFDVVOfKRFQJKY\nUMOm5uTp7pde7Yzt92QQ5BV7wnHORaJurMs557tf/ogOhBwhM3MfZIHKXjBS\nDEJQ8ygY2hFd62CBJlXkLjXmhUHsBFhCLI4V9mLSGn5ev1V/eDhLCG2Ohake\nYSdBqmvdEPrr/FCtHWucgoNSkm/eeDoMnfCCPL5WWQeLjWILoCSjJ7koIRRf\nJ1UqABl+tG/1nzAIR74yhXvmdteh3JaI4Jznr5QobsjKnP3fH9pn4crUXl5J\nARNMEJpJHgDcUW2DO7Txhhk8ybAX7osvV8+ApQGYHSiJcAiS+pftfNdKNp58\no8b1dGWrJiIWIQwK31ahiUDQomaOLLelE9cDXqMwR+HS4KGoVvEdHw393k3F\nOKDRhz/ZgKr0UpSVj5eIYNIsuY7sc6ej6uM8qKGv5vHaBfNIHmxgz1cYTit9\nSPguIY2pEHLIMc8rs07g5y7UlptjyUZohWYCvuV7Nmob6vK4q7TJtEzA5ZrP\nQ3lZBwGb23jnDG1aF18PrJeJC6VxnWWBTB8wtNirbujnEZ6cRu4JBob05fZN\nZLHU\r\n=bomq\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"7a1ef1f0dd683b60d6e3bdd62854dcb7932f2cbd","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.19.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.28.4_1568492828745_0.14987206298752276","host":"s3://npm-registry-packages"}},"2.29.0":{"name":"@yaireo/tagify","version":"2.29.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.29.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"d0c2b3c20542ad850d129fc9170ba29346e72eef","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.29.0.tgz","fileCount":26,"integrity":"sha512-H6RHRUhtMsC9K+aexwEFx69KuORfIeaOGF1mXzF0tys62oi2aRUZM71rEOLSaZ5MqvKuHV7IItxuX5C7d/Vr8g==","signatures":[{"sig":"MEUCIBHAGESJ+6R7hOAqkbojV7nN0kTYRiUPU/sUtIeyiQf3AiEAyUXNENmLFR3J2rF39voLu1jkuG4QOniri60B+3iPXxE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":494845,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdiSGPCRA9TVsSAnZWagAAliUQAI+cpQ11LJsIlwBDQpKc\nXs54OXI/8ZcrhFeMBZ5hT+JIdf6s/7PK24Ag0LElJPpbKY4ejAIgMClsFb3O\n4cfoYCjWHDmbMo132j+RvtPLlQsd978aLmBeTUl9yqWGkp0iyiJmCZf6qoOH\nPFeKthNtOX7LsF+BSaNMMTjCgc1llhnn27cL+9azUd2jVDDCde9NqaeU/3s4\ngFPulLKKUD+miPgH960TpKi+1Zsx6HIZe5oSNqt4ISX7vvjicGbTBAAQx9hN\nZ8rhkh4MbTE4sqwTXl2emKNG8ICG7r9EBh/iD9UgP9xLP8mb2OmyRFQB0mh0\n49u12m+QCrhsvbQgKY0QYqDh6nuWVScxfbi6uR8s8BvVcCW5zQy0GjeI8oPA\n4RrF3hG5Hs2YjdzKe+aCCaEQjSkR0wNA0H13auoHE4DNOcMNzeGBcBxvoPLz\ncd6z4rb1uHzC74DDtBTFPHv8+0znDkssayCFSeAzBStLDmv1HXVKtxouBoVz\n4voZreqxgz1asJcJMsPW9En3EcGS0xVmIuZ7zACEtdGq24umlq84miyoQE99\nQbe0A5aLKhSBU5ViLJj9UJQTy5NSbwtoj6udQF9oVNr5fE6yWOhD18isu1Wx\nKQac/mG3f4bSDUnN1qFAZF9BCHE0LgRCYYLDJw9+h97IEdmmxkwV3QFTpc8P\ncpgc\r\n=Y72h\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"8f7772f3c7ce989fc49b22fdb45b31826976db5a","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.29.0_1569268109149_0.9419100124598865","host":"s3://npm-registry-packages"}},"2.29.1":{"name":"@yaireo/tagify","version":"2.29.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.29.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"a02573ebbe768eb08908927ff83487475d15d5e9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.29.1.tgz","fileCount":26,"integrity":"sha512-ELMd6HvMtE4xr3jWvjQ97+ppLyY9KVhRGwL06tC3/zCr+2UPK28ZU7RLZpSqtn7m1CVgpQEvIIBg8woEjuek/Q==","signatures":[{"sig":"MEUCIGfgO5raHjH57bfeH1E6nWqcq4tSEtv99nnmhT1wWeixAiEAmdaNcAUOah8xuuRqdDY06NqxgAJjbwsjIwFUzcI1ssc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":496318,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdmkfOCRA9TVsSAnZWagAAVPoP/2/m0SnezWKLF1EnQNUQ\n3tLBTGKA7To4SBhAi7s0R30GOb9ir3ecU8lwewYBRhId73zqSlptBMp5rTJg\n6eGZB6F06y7lRFFZ0Uo65AIXUbiPJBrJipsYm+TNw3geibir6z4PuDguzcxX\nJ8yfyc6xU4k5t6KHCyZzZL0xrujnvdAaPoBF5cwsF/ZQ2vEnUZ8BJ4LXO6cE\nRPD0oFpEwtWEtxdmngW4GcOvtEQY5JH+pSexfuoUDrFwifiY8njolYaTL2tW\nRAG8hIKNKGQi4EgOo9WnfbSduPPIos395Wii/MTMvaXvXlcfYFsE2DMbcJpN\nEQFrcusikh1uJpxz5k/9TpwZkUpB4ibfOQncrxCabTgO0pP2ZUma46543VBc\nrX6mMIqvnucAUgK3UPfrihFy+TiAW6KW8ity5g280cmsNeQ054Ei+bDfFPsA\nFQAf93eDdzx+lOaMNP0r/898/XxhXRHd6dqy5rR69vkZPsEwOvdPGHtd+YgM\ng/A+eC7zps4XjUNOHBOVP81VoCAech0yBYH2eLoKKIxPPwU1/ElxldTti10f\nGOnYpg7LfCESzdCe7d9fIxZ3b3xwSUn3KutblbTJy2iyhhpbBfoaOy/JcbmC\ndwjKm3ky4TGru4V6PwUIO4HzyGlv/ZU5VgyXoOglY0Xc4uBmINYw4HYmS3cB\nWojA\r\n=4dgg\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"0170219854cd01195abd420abf1da7573bfeef84","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.29.1_1570392013633_0.47677388273969745","host":"s3://npm-registry-packages"}},"2.30.0":{"name":"@yaireo/tagify","version":"2.30.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.30.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"d436ed2d4df7b9a44985e7c12b570571b866a833","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.30.0.tgz","fileCount":26,"integrity":"sha512-uP+cfdxaaCspI3YQZalrhjADv6rKpvs60uh0S50P059UF3+c5y+I6dI+b91BqPGYFZLLpDx4jMTb6ng5agxM0w==","signatures":[{"sig":"MEUCIQCTldaKAtU2IA9MK5sPy8xNpn/MPifnGhATOlPxFEzIZQIgf5N/s7ialjOf7ySuPUK0UQtMyX2iSq0NEvxmAi8c2gc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":498203,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdm6lUCRA9TVsSAnZWagAAna4P/1VBQxW8SIB1gFuCfsRy\nmw04GCUXlYZsnha9CRilW/kHxYSpq1ykL0774nCIVUwbFrFc6tmXb7aSQsmL\nqsNTXBnul94D6aHlx0lXd2C2JLvRDvZTbqaNT2XjukDc9Hvc/QfYHEmmWDoB\nRh9poxSEKKjNBBj6b9qkceVQh+m+f3KvfPRkCwkWIwipmobfj4iUuQrh20iY\nkfeaZNJBQxM5gaydsuWsrDKWmDn/pWRL/pA1wrnICCGkIn9sbXxRxGuRFRi5\nlorKwppJa6WoGEZvJBJuhDqyb5rZsy0TVasuQSmNTFbZzge0ibI8x1pRhPwA\n4ZfA+Fw89q5di1pTF5f2hJuGm4nLji9tRi+6TlYAaaFj/+k78is+GnnQajuc\nA22nVGd5vNPlPkwUE4AsN1Q4eHdgxGz0UfZQ7BEL+Te7jRUJ/4N3NTqcSQdD\nO4pKO1jdDO6FO2wMmzu+XhDW798+hx88e2G1XKL5ao8nQHbOG6pTEv46EtdZ\nmo3vo07yVjFN3qq7fLSkwYpSi2fjxeO930dChP8TayMEVeTzOJEeoLQKYsUV\nqXOOBtf7jtzxbSeg51wiuR/NkOF03fyDz81s97WSyQWqvOcLYPI4OKZN2AaG\nJxc3FoQvvK6QhAC1qw4IzOUwbp1fWNC+9jSowu3hTjUs9TPnlHK7fHD2zonP\nCov7\r\n=tct3\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"60e59af2813738b5175b1f4229fec25ebf5a5cf6","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.30.0_1570482515993_0.4288162812718561","host":"s3://npm-registry-packages"}},"2.31.0":{"name":"@yaireo/tagify","version":"2.31.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.31.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"468f2f5dcb179028aa9612e38d4632a97fac8159","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.31.0.tgz","fileCount":26,"integrity":"sha512-B7/ZtbsyPacRgsuFxy4K0cmSqAOe5gVf6zs0T9FiZWvyT3+cmHGKI/KSyGKPf4xMqydAPQV66QEx99XHGTio/A==","signatures":[{"sig":"MEYCIQCdBf3u+cLuOI5B5zLCAZ2ZwRkkIQ0My/RbHPulxEHAygIhALKHtzJtuqLhKVWjj8SW/12OPE98+wBOiXc4onLom/LC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":508113,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdpEEwCRA9TVsSAnZWagAA7ZAP/23itpfIBschPzXql6bL\nY5M+zzNIZigbioR0qMCy5zqdPtvhK6fZ6b6NU+4le3ZjmARPjHJJ/3Gg1inx\n/wS8Fgww1CXnazHJgGVY1gV9RvHuYsQflg58sDUmuuA711r30GPggHenejWI\nAr7BO8xNZo2gi15kqsakiz0v92O3buKX++6qRkKGvvGR/GhXrly4ZuzYd6sY\nVPJ7AMJJIJyQ1yqSUGJV7JYwVdQSagbWT5Z4ERp5u/SmiNEj1tF39VMKGu4R\nG+9DiDRVPvYmSsWFLeXRKH2nHVMZ/nmHQEH3dBDLIS7VotmvwAtEDxe8i4Es\n2B+a9NQ94jBLblArc/ZYZlzF5jMDAmG3lRH8Q7bXOkfB+/1LNHOTgPtCHdcC\npBKXifk3s57uu7aoL2D9pxR2Bd7GpGefCnokQmzaXDs8U29vvSfopu4mh1ce\nTSfFR+DcEPankfCDp2Z6s3GsIthrWY6Txeso/sGF9W6o4n9VTk70hMaonVrN\nNkgyUfRsS24MUBaR3YE+SuEdP+7B1gBHupjL7mDPSIUWzIKrO/RWs/9uZK+T\nEgXycHKFfx1anIEBoDUQ5GXapevumLXMhCHRb17X2FqaNsKMTR/oVj1vbwf6\np1mWdWY222Ga7z9f76dmHzvxLE/Xzr5OHb4NALFdfQroYrBdQUJxevjV5iZq\nnFEu\r\n=edIw\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"91e70da939e05aca07c59b122eb90463d77480e5","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.31.0_1571045679944_0.6280124882893241","host":"s3://npm-registry-packages"}},"2.31.1":{"name":"@yaireo/tagify","version":"2.31.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.31.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"47a5ae3df12d2adedc7d9b9164670fb54ffafa63","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.31.1.tgz","fileCount":26,"integrity":"sha512-19kJxvyVJ4SmNOPGD5oFuuwsGofL9517/OJJxk7cUWFJA81q+OgCxT3SaRlP+JQ/mQpwVyjragFvy1JcuqSgtw==","signatures":[{"sig":"MEYCIQCds/hXZ0ElUaQrIK45SBLBFrYLZ2A22lxE2l2ICgLr+gIhAOTioisPxSFdj8UcA0VZaBynbPwoT3nJyopljEs81gf0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":474280,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdpEQvCRA9TVsSAnZWagAADl4P/3iU4oz4a2jysLEJz3VZ\n7XgVZckQDh6LM42UFVUD6m/lT1N2q60MqhphRI0VmRBmD2sbd3xBc0C7hSYd\njaXnyMG1p9aNhYAI/gKMH0Cx3dK25GRYjTM4GedSZMxJqshupCiiBsx6rEyk\n7U+JvD3mJrhBClADCx6SZL4KqXHiWC44bgj88EQ0WzOgBDlS+3hdh4MkifIn\nvXnuF408e93q1RC/Q3BoQrkhsgHZZU4t7xujW26NZUY5/SVfmiKBKoDKisEV\nMQd2F9bk62cf0HVLSvJ0IuT57CNB8QEqqDVjf+K4rkM7Ta6h/VALYUGU5NEY\n374D050sblfqmrK32bqigvMx+n590tQbq5jmUy89+ZDBFVKHwyd1VZExkqgF\n1XMq+jwAIDM4eIIHfvV7Y0Jfr4zGvsLXoOGGm0+Cge5TnceVDI+lgQ9kERSy\nOeU+YVy4upjMYYJMIJ3uAh+qh80GrycGVO3uHSJpHtm3Urt3PQV8GLVJYq6t\nTB3ZG1DnvitCWQheFtHirLHZbqN/RYGOXVrcd6eo+zahV9JhYsO8ZNQHuTgY\nAljFZhG3qAtgEIt5l6CRFTvD4I6ZBXZp9JcjirOIZBZgnPNz0b/k0MFb3wJE\nMI6UtCi8rL5MuBsx5ZZXkfErmFWBxc4dfEyPBMusrArKI33O2lsoQi0b8cuV\nDuVe\r\n=HE7S\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"1c51f537ac754832fd39c2dce40a0a3b80d318c9","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.31.1_1571046446362_0.7492109049667117","host":"s3://npm-registry-packages"}},"2.31.2":{"name":"@yaireo/tagify","version":"2.31.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"_id":"@yaireo/tagify@2.31.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"ceb24a13302cfe7211e98ed45f55f052f68fbf27","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.31.2.tgz","fileCount":26,"integrity":"sha512-VI8AeGE9Eo7oBTjKsQatSVFBBuqNKibNvFU2qfon/HZ/3h7CAz5z7osD+Gm5zwSO0ZJdUrKB5QJemiLPxpdFsg==","signatures":[{"sig":"MEQCIBHP/GdvFYzhlZBYzwms9sn55yZimAsTtBtVp6nFDX/HAiAnGp7W8UHBVqAmH0LmwcPWygL/l8q7C4cVh/6iMjfWaw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":475010,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdpL8nCRA9TVsSAnZWagAABfcP/2QXYRpIUPpfxiEXJZO3\nQojhv3hRndqn7feso66V12np/BSaUf5/7J4/QGqEsDBlUQvIraLepVWmdW/U\n5J8vgBg6K+WZLhfayMJtGG/xnAgYzezzsGnaHpCNJu2z74KTV+XtJV7fM+ig\nj7k/N3WwxFrQ6YpMNza9lXYeUkGMVLe5ZhKzudxGdJv3fUE1lrjZP7m/AkBu\nE/jFRPvsnolWE20Xow97k7mL1ylNiuqMxLTE0jjz495hMdA2aBvIKaSeg1eC\nzTfBQ4YMbg/R8VbKIlHYy/jpoeH4mz8xoABkYzi+xcz2ApkfTC4ApKNINhZg\nzO7PRnIFkgfyQZ8yJ6NAlecDpuj49/frR7zeYZ66afYURuQwjUBkALP3Boaw\nboGQ1B5UnrNokU2LN1GjoOzfpqkdqVEVwVFxr1PNzipSXzgw7n4hVoBqgY+7\nciVICMkfJWWZNKNNvTbXRjcf+FKtfCOm//zGAXYJsZpMIOKrWvTH5Ya+o7bb\n7R2us0tSDUgSpeB+TUwj77wDvqduPqteGaVgDMVIlZbM6MnR3mXM1WyqV+d4\n0ii6sYCz0a7UW8jfmyr+VnpmF6gwvGXhpDNDPI6SPxxA/mAsKx3kQ/NTjE2n\nXqCQNyLdr1YmRPOAZKKbQI+1CCgtqGZU5ES4e5BS0SL/ASBVX/rw0+bm6bZc\nGnJ0\r\n=l6bp\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"c74336917a9b3f405b8bfecf2bcf608d684b7799","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.31.2_1571077926214_0.9680063771362257","host":"s3://npm-registry-packages"}},"2.31.3":{"name":"@yaireo/tagify","version":"2.31.3","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@2.31.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"ddc75c7e2b2d192575956adc1011ecee1b7bf7ef","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.31.3.tgz","fileCount":26,"integrity":"sha512-EBpnTJBN5Arw9E5Q2FG/qcWyDnWc2ZVK9DlKkED9FsgGBQKtLlZw7xyW4FtuG4enKqp3ixy5iWSuSRu3C17HmA==","signatures":[{"sig":"MEUCIQDWlETZGHX9+9BFGlozbJtiqocRN9MD6Zl/o2UG5OypXQIgRV5/wwqHVSXZxWo7XeJf7i3/PfpAyl7ZYGoNF2YOj0k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":475470,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdv0ZqCRA9TVsSAnZWagAAYZ4P/AxWYDvBWQVGc3cbpoz3\n9cYLro1QNxb00nOybnXHLVKu1qEIJAmPmAPldgjt1pYuqhRdID+B2R26zaRJ\nT/HQFu0/fPEpl09yAW68uiVVEJS8OQd1ig9HJn3B8FpmUsAgh8IQTNPa9O5U\nkC2yifTWEkXTMt0mMnldSJfnb/Hac3k8yIxeUIVp+HAGV/gP3JQzTLcoOQxE\nQ9dshOxKZTjSZhIhDgAv0xyTbG+d8YwgiYJcIv4W8Iui7pRGaiD/OQ8/2uAf\nFBRp/eK8eHUzeCLvBNWo8Nwd7SXssL4BkM7zkB0FckjXKSyJT/gqqne3XqFw\nyEVPDNou2DANl3dBOsDHAiPpteyNo031Mcd0764ye+rEBkM2jHP1qVxyjjSF\nfVsFeITgf4IYWgxJab9ZDA22aa/E/zj8epC9TUmdOfd3U76DG4uhycnH9T8y\ncMYyn28feaCyeDG4IYj6dJJkEPQYggE7as9dEqpgZtq2+4rHfVzIOtE3Nsat\n0lZxHqoEN+wn9CeTaO8yWow6zFS6dzm/cK+m4NjA0Ou2Q0WeGvpDOBjOgq6E\nb/Wc+Em09nSEOomB5wKgRkoC2X0nc4SSXAu3a7O8P891zSnhLFhucmAeeiHh\nlJ9bvXfaBO7keRnd3l5W1HV6z2Xeaic5Bw3ETPHPnmP/eBFsmmQ2QV0GAXxX\neY4l\r\n=J3cQ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"82bd19da628b383758289cd0b9bfc4e6cc9cf440","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.31.3_1572816489844_0.7917989935338734","host":"s3://npm-registry-packages"}},"2.31.4":{"name":"@yaireo/tagify","version":"2.31.4","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@2.31.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"c10346cea8f168862066b23a89e96b0aa377a36f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.31.4.tgz","fileCount":26,"integrity":"sha512-7UxO7fvrZ2aG01oBsoXVKbPHw29/Vehx2si0SV8jRANEJXCelYMgQZ5HJqJuHXI8E2YXTkM8yZiFxGa2io1nfw==","signatures":[{"sig":"MEQCIBAgvtcPPM0iGJIG4yl/mhWBPmw6pb1fIZHLeLxoDBuDAiAnfVv/eAKcdsYLw4B9J8UKCdCpiEO8xSueuykyyoQfzQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":475503,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdyI6bCRA9TVsSAnZWagAAYccP/3srbne7NL9iRBLVDe6A\nBvSEvu0sMlm9jjeUUJI8mm8o7StDZaI+ItRK6GMZMoTPtSRjWPAJUS2ZRwMW\ntri0phpf7yntbwGmuLA/b9QXG6rCK4jH4FrGMTzLeES5v5CzZ/mr3dCmciBf\n5I8LdAdVQpGfe3MIUQpCun5Xp1LFIhjZp17OrydfoHtWs4c6sj/UXfZuJz4o\n0S6qZ+ed1EoHLVwRttxBuU4C8BoS1d19seYG7DyKhaauX4SONnI1bBGhl7l8\n12o2faBswnf0CCQso3/vZaMys1LbFHmSnVOa27gwutCLhg/wijZca6PlcC/X\nnICp2uRkzA03Qx+cFAyc9k8FEPg7ZN6ggTMzgREtel3Re3CmUR04jTGernSN\n6KmK9/OY298YGB0a/j4i2fjnLaI3Yv4mS9azo6Ca79vgKEhzK/4eO/3Y97ac\nMExh6I0aIt+PCAtjPA1q4VEZuEHbCDvGsCnJPasnoItA9dqnJUx0r4XxPmHo\nU4M2D2tjPnqPbMqYAZLtD0sQdLgsSYmywHHyFibPbeqyTGZqgIXDDe9wg3OH\n4GlpiHmkoygI+HwL7n3BsZfhHILFr4GOpKKShKUcclY9QVqj+3dbizYyyaiI\nd6RtcKeszy5UM6AA/iJKqKLunio2egB7RSMjxu+LCjGfb2HpDP1UIBLFRbnw\nrHft\r\n=8hAF\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"972b8f669e61a2957d5ceaf8e9b5e26cc7badd4b","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.4.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.31.4_1573424795192_0.09545690463524426","host":"s3://npm-registry-packages"}},"2.31.6":{"name":"@yaireo/tagify","version":"2.31.6","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@2.31.6","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"bd6f93a54a472c9bc822076e26079b42400ff949","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-2.31.6.tgz","fileCount":26,"integrity":"sha512-qm27J0RQfsFfhJPOp/mTeIhqdW3VPwp3MebAGyRFF1qkQj+HDBiTMKLDmsqi+PbMHe1O8uwyCfTKlz7RcTkPtg==","signatures":[{"sig":"MEUCIQCup5BIVaoL6HHFDeQo4VXdK2gO+1ekJ6KTs4lTwWx3VAIgWXsbIzAb9r8AnlH49jZavWaKf7EaqJ9BWxD5sUrlizM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":479099,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd1cVbCRA9TVsSAnZWagAAN+MP/3i+9pf0tJPvaRzDqBvj\njDgaWejkBMKgr3QVDP6aDipRkCqjwrDmEwYbcyBxaS208fRRr4vy5VTQAbv+\na1IrF1tiPIsSKSqj8HZpr1DHC4jGfFwHGUkJcK0Bznsy5ReOTUUBKcBKN1Fk\nNT2fD+Fhr06jXo6V60BfrC8PzJ5AkJcpYQLWJJpXLavQN5JAlN7xB1ya5vs4\nFtDvUVqNjdXJmZ+DZ2okgqQO3DJ82qeVxxzwcVOn4WxYN/djZ6IkzHE2ZjYf\noY3OgvBmaAi9Q1XKNNeY8tx8paFc7pKqUjLjmV826Mev0SIA9iuaCuyxMBi4\nYu1lRpG3QejcLJUWjvqK2m5tWB5ICdT7pqsKvsBHIzeUwqroJXa2iYNgNRWe\ns011quEkAFhdXB/H/MSLzLI7N5Prerp7RUD08IfbMEgr5owsXoZ1tJCS3zDs\nK0bbM4Bh7EAAGtlhaZWASmaicxc5eNeJqS35tNHVxbidolYnQS4RaTuwv+kY\n1FFPWzkla261aSAWsARqn5azLMPmzcdWfVC56fWbwarPsxJLlf82nJvUxGd4\nZwJAB5S3ZuItLag10osP6CkZRIqsoJYyvKAloEV6Z7as3+wb5Xks1CPriB2S\nsJcEsQSxlaOh+mWOajpuR3/u8iRSc17nAmmWET6VG9MK+jf3yPIsqjwRZdAE\nHuMe\r\n=mfo5\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"52e100c658a16a544f572b2df1e42d403ac25f52","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_2.31.6_1574290779172_0.6211339119919557","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"@yaireo/tagify","version":"3.0.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.0.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"34fa1c163806e55b3b25139ec4d8caea3641f8ba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.0.0.tgz","fileCount":28,"integrity":"sha512-5Pdw1quo4dBefhQ08moss95LMSrUjTn+sOj3+QFfuapXD3i/fSDYWvy8r2Bp5bfap3VLwWgVkb3cH5/sKi6n4A==","signatures":[{"sig":"MEQCIBaA/DbCm/eRXZ3hLVBLWxwSiFz+M7h1LE0YO/8ail2bAiA/NNdDz9aundQin0M3YiGarFYaytEtrsbLlzEVna4qkw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":555458,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd8kJ9CRA9TVsSAnZWagAAqakP/19ILBGSYpDiWtngdWY8\nAfYHjfJ4U7ePdfrDCVS/BRCAFRfyT3XsV8lBtyBNoNatvLL16TuYpRuU30kO\noOPjIKUfnb3rk8CB0uTQU4or0oV/WVhKBE42Gd4U7vlffK6hTUMjgI71thsg\nocd8Kh4VtHlV7ypRr6eu1BHJT95RYmyQ9B62MHnpySjfppJooKOmk6fn/zPp\n6JHFUW2mhiKX6g0uTB6veHJ9X/2bsZ8SLmrFIU/DVACsLg2AqQ/ukhG4vQh5\nEq1d3Q0lDNoy3OiWiUUrE6pUwoZSAScWsetxhr3ejjsaoJjNtMn8BnBr0xP+\nUNQxB53qlKZXROOLrJsBSHmygunLH2kcwLKXwel3unGfVFsmjEzMSCnY6Mj1\nYvEiVKm1ddekwPqBt7S778kQPUg3bEB+5WXtOWMe7RI0GA5X7vCkRht1Mu+3\nL0oV5WAtxB0Wh722r/Xj2BtxHB0SEMkmhLXs0VZ7DOR6Cil7N1YboP1YRENT\nlu0XPE8dR3EboCcHmSuPniXXMAaQTwSQeZrA6vaVXVP+/JJvm3UUijJIy99c\nKoM9ugN3svek2yCjU5jviXEeDFReEydpCHG5cWtOwcAm4vRBdXfBaEMr/8pO\nQjrNvULNWo32MpXCKzHyqgjxO6NowYk9V5E2+TlPKHHjAnpqOsufn1feJ/5j\n8Ew8\r\n=posJ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"68d97e7a620dd7570ddbb1080081eca484e1c43c","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.0.0_1576157820648_0.7623563180759851","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"@yaireo/tagify","version":"3.1.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.1.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"c7b55ff88ef016aade9edf5a064a27089e62462f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.1.0.tgz","fileCount":28,"integrity":"sha512-zK5AHL+8fXZAg0W90iBX/lPa2Af5YmNZcbF7RE6do/Aql2UWPBWujocFO8BvUcYrG67/4M8wGDaSRbiR3iBSAw==","signatures":[{"sig":"MEYCIQDcfMnJIA8/VwHOow14ANXHQieoXecxhzZpXDnyar14oQIhAN/+42ISnX8/aUP8fHvhXrzUgIAhWrPS4B4Q0cfWgD9v","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":558253,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd8q5CCRA9TVsSAnZWagAAjhgP/j4Ze7aBhFi5yEmy91DB\n93HIi3PfJKRWEQ97mgeMV3hYH3g4/p3h9VsKffQRzxlgp4Z3rFOIR2fjZ0Tk\ncTEOJuF8A1vgtjQF7kKxe8bnj0sEMFgWCGvDegh1q3tHlmJDIjDuw3E/A4Sq\nLWx0gAJb59ZolibacoazPWS4tNBM5KxD51S3CBtabocIr1oPWFWMQKxdHXpI\nHUKCT4xRueN3AK7onvS9MCd8sCn9P8QiImDaBprTytBbyuktJ2eSraTSrBES\nQKqMtYkb3z2cqGhB8U8xk4cWnY/XtjWQHgqCnze8+UJMP7Z6JMgOs1UA+d9H\nyD2py3vvoqziVsfUJOajvwOvxIqljL5Le9R6MQWTSaszfXIVcr8KlIpuNGTE\nrUKD3DZ2nmeV4wxXNyuDp19MyDululcta4fVkJA5Swfcj2hLX/RMn4F1Rf2k\nX+tTNm2WIguvC/Dz8ZV08LdjNjKOaftqylkiX7q02H/0xte3W3iZNdTQ1ylG\nhsXgbTc7eA/YU1KuNGdjEgyof3mW0LSN5tUTOnibOseOvWfZ48nlHMLIOVsa\nH0aoypJkl02ibux7rDGacOW0BOJ86l/uXw7vyg7zQdrPkCpLQy5+xlEJuXgT\n1BZYo7EKnyRNmX/rEGmhyXluVQnxNohHghkmvBm7ZcjF8o7ET1Vrlttibigx\nQTbS\r\n=g87Z\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"39ad3a6d14a1f6eb544fcfc8a574c4b4ee0e1522","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.1.0_1576185409904_0.9669940169469675","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"@yaireo/tagify","version":"3.2.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.2.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"b0abc28b717729c3f4dfd864eb32ae081696b960","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.2.0.tgz","fileCount":28,"integrity":"sha512-w1tX7q8UwBwHwLxdKfskKVqy2Ggi2cPixFh+sgpNJMLO2S9R4lwcPi7rjL9xNsbZMOjAXLWEz44QYBzp1Oyvng==","signatures":[{"sig":"MEUCIQC25uJAqOld0bqIXBl2ChhUdloQG95wByY1yWIpkd6FMQIgOIVb1BapYvmW/d5pOkZcctRqB7IlYiEJ5xraHoFUWVU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":572511,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd+j1tCRA9TVsSAnZWagAAPHQP/ArrcRPdFGltWKCUEyJu\n7l6hxuTtN/ka0bVDKdxMrrLw0j3/qMCCWEinW14HzP/9PwFJ+5j4LB1j1fd3\nqT0xlENEbKdB9A3PVf74+LRCe7RxYaIN4aMVXykiqpSF9Rde3ePreHoc65Pl\nYr/bwpBieQhh9MQJ6qMpikyPgiNqLJ+yZXLIEIdOnXwmZ+YdINmNwZ+soVuu\nnqmZsXUJuvtCGi2GhxP8cHYiZJZuQFQSF5bZFTm9rNzv3K1oA6ym50GfzSs6\nO31xXhUpPU2S8dXRP3ANZUu7faqlU3sF30VAjrK0s+NjvXq11p3c0G6+hIL5\nYbSvld3y1Gk9vFsESD9Ido3S6PjduJAHT9GdhREmP+OubNQXVpltHZRh+mIb\nT58ACUCeEH1axxU8bFCk/jkECwt+qA9srSYEvUZFzsblKS5MFG9umxhocjDK\nb4IzJ0X3mJrtU45/BBTC0dZDvC2NJw2UbbwDSTNEN++RZzawVPa2YJ0uTIQ+\nVFpFTWb4JUaUERLuTu8fViUunSpV43qBX3Fl9QsjCmTyn/kHjXvfCb5g8A8B\nJohMvs4zxovMPVRH/G79sUtljNtyedlpvkWNcXK7NMngjSkKaOjD/pF1jIte\nrAwrKfhtFNgmkRnugbT8pwhT0II6iRIp60LH9f5RtV8tiQc5LKvEm60lbIwc\nRYQd\r\n=VLIJ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"f29ae9d244448572f951afc74d0504de5052c7a0","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.2.0_1576680812644_0.7387400315306691","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"@yaireo/tagify","version":"3.2.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.2.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"ed444168a1a990f8f9749d1ebea49d12950e2a81","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.2.1.tgz","fileCount":28,"integrity":"sha512-9e75Hehqfv4D44WxYvpOW2jII3nRk3p/NJ1ntLehSVwi4F/E+GfuW629nqQQxyCiNSpYL1B++tk8tnhg1ujizg==","signatures":[{"sig":"MEUCIE+diuUlHZERTNOVaMJ0KERe84pJYTe/Z4d/9fy07rk9AiEAi3duB73gWdOsWbL3AylkN+NYm4ZRnU4WAvM0ApC1UeA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":573737,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd/ORhCRA9TVsSAnZWagAA5UcQAJQlDkcyzduN4S2JaTWQ\nEaOKk33bNGQraBwHQ9D0tQjby7xxtlxqyJXm2HIkpilvrAl+L9ayU0ZZMEyA\nAtjkKGTECqgJQo9Udm5eNMBDITOhCDve59EkIuA5uIvluLBgxf8NZcY1OAZl\nSp5cn1nIhIRBswK6ptlWDxiNDKyI6tVZJ55q8I/07Ckrard5rmlMSo0KGWSt\nkJUpyiQvZtcwz4az1L5ueQ0Xq26Gb72sol0ZAAL2/j0qOgzMYCkY0n3olQql\nAwg9YLswLPOWbwz8exgYrxNyoGekigSlPjninnrMHu3OSD5dOSsMsJKAXjqQ\nlxkpQkNk+S3L2nnErSnE+SoAWQ8ndL90rk2zjIcexKaYxe9MXAdn9Hdn03XB\nOlLf+S6g+OM2VdhhuFqll+AUwoqAmgK5p+RLvqVODC+TtzmfKKeiTsmRygbV\n2SWJ8nDabA4caWXtiwT5eMyNr4tEATc71xrv1WpbFZR8NHTa/rJCSV+sLrwY\nkowybpbkzIKK6qG9td4Fxq4RoPdPjIIJJwLWufl6yjzZ4awwZuuwgS0yLI2p\nmQOW4jA10/Rmf8M4V/UKZ7c1PSDISz/pRTsRiPNyoUEccMuCs0udQCY4Mouo\nz+k07OGB8+gpKuq/0YGxEnr3/qHwxa/Xy3nynu5oXSplPrhGNBRbUzlpx1du\n9x4Q\r\n=kGSy\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"9cbae6cf68f7ddfb294beddef0c080864e23e612","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.2.1_1576854625117_0.31860161122926445","host":"s3://npm-registry-packages"}},"3.2.2":{"name":"@yaireo/tagify","version":"3.2.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.2.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"45d8c7dd9481fed8dadb0f3515036643c3e43fa4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.2.2.tgz","fileCount":28,"integrity":"sha512-AYZyQ0IVsTRX9eM3Brdd+Mf2GIhZjqCvdpIPFK/ERjgVZpFgQg5gO9UPEYRseHmCyCG3LDfJRtEX/3D4lnLLhQ==","signatures":[{"sig":"MEUCIQDrtpmnB/Lj9UQJpod0ReeujHQJGCNr6GpQihqjyiFXkQIgIESc6s+LvBsCh91Q3mUpwUoG+2uqEB+QFQlK6ZKEnnQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":578888,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd/OmRCRA9TVsSAnZWagAAiTQP/3pJKEKi+cD5KWlA1IMC\nfAom/B/uC79xGjqGiz/eRRirN+BeTjGIxgt4bIiFzLff8hQrVlTFvPf7ZQjp\n/Xy2BdnlnxqiraZEHqIZqcsQSyhwqkzED0F4FaK8FJglS9bhgHZYht7O1D2w\n7RHxTh+ve6OzzZaW6emd2iWtNQMFBuQqaR3yMyVLUksdayD2FUoli7LwI7bH\nB2XQdkOP/nDalWSqJ8ZKkH5OWewpWIGnWwrMQMTsrpWdsmF+ZzkPWo2vNomj\ndeJRRmFvirMT7SIV3mUYwe2voXSwoG5LQ5xEdBAVxis5Mm4KgeHQN12sGUIB\ngTDw78IgIJsfe2K6ePC+h6aiDegvElUhUWZ/5+iA76nrAk1NXimZfdS3p6p4\nttd6psRG6mSBOQnxCuge9uCaXJX1I3nSbI3HxqPIFP4/eVVsFEMdELilzUb2\nP9X5IlEpqeFiPrmGZdMmomP09Knir5OSxqLrPi6IS3bQ2otLjDJZf8StlrOf\nNxBA3cIHazbwY4VQhsF+/1wx7+z6aCDm0A+MBLaTkTEeQxdbB0AWAx7b//fj\nJ5WzbKNwsXNcSei6RuXfhjs+wVY3+HAiN8B0uTscARrUM6vrUZbif8/sAgkl\nmlq74kYiHGw+Znd+XQSwmZK/FF9XDwyLjfWtI+ol7dMRT/nuyTjtk8FxSvRS\nplH/\r\n=SX3q\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"a665b3d5ec69af123198e83ed1c5ed4a6c348091","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.2.2_1576855952671_0.8715058937616944","host":"s3://npm-registry-packages"}},"3.2.3":{"name":"@yaireo/tagify","version":"3.2.3","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.2.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"0991b3d5bb32a7c249d0979911e7a1166da6c37c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.2.3.tgz","fileCount":28,"integrity":"sha512-aokkbwZ2HJOrHns9Q9swupdLsTe32+/nukgw8ycZlUc3sYwxIEqtFpaplH7JMBVeigAThpjbYwct9M+L7lkRgA==","signatures":[{"sig":"MEUCIQDjh2jYK/cNiRaYFfkOATl1jh3jGipXiOEHZFHifIhdRgIgZHEX5GPidRVVB8/sSR6VP6j45f/e87qqrEvKX4eQAnE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":577675,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd/5SeCRA9TVsSAnZWagAAWFoP/RQo6m5VWh7Ag1Ed79VG\nuaf/5MG+YtI0zXC6FvYTr1/JWJX6VqZ1dYQwsIBiWs5a/mi86ca4CSHEMQeH\nbZL0xtfWl6VHCxyi5c4cKfiRlJmNNfMpebFkLrXFRKJ03SFH4wDgAE+1bPn8\nHUg0RH7ry6sB4jgwloqCsMSnUVj5NSHbT0vHehekhrF5F19/7qfjCZMgxBkN\nHvdDCt7rn1mdd2zUMu/vp3gZAckflPYXQr1KGtSiRjkb4gP7bZy3wfZTVB8y\n4JgcTR1buVsX8akZ1AMUVyazPZl3IL3vHZ6Mn3CUshdEa1FBH9mWLkGbQ+Su\ni+rV4BLoW2RITeh1iHghgOxPf1PgXFCnJFThN7TzQB0YBwJXwgXG6slHHSrt\n00a95HfTwdyp3mQlI2VjVE3Fsu7wZ0pgPlhK3txbbIJiKxC0ti06jHooSlBk\nPF+DB1JT1quTM1br3ayrwgyXsfd+JoGxs4gj5H8eUSSg/wwnNKTAO70rZp1z\nAerMy0gC1kH6fXvT6TEjSc4zwXpIWWgCB6kYFluWy3D18cmuiN/U1AGtRa21\n15myLyEvxsexGeNJ2EackvNnyZXTYygrVpDq/4mwPqpPuO1BnSs8FStJtOqQ\nvQWB3PCXrKzaIgHzheKNFIsfV/yl8yVBR3fT7NXozS2rWJ6r4tM8foXmyn6C\n0Qy/\r\n=XQHq\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"e14fbcfb6997a7b30c0281a0df066eb87a8d1579","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.2.3_1577030814149_0.23141053724744953","host":"s3://npm-registry-packages"}},"3.2.4":{"name":"@yaireo/tagify","version":"3.2.4","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.2.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"352bf3150228e9da551379b26efa9feae49bc207","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.2.4.tgz","fileCount":28,"integrity":"sha512-FWA50ZKQDX2f2DQRSnB/LP1Oh7X/XJ0RQjhh+M2ztDVH9kQVWRCOWgryNOsoLvHZup8Ej7eUmfH/ez8ZYbZe4w==","signatures":[{"sig":"MEQCIC20LQmE0i5JOQ3Y7CZ16elHoxBlXN1aDz+Wr73HIZNQAiAERx0yJtP6KcVD5kbPb7cTNUUnE08HsQJFth5SedHGaA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":579363,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeAMbfCRA9TVsSAnZWagAARBsP+wVA+LXYgtashLOyJZbO\nX69r/MgFQVJFboxBW92FcoEiMKAlNZ68q3bclVvxSE08FYU0RmIrQXS+1nDe\nUMDkUmdG/qTQRiPn7v5abN2weUyOed8radBhJsyC8M+O9MB1wGcS+uvnUyj5\nKbdw6wJnTgqB6Fmynpnm4hcM+BMvjdVh+NQ7B8XhXdE+9ByzVECzaQ91kX5x\noxOGY9J0j3NGuA7O1qFusUUlfw+FxTq0GuqRnWOsmV5nXLVB14curCuHqKiZ\n6EICSkAOarA4naXl/is2P8WkA9PfGt/Rr43tBb3wWWfvcmvDUweIPattZf2y\nBqhp2EBWDw9suw60WNfpkahgkZQWJ8qShFIxV3C+doc5iIJEUGN42V3qHOgA\n00sncVpyzO0i69WdtwBmE5JWkKgVGfJFeKin7Rd1NDsm+8VxJEb8vTZ8Hg4m\nvFxHGEwatyVPkQRRsXRJwjvYWeFMhO+LaVvqDgbx3+ohtVDfWF2Oy7FpwHNp\nx6H3hKdQxUtHO2PClnfBftViA9xRaKDlRkGVNmNSc+lcjwEnl35Md3CjKDQ1\neyUk4470jrQa77U5mF3hTbAlN+6O8u0BuslmrO529n1rgivpaP4ZF5HLoFA9\nnCqqA4W5K5FruIPLDdZE+rZw6BYiO8RI2BhSpYiZxNwrtHQBnBUTVbDcZl4V\nVQXI\r\n=uDxa\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"777513cc2832e8fd65580c6bacde582707c9f8c5","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.2.4_1577109215245_0.10208689407280724","host":"s3://npm-registry-packages"}},"3.2.5":{"name":"@yaireo/tagify","version":"3.2.5","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.2.5","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"c814f773d10299a66017596fb2328cb6a8e6c6c6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.2.5.tgz","fileCount":15,"integrity":"sha512-/VVEle6nhmhAPhKC6ItJt9sbT3rUjFpX0VH2OuI56qzuSvD9sLReJnT8cvPi6nwmi+OM1QPvevfC2E2HV0QUaw==","signatures":[{"sig":"MEUCIQDwjLCf16sGaDzdza14mzeG9mxW4f5VE0ISZx1G0k/z6wIgMDyFchopE2VvghASiSJohk3Ge1mh1gw+AA5pcOODyEY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":259144,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeBeIzCRA9TVsSAnZWagAApJ4P/i5+FnAXBTqpnoMNJIPu\nJxyYwXadsG1Px6wpP2B6R3rcpkDIjwYLybuNXZH8qAuP1JmOXlV5CFYo5jBd\nADyvVIQ+ZRl4D19wfhoEbJzANNgh4aFsi3qgIA18qqfuxKAxHX0F9aLQyQQ1\niI0Rst5N6e7MIB3iyJPclBUPp7OPagksywksuraWHeSunUHyYhzad8C6lbgK\n4dM02bYu1vnqXH2CWKn7KY4HzeSPyImeiGbkE4kLMIjWmcmjIsvP9olmf4bL\nlq1EhfAmez+A333xXMEaz2Xq7n+SJJO0DN4b1fSLde0CToN5bq8NELwNUHz0\nZOKPCGZ3HWhrPYersdw9nDwVTYK65rEzu4CF4naxiE+B3iIkl5J0FTni4SDJ\nmPcmPinzIdnvm711aaJDQi5vyBM29zQn8+U9TOB2wde3fbC0O6mbFKREqZLg\nWVyKqWANC5u3qVhlR0aPMPdP/h8hcg8qLW4tiSr2OphaDb+89P2aVgAglxFn\nqR/F0aW5Wsuq4AdIJbYthNGt4f1mZ6Y/ftXJDsZQt0v+ZoRNE7V8K9LcGVsb\nawh2NBy1tC3BdaHIjxrf+AaOxTd3kJoQWrDtVuFC4bH+0V3urKNsH3ripn/i\nLV+UuS5WBaDdSFrOHYiiTxkgX4VYuR+3OlFYjVOtR2xLZFCg8cUegpFtVtth\nfb4t\r\n=FcV/\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"689feb8cd1620b8032821235f5c125df86561119","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.2.5_1577443890536_0.8389304263887214","host":"s3://npm-registry-packages"}},"3.2.6":{"name":"@yaireo/tagify","version":"3.2.6","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.2.6","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"2acdc813c49d3b59593044b79d1e17ccd07e2d25","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.2.6.tgz","fileCount":15,"integrity":"sha512-IfLDoz/SEQw/0OzMWam9GoT5pqVfm4tvSl3J5eHJMGg1YcRR2Me4TKksxZHnVBpzODFq0abUKDUel8p7d55NJA==","signatures":[{"sig":"MEQCIHK41EB/YXq5QKgzuwqWANoAEq87BwQirM0D25CsAgdrAiB7KxWRB/1RwD1MiWHdQ0E8O5LXgmr0ZJ1e/jUUHujRzw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":216256,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeE7BxCRA9TVsSAnZWagAA40YP/2xlwg311wXzbAnySnnI\n43BNPZZNpAMJky1z/k4GvMh6b+SDIKpBU17gH6bwLHkLBdRWDvThpRpDUpyk\nyX3F+70tGGhJP5HQHaN4VyRgiTMcASUORJWF0BgI4cPI9zfJPRfUHoh4AORb\nwG6xBTMgxYZ8HSLt7kz35UPsnAltPon2MEFPJCdUHnjIuMjxfKC/zvQhoi8j\nUYPEI7FTdKfU9FCRfLojQISynQBawXTH4BhkqGlJVfXf4TqRdSmaVFHGtRoa\nsd8eWkl9+QMCqZpkNvu9AZWfL3D638Z/W8/U7JTy9v29jjqGD8UaE4cRIRH4\na0O8qo21ths70mS5PUvRhVxnQIYpYXtAdtn9f6M5l4y/pnxyUkL/sONPV/CJ\n+lAdeUUeCV8zrb/59WHVi3kUz/79yJYnjpjJE2b/I6u1cv0BmUxmLQNcIlnC\n+29yvHqY39DND61HupBGBSfzFgqaHk+kIwDU5IUm/im57nGnRnOTxqG1+jjW\nb2E+bLOKaYCIuc+Uv70HqexPEVD0O8y8Hz6I3JE58uMTApjlcAb//Jf0NSor\nqok0xPKKNJwaF/C1SZBm6aJxwL2XPQsGP33XK5NM/2URl0mRHFDGXx0GIP5a\nEso0oR8eyCe8f/9fBhhU9F17UorbuQmsk5L+Kc4z2a8tOUj2IOO6qiHVJH3Z\noJe2\r\n=wjGm\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"86545aa49cc92be923d728c8cd98feee9844a3b4","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.2.6_1578348657278_0.19656246515821563","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"@yaireo/tagify","version":"3.3.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.3.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"b563b3535f3b20bf395d219c5faf23d2d75de60f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.3.0.tgz","fileCount":15,"integrity":"sha512-mlYQgMs29rjEJseqb41GL9HywS1XjNtcT+U1Bkl3xMmnTGj4nNkp0BpcbFzAiP72BHaLVDVjT3jL4Km4qe3RGA==","signatures":[{"sig":"MEUCIQDG9n/SFkXq8daydQF65if85aW8FbtSmfqocGJiQy6bVQIgXXN03nS/b0m9S3YTdYmIOi7R3RiD+LRR3UnrwpxQ7qM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":242813,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeLKHSCRA9TVsSAnZWagAAgdcQAIgL51oWzQxCV7OuQsPc\nD+r/svam54Z3fU1RW2MhR/zxSUhU5K0CT7hT9l+fyDSSZCfnXUcfI6+/JHBM\nvV3YODJvwLVTB4eQOqwkQhOsQ82Gc6hkYxWAB2gBX4NqQNP9V+O9h+sIZNoK\nND9GSuLfKEvMQmRa72c44ZswD1iOSZ+mI2ZjYwE2dSD6fCINMpfGBH+/9rMe\nntzwwpKjQ2TbCh2eXjfHsOYQncSU4IgOXP919BQUOsCmHB6LnehT+7V6GEHE\nzpzfULsHNGz1AAD/JaTDo77GRwV/DTttksffjsjrLy3d735eFmopZywTsBTn\n3oaZden/x5AIkdeY1iLcMIRpltkZgzb5xvNb4YuPiiCI7P3ubrzqDiFeuCa5\nkhuT26PtHBnEzolYiTQD3LLRq4FLUC5YyJ/5+A8yR1lQSYs3H5Nzt8HqImwv\njNK5EyOvsuDR4GC8y+0UuivcVYlxoDtN0nzlFhELLbK+dUSU0O47CwauDtjb\n9/SfmfJqD2xE1edTHAAvc1NFHhTa0vrxPNHiU/k9YTfM4waJJDXLbTrkFcJK\nK8OQv0b8Mhz8Aikkst/7ZZNoXZeb/6IqwJdWNOYUC8aZyQNIT6yXg4fCwAoI\nE9L+X2Z0dgfzNzZED1TRJaecDrLHcegL8W08qk/uWJVYE4weVk2xJrMIp+vS\nq3GZ\r\n=8kpy\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"7af1b0fb19ff5d9eb34a3542a2b9d50084ef9163","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.3.0_1579983313358_0.49712730896810853","host":"s3://npm-registry-packages"}},"3.3.1":{"name":"@yaireo/tagify","version":"3.3.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.3.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"f4f8f110b7f730b436f4682b9885e55751702278","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.3.1.tgz","fileCount":15,"integrity":"sha512-Kh7yGL3VhjhbZM0jj4Cu+4BXqBN4Cb18R73ZawBjTd5HSN9N+cnuU4oDeqXW9h8Yqt9rfj0LpDMuHTVP/rbiQQ==","signatures":[{"sig":"MEYCIQCnvr8j1ED46hDE/ZIP/56PCtUl6HT1smZvAfssaYBsqwIhAKCEbhaHtw0IVGEj6VjLcCvbnexqkhdlxvEiIwBy0B72","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":243379,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeOeOaCRA9TVsSAnZWagAAmowP/07mnxjTHz4500RrFQ6Z\n+TZUhsoSm9QLvy5e9xWH+Di7CEcJIOwA9z3sLm0sm+/1HfJBsOWGZCDk7POS\nuFg3OHa0nJs6bdqm5t8rCC97SMDswFOsFgwJUsWmwGBNoXoh39R8MDN/SBqC\nn2Tph5syBx6ZcZEpsY0jExyzDJk9+YysIwjQCzWL9/FM8IjRF7jOKHCiK88y\n9euLQGBShTtxRLDQJKqjok0etn9MJ+tlIc5+M0OFf3RtnOPnELLa4TKVCv8C\nPxvAljmrCpWiXqDFKG2+viAd6k5l/3WAI6lMPvZp2P+r/Ea9o+mZhW40GyVh\nNPkTtUgcQ4iyAsc1uZ17Sbcgq9EcwqNiI0lxG+62JcNWXxxErOw8GV4s0rbK\ncuC8GaA10poA+8nsFFlbuQ0UDCMsqvB82DCpxrUOLSmkbAyfr60FBogocrQ1\nW/E4hJ8+eUwLIgwJDX33dtRwJQZYIqTtzLgw8+zsPyw0HHUTt4V2+w8Sdo1y\n5miZRhnuMIYA2YgzIje6iaQGM23llOArf6xWYcc75G8+VTNHfcpNvoz82sW/\nrRBg2mC+YeCuwTM1seOF8/NtLbbHO5+8hCYaTvEef+jvL+TW8Mff5HEsKgfo\nYJqB8a7aFHet0+RgkbGVaHfaBYVPYdlLVuH3ObBNg5Zy92bhChZXQMEOTLwg\nMD9c\r\n=9ptC\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"fbfedb5175a56307ce04a67a6bfb2174d7afa5c8","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.3.1_1580852121515_0.009457374391646844","host":"s3://npm-registry-packages"}},"3.4.0":{"name":"@yaireo/tagify","version":"3.4.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.4.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"f470d1876445a384135c05c7a493662289c6aaaf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.4.0.tgz","fileCount":15,"integrity":"sha512-YW86XU9MJkriT7COeWD0UKbmuZzyrZ8KIY1rlDWAmXAohyp8xnri9lUUXeGDXzXVNJ8LEVIuwS2F0Gunw52+4A==","signatures":[{"sig":"MEYCIQDI9tLpZYrRuGiwtd0YciiNAvBGi3fFmIguZuT12DdEXAIhALRyeV6GuO4RLkCAVHOWzR2ilXnytJWbTOjdyA9pUvLB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":244618,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJePcf0CRA9TVsSAnZWagAACCkP/1KMlp/8mxNIY876QhuW\nskrNztdFVqfTl+og2amAt87OEbriIRX3f1BLBs4OLOkAdCcmHU3AnlMowi3I\nmqMjqL/KSkdZi7qIGAV1a3K7g4IA9qJohlSKF09jVPu5I9U+VgZiMtfbZae0\nfd9ylCea0KsSDvd4eiSA2qeEnNx9rWHdOlCa7GjzXHARgH28JiKJ5IOCbsA/\n76Vs+uvK/3VgEFPLvpLN5BbGb1TjcbF76OvN/mvlTd9v7LNdNXpEJfgCeSa0\nFnCf20nfTSD9z4UFhdi2krvCWFCfPqu6mATBEqLBdagTmIG72nrxY197OhgJ\nnWtzNn/KU6vhT4xqDUt0UZSD8+dzvTIi9druSOOxdF+y0SHuy4yEDEUxiW1F\nAgg/qGhOLmX3D50JMw03KMeoP8KdiFd9nPACbfVE+xpIAnlWX45ion2zarYx\n+E0S5FDsS21NJq0rikFZ6uyTZexVr2EzCGH1iWhEmbg/2JkB2ZaEjP8FAouM\nvHLlB+RPoa6emR4L/HZGefDlnd7r4Vs7a93znp8uvjbg4uiXC6HEvVaRoIg1\npZxSaU0NkpAdjDXF5kLtgRocz00NqH6If8Mlati/17j3TtOqJh69hbV+T0FB\nDM8g7rq6KRDAppGTyd97FHz9WQbzIwYVlhnOqAVtN0c2Fbx0ALHM02tQbsru\norDZ\r\n=GG0y\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"f6dfa15dbe1a28e0e56ce4ce926ff35cdc9af89c","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.4.0_1581107187641_0.38753226036380584","host":"s3://npm-registry-packages"}},"3.5.0":{"name":"@yaireo/tagify","version":"3.5.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.5.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"6f7fdd3679c5214b24876eb268160d61fc449c53","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.5.0.tgz","fileCount":15,"integrity":"sha512-+JVX9oTFBFResKCjyjq8cQqV5aRNtIr4eiGekUv5Pyn+0QcJu7wqM5mKtyMCPzvexc/9kajaOn4FL301Vohvtw==","signatures":[{"sig":"MEUCIQDEk1Li0BukS8ssp0YmznHdtZqbnI+G2zXXVZQCi9MeZgIgDHiOmR0TypZszegscISYi0/YTrK5GN8yuzsRj/CwFF4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":246033,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeUwfSCRA9TVsSAnZWagAA3NwQAKBfMg44s99wlWfXiHWA\n1f8oTebxxtJPE0w5EcPKOb26GAzpoAwcNUAIEtG2fkKq67kZtVMmWDCHjmUR\nWgzZdguF7NuZ/HIUQ9HaOC8g496c/j9gsr4y31Am+1D1huZxhAhXLs3OV+2X\nbRI+C39yEhSGzkGzexc1AjUc4Qmyxpgqz0twwL0PcBDuU88frQQPqVs0Yx6l\nTtBZu2nStMvhNVYi59uIhmXp1w8pv5gya0SVuyUB7Iz2/rOf9FgmsJG+9+Lc\n3oo4AqoCfJ/gAwSx2iVmTU17p34vo54Q7CK4sUk0Af/dU8B3OXzadKkyBt7v\nqpFgFrsRS9Az1yZV2UbKM3N9CpiCLQbjEl1gK3msEnmdG/zAK9flNGTLftWo\nL2uVweKA+0jtbyOZqUvK3wwPJy1p13WMC5/Xtbls0dNZkgpCup8NAmgHHItl\nvD/uqCTO5BC4MjoQc17d0hEPOnR+r1DUv/BXDfKPBtEzLWpsYMXBaIylM4S5\nLjY6vGAU6iJq+API6XrryLZkJ57kg+44p5PA91EKEUz3euoOUBOUNerSHFRo\nhsDm/eD/JI5zgujq78YUlb4oj0H5C3Zb5h9YiJDCm1Kd+lut2JdQ6EAH2vY9\np+D56DmkNvuNJkwmIKOEqjsHgBVPnid6Cu28vwEVVwDeiV7Q8doXmmGzlvPI\nmrva\r\n=JXGi\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"639be6ff02a9b427bb316a6882f409d48b7500d8","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.5.0_1582499794342_0.4896518326797268","host":"s3://npm-registry-packages"}},"3.5.1":{"name":"@yaireo/tagify","version":"3.5.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.5.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"6ae50279b2bf9d96f07e90f1582b750db83b3d49","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.5.1.tgz","fileCount":15,"integrity":"sha512-pYl7xkWCtIsH+m+yDWgCL6TbM+/M0Yqux3fa80niKODRGiU3Dw0MfY/UE1pdmxapr+AZndo1P1ZJ/YapbFau6A==","signatures":[{"sig":"MEQCIF2GfiXCTYpydc7YcDvruHMSxkd5b5HqXNgOYMPGszcGAiBmqXIxZGglwd8x4AFLx8EJrA7vzd5EcG8RcMBs8R3p1A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":246206,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeVXwwCRA9TVsSAnZWagAAFo0P/3x33gwRPCUH38W6k27M\nKj6TZFbDUOrZg4vRY7K4rD0yB0kzQku1izcs+I2y+qjEDNbb2tmor6W5ylLW\nCz254NESSPpbJTC4uB3v0WmHuNA50H2pZQMvX+kiLa+yHek5d659TfuTgVE0\nJpcog80bqI8yvKcoiHv6Eb1J/7C4B1kTWL2yjmtGtKxGrumfexrKncc9ZG1W\nZ4lq0nRTh0HXa2SZNKzleCpbHZo/77vCWiMvmO1u3AIRCVTGST15Ev9pX63C\n/pLHEshjbyCuZjkO/qnqjxG+Q6suXBqpMbaGweZ5QmNGqolnR/RWQV2y9pjt\nc80JBeIIsQ3wjZb/pxIoWdXGvA3++s48IBlILnOtrgG/sdQw5AHmOZNNJzkm\ndulg98G8IP5sFckU/luEGgplQHbOsRJuhTJeDWZBjsK4Wr0QfMNiJHGgNeMI\nV2IavFY/ibzul8fkQxOImBk0iRGguVqlNVEVW/FZ9MwftsHHQG/9VOqhi803\nxKX0MUcKj4unuODATcI6ufdl66t2ATKm8bpoh83TuM8zunUqx5ttpBK8HpJW\nYgXBsxHl3FgC0OwY5hkie0vyeOHLuPteYQtvq5kEfoRgOab5orf0+tYJ8oMk\nzRDfNoaBoMwOJwOKVTrBvDUpS18z9HcFC0+zBeORcLn7ziL0Q1naJY41YRYF\ntxIM\r\n=/K5c\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"d4527ee9ff94c75cfe41b2957d45b881206a3a1f","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.5.1_1582660656302_0.23137321236782027","host":"s3://npm-registry-packages"}},"3.6.0":{"name":"@yaireo/tagify","version":"3.6.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.6.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"e8a0c6e71b428c5f34ed3f419d647b35e6c07667","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.6.0.tgz","fileCount":15,"integrity":"sha512-KggFHTE7CDXhx86PEu6PdSqNA5e90SN/HomcDayjSkdZaeBccu1WLbeKqmUZf5WF71vXoipxN3X+LkSa84zRQQ==","signatures":[{"sig":"MEUCIQCgbzFXwUphf/gxfjz2KmamFdQ6aD6TWmJAhE1Z1Ha+gQIgXcT1XKzolEzmM6fmsZGAazt8/D9/AqOfc/SfjKcyf54=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":249167,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeW/6+CRA9TVsSAnZWagAAZnoP/jQDT8YI/unOGdGAndOw\nBE3jozmv2KmvFsA6/M3K58tYMaSyw9O/sG6tL0s3aaAMRrikEmYKYaYuc13c\nCx5pfQQksIICy8Pr8HU7KIG2/uvoL0Nw5W+6gmpRMH/03AN1IpvjGLyTdZuz\nbgmsCnF3/WVvf1LvdjFcQq9hH9NRoiMeWUf9NFACDFCmhGCD6gfGDK1P25iD\n/l1LwSnVy8H0O7ivudxOhqQTPucaDQkphiSs9FKusom3+ObE76hPc/YSnuMJ\nQls/IaqzAr5b5VviLh808pew5wL+K59an/febA2GylYmK1dqEK11KoHjDdq7\nOY7Qbiw4ZVXwTXIYlj6wsYFSYTC4pVXsPgMJ30J4hifsQ87kWWvUCjnKCD1g\nPN7LR5S91kfO/K3kyWcTYmG9gRg05cWZFHJmhHJ/VTMZXE3a2hGP+ge0tK4E\nJS2p6kEeK0lNT5gG8Xw+GSqhpWlw5t9GNQg7oX6PjrPafr33ZvIwNB6Ox9Vc\nZIgp4Wkk+PF3fLivrX9mCWCe9BXNM6YI/YZrtw5pw+aNgo8miEkx2qV5Z8B3\ntMnaLbvLxejRXoR6tbHQJ+0lJDegiOZWMf6bq6QYFBpqwFzH6aZAZnup7HYF\n7OGBcNg3N1ia0IAgLZSfPgUurmw5kANRbxfS5a52Loq5N8l41ZvoA5hjbmN9\ne/i1\r\n=Bh36\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"f5e2041f9c319cbaf3809692aebf7a7db5a2c96f","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.6.0_1583087294109_0.6103864623506938","host":"s3://npm-registry-packages"}},"3.6.1":{"name":"@yaireo/tagify","version":"3.6.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.6.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"155cc851da3e79730129c81fe9daa10a8ee81c4b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.6.1.tgz","fileCount":15,"integrity":"sha512-QdHVQ8NepKzbd3NG+0zrY3xqPIW5In9i3I4RPjgZm+45Ih6hSWQSnVx2VAKl1UELO3y0VMLlTRnY7HNf1aptcg==","signatures":[{"sig":"MEQCICEVoE79OmpRxpYGVn4UG0OLda7CweNbV7LrQMEUlrLMAiAIl2sdEB9qnIQpr79AiMKK8QsluQzNBVpuy97//8iA3g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":249736,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeXsxyCRA9TVsSAnZWagAAh2EP/3L5QzSEpG5TA6HO0kpQ\n4PVlcUQGm8qsQtrH/MscyEwkto8MMwi2kKwo0STysnyqmYPXfdy3luJUXJll\n3N4t2zDFS+X4s1mLeM/Rc7eIF42YGP+w86ty/iHcRO0jp4CwX/Dj13GCj8xd\nyhXekc1fV/JZCipemFlByx2oFiDaMXbp1w2p2Hj2JQDtGkiapqCRDGfQW7t5\noq51LcNSwubJGnwrMErgZDeuNwmenPBHKaAKpzzZhzP/dsA1wziosLiOTIED\nrv5tfzSYeye4y5m0DfRZpfozeuRHU4MkGCp4inEUtR+zb6ytMk0X6jWOJ/Xr\n75XDt0xmBLu/592+SVo1ni543XQORmcIPfslnUVU0H9NbHZH/vdEHV+sOYes\ngwkY3l6Wla4maY019O/M4GLIR5QHevsMVvq13+0cOify8JD8XTmPfqrIWUuZ\nL2UNO6VdcFpy5FcwEb8FNXM6MtHtzdXwrMCZ4dMarQIWwQHGHiOElATInj4j\nwb53ntmDstiJs7qmcl+yUsYR/551ExviMUeD3R6BKXRh9a736nqWYcCR38eO\nPLn8Z/wU33h/iRuXpyAu6FQlIe6Cr7CzVjAiw/u3mRZfK9CfSg7J2/5+1/EB\nKF/VzN3LlKhiu+Db8ileCyekSFHMdT6Fhz0agUtx3SAxSI0vBZJ1MU0Rkmer\nsHHi\r\n=XD48\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"41a84d2f52501fb6b989f5485567bbc5d1fe3384","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.6.1_1583271026084_0.3490183401975826","host":"s3://npm-registry-packages"}},"3.6.2":{"name":"@yaireo/tagify","version":"3.6.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.6.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"082c772ed99b47c7e14f6a19e8777a30d8c55c7f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.6.2.tgz","fileCount":15,"integrity":"sha512-k10il7NVxI6KTo5PAxOODGjGNQ0wVaYgqKgq4MMOVb3g8DQ0bD6iVt+wa+3gBXhgSCOuCXRG30a9zU6bmBNUDA==","signatures":[{"sig":"MEQCIDlCPKNhJOR28QSxG2pZNgfAAdMf/TrW0uysUuo/uWsMAiBAUV7tZ+5vqjN3YtujUptN0W06s4hHN0mKG4in/1KpJg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":249724,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeYNrKCRA9TVsSAnZWagAAA2YQAIWnZBo3PM3fW/kLZuCS\nP2gy09hnX0/FaSHfllvcBqmxWajlGKjJ7J/8bk1jrdRlzDDq7iWDUjli33Z2\nexhDq7bWiecFLNt6DPaE45JO12cuooEFIx6vNYYfoHwTTXzHIY/rLxZySE1J\nh7uLhYLFO1XRLvqI78UXZDKpO8++r6zfE4TQFY217OhnNqgySsxuVPj8HIIu\nBK0F92Jh5UJ0xKq2RsjdUoIVtlKS4cb4k2rXvRZSj+8RORSmud0P8r8kQ1oX\nFmbra7jZC53/g4JKLiNw3dHbIleQTQan8rbv8nMK7XA/zimuc++FqRXNnd6l\nhuuw2HbA7IQeLvckAxNlixw2ItfW+WMpeTfIKcWe1KUH6uu9n3dnvqG/H3De\ng+ue86e4l404GZW5WzMQx8OLF3R8AbCeiKX+hk0pM8qEJ/ttoJVm1yvVU56d\nKCicacS7TMgq+deSrOIBAGk3y9e20rR9kfCqGHiqeqJL2Y0wemEiDM2azh/Y\n+me1X/S9+h8GfVXwOCEJYQG0VjgNoB2B1rnG4uuaJEah3HBK/vwIW7hytV0X\n9e4nkK6EDjndbUewHbXX/w0be/CfzMTaoPjGEepBl3CRSQrWPY+57EJ/FB2g\n3kpOT+PW4W629zFRoSgrf2QX3XKiqHtHPMGGwH5I4Jqciy+SIGir+FE29l6w\nsly+\r\n=hRdq\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"6494fa53a0ec8a7ace5a76f7e35d97a4f92fb39b","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.6.2_1583405769968_0.5643983430315269","host":"s3://npm-registry-packages"}},"3.6.3":{"name":"@yaireo/tagify","version":"3.6.3","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.6.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"b37a33e0c62d7677f87c4cb3b223a721dfad0739","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.6.3.tgz","fileCount":15,"integrity":"sha512-u+hP5crhs1UruOP8kJTyCz0gEDvscU+VNrQevHdhrgkPTeDDR4VrJzm0RohtnMOQAZt1mXgkLQa9ijQCcrYOiQ==","signatures":[{"sig":"MEUCIDj5iBfxk0aU3/pdI5yqTIuRqh3gih/mD7CSbGa7JU//AiEA+vWZxxZo/QZAOcnPn6k7wNQJ+TOmbc7eeiYp0pvuUU8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":251149,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecNUDCRA9TVsSAnZWagAAji8P/R/zCF+1IHcai8RL0wb2\nsG6x57rsPITKe8f0O0778F5mLr+cDteRqedKCS5bV9Q7Xn0BwN4AiKsfmsEZ\nlV+tqoJX7jecHun86uFUsk/j6QhDRsIZRt8o9BzU0f/Wq3P3MhKjfourcqyz\nhonrtHyIaYH8zz7G0bUF1hrAZv0SpUobtswaPNUuos6gHQ8dnYKh4RMyrFK/\n8f22gfk7N1xWe4q5gGXbF3P0IFHdwdc8TuSEOAsp4i+OIsTi9aE7S0w1QThb\nEF76koHxuv2nrUHp4Gi0JnMjqNML5yxjWbVtupZDgqTo1y0mZ+BtulHzIVZZ\nymZVgtK3zDkO5soL0oQ2mPhNYHMkSWg8KPqGBXmxWA+YBtvNgOor1qNSyusY\nh7pk3dlUu9W8anrIsvFQI9CtVx5KKzotdAAoLMoP2SUUvrBRBKpZfZ0JoXsy\nn1O8vywo1AArqlZr0KOWaNC5P0M/ENJv84RkDdQdZwdjdnUZJixgztUvECIQ\nW2sF6qDbu/Fhj6TmkM3X61cjMKS06gTjOuZrLbDhP5bZFRTNGXEDfiASZN2Y\nvN6zevaGDqE7uAmngz7ZcFDS+balutTdqm78XJSN1zJbgTbBc1WHR8fH44dS\nkj98aiYq9EO2gyxHrt07TPuj/+rG0jcYdSviNkZIoh1OKVWeC3IZcIBmDrb9\n58Ac\r\n=ohxu\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"ad5684dbd51784cd85ac3770903c21f5776d9d6f","scripts":{"test":"jest","start":"gulp"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","babel-preset-env":"^1.7.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.6.3_1584452867103_0.6602195502176966","host":"s3://npm-registry-packages"}},"3.6.6":{"name":"@yaireo/tagify","version":"3.6.6","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.6.6","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"f095fae53c90847cc3f130dbb90478219bc29e0a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.6.6.tgz","fileCount":8,"integrity":"sha512-gnFmxReztMIk8UpDuOIYdNbYFAnTDVSxcUo9JqXUazMZrYPbTsJ8RA94vdnzqZdptOjLILfeiHHyF/3FqHs6gw==","signatures":[{"sig":"MEUCIQDeAyd7sSX+2UQ2ZXfNEE/pxsnBn3EkX4kOFKu0LpYKywIgRKhmS301zVXPaZplzYrOFF+93h4sb6V44eVeYMnbL74=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":168158,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeh6y+CRA9TVsSAnZWagAA0ysP/jATfT54Sa8fWkv8/U2y\n8J+bDSHi2RiZ17x/uXVTKtB/ebSsPZFovvr7QA2q7CY7HlEKYyLnWC47+dbX\nQh1ZeUkZTJhbRx7gf6Qgw+MocpYXUYtqs3KPNlUGnSBI/KobsG73ZoWAUUG7\nO6phL+FdgLTTQK4csNfZbmA2uWyTeIFSTgWxAtF0f6wCLpoLv0in4RUs1cfb\ns1/UzJeK3BalhXg8IZ/fRKR0ObIxh4EXuhQGvRtNqEzdI7yxwIYBuo7ZOUd1\nD83h96wub5DzQzp2iUASTyQA/oZ940EdgJSyGHEZO/or3t/KNChKxGBhWtpQ\n77MPcwWpeYJ/4+BVAvb4jei49nwz7cIdAC2DaexSHP8yZU26RXXtv4QB5Xjg\nGIzYfB7G/w//IF6Btc6/dPKYrqKWPQsFBCER3iJnJeLI3V2xnipZIeuFHluE\nphyHfxv8t7lOnyY2pZzV698A1XtFTonuu1hvdMlMwTVn1mVZ/vVRE9zW4HpB\nueYiv3scnaqr1XrV/Zaw4Mcu/2GaRmgNJyM9rHRGUAsM07kyTkXss3F9TnU+\nE5HXqae1pBMxCbpt7un0Q7w+RH2oOMPe1aSacETyfQ04NfCrK9lgaterrQl0\njjvGUYG+jRB7+VrOSb8yHdnNuSjaL/Qlvh7ClthHH1TN6uiT52IrRz6DCn4r\n86sP\r\n=zxeW\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"04246ce0026e396a165be7442be7e74a801ac50e","scripts":{"test":"jest","start":"","prepublish":"rm -rf ./dist && npm run start"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"peerDependencies":{"react":"^16.12.0","react-dom":"^16.12.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.6.6_1585949885579_0.6395873692905589","host":"s3://npm-registry-packages"}},"3.6.7":{"name":"@yaireo/tagify","version":"3.6.7","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.6.7","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"9f2ac6ca69ec96256e1c399420cba532add82292","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.6.7.tgz","fileCount":8,"integrity":"sha512-rE8CTWBLVNT6w2AqkT4LrBEPmVxqaFC3DTGli5t1Ml7TY0bqVSKGNjC4MEPWSW87wZr+T546LphXK2twaEYotg==","signatures":[{"sig":"MEUCIF1cPtnZxWPBiOPuSmg3S4ptinEj5bc7O/zsv0jdgrkJAiEAj9GgSxwgEdwWrACvaVFr2BzgLu0cX0lV+rxnut4g47I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":168158,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeihZWCRA9TVsSAnZWagAAF4cP/2eY1u1dVw8DU1E3wfaT\ntJChYEvYRDsyI82pXNJbtCpS7/ZGGhXwB9Z/FuAHovgg0I/55rYVQlLAczLa\no1s0UWYiDfIPgzV+AEySATSByjgemupjBtWPDPY8uuh6sn1fheR6UKNw3nZR\n9BXGgZGqv+gcyWPL1AWY7RXxRogfwQ7NpJCSv7k7w8pQ1StNAOd04+OBU3xc\nWD/qq0i6eECOFJNldaz+KiZcJto4w3faLgzjWiwRudq6ThX8+nnZDF2VxeJn\nDBPEwuQtyszc6YRgjarIKGN4WOgcNSGJ+cezQRtYvOcYESBUmN6u90o81hHz\nsNTLZB9rWMYXqeQFGqfnvQeVqz3ix+pYxryz03r/bz2nc4N3gYdmTbFmpDd9\n2w7DtY4Ywy5B+JGFs2JOvznP9GVLQh1Jfy4AGczdGkLBZmBRCdlyk0WT6nGe\nwFeZOoGqTmdxZ8Gy081UiQLp0Dn1B2Yk5e7NQ78GY+ntsAOWcJIEs/CrcRPi\nEUMon4qkfy/7HRQOfNWzVgQEDMpLX+W1HrkVTZqF0W/t+0lbuDig9eHYkrZx\nY6JGoPxnDwJtyjlbGPOMiE+58I5l/tyJLHbtrNubrv0egbSy+3XECEMYsBud\nmBVu4qnn7jrTGZpa5nuYdAx/sCwFK1ndlAFweMdlYVlcfBcuzwt8u1Vr/7BB\nnHAC\r\n=Ug5k\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"c12be11fc01deb4a18ebe2b3910f1752fc0e168c","scripts":{"test":"jest","start":"","prepublish":"rm -rf ./dist && npm run start"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"peerDependencies":{"react":"^16.12.0","react-dom":"^16.12.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.6.7_1586107989530_0.40657503878061463","host":"s3://npm-registry-packages"}},"3.6.8":{"name":"@yaireo/tagify","version":"3.6.8","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.6.8","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"23cdb75a093e1deb6ef3b38032ce36c61d6f022a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.6.8.tgz","fileCount":12,"integrity":"sha512-obeJjc259S1kZyKg0ZaN/mD+QPTuU5aDfy3SI9My7xij/QrL+5DxMXvtndYacHNkRUmGE2rJ8MdJYkfDb9No3Q==","signatures":[{"sig":"MEQCIEGucrV4jev638NP9olOdSjEfX3PX9AHRB/wJ/mzQt9QAiAnA5j3oJ8nbegq1bA8eZYFt2t63PK6UENSv+u6fae6QA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":257974,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeiujfCRA9TVsSAnZWagAA6vcP/1KFQB73Wrg/eQKmcMOf\nOchdGe8gGnw43J0nPINUhlThUJGTQs5T2BwW3A/tWP/3v52FJ3PyD2hWh0Sv\nLoJrdMn+8Mg8H1fEoFwrAXHi7L5LPpaz+9fMvcmeYqh5RsBYzfFD0F2aoiTa\nE8kVj/1PERabxLxjxWTj8s0RtES2rrzMcWAtW0ji/Eb5DyAg5s1yzWHjZFHO\nPHV+qln3GuhoFVLol2iPYbrYe6tHLunrnV2qFI3Ba7l5AWValWZqo0bqXy7X\nVidSrmAfRKKC8P/xDlLd/EGLBgrxt5AcQeFzt0HNAJbV9o85uoxFEqLw+aX1\na4EYXjoqh0kZIGSqMGCkhF5mUi5Sz4/pRs5tsXD/YzQF7PXt+pqldlHMulbq\nHP4Oi390TiZnnb5g/K7B+jD5HCw6GhONMdkM0VPj2Fux+jmsG37DYwZ59HRX\nrl0f35VWrxVLyB/6ofABzPaHPO6Ft5U903IOPiR/nulkaVy8jZ2eqmiYd6Tg\nBPpG4y9oO7wl6HBE0uazhZzTBmZDNwq+Guo2aXnkCJv+yNXr2lHkDV6efAR5\n9B/t0nMBWZqoCQuD8k94riRh5ukbf6OZx14HmRQXD7sbiPjNWaOspW1pX9uQ\nkVxZdhvuxbrDFM/Qa3a5kpIAS0Bstk8E6BYNEbpbZxq7JXde6fSdEE3k8uFK\nSJdb\r\n=I0Ld\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"d75ffd58678a5f4692a79c77e7a0e86db2f7d3c0","scripts":{"test":"jest","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"peerDependencies":{"react":"^16.12.0","react-dom":"^16.12.0"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.6.8_1586161886846_0.9983442702079584","host":"s3://npm-registry-packages"}},"3.6.9":{"name":"@yaireo/tagify","version":"3.6.9","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.6.9","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"20659480b27abbd0b8c6de6be8ecd9db7090c359","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.6.9.tgz","fileCount":12,"integrity":"sha512-azdPDXN7OT/tCdP7sINYCrB5sWgH+QWZGzZUfo/IwbgdEXEaHaHWsqvUHO5kh0RfSZA/p71LjkPX75HBcXEqJw==","signatures":[{"sig":"MEUCIQDj+gNiqNdUrd6oCsI7U3DOtYwr4D2gLsbEFRd91Vg+yAIgHWYCYtUsePoFpldulmyazf0plPe/8KL/W2H2lLzjK24=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":257960,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeiu3zCRA9TVsSAnZWagAAuHsP/jnEDPXrKVFCQ+EP17ef\nTp3EPQd5CiexN/gjffXCBjMIF5/1DrK/Yf5MQIHZLbZU3HtpjWkdoNSJxvq6\nxTW0XyRIAsLoMDBvUux5iScrTsdq4sjMfqF7iAbxXcmPPz0QF7nYKXkwTYn6\n+Hs94XycJ/yqS048UCMapbaAteXBgGtC0rJPrIqILqq6iMCVhJgzraa8czie\nk7UIRzUYM/4irtgsPmxHKPRqUXC6ERvKAs9Yc+tbFEng2btq2Ey2cCFphsbx\nZl0Kq4fSHpbPhMZNsyYVdTabnNIWwC/NDXuj7e9ZcrAD22oHHTw+u5BCCwH3\nOlTKGIW4TW/EBL33vrxmUwfJQ10XSbE38vcbcdEC5sYp1ikWP8p53uUtxsuS\nIOdFHStPnqdRF+mgf01GMpa0iDgZEoTllw4KyYuNqHeaOHFTpZ9ISfzsuphv\n4hTZMkoFGbg7x2ZEBLCeEl5z6fZ50UYMVFrGf7Dgb9TbNu+km8CNpaMYc6zQ\nOURRy+FaP4z7lzmdRs/3LO+mVmouXkLQ3nw8nM4XZkoOH3Tw7gSgryablGMe\nMYvWKWAqKyvkhcPvykv0vaMcu8Hue9CF0K9gQNj0GopNK1imE4bUkNxRWmEu\nesCxuOOUvoOsMeNG3Vug+sOyk9PcseeU9CYz+XaNTN1GuaGXn2SnVx9hHkid\nixFi\r\n=CnIa\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"ee3f2ed280dfbd90e97b7f1ce49b831b222ca122","scripts":{"test":"jest","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.6.9_1586163186664_0.5894780594821818","host":"s3://npm-registry-packages"}},"3.6.10":{"name":"@yaireo/tagify","version":"3.6.10","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.6.10","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"940bde691a64a6f52ba3f4319aaf2a568bf32219","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.6.10.tgz","fileCount":13,"integrity":"sha512-qqmsdU8a9WvtyTKKYaz3jLxdUgRV+HxKtgcpHOn1yajiEUbnyU6yhoArGpvrJQT2mlQ/oiPQqTf4q0uWUhqNFA==","signatures":[{"sig":"MEUCIDLc0/v7YHRnRQkYt0uW7VCb6xYYygJaCEO51Xh2Hox9AiEAgBC3yLaubHGnErrtL3BbBZYFnfpk42aBphThUxDaZEI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":263169,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeiu6eCRA9TVsSAnZWagAAevYP/2Ne37JM+xXp7CzJ8kmF\nOEh4jQHi3CWGwYmE3T1YF5Ff5jKn2E9yR+dvPZjo4L7oes6HYNdQiyoD8uIK\nJc3gGMzQZ/7czgboXROj+VZQTIT6bXoxXTMhodAaH44Wfun9ICJz1J81iQ4p\nF/3z7lXMqkIYmzrs0NBp0lSXSp2i7O/qmRY3vueiSST8/eb9PqC+pDWOPqaf\nS9kXUUMwIjzTLB3/ehe7u6QVRKcS/KBsk7WFxp9Lv2AjW6HcdkM+nPNeohwr\nKa0uuUmT9trZ6m9LelBbzi1+Oro4e/pMUx6v6NVsbh9TiLBShE9ZPaFuEKKM\n8xxsjt3qykUOI59myPygwzpQpNq3v1p2FnrqduIPZfk7Xj4XDbpqfq5dAigk\nDgWkzs5a1/B2aRYfjYjS+bIZNcPZiuz9dMInEkKjyCrL8AA1p77KFiOgzCno\nvOHaWZPMoyJqc4OFwRyrWUMEhVBGUIWt541BfQdZuuWo+PbVhFfMgnOK7DS/\nWo7bQlbNJeFRPtYWl2wJs+a/FrJamsLuax73Ha1dcfVIf22VkZ6SWSIL0ZGa\njq10WvQMZaumvTSV/Dyz8sqs8B6IPZ646ryf+DZqweIJq1SMflKYyYf05lQW\nV/l89GpKJRo3X94KHk6xfZj7gN82yAFQHa4rih56vX6kCOrSJhEcRqyAn5fi\n3mQ1\r\n=PSqk\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"da3481bfc4b7610bcd10ddff19939266fd355afa","scripts":{"test":"jest","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.6.10_1586163357978_0.4931260754790461","host":"s3://npm-registry-packages"}},"3.7.0":{"name":"@yaireo/tagify","version":"3.7.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.7.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"634a15fff3022870a16eae3d58bcb745814a1bcc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.7.0.tgz","fileCount":16,"integrity":"sha512-leSxpGnO/PB/ZE1h7+E4orvbyw20pWckeG7NowNsYko+i1YgP83xSJcHUqSzQvJESvzE+pzJETkMVpI0E2KeSg==","signatures":[{"sig":"MEUCIAO2nmnvhD2wPNA4GLdsjlWoV547b55N4eKBytkLAZIJAiEAnHnesk2k4KE4841Sogb5/8M02SVWKU85RFNYZTtDwQg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":275932,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeoX1mCRA9TVsSAnZWagAAxJ4QAJ+iC51ocZXqkzzEdhX5\npsOqi1MSUaxOWPR9tl7tTbHzr/t0X/ofW/89VCwDXxMBlZXa0EzdUs2ZY8Rf\nlWU3fsqq2NFdvVrW3u/70mgMMx/ld+fv52EZ4dqTjZPOL5BBJJpp2sle+Y6+\nQFxoH3MrsKvRJKQdfxZjLeapT43lNn8Vj1MhmlTP5EWZzjy9IOLgMD7ds+WB\ncn/M/nbhlOCQ5YgledHjFsYyF0BZ7NrsRqgzJd42ss2PnZ1EIM3qcw+5Co0M\nwUef1b3IuOojH4QQQbiLygyewDYJA6N005XnneFg/Y+thNfUshc7emxrlEr/\nNzRaZHIEwBJJH3D/GWtcbA/TQvu8OMv6qkR/GpJZNFlBXbpusABu0B0PEaGj\nL+mU2ntwmJieygQ2MwMKaIFdb46kKD9ZeZXtei93pEiOZDWJqALE47nD3keO\n0l48VFyiJHKFgMjEr4N7MAp1Rqx/EJvngxJKF3zPdfL2MbVGlcjg9uoB96PF\nlBfqQyqpOUk2hhihiOIgWmJNQa/7N5JrycPoRh/6HPrGDFLf9BAJSgs7z6Kw\naOw0YYvViZgokcY6E4yc9jGHWUPT24OXskjRupfBjcJf+TikrKc7JDQADyv8\nQroegLnAfjd/1OIwtfO1IGnVV30NqxnbdCmeydrXjWdUjK6xpsIUSJ0y33sT\n+msw\r\n=yOy0\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"627455a4790b42851bbaaaf9487893abb0c99bb6","scripts":{"test":"jest","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.7.0_1587641702118_0.43470813682521436","host":"s3://npm-registry-packages"}},"3.7.1":{"name":"@yaireo/tagify","version":"3.7.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.7.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"4c32ed96039abfe5ea85abe3226f50bc1aa329cc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.7.1.tgz","fileCount":16,"integrity":"sha512-Sdn3xx7Dg9KaOQzY8jmZ0rQI/DCnNxQsK5o0LsA+5xOFE5W+Iv9ZXPGlDyNa/f/Nkmg4phMuyefSReluTSvOPQ==","signatures":[{"sig":"MEUCIDmlQWPvv2KsPxpeVg+i8fSe5AsDh6Md0Y+Ci6KIIie/AiEAurtXcd2n049rfej4SebzPJveQ1rL/oHnDpVCy1Jj+xY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":276366,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJepHfNCRA9TVsSAnZWagAAyBkP/2vhzCCl7daFck71JDYF\n3dK0+lUGqapFh/bdU9MGrWCd90jZfJunMo33kElq1ipevyw0ggAb0rivLPEF\n5EIY0NxNDZb7bvvSTdqcmYH77oHlf8Iy9kH9BT4fcJmgiznUbzYknRfX3xZJ\nJCS2ibOKobaVq5pcU7glRQsrKyRVjXIXKYGMaYvZnWd6WQi93HUqwKoinyxU\nNifl+KDUS11BLqiF7LXNbBp8wDk1D4U8PQGi3OvSxszNtYt8hg7JS2KC4GRW\nyYo2kJUkcs6HIE9Nf8o1IZ/siGSoIvLstA2Z8tehLyh6z9I7eVgicmL65MQV\n09deQuA2gAsBATDgHzgAw6aU9GaEmIJ/oTZAJJxwe8iO5C809wxUFEQGFUKz\n6alPPt4waW37vfUOvgCmoBBP+gfqWixcReB7dKnz2zmxyvi7KrmCelcqCz0f\nBd/6eCyx90l3ePEJFsB/0R8Ia3ki9q0SofFeBXtwLyI1EP3p5DRowoe12SSZ\nkCQTyTHh6l56YgrnHVxwAy8igBvyCAS3uls6FNjzvVYZPjLcnUOdLFalqEQV\nvNh26c/m7R51Jc/LQxb9zmrF5Cxak/vpAGHJlVMllIhePlbodXMP1nT3lxta\n5iep5zf3t4onko6ycHtkjNhStXGQ0n1DPhCH2vcfqmv+NTbworbU/FlkVJwN\ncsCN\r\n=AExA\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"736f3618217fc972c34d5789cd54b8f689869f31","scripts":{"test":"jest","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.7.1_1587836876585_0.5075649463665473","host":"s3://npm-registry-packages"}},"3.7.2":{"name":"@yaireo/tagify","version":"3.7.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.7.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"a510e9a63576040dc4d1614612a7797a5dec5e36","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.7.2.tgz","fileCount":16,"integrity":"sha512-iBd20fDsuuY7wZ3gTt+OgR3F2V6MQ0/IVPz4uZy0JoVP2i4LfEyX0t+QkqR38X8O9fHrESlfaz7hBuTefQqIXA==","signatures":[{"sig":"MEUCIQCxuKGk+MNlutybGfje8sSuz4m17CVDlXu4hsGep35qiAIgAZVeAk0yV12Gw3yQm/lHxhDJPlC2/JJPjSyerpZZbUs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":276744,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJep00XCRA9TVsSAnZWagAAL5MP/An2vj++K0jYFCWmgJaN\nlCy5Y7JX4M0pCfvqjwwj0h+DLm1La3uTJQYfvDicRDiAg/9PdmVhsEbt4nG8\nEtfBLV3ynGSLZhthg/NCm2/aoxWUNy5JkK6utnb1f26CFtuKspxN8ahkZJit\nKy2CbpM3GDdKHxw7u8LphtTjEJP+ocFaIdVWxPW4NOweKx4G8KA5oUND4LJ4\n6MMGI2V9F8pKqie+2GptQVuoq0jFqYTYhSmoQxA4NZJgS02GPKgRSJKyltED\nk0zl8VP6nlg8DtTXQBPD4ao9VLERvSORVR8V3FznaG2YirUiXJPHMSR4gmwq\n7DFA/xapxeiO0ghfcsiVsCrvg9+NaZHyr/ObUG4A7O4kfXnK0hWQ0pVwSKgC\nkoOBxqb0ZUkk6HxnvSiXWjT4ZSJSzjLNbpiCL4uFdxZYnU6LtjcsSyc8xEML\nzdIfEdMHhe+k7BexZkbAlbksm9aoLIRqM2ZP5eJ2vhX7tlb+JHsghGsnqdmh\nPlJ6Kz1xXPXP3ZnStOWQcaX9jfhb1RO8xZtnwA3QtiDn5dVttenlzGLAA6R7\nlSuWcP5eOmzwzVxuQ6dAtGRmO+bRiy9+RhYBNWZ5GoMUeZVieq01FdXiTwzZ\ndc33nGz6Cun52/ZPnFoHTN5iAopZCdMuCBeJvRiRR1K3ojZfcKxiCMYCHwKg\nDRhG\r\n=W3OO\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"3cf3f695ca131c99e2f7cb2c6bf8eb9971ff5208","scripts":{"test":"jest","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.7.2_1588022551089_0.45604878787344094","host":"s3://npm-registry-packages"}},"3.7.3":{"name":"@yaireo/tagify","version":"3.7.3","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.7.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"beb15e7368a5579b8ec42242b5940680a29c0bfe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.7.3.tgz","fileCount":16,"integrity":"sha512-fF/4O2t1Qv7Yk6jgTHVFLq69jm7q7dyNAoS+jYt6bXd5uW+K+5RRjeu40qQQmxgE1J/kUHQONytQrUEu/30gXg==","signatures":[{"sig":"MEQCIG3HDLFzsN9eV2WYDP1mkq89HivS/vAH7b17X76dY2DzAiAmAFKvKEghBbKUdEqdgWDOuwXMiaEhPpJN/kLVNXDLcQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":279233,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJerIoSCRA9TVsSAnZWagAAqBAP/0IvJLm0ySYO0zqLT05A\nBgf6/o5psjECLKFvIcG3RC2xyZw6/bCS3ycsewQvbVfEpu03WjMfby0flb+q\nOaHh4z+E8eV73mfvi9xWsj/9ab+YlGxeGZWIK72QIpUnNF/J8mt93yzYv3Vk\nekpIRtGGULud2g/S0wwZM7kPQ9nUvyROXqFidkI3Kljl+ytK+ot2vN79V9lg\n0D/eqONR3k6xiM/e+r7j1xQDKdeNKGCgVfQwgkXobLCsVBn/g1S68kGPWrYf\nbjdYZ6LXgnfaBHljzOiogvBDjhi7xtEVV9YX4ikk3R1fmrZyukgOaCZT5T2a\nxdLv2FSnl40yuQYbOJTLO8C24YuouEgMHpmtmq4Qtkyhg2tlsvfmodUAD8fm\nv45pxGVxjgtumsSKCJh1lmfrSj++RJ0MpSJGh9bZP4ZnVZhmrRtgDsASrOXH\nuGUf9wKTxBKOzC/p31vgi5oR4+iHuVHAPvQS4XFiPuobinl+CHKtUDO0D5R/\n+4Eg5yHXJV2U8pJkK2vEbPqhOSHX5ZqkzatwdXkgiy83TE0tIhFyfsDlwlzx\n6HPdOzkdQAruy6wfv06ycRjNi0e32kmwbL42nWyn3mH3YPH9FMbRFh7d+3lM\nhEvO+VWesp3O+zaY/bMUxjgWvfEXcCy4QUMJQgFW3RgNAPfy/n9RIAB80wzT\n6qmx\r\n=Ab0f\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"4aeeadd92ba8bbb7875fbd1976e16174f50ddbe2","scripts":{"test":"jest","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^6.3.0","beepbeep":"^1.2.2","gulp-git":"^2.9.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.0.2","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","gulp-clean-css":"^4.2.0","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.5.5","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","@babel/plugin-transform-destructuring":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.5"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.7.3_1588365842235_0.7172368367711588","host":"s3://npm-registry-packages"}},"3.8.0":{"name":"@yaireo/tagify","version":"3.8.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.8.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"83c76b601b661659d64a5e35c212c8c388c6c123","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.8.0.tgz","fileCount":27,"integrity":"sha512-wz0+wJqWGEvrfaWJoVHnigjdbOplXf6+t/Xn4kdiiSQlTDMG9e126lEvxGVwPBKGyr4khCOs8U8gLH+CLogqeA==","signatures":[{"sig":"MEQCIHT1X3GMcs97hhX7nBL/NGfDnS55CC5xbheZ+nKY7TEmAiA4aQmG2SE1YcSO/Je7GcDhx6DlH9YC16EUMhm1kk4ogg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":315780,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJesZYcCRA9TVsSAnZWagAAddgP/j9prl18MAlb7zQ+4xi8\npjzu1MWQXKUXt806xe7/UQBeAlfj3wbRR0LC0KQ3XfCWLtk9LfvK0ewUrLmD\nVNOR6jxMNwo4BqN71ApUSqmerPfa8VH6R9DhH1Eo9qdO/mt3JiQ9yNa5u/sP\nIuvfHAU7rmIyGhg8z3sN+bwrYHLbAaXWO9apmG2xJrJg/Tfx9mU6ByN0TxUu\nESZ+LpC7Mtk+hatc/kh3rIczHEuN905oQenMXCpOyZSnkwIOOpLWG2MC/QIV\nDsTJhVQ9q+KPSxt7Eh2EW7IFdKG3vt6sv2h48AFUkM2wdSt2ARvD0w6DUwfe\nM/NTUD8d/cvmHlP/6OQ91+IiaxAM6+GLvLry82AE4v51bN1RyRkMsmV24NM+\nSpVMZm9dB+j+mATaSZS7a9t4y5CDtYkoKPQLQyoQVHMQqXz/wqyJYPqGGwUO\nXVsv9GsymfMfjkaKC9O1qulGbJmPTgaEQepzoGasrlQcG4rb2NoBoGl6E5nq\n7kv+m0qNN1sZiKhmgT5sO9Zw3ov40+058JyNFLFPeCoJ6aOUpM0OyfD4IbPJ\nsC3Dhvl6Rcd5Xv7/QxSFjsLK7rZWnK/D1MHP9FxSzKpSVWRlU0MrOPa/Xg6A\ncpIapMbYTImV3a9iupc9WS3TAZrUB+2lggV+g5e759V768Q6T/zLnOL92QPu\n3IZv\r\n=nebU\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"f9ec44fe85f22647d16746dadcb2f8d08a843f1e","scripts":{"test":"jest","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.8.0_1588696603776_0.22455021246237483","host":"s3://npm-registry-packages"}},"3.9.0":{"name":"@yaireo/tagify","version":"3.9.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.9.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"6e6c62823372d7c0eda1efa312f0d2cf3b5a212f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.9.0.tgz","fileCount":27,"integrity":"sha512-7lUsFJ14CnOkacTx6vt/7zfBGHzkfKcHgzMVVCztfoxbVSQQ3oLqJxwiM4YDyATgZTnYCseoPRLDmcJeSiXKFQ==","signatures":[{"sig":"MEUCIAQ//mZFciOZCeuvcwDuJ8Bx0ZND+k24kPhfCTKFmWhgAiEA01As5RNv/K/EeBp10PBft/2JUbUpNtTPSLNzk/A+rPk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":317721,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewEUDCRA9TVsSAnZWagAAVZQP/1edIrgV+besPdKLET/2\nAMdOb0AmICKtH5zcmrGyMYNm9L9gf7y3Z+ztTTFD7lx5jymH11Y0T0Sr42+h\nbPZ2zAy74IQtEEKH2+hu6g3KmC6mkEOcM4XakknNkEIUqnczde1aF1NMhtph\n1NSKGlnKuIpoypUQRm7xEl1gjMnC15+bIprZ5/WaMp+jwBa9E8fG6pmSklnl\n2pWiqfcbcel9+TnOiMFMSRHPbb0DlSnN78SCKAr+x2/W/ZVGOWLwaKqXx3FU\nywmagHS+B302ZHXVU5LG50gIUgtrxTgsJtRuFPocYlu2iC8y8Yez0y44G2LJ\nxiLx4z/vKLGVhzmuA6OCda1JP/19i6AlHqjNP5KoXY5vuqNlvAM6XeetW+iU\nrpj9h57pQYptgrf8Ws33hiIbESDkl26fXGFlvMZ2QXoC1mvNfQPih95FcHN+\nx5LoKp8qmgwxaPl0Q8cRVlbrEKM9/JvZe/PFZel15+Zq96NRLu2JzgA84tsC\nmJMSKHzIpnHGKqTW/b6zhYhl4kAQdTDkZZCFR5/hYfMjCx662G7q4GhYog7R\nFlPDpirp5ACz7vFt7TBQfL7wkHlK3YiHam5SZUBywChPDYQw1cvMqyKBUJNh\niO9wNaTmJy/l4wTR5wpd5V8mJMleok9zjQ29zdYoxcnWtXrt6yVXskx67BfQ\nIFmA\r\n=Jxop\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"4d8c48d60b6dbf587ea98d3203c128efd5c18c1e","scripts":{"test":"jest","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.9.0_1589658882491_0.13553089744957236","host":"s3://npm-registry-packages"}},"3.9.1":{"name":"@yaireo/tagify","version":"3.9.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.9.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"daaae0f4f6af12425323ea3d469dfe7426607730","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.9.1.tgz","fileCount":27,"integrity":"sha512-ZqaCAMMDZgjrgKzkf7+VyIpJA/nZ+9Hl6FqMncV1Ya1lm5R4guwNfQ8A/cpguNTVNMnCOT+luIQjl5wIS5tWtA==","signatures":[{"sig":"MEUCIBuWFFGPmTPqg6tW1HzPAJuen6SCy40u7nVeeAavZnV9AiEAz58eRE4xZKajbghScghWJgSAvkkfQtOb62mh27hNmB4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":318496,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewFKxCRA9TVsSAnZWagAAkXsQAI6Evm3XuRIQEiGRVcww\ne8GtIBusNfjH5uxeMkuWXTU+9opLRGnbG1FK7cX4E6iRwgfcUXwdccgU659P\npIFvJiAG1VNMzRi8ZI/APXH8MXcLPX5/r9djn2cCTpDOGi9m+BoCTLLrfH1F\naXgOv3QvG0NpyAQNkNqKaXCIsO2YU5UP/MsgjSJfJlTtg1lhAcQemV1heIul\niCyFlhCASlXS/HJvXhANqQefztchz940N+r1XYiY27+FUjp4yeqKslhJ0aUu\n3yQseTSRJTb/REAUb5sEZCkwnzRprdnkTYfDIa9RGWZoilv73ad8+1rqT93O\nIqLwWeyo84Q/W+JdhE9bAcmzGhB5pvtJZEgPPEr8zP+DEs00VDIcf2Es6/xw\n7CTiAbuC2zTstGf95CJL0qtbWyeO5j7Q4fs5hjMLMYuklsHdNp1qS5hg0MJX\nfpL0M53Hm+Wt8bkMdmIbGImpnLKfFYADxvHF4h1EqW4qWyO77j+72fGH85St\nO5HSsEyj6Cn5zYzyQT5plb7Up2h7gR7AqDjn6F0Jl8PjxILYgtzMAVS+l7Ad\nU+YkEwY45fKfVVcfBaA7UchEKk8Z0sxz0AgP/K8ZCNYZwebYwWDPcfcvA4m3\nqur0RLpRN1fN10jPr1eiNG2SpTOaQJCnJPhWaKIjDQnl5nxaVYHh9+odnd96\nY9Yl\r\n=R2Q3\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"39a7443b49d533022537dc213d0a25151decc198","scripts":{"test":"jest","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"6.1.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.9.1_1589662384626_0.7268985660552003","host":"s3://npm-registry-packages"}},"3.9.2":{"name":"@yaireo/tagify","version":"3.9.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.9.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"fddf8d7834a24c862cd6b9bc4b79aeb38ca4c3ae","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.9.2.tgz","fileCount":28,"integrity":"sha512-W9yHWWkWl5+zMAnA8LHHRRunRFUwZgjqhlrC/Lr2P86Rn9kKDNWmC4ekMdyMsCKLnA5BWT15KfPxPryYFHLj5g==","signatures":[{"sig":"MEQCIGA9zFQ2cuhQkIWgD9snVrTBnCH64iw1MUEGnqxeWVfDAiBRsu12medhaXyLN8qslerr58Gml1KH1H0qwpGYXva5dw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":378231,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewwkHCRA9TVsSAnZWagAA8iMP/iXTVCXUe7YC0KAbbDoC\n0R0/YKCTwYWtrKWo8M3BHmYyivY55UDYooM3uJ8BedfL8qZGouiuk7GfWj5B\nBo6Y6xvkkJESr+u65Glo0fqoEHWryUAgxdHFStyphU1LfVGlX28ZsSM9TjV9\n17NkqPx7Ma+qdVVLAL6FK2TARPy2c7+UMXd8BcmRxBUimeOElLFB+Dtwt4PT\nr6YL7da+Q65J8y0dUHTigGpX/3BgPJPRj9xpt0a4IeX/VPynsOzzfHQ3tGcO\n8SZXLDbWIgXwk2k+0AIJAu/YEFNdwgQZWL19dv94OaeQcaFA1qi463GHHHEk\ni0Nvp/aOpbRx/4Rnz6CZ6urwaXozmO3lhig1mQ8VaOkKz5Dk2x1yU6XxQ2/d\ne82wbeE/A5PbKVNNw/Urbp2inxMR9olcdd0jhVc3LrS0eXbUp43hEQ/jkjAt\ntWYCb4WrkHPAZL+WpUma8FgFGV100m8L7g0V5y9LXh/O54mVG8XNFcQEh4PD\niN2l2aa4oNyOlMNWo4XUaRCkPT8okfQ0hu9dR6a57QOxUEM6rqpiUOIYeHFU\n4BQgAFV8TwnGASrCY0WnG8joE0Q6Yopl+U73VBz79fA3rR5rUi0/xBCLUViv\nhDPglxDWQp6gGI+Be1xhFPYEF97ICWJF4W5YglTmNdZij93hGxJxodErMGbh\nmavi\r\n=fIrw\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"68d0a14a9075dea75944f87f748256e29faaf195","scripts":{"test":"jest","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.9.2_1589840134472_0.7880170586352548","host":"s3://npm-registry-packages"}},"3.9.3":{"name":"@yaireo/tagify","version":"3.9.3","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.9.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"a6671345b9a3a38eb4a7b18728db2526023e1662","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.9.3.tgz","fileCount":28,"integrity":"sha512-cS6WyMYY4YD8Op6qwsm1jE2zIxf9RQGJvYkuye4hOzgm4p77aZyByfz1+hmpAWXJZStSpff2iDn7aOB97Smoeg==","signatures":[{"sig":"MEUCIQCAQLE8nlg6KBeJLUW3MXbKUJhtUppHerpWLeljh56rxwIgGVGqS1rIowBACV0oSwWn0afgc3EqstFwd8tyyX1Zuco=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":320011,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexF3wCRA9TVsSAnZWagAAbOIQAI+FyIp4J+kH2lUH1de5\nlu/MNgBM3BGDrocB7Phaqz957hBFN2fvxE+DkYWs3LOz44iio415UfunUcEY\nxR+g1jE4D2CuBNAGPfL8sHVpnVJU2MBazP2k9vLoJgxTdZQa1VLVLYjvjp8x\nFy/X93p0wQsdqBram6bhJdSdiZd/smg0MP1905hPTkaFheLRyK9MNcTEyif7\nyUzZGG8tgn52jYS9vw+S4iHQ1mU47VKXK0kvVXusbTWGwzMiOQ3hIzDwm5cf\n7dQFkhSfqBstbupXsWLFFYDhGdBnNcczva786Nxd2QYIzP+7HMVEqdbkcSis\nJpP/a4YfClmAMV9afs/PTdvhuC2CwvaLgLb3VFzZiQTxyavHNIu6oKYEvhxU\niIN6qu/p+Wa+EWy3IuEHu4+3qW7lbgZb/oJQASH9GhFkCNr0rr5OUherF1UF\nJKcAGQC8pKCARn6l2Zr+rbvS54pvVNgFwW42JcKXmQYm/OGpYSPnUHka9rwp\nOw+E5JzV5ok7U1RppSwoIAOJKCAdieNm5vmxsChbHaf06nxhHzBNZMcaNAiJ\nTYbbhvDmh5B0IzYWeUJNslMW0oeN4jnBHdNFX2LxnQ/u42HNdXAOpnf/y3Pu\n8e/OtDl1BkO2KwL2Jr+m27k4qA/WB2+p5Hyxg8DoxG8f8IYQ6v3j1ajrM28H\n3tdA\r\n=juOj\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"67546600a23ee3c75cf32add4cd18d9f99d92bf2","scripts":{"test":"jest","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.9.3_1589927408049_0.7870837071900849","host":"s3://npm-registry-packages"}},"3.10.0":{"name":"@yaireo/tagify","version":"3.10.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.10.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"185f1710620c79a331ab30343aa021eaf37070a9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.10.0.tgz","fileCount":28,"integrity":"sha512-a5Hhld2MYkcmdQhdvC+mKAa5ESoUdSoVORnCQogqZP4KLixVXpx7qW5ErHYrp6fK9wryyIyNduEu3BuKK04DpQ==","signatures":[{"sig":"MEUCICNXP13T1BpWA4TJq87gogs1iD/+EmjD6ewhGZDLeOnCAiEAgAn6uyvxGo3OHQpFHmVvJIBqB62ZWDRUAOYBlRslXcY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":323921,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe0sQdCRA9TVsSAnZWagAAza4QAJiU2gdebatwd/sGJbE2\nq97l4sm7dhGYZm48JfxW7Z6Lxbr6bPlxvx+/w27Uq0N1Zd6EeJESPCvfK6he\nQCuMhi+2qHdEPTKgtF4RaZEU7bvzNZ3YUYAIdaDV4FNt9B2/9MQhA+1+e7in\nojjO1JO9dHISreFrZw+D6WfdJexcXsceh4BxCVCZB3cOyKpZ1aX/9SHSeg7n\nyfYnxPp648MWT5Gkou6VpXiyg9ZPVS1ZVSYBfV+GIx6cvC7bE2kbSManmc/2\nU0pW4zaoRzVctV54TeIZFA6Cb3aqyDtRnwvsujNggvREVRIavblzgIV++lln\n+7b07TQ29DzUq1YFoFTsYlfzSfEKaTlJCkXb7Wn0tmEy9U2GSSiXLwnsFDEu\nhXKw0pQR8jgNx2c0KeRfDbQgjgP27AXgMdqnA7tzDxi/hKWvZEATQvv5KtYV\n2n/2JMgAx1x4Y7M5KAEDvyBraPE/RrsexHaow0v2goL/KRzMfuoTselMzMwS\n0iTSbpffpooaPVYgM25k9eF6j6mg/SDyyvdqQoz42K1AJ8Gd0nluWgUhBB96\nziBx3WELRydJlq4YTyc7tnjGVswh801XYCCdAYonlfva1Wc74iKBZxcwDlBs\n4rsrAEfoOsjEcjBTmpUFblxAyyR8LNTajw18uKAwjgRdSoosN1nMdwYm88zG\n7wKT\r\n=oXGc\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"3c46d8534f6e6687d87a3fbceecac17a1a7d1537","scripts":{"test":"jest","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.10.0_1590871069066_0.8349439029550272","host":"s3://npm-registry-packages"}},"3.10.1":{"name":"@yaireo/tagify","version":"3.10.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.10.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"03fdf86d155f32b8fd676a51ce7f191785f962e0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.10.1.tgz","fileCount":28,"integrity":"sha512-0L5+wumXm5Tq6E98nfw3Gxmsju1ZD3fhiLkuteQQHP4cOJC9yjhTNBMay4ky8Gmk+DO+pc8rdueLHPHZoPlbbQ==","signatures":[{"sig":"MEUCIQDQc2H3A7R/SPiXTOdRl9S5YRlbRur3nveS7rHHa3GY6gIgSTvlmgYKlmbTSoEaeGlZay6GfuBG6Mk09aVqg3H9dTw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":323916,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe0sRgCRA9TVsSAnZWagAAbFcQAKH9UC5K5uKlBX3tIHtB\nEAeNgdo2dTs3ZrW0jReZnLSXPoaXETGuMGTCMbS4Hz0XQ0BrYmsC1R1tpGDf\nIU9HGG6McLOd1K7GfW02Unk7+VI5eY223Y4LL3PY0P/kcGWVlrLQoTdVhV5h\n/ecDxMd4JpwXeMunTyZcOMPDB9/9kBReXtxKcrhr/5VMntoLDaD5P6YPA7XR\nFgGGTUGPuXjdwE7bL3qlJd7LHPB5BRaJKwIWOU3UUcbjQl7iKzVf92ZUA0Zm\nGVOGRX0Sh8fbM9nCqTdbHayjHgD6QIVYq5pSeYYGIX1wbZcRhrqgF+w/J8B2\n+drothdVoA4FRQLmA3JnT/STvRejLfNt0ZdmckiqpXu4Ukf82/QrzPQosac1\nI7to9bSYI5NQgqQv8b6xMuVnzZMLAPVCJwQwn0I4ThXEO0j/l5ftE3LeJf40\nzF1gsu+O++BDjPS0ngQqgMl4iucYlA+gO4FAr5R8R2FFGTDecFc5PFPRiarI\nKWt9OJFHydiZTSf0RrYq1Rwu3qfq5pjnN+ZlHh3wb4XQzrh9oBgDNLb5DDPn\nmH5wujngpSBxcbATggOZZmP0qQIeQNPHjq6d+DHWM/eUVJZ6tGc1US1MAYPZ\nytzoRnPNdgrrp054D+Sau4OsiR/8KRiCOGoFcLWQu6WBsjHRG+JwH8AoiYcM\nb5h7\r\n=cx4u\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"9ce4913fec597e14117f97aab2a0ab73efe6c42a","scripts":{"test":"jest","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.10.1_1590871135964_0.10936953285174122","host":"s3://npm-registry-packages"}},"3.10.2":{"name":"@yaireo/tagify","version":"3.10.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.10.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"63c198fe6a2a4eb687cf4902a230ba700f685d1b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.10.2.tgz","fileCount":28,"integrity":"sha512-gIQinTUz/dVJ650FNFuSyCeYlxi+T/6RJobYAeMKNXZTmr2hrEPLs5LHFo05Kt/S3T81ru6ZtQw3vbROEHpzqA==","signatures":[{"sig":"MEQCICdxuVPj7mBZ/3O378zR3u2mDjvHLzsVL2wP5amCjW3HAiAlSeQFGznYNCRLXfpabQHdMO/+Ny/PUWTZghNlz0FY4A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":325797,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe1X9ECRA9TVsSAnZWagAAfpUP/RJ4houyqp/wrmv4d3ej\nOaAZBfjv2lqrW2S2IhcteefpEAr6uPHGXjNh28nSdhw6nCZV1ocBm9dxXjlV\nZARovg73crWzk9y9cfYrc4MVsgJhA+HIAxjKXww/hQn5XE5ZXco50d/Nhdbp\nl/nBe+PBh+bHu2PuGBl7pwX2nCbDRSvzE+MZmHFZW1u2q/JYuM3RG54mBtmG\nk+O/U12pOmUGjzA+qqKo6zh6kOc8A3B4gQDezrWTdzcVsc3IdbIx/42tFALh\n/vfOaPLT4Q7O0nPbqxfiTI2acLGI+6Up7JeSFNdLLWWjiCXoLZDVLXt/S74p\nmoIn73yG5+5KpWM9HUNv2vVVQEfLwvFqC8DbUdDONZtQHBHj+on2moBMDjWT\nEBrjbWQfb9Z+ImRtr2Yu7BBDhTQnt+25xxYjCV0sOTvcfMGCz4tCWUN4Rncx\nykBC3wc1IqhcZ8vZitF0wQIm0ODZ17c29SOgef6tnPd/7BskPxKbCSlEj19U\ntQhrr2dztP/XbbEk4M0Tp89KHeMD1oXR9MyKxXpJp80WbWyrooncJ6mz6znD\nI2CFrHQbE5kB3Ek20m8EMRjh9y6wMi91PkpSbWtnJ7zzP8vdt3p3mdCbMnk+\nH2xXnZDcw7KLXd8rRdxbdXXdwifJC4pXSBm/c/WQR9hi5ZOI26uX1r5z69rB\nqD+T\r\n=JmOb\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"28fbb8f9bf40512e896c906c876aef18cb5880d9","scripts":{"test":"jest","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.10.2_1591050051569_0.23889056336711811","host":"s3://npm-registry-packages"}},"3.11.0":{"name":"@yaireo/tagify","version":"3.11.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.11.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"c944341517a13c965d4470b944f7ed1839e0bb16","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.11.0.tgz","fileCount":28,"integrity":"sha512-df0gXS2N0BJtee+H+GR9wUBTbVDD0qpeIiNoWDypFITz11fZL5FfVcoPCsEi5eU2eAmIXTawyGWzDof4fqTbbQ==","signatures":[{"sig":"MEYCIQCTxbrb5cWPhlnsylkT1mFonYrC+rpHGGzqpiHVzGY7hgIhAOb8ozOjpbVqU6q6oOmPam+Gu2N9rLF7FGURgsCBBMrJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":328832,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe4UqqCRA9TVsSAnZWagAA9ScQAJ6anR0oKiSXaD7DTIPu\ngbzDvHAtgIujMQjKNaQDXEPC6k5QjqIONK4CXp0kic3x133EfKzjQNUSc6iG\nLmgF9Eby3Cw3LkdkfWqKmErRrCLSBHUkoqH1S6bUkPlgWDgvgOO/4BbPAYXs\nOk6Hqwpr36glgRxVHgKuMWMpsLnXErd7pIi4WTZtuhmtwPj3RhkdVnsF8aif\nBWVtA3ptrnZ4FBySwANPcl1T6hfqICu7QaRW4udrqJuSk7Wh5zFzSvDeKlGc\n4ICyEiRjSvLEPceBzlZVKblP1ojHLmMVVHwfONlvRPGEV/6SxnEfGesbg2W8\nXyv6SYyVqfTdlIIAyVvVuqW5Daed9Sp0dolSQby/Y0AYpk+yUFuyiiE3fx4y\nnNt/chaQcNLpFH9zxD8vgmypiG4f1pRIzRDL981RDnkmrCdyCy0mpa6JSR2Z\ntDPApfBnRE4flIDai1twQCtvuohmqqE4FF5CBTQuN/p6Kno8SogKh6wjShZP\nmbe0ZP7ChvYrFB+MiyZKOSp6yxftWC/NKAZQwyoWq2TjU9kfecq7LIeKxwB7\n7TyeSObpLp9h99J0in/l5mP+5WlfaeldttG6LR9lFrEGl0YDkCI51fmPvL1H\nGRDXbl1y/zQSopfpAXkLBIUk+proQJiWg9hLOkm36hBKZD8g5quMEkVQK64i\noxeU\r\n=Vp/3\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"dc4b3f3f211dc5f4d4ca53e72268633e6475a8b3","scripts":{"test":"jest","serve":"http-server -o -c-1","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.11.0_1591823017603_0.8605928527986222","host":"s3://npm-registry-packages"}},"3.11.1":{"name":"@yaireo/tagify","version":"3.11.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.11.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"eb5b70ec9fbe44e8d38a15bf194f150b0f3588d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.11.1.tgz","fileCount":28,"integrity":"sha512-NfUak7TJ3Co8YqQElcEiUmPpyWk2ut6G/Z5sy7rQLnCxziVEBS2WC/UfTsfq1XV/FCs4c9y9WNALnZ6nXUZzOA==","signatures":[{"sig":"MEQCIHqHPNtNDDb/M0nHQhrDNdcnzyd0raNLPLT6HBJt3LwtAiB2lQufVFeDTFTnsxqZpR6VbahRN4Lqpha/bl5z6+q4Vg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":329191,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe5UJ7CRA9TVsSAnZWagAA4kYP/1Myzq5szcuFU8WR3msv\n5dsw55F3FDDRukabfZSLtRGHVBUsBVVhKLLWnQVN8jkThSOJC+r+OCZ9B/Zh\nrj9BpwcE/a3dDFV88FUvPLwTkn49q6RBha7nftrM2XBy3py5NC1jDiSZohmR\nAK8z7fZSzdpU6c7aGDYSLvjxFQrKPKIeY8Cbu24ECote5SjVQS3Bi/3eRgQK\nhixmLjq7mWpkRKUqFjMPaXn8RJddqlxfq7g4ZBS02cTO19x/gTq+sD4jhhI9\nIl+M6j10zzkDC4gqzh0FxtvFmdCWCJcCtgxdi4i4RnXSIcehcB8q4ahVfQe9\nCL3DwbpH6cgNeCcK3HNVmuBfyzS3XYlCaLQV5t82BA99vfgZSTEGSRWVysqB\nutWqHsa0pQQvts+L2PFdCiNQ33Ad73M9QOKhAbZoIILKwhiPyOwmm+FIXuif\nIgX1UyCwb4fi1unvbXRtQ1s7GsqSNBIx6WoCSPSi2Ck5oFKctanrOjeugXDk\nSF0gP77KDXjX6rbhcUPm4Le812KUYwII7Ld+wRmw6bE4mid4v7Q6YNatN59B\nn01XEpaZzFmueOkMJpmGdMbwylgDo0MVvNrlPRX48Pmv3K/O46o8MfpuuqTN\nZhDsxXImqL0VSHWbBJduXb2t0sM48qEeXZ4F6Ua/r7iN3o2bHLZxU3zDgTm8\n3NHw\r\n=IJTE\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"c17db8860631ea9bf7626fc21b8752f4603dcb6e","scripts":{"test":"jest","serve":"http-server -o -c-1","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.11.1_1592083066873_0.40839204243652305","host":"s3://npm-registry-packages"}},"3.11.2":{"name":"@yaireo/tagify","version":"3.11.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.11.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"728bb7df41e2ac7621182f877e08283e3abc587d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.11.2.tgz","fileCount":28,"integrity":"sha512-Yi8Sx22Qjv+/loNnCxVj8vQ09hg5Wsq7/Pa7+y6CVSbN49zzNgKgZuTrtsydqwMSI8tvcnHANsWmatgNyhA7nw==","signatures":[{"sig":"MEUCIQDBH3pf+LkeLr6GNJprWAcjSpCW27mwtD4tqyD8q2NAXgIgQZ4REIWm5IjxWG/zvRWDBq8Odd0GLUtTpbmSHP78QDg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":329348,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe7oEoCRA9TVsSAnZWagAAhpQQAJYA3ttjZooqe6RgKYHT\nKdl98hv/lURMNqbqk/+wBsXBDbCQ3XaCbHUhzW06ZPoWTEwnsyqGQzVs2E5e\n1y2PH3zBeKXUvCGhCHVlw/H1yV7Ibdu4BLVXyzGMdb9KlgBzdBDzjjhfPBuV\nhvAA0FM+hikLoQjENiPAp4LZDzGIPCOS+fEDPpP3DrMzY/HsHZbjmlEcZx2N\nEvXqL1HWW7u8udSCqiRGT7qZqJLgstoqeDYC02S3FwOmj+nmVViwrbq1qg+0\n6nuLGsxzMP9Jpiq7p5yD6Dhoj6W4LOgNBwH8UUGUvf2oK/PIEg2R+o0LguyS\nZsyk6da44FN5zm9fGDZCjT1WfLJFAdR0cLGw4Ju5RhE5clexVmm6IGjY0SH9\nxwLrpQpEnjwgku3EhTjeCu6XI1F2j91NJqokKAF2aqE3ZWbLKSHRQfpusMBb\nRanimDEw3zK7d/XmwCnoVmxdOcXeS/XTeGOgf4kBOsyWX1Du+8xepIuwccce\nFpt88D7FD7m4l7vFri8U8ItWqFTebXY13PmZnGQHlhIz4uBngDjcUsZ+ut/7\nphfRMrNoH1AENzOn/caO2MsW3fE7m2XAT3g8ILTvPI038vd4lS+cxb13DLos\ntMkSDzsqBvTsYb5POo1se44D6x41xn3pR2GsA4MXH2gY1EjU1SNlpKggzXMX\n5T31\r\n=n7a+\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"7254952c97266b4f5b7b001292367cfa815879cd","scripts":{"test":"jest","serve":"http-server -o -c-1","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.11.2_1592688936025_0.7840234995610145","host":"s3://npm-registry-packages"}},"3.11.3":{"name":"@yaireo/tagify","version":"3.11.3","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.11.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"98ea1ffb3dfff85e532ec0fbdb7e753641c2b4b5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.11.3.tgz","fileCount":28,"integrity":"sha512-lTbjPNYYhF6Zq0hUbaIpeV6EWGDlSAFtwKFFLkhMNBQxTHdQ+dAEptKujMLugHXdDUAjJiQEVOxp4e0FW2rtYg==","signatures":[{"sig":"MEUCIQCQ8yRiSV4LyERv5HlPWFY+OLFzQgMzlqmEYEK8Jc3TcAIgdecKoJ1hiHd3EkdP6ShCQ+BXzdQNFCYNMHQ6pFwy6L4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":329595,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe77seCRA9TVsSAnZWagAAOucP/RqWnNUeLSogEVHUwMXn\n58lMaAWgRZujNapANSzoI4aNBOD6VYbljVrKgIpzU5DYyG9Y/DUmins9W8ms\npHH7agS2OkTngu/WnSx7VzsxcUvBHnYJymJJQsy83MnZicEMIPt9Mypk4/+G\ne6RWhbBqxDB+qfrSutJ6Hr4LmPpkORNGrsR2UYom36P9iCUZnSaxK4gzY8Tr\n7PRSuHojVv+Y1q2R9hvIJtaZ2Lw/Qcgcs6sYHfMXeo3IteLysnPXBOce1lTM\n7dHtaasyEJSMJg0drNjj4gLuEAmoz82f9KnF/ILmRX/Xk3daiseVj9LNIFMt\nNeWGNeSX3KeM9kbNUDWb26pgffpdLvevUT0Gjf4HfCWerpm/0vLj+23RVgKj\nO1wxXPAKCIqgU3GIGFcbNg+UuKFftMl0FpEFniKWwa6cHgoVKzMSYfscuFbo\nPN5E0vCMlbydq5L8o+WKVjAOidpmF1oXwlIaqpa9XMy/Ddj0+SmhnnO/kngD\nPyFQ50nFGU1UFYTovu1xBB4Nim+4U/amvpvbeJZrfA6kOPSxbdPnE5P7qoaS\nGpMbVG3QOisc20ylzqu0hlncY1nHx97U12VkDpTf34b76uNGqfK51ek3/2G/\n+1crQmmkpeSHh7dIYaOkmChiGcTf8RzjmSuZ2841zJSzPYW8onhil2Fm6NMQ\nx+pJ\r\n=0+iU\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"d62c541d00969dd8095db201c3180afce4126ba9","scripts":{"test":"jest","serve":"http-server -o -c-1","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.11.3_1592769309542_0.5675379221503727","host":"s3://npm-registry-packages"}},"3.12.0":{"name":"@yaireo/tagify","version":"3.12.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.12.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"5845cf35d32e2bc744d487d38ba2f4b4f422853e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.12.0.tgz","fileCount":29,"integrity":"sha512-/xBALCwzrCRNPIfpeXDLFFBdCZY7fYnTq/GBkXxYhl5o2yZAvsTc+/AVJk4Wd593H464MZx/NA3XZyKf4OYQYw==","signatures":[{"sig":"MEQCIAd5gtqTlPqWGpTRVJhrQQkuzEFHjQwaCo6eTYH2fXgiAiAQ5cG24Y6NEeXg4ylG9E1KglREQA+7+3gkuDLfQeJdhw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":333112,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe97M8CRA9TVsSAnZWagAAmnwP/3QyBJr7LBjkZrEFNdzg\nILgNUAi1YYhLDWT+nAtSyFAWlZz7D/ktpTSde50iGE/XLydDZEjABUN+tleX\nmxCwap7rwKpexFyj4mjA6SxbU9JKAuZLlhMNe0Jcvi1+wx7Mb7g0lVcw4KQy\nlauScXgZ9lHBytANv9d3i/g9tWDH71RStRTzKmIb/StRJ9cYtoKmP+32LcAz\nTnJkygB6ak7D1e3qZg61JMeuq0waARrOUs+AxKtaS5M4kIFKxO1TqwT6hpZT\n1jlIX0QkxPROcNXBhSHo4Ah+LRFkx1O+k4MDo6PzD6lZXw5SwVr0N1/7Asvs\nC5VlKRxOe9siCCfbw2/ZmSGl15q7/GShvvBFXITFZ8s0ZyL2eiAxsssu+SQq\nl2XvnnRnVrbMcFf6vCXdTWaWk1kWSzoDalqOqvt+TdzVs/58ODUV+3OR6YC2\nUKoZb8KTLYda6c20jgb+ocLW/reYdT4LDy2bkgmCNLAcO5Q+C9UOKhYYlIJx\ncvdHWGuCA45pqkomzdcXpxNf4bAGtLX9D3yTA+eGjCxs95U0GdvpCkRshCvG\nkmtY6xL16bK+NhhPSZVF+C5cAjUUnYSJ7bVE4FjMwTV5uD4S1V81l4PIQcfc\nVjQXLzbSOhPEgGDXHewam7XkzbIDQm63RAzTa+RWc1e5HMrs3Bi0GqDZkGRh\njyEi\r\n=q9ln\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"10cbb49aa9d216250db59cbaf7f48830e94b5ba7","scripts":{"test":"jest","serve":"http-server -o -c-1","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.12.0_1593291579588_0.42553321752248663","host":"s3://npm-registry-packages"}},"3.13.0":{"name":"@yaireo/tagify","version":"3.13.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.13.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"81a0fd863f54dda0a4064d949ff6f7e0c873c87a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.13.0.tgz","fileCount":30,"integrity":"sha512-3HQhUIQFDkmef04nAmQFqiLfHtRWEeNSkNf5uHBzEbThwgIULpl23PF2C9XuCXHAu6/F3pQlJqPH6n74YhyQHA==","signatures":[{"sig":"MEQCIBswyM2WlwuU9BPBdA88rVZkqj5Vb4TF5L4QfB2Mmab6AiAEJhQAOgJEZT4tnQ2ZQV8SUhfNvQ2EWP3IDNXEKJLR9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":335560,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe/azACRA9TVsSAnZWagAAeC4QAJ3IzWJesL7IVW7bp03X\n+TQy9pXzox8OC/03J91p7aGma0kt3PPS3T70f7dGUsiVY850U9L+JJcqO3EE\naKLQPE4sDDfH+lg5lMa1WQRvE+Dfhu93LmMDi3s+EdKLo6XMvKXIlAMCFEZo\ne++fpeEv7xE/Rl4XJsk5OfNGCyzXrwq+of4C2NXRQPiC8Re0UjB1036gxXGa\nFFbb8I1id8PrdyG2PBPnotGMEcp4WyhrGt8XIHb7MZN9J21/j9IIn5x7MUdl\n1g6/TKGn1rsN2YFgV1E4asZSzmOJ3w1YfzUqXZSXHmey/7lwbSP6oAME5hYE\n3cDj0Sbz/yuI9a5zNybOif1jHqqQiasXc8B01Iy8KZoBOv7+lt5GiE1bI9p9\n4RHAesXOSW+dWLCEiZzTJPzeQ+8oo77npD5IOl7ZbkWUXbt7yAwKqx8/LD/l\n/tlWqgjGUdHN9Jhq9MiZ/2vRHw5EoepPdLD59fdAK+K82MVnmQ0vQFir3D/8\ngnfQzwZpmhAv/Qu6YiwEMTCDx92y6VJZORxbm/xMjwUz/JxJ9VjwK3hbkE0S\nHVZau5FFK5xj9jwFtOlkC+ImpLG1O7lHUfCiMltFduiDhCHved4IVjSeDUMp\nMuqRXfSldwssVElrb38IeYpRIEf+URBuFF8veg2EBPc9qYner+kXrnCYAnfr\nwIi6\r\n=ujV6\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"1a39a071fc15d238441e9e9e7ed6feddbec43f70","scripts":{"test":"jest","serve":"http-server -o -c-1","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"*","react-dom":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.13.0_1593683135588_0.601403402394012","host":"s3://npm-registry-packages"}},"3.14.0":{"name":"@yaireo/tagify","version":"3.14.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.14.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"82cfc30a1bac850810ccbf72a218dd4746a51005","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.14.0.tgz","fileCount":30,"integrity":"sha512-1yPw/7Iq3/MFbLl438xgcyhfFenQKZf4FyYmBkRVO8DIY6S+H2LCCf2MKDjbY/6XEpqcj8R0hLcdV3hWYKH9PQ==","signatures":[{"sig":"MEQCICoYmTvijTBcpsufQRQzh4Lj3xKF79SGmkzBP+y8gvvpAiAwHZqthqxjzwgDqxaQDDqquTA1KQ70S1KPY+SDr1nW1A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":338377,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfAw/tCRA9TVsSAnZWagAAs+EQAKM/8DI+cRLIJ5TinFhO\nOIAC7OWGUCVcXZd+51uJbcorp84jYghSvQph5gdAR+cTvAtuMHs/UAc/YLnu\nzj1rJiiQGTanW444myg1MiDQY/kQyhnUxl+QmpTtH50Fbrk0RYurLzUIwgNS\nvUS3NaRbp6CneCY23mi7i87Gqm9WtN6TpYTUoc8g8XiI4DoJ+uki/zu4hsoS\nWsSmPKRA/MrE1vU7Dip89V8e1Fi1SVeOUIgLaFhoNURz3tQH/vZZlCqHQuzG\n56lSCylu2y8iVH2JWjALHWMRCo5+p9sM5Dc4fvpwpLNnOP6mC5VxX/wtk3Js\ngGjz0XAqdP2MYGDutNXaiZ0OpeYmDScfoJzrfEwf72MYkZuqcsKGJCad0Fg1\ntcybddrPBei4NJtgtY5awmBwMe7xkZnf/0kmjAA/NmPLFACZVjBiEbIthTF7\n1FdkwWtMKNFjmE7FsE371fwzHALvjG7zENCzObBqovwwrNtcnTKeHtISAH3I\nS255SU9yKN6TkB1z7OV93Q0wrP/PlZb3vXdQ3OqJaWFv20TAWrvds8Vd9tvl\nslE+dL/b3pKkXX4rTRNPYQ8Dk9m37rorK01XLDp+OadPVGFwsx5a2bNEl3Xs\nf7NC/5YMgh3cRp/gggxtZ5u1egV8nEs55eo/jVnRsq+5T55gBPP8p9ETKch3\noeBF\r\n=oA1I\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"9ab6c09d87b6ed9b0ab551d0255ec7b2ab0a9195","scripts":{"test":"jest","serve":"http-server -o -c-1","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"^16.8.0","react-dom":"^16.8.0","prop-types":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.14.0_1594036204921_0.18969800819286142","host":"s3://npm-registry-packages"}},"3.14.1":{"name":"@yaireo/tagify","version":"3.14.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.14.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"69e110bd76775fed45118da45c736fc4d2e6d723","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.14.1.tgz","fileCount":30,"integrity":"sha512-eAyppZoMYS5olUsgPccV58mBXEPGoKjYzj4PmVjpS2RNpsAtN9O9YjPj5CZciORg+mv1/lfitPP8u7/WeezV0A==","signatures":[{"sig":"MEYCIQCdz2YxxogvoZPHavnkTbgB4dxDX/BDgGl5tBher8RCNgIhANHXY/EC/ZLwNvPHSQbidtTtRjdKvpErsarcABElIRLB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":338347,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfAx5TCRA9TVsSAnZWagAAfqMP+wZGx5H5GfNRvBi9Vw3R\nYjIgYNi6ZFz0KmEDc6BZw/cRv5jbhhSt7BbkgYA6KbKSGPeS+BIPho9i/Ft1\nr7V9kkT0SfXh9kUgBe3VcvUEyorGnhGFMrv5+c2ukqcjsO5Gt/9pED6PWLxW\noIVth8Nv/9e45poiIfvKHAVCkqX473H0t8DWxzKM0KHfxsIfEDYOQmASXkfP\nQbb09KL7fN+BPhwsdZjej1Yfn8L42ibXGE+xibLqGXKD/Vm4r2tX7A0LQCqO\nLG3IthXSvjvVkbNnY1qFGQV58Z2XIJTNBAnzzpg3Q9uuW6sg5bE+UbhjKt23\nEUGJlFFKVvFPl3MjKeV2ijioXOMlWdqpgjz2lGmU8bGVHBIdh4sXLYv6DrTt\n571FVDFlscFl9zLmJ+iZraLml+MfwvXlQZUoOtL26nA1hIVjrcqiOukFUSPd\nPwuZDRA5DcrHymqRqnzkVQRU6gb6telV12/lNSsERBezKYokcyFZyVrLqcdu\nzxUF2Wb9JU53V5fA/nS1EmbARoAZHgwczN+mgnN2ETLvWa4LjLYlZLk1UIhF\nHZzNDWD+0iS4Wng0q0UqI09Wu5oS+ximFT7IztqZ08yYlb0i6kAXdroE5SKa\niqXuQV3G8dCRcAxlWup6DwTVMvi2+79gPZaBcqGCe0pzJfRtOqLlPLkWxjXt\nLK0k\r\n=vvaI\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"c865811ca89437328fe3cee7327e75cf580c2eb6","scripts":{"test":"jest","serve":"http-server -o -c-1","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"^16.8.0","react-dom":"^16.8.0","prop-types":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.14.1_1594039890957_0.9544380491871287","host":"s3://npm-registry-packages"}},"3.14.2":{"name":"@yaireo/tagify","version":"3.14.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.14.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"bd407fd4dd8435ba90c983626939f01356ab7d4e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.14.2.tgz","fileCount":30,"integrity":"sha512-suYqRmcLWH/kiWrnIfn+ptGCoISDxZ6UZdIgjKzzSbEMXBbHylxlc9IggH28QcRbqNw/f9dzN6Xkicf07OL6jg==","signatures":[{"sig":"MEQCID41lgVGctqv+G8Q5/2OXWjTr1x/ZabIkicHYlxXmEOxAiA+fm7dgGC0Tq0DUWCf+7HkoKCrx++47jjlkZ+5J8M79A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":338327,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfAx6VCRA9TVsSAnZWagAAW5cP/2z/9zp5U4ni669rFUF3\nBSQC4ClRpxzRw9esQ3Bk7XV52eOfpkbPy5FrITtwvj0DE/V4HGJIV7mcTUrl\nyosWdv20uglbXgpEBjCZDSCC0oUQu7xXsCav7K2pP9rNQAvwGQxktGAWFegK\n5G+wOpkqr9A/WJy6X0u+Ht6k+Sft7cCVXq8RBtIhcpk9BbjOX6sqFKrBibiA\nOfjVIvN8b1ycpIa8jpnprUq62xlTnSezT8ERIbkrl7Pf+EAgg6P3OFxWnNpX\nw0p0o4k1A0+hZcEhSzIsu5oBlUz30vBSQ+8+BYrT6uX9taPzrabhH02/gQqC\nLmIMll/81DswdtfZeECnjM5GrRuU93rvSpUE4CZjks31aR8U8aVOkE6aPWlD\nqsH1LZG23qWFl4eIjExMYfUufPjPmDq+kBzpZwsvRYbAYCzIUZZfEWnroQPu\nlwPYKBYAV+l9e0L0lumJpiEouYQl7KviPDfyYPkZHwIU1Ju2nQG0w4UWcDuH\nm84IZgiWy7NPVQAl2nNfBcTjAGHk8DHSG1Sc8MvagjJ8zSQhwBaT27NTeDU9\nJHwsdApHt0Xny5QF5t2pZ1cKgH4p41eiOx9Upkwu7ExPeexbmX6ILavK2pvP\ngn4qDwNVMn9U7ubbn47qvIWZfPZxtYKtPBZvQ/5lHUegwCAyB3IVRDt8J+aE\n5dYM\r\n=ql7l\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"617dbfc90f8fa9367457bfa59720bfcd27d92611","scripts":{"test":"jest","serve":"http-server -o -c-1","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"^16.8.0","react-dom":"^16.8.0","prop-types":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.14.2_1594039956682_0.9796752482359701","host":"s3://npm-registry-packages"}},"3.14.3":{"name":"@yaireo/tagify","version":"3.14.3","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.14.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"998466b0979414973ef5b49ff6e72f3c51fb71bb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.14.3.tgz","fileCount":30,"integrity":"sha512-PTbVXJ70syKWo4VrbTPc1SzlgUVKwOr53jp/RE1b5VpB2obyi79cvsykvzd8DX3Gsqn+x/bQw4voSw8RWG5Z4Q==","signatures":[{"sig":"MEUCIQDSOpcnKSAkpYZatultFh8SQ6qI11FxvNxRVxCkE2wx7QIgOnkzSOCdz0iR8eKlPWNiNaz0DLKlbnW93oP3AS97cng=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":338274,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfBb3ZCRA9TVsSAnZWagAAJkwP/2iALDuE2PMEsIKOZFkB\n/jEwZxTQTzwIwvcDX+jopoXM3brjiUo1chggxujcC9xTn/Hi4zqYiV0/R2dS\nnH349DsBYc0D+u14l7lAGvHdW91UVUjBw4hp7Q0+SP7CRfrOibL2ph0TPgOx\nvkZVG6xnu1dcuXIsyesQVk6neOPmaoxQu2SqWOWNn78X39B6Yae1qGxouYAa\nqxAEGLToC4wlaLx9r/vvPIFnWifGo1L56ytifjkrBMgrDFLBS/xDy8B2bQO9\nhSYPL8Em9np2kHiwTH/ot+upVwB4/ObVQccAHllLHVKVQsl7tesTkKYBRly1\neuFIZ4A0t3ROEUBVWj2rdglPJKsvmmcM+QglBti3Cn12Sy+PZyK4FHcXnV7c\nLnUizdenVygQKrG2+8Xcd6AwFl1ti6ZBDbpy0ibw3pDOe4wV5N1u+3DyR9CZ\nAjKagzwbXPXmJfSt0Dgu9EdFfhq5JOdlVANLSbupglV84iwpPQ8qGqXAW8Lc\nYD9tXLz+K8nI1X4BeXsyvGchmH8ELm5xSKtX8ltha54O8/mHqTeFk+/gpv2V\nHKHafDW4ycEQsKpbyeGBoq125O7UC81CB2mbcx/Mr6RzLxLOqOBMIBHED0qx\nYL6tV4cBXG1UEiFjsWelV/sTMUTLwcS2jlls9waVr3kpLf6Kf2lT0K+nknDA\nevpW\r\n=HWO0\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"c9653f932b1b6468c170554a12775cb2e77169cb","scripts":{"test":"jest","serve":"http-server -o -c-1","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"^16.8.0","react-dom":"^16.8.0","prop-types":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.14.3_1594211800923_0.1585914933154371","host":"s3://npm-registry-packages"}},"3.15.0":{"name":"@yaireo/tagify","version":"3.15.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.15.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"263b3e10e8913ac40963d1e41f57ae4e173be152","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.15.0.tgz","fileCount":30,"integrity":"sha512-IVCrYmgEmrOjcZu2yYtdnVXwj8SqHRHg+s+rIxXFIRPXC2w0+lc1KdiXMmy01/sk9gmDfoNhb6LRYisUFKBjBQ==","signatures":[{"sig":"MEUCIQCkH00ovium28gsS66q30fFk4gcn1BhKbDpzj+yNKVQBwIgT9BWWIkofos2i3EuRfZxjEOJgvmKwnF3TBGqVQenKrk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":346952,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfDEj3CRA9TVsSAnZWagAAS3IP/Aj4+a+QgT2yuH4kVGdx\napnIBH6OPUkMHhxBPvvamBCngIL38OVem8yBukHGrRNnukacq9dLv2fqZ59a\n+ogK8oR1eEtBJ9a3DFol0pkpqg8q2rsqcYPqDC6o19o/cR/0EwgBiYE4ZUTf\nvsefnf4qXOUx5IyX8mV3jTpZh1cgWDRHqCRKZvK+Tll5fKIDjgQ6TV0TkYfK\nQBQ9PGPpRrqFnRXdKwJkk3VS88Hr6nw+2I0V6rVjFr0rNFkiEFCZmKxYHyq4\nK0t0lVBwEjYb9hDkAy+HDUBqdFoldeq8YaaA3/Rq7LkDmAJ3/CMZUvg32w22\n8qSkXSr4ur17enaz9pHFZI7FTRCqV2CdySgzeqRwhE58mLtloXmAlg58t4Zh\nvMchvmBN92+oUQTDZGk1KAoIE6wTPcUIpBlCuXgdpToptcarkQ+gfqlSsfZv\nAggKC/wMTJAEJwgKQ3QqnPQ6ij0j1vw09Sflc07BUOuAoGZWJZji5mzbV8TW\nWMCKnaWu1tMPysIxVZqkLkCzSmqiNWgEuScd40SJfxSGTh4Oc7u0UndWmugH\nNPUs7t0seNq3R705yiRue7P1OAvzbjBad/xhzwIzmxns/0upDtqg+N58sS74\n1YX27W9tqE5bnKfjzpk7jLcspot6FO1a+CvwC/RCLzxYLsGh+abKke/Bqkvx\nBLLH\r\n=c4Iy\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"052e197cd5ffbe2852e81a96ea9946472059425a","scripts":{"test":"jest","serve":"http-server -o -c-1","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"^16.8.0","react-dom":"^16.8.0","prop-types":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.15.0_1594640630969_0.22299894601175052","host":"s3://npm-registry-packages"}},"3.15.1":{"name":"@yaireo/tagify","version":"3.15.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.15.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"0c8c11667ed327ea56cada2c4c03bb156431d839","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.15.1.tgz","fileCount":30,"integrity":"sha512-0WKI/xaWkrgnOAEFQkOxXHIeABIt7OfVhX8pf21APixR+GeBCYy7+X+RJ4DmQ8gNOqjxp5i8S7WhV0UuCrPpCQ==","signatures":[{"sig":"MEQCIAPdhdO/a3fOm0o3M5wbxMzyYHRF6TUZ8ESYufYW4LQzAiB9wcc5uj4OGKdVGg2XibiFjsqhftv32hovLMDyzMpm0Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":346970,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfDFFUCRA9TVsSAnZWagAAosoP+wfn+FkZDIsfPp9oP1nk\ns7ZLCd+C2ZZzLVBTO8NaaDZzAxquYbzofLVJXwqZmi8HXvxbV+xSyOJ6rAhV\n0oMtK1nwaGSI3VpsRlwUp72BAyiGA7vG7bzE4x8HpVsBtGrEZfjLj4hP0DFP\nwiSyFBNqRR5NOg5sqim8SDHDhin0bsVLMdjB9FVciCUtCASBIEh0/CJBX93W\nAwH657csNXtMZfi7dHfX28wcj1bph0BjEjUxihnqNPXQQwM5kADZiMmyxrTP\n7wKl4JX2ayWi7Rfi9zDzUiABVzehgw9WldyAlBKxlGKP6aB9LxG8ajLF3Kj7\nM594TejoV3xHy2wLGHZU+LO5EiEQOQp7RbqaA/bxeKVLqwsNsEoc/qM4I2KK\novpbUnCFfcAHIUcXguVrcQWINqhEP8JGXRy7epPF6pnPy1N+Eg3HNBr6bB+y\nxvEJoFUdxpSR7N4S7qz01tewWF8+rKZHIMzcwv8ikkDpOF7wA8vYo8iSATC7\nbffpTzmXW2EFVWn2mrEZlDAkvGtvJsVJIi8s3N2aGSb0YbrObRosjliUzTUw\nBhGEzWh/XirUw9j9HiLEpR+/I5u/x8CqjN6JSLTwWlei4WWVpEn0HKFar0wF\nigQgcF0D02QBowvFPvTqhCK1ybQ2KUn7OJoWNIszUYr4MjIdIFPZfsKKs6jB\nCAEx\r\n=7gk1\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"a2660feb5a4206f08eb23389c4093287dbad27a5","scripts":{"test":"jest","serve":"http-server -o -c-1","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"^16.8.0","react-dom":"^16.8.0","prop-types":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.15.1_1594642772030_0.6611991792640448","host":"s3://npm-registry-packages"}},"3.15.2":{"name":"@yaireo/tagify","version":"3.15.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.15.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"243513c895047a31337c6fd7bb07f8bd0db4be87","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.15.2.tgz","fileCount":30,"integrity":"sha512-gmleiplrTtY6hK2NnEeIo5Hn0SYMkOVwHHpuKhbnH136UPmTO2aBdoke24BaAEf5FFEsq/WKIAShMxU4eMlTuA==","signatures":[{"sig":"MEUCIQDdxv1YhHRiz/hJ4Ed0QN8ciLRQD4rNin/Y6zPnUQiKvQIgc9gxNBHquueJ/i2muJUHpxlysYR0rDEFgslbW6xWG/w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":344543,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfDa8fCRA9TVsSAnZWagAAp/UQAJziRy0KYiDfWxiiaelr\nvaVh3ArVF5ohDmsqdD+UpVlrmcgzDsc+dG3KeuF2wOdpAEoFLLpgGnwMbiAY\nlwTd4Z7L+EUOKjNSg25Zh8EEJgiQloL61EdL2YQ6juKXVbyF+rZUNP0Y1vSa\neXsEu/3ppvg/CDy2rsipd0bu5qbKOWIJPxDI+oC5gh1P6JAbxXJN6sOe3JDT\nw6T/G8rV01jrXFrYMCWJScOCWshxuXbeZkHa0rcNhmfrtZhBT5hHSJcAq4SI\nF7pK43mXEJ1U57oIMbFs3GD+Tghv2njP8OO68bTK2/knjAUMQ/+n4Jgj0loW\nkjLMPKfbuUZIhjUWOf8ZW+RVbPSUXkK97UScHHB3724e2IsgBFTW3+5Po+uG\nUDpDpKdaIblk5j3bOuihimMGVKhCL9BfawdmUbaGCw1FCHUN3Op0i3LSdz9O\n+M4arkPjplVQNX74om+uo4gysYfJfW/cdo0i9fo+jO2lJmejtXnGjz7GthwL\nqtODbg9VSf3CAOMoKzAtU+P8xvY1OirzsEOU362gc+IHvWdedoYsebqjhsvU\n0rL2eOZP4Om2+RiByEAXBpULIeXDuPMo8hvQol2x6av+5+I7du26+om0Dtff\nK2lJfNYRIMWTAcQ1ZCtdZHpI/BXKH/IlbWcyFlOApFSSfyrHHaWwnyDyLIqU\nN/wo\r\n=1zGk\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"1740b18a9bb1dafc32b2455f6ea89c2b92fd5517","scripts":{"test":"jest","serve":"http-server -o -c-1","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"^16.8.0","react-dom":"^16.8.0","prop-types":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.15.2_1594732317155_0.6747082925391625","host":"s3://npm-registry-packages"}},"3.15.3":{"name":"@yaireo/tagify","version":"3.15.3","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.15.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"0117378991aba7ebe98e273cfa4171d10e1b69ee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.15.3.tgz","fileCount":30,"integrity":"sha512-eN0GCqsFsaw2tz6mpZ+PdLwXJ5RVz6cOYtHroGCm+UHRt23cqnIqtafo5P4AlVGk56a912u4IokydLU3ahQHag==","signatures":[{"sig":"MEYCIQCpvqxiKBoOfsJQKtXmsEOttJ9FhLFf5ZEwog+IV1YbQQIhAOsRrWJXYzIlHXoGspRFHbPHp4Ozc919KFOYPUx2YSf7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":345200,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfDcVPCRA9TVsSAnZWagAADpgP/1epWhBFemQ4w5lJuIeI\nVXxDpx/aYGYP5sWhtGiElnVgfDZGlbsz4I0/Pfb+FhfUQ5AecE12OySgnr/9\nDN5IOlP3zhY224EOVenCiEXzSQAGAzsSn9yT/AjpriKyChbFMrn3bsWSsfty\nvbA60z/KdRiEXjs7rqTkcSScbDOVK3Tk3b047nJ9T0blldk7nvXgrIppkHrK\nB8gVzHysLnTdgGppP6bqCUaNMb0rdiSW3g/Qj81GlCOexewJfLJNr0mDObo+\nQ5i0T7tarx0lt6Q8PoGFX0FyfpMC1EztXDXguTVKFcuAFGPj/h/nk3aBrbPc\nlbwdHBepMERWCGG5F/v3w8bUxQwC61gQA/1H+VdXJLWRRpkAYDhVa7yf1g1k\n7BrzUepiCosbtld9URiQUIhHPBnkCfVIhLwlYcSDojOOTdJ/EC4YcBjDSUC2\nb7qX6AonVBPZZJJJdJJu808ZaX9yyuNuf/1RJ9ozpZwd7CHFbZg6NSYu7b38\nbrE1gEqtfcuTIqlaYl0cD67QFIZEMI5sJPWtHKlAhpg0uz5YoQBhsREdV1Re\nX7Bvu7M1XsOLqgxnithyrOD9ffqSJMSd/A10LPIBzr2lBhPdkwSGYXtUhq9m\nzrMMUpYSCFZc6ZAXLlYA7fBH3QxmRaAt9GfS9OUWPLZP8KQt4nfiZvfKWqcf\nUpfc\r\n=CQVP\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"e1a62d67627de626d79fd11e053ab5045611f35c","scripts":{"test":"jest","serve":"http-server -o -c-1","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"^16.8.0","react-dom":"^16.8.0","prop-types":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.15.3_1594737999201_0.7638676199369256","host":"s3://npm-registry-packages"}},"3.15.4":{"name":"@yaireo/tagify","version":"3.15.4","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.15.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"131da88ea7ceeb874e1c1c8bc4a404f9c6cbd54b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.15.4.tgz","fileCount":30,"integrity":"sha512-Ykd3d/E9zbpKHjT4oy7CGEn7gFzxleCMKXYJfAzSzkGlTC0S65v7gdT246zrkVfePn5uYrVfGg5nm3BnAXBiaQ==","signatures":[{"sig":"MEUCIB7vkj/5FE6wLYhHkU6LJy9Iz1V8kVlA2e1tU3AULKPAAiEAm3OrKIRpKy03ZAjM/QBuQqKzNoHL72tqrxKfyUi1PKA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":346244,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFBX2CRA9TVsSAnZWagAAHakP/3CBM7YiTPrJfRaKy/no\nXhR6Brf1TGbCl4pQ9lBysjN+rZtm57OVKIs0diD7JxQ7kS4PMh8RP98QXrIP\nm+EQ9UCTUA6DSVErLtX0EtssB+3pgxfZ7tYTt9ASlGL6uJUM1XqdFLcIi85/\ndAGBKWqmv5q711CjLn0/UcZ5OzG2xVwkpxF7cK0St1G5ziWvlPSiEEe3KXEL\nzf7jITVA3GWNzxnx/eMXDVMh59qRm+f+klL2JDykJdjhHOxpytWncvV5PD8d\nsGr4vwUMCMW4X2aFW+jlMzI1dR+aJJI+BbrNWB5OykKzdXVyPxfkXlYshcr3\n6JZZLDywD6nzsVfffRPlKvsaJdjJhPFlPLvlBMhlz7nSJk1tWuSi4fFz7SLF\nwzpyU/vRQ4s0a0RJetNFS1eiZ0UqJAcsoiYHC3EnyfpgHKNipReb4FTn6ZYj\nk76UMTNhwbk63xPTjT8kOMFW+w4KClux+7g7BZfNQq8QeIjmbjWOvylaD8/1\nNQGPiOr1dfHKOzcoMdZHMTCu6teurkOS9cLFloh4GctmSz3y5mGGPnnv/Oto\n/xLiOXQBvg2mMeKhPeWsYxKw8RKSPJeXESOAP9d5WVxbMWgmKFQuTYsIaa92\nuuLe03SzAN7p8yJ3gqNAPYfxdyvxvbmTBfbrvWv3IJnN3KstS+GCRuEWVobG\n8H2y\r\n=OfxB\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"9ae881669ba2440864fd83b86b6baefb38fdb8c7","scripts":{"test":"jest","serve":"http-server -o -c-1","start":""},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^3.9.1","jest":"^24.9.0","path":"^0.12.7","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","babel-core":"^6.26.3","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","rollup-stream":"^1.24.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","jest-puppeteer":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","vinyl-source-stream":"^2.0.0","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"react":"^16.8.0","react-dom":"^16.8.0","prop-types":"*"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.15.4_1595151861845_0.854198187608328","host":"s3://npm-registry-packages"}},"3.16.0":{"name":"@yaireo/tagify","version":"3.16.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.16.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"29eccf25a5e8e239e3556b660c63b6d6a8b38c29","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.16.0.tgz","fileCount":34,"integrity":"sha512-VxG9baMH5Be/14NCO/DiAK7E9F9mguTBnN28BO/Mu+Lm7Hlu+VV/epB9oO2CA1qTxwsAN98uE33AQMohcqMDzA==","signatures":[{"sig":"MEUCIQDrGpNTTWTk2NA2/uFSWljHEdAYFKN3HP+y1WatOEq3tQIgJLXTODnmmrcHAO3qr+YjFgB56Y9ZZq1dkPYTOKFByWk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":341427,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHIcrCRA9TVsSAnZWagAAGsoP/0mUeRCSEgiYzIaIZL5c\nNyMOTYykKQ9mclxdyKiSoX9PTEmDeoFeVc3oqbOv0moHfUZO0PqHAeox6+qx\nmmQEf62v5qIxmojISZD5pB7h2TZ+zIecC4u15MqprLWUJt98hiahY+3EGmrP\nWagqZvsB5pKj7tFAp/W1sZoJcsdjhOqRBQXASb7xlQ1tV0xkn6Svwn7Ysd3c\nChw2OPDjbSZGTCrECI8QFQ+cwq6fgoaBsslPOH6yC0z0Etybj+TbHFX3UuKe\no6psYq/1TfATTN4Kz5Lw+X7SD6pWvUOgN3LL5A4z+AreX7oZe13U5v8PjsAd\n2wj0qD13GO8r3lkw7zwhxyyAwwtRn/XIOEG+EgqgUzLF41PBw4yOOjIion0b\nJKyV/M5kgvaBmBUR8fy1SdVbPhK5FqOCng1uETuawEzeJVpGcGbWOy42JZAu\nzqFWz8gfjwLKb1nRZPPcyUNSAU/gLe26KEX+D+odaUe8FB/1z8D82+xum6rz\nDNH/7gkRZkmphDWbfUEURyNouGarvzHlZZnEcPM4PsUuC7F1FwaeIK2taJgd\nBIvCz/Ju9zKdcla3D7YjTatzNaDwj96owah1J/CMHJlsWu1JEAMOeX3Q9v4v\nIGLggEM4lVIFxMc2J5nf8rGUdWt1UvSqeN+MzNKy4nM4dlfwPusYIKjSXSer\n/UIq\r\n=54/c\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"b72344d132741151c8becc30e6f8ed2bc258a68a","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@3.9.1"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.16.0_1595705130799_0.5231471470653921","host":"s3://npm-registry-packages"}},"3.16.1":{"name":"@yaireo/tagify","version":"3.16.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.16.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"118e0d755dbe8962ef0812a77627f3975fc082d6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.16.1.tgz","fileCount":34,"integrity":"sha512-dw8gH9WK+h/YRU3Ot639ZnrxSNXjODCg50NEz6RI6lppOdPaLp0jm0Q/gwZFuM/oti9vX9mQi8D9o2i+5KHEvQ==","signatures":[{"sig":"MEQCIAojXn5fm6rqBZ7gm4PZLmbDP7yaa6UgVT6U+xniGeHaAiBajV/QhOjoQz9I1GMyAuUdf/Hp5gtzHzVC+GmTvFebpA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":340487,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHU5qCRA9TVsSAnZWagAAuKEQAJjDAPkN1uXw7iz5XZUM\nvIbXZQY7EosQasglc7NTKMilr42jlTyi6XCtypqlM8w65AlojF02cRTY3hsJ\nHO68kE/za0jRqF7SKQ/sdGSRMffb8+Al2P1gNss9wLxRXXNZSqMo5uCHapES\n9yyTHe87gtrreteNByJfI72S35c2L/X1/JLXwn/nV4MjmZTStqFmEUev8+yn\nw3G76juCILSR3/dhcrzPcUtkK3l9fo4i3Waer1RpxQszZjKkDqQnee0wSVa9\nXuSzg2xyk63f5JGcIkPbKNlB84tDJL3T6j81Nu0IXktXz5pwwmME4r27LdEk\nKL61FXQEDgt+pJmfsrp9a1n6i/8MdM6qcH5bRkVYsnKfjP6+NHOgr+vmj1d+\nIaX5ArKCE/JVMDDBxObiFo6z5NtKnr8s/mhO26sMXyNtceOYuHS9/3fxid8T\nkiQhaNFQGjnJMRc/4jTRmni79bt0BU8H+4v/p89t6xIAH89UXpE0ZBEy+SD8\nSB7y5/4jwZOuzG+uIAhtkKEcJWnK1bxIDWD+RM21igwUTEQjW8f5cUqhqAfp\nyZ8lfJtrfGfOk83jQ+ddE7Pimvi5knNP7ssFawu5e42cRmraStO0jdy2qj64\niSZvt8bN9dEPNYusaGzfXjlcHP7oEizPPhdCVvlMRIE2yitbgbGGwqJwXwSu\neQqa\r\n=w1Ys\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"0bfe97ab597e68fc2e5e0d75e3e26aad9b3a9a37","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@3.9.1"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.16.1_1595756138335_0.4000089520976735","host":"s3://npm-registry-packages"}},"3.16.2":{"name":"@yaireo/tagify","version":"3.16.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.16.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"dda15992438e1e295fc5493b25c693960bf33ac1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.16.2.tgz","fileCount":34,"integrity":"sha512-XQ0jMVDMY1eBdQ4XdSa5vKQkosJ6dVTxQCJzNaKegZrAxahvfCObd5NgX4meS4Da/j3uTFdxfjR1Z3WjWhDqfg==","signatures":[{"sig":"MEQCIEJd1e9DSYBJ+vl8UKYdpiKj45QrrTnFSio1hExVjnKYAiBliSHHnBUZM6jLvb9nr0N+6KaeCP9T09UHqFY76t9Htg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":341768,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHfViCRA9TVsSAnZWagAAgCkP+wbfYTNcbOZ1EZ12eLX/\n0Q0BSLdfeHj1ddr3CHXDS4y0CBtgEUgK4NO87+xtxanc1d6uTtdCR6TEhQzT\nL3DUtqEQhE+DBIV675Ozgwd0vf2F85tFwLTPLApKB4kA7PCz79Ic9Z+G/wZt\nfc8wXaYjbJgv6+L6VnH8JMa0612+llMls7cNnfAUkp4mpBeJNRYoKc3hcrg9\n6QTcXSQH3cfCI8pDkvF1Gj33jnDywI6zTdsdPNK4hYo4NFYUgOtdk4Jv48qz\nMXEagDhamntHAfCMPNSYBDMxnd5x6PsgnfOn8C05uzm7ydYUVZzrge01ULbA\n8Ja4hwoB3KhNfX+1OFJ53o1A9fTD8nqokpMWuA8Rl7sNM6rQhaolsMQA5hJY\nF9epSwlkmZ/2hGGTfrq984qs2jQrOOk7hWCsW2GSbF8LYVqXEob4G8IBt7/V\nQv4hzn8EuyLczAH6rnzDTllu95kg1b0bA3iMvkPiZjLEPT81HQNAhcvCDZnL\nSKCv6eQAPdL6NM8U1J7+32TQdUg+UNM6o9dl3v2ry3vXAhGD9V12mt4YBaAL\nNePRmO5ke8PhePgfA669QYr0Gq6NKkpk9Bn8C9lplJU00nxKecn01X/PrEYe\n7nuCMDWo9v1A1+i2VB0pjzzkDd6R5+3ebIQsWXe7+xqE8+zDvINqFuGvJiTk\ngtbR\r\n=nlIt\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"2cf263a7374e6c91d24bbb64971452ab787bb7d3","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@3.9.1"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.16.2_1595798881782_0.07291007494745338","host":"s3://npm-registry-packages"}},"3.16.3":{"name":"@yaireo/tagify","version":"3.16.3","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.16.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"234298b17fd000da7fd083a91b152d84969b422d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.16.3.tgz","fileCount":34,"integrity":"sha512-X55xxBC4YWBsQnnAEjWRKfzLFIJ5b2vZZfusBel5Si/k68aWu0bPpeNW86WKrKpYJLucTHSOHaZ46TmDkC9XpA==","signatures":[{"sig":"MEUCIQDhLHLKeCv97JGIlRqdUX5N2YB8PZ3T82OQNZuhiNdvvAIgXM2ZVqXPT5/limoh7KAFc67G/0HSmWPwbg9aF4FpufQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":341687,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfIHqjCRA9TVsSAnZWagAAhSkQAItg95khDMv7LA/+KIjo\nxrAFX6FbwrapNamkI2HK2Wxk/vKC5phtloB+HQOSHnUY0vQwn6a6AKF0UY22\nMCry9gnxVo8a2F9I0CEN9SXMJs89Z+UtKHkJtlur5r8CEphRMP7fWdFDM/d+\n+LyOmRbA+lxf3AdUTB+uIMzmTPe9HltGCCtbLsHvvIig3GfQUzj8ww92LqqF\nxLDLZds8E0f2sqIfXOoQw7iCcPO9d4VWwWykD8mANyfh/tdoqXK8omed3cV4\nMBDtXtHFvLhO3guR/zgor7lYcP1rTJ5Xu/mEAu01+qYVzd8wR3CgtfUj9a2+\nepq2hnsTxA0hRPZVdrrwTxtlG+xmeJSUwwhHkVHm9VEvqYPFmIiPUH64x48k\n+BRVAJSFlz3VqJDWfYgR8tiBwbNOiexje5r0yC2nU8RtN6ogi0g6sO6NkS2Y\n0FMlhdJkm1L6zw944Gkr8VgDz7yvbxTqWkhLWf+ZJaeZxlb8L82GgeZP3Sjk\nKtfXeuHMm3gYaTC02P6syvDPqgxsi7zT7ZTcWC8VcfDkyZYneWuUexao59h/\niJ7WDVrnhn6Mx97HtHsPyyyn7HEV5Dr1CQAApSYdBANgWt05Xpn6w8eu/oCG\nF64KuDeYvGBlphXbGgtNugUcp2mnPVeUUUynMqRWUrWx2GlS8FOkNjbQPcKc\noMJ5\r\n=lgMA\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"1d0d3841afb9325a13dc4477f5033c5a9f1d5512","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@3.9.1"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.16.3_1595964066535_0.026711423339076834","host":"s3://npm-registry-packages"}},"3.17.0":{"name":"@yaireo/tagify","version":"3.17.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.17.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"e64e81d8b4776bf36e155334131e2b10924c6bee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.17.0.tgz","fileCount":35,"integrity":"sha512-myegC9qzytDKnBx1+HPuq+PPbw+yHPrKNY1WTZ4AHajfpYgxIC4xOuKFWx5STRIx98lg2Js2+bKT07Q/K2dcwg==","signatures":[{"sig":"MEUCIHWTBzPSDBKOM5+JmIb8Whvzm8xZmlt3X21Vq09gvnhlAiEA8bp3OI+y87BHfgcwPmLIVOh4qEzyjLRHUnqaA+v3/sw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":352511,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfKrw+CRA9TVsSAnZWagAAjWkP/iI7kdoSgd80v298Ta/V\nI9bvdTFt4SxZi34UjEBpBjh72GHIxsA55YgoWb1Z7iBuh0V/mIWiWDCbbhqk\nc6f5Iavxo21CQrmqtwh8i8nQUR0G8S3PLsFJnKrCZmJAkzd/oNPVvZ80sVht\nM39jeCEDPsMCtuPV9veo0aF8A4uX6ilbCOL5Vjuv5Y6w6/CJZXXDolRzrDDT\neO8QnPio4cy3QJQSbd/tLLKZfqtX8fuauuoQ7d1MTgCPwhUcE6u+dqe8SOAb\npuVCmphLzFT5sUVYRqqSfGE+NYbXVU1nHEwzCmoS3NNpxdW4PwhJrwDczK/M\nsscKCWmn0IDcnhYne21i4ECjQSWwY8quUx7N2vhXj8fzFXiOVgH+JjQAkvar\nynOr6q3EE6ojsdx2ivyH0HEACgbmolABC7AkM/C/6FV5LB7iVRmQmWG5/Ft0\nm3/gtYyKDNBu54gtnh/eiAOrjq9dCYJDYf/1mv0U4Gkr39GM3WwHW3+NJTOZ\nQvIB5r3L5TRCJeOdFOZZbaDcTjO3UhcOpVoWTL9WVprfc882LdjL2LH4G22u\nfjp0tiVMegFXuB5D+VeqpkENuoQMwWCcZ2iOSRfadzabQke7WKEb6hU7Ovs4\np/i7jTpFxUQ7lf4EtaTviM5OP1+9n2sWn+yBk6QQ3IlmPZH/CxGFGBbafrQg\ncHo4\r\n=NNi7\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"28244f37c1acf9a49dab96dce9281ac99332284d","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@3.9.1"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.17.0_1596636222400_0.9371074472248024","host":"s3://npm-registry-packages"}},"3.17.1":{"name":"@yaireo/tagify","version":"3.17.1","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.17.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"19163cbcb64b81aecf075b8a4b5581b36339b190","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.17.1.tgz","fileCount":35,"integrity":"sha512-k9piiYU9yf50VywgeKvHlWjFym/MHetwfGR4HcHDSrFBD2aN6zbI5xkLqcDd2JN5xTLh9UckXFVt63S7bDvLjw==","signatures":[{"sig":"MEYCIQCEGak7/WD96De8pcLCumLr/yMSfkP3i0GGdJki7l1eagIhAOLcrMGyC1OrCPpFgVXFUL5436r3M16dIzEznHdeCg0m","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":352476,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfKtv/CRA9TVsSAnZWagAAP2QP+gPMtgXYtZK7Xc+ImAr+\n5uokJjmJRL9A0xIp5pol5fQCNksvsb5kGFnavHaM64v4cKE0UBRMMFiuE8PP\njCUO8RLPClPr8yyxMW5hKe9AJf9VJJRb3gueS1N+vE62cYdsJW9T3r6rnGjl\n/UytZjbkVmYdGs8DUUHbRMOH4fOD8vEn8IYppL3N6fplm5iXp/fPc4EB1AJV\nXpy0u/4cJ2qGKc4iwwKtDphpZu0JAunkxaopQNdfVKbwYMQD3al61gzbrGnh\n/702VBpU/xdKbn12mg2bCzRA2IhMVf73yDByd1QdALvaZPBNIBDl79t+4J5c\nO6sSDtepPOzLUFN1wcEvbv7xmhUA2378uRoutRelXkPdnmi9b3K2kHW7koEI\nkfv3sz1wCoBQBvCFHP/iCiEdIyV2ka9kyzqzsfET4Z2DOWgnkCC2XYDWOasV\nETeQtwy+mbnv16uWJ32cba8QWv6zyREMWY240Mu0Ufb//7/CjziRWaTwBQoN\nqixISI+jz2w31xL8dpoxQJEKHkLjOFjfKXlR61XCT/hK1QsrMhOCjqIgvcRR\npGunKflOkkFbyYhcnJmGPqPhdMtIN+yQMOWIYki8b7yFWc6I7UTxAuJvsbDl\ne6PUvNi8xz0UE0YjGs1EYv5XggFl64z7KfvTGNjysVgCXQo0vve8eMY/txTH\n0xH3\r\n=HoSV\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"bcdb1dc259a34e7219d15516ad9de407bf126419","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@3.9.1"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.17.1_1596644350812_0.8184399850222659","host":"s3://npm-registry-packages"}},"3.17.2":{"name":"@yaireo/tagify","version":"3.17.2","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.17.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"2a82aa3a56f2cbd16c6f5e112f11800c1c663a60","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.17.2.tgz","fileCount":43,"integrity":"sha512-E58S1CyRwQuywovGOFHmFq5uEibo4g3FbSVJ/wGW5aR812aUjWaMNV74joqO8vLpnmJsG/ijbbTf1HOjwn97Cw==","signatures":[{"sig":"MEYCIQCQGpS3/ghDfeYvzKHp8eczKGTf0U1C4yfFAQyYoP7DBwIhAMkpLI2Uh2DHllJrzbKUda+yUHWEkNMot1iR5F0psN4F","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":590601,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfLvu0CRA9TVsSAnZWagAAcXYP/jmfBGgRcWpTj3ewCE80\nUWTM8anWWrYm9z3BT1gzY7tsVYpPm0u1cqXAxphe3Qw4Afu54Tn7nY4HDe0u\nZdKYph1WJVwFp00PDKvU/mnWozHDVDkEoWkPMwI7sXpab/ei+NWlUew/++MN\nRhQIOAg0SlSbSRXLoOiNeccvmTvwpVdDZ81S+b8FUSgZSb5DosnkVNIQSz6q\nI+c82cwGkBVty/JowGm+gar8PgqV95hdweIvc5Y4li7DOrVSA0Zb4zvUwncC\nT/57IBBtvhyDyoHGSk2cTARPbsY4oE4q5A/zeDiIfAvg8nNYbvCNmKdk6978\nX6+BCHQKEYoznIUXfKE85XSVnnayTaxzGivWl7rbn/wJA5HT7aAn6i7x+QBu\nXS8Aw2Rw+6uuIJq96fyNnWTG+nixeEsQSigj5ELgTkblB7NDFjpccsNL3/u9\nm+oOpVn65Gd3ws0KuNAuhq/slwoAnQYnxxwSSVuGmKl0UvzJPtXJDbnVz0Da\nfEx3aWURI7B+SwP/jrbXnQhGQLniVO8V6DubIeq1gnwvUUSdlfayEQ3Tdr51\nyml6R/Cz+MvCo5Ijz96ohCIYMxr+tf5yrbWzbCqf0udZtuc+OGljmbOUb6/G\nClBQkQcbVHiFyzR/3uB/1ZssK47k+/1PTnbFTqAodlTHAfZaJ5gGhyjgLOzi\nl8gx\r\n=U2z2\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"fb73b3eaa24f686a4947bc2bbfcb83b0148765be","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@3.9.1"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.17.2_1596914611901_0.8833361642630857","host":"s3://npm-registry-packages"}},"3.17.3":{"name":"@yaireo/tagify","version":"3.17.3","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.17.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"c5a672f6b3b31eea1a7b3cec85569ae21241e4de","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.17.3.tgz","fileCount":42,"integrity":"sha512-buKYqbhKx/LZWYyxlosqx16Nz8GxlHmI62U4pUkbHb27AczqiizJ/wKPlc4qebM7qnO9weJpr13kZxXB8QBIBQ==","signatures":[{"sig":"MEYCIQCYODj1sHc+hhEDNNgkQrWAK0fHbIHJBfZGNopEBOH1nQIhAM22e4ioTUsxfCAC/cFA/heOIn5UFLVCfRqjh9MoNAHB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":509907,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfL7uDCRA9TVsSAnZWagAA058P/jW0ud7xkTb0XG8h1GZ/\nVMkmvlgGWWEroc4I2Fgpdtj/h5RjfuWcVUUg4qzU9r4ARzIFjOwppushnUGn\nKiu/hgnhy2NOI2blsxrkOQ+WoTqbwvx5KlJaAKOUzAGjK5yIUcehqoKSjHBk\nfeBpQ44PeoAmfzKif6iVmgSWu/fHF7L09FmZgKDI+CYqyzD7pnLG4aWMHuAR\njZIQt0mK+XiNtM8Sf0rtlznMIsk/2nJN6tqvzI4YFQzrjrhPserCTok0peu+\nhy5US2LtEQ35P5w9Hy0Pf/Dl7SD5eTW2vWDkbfu0WBmzf6QBjAivbRefUR45\nQ/UJg7uiUOichKjQrzcPfd8fJN9rz7AkkJJsoBieN9epACMLEkhISrxpZWfQ\nF8E6oXVcu/iFu0WehD0z6eYWRaB9M7oyjMPHVn62DUiZDtWmWgOpt0fQmAHr\nqU7Y1ReisGvPPBQCZYrOa1Ch8qZU4uwQOqftjC0EexcgF0l4ZRP3f1xII4//\n9F3AOBCuEBPgxpnLx5J/+NWAlSo06dx4aaECzeVj8rA3n0CEjqtv/2k2V0qQ\nw6ChzIL6yxX17pGM3qDbVnQG4ko4bCwuXv3FfPTg3lwftRGbRyM71AMJp5iT\nXSiMghQ0TG5MU2pt9LG8BgHApwqk4NrF71vHvYk6pKYBcObiVszLC4GuvGsL\n+Oxo\r\n=bHVS\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"0c00c4817c3e9c45d138171600da3aed78345c13","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@3.9.1"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.17.3_1596963714897_0.5965169873327538","host":"s3://npm-registry-packages"}},"3.17.4":{"name":"@yaireo/tagify","version":"3.17.4","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.17.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"b76c6cdaba90d61be566a739f8440c2f810f3a0c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.17.4.tgz","fileCount":35,"integrity":"sha512-ZWRznbHWmREyFZz+CGsl5sxlCMpYyauiOEgCnpxrWOUToPzEIYhfhrcjdcBmf1AjZnQQdRDEv4HCahuqZiN+XA==","signatures":[{"sig":"MEUCIGcd43h95MjVBdZllJtKQsJr0dMHzfuLo3oM0uDeY7jIAiEA5lBMbv/pFFU5WTzgKRqF55YNRh7mo122Ghta0LczqYQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":354345,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfL7vYCRA9TVsSAnZWagAA/v4P/3aCEZAeuy/zTEG18PXr\n0mHOTYBFpGH4vZq/5OsuT2who3lj/Cl4o2TN4zMXppZOe5vFT4NJXNxgkBIR\nXI1W0cT5V1FuoZK4nJdPjVdiMwCeCzXPCB/Ykg2N/VVIcteXco0pwtPj7Kga\nhbzO7vV5txZMqsZ6oNqoLGC9Y9JFT8WXmxGW6PSDXLGC8qx/e6r/zbx0BWt4\nHmlD8j5XeFgNzabIK2y2+wdEPqsl9LrnfbYD+UE+3MwNkGps3Cp3yGbKYnmD\n89njKh8Tai0i8aUe++oUR3lLtQ5u4KPIBKUrDH8EEKDoVnZjEfgYWBgTfxnc\n/cVp9WQeykC+Fe9rl92v2INyc/NKCt6HDJiFJh3m4khmjomaClipN5xDLfpW\nELLIrQDgIbL4lSyJ6vLgivZWPJRLVYv+5/pqdZ8ZGI/wc7j669ImGp82zX8h\nR4yg1IenjFF0kqjVqenJuTn2dRAfrFkPUDtBdq+Iw269AaMbV7MfsdmyVtxa\nVEqjH4UewLt+IsMeupLOb13TZg4/mT2p9KcMMfM/+d0Czdag4qQ3noPb1TX3\nQhAZi1bq6QOCx/ugCvPNxwc6Igc6WHQhKPXj5DuuEIAeVE5cq4FNI2Xjgf5l\n59X9BDw7mY2Ohx4pTb1v8o4Omiyaz72+xgAlVd4U83SK2chNslJMDs0sELBu\nqgAn\r\n=92Er\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"0abc0e58ee72f7da782fd916007be8f4893f278b","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@3.9.1"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.17.4_1596963799491_0.7217522851166644","host":"s3://npm-registry-packages"}},"3.17.6":{"name":"@yaireo/tagify","version":"3.17.6","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.17.6","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"df241339551adc9c53d83bc489905584a9df11f4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.17.6.tgz","fileCount":35,"integrity":"sha512-0P6LL4Rsi3XXnI411ScO9l2nz8a1bhJNjx24EJ6GYiT9mqTNFrs6GP07HcoIygyBc20UwL3z0wSKyhb3OrwmQw==","signatures":[{"sig":"MEYCIQD6rFqpXqXrjEc4g9R73R7B0WYMmNdBqt/auVrlSRKgBQIhAJQsKVlyqmX4VhN1CZyClJcKGuwC5c8+P8S5M57qLv7m","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":354233,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfMVYlCRA9TVsSAnZWagAAk6QP/jJO9f1D9YJRBY1l5TZ5\nGZbZpHipUfkde1EuM8IqEWB4GiBvpQ+CZo/ut+TOcKs4EAP3rV4iYGWLOEnT\n5oo2ww21LamuNB268a2XriQq1tO/IlNgqej3OUk2LNhvyDw22CqpNS9s8iTK\nAsCFx99+cju9w//R0eeF+9UWUAEqShLwzQIu3gHlmCyU6oNOWxvII3K3JSL9\npXfMvclrkDNvVHIAx+Wu1/6/4vvtdCsbTeEJQTCuCA1OfCgaYgHdcarM7wyW\nPhqd3EaAD8PIrn7+Go7giJbeYTjQAyXEVVA0phWBmaKNWW/ymzE9wZ8nyg6v\nLdfSv0DB2AyM+XW7MNKN55QJayTn4NfZRFfoF0u0aqGqa5xGPqNb9a3nySzj\nBb6yG5nuRVRIdObUSL+1lbGrXGuozazT5GMkNd9Yg7VnwOQCwOGxidWG2S2r\nGKybygsQDaILVVQ+QieHg1U9ZqIPLpkYPDX9lA753S4AVZBotuD9bCMDVoSV\nOvCwtFfeKbV9hxG0gD6wTGNSyU5Z3BUy5aho/cx1Vasere1XbXB/lnGy74NI\ncyeYIeA28gCozrVGLra3O4QDUWix7XnZ3HaA1FbbIOwYGYifw8NFoKwF+5SW\nkmV1lIWCID/2Q2SUMbGdSEyhdKHHmYnf6pio9WW4MnztsImoAth3CeKj3/y1\npzTQ\r\n=MoNe\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"5aff2d1d79489e2f5fdb07b2e71af5e6d7b7c63e","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@3.9.1"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.17.6_1597068837272_0.0821944316570391","host":"s3://npm-registry-packages"}},"3.17.7":{"name":"@yaireo/tagify","version":"3.17.7","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.17.7","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"6bd0c674464ff3af94858c47c35f5e5f8553a02f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.17.7.tgz","fileCount":35,"integrity":"sha512-DF9RxT3CGt8BVCjQUpoQMtF27Cin1TuNYCq3Pl1d5OLAtSb8PnxmFn5b0ZshXMDB0D9sQC38oxMGsh8bI6NRnw==","signatures":[{"sig":"MEQCICxXmWTz/jWz2y2ZONNHzTPnTljWPcgzrfhZ3TftlNJHAiB9mg7pQ1H+nx5PgJ0wzVXD9u3u4DkWrqp3sYFTELJvVQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":354490,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfMaBOCRA9TVsSAnZWagAAknMP/0mC/hKXKH1+CEX78iTB\njpY+7ATerS76gVCuBjvIlQAcuEwC13NCN0LqKuJLWfAT0zEjJPTa0jeXAaMJ\nlUnIPRYTJhQUwusobsid/rcIIZw0r/qHuwH1dD4ksPUQEw7KEqpvMFxfh/mK\naIDuMbz16DYsRJ41vE9V9i9Pu5UILCeeKWE0CedMB/NuJ9Zc880L+M6CNQ9l\nRf2Hs1Nn90EukAFY2Amk0ZSdH5LFEkXjAbZBtMhlP8uk4w9rO5gsMdDCAdP7\nqHSHT7RiJ3njAYM/IaQS6e9hzgg99sOMytZLpFp9zqaptmGIIJ21zq7+/UX/\nqlfUX0XRo+oqDK+W18uuk6y2BMPjUUoo/gKheFreK75XrMptDqDIn3tJhuxy\ngmk95p5swxNtv9cxiGiSpsHz2uFaxuNRGxSYBq0UWLlBaTXLtX42e05aDlE2\nNzerpB247ZFQN8R+Je1HBKmqpdkHIJEPmXPv3cO6tDMT3mzX/e6XvycYOVCB\nUWYPVCfQJoYCRYutJEbMV68qYFm1jXEE8pDQurY2s0wCztQOSJ/pcAa4wENM\nMx7buXOSjHzF5YQXVQRmComULrOH3iqEtgmFTPLT1Frym6ogYrt8mvSgfo13\nnGJhDyB+w3SiqdUpMKpR+6KOVtQeJKrr00aBxFi2DC3XcgTHKPBxaQjwlkyk\n7QJN\r\n=wUzL\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"f254c289b41af929a3dd87541f66911d9cfd1298","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@3.9.1"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.17.7_1597087822263_0.6929115198967135","host":"s3://npm-registry-packages"}},"3.17.8":{"name":"@yaireo/tagify","version":"3.17.8","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.17.8","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"14bb3215e3cb1f590a9f510fce6d5a3266ac7098","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.17.8.tgz","fileCount":35,"integrity":"sha512-5na9es8WiiNKD3j9+PuJJuscyqEiP0jA/bYGdHW33gBrFw5lkOxjRPKfrlFXDiK1biTvqug50T7XzC42BNCDDw==","signatures":[{"sig":"MEYCIQCgPM4Hgp8YgwAb0t0Z4Ps7WCRsJMESafmcCjbviKW+IgIhAKv0sLv/5uBuxeIODx3xtxCvR+EJKc2k0oKL/G37Y/fy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":354899,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfQT/nCRA9TVsSAnZWagAANPEP/RE4djEqMawlnbnuDEcX\nICNSKcW9/kJGTXV+sMSz8ivDsk5L6Ea7SZgHs3HZ7WhqUk6DkiSpBq8JaaZf\nXzoGFL3W6w8YNDbCfxFj7AArFPtXR+eZEhjSHTDH0VpCkxq5j6ZV7BCslOtC\n75pRh8u6LMJlRC861R8bKCJuk9D0zseRBnOtaNJBUqoMPZ8+JPSBt9z46lVF\nw80ZKfj4UEi5K1Rg6t+BqMDO8XBWFYXELvrO+JgEvtWPKCcr0Cojh/CCfWut\nZofjcG2yW3mmTeC+N439mXuyWePAB7Ry2PuIkSm0a8vC/LEWi+tiEg/1y9Fc\nTliHgjAo6jadFxC6wK3z2Gac9nOIUo9UMA8Mgz/0DfNo69y/sSc9W675ngCy\nVooX7E/0BEBO8BPjQ90PTT6ErA8ZorJRwoTk3RDL1viQrKfTkNRqkTW4GHEg\n28VxrGRbHovBVb3ZUUDjJSSUumsbrs3XqcSOQQ6zl1S1AOnHdJ4zdezmLz6q\n+/93Gx5B+DoAJkFrsTPloWorU8akgk5x67v72Eo5Iok8NK0CMkpcbRWOhCUI\nJ7nyrxVtHurJrSKQoVlE6pg48qj3Pcm3pXfFOsrkBVMwUkebgdBtrFp7MjJj\nDHbgzELHJRmOPxINI0E51SbS2tfZaUQNBXLr9gjQS8m+u3w816Na1auk5Yf8\n8DNo\r\n=3aI5\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"242910a6b67ff441207d58ffc593cd0f612443ef","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.17.8_1598111718563_0.09049975125525922","host":"s3://npm-registry-packages"}},"3.17.9":{"name":"@yaireo/tagify","version":"3.17.9","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.17.9","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"2096279cae783d02ea1dfef997c9b73cb0af6e37","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.17.9.tgz","fileCount":35,"integrity":"sha512-zCItBTDCxsnQMRsEVpoakDFnfdRFROFixUoOICRqgFTYpRtE8ixiVNTvXIM00un5LlREaj3uuFDc6HJpvUHskg==","signatures":[{"sig":"MEUCIQCf4T6hooS8N/lQPM1+gC2nqa/mRnUWSrOvKtCjFGRBEgIgdvoVY+9GQO4fsLS+CNJmQttOi7zhr2n+XwrgOVOq0F0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":355307,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfSAUBCRA9TVsSAnZWagAAAZoQAJoDLe8b8+d3PfXyv9nC\nNClKJF271muWocBAQWU96TyMYpLzIxlu1R6N969Fzn0IqtkWMNXc9YvJ99ej\nJ6KFH/ge0CnQWC/jD58LTyB5b0YJ+Bb+VFkzVZ4gM9+/7XhRlTf9GgDUbcCE\nmU/SklxG3ioWV+9pWzNhL2v6a+fp3pIazvguXvyJ6EvdQgPfk0i61f+AgZLL\nhrHVOCqE9NNOG80v30mmb3MtMb7zJENi4MxdFg0GnboslbR6DQSYhLxBiXvD\nR/qiDIRk5weJisxe+Nz3gHCkyidHGHu/ZK/e4cL44C1zIT7hEt4+iJLJSYg0\n1MVu0/G8giTVkTMwXMcKJX3tblBqir18na+2QEDOhiysrm2/DTbFfZ19aacJ\ne2S2dcjkAjutwUZO3oX9ngWE/1FcHWZ6FOn0QsYx9JbDAseH9d8pQpvmZHMp\n3exlISTxTUIS3duRoOHjmdHRBPdiyRGLlb7hufu1alA1FYOrpbclMxd4X0wX\nBNmVV2p95QhoI1fZIKV4avxTlhgK29ksbmiY2u6x7q/hV7au+yl0Ife4BDtD\nay6hfjU+oL4KfHV1LV15DLhoLRKi9ouqLMNxotvMMov3Bgp3/WqS2Pwui+S2\n08bXLzBerDDuEEB45J99dIc3SAlQ678h1MC1QqVmmEUPQLSGKkunTEPe2mrN\n2bGi\r\n=vcfr\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"58ae98b2cb0a1a80825e2a574891eb57a778091b","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.17.9_1598555392604_0.5130333696120637","host":"s3://npm-registry-packages"}},"3.17.10":{"name":"@yaireo/tagify","version":"3.17.10","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.17.10","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"89f4fa6947fbbea8a1785a720d98e47b68040d85","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.17.10.tgz","fileCount":35,"integrity":"sha512-uZMwekkks6+W71FD/zKiECgh9yQYGwDmX2YI4q8zWCNdeNEy4nKqBIsyq3EuftU9Fa9AzgAiQb4Y78eIE+sdwA==","signatures":[{"sig":"MEUCIQC+bqlgOdA+4iPDDpoCkJhHTN85Bfe2LPh7T37jEQb+dwIgO+9uB5/gSnSqVx4KHz5d91b3PBeHvZPLwc+EKYsFnYI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":355418,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfSW6ZCRA9TVsSAnZWagAAVhwP/iuzs24rYWWvsuckbTkQ\nvNXdshaIZmCHfX6pya9j6Du0vICFa+KiPMSva0K06PE1TE14qIxKTyTLKK/I\nB95oUS85CfgG2W8/LlmtZrVLbtzWZzd59MB9zBFeD25CJ3rVr3gwDsAhNVQz\n1z+/MMeUhQ5YlCnUWp05SM22FVT7wmALNDLEqNwQXIyOpYyuMo+dgub0HMmk\ny5AIv/a2yI6HyJIMSkVQGb2kTxtZ/4SOW+SlhiP4LfCM4WNJifvmGtw5T6ji\nmXjx4gr3LwFxggvl6sz4LvHHMzdMlP9RJ//cQiTs4ssqplm1nJdOHcfx5WNW\nNk58nofRX3LlYWFTsFNpWJWcc099TmZ7V/1Dl6TqkuJZtOQBlMtuSS+CiHGK\nrfZhxg2+0AXjxPp8AjxzPeQ3NVaQUX2buTnhp9rU+r5F3qoBnBbFiI++fXrD\nldV3xL/eR4foyljqwRWazCnA8x8wTT9reQSFxizD4BDzfKSdPV6NkBqVOUJn\nfrd7kRsvDdSD6V/EMKfMYKsepSnbioOz7aAheOi3tTBhuUyd250ZReT5rY9o\nfvMAwzpn+4ffUi6FyKQEATEXyfWT+b9EcvZ1djFCLXBk99GDVmYayKokZ1RL\ngmjGXvxbh9D3pQzLBp2hNLi3QPScGOTc0kUhWO92CI0eBOIxSzHd2ftJRp8I\nknnt\r\n=Beqt\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"c1516424d06e111a33d4514b90047bd2df9f0a85","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.17.10_1598647960338_0.744650916693202","host":"s3://npm-registry-packages"}},"3.18.0":{"name":"@yaireo/tagify","version":"3.18.0","author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.18.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"34ba59e27648be840545d0431b584b9658a4a877","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.18.0.tgz","fileCount":34,"integrity":"sha512-SNqXWfngUYSu5rk9wmE4O2rjCNEpPIdMx2MvUB9rWOdSY+/RlH7lDsFob6OqpsVjMgGqdLdDnKEJaKyna882Ng==","signatures":[{"sig":"MEUCIQCUYnFCvWG0eRjZTd6OsjxW3qR1Ge9NrSwOaUjnVlY/dAIgb248uZxt8MS4CjINVDRGZOQaiQ+8B+kGBkgA9y1dd4I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":348076,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfU/CcCRA9TVsSAnZWagAA/RkP/jK4rtwI3Aw7lAECZj35\nwHmhOMqPiOdGUpo2S4/CQn/cKeRRIkBStW8dyywxTobhRyMcZQayXH4faMmq\ng+f0kx1wdxp8Nl+Ymvw6nh5i5x8GR4w96ERP0VztqSz/oGueVqTbVOWeoH6w\ndgHvxnvZMeTIGiB9bO4wsRWVAsbvJNnLYYHaDbNda53wwkcyJvV1vsA6HEXq\n+x39vV/PyIfavneOHpmuJQAE2slHCL1p6cuYErMi97tytpm9qndJPOYDDE28\nAakxhZaaeUDrZL6WfrJ1Tz6fNckdL1JIg1sGZHzoN019PQnqsb4QONBkHiog\nvk0lRHi+6rGF9lWZVnKvn1iHfPtmVkGtSbf+43BvbQTB24l7ZjNlZ2sKddLP\n2sh7M0gDe7jlVkwpwE+mAlBw7tAgvviooIICjL63NzObK5FSmnJwBrjtYp/h\nDPj5wx7gKwI3fbj72AxvyjQ8bwxlffF22AxGFqgpeNZX0EhYCeUBG+bNv+DQ\nSeIbZGS/Vbdymre+4HGGizyyZryQeOS616cGkM4b9FTLgkVYJDBv41cRa2R0\nNN9oy9vs+xPU/KitEUuMfK/1jpv3exr9mkjw99MBryJ0Kn/04+4deaARG+/p\ncjPJT70tANZxF0NZmTpN/S57BRmRfynuMndwvc9IVCufQ7ZWFHd/a8BX7+bJ\ndHqF\r\n=NcPV\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"20fcc9d35059be10e484d7be61deafe952dc0c4f","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.18.0_1599336604050_0.6466865523891066","host":"s3://npm-registry-packages"}},"3.18.1":{"name":"@yaireo/tagify","version":"3.18.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.18.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"6906eb9a44b7a573afc82b0c56fa2ec792b43e18","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.18.1.tgz","fileCount":34,"integrity":"sha512-pCyYMmbiXv+1+prdNjBfHsmx+OHj3nF5ysUZnBKpIVQfbnVGr4BWgx9GDTwfueTCjVBMwQ1l2URqjJnDrfB7EQ==","signatures":[{"sig":"MEUCIA56R668USd9aCY1uXibkNkSyzyAI7V4avFkux0cRYIqAiEAkUE0QBZdKabJdvO1vWEOBLN5yIbw8fSLP/eDkpCCmVc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":348224,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfXRxzCRA9TVsSAnZWagAAP3EP/3OK4MWjbojvXTW5Jw1/\nrDNw4AFfYlWL92fcHYQd62HP9lEMng8IhvMhCwreORPu08o3aYkCDOi7lJrE\ny2jYyhy/U4jfkkOVs8v/Awt5D4XDcweRvY72XpglkIbRLhHsL5k+Eq1O8rVG\nN6IDQ+ucPhB0NsmYG9RPaF5GUZQmvH5TYhzqQQlQYCn0JEmBstrgkUP3tUn+\nOAR4GWFI1At53d6GTtgwQEfBePcJIbCdxYwXGoaQP10o6J7QM5sNr1jwZ3gw\nfJ1GaB6fG3uHopW4TkKYEgjWpgnWRkFy1J+tH8LWzh5hmErTn01tz502qzEQ\nB407/5M+Rc2bQSL/7qAThpBzvGB/id9bdkjPSf0w6V9xI7cux4/CsEZIQ5pp\nITxU3LXYTKgjqcRd7vygU6yGAbB0OQAQya8J3JAj3NzKAPKCIKIjeDHiscE1\no3OjS5T8MpioNseKL/5F7NE+d8ilx2QZhJJz/F1zJeGMCN6vvgVGTPHnHUYd\n8AGfS2qDFVR7HCkgu7e7V3q6PPgqfFr6nmUYdOi0yT6YYCidRyajk6NBPJmj\nLJTBLIBn0oKj0SrCHJ4P2+jXykUYScTAFMGIkLMnyr7d0Wc69+n8BEoHd4X4\neR599fpvxJu7EfCzfNPoL5OQew2EGipvMXHeMrdmRPvRE3U8u1lEqD7Z0aQC\nEH3r\r\n=l4i3\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"ac61518972c0662830adf3e5def97c830b77ce08","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.18.1_1599937650536_0.8526193321648725","host":"s3://npm-registry-packages"}},"3.19.0":{"name":"@yaireo/tagify","version":"3.19.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.19.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"3880518c7b2d8f14bc8a3386bcea7947918f45fe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.19.0.tgz","fileCount":34,"integrity":"sha512-CcZPNAuDXz0iW2lb2ft2Jh94Z0KzSYKwrCTGv6UK9Obl7iaM//xM2bCuo+fa6t12nULLLSlHwGTjE+R7EMcGsA==","signatures":[{"sig":"MEQCIHgmglkoIB3WfQ4MF5ghiFRoceBDELEC6rkVT0uZ+PlWAiBPaMqdFiFviIak2mYHo1SvSVtDvZDFbkh0eDGufvZaBA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":348325,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfaH8VCRA9TVsSAnZWagAAwBUP/1pkDmK1xTEhjf9mA3Yo\nBHWaZ9JpDUNbj4ykp/0Ex5mxtCiqOjzbz1RwpN5HkHQB8YapVMtSWE6YU7bX\n8EmhV/eYm/cP56QKC82KCiShWBi9VvsFGLJqGqdSyf2cXF95AUhSNuYfuVa7\nkT9s5EZdnSc9zhrxtXkKx9RNOLI4u9vnZlsKiFdJPCVhCMK6C3YG43va1tIS\nDAz22+aeGIPpic1Ph7zts6irGzF3coK3c9JgcrK1o3WFgkzR4WwumFthd1i+\nGg7oV4HnEDf284Kd9fUCdYiIFGnIF+2idTOaqZT5xVRZ3D25hQDk/BWNKZog\n3tzH4VPLm/p5SJFvXumlXyosbDpJrzsAhAJG1rf8ruwzNsyrq5gUG+U3DAIY\ngmclPJd67KgJohrdxhftFStyJW9d4EebYQT/zDJjXWhtbd0nwqkIZfi+RgMi\nawzi59mfuB8yCDBz8+NrZRDbUSd7nwE/ayrBuOatpSSRn5b/aBi+LOy2qX8c\nmPKjGp4QtJBlSCFj4i+hNfxfsTvIsE8WXMnkvc2+Un7NGK36FMt7+sXddQdb\nX+WrnYbbxgIJEHq8tYVtNwCdm9v+ohgLeB4IfzLBkZBzkZuTr3CqVWzDklzy\nZIspktdvMVLUMdnMl2gv/GEADlXoUQjgxbP7IkYiMtgH/2VzPwdXBmK3vK6H\nJiDW\r\n=lHin\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"bcf4455a83c339736075f6f8278aede05413c6f0","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.14.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.16.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.19.0_1600683797091_0.7209091458480394","host":"s3://npm-registry-packages"}},"3.19.1":{"name":"@yaireo/tagify","version":"3.19.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.19.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"6408c5d5214341ce04dbed23a20e92ce2721e26c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.19.1.tgz","fileCount":34,"integrity":"sha512-CpCIzrogsguNJboXSpXXE5nydWJKAiUGYV9Dp2/ec1xcvI8BonPOajWKBEPUkSf6adSD3VJj3JeZ+QA3E9p5cw==","signatures":[{"sig":"MEQCIBk7OE8fPQ1Mdmkrj5ujdKYWPCi5L6BdiReuH8BmYPwLAiAvCVgsvYxh/AyRQ1mCB348lx78yDEN6kNIJu1wLTt2/A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":350272,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfblaaCRA9TVsSAnZWagAAsEkQAJmLN5PW0/D84E7/00xO\njhcrsMDQgOFNlHeT1mjczecHUiAi67ZkeAzEODq0+bJqDubeqjC0Bs7r52D0\nvx/qq06gsPndySpGBe3m8VjbYvMgDKQpFpaXtY+U2Rtcgs5slXITVaHigabY\nGL5Xt7c0T00T8FCv3Hy/QLMZ0if7F0SYI4pLtHzp8RoJDMlEnIZ+9tPwJkSm\nqnELSjnhS1as0F5vO7hZMUMY3GRfh9ZjEb/UuKu7blYtbO6zw7wAY/3NoJNV\nA7Z0PDK0Sa8+81wLgmFpCRvJXUG9FpvpGNBLuLOEaN37grkO24JkTEZOfrXC\nl5Bgi28XwLRKn9fNqDft8t9knyV1VW4ZYEvvtjAxOvxfu0ejp06pbHpqN6r0\nNjh54FNuApTYQ3Od4+sYOQNTDsPHfYcdjSUgrdIuz7gCG6shtH9KORBbOJxW\nLhSvSz4zQJgdxfOJnixKY49TDk3vxDejvpkXRDvadQvXo9KlZM7KY5+Qnofm\n23JXA74wSOKq5HFt/MtPckPJOaUWf0D6ALIUx1SkXJCw7Wz8Bt4lUmvfgC7X\nbagEsMO6xCktF2c8aKTvqU1PjAxkZR1hDybxKWRRaYKrpsL76JMN6q6eqeP2\nSRyYQE9imOtVpmAppfVfs+tmGmpcU7ME1VpNIa+MmN1TfsefUFxFFRpa9B0Z\nzUap\r\n=Upg0\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"1172bfd6b8c7f56827bbba7ed541cfaf679cba25","scripts":{"test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.14.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.16.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.19.1_1601066649822_0.6012837164759142","host":"s3://npm-registry-packages"}},"3.19.2":{"name":"@yaireo/tagify","version":"3.19.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.19.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"632e262b03c0ccf10f64e7b19ff0102cfbf24003","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.19.2.tgz","fileCount":34,"integrity":"sha512-RcWH4WmhfcUTx5LkLJWsYuW+DJCK1pYbsUNu4996NSpATYZGOXfG5FnN4nsHnu6RadG6TzigXXjprNel32lVeA==","signatures":[{"sig":"MEUCIF1gSrMtCiHrida3ReUimWt41U0h1JqcD/EytxCTmbtLAiEA+uGcqNFe7jhPzsv/3YblJwcx/H3HmQl05L/tPPm94zI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":350264,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfcOwfCRA9TVsSAnZWagAARVoP/RH3P/BDRTFD9BBmFzPw\nFSZgDdQYEE6fv8mYgbAPVmQsthLRkM/+u1neiQshRe3YBmAtnD1YQKdfbTsT\n609zYJ7J7U/NEbL91hpFkuT3f373hN6MZa40hhzgEO1Q96vgrUBqFJMQDXN7\n8pZgZstGzc61EfJNjH1YIlXw+sQy9MBLkNZ40Qm4tjaAyKEAJDR+x7fVcrJP\nKORzH9xfVLx5Qf3CWJGZmy7+7qw1lIIyFmS5qEip16q4Dg9HGJeYigu2l0P0\n+V/4sJnfeyeNGd2BvqbnfRXj7iumElE/gAxWa0MtTbjCsZ5ntnxrSYC5/nsZ\n06urQ6hEjh35FF40Kt/qypqZt623O95CPjgt96gC5mnh/6PyiCULPOfZtwpP\nVUWrdEvV5nagDuCAdpyxyFjgTDRSZ1rX2fk+L2hnIMC5oZZm4YbSqqTh+/Qk\nUczykBrrVRvCjgBYVjME4ANaRR4o4HphIM9gliP5GmfA1q8mLxLrYaa0OIoa\n4v7tTm5sfTTwTbxgkTSh/ztZqWjAQiBvDd5iyduHBUG8JeKguesdF3nGoCgv\ntJxLfl3ldBFDB9/vEdBrA2S8LgZNOXyKn5VCDFWjk08rD9mw5fooLEo9+84c\nMbU+Y4F7XCJB08RSSsRapLlct2t2OALdHn+Ozb5bphla/4BSAmhmygbOSeDR\noGjf\r\n=yyvs\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"a141cca3c847eb364f1b6d92ca0bc96e45188d7f","scripts":{"push":"git push origin","test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","push:tags":"git push origin --tags"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.14.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.16.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.19.2_1601235999280_0.31229845396007083","host":"s3://npm-registry-packages"}},"3.19.3":{"name":"@yaireo/tagify","version":"3.19.3","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.19.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"d8c3c5f1d5b5583cb1c5639347b8a4189f3d69f6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.19.3.tgz","fileCount":34,"integrity":"sha512-9yiLp0DbGs5KLzA0q1Cm92ivCffgi9vBiJVQx91SivzdtRAb7hJtWAsULBlGVHP596BsCyl5OI5eS/eEy9AgRQ==","signatures":[{"sig":"MEUCIQCUnTJRIhS7CtUBd8rUSSPIBGgBL2acpg5pkOYlEP8tnAIgDV4EbsYwhtIBi+0j1XvI41bsYkBf/PGa4UzXn2vByb0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":350789,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfdK8DCRA9TVsSAnZWagAAc0QQAJ9pyKhT82lQ3S/a+FtZ\nNX6/JOV2shW31LBZ95xvqjHy40ulSEmXtNCCSgkRJid41Ij56BgY07XtK4V0\nXKmuVyl7HliDvzm5DFJalEYCX50DpbOixKUbnZTQWzKbm74Y5o+UCvcaPDZ+\nSKFsDMP6VJHgpDjzHxsdphgbC29q03ATBUxh1m18zlIruvYcnsDEJ8qIIiw9\n0oRLceLy/CzoDo1a4GEOWTJ5Md0/EXoaaAD6DFHmPjdsZ/hWfHf5hQmEcq46\nSSGGGeL0FgT8RwE8VcnVrSMwxT7XcM7h++55Ot4vTSaSfNrtUvprNsnMpGFj\nnwMOUd3falrV31UIWezY2efxxg/LAcej7gBhn9pk48CTkLaSVsMorXG/LEuz\nEpf4QfRH1bC7ufTe8xW951rlFIR90mDR78RXAA99xYe6TuDLlpM3qCnkW+I9\nmHCIkO7NYxU8cwJblk+Gaxcb9nzQ4yKQJQtCAlIVF+qflFyjsInv78a6/QZX\n4MSGT8jemUUImSVRGZMHmhgme2EDsOuXYzfVgMfrQf18Ggmq8So/9runZOOv\nN0UhfiGqzaDMEIdQTEfmsz0qaprMeu5JRNz+03n4DTwMAp1JiIPQ4+IKPncx\n6C0V+BbEu4lTbQu9q7fur6quhEFzIK1/873tSMbge/sIJToiCLh4FvfTNfBo\nSDZF\r\n=fw6+\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"82f8eee3ff52c0d8f3996475c44d9d86be1284c9","scripts":{"push":"git push origin","test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","push:tags":"git push origin --tags"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.14.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.16.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.19.3_1601482498406_0.39220360130574083","host":"s3://npm-registry-packages"}},"3.19.4":{"name":"@yaireo/tagify","version":"3.19.4","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.19.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"3fbc8270fd142453940b90b9880be359aabdb360","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.19.4.tgz","fileCount":34,"integrity":"sha512-Pl8xXFkOCGw/DN3IbdxSgU59bRX3IczekMSu+GeZH8iEXDH30urTu7nutKHkk7/E8gI2KgHaAZ+bOKpnxCtdcw==","signatures":[{"sig":"MEUCICQ6k6hy5cGLEyzf5niUUN+eV87mNJ5NN8pPnRdUheRqAiEA6KSJXwhYwCzqUTCM0at1CmjIdMQiOUCRz3hzdV0gelQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":351066,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfdNg9CRA9TVsSAnZWagAAfc0QAICasaOvXAEtSuBvBNol\nYkgya9DSesAXWJTOpY5azWhDIlXNd5wuUBFT5zl9GZohziScEt0cpNbevghq\nOheAIrwRURZSFPVz/7wNhnqcB+XOZ2Fl6j2jsfd/lIww5Gl1zHmxdpcz55fF\nPM8978sqamQmef9kBw3B6JnJc77+40RPDZdKqdEtp85uvbWEO8SI2LT8Ev9I\nNsBsShJlJM8SoQOQww/VBc+E7Qd+1Hd8urp9d/yaZuc6tLvMTMolVlzi8BvX\nt6WT5kZQUn6UwUzl2h3/uHksmGMBPbJDs8ebZCvOVgiIOwBNfmZI+CT8R5R1\n5jPFQ/b8AoufKm5yO3ShKipzFo4kfMrR4sZzKAvXCLP+NU/+InBw5hSrlHL1\nhNk7Nfl3G6fcZGAV+n5WBWYYLKidW1xAe3ZQ6g8fTt8/srY773D3RyMWMTug\n0N4qIpvpkEVx3Uur4n5WNAixEYC9cGOIQ5TvkDEmq3LLpH/sOEHgVk6bQ5Q+\n3Ur1uLD/9cx3syQ+7p9UYyyhSNNu3kkvbfh9k1avVmDPzeCfyLwyndDbGal5\nNGzu6UD/EeQd1Y33bAKbT8qsWswGLiyWWdv/QuzTzeMgn9hwhNFRc9tAolW+\ncMOGQo3iY1pKH2W8g+SJPwhp6rQ0eVSOmI1pR1EwYh1WO5xmHaIU5JmsZ6k4\nYlQL\r\n=oPKj\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"e73b48222b9a97081480c7fdc187aff959421c89","scripts":{"push":"git push origin","test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","push:tags":"git push origin --tags"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.14.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.16.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.19.4_1601493052429_0.21198972489741919","host":"s3://npm-registry-packages"}},"3.19.5":{"name":"@yaireo/tagify","version":"3.19.5","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.19.5","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"4597abc9741a208a8402a1e6da83a58a5fe85e5c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.19.5.tgz","fileCount":34,"integrity":"sha512-UcYAxvYKor95ovARyPZqC00MhF2tIur1Iy6aHCm7rZIsi0zuHonoABOB63Qre2jl94Iixpnarj45zxVWd939GQ==","signatures":[{"sig":"MEUCICb5ByG224oX4jLqU1kzOBDVHrku8Y0zuf09/1ztiF1jAiEAomPB1ICv2hbeNAS9UBWwVq7vEr7LTPcXprfIluL5HI4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":356130,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfef0RCRA9TVsSAnZWagAAEF4P/j5T5BAxzhwKhFjsUKrf\nRG0gcdT3g9bU6sjxKJg9Ujq6KbXxbpYCKVCcfzJIHG9I/RCVWoCWxgNsC/dB\nKIW3mQg/+4IAU6Ul9oh/VSA2h8JqIaR0dqTdImeJULuPEySo9z3rB/RgzvKb\n652gWL4xL1vBcAmSzvtu6kqKraYE7l93HqMn3E+le+JIbK89PtBZJuhHr2+Y\nJ4uKAkgo0eLhdT2bd7kweXf9k7yrGfkWfv69sob1MJkTfXCXgs/ZBOec32Ji\n8bgVLTD+5F0IaMsk6km8xxxWeyvFG8de5J4Ux2KOlyogMHOm67SUQKuG5bHS\nLuHr3cCnkN33PnM4vc94Hwqk7GvQ+/hliYLY0ehagUtk/8cZnUUtHU0TD8fY\nTqL4+brhTDidxSDAG2Zw8jol5bpk2z6as0xX2vGEX7SrNzcpTZDFhao7Rs5B\neeOXvyvwb2paxqXCRyU/U1o/uPLv1aCAzegE4gzOyqw7hpEylWQ98t0Z6EaM\noJIu+ZqXIQbrQ+sa6KmpVj4iyP1zmwZvNBFx45ESJUyFuoYKmCVTNUdiBkSq\n8Z+LYleTO9vbpWIQZG/dc1gEPhX35rRFjbx/mlxXb4a+v0lMbUPUYBop4hIH\n+Bd+KkcgjtJi2bLaCCRmxCMgMMKaIaTHfsRBVRvOswDnWY8C2Y2EfeW3Ek+Y\n7Wvm\r\n=TWH+\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"ad92f780e8e5ad85cde2e368425073ba33bf298e","scripts":{"push":"git push origin","test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","push:tags":"git push origin --tags"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.14.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.16.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.19.5_1601830160662_0.5513878395022171","host":"s3://npm-registry-packages"}},"3.19.7":{"name":"@yaireo/tagify","version":"3.19.7","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.19.7","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"ffeb5f8e53ca99158a0d1ced55ff3bd279699b43","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.19.7.tgz","fileCount":34,"integrity":"sha512-RtJSu1WX+u4R/9mIz1BabbvgLAlYQ2wuH/69uwoT6n9TAEdsjMmrcw/vnzsa+RrTszhX44wBQriY89aff7mndQ==","signatures":[{"sig":"MEUCIDtHCO/Y5nbzrPXEzQcEo7PlCZhkpyj4rGywgWFgXDX5AiEArEwRAgWgju7kDvQtMcHXXHNVTxWkN6ST+cDI4Fv4YpY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":357582,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfe4qwCRA9TVsSAnZWagAALfUP/0LVYM5JzZAoAK6NxADg\nyJTAGhW1AD8uySbaGKl9Xs4P/ZlqWALiX/XW1aL/kC6Af/03eJ88i0KLH+oX\nOXJKk363jiCYZgxkCiBNaT950yVCM5fePlwGbU8Gimn2mqZXZyoRR/IL9Yu2\nhUux7tgEgIKk7wosQlDGsWZtM7KGdfgrZTjMRFeuHKgSM2Uu5Z+eVwInh9im\nl9bWYCNhRum0a1kCZIVgVfkwdzPDcjRRk2wzK0uu7f1Sgj9koUMqAY180Vpi\nlKeM0IjO4hLt2r8RZaz7mDa7ylslOt8SVZiPUJiDX7o1XozpDAZM1VrlDKqz\nbSRl9qVF2golZiXu3gszFy9Bd3hyHjylHdVUJSAmC52J29iOHFFNmKq7ijs8\noGLq6DVytS14m9JeGVYKv78LEsgvYveC7Im7OzBIPhM9cEMjMENLueCPsXkC\n/+E/ftmRoK825yPflDZFBgUU6BBwsYQ5wRgGRiPQY+ycq6QQLgeXwR5G/3aL\nGYxtm39uQkDzmbUar1SEmAh0Isx9fhoC48xQWC81STAzQQ0bX9oXlo7mNSoy\nW3/Es/B69CjGsMVcccKoDxr+9nutlAOGfkEheBtMone+FWJCH78BywvvwL7U\nUVb9VJywwO3Wov1yMXPdeO+B3J12S72vLFEibGOwBsYwMYVL3I22BJYeVV4R\n542b\r\n=0jC/\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"136f4be7ff040905b0917710ebc63f28a4d9f748","scripts":{"push":"git push origin","test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","push:tags":"git push origin --tags"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.14.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.16.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.19.7_1601931951631_0.24217280945616548","host":"s3://npm-registry-packages"}},"3.20.0":{"name":"@yaireo/tagify","version":"3.20.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.20.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"815141bc00339b0d2fe40010ab5ff8ddf173fa21","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.20.0.tgz","fileCount":34,"integrity":"sha512-Tt7zzH2idPp9g7z0j83QLbjAGpwiji8CMT3DTnlZN4QPTTWTD5eKxC5X2cj6P0ZV2dfZEss55ohmXYyz5un0dw==","signatures":[{"sig":"MEQCIC1Nzv/o+Vdo1R9n9Agnmx5jqE7xhMp/gGReRPfanVXWAiBo1WeXa5OZHhisJxRG8Ho8PVhElReGt6bArPiXN85HrA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":362646,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJffgFXCRA9TVsSAnZWagAAiVYP/0awLcoBGeGKHMhebLsv\nWbli/8xtlvXI0psMODq1M1eL9YL0T7w6IlZmHzlGvw2vaZ2BSbJM2x14kcv9\nqJHKJu+iZtHekiu8WwgraADPXuxJ7Vb2tsrxQbK3q9IGjQgHvkKcgifPmaNC\nHkmHhRlyDKK4TBOZ+KTnjabIoQbxnrnx+w/O+RZH5uezzbXk3N+l3rv5f16Z\nCWUL1Y0mLfyngs/b9I+CySHQlov/Nbg8IbVCpwhu/56HRzoYwQekTbmdzjDc\nx0l87C1ASBgQaybbhEa8XEM+g7+qdEVcDkmHVcfAWn+lS/OjXIFllL9la9kt\nBhwvTrMRgBnisQTQ3I/HqtKEV8b34w/k7AlyRyMTsEPBvggucpNcRHIFY1Jz\n+a2EYUQUAajmgAmaFztPOtLxbdzabR+3al8Gw1jQA4wnISXAupLyuuSsXqMh\ng/NRG31hMzTHsl5aXdP3xe7ZUIthhn4PZGRAuIy65WZ+MeNEMQdtq0Z3ex5I\ncmW1CzjyVobFBsbmAkWdOuKfI5sQvr2sIHWZe8+07twpIdHBmX2lHdL4zZdW\n9w3gO2mD44S4bbfu4ELbGz182WmzV43f/mk7ESElfTEw29kV8PL2/5oNLVUn\no3EJUvHhucnAja57h6uyc4TJ9RC79toTMc0TDV0Q0XmRGd7nZNd/7MRSpDX0\nj/Vm\r\n=764g\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"83b1ff6ae39135e8f0b1f0e8a9026c8efaa85fd0","scripts":{"push":"git push origin","test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","push:tags":"git push origin --tags"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.14.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.16.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.20.0_1602093399011_0.8294697757226945","host":"s3://npm-registry-packages"}},"3.20.1":{"name":"@yaireo/tagify","version":"3.20.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.20.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"1c58f446480753659834c0b5d2d6209ced8f551e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.20.1.tgz","fileCount":34,"integrity":"sha512-sq1LdvsAcBn7DdBeC6iqA9bNtxGC7YnPjqgJY/+vawPqp0ggIsockmzCZtD/k7SgpQNwopk78oKB9JpoPaUwEw==","signatures":[{"sig":"MEQCIH7cLnCR/qOK7ATOk95N0NX4w6jnDBqSbGUZFYfvjMgGAiADBj4jC5TinpuiO8RvNQDdJ7yb9weDhRsAHPTyTmSOQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":368711,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfkePMCRA9TVsSAnZWagAAvnMP/iOY5iZKBYB+GvuCXiMw\nxK9rA2qFqau8vAKgAvEE73KsHxkPtYRD2CEzCqHSKvWL/aNSkcOaa/mpXKnv\nf05dlTVK+fFZhLLrQfyuY7vWewMNyGNOFG7KhaptJNH/a7nIH44FqjdvF/NL\nqbOrm6O0hq/ly3byMs27fd4kNaemNsngsFR3kpdBqSKHrJ/nUwC1KavcEcbt\njPAcindMz8lDWpHrSBTNvoslwd1G8eEpdbOFu6r/eAiiVrB6+zpRdA39/56i\nbpuTwJnxNs3o5P7+QOYLwZAuX60zrJmcuf862i2VgiHWJBz7QM+kxYDhyVNa\nw3KTTCYY5F3pdoYvrjjRmj8fjptAYbEuaTEZatGQCmjwtA4bdhLVgCuIa6uW\nveSRvESoprw+SlD1o0bdyjDznwd1t1CWcGLpgHz1joqhTNMRAFD44h38PQo9\n+yMbOSvUfOIq5Tp/12LR5ACJhIjmNjz8R7hFR1Butr/fbJD4VZbJh3Yw0E/U\nvLx2O197z43JFcorMFns+ztOYF71yn/ljMmWNWhTtK08qNoggYu+mayKRVuT\nfpJeLv2kjb4XTJu9EdyIHQN1qXdihc6cJWjXed4F02MXTxafnDPgh4d+YXLk\ni399ez/LFFApYo7e+5decbyftKSWnK3iVPnZfozPzQtdCTHkfcTNH/PtrMXV\nG0zZ\r\n=bRT+\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"1b60b50f33c07ca5a9629557dbbfbc487184855c","scripts":{"push":"git push origin","test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","push:tags":"git push origin --tags"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.14.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.16.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.20.1_1603396555807_0.49047231213911124","host":"s3://npm-registry-packages"}},"3.20.2":{"name":"@yaireo/tagify","version":"3.20.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.20.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"dd667f5adc55bf563bc918075a033582ca6aeae7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.20.2.tgz","fileCount":35,"integrity":"sha512-aapB1vi+6f5Od+ssWMWKyoQf0PU/Div8v/DJ7lQeIX4GoLFyVedRLOtwrTwCQ7WSJqNOyt2C6mcy7ETZ6VKbaA==","signatures":[{"sig":"MEUCIQDUYavrevknA7qs2jHGYkCUHh0KR690kRelEkEDEV3a3QIgOao8lv4n0mJcU5pZ9/fGQ1jyMoH3/rjhpNIcRtgwsWg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":369092,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJflCxBCRA9TVsSAnZWagAAA0gP/039nwOvWxP0Gno+X1Nc\n1DFciR8dJ8T1UDy8jgifp+n2j7XdYFAfXQtKtCfFkN4Ct5nNpA4MA+6HkA7j\nYt8Zom4Jof1iNaf+/R0TXVQRcsNC++dSsq1D/8XZezHGI8vm0a6wthj7vQDZ\njaUmXJyPyvkrx2gLoPEtdVl0bMgdgDohL5tMwtLfQRYgyLczdih57EGI3nGh\n9vDFzKJiJi8xPMLuoqCVjhokRBbJKx4uq0aoj4vbpzaDiIkOn0BIyP+eJm1G\nZ5/jKXmtSQ7YqG5VOUKV9PA2AevaqSrv0FHB1Gn2oP9z0KbWx9wA8CUMxYm7\nCSqbDpYBXvJ7r8+Gx3iw9P6L9aXOnYnDMVyIMnoT7q+qIfE5J2Phu5ZMbocE\nLosZ7F2BzgXqom81L0VZRrxiGXhCjt/STzTs0uq6Kzzmlb+x37PuN3lGGWYa\ntnvjg4fsYyBGuiz24AKqQdYGeQZDsJnfM4jhU1OD3MEgiKdUMCMgcNaq1I3p\nTDFIskIjWDlolDAsHgqEwsLWKS9N9M1NPzKeKj4ZdiJi0v6btyiEIyjzl+AD\nChRWrQq/rV5jCNP7oqPWPPoTvXZ48j+GcTtcMeUZJIvrr44StPjykBVr7qQO\nlUMYBFuZL5j0n841kyNy1t25azW+t7254LfLr1Nn6BpdmwiM0x/0XQ4UIMfa\n6lhP\r\n=Ukdj\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"c0af71d10937dbb386ea4fa4b3d275576c5a3088","scripts":{"push":"git push origin","test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","push:tags":"git push origin --tags"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.14.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.16.3","_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.20.2_1603546177410_0.7727284259159286","host":"s3://npm-registry-packages"}},"3.20.3":{"name":"@yaireo/tagify","version":"3.20.3","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.20.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"445d540282aab4c5c74b924bac2ca4833178ced5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.20.3.tgz","fileCount":35,"integrity":"sha512-fvUH59AxiY8Ga4rY8ZmA70llHXP7a0vcHkAtFc7Xysq6tw+rZB1Wq6GMnAJ9oDyvxbp16ZtNLOyb3VFvkSV6TQ==","signatures":[{"sig":"MEQCIDSsiYWAJnEyrQzxRpYIhHw9Qa8tA24nooXv+HVKlNyNAiBKQ6eaSMxoxOkxarbAuOJQnSkmIITQ+2dHxngA4i3bwQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":370201,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJflupSCRA9TVsSAnZWagAAxqMP/3vB4+3gRdeLD7UkcbcO\n4hZcdSONGkmpt4Gph2AZrXZ1iUIUSkoDhgqi0Nvs1sbwECS5CTLQ/dnBMiIN\nY27X3obsESP5hPe1dyLBTmER+A9nUayvHof8ZLBr9qtZxrHdZlH0Mdc7ArvX\nblVPy1bvvOsm4myr7e5g8l8mWrU5EL6VBbU84gpCNtPKjIIRiQz3QsW8WnsE\n5NjZgPpmxNcikoXFxvqFmTRHECMygQz9dgMJh0n2HfCsCpyKOOr+jiqEZrDw\nf6muVKCwst+dSGb3Kg27SzXZ0GL2Y8O7pZTqK1AQipSqaxr674Wcj1bmhssv\nK1wyWw0Pnw9JCUthF5Y0q693q1v1phHrF6gipFFVcuYxZoMi7Gv2TWm5qK3m\nSLy/JkGVO76bpV+r+cFJJ4Go2rWkbDcadIBKB2vBbRJSrlJpQ6BmxGDkKzDd\nRh/2YNDKpvw7LfxDB0awjWLQk+ukA6MqcB/KQv20T7zJkLhjN0+hweRHKhC7\nPo57HwpdyjnjAdh5IlKMkQtenNPRfFFHeqQd/hdIwgbGZK+on1tIRsWtOGFQ\nK3fknAHM2dTTIXXXD3AJYNqQgfR2Vpj3hzE/aWPbLBlm3WIG4CmuRbY97IkX\nBVl+CZnMi80HRaeBeZbR7zA9AGrGAbzPaPM4pFQP/jq8EidTZhqAVjtgUXmk\nHE/v\r\n=ZMSj\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"3b05eaa585e1f3947ea2bb05bc22010f4e38150f","scripts":{"push":"git push origin","test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","push:tags":"git push origin --tags"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.14.8","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.16.3","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.20.3_1603725906007_0.31361843157409686","host":"s3://npm-registry-packages"}},"3.21.0":{"name":"@yaireo/tagify","version":"3.21.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.21.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"4864edc827911d397b519d702791987445f97031","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.21.0.tgz","fileCount":35,"integrity":"sha512-pTr85RlPa7skaUgWCZkaqKpwsAkAiNi5FdLbXFnrhTo+oDMZb0w2rndKIca2bggwWUSsHC+TP2BY7ju8KZu9Gg==","signatures":[{"sig":"MEYCIQDRlQoWIEoxAA77j2PkZnNz2zMxvlthVg8HQv7EccN6JgIhAPvWfQf5cQoTvqd549jQDBJHWE/nFnVJHtXtLZGsbKSP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":372928,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfpIqDCRA9TVsSAnZWagAAU7gQAIjy/oq307IcqVv5wwI3\nE3C41q/XZOUgNCNBWop3+H9RsL901nIxVbO89p+2qSD9M4w3HZcVccYt6ZlG\nJs0jLYScKlVsKda2qsip4Jx4PSWTT7qHa50WIB4eGAdMK8VGOKYz1Ag5uO4M\nJI7XycuYEFlq1jOSHWPATnrvVnTGATJlZUH75LBE2Q4jsFvFmAfDTdrqufdJ\n4VTscQzppaqskqSl1F9Bmvc4iif9ExOYowsq9711NZMZ48G6cHqI8jG9Tlpq\nlthaZaF/5U4staLFET3j91ZH0BnpAsECGEhUqaK0mEJ60oiDeDzlmRvjdImE\nIqn8BsW0INpdoqyY/lXPhDWkAS/adRM5ve+uz2R32cNNKfxXzYCsZ/74up1L\nN6mZV9dBaUpwdCZEDSTtusoW2mKThLMZdH1jeYPH5NqYaz6zN5jHij/vB2z7\n0WzBgOKVO6zuN17iQyLXVqZKIZkaqCjDok/jjmJR7Wp+vKYJ3hFDadlahXtc\nIl5FgP2xbq9GQXgnUwQHtHgkKUOIvABeltl7ubktAGLjVMApoGzEvOqqBUqi\nvdJH/PuUfhATtbzK7CbttlL96Bv1oX1FZBGbwi2v642DwwrORGYSiTWMsYgX\n6oJMrpUcl0skVJsiQDbofWvBIWqlUBtFVpL3/aFZdvHDY68pnrf+WJJU2hkg\nhBaD\r\n=Ea2b\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"8ba3435df0a66c2b5feefeb1300dfe7fe06a3ef4","scripts":{"push":"git push origin","test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","push:tags":"git push origin --tags"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.21.0_1604618883233_0.9359051337113755","host":"s3://npm-registry-packages"}},"3.21.1":{"name":"@yaireo/tagify","version":"3.21.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.21.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"ed50fdc6e2662052aa492fae3a269e1bdef11ba3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.21.1.tgz","fileCount":11,"integrity":"sha512-WYGy9fTyAFQkanhYhzffqIKiiAv1xF+rx1FvSfGK7cG4emHRM8zUYjJXWguYZYD9YGmL91Nipo65hpdjE6Sp8g==","signatures":[{"sig":"MEQCICJphkyC0SYkOxOE0jplj5r9oBh6KFvKgkZ60HNFYI7zAiBXz8MMztcpEPz/EmNdyxJpK7IsdLcmR6J2yqeUKZdh6w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":199579,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfqvgqCRA9TVsSAnZWagAAvOIP/1B9nnCgm1oiAx71/F+r\nQL7yQsrQoTpO6vI+xPRW/VDAwIKhBSJP2zu0nwQOKLeb0yhyf5z5/scxdGPu\nAwSnwNSTqa5fVQPsK07JNcT0CNotzNCRl4IQujFTkr03xVVkWkZQ1A/xajuc\nC992xsCgadW3gvozqJkHqdIeeUUrfzhBaT6YeXyBS1eDDQzJcWfey2CGDV/t\niWFFn4NQvaAoi1AwnEdJcTZklDVecygy+GHha3HJEj6Vw1FvCGLx1O1xWKoC\nGAt0pB36X6bbAhBR0Vuc217BDouRmbxlma4E24jz7Cb1trDwmFpxp5g9WDid\n/4+v/KEx0ohf2gm8SFZf7DgFcOuCOwonwCmxpynC+J3HE7nBVmd2Fh/EAzRE\nKZgZ25jy1nS87qGuNGSQZCJCPmNtGw+Byl73zYabjdZ2BurBH7LGy2xKezlK\nT/1UQhmqOMudiRbIvS5yA1FGlvrSk1mUxBEhanRvLQYOvIgmiRB2ZVdGXwbd\nmjVBMXWqm/pK/gZdko1I3Ajp2nmJ8m0FrxieT98BwFRtA0vJCOlwJ8/cf/r/\nbzWZZf3XjJzSlQuTSxlu84SQzJlm8m7b/6OsV5k2npraqTgml2Zku4abL62/\n4Ez6QSb0P+Idx9+CEJc4+26vfLh7SSXWfi7TFHJQSXYtKHQOeb+kbHhWpFaq\nk0bE\r\n=rbg0\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"6354536b48d57c28efbd254f6073de8c76416ae5","scripts":{"push":"git push origin","test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","push:tags":"git push origin --tags"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.21.1_1605040170036_0.29594894919420933","host":"s3://npm-registry-packages"}},"3.21.2":{"name":"@yaireo/tagify","version":"3.21.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.21.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"456a50a8312fc10bbbb1a0ce1b9d7ad58dfee037","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.21.2.tgz","fileCount":11,"integrity":"sha512-ersPWeelUsx1rAZd3F6EuFsYEm2mfcpSFhli24t7vHbIh2lLVdvoQUEFOUHouVe66Bxb2KHrszlazlyboKPWlQ==","signatures":[{"sig":"MEUCIQDrd71jpmYf/n12NzSdLIOpo5rewTOSkTrSlPMGv4jxPwIgb2QHBWg8PJFYTIE52h8sa/PmMAaNKEv3FG16uCo0/+4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":199729,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfqwg/CRA9TVsSAnZWagAAwAAP/1oK3FDP0KZW2LkHlaQC\nhd7+ntvomkdn1zCmiwta+UA93L1Y0tTF8/n7mcjs/55/wpg1qjU8s+0l0mHr\nPsEEQ9rs3oT8fNSL2+4TpCtnS0iROJtCc2JAAv+hJD0IC86a8O6g3yoNrvRb\nn11L2do5eFoYdMpAXCxXUp6iMiNIxK9yS6HBntnHN/5Trx2mH/qC6HrOn5Bf\ni/k0+sEPf60WGpQTFbo58n9qdbuRqBk/WBhHOFW8s9TnzTvoedUDC2N5ikrP\nGuVFN+RrebFhNuRp2LEt+TgU+tbSrJI9fIJu93BHQJq3pMU9WXyI066NFPmp\nNRTlwgYBzYuG6Anqvcl7exFHrgW3JXA801TxcWIUVFPtnRpu7t1mqtxI5uZq\nANiJw3XJ3DvRcHBSkW7VWH0aped1Z6jDzHLEoUjc5caRmhFp0s1GbPMj8nw2\nRhczs8hTTkhzcIIVGlHVjUmyil5jXX5OX4nULM/SxUoFj66ls0K+gHRXydJr\niZIXsVXKz0X8mjGTJ2krPnLyeLGuUcgoGq+tqq2OYDGjY25hpOzxHHNeHO9g\nn/pByCem1yRQjsPjKvLqSROpkB4xK82O4z95kMPS3pA6GBH3s6ESbs374iZb\nvTGDaH9nJPs1ejoIPF+13fxuBMIEbpVWqCXLMxRhzNnolCYyx9hlYURQYzOf\nXrcN\r\n=xXbN\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"3992b88af096550b78b6697e65f272cb35ee0db9","scripts":{"push":"git push origin","test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","push:tags":"git push origin --tags"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.21.2_1605044286820_0.16519271007349112","host":"s3://npm-registry-packages"}},"3.21.3":{"name":"@yaireo/tagify","version":"3.21.3","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.21.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"917f0eb20c15a4e2b66e774acda736c4ce3f50ca","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.21.3.tgz","fileCount":11,"integrity":"sha512-4EOXLlPDTln7BXaBNi7ryZO7DtyfJCrDKUplRBPuS3weWCu8Ggr/J6N+0ArST4P1wn8G9Nczv5Npwm9wVp5q3w==","signatures":[{"sig":"MEYCIQDXnYdqG2wBfouictpbd0VFf9Px2BYVw617bhcSrJ9oYgIhANqtgilyB9SK8e53V9Sgvo53vZLtWII4g/rwLw5t6KUi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":199789,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfqw2/CRA9TVsSAnZWagAA23oP/R1v0P0nOvzqPLjFfKQK\nRpE8z4nl52QwACtswT8dmxRBRK8LohKNYIbYKmZQfSoNHdNRqsol13oVx6Io\n920hat8U53dxN/xpyADttZzZcH1A7BwQxIxZ210XQ2AFT9QBHHZYD6Iskt0W\n+nkoAHR0jv7DQT9YxN+wG+//4XaykNR68nDJiZkOkIg2c1kjr2SvswR7X2K1\n+6jQwlIABDV0gh1xqmls9nKez406mzuBdahQzMCl50O42jXZJj8vZ6rMxB5i\n9tq6VsvPOAd+aI4zKUMyz6lMBgCeNMOPmj0y/u5thd12AQ/7RiBRmagWiqvy\nR2MEh7awItPGDSY7Nk1xPB+pXstiOU7WsF99u7rmeiMIxJgSbKjD9cx3xqrg\nukD0aA308/2G7GEYssW6gkaztypeppRN0UtP/GB8P9mZtVIltoDh4lO5Vevw\n9q7akhrvxum12d6QqrGM2lyKWynybx8sgxviiInArqlPGNoMA3OGmSLbn++W\nDR2hpwd96KvP1uGU/U6TNcSpk0SCCrJf9+b1qFCsewfO95NxmIXjp0MWsXhw\nnHnlLVgnFST/1szwrVyezaI3Hs84yMAZZBPeMqN2hV8I+qKMVfvCThe5Dy2q\noUl7xVfZKhLV43CDaaOfJ91mW6T/ebtIAM9tVvLriPJ76D7dck9Gl9vMm5Iz\nKuIr\r\n=+RVf\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"d5512b1c56b8519c19ebbec0498759049dd5805c","scripts":{"push":"git push origin","test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","push:tags":"git push origin --tags"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.21.3_1605045694969_0.7038131040180631","host":"s3://npm-registry-packages"}},"3.21.4":{"name":"@yaireo/tagify","version":"3.21.4","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.21.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"3a7684672c250445138366d2d09c2b98fd44c97f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.21.4.tgz","fileCount":11,"integrity":"sha512-bDN39X5Q0PJABeErzBL0nTA26O6dHwK48cD37FqoWODqo0oymxT4GCPRBc2LYA3hg7/h/ibfKRiySWGAR1A+dQ==","signatures":[{"sig":"MEYCIQCCZ/ivVXgXef8qnr9WcQQapE7ennBJCZ2HXAZX5iN8tgIhAIV0H3Mf4wbSz3wRQtsjQfsToZVenyMjL3gSHPxLqcyu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":199914,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfq4KdCRA9TVsSAnZWagAApiUP/At9sz7OYNmX+j9LIcKu\nVYCZx2GaKwIkUIs97yTHp38TqOTY1MWAOI+KGrnqnGDnBMvnkc88WMV44O47\nfRatBDEywejZgDuBX7RPnERW25ls8y8eTyPus+UdclmQAYPw2vLndD3xrwf+\n8EjY8ZXb0iIAbzyrlGmOfALI01Prkp1N65RugErtVrbyIMuD9SwcM+yaoJl4\nB2+aInps/IhuYBnnP09N5dIn87TBbf5fVqNg1Xyh1XBLvMfO+cbRWMw46Fbx\nG73TnuHCBg8BbyoZ2v9I36fqN2b0pII03MMnHJM3qdVp+DsuufDGg8hDF6Vb\nf2U3hcnKLSewbliUvkE+u3XUiTwTFHJ+XVPJJpV7J7fjgy8ZhJKhxjJTosE/\npF/RhKD9smVny7ay5OLc/AGFnxPj8uAG97lZhHaiZz7YshUvnct2Ma1PqhoN\n/OzhbsN59WUYNGiF5M5mknucB5GgiujVIPm/pGSpPtpJhMk/4RCyTshHQZ30\n5zCgFGud8rTOomuKGpPI5iMI7zmfko8uwObKMwujMFvouHZHVSepeBHZtfwQ\nK4rE8bndc8n+DyAINqGPhLUiD/supSLuj2FAJbhtzdEVAEKNKsyASiqANOVb\nntHvit6iizl7xFykjp4lacuGknRrLvAonInpJp4eP9NF43196EwgAYcykmkZ\np+E3\r\n=w8s0\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"bd4cb069b1cacb6b8bdd34457de5f86752015a9c","scripts":{"push":"git push origin","test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","push:tags":"git push origin --tags"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.21.4_1605075612601_0.36025649811674954","host":"s3://npm-registry-packages"}},"3.21.5":{"name":"@yaireo/tagify","version":"3.21.5","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.21.5","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"dist":{"shasum":"7aeb3726cd2cb11103d336fdeb602f3929731fdb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.21.5.tgz","fileCount":11,"integrity":"sha512-3XjcTKhp25+HrhQdmo0O53bCDlnTNb0Lq8rfn7UmPgcfYd3Nkf3Kwt7qY58aAtKT38mr+W7PfKg14vuLozx1dQ==","signatures":[{"sig":"MEUCIQD42Ysh1n37XEENaWMmbsehVVhI8PCIQESXMW61n6ZrhAIgcf5ol2lGKM52vk35wD1MtNq12yUoZA8/jVfAAqFlNeo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":201141,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfuuovCRA9TVsSAnZWagAAXIIP/0ysznKXBTUFGzsdF9S5\nOQV0JBdQuQ4FqjEwDpBb4lxtNpgrmotnwp4QXOyDe2E3Xpekh5OxiUOXhfZS\nOaukbaIgjXPLljTVtHwmKlT0H9MvB0MCCA8SPRbdyVAwat3/WZS/MOlwVhiZ\nf99LqFww9z4ApBmnt9eS8o1brYLAnBURs27Yvhj0VZuwkU8bE5Pkpsf7R8r5\nduIRY8Dcj5jZ7gL0lQLCG91P1SAaKn1RWfvMYxz+JsjQRKjcBCgOPEDJqJxd\niqmrbesBMz9Bp/RSOH6v1zAxDvyC/c83sBEN6PVTiUceMA9pyOUS93++SDoZ\nw6lGXJ9A+/mDecsUGVtDHlFSFPCdbBvgKDgoDBoHiWmzTBURAeL+4U8Vu/JY\nrhI9odgniCi0kjC2+0sqMyld8opas/eMiZ4evpTlBIu8usnpZNpktPzahp1/\nhVtKx+1m2FN+rRDH5TNx3UuemMK0srZmerXzDJfZqM2PWOas2fqdcst4CUV3\nAQvLZPFaEkujtmy0Vk2g+28FeOhwdRo34J+Wd6FK94d+UpKacdICMo/YZrYu\niWO2eIsSdKrn+mHumpnzi8acV0c9czfoVi/piemUo/uIN6xNY7tt1bYHB9Mx\nq0evoxEpvoHzFlVvKQMGvGnYqiMjOqjZzjb8GDb+sjomXwkVzfj8WU7TN7oA\nLRi/\r\n=76b6\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"95964c05e6c534676b0211ddec7a87d101be5fdb","scripts":{"push":"git push origin","test":"jest","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","push:tags":"git push origin --tags"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"6.9.0","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"11.13.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.21.5_1606085166824_0.7863817805185438","host":"s3://npm-registry-packages"}},"3.22.0":{"name":"@yaireo/tagify","version":"3.22.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.22.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true,"contents":"dist"},"dist":{"shasum":"16b453c62dcfc7490f30419a27baedcb0b158156","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.22.0.tgz","fileCount":11,"integrity":"sha512-38dPEuG1elDIQIMPXwlHhDC9ykUZ9zKieW19YA7wE62KiYx2m8LsU2f4s7c40mlNBFi5soxsTDO2Wxgc4HPFYA==","signatures":[{"sig":"MEQCIExvve0ZJ39QIBYflfzQ5RhzkDqDhj7Y/WhGien8EJgdAiBmvgErop5r2igFfSIYta/aJpYzxBsq/4Heiwh4+eEKyA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":200491,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf56JcCRA9TVsSAnZWagAAfzUP/j6+bC+ck4BBumcYBMgk\n4yBli8EXJT/5Tg58fa9Ld/dT2/24bQkUW72jk1QJYGChhZlvuP+nVWCRzI1t\n3ssQuimIlV26g110YpydmcMAFxiPnsJxNWX83ptczebaCt7JPv88JILPUoPS\nf6Gpu8jMA/MeLcbi+tosae9bIAnwuPTkO/IaKqKLCslrD0BF2GlvgQO210rX\n2fcOlLvPgi3QHmdUrFZX+BcA1prj0xOo/cDa3I22rENsHXon+TBh+qRFFBSC\nuOQspyS4Hut8uhZ38EZog4CnVxpacUV3yX/nkYV7qteKVnFWXy7X5K3Ao0EB\neM2IO7ThftfitdZaPpLbo0LVIicjjtDsN94GV6O+WnqIqcNT06y3Y9ZhMDtK\ng/8gINGCA1+yqqM7SCrCLNHcbIbbopbackDhOij26+OyYLhrUerW8c6+4DC5\ng6saM1DcdJLx4ugpEx07UYgmCpJ8TcPGy/nQyYY/tXXad7yk8HIcd7KZs3jZ\nShAwIY6Od9OOF6avB+AxdIjFJqDwiOOdCm7wCod5LLU712nB2SruaOy706yr\nsGc0YKmBcZwDjVTalmUwt0ZqMP4+Gr7/dR1lcIhJABK/YFB7STF6oWRMVvzl\nZNU+zrU3znYAb/bCfY8dbY4A0hx/HmVTbbfxC2Pz2LxgmJtbj0kByffxXs9V\nap0E\r\n=QMTn\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"4d9912fbcd4e68cf6569ccb77814803b5ca7c562","scripts":{"test":"echo \"No test specified\"","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","_prepublishOnly":"gulp build && git add . && git commit -am '[BUILD]' && pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.0.15","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"15.4.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.22.0_1609015899745_0.5486359121145246","host":"s3://npm-registry-packages"}},"3.22.1":{"name":"@yaireo/tagify","version":"3.22.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.22.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true,"contents":"dist"},"dist":{"shasum":"cbb3ed617b6af7b887ac29f14762ab14ccf7ca4a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.22.1.tgz","fileCount":11,"integrity":"sha512-pwokZQyW0qzyC85QYUy9rD4nQyEK8CsEHrCKI73F9kp5yL9g5nQspnKBgJJEyI/AFHyAes4hVAkzrpeuJ0RHrg==","signatures":[{"sig":"MEUCIA78hjcVX1y3lhXy4N2fqCMUPQyck2sGKebi6EyilrWXAiEA2Z//wWXfBj/qduhCfKu6gm9o68/E/B0VShrJ0uNiyJ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":200617,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgBKNACRA9TVsSAnZWagAA37UP/16Oa6GAbFKVwCXC5eN1\ntDF56cLokbVTKAyCkdYLGYLXkjJJe5yWqA7q9DVvrHnmwYopv28jn9Wmt4kz\n1PYoyRRP3Tr86z330BtliKEkPVrlnuaLWtsGreA98mKC579d/V3cjpUVkAaR\nE7vhIj1ZK2bQF+qcg14+sd+juVDma/SGtSLoSvQBeOtfeLJ6c68bIlOnqBsb\n0xiKh7ICa8Opg6uLYGmnVtg9DDeiHTp5BFlwySM38crF4yFciEOhD6O32oiC\nuhH2cDvSYCD9Bix3MXEjkeee3hTXk22Kqi+D5UFHSGXvJ8CEYOjqVrcfBnsH\nWfjRRVqJCId1FFxKmlUXdJAP9Xk6kLd8ZvY5v1C+TrHgsMfY5nkvQ62PuHYW\n4JJ5WLIdxnIxHBNJVxNq7YWABasirO3e1dRWHIt7nBVKpZdmh9VJy41EDaP/\nxqsgGjEd8CvzkE79mMYu6qD5Wis5yV4tDm95fonZvaPHkAs3gEyUvK0PKz9F\nxkCjT3r/x1jcrUwAafXg0jKMFuoCMO8Vuv6hLlBA301NgmWj5LfsEtgAuAM7\nyT0WBadXId6ftzyXa7VsRdkJs1hW8b17RIh3OD5mmyBIt/A/OfwrXV5YxT83\njIHFIEeSUtnQLFgwGFE6CgAQ8FoiVxnSQswctZZQlOjU8agRMCO+BBTZdMSa\nkT3D\r\n=dAzm\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"a19a397ce65d276702e8384d81c0137a5b188ca9","scripts":{"test":"echo \"No test specified\"","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","_prepublishOnly":"gulp build && git add . && git commit -am '[BUILD]' && pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.0.15","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"15.4.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.22.1_1610916671607_0.2846928738480565","host":"s3://npm-registry-packages"}},"3.22.2":{"name":"@yaireo/tagify","version":"3.22.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.22.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true,"contents":"dist"},"dist":{"shasum":"3661529b5327d369c7ba75489a4401ef79cf52ff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.22.2.tgz","fileCount":11,"integrity":"sha512-1Np1dwly3jiKI6JFebqvendrdqORwROeVrmHDzy1zitnoziKA7McE41RuPCWPfv9YcsML7DqWCM33DjgjORmtw==","signatures":[{"sig":"MEYCIQDe1n8wS6XRogC2KeoVQr/vYDzrB3n4EcVunfmixaA1kAIhAJTWr+EtoV+qupcOuQnMIknPb2/YrNGb/HCmPGNKIe17","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":201934,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgKBSyCRA9TVsSAnZWagAAa6YP/iz0V5jd/hkbE4jku+2C\nnni7fSj5qnZA74uuY/pEKGR5TaNCRiXabCprUyirXxyT6I35YertOesHbwTt\nZUiS2fWQVGrh3+y/FbCvazlNwY7Kt8599XzxpY/qx/3ll4PQL+l6F1RiiAIo\nHH5DoBOX1ibXzm7hO/FEdfy8KdFey7ImLBp9t0iqXRP1kfxfuebPpJVIvb3S\n/FK7aYcqHuuFVpkAW5KnS4415sRM1YEJgBrmuLISUSwD/LmqJimjy+buTOXJ\nUjG4zSPfHeNROx6hbVm+8T1WRyWEOBuI1TddPb+jVmCVSf8K7xyWuPMgCR80\nK74RJ8uMg+ZtrjMZf1ZEwbrYJOgp1FgAaMznem67Hp+362YdZmtJJ4GQ0WsJ\nkTwtHVHNP19v0i5QKt5IDm0C2DRkUmnATX1Zzs4lReIQtMCcE1lvdAFfZjDb\nQN+3LPxsSRwAejq+NpaAQH0MZPHsD39S7juQKBuNkKO4/RN9Z5taJJNpiaMO\niOOEugP+BN5bDW2iQs2EDQdfTXU1QFxM2KRaGpGZj9/X8ThhuUzaSMvkFhdT\n3mFCjARwNTi3k5m8WTiLTdzO7F2VRn70sZIjyAe6MUoAJGkOPqWovjvSDS77\nbUCn9FBFv/5uMHdxhfBA5zzX4XrlNglBz6BrwBzYR4+eZXRdlzQerG187qoo\nnTNt\r\n=OYp7\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"ed1df51cb253e797d085e9c8f0b48d6244e45b7a","scripts":{"test":"echo \"No test specified\"","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","_prepublishOnly":"gulp build && git add . && git commit -am '[BUILD]' && pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.0.15","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"15.4.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.22.2_1613239473515_0.9005396556649017","host":"s3://npm-registry-packages"}},"3.22.3":{"name":"@yaireo/tagify","version":"3.22.3","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.22.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true,"contents":"dist"},"dist":{"shasum":"32f314980faa29faf2b333a4e3ea50c0d57d3818","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.22.3.tgz","fileCount":11,"integrity":"sha512-jPDuX6gH0ryd0tDtNnUXQxw3hyKjQXwUfolDSLvVgj5VxDBpRXPkBT71cm6m+znFs1Ko3yhLIauxICzXUxn4tA==","signatures":[{"sig":"MEYCIQCGiK02rwc042G3W9CmWo4GZB+xPTRE+yuc2I7eQGo1kgIhAOkeAsSuHuZb6nQEcZa6KgCX4ULllcIBtNHj5UsMeYsa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":297820,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgLCniCRA9TVsSAnZWagAAdEYQAJstgCcsgWJLQNNBEwdl\ndzLiCR5z/mK/HBOZb5RA7zAnsb/IX5qsSiEWI3G4aOc+DBCuZ5Va2NSjlD+0\n/UXwhCIZaq9skI9ip97h2KOlhxjkVaDZhT4Z5f8IVc54s+Y7AZhL/sIDYlvk\nXZMMOaBAeOvP9WU9X2XSt97gfQnr+B1xJqEdJrfLRvTknU1CpMKQ3gpkJ1uP\nhj8jn1gsfO1c9+819ZJLrIkIjO8YOpRca8scZqpGW+X8TRhjlIIsWqMLHo0p\n+cRhn1DF+QwGgVKQ6I3cHqa/IvEZ23jsduv9KHUScJRVZlZGshDOyEiq/NiI\nsHqczaT4ynk+f2coqulG6vFv2fPnBNdyBgyEJf00zsIINqTVQDWjr4TgLrsG\nTd0qRl6vG5UqOrjAgJC1HHb0eR1eFFWESGf5z3u0cd2uoJclreBiJwyWFXZM\nV8iAs6iy4/WDmEIEUQpFB8lVvmuVTTIIrCSLEXPISAKv9hyPzpI4IfkiDjCU\nFfm19QCVmrAjUnfz9cHpiKFfpLwrhjyoU4FLae8ZE2X0Vfduw9MVsTfXcUJs\n+CEkQRqjL9uRb2T01ehJUv4mIp2GdLSaFsyKKRaJfDRS6NAxXM5jso2BT/6f\nUXhQP+uwLGi46LmycbOjb4L0ccpM3YJmMXHFwSWelN+L4CYnoEkyYfS/lq89\n2nTW\r\n=aNOe\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"5349f7017c3b9635002ab83d5cacc13f6643bc91","scripts":{"test":"echo \"No test specified\"","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","_prepublishOnly":"gulp build && git add . && git commit -am '[BUILD]' && pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.0.15","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"15.4.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.22.1","semver":"^7.3.2","beepbeep":"^1.2.2","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.1.3","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^1.20.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.5.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^1.4.0","gulp-uglify":"^3.0.2","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^2.6.5","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.9.6","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.1","@babel/preset-react":"^7.9.4","gulp-header-comment":"^0.8.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.1.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^6.1.0","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.9.5","@babel/plugin-proposal-object-rest-spread":"^7.9.6"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.22.3_1613507041577_0.9681588116840507","host":"s3://npm-registry-packages"}},"3.23.0":{"name":"@yaireo/tagify","version":"3.23.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.23.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true,"contents":"dist"},"dist":{"shasum":"ea74e971d520af3db9ecbd404d075fbe31fcf183","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.23.0.tgz","fileCount":10,"integrity":"sha512-zSfCnHHniMP9OsucYGqQISOntCHo4VOtjOsI6SSlq+4SbWrB58BxG9KCjqv7iWKVV2WLtgYOGtzfJF3T+AWndA==","signatures":[{"sig":"MEUCIQCeXX9lbl8CjQQZPS333yuFVX/bQaFoyoqm0JpCJD6ddgIgXC1L2wmn6FIe+JyvrUwKKLeE1GfA1uTioJIpJpeNI6s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":189601,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgOAp8CRA9TVsSAnZWagAAjTUQAIS5Jj9OUOs6lNY9exNC\nbtHnm9NET9OV2AwLWYrRFA/Q9AtunXs2YTF0fuM+3a/VDbrkyKivKGbFc+lY\nVCWaYQ8c7XhWn+GD/BRflKG8dukLqfFjOBjrNJOK1xaYAycpyZ0ObDFgIlQL\nYK9zORtuLZi2qT7SQ6JpDQe9nprVp9Mzv9I4XIWtUKVdHZv6y9uE74r6/zLS\neRM7bbqyBPI7BmE8Gx1Nvz2suwtvLqDy7QTj67JsXaiF9POmQaRXz0D9FaPO\nChnnH2M+z5FAhnU1lyUk9b2KvbdwUWdxCj84Ppe/Fqi50COCyXvBxqihZkH8\ny/by8A45hfXvwP8P4bhad4CHfzL9F4OZajh0j8HYltYGnhYW21bEoLjLMCs5\n0C8wUc92oO9KB5/z3ZO6DRN4Yi4wVsQ36YTrcbNB7tqA0An6seDlyGNUVVKz\npcFuWDTZPuBEp8mBocMv27HwIg/gub56dhZrUmLlCRB38NLoiVG62WIDiuvl\noKgnVQ7wFjqM0DrHBMbeNL6WuqLTuaF5zrsDqY5nq9nHJv2aoBc2NQ8kl5oU\nsyQV9/nYF7Tmey3KejtEBbW/Jp2AeCaUoI58xTIaoYHJ6qcdaLW2D1/28yJA\npm3DSHPjcrfFGRS9ASO0DZTMyWDe+0kPRH2NsCEhRYcf1i8/p4QJ0yrD9J3J\nVSzF\r\n=orRo\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"11db09589d069ae2829b20bb7313ea69e8902dc6","scripts":{"test":"echo \"No test specified\"","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","_prepublishOnly":"gulp build && git add . && git commit -am '[BUILD]' && pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.5.6","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.16.3","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.39.1","semver":"^7.3.4","beepbeep":"^1.3.0","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^7.1.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.1","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.5","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.12.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.0"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.23.0_1614285435900_0.7994293632661691","host":"s3://npm-registry-packages"}},"3.23.1":{"name":"@yaireo/tagify","version":"3.23.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.23.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true,"contents":"dist"},"dist":{"shasum":"c172e22c632fd4c0902aa73b726277feba8477dc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.23.1.tgz","fileCount":10,"integrity":"sha512-Zrw+CUHwhZWG1ZOpZB0vK5Il969AyuOBngXe1E/1urvcXxAjdCPLLE6E+wEqv1e+CGybaIK7RiUVlZtBun+zYA==","signatures":[{"sig":"MEUCICon8LoR/exdES6R/2sJNFJSGt0LcwM0lftbBR0Nde5yAiEAntk4HO415tZce1X1rVIGguIrrq0H3SyAFZQE0H7ZSKg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":189438,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgRSAHCRA9TVsSAnZWagAA6WQP/1crBSl6uCsZ9wtlOQJA\nyuHolXTwRJbYVxmu96NsX98dz7+rt8W9Xk9BH8GoY8JMeJFHw+ocdaKpoP2F\n+TAcI7qiq0GVk99uAiG7scNLZYkzOSjfntDEX2iXAwf+uyT/+cO29L9NCrHH\nCN2h16U1MAIp1PJARfnNwhKysXILnQl37myjiNPTggvFny2RaZlM0WNE6uFj\nZi6AVjmJPQ0K48CM0bFbwYEeoMrorbPy+/PDEn9BWNaTskN/cVUsPPaU0BKe\nn0qyYMwirRPwFLVZH7RHKp+BTuSiwUAoqFg6oMGsbd5f4I8i8KsIMB8FHNBj\naTKDJoprdVnXoQNlReKnmkgtuQ1B9HUAN+5P1DeqOCLPTHWgJHJDQxCY/66O\n/e8CiA9YUqKdYSWhp5L2808G3Jfv207AafADAPEgUsbVmoNUMUdjOmqv699o\ngVFUZLVMECQMhnyJEc1GHOuX0xjc5oy8xVccI/DWpafkVVtcfL3llldC2AqT\nfodWhsdaxFeFzzFG+SlYrE6KreSbkPIQTBoO9k48zMeGg9TJ8EdAujaQ70FF\nqO0LniQ55qUOUsQIDPHsG1BT/dTB2NvzpefPQSv8CahWKe2nO/0vGhSSq/Iu\n6S66NWZyWELs62vgs9vW8fSONZ/wrDHU3bOEFiek16Mp8HJbakegLjIPze6O\nMmIE\r\n=3T9G\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"9b811e34da1dfe34d8f8643491b35c2b128495f8","scripts":{"test":"echo \"No test specified\"","serve":"npx http-server -o index.html -c-1","start":"npx gulp@4.0.2","_prepublishOnly":"gulp build && git add . && git commit -am '[BUILD]' && pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.5.6","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.16.3","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.39.1","semver":"^7.3.4","beepbeep":"^1.3.0","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","puppeteer":"^7.1.0","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.1","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.5","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.12.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","rollup-plugin-uglify":"^6.0.4","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.0"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.23.1_1615142918121_0.05729471264609609","host":"s3://npm-registry-packages"}},"3.25.0":{"name":"@yaireo/tagify","version":"3.25.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@3.25.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"4a0728cf68c713ae16c25d52393a910e2dfb5875","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-3.25.0.tgz","fileCount":10,"integrity":"sha512-aBRkGDkWdv6ZnRUCcA0mBIK5f3YegnxlFO9vj9zN5zSAUO90m2v5TsOPYN60sk6RNU/y556oc8jAmeSY7FUvaQ==","signatures":[{"sig":"MEUCIQCrpq9yIn/OGlACD/HZTSSle3UBx0zwQnlNraVqOmsOoAIgVMKR4WCV302umlzfxymnxLubfZVkyZ5HbyW/HcJzI08=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":191752,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgYOumCRA9TVsSAnZWagAA2acP/0Esv9ccNtlyCg/r3H3l\nKLeUQlYiL7gqLEKjpHm7TaoSJOaSjCKtLhWHvlL+K3DMP9gvic7a42+hNv/v\n3JZAgTwOO7atG5ncSN4aHvaQTJ5Ek4ByweSE6+GsCfcibxFJp0606oNJ0unB\nhzSdNJ9RuhEmV/qOEpPa2zlBWN2Zz8SvEPjEyWe4htOacvkSGnpwbPTUwpiJ\ncIKvS4VdY5jAsTJb/jbhTUxoXc7YkcN+8j+Usk8IGLTU5EZvxuuj/8Mb6tA6\nWgSnqNSfnN2a8NnwgZ3AqBl6QsiJ6RSs4zn8B4W18qvre9TjjsajklYLWMmT\n+Lj8w+cUvXtGRS56bzPGn8ROrXXgrpi9PypW2Yt9KOUipwet6c1iH+1inGut\nKXLvX5tO0HOmcKet8jEBhJ0Pof/NtJ5NkxKneuLmWLWslkoIX/x9U5HgclI6\n0uwSyJdheRMBla+YRrB3ifOVo8PJpWl1l6QfamwedZOUGHh4Ncx0FaiTgSgJ\nIVwLh+vlsQ57CzJbsZ33RHFxmox+kTSinDCmxI3wKOBxEPqQ2nvnI+TfiJHA\nBSfNwO1KBi8hx1/U1sq5q7xagAQV+9aYsaOJm6vfT1HJMEJcrh/Pkd+acLCp\nafybHiKenvFNSiQWwCYPOYK8NDXQ6LnzQ8gHa9U0MweBTeuYEvwKHccpM74e\nHOs2\r\n=ty2D\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"389b1c552eec490ede6fd3af334b5890f446f5af","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","_prepublishOnly":"gulp build && git add . && git commit -am '[BUILD]' && pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.39.1","semver":"^7.3.4","beepbeep":"^1.3.0","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.1","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.5","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.12.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.0"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_3.25.0_1616964517421_0.5480413360744256","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"@yaireo/tagify","version":"4.0.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.0.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"79f05d172ea3dc903d8d6b46bad74cdd3115e149","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.0.0.tgz","fileCount":10,"integrity":"sha512-2N4RB/rHIdBuA3bHz2Cc/Qz/+e3UfxmyZBz+9pM2jOexFISwSOiOGmNxQxA045IyfdwQRpN8WIjVtQWQ4VZVdg==","signatures":[{"sig":"MEUCIGOIORook7a8km+d6t3SsewAFD2odkfqlf7Ivz3XF+fKAiEA9gfbx1Nr14lWl9NVc4Ap7LQnUL3f7R7tpjPLg9+/Fi0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":192480,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgYvItCRA9TVsSAnZWagAAOJ0P/jvWuKF444JOZ6hqH5VC\n9i35XXBX9O+4Rl98nELGWRjG5HoClqMDlWl8W/ueKTzuxd09czMvc7VgxQsZ\n4GRTPwy+u5F6atpORjZP8czJhCaPaihph/ikbiJuce4xfdezXj/yrQn0JQzE\nbWroW08tjV55UHtCYKGYx5VPNk/eKVbFjYgcvMBiBZSuZ6ZwXnZ0cqWR8VgA\n4Rr3f+cKSLfVxyorLEDTdkU5pg00J7Lfxloqq1EQxuIOP/0yxkfzzPieJW1G\nwBS2FaBzMO2NVgD/LjZ2YGFqqgh9HPGLXYHS7IHvoANP/pMRQCwx2VyiDAuI\nEJ2euxlvGrGK7Stz/P8im4t+OUkNzZRLcsIcXgY+hbpgH+bHXsmen0J3Nm66\nJmazAmeCD1rbqVs32UTOIrFtnD0TSBaytjig6ye5i4lZeS0LnySodnWKY9DF\nPJhlWpgqpprwE9KUkeTnICvwDTLPCo9ZK+EYPl6D6pl9MMK4cF0VHf6Lz0gb\n9GIkQTEtpcpL0h0pWhURVUkYlDq+NbGHLUaSh9gSNg8AwtsFQVusqe6WfXkN\nyYKQuR2R2TrcnWE5nj7YFOZkat688UEX7vR4msRKTbnY+jkhXn45R1xDdr0B\nY4tFqBZp3MxmfKNmrgN5fIJGi8vHp0+VKFcFCwC8g0tQR2ywUqaavWCMUQSc\nziYo\r\n=YOhN\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"26e84d2c2242af24d271c8c0b5812084f7492e83","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","_prepublishOnly":"gulp build && git add . && git commit -am '[BUILD]' && pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.39.1","semver":"^7.3.4","beepbeep":"^1.3.0","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.1","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.5","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.12.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.0"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.0.0_1617097260612_0.14637914513058203","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"@yaireo/tagify","version":"4.0.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.0.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"6b955d8f3b53d2f5a80131f092f14975443b175e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.0.1.tgz","fileCount":10,"integrity":"sha512-b9TxIlaZwNy8ESZx/NR5zNGgQk5MIduWtcOoTbst0ca2BGll+Kj/dQOfGs4NmqSIU+XBIGcGPrAKVKITlOJIMA==","signatures":[{"sig":"MEUCIQCJ1qgugG9aCQO/8ELTyiAahAEEIznGYkT55+mKUDm6jAIgS5BY9iZGv3VpHtGEjXUL/b5UOTkfop/64462/lCyEJE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":193166,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgZyeFCRA9TVsSAnZWagAAiswP/3VZ9PyW+LKlqmd10bwn\nuRLOJuFbi5eMiCPMjD44jBB/ebym/KNcrnWnvRrPoM2dykt3Yg6rNHRI7Lcv\nlIc0VAYpLEiOaveP4s5YerUy8YhE0FsJerxMMNXIPhC9HcBW3a7/xHtsTrZ6\nCdqoH7ZQ28/g6s6Ui5WLK/pHl1FgUrZS6nyUN54NP1NIS2wTJhMgK6/2E6gn\nz/N2KHf/FJVG80BmJrzwQ29Ze7DWnOehsWDNjZUXmlRofDlQOJ4Tny4xsNA0\n+naDhNTXYog5o92EZAF5CH0SnNNaUDO54sxO36aotFo+n3+WkUNNvcY1FU8z\nDqjQ8cdr10O4y8bDFeaiLTJQgxtlhgk1nTPRcmICt1Auiwb6M59Y7QMZ0obT\nOzOE27WkYHO7Wr0xFc0hDBtjxvUrHYrx3RUfVzrTQlydlyNhzkbJst0saz5z\ngwwwWdnL748TLdhiQf+/iyrFtUAA6srNfvtxGCitWKUzLWXwOQW9koOpu+OG\nAgc+T+eRb5Ed9do+2+ql9+e0vkbRYVPtIyLoStMK2hUT9oLGwCjBd0CysZZZ\nPmT6qDb/mHNAUP+N/wSfEsimJOB8fFu7aBIxn9r6Op89Vp7P8e4RH/zIWfkY\nHzyL8x62MbBzKSfgz3T7KlG/R5MNwR5qFFI0PxxDj7hW+NqAGTzCZ5veuzQn\nFcsC\r\n=LHoz\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"0e3eabe3c74381982845a8cffe83c3bb7bbc90a6","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","_prepublishOnly":"gulp build && git add . && git commit -am '[BUILD]' && pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.39.1","semver":"^7.3.4","beepbeep":"^1.3.0","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.1","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.5","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.12.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.0"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.0.1_1617373060442_0.08174989562847101","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"@yaireo/tagify","version":"4.0.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.0.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"908809986aed096ce76f81333fe330097f733a60","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.0.2.tgz","fileCount":10,"integrity":"sha512-+/J5TcAIOuKET4qKeQRT27BMQJClmUwLubwYLidUU8hBHnjU/G0f72AlN86JzGu8DR+igIpHfeSCMqnmttmwKA==","signatures":[{"sig":"MEUCIEcyyRDsZhOzGqYm8ZJ/RkBvpeAHLOgrZTtQYi9SH3kxAiEAyMR2BnPmGih109cGAmKWc2NyPu6YwErcxDS2cNjyxyI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":194782,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgarziCRA9TVsSAnZWagAAOSUP/1pxPTSrvBmm02m1fD92\n/j/TIc/oSpvW/ueyT95RjjFVp2zrqB1XxN2+3EBxiXA2aOT8AvYghfObRwt/\nEGtI3qEQtPfHo8kMjQTHMcVPYGFPqzqjzq6sPZVcaK7uZRRX4xpXZMyxYHhR\nvBVenbEQv8CvXkuHeM5QWXi/4PMBNU/jOqT6BrpfTlRfsHj5c1SAd1XseWgl\nz/ZQDFgkcyLo8tSRRBRN9cVTzOuiTMO8k6epf698VeXhuMfJ/xPUaDlHBKZU\nuh55dD7lnlN56+eReMuxaNTaZ826SeFHr7tbD1SsAs1Vr8NM4r3pCyG7l/8l\nrv5F03lb6Lz70ODhwEjeL5ib/+kcros6Vgkne03P1nQUCdjKCRySmsjE6gpx\nq4C0iFNSHc+u/AMOe/73mQ/pfUxq5krf21Ges+Llc6ZH9Btv8GoFDtRnQAM5\nB2VMdt76YKsq9lu8epxZqWvqnRhm5tNNAMKkaG2N7o9hY72AShlT/2sUImBD\nB3neSa02LbKlD4T10DguPOETdpzUpF/v9Gs2uym4p9iwrsIzLfRaFpAVr2y5\nOmUbU2gM7hhhqsiRc2LAilasMrUu5G2b2+Xu699bpDr35scjEeuNQmUpjl80\naFvZHYZQy/nBOTVUWmB8GGeMvrfz+Pc03nKx7cRaQMxjdzyu9tdUc5TV+YuH\n+Qsw\r\n=b3xZ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"0e88c371156ab89382fd02f09eafa5c731e7245a","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","_prepublishOnly":"gulp build && git add . && git commit -am '[BUILD]' && pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.39.1","semver":"^7.3.4","beepbeep":"^1.3.0","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.1","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.5","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.12.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.0"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.0.2_1617607905800_0.5425806801772002","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"@yaireo/tagify","version":"4.0.3","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.0.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"9016759b8ad4da8ef0064a11290ea0f464296981","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.0.3.tgz","fileCount":10,"integrity":"sha512-xy75lDRoxVbgl7N6tY0YZsdmrK8hcM/wdu7IU+Q8BgJh0smd7zCiLbi3W3Wq/e31/dM6UJcXkaLsx064ZJXd7w==","signatures":[{"sig":"MEQCIFcvNZBnyTgxMxotvR8CwFjhyXgZF79AH2E6UWanjYW2AiAHF8+z8YgLMic+F+MeLAgRSaADvMM31nrsZEQYS5QgDA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":195134,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJga0ivCRA9TVsSAnZWagAAsAcP/1CbWd2p5et/YbYTT05O\n1uYmVdE+cb0BqS6CjpQOq9InhO2PC8lhVaYXFGZvV+YSf+ncs5QDWzALqJu0\nqRMiI5fkcD8L0dp2Tr+dhKRz6bGcGNtnXC3rBXxleV9tPHWH+bNv9IQgQvsr\nH0Og6Kdas5ZtE2YIpO5foiX/HTxZ4/luYTmPZs0qH5DGgWNJFIt/ou6uStos\n83vocJKoIXUMjGvoeC2MeB5Q6clQoiVA4nOm9ZRVV+PVEoyq9N5DIqw/BNup\n+C6iiCtTBj0gqbTnpyISLHkJnv4Ulv2/ujofWndjfZmeweICJq4xmLerwCAD\nxFeOijdFqfhOb2g+Hl2iOfuLmodzyv7QYfFR9kyFsWUXOy4IFPorMP0KDOrM\ns5Rk1UmgEW3f0eXrjpZD9wG/I0+Z0I8Miml6TA9/mNN1gVToVSrwk5AJpuTE\n7XBBOwHcR73CzdzmX8RHXEJzLCPwNXjKkRgMYziOqjixhX+elo5amXZ4lsd9\n+sGvaT01g3jeS1j6J1Ed/Sn8uTNsdQgsDv8qmcS3eV0ArhVECWB7fRgi8qHe\nRi4DBfM58sLsele9FgbKxlK4lspKifTFa5FVXXE3/B/jGa40IKYGJnITT0k3\nt2eE0sLZ0kV+QGbpjk+v4ZW+/ceosA2xgdJw8pZaLjT0u3xemONWtti9/7Mc\n6KIH\r\n=1e6J\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"6453e1e8dd869df77d1cbf9a889842e7d0fdcd1c","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","_prepublishOnly":"gulp build && git add . && git commit -am '[BUILD]' && pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.39.1","semver":"^7.3.4","beepbeep":"^1.3.0","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.1","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.5","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.12.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.0"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.0.3_1617643694834_0.4156089871467519","host":"s3://npm-registry-packages"}},"4.0.4":{"name":"@yaireo/tagify","version":"4.0.4","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.0.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"998f80b31c0fc98b76523c6dbfb8a728a1c19ae2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.0.4.tgz","fileCount":10,"integrity":"sha512-7m9ssiYFobrMVLhjzfuDtP0s4eZaL564pGEvEFTw6mJ22nT1FzWA0FqhYri4mcOGW3iRkWz9tf92UUJmBWMLRQ==","signatures":[{"sig":"MEYCIQCpY/FOiJYbWeYAVXmcttrpmQNbg7dmrCbzUpY8/OkJ0gIhAJbfNlMZlTFq9ZTc2NxXsQbPAxBlQspNBxkQ9TfsD5ij","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":195437,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgcf/GCRA9TVsSAnZWagAA5AQP/13Nk/VKthmUtu/NGNaL\nxTA5vCykqEdSzB6h6Tq3NHLKRiDXt1fgBxqct4jLDY3T3BqzvEAjKpfFCMvy\nrJ6f5kEDcmtCD071P4G4d+iAugi82RjgaOCFHSDK0OOCQfRIiGoBjfUEC3/d\nt8kbFfa8IhoMLRPb6V41666trn/yuC1BFtslSu5p1X04HjQVZV0l/7Sa3NN9\nFZHh8WBMVaZzwBkKWBvxo8RkZsv9Mz8SQ7ups3eYmcS3jlsPJdybITTgiGHm\nA2VY+2LItkuYW6m7zf05PV2ljqQ74hmaYOxvE/LCsONXCOn7IH2w8d1l/msG\nOSJsxovqIBt9lKlcvIW6WahZuvwtkdDNviUJlpEhFRJ8GWzbRZR7RHzmgpmW\n2PrDF72VQp9q9rkYly8Bfww50L2+RmduFDOOHndMsdIhjDoXjEWml2XWXbV+\nxcSyk4zkYaWRh/F1TJ/kMcgxqt81e5dDrEE/WcFAwBG34S/XngPSAP054p2A\n9PvUrqnvIkOtPRYiWgiU6GdzYk9xypLdOWaL2FvVrYnNLz9sV4Se+LoU1Wkb\nhpQAbmLUIQzK3fEr4pGNUYQUaOau2OYNh08LivNaScYrBD36DCm4fFyY1BbF\ncGL4X7OgHkq0qCTgyXftUZrcPbnCNVbX//KqeceUPqQfrgfqPE48U5RUEXeg\nG18U\r\n=ic95\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"430bf22661f4b6f25a27420aca5434c161cb11a3","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","_prepublishOnly":"gulp build && git add . && git commit -am '[BUILD]' && pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.45.1","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.15","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.15","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.13.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.8"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.0.4_1618083781796_0.34940946390151906","host":"s3://npm-registry-packages"}},"4.0.5":{"name":"@yaireo/tagify","version":"4.0.5","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.0.5","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"476bbbeaa08d53f6cc469b6309ea1540dbdad2a8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.0.5.tgz","fileCount":10,"integrity":"sha512-HCIn2bCQ114SBDHafUR+jDutKFDbxDIjlWygg3eQBVpmJIcavKdYX6MdW5Jeh0QEcuDP4Ihby9QnZVNbv3z43Q==","signatures":[{"sig":"MEQCICrUe45QGBiYcqXhuQscGPDLyq0PMkc75pnMlF1MURaMAiB/K518Q1HKp2KKfYMifBI4A+JIPrEmuRvS+l/ovMhvQA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":196272,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgeKpFCRA9TVsSAnZWagAAjdEP/2GUmola+QtUabEJhVgp\nkHhV6KMNzRZRFywYIXkJNK/JtklHDIv70hU74o990gMM8wpYQUbAFvg0GoEq\nYrJmL7lTTTQDco2CAlAiFSYM2cbXcYH6NOROCb/puES7t+3bdEPvVh2pHPFF\nEGDzN3qLNes2y0FQZ3dJxyQogNzb1679hnFM5V1sYrFxCp6FpZGvOc8l52KR\n9aqEUG70Ko+Da73wqWhxRC+YJq6RPKph34IAtgX0m8HDlOnjATSTpT6Q7Gyy\nHa9IyHHf/ZiAlpC0epV6/U+tEQHcJ4H5MskwB22f+OLGiIpSSsbMpL53ax+X\ncKht/jTNye642CQSv21jNeuy3kWOiEK7CM40nfAM6S3jE0AoqV+n7NdPN16t\nymSW+4Wi5KiUioziEeqLA5fheMLEHkXGw6x69sM3TVx3pW0ViMMt9jRNBOrF\nFgyiBZBk7GBm55Z6DQopmFNdWq0X3IHJ+NAIlRsh5Ag1kTVuaMqQMh2+DV1t\nFjI2zi1jBMQDDh32ys1BUnPeWwmBAe53xWBb2H8wxArKqCXlAeG3bKgehRO9\naVxjqpXsBpsP8zex6x/Qjkyk7wOCxf9wsH6zug+PvIT1W6Kt4TrY75niiS8j\ngkB33Ac8hO7h1IYYzzyHJjjB520b2HMBbLQ54eAyjv7qejRCMhK+WFd77Y7s\n523Q\r\n=N7UW\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"d38e2be6ccccbbfd1aa7fc8b349c0e29165f4916","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","_prepublishOnly":"gulp build && git add . && git commit -am '[BUILD]' && pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.45.1","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.15","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.15","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.13.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.8"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.0.5_1618520644409_0.08386297224337125","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"@yaireo/tagify","version":"4.1.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.1.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"53d1d7eaea8ce26de971198a3ad9794ed8462bcb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.1.0.tgz","fileCount":10,"integrity":"sha512-a8bHct4HcfzjKGevcVKEPCMDF/d/1q/IwwLA2GuyxhEeNF1EDOvEs0UXUxjVSQ72+YGVLl/yPhjObewGBMHWyQ==","signatures":[{"sig":"MEYCIQCwVtMxoqCki7jgcA/iyTSrQHEsI8pd39lg1eSpgCdy8gIhAIEoMEnHM6cveTzg2gUy5g1HQaZk2UxdNzTay+i/uRVJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":198219,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJghIhhCRA9TVsSAnZWagAApFEP/2jt0LneoMAQb4wD7Yvd\nL4gZLUOM9iwZCv3j8Ute2i1rxfbURuUQ+vgjySPWh/upEnHa+MKPHZXF0AJA\n8xmD4/m+sofEojv5igs9b02DoDDNtRAiCMunlk7w0+DEZ7l9cLL56/o97eOv\neBvnfcGGphxa61OI+vWi4/LUg2fxHyCMVqA8mbRxeVDq0jZXArskWGgUFioX\nTtrL628gUB966wE/ZFGBoZzeTN3Cr9c8g0VQcJd2YHKI8rlQ9l2rlGfD/zzP\ngHB+fhuZxfC2/EwkXuhwaOuMVgVdslxxPMI5BYgS0UWbMs31hdDhq3vNSnYJ\n9R/kAM07LIX/VyaosQ60fK6QkKzaBEjvEwnxoVAHVgKHQQq8FfbAFRrq1KcQ\no5xmjBZ9w5AGbllZ+DFN7bCHYmfSWAsYgRBWHfszJi+186jxYI84zNpDmnqu\nKSKpxhnp/XLO0YyucrTkx9qcRgkiBdqjYbgIiPpLhJyxyvb3xiiysAHhrhiA\nACTvziBFrWTJA0tweXjZsgAzrYngqTSzJpyNnAlkVIXdifHQ6ib6WGpVGX7a\nBlYsj1wPR6AwKZZ1PUO6uyQHZbFf+mEmTIA4m5P5CaICl3KTXSiMONvoOEM8\nSgCPgNgL5G7pIYsisU3Cb7/YRci1BIuWF3QDey4xW7YNKrR1LRfh+4h7ARjb\nDFh3\r\n=Y0Ik\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"f6ca4f6a0e7eb4b853d0c3a80f03a0cef36e0d4e","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","_prepublishOnly":"gulp build && git add . && git commit -am '[BUILD]' && pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.45.1","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.15","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.15","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.13.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.8"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.1.0_1619298400842_0.6518762549963522","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"@yaireo/tagify","version":"4.1.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.1.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"1bd8c7354a661ebee6da5f1a811fe0c8b4487745","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.1.1.tgz","fileCount":10,"integrity":"sha512-sHR+/ZPg6sLPAkLiwcO65uGgNV9RfKkt4rR9hp69bsNbFfQjRArMr/fYLonNH0GdxYXrlhIh62GzRRrXEMNh/A==","signatures":[{"sig":"MEUCIQCBC24NII7QpbEmhFVDFW5ak5iL/lZkuo/ZWloaH/dVCwIgbEBssE/B2BJ/+sqTwN3ojt9J90wfJyawFMaMUSxpI8E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":198445,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJghIuBCRA9TVsSAnZWagAAxXcP/0PpqNrcXm3b6N+oAG6l\nvLZy+1PpPfmBfIu4T7i2gmCoYQraoxizs6AZowhu5snzXGMMYjzbygeji8pg\nUJFzkrQ1A5exqJwq4aCNUtxXKILlfOVcWWg+MiCU5gG6R2Fk29CQnSiVdoIS\nLRrMJeBUjfyQS9row6pbkRCoOQPg7YhxvOmDT6yyUTU1pywb2wuj1imwkoDR\nDk/4y7R9AttIYETMQmZFgbjjLAWlVi6uG+8f4bBy8BrpSpnbCB6aFkyap8St\nqysw7xUCIv6yolSm/blKWq4NEh05U1Y06HPvtdQMMQ2TQeA2JTGe9t22zHIf\nSQb2lh1L+AVkwarRylN7IFmSxY1nX8EUaqcfzU7Sz7MIeUjgJHAQZ1CzIWSJ\nShmnKW+WhLAisLtoBVR3lUJV3ryxNGUGO/EaawiyGnZvUre2ozNlnBE40Dgt\nLCCgJlv71k3zPwHFwwxfcaVzYMPgktrgiro0jWuh7p5OJOaHs6ZWfJYNUngM\n5FGU8hRnzuON0zVghved9Gsg3al/fLVZcjJjSpTpicNcHlxHUhEhxFEzru5s\nxyGu655K0X8os4vf+CngEgMPtmDn+JR1N9Ib2U35F7FSn2RJ+Yf0CaLUnUpH\n991izLrnN3C4wA+w4FPoP1Q9ucTwoNtLYBNoAI3R3cf5Ghnaud2bj7fFB0Fl\ncy3T\r\n=thlW\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"2135b725bc32c0c344994fff5365afecd817de69","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","_prepublishOnly":"gulp build && git add . && git commit -am '[BUILD]' && pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.45.1","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.15","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.15","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.13.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.8"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.1.1_1619299200865_0.582523144321212","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"@yaireo/tagify","version":"4.1.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.1.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"36b3adcdbf19dc65a368ef0a3e72867a7c8dd4e2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.1.2.tgz","fileCount":10,"integrity":"sha512-KrO6t2BGJ5uDY0Tl3VcEoiXURY5g/pxtrQIUmcx0gqdSfE6XzrZJ3JPRxesU5/IfPSKiL30a0xc8JVp1kiUqLw==","signatures":[{"sig":"MEQCICc4jto6srEEdirKJwuW3nuzeA2qliCz4z9nbisTWv9wAiBC1aZ4GMD3h8W3kxirEdl8J2SXijEHWRGDFLA6DRuHIQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":199879,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgoEinCRA9TVsSAnZWagAAHs4P/RCU6/cHqsKw4SpIwmBx\nTV7tv/IFR4wwi6AWkCtuJLVk8Z5a81iZ6R89BlNH7j1e15xU0VFR2KeyE+rQ\n6KwmI9RKaM5vsDQO4SI+x9ztEcwT45cj9XiE5Iei/aapww5LDmGeLZYP59qv\n1Zv2h6/8KmJb1JZO94sEYg2pG7V4glwI/K6MDHsRhn2fc55+lpr37KfumEoX\nBE3NrRgd6hobVZBpUtLUjqqayRGDHO4GzUe9B8/NZe4TV1MWrMjNqn4ReoYT\n2OuYMgMI8uatgtOfg+HnLfJHId912rO089HkKLcMKEVgn+3cQGK89+C/5wTl\nKLRxSSddEIeHea3GxL5+fuXOAmyrP5vKFr3vZbhwGGswuJGFbVH2x+1YzTxw\n5ntFgwBqKL4/NZdH+xb63Xkwi7KYEFe4s9IWmTjnwcnKBvMKWJ9hQgL2VoCk\n4lMtsqdQ6NKJrXCVoAIatM/Ba6tH/LetshBfMl7AhquKY2748mTZtM+AGliM\n832rI8K14KELDv2OU84jMemwiOH+WcVLMCXy/Yc6Ng0nP9Jr6ELINSm6VqXf\nu1vc9YbkY8cNMrS6Ba1o0G+irbOsdvwhT8GZC+aAMA91fBVuEpINp1WDu3Ie\n9aPIuASj/2sJZFeyqNv0dBfdg/h5HN4E/wUb+sjSvNj1nJhiQ1wmDpM7KUnE\nknG+\r\n=crFc\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"c34a9162d96b541584b0843debd8ea52603c7bbe","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","_prepublishOnly":"gulp build && git add . && git commit -am '[BUILD]' && pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.45.1","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.15","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.15","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.13.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.8"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.1.2_1621117094370_0.6303374919204743","host":"s3://npm-registry-packages"}},"4.1.3":{"name":"@yaireo/tagify","version":"4.1.3","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.1.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"c2d21b45bea1718ef3bf6345aaca5f394c021bc3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.1.3.tgz","fileCount":10,"integrity":"sha512-ShcR5dt9l6t9/ftK//G6qQTq3lgKNuwMuO6mOWOXoKLZvF4R0BBEsr34du7hJ9E60/SkYBfdrI7lFozgxY4aeQ==","signatures":[{"sig":"MEUCIQD74hHjoAdI/yciXMoKvIQRKxEoWqaV95KwlBpfUaNb5gIgNPEtG+U+BQBQA1YbTfzquyXj+CkmqAU6lkTnAjK7JAM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":199903,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgqhmQCRA9TVsSAnZWagAAhDcP/2v0Eh5RVi7VRC2KWcUU\nNph8HuY/FVJfufooG3lLX2zegYk2t/M678VxVAcbDzxEf3g5NR5J3psmqFxd\nutL7E7eEUnQeKfmI1XD51Jx4vBal/ouirvkrhJLt3Aitx3sdq4YeqMFO+wOL\nwmkYcLMeLMB9qpdnvuixIKjiqdPBx86lehBJP81Mbcctwt3guAw19tGgCeO3\n3wF7rjRza9BoGSi8UlCfmUAY4ZW6x7wT7lxUgu1jHLD5yzF21z9TX3+IaDMt\n63QZKdh4ge83pEgah2hBXzthgI32B/8Dc/k3caMaKah9wU6Pwn2LxY1F78Y3\nr7e8+9kf5vuP9f4q2og3GvKlE0a62rKq43MoRWowV69xNA+RiK5OUKQbIARR\nwVbbC9ReRdWsbwBwL0fnmbRIXfaRSPz36qiTZXHkw7wwkj5DyyoeS2RPV1Ju\nOFOxvnIvRUFRqPU/T4OGXd1L0uxj2lQlWH57d7k4ewo/jycmjF+36iJPp60D\ncLf7Nucn7crMCHyL9L/BLSCm1ISEgSA3U9pBR+cL5pz+mBHPdaHVaa2oDH0X\nlgWfnywgAFEW+fy2uGwIz/lZmlzQgAYEb5+ylg+YuyDMSLkFbkGNyJ/qf8ls\nsk15Gq4Dej4pvY7QoigaQnsRzE4zjGsRKOXWth+6VIZeRrCNg5/sOepadDwV\nAddO\r\n=2wIP\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"b16eabe89e842212b456e66deb6dcecd9b5d2b02","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","_prepublishOnly":"gulp build && git add . && git commit -am '[BUILD]' && pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.45.1","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.15","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.15","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.13.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.8"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.1.3_1621760399809_0.6054738730261056","host":"s3://npm-registry-packages"}},"4.1.4":{"name":"@yaireo/tagify","version":"4.1.4","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.1.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"bf83e83c987edc9497822b4655d9c2128c73e32c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.1.4.tgz","fileCount":10,"integrity":"sha512-DE+n9ib8unKH8X1Jid5/pBEpCl9ecUl0uHdykESoxLl46Ug1wjK1cjIlxYqZUtL2drPw09SeSrpI8I2Io9zAYg==","signatures":[{"sig":"MEUCIQCI5EYlm6zkIB2HVskY6lGWqeqvmBk8sxyTEvA/rt5A8wIgcZZGacxNHpyd6Qq53mXB1uyn2FdRZyDc/P1LyU1jdi8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":200245,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgs6dBCRA9TVsSAnZWagAAgx8QAJTRbWbahdL73RfjhMCT\n2/7jVTZ9Xl8g9IfpUH0x48LmahSspMIAMXrhwtWevkzSV1lo5gu7d0NiTyOZ\nFHyJ7en8Iow3Oy64pxFkiVa8rX0qiHcYv5zniAfsyAbvR+B+Qm+UcN2yXVlg\nWrF8Nvk+JdqUCVQyYIULpmZXfW8JutjgKLlFARjaW5ALe+MbymUaHCE75nIo\n1d6iXYcGiCUqMmsJ0sIxACcoeGUA0T330lS9DBt91JRW7IvJQh0FfXTkCDDy\nNr0JH4TN5zfOItWsIuMwsxPnVTPqlLf2LvS29sXVnLrXF2tCOvASGNIghBJv\nKFWKR4zNXIGJdI+GulAWozEklF5anGsNjD6Dr82M/ztCfeP0SiG+Z96KVF12\nDdmDxs2/x/HyhG42bNKiz4wRYp8sUACwpZtwkpHlyU7Jv5z99CAOJINTcBka\n80bsZ+1anf5G09Doi1RQUDVjrql0KsZl6MJaMpXBqYbdT96EA0FivPyBibF7\nEJCcaR5pFbUMRqizCRGpWM4Bc16l1SIERR6ArzlJDOwHV99YF7zxdvx16zWg\nU6OnwBx3kkKFJ1SRv/MZrVdMzrDfJ6xWEhZYa6xRMjIS37FINAyxrir8WhAH\nCnLfc1PrggJwt8qJF1oKI3OcZIhnK5k74ip+EGrhZ5L+HHYZ+bje3FMyNpwN\n6v1a\r\n=034g\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"8603e99f378b04dcd419bf9007b1db6cb78c3d93","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.45.1","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.15","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.15","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.13.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.8"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.1.4_1622386496647_0.32073116025627013","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"@yaireo/tagify","version":"4.2.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.2.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"ab1e732c1273292857531ce98eb6c06c734b0234","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.2.0.tgz","fileCount":10,"integrity":"sha512-/lx4BfpmD8gQhEWil7y8y53C7LoQD7FbFy1BcnotjqUybJDNc/sNpBoiy8L+3UCIQsSk4z8i9QZFxU2B4Q/Z3w==","signatures":[{"sig":"MEQCIBL2Frp2HGL7M/aIZRiRmN1Wxk7RI1NnL/UgqjFLAZtKAiAMllKAJ1bb0/wWYhvjMSqjwFfvD9Pix4LnOsyKOooYKw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":200836,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgvLquCRA9TVsSAnZWagAAhi0QAJmi29DwjchLg0lMdphP\nnR77C8jUb32xsN+ittbl8/zvEghF30vbTRq8UKhB2uhL9P0arN1QbZgycXdt\nXOKXRzM9sFbSJdrW8fbG1FbSGFE9L5NuxN31afxNKHm0qaTnnAroazzo+H3l\nF3JbPtCfI0NBIHtFctumascldWXuI9hh0QEa+dD0l4YimCJUdNS/EajYuOt4\nDLWzaqXnTKCxWcMe8D0yIvV6mEJFN4vLHIcCIiANNsrcZTe/1g5vvbnhxkOt\nzWsOtvaB+Ws1/5n3FHt4KFOw41DefMUTuSzGENvSe8gEoTuDcdpTffofGX/Z\nLnOUiecVw+9mxjEZw1qiUDqJlGOimkOra165hmyO9NZFIVajku3wmDt23XN+\nokAk7xgR9yVfQNnNSbT017Rl51wbEm4rJm9XVVubnKxwP7X3XYkFE9+7wcU4\n3vtZsBTxXJItaX8RTj0rrK1NG6VoZnZpuF3qiOLg25KKyKPQkY6oFBbe/qSD\nkD4fOqh0ybT4kKRL7Ae7OWZN9yu+d9WSWWcQch0yfljhvx6z35WtudztPrZA\nQRbWgJ7oSTMZQR6ea2HHggBClIv3Umm6mFXpWol1lfhTxOBkcUivna48lPs2\njUDDR3mcFeV9csgfXZrPS2QnsGSgd4IcmljGPHv63C9kmT0T8whfiCH8ZDpb\nWS5x\r\n=Dp2v\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"2e43d698779b3d476349dd459830b89fd6be5e8b","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.45.1","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.15","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.15","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.13.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.8"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.2.0_1622981294712_0.47748961094578024","host":"s3://npm-registry-packages"}},"4.3.0":{"name":"@yaireo/tagify","version":"4.3.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.3.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"eeb6755cbadde215aa9c34684e557373b535217d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.3.0.tgz","fileCount":10,"integrity":"sha512-KYDFQMAtcOJZ5fH8QiQPbQVmLfJPwR48ZeRBPN/IqWQtDym6N7s8yYFjGaIYdAIjorJnPeCLO1cDbIpD7278TA==","signatures":[{"sig":"MEUCIQC21Uz2NCn3nFfSTDD4HXkiEPM1EoRzBCxaEL2mCwYZPQIgSz6iZliBW6kqS1XxSdBFOi9ErjwLhrcHL0n5xWk/S0Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":202015,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgxQFdCRA9TVsSAnZWagAATToQAIicU7M5rFpfvDBOHC4N\nCH1Yz5ng/3OAUA17wXbW+l5QHWjJnSg++PrA6YUdUxDIxSyHgMhFbdbz/lRy\nO21bWViF++oQCsUjiyvUiRoWEa2W4kFhe3sLsQAN8Rug34+AAR5dAT9GHSb/\nADyleQ7VhQfJ1EiHQ2D5HkAJTucKDtLzI6ae6CynIUJ22Kz44pxCvVKG31bK\nMhNniZGsh+ddrpWzHv4aCs6QNXO+gRPYtEzPX7IXSz8fws88VF6nmct9lc79\nMLXYSveatt70AcHPJBs35f4G/hwIXRLEhzguzUekQzt0/ZOyAo38dSgI2EdB\n1oUSCXJLB4UUcwUrllwsQ6J78VXaCpULpYlqPg7SLyhPuot+FPfYAh6id0jM\nj8QEV3OcARWNFtLEBG0sGZYsFR1CgFF63rBLYa3fJTpBi4HWSrNVSYazbfgm\njOK99YSH0thffbIrFPMr1D7uSmlKJ8f/BBp7OEH1sXyRFGRrAzQZIOov3k2s\nj2ydtxDI+wYz6AO3IUBqertCt07ItBNrynOXhc6618Yvhcj48qNFp4nBQsw3\nx32k/uYg57AVT3+kSCNPSfHgOHNVLbJ6b7qM85QLVtyDRA1fsV+O4l8BBteX\nLhWWbqXAzOOZtwD9+QnBgB4J7BmTYZjL+mLQmfoYHoPuTvAxv36Yv/PSVJvL\n/yl3\r\n=Dwns\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"c80d88ca83bf10423c26277405e5813502ed1fe9","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.45.1","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.15","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.15","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.13.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.8"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.3.0_1623523677531_0.8704060664305748","host":"s3://npm-registry-packages"}},"4.3.1":{"name":"@yaireo/tagify","version":"4.3.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.3.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"dd30faa75db921cc6504dd11d1324efe93771c5f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.3.1.tgz","fileCount":10,"integrity":"sha512-IaHoYFrGdpH5CJi/Xikf2vfFQBhqAvVurIbCIWmon8t238O46THLett5szS1EKEh2nU9UVP3dgISci6czQVJQw==","signatures":[{"sig":"MEQCIDpvB3YRg5ib8+f+d3chlCCHMulkWXZjqgJww4UXNs4HAiAn4lhCh4hYsjlBhU9zWGps28gtw3+Zur27++8mdCyUog==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":202015,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgycrbCRA9TVsSAnZWagAA32IQAIl4T7PujbYeEXchkk/l\nMKrO7Za4oSKRR/8i1MoDbXq6QSBzVoIhQOf4AOPHYgXkQHZ8pF+IFiiU9X+i\nKB5FYg8/VgjaB9kfnzH3jh0aOWX7tHlixW8lynD2xiovsShtHPryhl5fsBqH\n2t+3mWaWkCfYIR0srBFpz6Yp3ZirWhwp2wiUTnVNFx2l+BQCWj8nFh/o6dlW\nipZyx80Xw6DYptq0eGGBH4slAaRImv2V+ZCSR7oCWTuBxB5bTIp58O1Q7pVe\ncjFaEy7UC37uZsckY51iUk9pqYXyTp3jk5MDON0UjFXyOEI4Hlvkm+lYGapl\nYrLLHxh7atSptBGpWIy0HJDKRRnHPUP3KszIAb43QfJbjz/iBXf7zi68oq+E\n7pyG1hroSdfr1zoVv6HVOsUjAl0dSzrsc2SjUDqVo1Sr9uexQsQ8zBGF3WO4\nEpyJCLW1Gz1op2RGbE9z5eJSS/doR5mNbSOIytIEfAFWMKcTxshR9CaLSFf7\nVxOvbYa66Y//UFrKN77qmKxEKjEK+ro2Cw7TekxlnSSBr9jEK0Ig7+TIKi53\n3tmeWRtVYvN+eAvT6PJEnMtY2DN4eTVqzT8wK11C2s252+yxdacZLAIcIX3L\nz3BNWImRjJqfgLJm8kMJ7uuAz4eARtNuf2fUvc5uZZkxK/y802o8SEf0PPBW\n/U46\r\n=fabP\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"664efb0ad828a7b1a5ee27d552c0393f38f31a00","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.45.1","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-git":"^2.10.1","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.15","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-filter":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.15","gulp-autoprefixer":"7.0.1","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.13.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.8"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.3.1_1623837403421_0.7454809386414885","host":"s3://npm-registry-packages"}},"4.4.0":{"name":"@yaireo/tagify","version":"4.4.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.4.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"257c3d5642c1367a4641d8fcf2c4cc14d30fd470","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.4.0.tgz","fileCount":10,"integrity":"sha512-rh8zi7BSd4qrMR2aTpdUyjEFmVGtArAEBWgJ5jDRjmjk0L1LVyUrhFTczGoTbRXtaoQjl2sRtjPFWikSG1P3UQ==","signatures":[{"sig":"MEYCIQDSWOwWz7V+SsLXIkbXptW4cvCYJ7+Tm0lk9qopahJvTwIhAPMPjPgNr+TVC0YOiHXna0wOQ/tI+CzZoZcBeJ4xlgJ0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":204016,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg4NiCCRA9TVsSAnZWagAAPYQQAJYvqKCKTMx1is/US6+n\nM4OIXtSU0L+CRHwr/Bz/rmjvPF7hgvx590CIttL8i3rkEPqUs6ntX0Sdb7N9\npJdaOI5mRsib6D9kRNbilWXJTHBAD7YYcWAvgw0Kd7iXcVIsvKMyewyNbvWI\nMbw92IZX0NuKgrvcZpDqeW1qS10+Im0JicjiRJ5wbWLDxWWNfH44Ta2l/DEX\nAo4vVXK5++H0TX/WbsW0bp565y8fajMMwzFUVAcH9LmlKVuPK1XvHSHBpa6e\ngrt2arSlnMO8fX/H0ZQ9VUd6krYoopAQttqQTSX3T2KLcNHahQgB458XyWv/\nrxyrE3N+bGD8pimPTwY5kkqCyZxNz4b9TQi7GckDlD+b26LXRg3hedvDb+hB\nuwiaDpwWwBJd9nSwpNcDdEi/1Jt2GVM7nCPALiKkoH19SOJmGQsL6MqdrK01\n9Ibvh3ubtIg04q1BdCi1OYNtZQlEa0LDIBfrCzU0WMi3pa3Hv1Tqglov9EMt\nao/8JGNHH6l3u30P4GyIKsoqODy5HZd6FcqRIEMaRrnB9Rwkg4LEhD0vidYj\neteS4v1IwEZwgNFEnt6z89xY9M45gTrB14r8XmGEF+9P17PJBRiTPKEG6MTM\np8zodFKBwkh/sWfXV32RlP9DOFyIVuoHiPOlcaDAZupc+MyKYfv4yE11uBnW\nJtRd\r\n=Sqs1\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"eb4854bcac6b1f6311cc77e8c6dc1028067c90e5","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.52.2","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.15","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.15","gulp-autoprefixer":"8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.13.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.8"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.4.0_1625348226149_0.6116299188673282","host":"s3://npm-registry-packages"}},"4.5.0":{"name":"@yaireo/tagify","version":"4.5.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.5.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"71501213fac39a2d3f6e2b41ff2d0292c74adae8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.5.0.tgz","fileCount":10,"integrity":"sha512-fYy9IVFt0i41KuTX3kwJ1sEzGeYhFe9b6GGDGIz/La9pyG1VaGJPFyKEtsDkkyNKptRU83yXSPtM6laldF1q1A==","signatures":[{"sig":"MEYCIQCWbx4ecnccI4Yly2JUD4DFAaiOSU9pzyTir5JYKPiqrAIhAJ54BBWdQ/LuFwWm1NN1VhnJ38nMfzJlPkU3YHb10V1v","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":204964,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg7fpTCRA9TVsSAnZWagAAnuQP/3098/t1C9vSRx0AhXpN\ni6uFu4Zq7tLrXkyERtLjlwV+DF8hufLWSLuD2fiC1Qn4lsyB1YamXhRNuGtz\nuArPiUw2bz/rPWRmmiu0DXB4O9A4Jmc13GmUDVfCxLSRwmCg/irfWSuxlKec\nMnxkGsDhQCmT1Up2UP1trsZ8sXAl+mtCuRHJQCkQfu+WknGAfTWchLTVsWbP\nhhCF9Z0Az2bOBFE28zPjP9wJKcDdmLDUvDNFfovh9aaNUTBBEBBH5zjnjFIr\nUWEe/OubSAYZBZM9RG45h7dLWdpRWxD0mpbv8/1YukvIpNuNghva5r2/zLEO\nD840+Peyz81fm2c3j5FzOBaVpCqY49B24yJzEQJas1WvMBUSu10X29KKxOL3\nWqn+jE9LlCTRLQEqD6yTfH5uOs7pNpbmNIfvqN/3BD9Bde6xZ7qENoAA6FiG\nxCqlsrnCgIx+eM1VX4nm8CfLxYX2PIBUEQFkBbeQiTivxlGkqX98sNJGKaUe\n9/5Bqe2K7mFUrwPl8SKogPXXr/jMZYGFKZkp32Et1t1rrb59lG8TP+/SBHuP\n5/kXLn1LJbw1fveCd5b4oON6DMlG79Awrz3UJUJLRgsQcWoN6zmhGY/GV5Vx\nrtVtvC7BH35VzRHsEfQWVVH8i4C42W77BUjuZO/Ijrc+w7gjSUHeeNy2g3QY\nNEPb\r\n=IFYM\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"06820fda2036a7c290fc8268d19cd39463939234","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.52.2","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.15","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.15","gulp-autoprefixer":"8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.13.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.8"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.5.0_1626208851019_0.6290263705371291","host":"s3://npm-registry-packages"}},"4.6.0":{"name":"@yaireo/tagify","version":"4.6.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.6.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"6cb40f4dbe900afbbaab8e09cd88a2c27e8f5340","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.6.0.tgz","fileCount":10,"integrity":"sha512-fipdTlEt08A/NKTg+HH9CP8r8ZdKaVyDTNBc42inZqfKXceMUhCHR1rQ6evoH+18TyPNG+zj37ld+YbOcwNnhA==","signatures":[{"sig":"MEYCIQClLrb7mNq8W7dPHP+Oy2l31DuxnoZqeFM3IBM0PoHL6wIhAMahNbnyXg5rCqBTCIS1mfdDLBjdWtB7utANSjeHhx1e","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":207450,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhAcgCCRA9TVsSAnZWagAAXZ0P/1knIkMWWQSgIE7j3LIs\nKl00C2VDfzFc3/2ljDpS/hw2t1bvA20wsfpxgJl8eStW6r0ta9/Z/nMv9ip/\nzFNNowyAB/BiJNGY9Z10b42mzFNJLKDqzRs9a60DcGR6GVBReXBUTmCbEx5p\njVAvTyOv7BEznLlAjaOxN3hBYJ0i7VKLHe/Xs2M+IyIhESwTafxZPWOZ6xCU\nl3KJU3QcKn/TXkRoXEM6zcy9rfAo06ekBRvrYXlQzea2dR7v5gjNEY91ISQC\nWYMzQO2u8h11fchWaWFbvi/HUonupps6tSJ0JjAmvRFbYW8sm4IHSKFxoJ2n\n5ivVT33QMcA48axZ4z07aIWM+IiiWu7D8Zy+NXjSoQEXgszW4p7FZUY2oNKt\n4WuBzvanHKoLBxWu7ucliXCVRWYYB5axUOgpzy71VLA40A56k5hHWGSUJdgk\nM+XXsbwF09LHEBIeW7U9a/StB48xpSYF7M2UAiEWjrh+KtsMpUVKdAX+XByK\nD9925aJQw9q41NOwUtzPheIYOM/QQ7D2j96sc1M/MJdf9dQ2Iwa1FgZlTmcI\nS3xqRMMbl9+jlyWONfI9//oYgdVl1+jDWM59DYRTn3HDVzJSXRqsAbG5/zyp\n7I0aXnDXT6mnAioKEQw0d+UP5sSSvG8Q35mK73pyYGKnp/Zg03HlOqfQQH/o\n8PeQ\r\n=BwnV\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"cf76bfe790d3396e457edd60a4de67e3251e0d04","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.52.2","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.15","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.15","gulp-autoprefixer":"8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.13.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.8"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.6.0_1627506689819_0.23688559004217735","host":"s3://npm-registry-packages"}},"4.7.0":{"name":"@yaireo/tagify","version":"4.7.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.7.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"cc8625e3d8f5be89a55b8e839cc337a3e41e76c3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.7.0.tgz","fileCount":10,"integrity":"sha512-O+uyB//XeUG7tmXl6b1yZNHusmh2lTMl8ZeibW55DkL+z3B9xi63Aw/uE8oz1Mn4ayakKCNSo5E40TemMPfztA==","signatures":[{"sig":"MEQCIEzGW03CCek7532aefItJ7BIl7EBDkiuW77ufEr/ZV/1AiB8+RW0KdQ6nZZgfAQhhGiU9tY68oFPOwDtvkER62yvtw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":208682,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhICWxCRA9TVsSAnZWagAApXoP/i2DlwvCFDZ44v9znUVu\n1K1Rmc2t0GhcwwumnklUnOQMoL6JQ0G6RbTwtHuGF5kLv9RzOa6EeZIeGkTR\n9APVRGJKRLGcgycJE4tyh7mfLHYFcJSqFhYY5azChZuwT66DqPxIAxsHXf9f\n8b9dY34hJPWD6uslta3oFTB2igbGe3Dwvwfa733n00x4Vadhmmre77Jp/ATD\nojvekQFaoz20ATw4eWpYlNwHrj2FnNG6KTwurfhjVkPq/uzhSdK2U0jWXQGT\nivGmHgdhaiJw/0ibHHLUyh6+JMn2olmlv6uODaeveV1eRxNvzDJqa4XpoHB/\ngZt6mFdAg/vt0yxRM/QC7xuBd0iTBqYuUlCuLrOzuPdj/JKhWWYkKdUHUL/5\nCigVJYQS3Q57lxx7S9CanGMWtMxGEiMkLWbilx307sm3/Y6YH6WIR5t+/b5C\nmHZaHCw9nrXdcT8KRiZTM2RuL/72xXyYtpST5m/X6jRDwWb0oETEF80c6dIW\nrDCS2VdhZP152HEzHMGFQWhu2LDHoXUGaouAuydZaS5LWtHt5vQBiEDlC93P\nR8RAgrbhwOjmvmh7upQ4ipFeN5j46x2NRqTKD7GbIKwntJjcVY/Wxh1NkIQG\ncn8rhHoCnq8pQETz5HzVMvDLzk3tbHBvX75QbUJ9ICHfseLXOgqGtfLIJVPT\nppmL\r\n=vZVq\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"9e3e2cd580d1d92cdea61c53e7f8736530a0db5d","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.52.2","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.15","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.15","gulp-autoprefixer":"8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.13.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.8"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.7.0_1629496753524_0.002581094094395775","host":"s3://npm-registry-packages"}},"4.7.1":{"name":"@yaireo/tagify","version":"4.7.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.7.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"5bc8e0b4fb7d99a63b27a201da752d5d8d25a65c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.7.1.tgz","fileCount":10,"integrity":"sha512-fbNwh2O1AHeRT3EKK9bGQ5rwJGT1uaeTJ7ClMHzaL5SWXBTztI2dqZDMFAtsdJSJEp2NVuF5BhAIzdROEsWCcA==","signatures":[{"sig":"MEQCIFvSUmOEc/y1tP1wVTf8FEMHLIZDt+uTXUKZ3hCGorR/AiAL2KTBZNJzpLagQeZNJxsMH2cbOvMPTHVM+SuBApw5cw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":209453,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhIMwUCRA9TVsSAnZWagAAdyAP/juvdxusfQzKn1TvSDIK\nl+40q54dCaUCxccNHSbLHZHw7i/v75pMYRiVgFEnxqsY0NmtKxS2K0uYla4K\nlft7EVQkSLb2Mmn6/YtiRFXJpPDW5KSGMKveJphlNrOxqKKzgZKCvMcmGxr4\nPAvDW0usTH0m7zlAq6XXoiKeT1GMvJ4ojaIAOU7t/JuaJ4zBUh7e8G+/Ylu7\nhIb+01BVs7bLN3paOU4xm8trqaRUX76MzytmqQmFuQlDvgJ4cxai72jJeGYr\ntzv4Ol+lVOP2RqXlOa4zPhehwMwqoh8bAIVL6O3NInz365LvxOn1NhTJbPpM\nqL2eyhr6vXr7BVDPTxwvsVlSqBloMJ0X8E7ZVEiQr9c1HSiJtxxyOSY6KUWP\nY8RcbVneOcC0UW/f0lH3Ww78m61Pj0oSy1JrHWl3hbsrYSi45FvNShkz8Otw\nG/b7o7QGsNFSPfin8f0fpXmqhzcbq6r1EFwLryUX/5H1vxarM3q+7MISthGv\nskhY4xRkbJSc90UaCtW1YSzej86HMj4UAThR6DOalCPgwL6zSqQe011s1Law\nqC4WIiNuCZAo0DOWUKyAmoPUX7Dw7na6Li0bwtNTzX2Cq0ia+ADQ0oBpRzk2\nqWz9IlE4RtyoNq6mzjfejQiiJql4I8xqfJ1jyGj/qjSplRV92J4c1aUa8EgZ\nW5n6\r\n=5Sj4\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"dd0d4e6eb1841ecd00906cfffff4840c3ee806eb","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.52.2","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.15","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.15","gulp-autoprefixer":"8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.13.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.8"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.7.1_1629539348550_0.8120622286408965","host":"s3://npm-registry-packages"}},"4.7.2":{"name":"@yaireo/tagify","version":"4.7.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.7.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"589b29c91d5685abab915404892db23289c832b6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.7.2.tgz","fileCount":10,"integrity":"sha512-05pyg5EPZ/Wvl6ZcDjvlhnaQa/kTgcjyzbfrTHPh9xkrcO6JYiZuoD1nghqTn2z/c4vLX7PDvybPJoQJELNVMA==","signatures":[{"sig":"MEUCIH5cDC6N3RrDcJfWK/sbskg5g1P81TuJQFVihuEsijhcAiEAvI79HAnAk/DuKmJFDFBRyellaAP/5d4PRIb3X8RilCM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":209515,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhIr8HCRA9TVsSAnZWagAA2YoP/iqhuxOS3dH+kly0Bkp4\nYIeA4AzKskcr7xy09IQyDtrGfTDQTM3rvu540WYvzZ73wHUccmVzbllyDuN7\nkwGlb03v90I5awZi6cvjF4Y6K3yu/PUtecOE7XqudkgY1pLcsp3tLhRV/PO6\nZnBbjj+/a4u5FjydTQrC1Wzmo0vsUlS3y+ub1GSI51IPZmRvppK7av2e3ULV\nhqv/oi0q8mquSRTas2EiMRtQ3su1fQaBtPTWuWDBhXqGQfkGl6WYFIo1H0SD\n+adVMpHA4Xl6ZjELiwk++G1Zl0G2QGSpMAP/TY0k7r3quSdC/8oP5gV6V6lO\nTeEHk3kFQB/u1IZN4hyIlAxGr94gUi3visWR29/jHov9AtsP9gRng7lhavwk\nLLrOHA3/dDnrbvl581UoQez5lLjILqEW+cjzmt6zxACQjdGaaLZJB548wmJw\nxj3ccYBF48KQ60rAIgsqEsDdDGwnZwJq8gWoDMpDWGJFpUqNqKVO5X3MBfYQ\nb49REzMbaQi4/5dqCqqLFl9XhjXvFfdJuTgJk4Yxi2/8IuEHhvajGzSgvFoF\nUxUIJHJ3beE1IL6ZccQzC2cvDLLLSIzgbwzpU+4DyXa4GJhrNpDO9RzOUvIb\njzkRo2EZryUN5Kfbn41BkaBVzchEjLW6mvLsIXKk/MHCnUMSYgKd8I5IR9R4\nU809\r\n=Osnp\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"e2a0578bcf7ca4928adc5daa2f69b90c1bfa75d7","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","rollup":"^2.52.2","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^4.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.13.15","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.0.0","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.13.15","gulp-autoprefixer":"8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.6","@babel/preset-react":"^7.13.13","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.13.8"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.7.2_1629667079195_0.3200497572065413","host":"s3://npm-registry-packages"}},"4.8.0":{"name":"@yaireo/tagify","version":"4.8.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.8.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"1bef4e8d0247a93715a05b236bc2329a391e464b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.8.0.tgz","fileCount":10,"integrity":"sha512-a6V/Cpr4BREOTLUeAHBeD/+67DkHdYYkyFF+lLdLiPuGq92fok+RKu9uMy7V8iMYAO2No5PY4BMtYCOvetOa7g==","signatures":[{"sig":"MEQCIEbX7TGjtnHaz5ceFDVuqPzLoIUAiXO5kbhsNEkpEB1HAiA1UF+5qCtexvel6le/30Ff5Z/o6EqYc6OEnelby97Jng==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":213137},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"fc6ebfb629ff511fdb8ac49648c39bf3c7ff3aaa","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.56.3","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.15.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.15.4","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.14.5","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.14.7","@babel/plugin-proposal-object-rest-spread":"^7.14.7"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.8.0_1632232163101_0.459392592953912","host":"s3://npm-registry-packages"}},"4.8.1":{"name":"@yaireo/tagify","version":"4.8.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.8.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"464708e3204b03e0991c06fb8fd12fac60f5abd2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.8.1.tgz","fileCount":10,"integrity":"sha512-SK3mN6HPzNzW3rgolvdsv/3m8OX5xdbh6H8oz/fjdLCa0Qt3JoaAQqjsMxaLG575+ywl5jpvsaIj+JB6yi9LUQ==","signatures":[{"sig":"MEUCIBMVTkARAqfq5YnYAgmeAOkG2Amv1bDaBQvYixrDZFlQAiEAk5tyGLa1XouBm4DdIgwqjML1cbB4f0mZMPgJkezS/tQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":213351},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"23c7e3caf1efb791775e9b073adebc79b1f4f2ab","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.56.3","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.15.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.15.4","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.14.5","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.14.7","@babel/plugin-proposal-object-rest-spread":"^7.14.7"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.8.1_1632515902764_0.9742033447048766","host":"s3://npm-registry-packages"}},"4.9.0":{"name":"@yaireo/tagify","version":"4.9.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.9.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"a727048c075a9d0e75fb0fcc95470cdc6f365eb1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.9.0.tgz","fileCount":12,"integrity":"sha512-RgALyZ9rLx36d61rtL5IuOlq351aTmJAJTqVah90QpkngPBImmYsNQ0BCIQkhFidr9a37CzrVJ35rhsSL2noAA==","signatures":[{"sig":"MEYCIQDT41GyklPNtuA8H5y3cpTBWByjafj5Tncf6iMi9bq6lgIhAMo6gImDHwKmHQcgCfrxECdFYGZ/kV9QK/lOYgFAdn8y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":496597},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"504406f8e4fae32c1d7566cebe295db716fb9442","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.56.3","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.15.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.15.4","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.14.5","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.14.7","@babel/plugin-proposal-object-rest-spread":"^7.14.7"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.9.0_1636838191257_0.36152521740237265","host":"s3://npm-registry-packages"}},"4.9.1":{"name":"@yaireo/tagify","version":"4.9.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.9.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"903b0f76803146b87d7b8bb0cb2a6ae38aaca3de","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.9.1.tgz","fileCount":12,"integrity":"sha512-PEKTzT8/2kYo/THOYSzXNOvndQeL8+ZjxtfXRj5To6ZcOhXDVbIp5cLErZEVxZi0gZtddDaVei4mkG0Ksehkbg==","signatures":[{"sig":"MEYCIQDg8rDIOUYbIUqfNw5j0Eopbx+c7Qs7OAn6SejwpKK1YQIhAP/DFfKs+naL/mKkh06y9t52NaTQzI/9IaKyJejsahDS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":496663,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhl8cUCRA9TVsSAnZWagAAVU4P/3Z8CajGOvY4Y4rmMdCF\nKJ8vQxhPrJBYeVR1xU4u9Rt68u2eG4bxBUDQa0zGCXpAPTZ+998cA5AVFlgT\nuEKNRSuwRIEkcEyVTnJ5Tdi3+M6R4wyF2M4wt/x0UoP4cW6mmUlj9LfmffI2\np3PGapLREA+hoe4/WGcQ5qXjGyDX8X1NvyU3GfnPOrbYqQ58orZMohk3bYso\n0xF4AVItgODzgaESJsb5WHR0LhgbfCflhniWLMCcXEb2vFN+q3/FYunqJQ9/\nwKWGA+7Od2Nf4cNCwK9A4Q/WdfKVAl5IV8HWxR5lXrhlWAHkZHpmn5rsx7CM\nR3P7mIPOAnND3c4J3FPeAlwMuz9+j2uP0Rw+ETmNaiTJ6dzcSxfogUgnDmiN\ngXsbE0n7uaHbGXgmGJV0P0LnKue4ZzyH1LvzHyKHQQyLB7MgiTvhl+MqF+oX\nOcDQMAPBz3JrEGeSTxkXKM6apc+9LHnqDMHrZgPa74tncQcdI8s1qy/3MIbI\nfswI71P+1c1yNQd8gERX3NhvmCl0KotKu+lAg/itHVbZ3BU+UtosMhuqwOb5\nON8YW8Maw42V/Zwa1pdH3MSSmpcFoNTg8fHxQ3Ko4Csv74uXy1I2zlvnHYbg\nw/g5j6Xnz/XYCHSug8o07Q2d4deUz38P7jsB3ywqvb3CJ4Uqmpubj/Kve5A5\nzGnW\r\n=W20I\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"d93b32f432292fb6779a1944f075565accce815a","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.56.3","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.15.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.15.4","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.14.5","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.14.7","@babel/plugin-proposal-object-rest-spread":"^7.14.7"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.9.1_1637336852270_0.055508054600637236","host":"s3://npm-registry-packages"}},"4.9.2":{"name":"@yaireo/tagify","version":"4.9.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.9.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"afcc5f07baa186cdcd0d1c08cc68350701a31874","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.9.2.tgz","fileCount":12,"integrity":"sha512-N1B2nugSv3hR3uJ2pM8tXu6OSW7taK4tZxrw6BXe4dx2lI1Wi0QQYdNWmF/u01GuZ4Cawq8Fch/NYN0/Sl1zjA==","signatures":[{"sig":"MEUCIFXVqYOQD8q2AIqP1R8j0+rfgYL3OGPhOMBqMZKj2NE+AiEA55qgRacU+mvVpix/uMlA85GuoWIo6J8YB2XxB7Jo/f0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":497121,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhokCjCRA9TVsSAnZWagAAmWsP/iOu0h8zhjlJXI+YGix6\nlsU4AwfSGEvCZydfgjaQCLMwMXeIJ8IBnE57h5C+beQ9G+HhJ+Eo4kgxE/3l\nbGlWV3lI09nBkD49drpKZLpwZufCd2hv2VQdezZRsbjSVPT9n0dnNSSzBFVe\nm0bQ6CWgnv/E2r7rAeefYkX3UENKBV6ajTtkIa1IYiMJ2PqIhndo7Tgn2U6O\nIXsi3ST/mKYf86fIzU+J5FBAwc+J6UM/wlvXwIIV/fMpAiLeIKrAL+i+0/3u\nlkia8/HyHJC2cDLwrle9iynrs4p9Rn9Gm5DTyzUp0YBeiyVDcwLnR22Cqv4o\nTbfo4EJinvUKmY84Atj8S0GNmS4MJrwvB0cr2Du594PWni5VZM24yIvXKEw8\n1/O+y5mXRnVMRGGXYSo/rxSyTvT8FdZZFqh3BjMstYbCQhH8ArkrfbnQSmq3\nfHanKzlw0eAOuuEYGH0QJwqDH4RFVty+zT2GuB1Jw4LwliMFqePY0UKmlbyR\nq4GycXJsS/Ik+XF+ksQLCWC3Qz7ID1s7xkAz8iud0VifXnyWhaZjNVkow479\nRJRpw8WdX7BJ63Mqdn4D1vColRN5sNzcCsmcDsozcFmRRpo010ZCfhF6AbWt\nHtBT3OYWDGFIpwLeNk05kFTSQ/18dGlRnHb0tj+6Ia8OXPBMXT0p0u1X9jcm\ne5E3\r\n=MNEA\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"39a9ed69a8b22635afe14948d655d1e71b5e100a","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.56.3","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.15.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.15.4","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.14.5","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.14.7","@babel/plugin-proposal-object-rest-spread":"^7.14.7"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.9.2_1638023331354_0.5490973371370957","host":"s3://npm-registry-packages"}},"4.9.3":{"name":"@yaireo/tagify","version":"4.9.3","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.9.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"a09cff5bdca76e098d3bf0e22bb1ab3cb6c7c559","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.9.3.tgz","fileCount":12,"integrity":"sha512-fLimbRJTsVtZEjMdFvW7oeTr9lx89m/wbMG3vx8jIrZB7cpuBrxET87dRT3Q3hEEGtIS2cFok3VFfvcPbjbu+Q==","signatures":[{"sig":"MEQCIE2kG0cp4nXUHBqEoppHw2se10Q2yLFfkur2Ip8qLyMVAiAcAW+cJrRNTWJWnAImkuYjsfSdIf4dTJDPGfN6O5H0hw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":497794,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtLzoCRA9TVsSAnZWagAAuRsP/2JM1bwIFKgMP6dkF1lV\ncWBZZLSWklo/TigCbLO3KfmDrqpsIKszQXkTHPSMiVQViGZNkTd7+GBijW8L\nyePJYBOZFoOR9uPhCRAhQIUUydG7QdTyIRXpHN+5iCGf/uIHhtLmornCP0Zd\nmQSAwCukkZ/rzaQTXj5pzOq8ppXFOgm6DWfEfYAo2uXvPzE6B3POZBN1eWWC\nsjzVqavGYWYPWb/Q8BhFNVxlzl4EkVn1TAm1tzwRWJpdA9Pn28fQ4uRttLfv\ndmhflKTNHLOp5929s1PTuxGM7pTy5tg0nzFJ7hdTE5ZahcvYrAJnjSUFgqzX\nPJbMsuJ7XGolkGJ/nnQlzLG7WaqG55Zg15A1KF7dWnYxVVNjtNoHj2pHSntx\nj/c9I9Ou8sj/BNMB4iXkQ1HsNBxtj6DZ3KpYti+xJF0dhzgZnu06v/CnEYa0\nuCAEPUOl6O+A/rXFTyY0dyAVRZTj3GbsVJYPXxGquI7iHs1tiMv4VoPQFBhr\nkWRJgj4xp+S8XvoZpK5oRhXxRZFp1i+Zi+zwvO1coXbjwsiLQQtxtZAbGhGi\nv82zFGumZNtkynLf1/R6ysHhNsQd2a6Xl1Ezj6r+PGMt90Vr2NQc5TacUuKO\nPHWG3Vi7etB2K4ZEmTntXKVryybCjRtsQ3cVW6ATPps0Sp3j3Oo4/fHKibDC\nfMNw\r\n=GZDn\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"12074191a7a6c2602ee858e5725092103818761f","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.56.3","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.15.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.15.4","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.14.5","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.14.7","@babel/plugin-proposal-object-rest-spread":"^7.14.7"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.9.3_1639234792453_0.28848817251994086","host":"s3://npm-registry-packages"}},"4.9.4":{"name":"@yaireo/tagify","version":"4.9.4","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.9.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"ccd8e780d332ccb935b3c637b35893a1a30cfc2b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.9.4.tgz","fileCount":12,"integrity":"sha512-ZV8GLKw3yD1Hvh1xNqO1z0Sl+kykL2mQWIwSwQJhAtEVt62TyXRB2kPw5J3iGm4ewK9SM/LPT9WfjuJc7FBKVA==","signatures":[{"sig":"MEUCIQD4aikJ2smzOy9ogzxjcwKFwFYLALtOa/J1iVUYpsLoJgIgAMium3VtDEqOTWvCz38IZ/MCLyrO2v6jLWmNwQTWuCI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":497794,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtL4rCRA9TVsSAnZWagAADEwP/27mkG7F1YGtPf/yu57q\n9ov3uX/VtxH1J9O8x6+FlnIvpGQyTdPDGap7TjmeTK8Npk9Sljfix1LGAizX\n2W97YLQnMhZuPsXgG0WknlxrdieQ0hSIEnlVi827nAZITQVP5ivf04MLEeXL\nZVju634BClaPuakE5An8raWDwxj24mTFjsLrWuDalcAQSs2tqrUYbbaAur+L\niUK8sbiCPP2RrVIRUofHW7MoosIqy34LLP3yeEaenZC9MEDNvfJBcekl1+6/\n7b3yWOIOTkQKSwaV17WTL8bQGkPWemWAhztCx0o+WhIKFMqqz3+MFOqaiBBD\nxqvb6E+9+NztdEjzdIW9SWCvl6Nl63Z06cAZL4iahBsajXKLMGTQxAD0wMG6\nzQPI6ailE8Bb4ePkgYlVuOMAGTe1U8ayvxg7Bujjtjx4I2n9TtI5XgWQkCge\n6LOBP3vZQ2yrCwAsWAp670aEf0z3Hc3n4Hxn0ClmnD+PDSeNkUFcwHWMVlEN\nMvd1OA5hXHpGpLm3Ze/cchkDls4DYveW+sOLQEw4r6YKU/CUO1b1eCxQp8S0\nRXZKubLUjrRxgV9k4JLD0Ja3H5v/LfTXC9N9F+cWo1C636N97AkMVrNA0o9c\nGJkTU+9QZ/uKD2gbC322XF6fwFHiNogUirjcprncmWs6mTZ6GtcswvRlEPac\nyX0G\r\n=mxDZ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"7ea2c12d7e463e56a654c873228f2b559e4acc08","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"7.6.3","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"12.21.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.56.3","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.15.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.15.4","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.14.5","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.14.7","@babel/plugin-proposal-object-rest-spread":"^7.14.7"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.9.4_1639235115592_0.48606673113984145","host":"s3://npm-registry-packages"}},"4.9.5":{"name":"@yaireo/tagify","version":"4.9.5","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.9.5","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"adc49639b3595a5a35c80a25dfbb588deaa13fdb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.9.5.tgz","fileCount":12,"integrity":"sha512-PspJ8BWawLk+vg025Qrdj34IvtVMmovslbMTi+GsZT6ZGZDAS98RZVjYGN08Ifmc5c8CqBnvfDd52n+1u6g+xA==","signatures":[{"sig":"MEYCIQDML2BTWREVIsqe3Ts+FimhF0AtmUFuTh34/a5SMTHxRAIhAOzlIk6MM/Zc94xvQVK8Xh9bs8GaAyQxZ3uyb+w+ECk6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":498772,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh7vbiCRA9TVsSAnZWagAA7kQP/3b7dOO6LcirJ2YMQpTI\nTl3H+ylpj0bwiS/FzpKFZ7GMJWNHkPPu4DCzGmKLssU+tn/WhVGSZ0pUXusN\nPLMlO1SlmV5RDyrO2zrFu0OxLoV681q1Inx4FgQWvBTH55YD/knHEnLLsFCi\nYF0tcaaeQqnORN9EcvuW3asJ6tAUkSHxSDwCSoBOUA/sICj2yGYd4CNkAjQq\n6/jnjkxyZT3mg/bMFX5nCKl3a6RVX09xJhml1ArI10u/7vIJmWoV5TbYTRto\n/e2EI5kfT6QT6ekly5HGmrwJ1/9u9uIJ3vyOYvq1AG0TZMvsi9IO3Nrtuxr1\nEIBJhdfuCmyifc8O628yMBY6bOdhPzcvCCudSkv+PsXngdHfyhsigzPt4gME\n9aVDelY9kcyPRUMap6sOxVp8mfobBsz/zzSIZBD8xMKq1ozELARXXK5AApIJ\naX/DsygibqwySi0VIZr+cvhJ8OCLAuMUHB0BLRV9d+N7EF8hyRZmGWrZuALi\n3O3OA6OlG5lFRky8EE94J2eXPQ8HBX0UgDocTB4r5kfAOsqrHsfiRBYQz5rl\nOV97851Uf72W/nWfUT09jC7XiehPBsQ3T6BDZRgmzUu70RlOouEfMWb5lmvL\ng7PL98/arAy1Z4DPdSJBBkNDM04tqDC+JATW2lOqMcZ5UfHF3Chgue+g8PAk\nn5QT\r\n=Gz0g\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"799c0c0169f71554e93fb1c7fe3288fd50da1b08","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.18.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.56.3","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.15.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.15.4","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.14.5","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.14.7","@babel/plugin-proposal-object-rest-spread":"^7.14.7"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.9.5_1643050721937_0.3497938262026219","host":"s3://npm-registry-packages"}},"4.9.6":{"name":"@yaireo/tagify","version":"4.9.6","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.9.6","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"0ea328af866cb93cc3aa78acf8daa49280b8ab74","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.9.6.tgz","fileCount":12,"integrity":"sha512-1Qs5zxQD/V2Btnrq2PHS2cCB95H37qrQ2ofpexml88XZ3A4qln+us2MsXHVMMO/o/fPph5+7Wq6I8m1L09/wDA==","signatures":[{"sig":"MEUCIGE4ryJuWkIR6ApRhh0+fz2hR6KaYu6QrId1o6TM6AzkAiEA7YkmAcPAb6p7+wQ54ITtDK4WliSmT8a6TU++b3uA7/A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":500150,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAAW5CRA9TVsSAnZWagAA9HkP/1qoguBx0a+XI5E292Xp\n7/UFNctBzL4MIpJbcmK3cIYMcQKRzB175F/uvLJA8ge9sDfzYehhVfWeFbJx\nwSjh6sR+Z3hY7t0tQRz54vSEU3PdYptkEz6p82RXg6orU5slHpBZM69SEfQd\n1lBt0GoRr1IkbYQJOoCL/oaq5bTa8CCwOdEDA/2JR2Oykgq8TaZHx1VrOVmm\nkt51+3qBiwjGl8BdCowfFjce785JySCcSuVkUTA49LonDqmdo9fqII5EvHU7\nlh6EIyKTf6/3lDWs1AI0FENjuVbjdjNN53cY/hfFc9sZpY5ZFSFhJc5FsF4R\nzXUJwdS0fbFGmQ5P5pVw/sSUFzyKf6GQzqtXh0uGo4ou3UIEdlRpeJfKoRef\nrGIG3vdARFT7ex3ZmBHEu/e64jLwYh7HMAqgyeLqsdXJyig/hNOAUiwe4tIZ\nRMGeW67DXSvIkcuqJTj9ig/fx6vaidt00sW5E+L/38kbo4ti9093ashrAHlS\n7mksal8HKB3KjLAUjOVBC7ScayLEfqrLrjC/cJ7W5o+f2pHboFTEPlMivajv\nnGTSZZcz6S4OKQGjfT9VHRsP9Ch5kznj6xHQxrwolDQazdfQ3RKriCccHs/+\n9va0WJNWw7EC2pMC1oumKhA+ayCuQ7Yn0as/xQVRb2bMXXOnOBzuB9QISdjp\nYaDc\r\n=qvoe\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"279bc63247a87aaf10346349588519a2672edf29","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.18.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.56.3","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.15.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.15.4","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.14.5","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.14.7","@babel/plugin-proposal-object-rest-spread":"^7.14.7"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.9.6_1644168633504_0.10204342842954883","host":"s3://npm-registry-packages"}},"4.9.7":{"name":"@yaireo/tagify","version":"4.9.7","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.9.7","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"96b8d59dbb54e3c2b1c276a6f97da634536e400a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.9.7.tgz","fileCount":12,"integrity":"sha512-jPObGAl4xPKnNjOw43LRJ+g8U2awixmXn9CRaLraChpV9Z/1vWmQRK+AE/AYY/f6Vr+uRn08fEjrXKwMJiO7wA==","signatures":[{"sig":"MEUCIENa8y1yBlkdyGKh4ikZopdlgjEyse5kMLtuj9LEGfCdAiEA9m4HBo1i6IjsXnVTbYM9selRmJYtAlMWhMvBORwQP6o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":500165,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCVV7CRA9TVsSAnZWagAAY5QP/Alapy3hTX2buZDxvmMy\nDR26knehpdET8aHhaQzHgBaKPwQjq8DISD9xcrhNgrerX896/Sbk4DgUgDDm\nFz1XsPSQwfzeCelnRBK5Qf+8R/zY9ZfzRR1X1MAqZCagL1+8yl6vM3IVEp7W\nwrpHRUO7Nymt+OtoxWDIDSP0GHEtm/5sWOAsQXD0tZHYdy17xDpst7zY3LeE\n6Mc/sc0YciHFRtmkumwwqNhl3m4PPcY04M3r9OIvH9eTMKF5699D9QD1TZ8Z\nTM0O3Cd2WQXPY9SrfnyPyGdnYHgD2MfBf3jhPxSmzz+jN/68Hbkfv9DpqW0K\nK9dk6WV6cgAOED3lYPxP6aCsZzOGoLyfrOw6ZAR9Mt/MXLB9UEjKVktxgkal\nJXcKY1twYeDNl7/gve2L6USw7b7QyKAdmm8FeKETw6gaEXqE97pP57mVgZv7\ncrD0woimEAxmQPe+k1oGLl9P4BlpVqZkKvhvpv9hG44IWH7bGMPF2QBlgsbQ\n7pss4iKvHxSNq6+7VZ48l/t3Q+rijOiaZFooEh3mwfYvWWtsK1YC2mkSJHKb\nbLn8+6pebcM2G+l2dmkQnASfIXJRVQmR5u/szQsPXIpom2oyAmR73BCqQ6Tt\nxCUwYyMUn0IU4XSSAIs/eGUIZTb8vTND1Cq/zhWIklO/3rI7txriKJyjLNWU\nI+VH\r\n=suNp\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"59bd357284954d3d1a6352c61c98b652c9828271","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.18.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.56.3","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.15.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.15.4","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.14.5","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.14.7","@babel/plugin-proposal-object-rest-spread":"^7.14.7"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.9.7_1644778875199_0.8598598718890107","host":"s3://npm-registry-packages"}},"4.9.8":{"name":"@yaireo/tagify","version":"4.9.8","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.9.8","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"67082ecca81fbbec4d75bb95581280f27af22fba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.9.8.tgz","fileCount":12,"integrity":"sha512-JqRTN4vb5tx06PJIRIOAlriO/B6u+a3jD/VBb5x6E1MOlC4wrMfaLHmNnrMpiZCHMXox7pVmrtNuyBe4YReJ4w==","signatures":[{"sig":"MEUCIQDTmNHR9vGcvirEztM+FCacBPwXQng0YBa16sl97wr1RwIgO1+Gjg6HD2Gd8jCNiuA5RNrlo2j3Vz4CeyqehpywJUY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":500457,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiDkKHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrPWQ/9H4+pKyhLlwBWTM7cPxUMaQ8/oDofFHYKznjJvOusz1+0eZSK\r\nqHlHHc81mhcvaXS13/8Mtuexgm4OHVrJtn4QMIhNDw9le75uQunckY9dDyEB\r\nzDKaoBMTIKAUVVvuBbhkOLOEr/aDzBFeIHpkjOiLs9URaAJbD/CkLuz3B08E\r\nAK2AkUQzhIdvmDJjAkSJ5gtd7uU/YI8+47oOXJxdKV90EdrUjt+S7LOqrgIq\r\nNazx54vwMuta98ANw8Vi6W0UsD0HFTQezhB3WvwyuEOiTyhFDR/4U07SrhtD\r\nP3jhRFuig2bbs+p85x7LQQ2P2He35WAuRuviZfeqCyVfWEMQ6yYcGTJulqE3\r\n2nfbnhlMM6AMTw9lcd8svRr60UjnNX2xWHk7aAG1UI53fxkwqJR+rUXycGOQ\r\nEdY0VBGsJSYR2fytdn6rcL6clg4OwXEYq379CHr+q4fvo1rOjK0TjQ9nMbWA\r\nqUBachoqHLNJbnzwe3kg5SC0cDn/CZIP1UwZFi6NQhjzX5Hk8XCRgHsasGEZ\r\nrRoI8VwWGO4LHAl6FQhETrKPB0Hm9dKy+T99KBBfUUAcQT1gw0+/VF0HlkRS\r\nMyTkZoku1UU/PaZwGJ2ZxU6bOVddHgZ9Nlsn9TtNDdlLDF2x2774uN83TwEP\r\nwddi29bXCgCxMQytn8eQWHupWLCqQlaBF30=\r\n=5A8O\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"db18415cd35af73008549cdc01710a3eba4844d7","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.18.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.56.3","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.15.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.15.4","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.14.5","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.14.7","@babel/plugin-proposal-object-rest-spread":"^7.14.7"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.9.8_1645101703303_0.2906839737312237","host":"s3://npm-registry-packages"}},"4.10.0":{"name":"@yaireo/tagify","version":"4.10.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.10.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"a6707def9d35c59bbd2d498b08c42caff840fe08","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.10.0.tgz","fileCount":12,"integrity":"sha512-OJY02/MUGNsJ2NT0HMapet9dNrbupWVeqJgDieptH3WIGR4dkYorp68IpR+pZ1tHdDPEdRp1mG7cNpOxc0RWWQ==","signatures":[{"sig":"MEUCIFn29xSFBo0s5Xy76HyIBnnhOiT3rLFrPgrAU/zTEr8xAiEAsXgzcsUKHoXVOhk89Vb6hmCf86vvJDKGBLDMX3tDwqE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":509972,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiTIkaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoJIxAAo8PSCb5DraqBARQBGoQEmJvBeRBaK42Kr02mK7hZQltqVjzL\r\nUjBXWy8skqLvISSVnuqJYOqIqQ3BJRPo+75MxQST2I0fOJBEb7Qj0Tj2JVZG\r\nTmLLa3gGSBI7AvOG02TsvR/TZAheilhwsBbamk/CxFmkb5QzyM+sj3qeOy0C\r\nfqsh9UAwvtxe8iEZPWhOFCqYNbE4UKiW/eFiOGHI+FOKjo+y0vZTaZIbT1qw\r\nUu9l6/04rWC3vfGFiPRRtGQsveJl91VgNDhNdajrxWMFSjRTqlEZlhPSPluf\r\nOanhBP2At/tXC4s80yMB2q30qwB3MMJ0k2OzjT3upJtdOS9ce9oEufxcie1p\r\nma5Be85uTzDM6VcwHQHVeNjtA7fo/GdIJdvYutIIfeCcJaJ8jXTRh/T0Vdd3\r\n4rACMev1gvysC5Xa4xLY8TFpDuVCEaYdXKe5uLKLAObP57vk+KdWRY7JlzJr\r\n4YzCtzLMlT1dZwP38C86cYQ9CqrWWUvslsHFTMZ362Wo52KAGifXR1P5Vf1a\r\nkqDUqWFLrHCdtwuhkAYmRiq0h+Y0PlLLIbB+TQJWZrPw6sTIx6rItyD0T54N\r\nhVo43HXSrG+5JT1hChY2mulrwGHXkCfgNm7Lsw6fGSBdDxeyG+zDsThqZxiA\r\nomvtCDbxJHbIYvsdQYbAvwMKaggs3ZFWPec=\r\n=LmmY\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"69c3b68766c30639469e408374ccb43da2f0e03c","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.18.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.56.3","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.15.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.15.4","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.14.5","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.14.7","@babel/plugin-proposal-object-rest-spread":"^7.14.7"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.10.0_1649183001770_0.6617085690677997","host":"s3://npm-registry-packages"}},"4.11.0":{"name":"@yaireo/tagify","version":"4.11.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.11.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"e7c4e886d74476fa64d4c23706d59179a61f220b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.11.0.tgz","fileCount":12,"integrity":"sha512-J70gWNNlgHw+60azyJTsu0YHPsH7qXowQIi7PGMuhDQAfjTGNUH/Tx2TCzruTDocOTcoD6ol/iZXpNm8+VOg7g==","signatures":[{"sig":"MEUCIAJwfMhvAJKQSPd7y/3XCWYbTxdTw52FqUXxZKWPGZvRAiEA9OMpNSG4M64oKoYEjNStueUBevZtFrBy05IxI/4t8Hk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":516711,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiUyF5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrchxAAnFTRSmC3LbQ1FsjupGvjvIQKmshEC3I5zDCMZkkrV/wzRKcl\r\ns8cKVk4r8+f6NnPFNoudXtro187gXhF/zj96jVIKHVKgWMh6rZHNnmiqXVx7\r\nswrr0xakxEhY/rLpsPK1F2CMJNxdWk/HZzyuRQTdTfhIBsyPQWbIdYB8Ew7t\r\n/jQQDO5ARtAE9qGNrt1m3akMzNZfV+sHUl09QtdVPrbw4ENBWFFM9AGjRqZw\r\nqrwJKua4OxZcDV8SIMghiKpC7UygBXLw/0/MmCucU4d9GeiD7oUcYT3m0i8q\r\nsjmWv2aMYn2PimYWp1ELxtCmeDwriH5VeJC+NsyjY4BIIxuIlUgjTpV6mRGB\r\npl2F+y7vipr4wQfNVdzlWvc7ZVh7NLSzH2JP+qi+4a9mVuv9IJrQNp+VaXNB\r\nWh5U41XZLwjeJNq/0MltfpS4BgvWX0D9KaVSI6lG+49FlsScDcWPyd4oAGQd\r\nhTXnTnA41ZRaOOL+enDuSHwkYwg2JUPjU3Ok+bco5IEf2fuLD1nenObcFXhl\r\nD3GGkCsknMJQQ9/Fb1vIiMyvXU2CK8H5qB+ERQ1MfQ/VijhN39wgB90QkAOR\r\naIZswDhXIO5DUfZQ8hvDAjEiGucdpZ8P5Po08kYf5VYmRbRti059xhq3HR7v\r\nJXfjUQOpyCzWB09XWO1P+vA5Xe7i2dlQKEI=\r\n=8Znd\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"8de0595359bf0f368042f91e8785585b4d7bd3e0","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.19.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.56.3","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.15.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.15.4","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.14.5","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.14.7","@babel/plugin-proposal-object-rest-spread":"^7.14.7"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.11.0_1649615224978_0.8880254107255541","host":"s3://npm-registry-packages"}},"4.12.0":{"name":"@yaireo/tagify","version":"4.12.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.12.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"4e5cd6d37fa80cb70f029dce879843b047844e3d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.12.0.tgz","fileCount":12,"integrity":"sha512-3PErDt0dWGsrpxFcfoCXiCKJDil4J8hdts2GApS7z6KAKkkBMYxD9pSyF28TdkdehcuC/E64TMVwU9e2TdjTxw==","signatures":[{"sig":"MEQCIBH5LPa0pPy2s9qookw+NnM5E0358YSXPxfJ92A0eQFiAiA4BAxRZJpZjDUN/gPVBydJcp1acdco2dVqoOH/OlaZEg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":517707,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiZtkzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrn8hAAh0y8bWByftRANcqeJUVgUeAidm7ow9DgmAceo0lKERQ/DI/V\r\nUIp7IAqdDIKhntRvyKYkVh6UCWjXcwzOFqkvp9chJJB5pc957HVHGglSVl88\r\neg4nOyuT1JMGusvTziQ6/+UmeGVKjAEMN+1HRluieqELku+wu3K0zZn9htLw\r\neT+CLJ5k3Fe9qHvB0WF5t+Hx7jXOJsEL2u3DnWBbdV1NDbS0MVgYF8QY1wc7\r\nplgbdqImEf96DRwFDUSK/q+P1WzaL3q3X678GrRrzOvbK2/uZz58McDsOyxd\r\nf7NsDTykCkWmdQoIOO+qwB5vSL2lDDGxGO77nuwZjht3PnRLgdIUWOWAeiEy\r\nCWS7ZlVIDPR4P7n2J+k1CceenQr0Y6CGPWtONG0+A4xsa2PtApZomcv5LjFq\r\nOH+58XF2/iuE2yKDpWWXsdiNjWBrc1we8qardn5r1/miOVFE91FPKUAGE/aE\r\nq2XKGqYnPQf959aMy1OqWNLcbFhlze8qteQ5GM0kFHtk8fiKyajgBtr8GQDK\r\nB9m1PC2VJwEJ+E0bFDrs42In/ASf3FnTKi32ApYQOEXxPECFqOLHCN2GJtM3\r\ngUAaIzGaIcQ9+a6xX0/Z6QTeNl4TVWBUv8zxIAl5A7Z5q+HYRfSgE/ob/TFp\r\nDDHzC198Ag65z+UfKNN2Lzv0e0/7qbl584w=\r\n=7TRU\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"788f74d010d295b1c801010772f90d49e8831b12","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.19.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.56.3","semver":"^7.3.5","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.15.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-eslint":"^6.0.0","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.15.4","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.14.5","gulp-header-comment":"^0.9.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.0","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2","@babel/plugin-transform-destructuring":"^7.14.7","@babel/plugin-proposal-object-rest-spread":"^7.14.7"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.12.0_1650907442964_0.6137354195203408","host":"s3://npm-registry-packages"}},"4.13.0":{"name":"@yaireo/tagify","version":"4.13.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.13.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"df5fcb446fa96c0879c6d46364965529ccbec4bb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.13.0.tgz","fileCount":12,"integrity":"sha512-KAYHFFmHRVZKAS6u6kib34U7ykwvckXrcvsQhybHdLcmGC/b5/HOViCPiZiAdrUW9HOyySJTzmr6e9HEv687bQ==","signatures":[{"sig":"MEUCIFMx8zflF99dZ6u10pBcgPB6LJcZQ0WE7QkZ9UC2iqmbAiEAz+3UUXdfwB5hrtnuzDMQfv4b1I23O7C3RTOf4e0z3Qs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":525527,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyYOnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqoXw//d2XOznIR6J1xtcN3sWFY0hXUuucGFwVErlb6Jfx5IKCwZGxA\r\nVyfWAfFz+O8d6I9l3wlDc9HwKxez1KoolMcTGAA+BgrpSfRfytn/80dwz+2Y\r\noi+cqV3LqLmI+AalDdKp7D3vJuGXMs8wORIA0tAHd8RksrZ9UYDDX0PSCwfY\r\n6hIaoCLl0Al6hfozF1/2V1SbA/d2/rRBVe8L6EHG9/ojl3KDadHt3Na1hz42\r\n/GeMYZpf/1e3tjddaHEYSXnOGGfo04bvK+MEz2LDKvmUphmEiI2lqq9e5Skb\r\n78ES6nhP7TDdiX58gkkNQsY7v8sgrTaPt+cqiTxfRkqiVt32YOnK4b3xm5Y7\r\nm1GbQ18zMe5mVcvWxt6K0k2BCpzUPU/he+/rsgG2JMj9Vy8lcEFODBUfW9TS\r\nzqqeRZwVCpS/3EmmHEtkWsZJXZmotwcx6GhaDbP9KDv4cI6TzjUe7+5StMgU\r\nKU+Q/0Kn8eHxbXZG+y0AYY8yWAyWMUQ8/7cpg8tzRUGc/U640ES1BhU473UJ\r\nDgvZuwnaOtGKilCGlmVMhXU19G8r266lFlbW5vV1r+TuisAg2vI8r4pAw6wd\r\n7YA6IBOeU+HCEDadWSqx7CeHizcrPP5zqlR5P9tgNzbxS228AqxWEevnhwnH\r\n3fqNGiZyrfZZVKwV1NZ5CKN145olASI79rI=\r\n=rlFH\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"ee35bb301634d7cf89e8dc3f16ccf9aee8a396ac","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.19.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.7","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.18.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.18.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.17.12","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.1","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.13.0_1657373606905_0.18846940455848027","host":"s3://npm-registry-packages"}},"4.13.1":{"name":"@yaireo/tagify","version":"4.13.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.13.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"36d651607edddde3340f565ace2428a260caa29b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.13.1.tgz","fileCount":12,"integrity":"sha512-k5JxXMS6tM/KTbTwlL8Ls3hzZPPfTrsMwAsoN2RGY2cTDNuWM9qOVdS8udhBh2uIIZKOlawxdu5VH0MUrYhUqQ==","signatures":[{"sig":"MEUCIAwfhMq1PcNqgwnYuFREsvn4xaM49/OVvnpyH6Kw16HKAiEAngjtqDD4/EEfJAWzFB9KR7nzh7jCH9MC8HIJA94+6n0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":525539,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyceUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoPFQ/+Oo41GqoPiNNTGnuy4XOdO1r3z9JRDUj5jfCao0TgnVJDAjgU\r\n1GfujSdg9vHKgSbZSf7PRE1Iks9su50IV3hj6ThHkI7Y3ax7JnmvbROCaamE\r\npV2kaqHDLnnueI2gTzmnyGyB4k5PH7BV/A/hpnkRIio4enjFtPtZb28A+QvI\r\nxrBuLkNafsIYrlTQ8axH9U6wmUGgUInbOTzbHLPMK9ys3r1rmHBMmXAG8fZk\r\nVLRVkadZJOzZoCWYj/qrbKsKbZ3a/mfco4Mg235OqOEq/Hj0Tc3KZNekk6uA\r\nYss56DgUAUNEoL4XipPKdVWu3/+602qu8p/hOrkN780iHvExyb5d0GV41i2k\r\nQ1ABNS0DI+C0pFMxQQmc0ilib4HBumRzQrJ91nLS6TPNit1WgyxCEIJY6N27\r\nTUIFiwIb3VipZ5xGMB9Ytwamxj7/9ej/griY86dAav+Oh5tcD7I1Ju+jlroI\r\nndM6tVGc7ZDs3AYYdfJo5L6Z7+vpErdlUebQZcz/ll5Ite4THX7B5+U1KiqF\r\nglIW3ydth1tGgQoEIO9KqC5uR3Nw8Bkw4AGIWnez5xbs53evuK9mnTVJ6hOD\r\n6l/Xwwy7wJopEmOBJ7ZG2wQfPd302DLpvp2DjRCwSq5EGMqkXXD1FJ1fNxtn\r\nrmn1N0W279mgrtfknp5hkGdvoSzZKNzDxI0=\r\n=BiO0\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"c6d9a201a042a0ce4e9f1a6dba1df61030c4eeda","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.19.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.7","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.18.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.18.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.17.12","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.1","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.13.1_1657390996625_0.7175444488931635","host":"s3://npm-registry-packages"}},"4.13.2":{"name":"@yaireo/tagify","version":"4.13.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.13.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"836b7c1eca9c4bee6d07a2a2534836300e9ade8d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.13.2.tgz","fileCount":12,"integrity":"sha512-D0BGUiNKzR3hbysqSKEC4E9+W0mnRBMqz5TprilXSOwD8BRIjots0uyDtK9sQECCeX8ghKPwUWmn0/KfafI0og==","signatures":[{"sig":"MEUCIQDRIA2TTse5cnBnoFeWXYrieq7iUEcRQCFDPeTCuSxrdgIgLr7mlSn37SFMuhbZAYrsq4mrg5gy2uE/DC5bqEi9H0g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":525823,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJizH6MACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrdYxAAls80EPZ8oPDqDseyaO4vqAmvfcn6XWNYqvCvTCuduxUYpcgZ\r\nbSqVr4xU6UU6bLGvp/WG5zUjjMUHLFliY1HMIF7dlfpz0SVrq039RSaAHDac\r\njiy3y+V1FZLDqcgnqBTISX0WEtJL+kA0MyS/h21wBz3oegw/+F6iMibRJaCh\r\nlDF1K1Be7U2DEa4/DaJXp8XW5gh5M47FWGepxf3/G6W1nbA6eyAL3RUrSHAd\r\nUd5n5uQRpxaXtBzyF60nbD7Xd+lTQWE+3CYLhWTDH+aYVeWCVDRLion5sTCX\r\nTFD/JVfmvKA/ZNoKb3xSMGZ8dlWYFbpMlmqfq1NEt3P93Wz4fDnU1RPkiWwn\r\n6g09BCTdEFMF1OuzmvacVxBE9Az52qprYbFixp0TPqpRzYp3W73tlML0Koi+\r\ngcbEQ4fULmmq3wTtpgBAZbQ/taTFiNlA4r+PcmMZoU2x8Hqb9UZMgguQUnGi\r\nFjrk0TfyBXAO0mWXN3LP0OY59yf8F752AcJgMQHdfR3etAC9VmgGkam8GqJ9\r\n0sDtpg1Qi67mr0+9GDVyMEIlceFdcW3Py26X85djX8R2Kay7xiSbVdxqIexd\r\n5Voj3PltliXx6WNIvxJ0rAiZx41DvPbcAWHBaLMCA1fDXWEnzJwzTVk9v+c8\r\nUaCfwV5XWFbJ6QFIyFm6qyEXSLJdJwsB1t8=\r\n=Eubg\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"39a61fc11343d9233c71c03e6c67c67a46d13f5f","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.19.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.7","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.18.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.18.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.17.12","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.1","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.13.2_1657568908038_0.477079330660503","host":"s3://npm-registry-packages"}},"4.13.3":{"name":"@yaireo/tagify","version":"4.13.3","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.13.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"5e70eee84beab6dcb2981c9caf4df150b6d970bb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.13.3.tgz","fileCount":12,"integrity":"sha512-NF9IJeQsIZDSIJzdd/fB65LkyJhqQd79aPP9OFkW+T6CyQOuEqVv13uufdTbbhOCq2N/zeuPT/hlPklW9qqPOQ==","signatures":[{"sig":"MEQCIH2uQzb4UrMcmRvGK748jWr9T8RCkZxMMLiqoKJIMn6XAiBpR9+/BxPy1X/4sbmuqYD8VUsyfe6T5LfauS7UaBQsQQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":525983,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiz0WpACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqvRg//ShzcDx8kcwplVtRr9hZKG97Up7Fp5YPF14VvyHk6M4+/yjj/\r\n9AryiLuJ630lkx1uOEYbMedTOcvaQEsyS9M9WLDAUrzxM7JHtKEIK7AzXcfA\r\nfzE2T1L6vD8Oa7g5gmq8wgQlNwSntNe70xCp6vjW5EPSnGyaM7r+d6jZeDfv\r\ndjQZNX1DWchB58aWsKSV4C8PoWR9xxuzI6XIB2Y+Gisu9CzLrgrhYAkQe3Sb\r\nddXHOJoHdFACNwD7pwGdswGdf7s4FFZuv6gQCGywgaBDe/Q6nVnYj0Vuz+0z\r\nDVSCSVon8tmxKbH2/H0Q4jjMwe+kaktubgQYwZoQN5xuOHFiSIKhPod+w8QB\r\nAn0dE1Xu8+BUkhzV7wkkMkW5sJPcz/d0oCJmn1bE0yq+1E9jfsA9JsduE7m0\r\n2xSxzsNVFxiJ9cLt5J1Js5yu6j6ULaxg00ZBO7FXlrkZSGvvbW4hqK83yQTf\r\np8HppX85Ht2OlXe4ZVWv88Sd9kgwVxJCS+swUx53TWPNTDnST7P7zhwoIi+W\r\nvy6lpZ+iEXv9h3i6CCBsoA6hZatyJgKIL8jTmNGQS5SBUuT212KKiF7fOzCF\r\nnfkGZIjyfiMe1MWCdFmjstVLKqCSdw3a4W6pyYN5l4ag+t9ULjlb+7XfFRhO\r\nvmKQkVLCgpsjvvXmMxxRHh57bvuzsme41h8=\r\n=SrmF\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"7b8e2085eaf489f90a644efdce7d9bb57acd7840","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.19.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.7","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.18.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.18.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.17.12","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.1","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.13.3_1657750953395_0.28723681021008884","host":"s3://npm-registry-packages"}},"4.14.0":{"name":"@yaireo/tagify","version":"4.14.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.14.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"4583ca6ee3064a4dce416a0c00fda83711b9c1db","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.14.0.tgz","fileCount":12,"integrity":"sha512-3c5RpUzy8raMHlaIONQvmqC4zGltWbtmPuWGw56bZTlLsEyjjBHs52/HhaRkvTo5hx6ZwElPL59AzkrPUybvhQ==","signatures":[{"sig":"MEUCIQDXANgfMPiy7G5u1AAPoGh/Riz97PqEieg5AXAvTARmNwIgLNSpR7E0VxJ6M4KClOa+FtTOZiK0g+zX/qCzs587kTY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":527576,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2G4bACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqfUg//SjdCu3NXyKODK+qQx0HVcXYoW8QCJCspWT/IjmFlTPc6lC7m\r\nLxevJIXr++UULdaYBaHNTPs0xsdab1aYhG6DJOZTRdi1Tupl9+hjss0Iahfo\r\nMO3W3hcHVUh1iKsceAVzR3QLqvzk1YGupAfZ96bhrVShdsiQZ6ZZ91Yx/0S3\r\nrF379QcxyImRMrNqTR6g8GtTh40IDemQ09LQApvP2zlYS7TNcHiF+P8MEeld\r\nSYlOcLqe+RkMG5EQg/lO/Ry2OmaYHJgrOFLpE/J2Y2/bBbulGlzrODOz2y3z\r\n1aA5tJCg7A9ALKFaCoiXTpRMx0X2BfP0dfkgg3N6x6TrOnFkQ904QDPkdFq1\r\nfVgpCYpDVl9KQK/xUC+G6wRC47o+WP7JZw9r6nYGQHsJ4smfeKKfS87mG5KB\r\nShEpVz41OvhhEwCWlCXKIw0YszDptzeDduAqWvzw/8up30YjuYZ7AMecXrSh\r\naqfQUvEjEPj1WlgvrhbPPHka3458iEMVYMr53g4IB4UYgW8Rx9a1k9LWo9h3\r\nB/ZUFcKiIr2rybCHWpLyTnybuk2EOLOFp/T7Wvkvt/n7u7d9w4+CfDvZeNdC\r\n6/WlAKViyum2BBSJoq/do1uTZn4HymrMux2tkAAwxcBQMjKqe+sECrb12Ojs\r\ndxRxbEHKHBGE8jBjfqwVm1HQCSDIzKFL3Zk=\r\n=ZdBL\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"08205d2c6a52eaded30cea27708e1166334ce24f","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.19.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.7","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.18.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.18.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.17.12","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.1","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.14.0_1658351131042_0.627007404901972","host":"s3://npm-registry-packages"}},"4.14.1":{"name":"@yaireo/tagify","version":"4.14.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.14.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"2657426ec64a12f1a1000400a7be6bba319a2657","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.14.1.tgz","fileCount":12,"integrity":"sha512-Yo/keCvgGRNV2KA6M8W/A2XUV4S9lTX+VYWwErWMJxKgzfMlZmhaOqkmuQBbGCvSS/GcLW4lzcV+IxPd+yPEXA==","signatures":[{"sig":"MEQCID5PO5X+XHYmF4xf3x1iN6TZAVW5PAtafEbtL/jJRwtJAiATPzn3bQR734ORSa2CoJDGyWVcx/Fa+OZ24zDEWwyncA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":528857,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi3xMTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoRdg//bqoYhmOWOcPNiD14q0B1WHhHBBPoSR9KwUJs8BKidnttG0bY\r\nfFcECtDvaCX3ZaQkzBdePXZxrzhgT1b8pCUS0Ame3iP03mqSZOOewQtauTxo\r\nbPDsf2v63H/V48g7szGd6P29iJ71Ix5arIEgzdCzVmV5ktu0ACxDbyEPZKU3\r\naMTPU51ZGaZYK280QEHk9AflO6ZUvbcKx5vZSVE2YpXBc3mf0h395haTVar4\r\nIVmn/VmSs6Bl1CNp1WJRI5Y3oXX9qj+LBZuFNR5i4PM0oq488zbLj0Uk7NlC\r\niU6MzqQXR4o/EbG3Q3jGJRnlZp+ZFDuLZJr3lyBOmvC8ojuxVg26qTNkVcLS\r\nrMf6ueNcWoiAhONwYEKlz6/wX3xwa2Z6VAn1iGiy3iERYMXGci5Zjv47QWni\r\n3WTpS9lJ2shTu0C4D4EEr60CBZb7lCECbURrJAWYbfIeez9LS5DValX+ye5N\r\nFcMP23SK6PyVgxQqYkBOSH/tbCLjPgUmTnCr6FdkvET5J2C+RtXjVt/ap82i\r\n/luUUCK/ZlvibIfxskNvMvkmI1NAnuSF+drG5wDfMGmFZ28JT6bsZtbQDhrT\r\nH97ltvsImOM31lnFMtu3HkaMRHGwS3J27BG9DFJob4pMBRrjTVDCk89foPXp\r\nueve597W+5/2GTFM6YHHEu+Sv9CIPWOaWgI=\r\n=+ryt\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"4205bad186824b2372a307a0630123835952ce1c","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.19.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.7","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.18.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.18.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.17.12","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.1","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.14.1_1658786578996_0.9744481387140715","host":"s3://npm-registry-packages"}},"4.15.0":{"name":"@yaireo/tagify","version":"4.15.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.15.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"4b65cd39fa837dc81e257cb93e8057b4d4fb16f7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.15.0.tgz","fileCount":12,"integrity":"sha512-WQGgOWejeGBJ6d9gyYeYrQqiyOFT7WkdH+nmgXiV4BFyZvNwgrnCsPGmy4WLydkphvfhZUtMD9khFiGE6jY3iQ==","signatures":[{"sig":"MEYCIQCaueIKC63541PQloXVhb5QYXPW+jfFJIigJKUUJruXHQIhAKM8m/CFalVHrxvY6A+gx1i37UDBpRTcdeNxZMHUTQGF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":539668,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi5apaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqGcw/9Hnl63Rz5wXYFHAYMA4q+ti8c/aX0d/LoPC3NfFoZgW6GMNlq\r\nnUC5VKameZNQIPTXL1kwI9xPtdo1+hOIKONZoaoGy7q+PRsGoDGYbL/Fxuqw\r\nMMmZGNhoTuxKbZ0VqOVxaOOMn/VaCBS2vGjzp4bAzx92LT1aJr/0MTKjW2uy\r\n/QrIp4dnaeAfGD0i/QOnzC6TwXoIRCP6O5835h2+Ahw8h77d4Ci1F3W+pv+M\r\nYf+8rPbVECq0wh04n0a+AJsAhM5my89prg16FPqEEcSALvTXfycH1dKlJP6c\r\n24SqQNV/eZEV18Q1c6UYmzxU/ngkOndtBcfHRFijyW7kO8b/fmZ6NhBbXOi7\r\nWs9ESOz8P+6BLdQS8jzs6jj/5OFDnn0oM621rnU4jXuQJTjGl/+INTO4/9Ab\r\nB5J8cjesJtNvwjAiUoystNawxbNdQqNonjfqvPxEjdqrGk31zqtIY2CoFL4Y\r\nFOErmZ5cMAP1/jXt3LDvpr5BDc411O9D8b/Ck9IsdeGBsV0zGRzaNRtU2IiO\r\nVR2QwNMvuyaIK2YDqWleTdCF1JCU1A782ZCxyzRhIueyGaaNedYqrTyNDEjM\r\nCV8lqTmYEyrV2gXb4KTvVTzpKRVPDktT0UgeAArv+9V9kcodq16jV1PQJKKz\r\nMX0t5poTVpeuaIPPp0JMzj0gZnBqwqi4Jt4=\r\n=C+r0\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"9bc961b79105bf471b3cc9bf9f0f657f968aca6c","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.19.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.7","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.18.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.18.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.17.12","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.1","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.15.0_1659218522248_0.1958019533933053","host":"s3://npm-registry-packages"}},"4.15.1":{"name":"@yaireo/tagify","version":"4.15.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.15.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"89c81322e396d3edf9f51e5de38c93e46669458b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.15.1.tgz","fileCount":12,"integrity":"sha512-wPq5ZkbypZk1GKMpHqYqs8aW6f5qtXe44Er6U0kYLHeVtk9PGwGCb0mRuoekjsXMhZxybUNh7C5cFF+xB7XnEA==","signatures":[{"sig":"MEYCIQDBvkfGTm6ih2HEXSgh7jPuPqpdeHNZLyj+AEaEPQsUAAIhAMeSMsLEL5NEY/+QBhpFVRydfw/HKutVm3TU+Bp3sFnA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":541915,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi5bkQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpfLRAAhsro+tNXxuRg8JrfA/RmU+ZhGo9L+FDAqXtLsEmttab9Doa5\r\nC1wH0eiE+MrKtBrnXrE9gjeX5ySWVAxl/J07CZ1Rjdp9dYtmIxHtGewFIqp9\r\nwqI9LRbJgr1kmcz3ZNS6nf+6FkqI2vGESHYsAuaNQ2pvZRJ8IRUI9y8Qty9O\r\nnjV5C2vJi0lUjsbTTVZJL0vqr9QNd3m1gUSnui3Y5KHQMOoh3C2Tm7fJdxEM\r\nT/mgfVHV7FZgnMqB/Z6ea7BeiiDyJEbt+zYCCOQh/37g9WZUsKAPzGCliltX\r\ne4wqjRvPOcZJaGDAXBEMjzvdLD9ED5deRwSb/GfkFWkIOKvCkyGzOfE/FocY\r\nryATe6lbaVcj04Vycxpukady4hZjMivi7jvVrt9ZbBXoSVnKiN18zwH6InRm\r\neSVzJhPAbSMrSm/CxCmsEaZSQ3NhC/LMynbw4NDBaOUZ27BOx2nl3EiuQfSf\r\ndklFUq13WKA8oh5D7KApXCyP71xwb5XPbioVfh0l6uR4yJeD+xLlgJVZrRv1\r\nxIlDKvMf/pW+Gdqs7qH3+NyHoPSffZ1XjkpH1gzBOZ14iE88VV+VMMHAQF71\r\nD3Z16rOARK75SrWpaB47QQVRUkDg/leLTFB+5HXXcPWj314JgM5L2TTU8den\r\nduUL6cVWXSRBxMjyDJ1BFmpVOtWDT9BwPaU=\r\n=A0/1\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"0316bafe211119cbdf99162395c13eade8e98929","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.19.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.7","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.18.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.18.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.17.12","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.1","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.15.1_1659222288664_0.48008464357593716","host":"s3://npm-registry-packages"}},"4.15.2":{"name":"@yaireo/tagify","version":"4.15.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.15.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"37dd807cbe4502edc8830d169611a8c4bdee5476","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.15.2.tgz","fileCount":12,"integrity":"sha512-azCKxE4rl88qqZBgvIvTcfvHrk4M+y8ZT7JuVpwCGtpmp/cPps0nmibHNUiCuu7VWqL0IusrBmQ1ATtR9WCTlw==","signatures":[{"sig":"MEYCIQCs50cOZmptAab7PI67ytu2b2laz+Q0tVizHF067tPjsAIhAKps9nNdvKGEovnr/rd08xC/Idh1nqVwwzSpppsF5JTa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":541945,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi5kmCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq/nQ/6Ax2uo3+3yUKB1lUXdYFN2/OU9nmN4dh3kGWsTVNbNYrJ98uX\r\nsldfxaebUoUXQ7vR8MlsNg2FcY56n3nBG5W6SMqCIG0vSBGAy6+K8tPpcKTI\r\nps+Anp0T664Sc2QTSCqosYnqq3M6pG/HwrwpVARin44rh0GBNvRAVkG3NNlq\r\nCBI/anOyF4Wx7abz6h15YWkTJqIhGOFHHJg7C1ywixf22Qh94T5Z1iQmzd0J\r\nWOprnYba8jlLdT5PGXdcN9Z+HyElFSEMVsd5491YbXFAkQcE5KcV/VVSaQ+N\r\nObs3X2S1BolSXLQu5wVc7DkFPUH78ChVeMB7j+p/ICRr0Z4KW0h0Ayrae5/k\r\neSkdhANw8kOUYQ+c2Zqmka+NlEgoNlDo1Jm5a4lAxH3VlSc3k38PXsjLZ8mI\r\ndx55llOSXlzXwtapvi8GDVt2m+uPQRfNBT6zOcrAmpwV3ruGNiYD8TQ7GSH3\r\nbSiYlwi4NX0YKmcxmIso+tp/JHdoLkUi3zevlAa4+HIjyTD1Zh/GRuQSzCFH\r\nuTuJ0GFBv25tlPHN9r/4pmRnvTLLxJ8VkAGh8jHXe5nAAq6H8NLe2PqFsFB/\r\nzXlF1cHg+ojXA2odXcrX+eZmIgwqdgy2V/CJlZAmSNtoJZSkNIwfgKo8Y2cj\r\nRPJiry8IigPYkW40YNr/Tu/fntlvwLOyIeY=\r\n=4CX4\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"6f841fb8aad398592614f0b426723b51d75fc1ee","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.19.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.7","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.18.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.18.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.17.12","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.1","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.15.2_1659259265983_0.4691014875204669","host":"s3://npm-registry-packages"}},"4.15.3":{"name":"@yaireo/tagify","version":"4.15.3","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.15.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"8a6bd1b5dceabeeed231ff78df1439668e6cf584","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.15.3.tgz","fileCount":12,"integrity":"sha512-aAeKlx+HrdRNzQp5wbQN1L5HbMr63P6ndBSwXXY+8dlbQy+aNupWdB1P/6MWtEEtZxUx9K/Bz5DqO8vFuIwIpQ==","signatures":[{"sig":"MEYCIQDFpmhjP3iu8wdZVelGNKQBayKwpA3c5UgYxoOypD3rLQIhAKORuWsG7K6+mqVhKp/C4PllxiyvNDzM0/td6P9D+g1a","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":541758,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi7TH6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmptMA//azdetEDYDKimNF45PKcWwyyBI5l3W3jtoDFgujBHn3Omza2+\r\n2PTDPwtqsWBy2sYLbqvse5AlsdeyuV9JoP1kUEba5R3qfGIB6WcOiooRvIek\r\nTy//BnkCcOqkak9ydbmDIqJsx8jEYGIZgm6CV/bs8344/wLte0IEu52TSSxb\r\nv9yyqurvM78ps5hd8A+GcYu5Xagt8OZgeJtTz3UKJpkL586o5vXF4f3y8Kwt\r\n+noCxhEZFf2ZwgHVzcwNWS7Z9cyxu+lwHV8viGbQeqV490+jJY/KMSw4UYn+\r\nfJzbHXlQRTOMInscSBGR/TsDoeyjJyA+k4LfxZb4ldFyDqU0vD+wpefrCPuT\r\nSf3gM2GK+kJzmlBXbnhkrvj5YRwwDDgX/KjJJjie9OHTsopsREph7Ozz6x5h\r\ntVWTa7Em8XSSGu3cg07DNbQK/9N+gKzxUQhJgWkX6VgxMxA6xtkz7zT6ncHE\r\nbvsrYmL9AU4W5HFvzwy2p61AKdWRa4Cd/haGTBjKPXJ6ajz9+itP64Xt7F4Z\r\nv/zPoE3VJajTIu9FTtXnpNyY29s5sL53A37yUQEbZsFrU31zcW90vtJDQqPb\r\nHGffkVxsyRGlyaFczk1DoIFofrDkJEHsQDj+p6KFF1dQ/NF8HGRxhuhLoTa9\r\nP6KvasqTzVsTdWxNz/YQfuMZPo3pSloZDUA=\r\n=6yIW\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"621d402183026e8b4427ff4668a9c2d54dd34466","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.19.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.7","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.18.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.18.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.17.12","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.1","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.15.3_1659711994493_0.05939099238000489","host":"s3://npm-registry-packages"}},"4.15.4":{"name":"@yaireo/tagify","version":"4.15.4","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.15.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"ff67813ced12b86c217bb3fbb427f66ca4ad86ea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.15.4.tgz","fileCount":12,"integrity":"sha512-wGW6Vlsqi4Vefwn9XE/YrOxKh0YNHObxE8dnwYdrqVdAmKSa102rbtU9d8gyHVkYNLExbUw8sRotyTPhlPQsxQ==","signatures":[{"sig":"MEYCIQC+hPmkA/vbNrNLSx+WexpO94uWvbGpz+Npmkf98MFz9wIhANYdGCQ8dGO1sVVr4aTHW4qmU2qKd3dDhgeZMoYiiNI/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":540640,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi+AD+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr7zA/8Dh00NYoKKC9w/j/pJcBiY5lommnpLIs/FvNUPUmcsFaYGmfp\r\nrfGOBLMA1D4Mpwr2D2UIJZtduEbTOgLmd5pfRkt9+1DyTQFZPuUuq0KoyOeg\r\nDX1WDv+cHemdMBz+8cQM29wWt7Hwhx/KCXqt0juCTQS1RF06SSC/IAT+CZL1\r\nm4J7mK7+/FFy0J9Ig29x7ZYjItjEZ25AJVeM1fSYYcSxDlxgG1zuWi/ERi9n\r\nv+nNvcRRF1k9n+HlKc+vInt2kLNviaJGwq7QJm2KFOeX50GfIIi8pG3aPsXg\r\nJSUULjnuaxgdsC31Omz6NvL6OkaTtPoP7T/lUrQRJHnET5pNEIcMUIsGNJtI\r\nXOfaJ+D5DR7FZGNCdJpvQVUgP5+vOgrghRI/CFgoYvaZx4Mqxn8MougnFxp8\r\ne9mwJs8TR7wLfxSrl0DQHaTVd/0uGkdUutAivPUzTVqxBbViT2zw9a2/tFd5\r\nw6pV+IikE0ThodHPY9ltovJrfreVlZCAQ+J0fUlfdB4oSW2GptQokXZJ0Bn5\r\n+Gz+0kS9GInbb3Bdc8v0ygErxSRPWJvFVPi8GqWCaK+sE6He+inh7paPZCbC\r\nxL1T7z9bo1jojOnVw+BBdQfYnycYgQ6vbPBoksy9LobvCG7f92m+LKuWq73C\r\nf3QrIAaShScLxIIO28DwmxZlfkf1uyRTHJs=\r\n=K+0q\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"6882cb6abe746035ff6d2096461c7ae7413b1f70","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.19.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.7","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.18.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.18.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.17.12","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.1","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.15.4_1660420349920_0.6422306423509088","host":"s3://npm-registry-packages"}},"4.16.0":{"name":"@yaireo/tagify","version":"4.16.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.16.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"a100c83fd3208eede1eb7e31d943d1907927f283","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.16.0.tgz","fileCount":12,"integrity":"sha512-afJkhQjg+CifFYWZlIrKNi+gb+vJji60+Xns7EruVP6vuO7eGjbKZqhxwMHq0thLNZvpiLK3i3tlYT9m0G6Brw==","signatures":[{"sig":"MEUCIQC5EGMJni35JfiXHbXPEcPc3yM4ioOOQi6LrJbkrL/inwIgQvcONb15omf4drtb0cfUE2pJ4vhwgES5K9VazgaavQA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":541822,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi+fCgACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrSKA/+I4+WJ+2WkupRh3jUwq/5GhPiNXl775VRYC6BY1AfyarOmF9q\r\navnNduBno9Jf88CCeB+o9GyfAVM1PtoxeIaL7kRGWK7i4zPYC93fpnltAO4S\r\nMzoXQ2uq50lMI+kEHj2r+VlpLUJHfn/zHY/fI9TgoPXANeC8wrwmxbByV4dt\r\nPRmAOu2pPOHnvl7Bcliw0hzZBLxzIri36z7qtEgEAE+y+4hMnkaBBS1duwj0\r\n7KtIYVsRwfGTkHQ07nP8P9a3BRxfXx5dRU7pjJMFyb7iOQN7ahXQWbFslD6b\r\nEMkpICwyu7HpDhbBDbmPFxhYcm42ORs8re0DtgF7Ful0Nm5Rs5oDMzTabT6e\r\nffCe9+NN+yCdgtd2qsQzS/+kAqkWB5t+40sInGN5h8lKkaqkUQDwFsojxk+Q\r\nb7dpYPmq4Xx6JQlxkLlaNbIyy5fNCvdxkko0MidhAPtq4ozcMA17o8X9SzVi\r\nMd+n7y7gGK+KYcXWrAXynhDU05ce//o02Xx9iHR+dOTpaSupb6BE4+eDOKaZ\r\nV5eS8fppCopcFkpbndhelJu2SQaor0mxIvxa/XyXiIBQOlovRvEfP38HIy7Q\r\nKyBKOUtKR6f7KnpdZLqMKo+BQXkWm+oAH1o7BqhD0iQ8tdhq7jhs0turGsZE\r\nmNU/2dw3w+zLxx76WB8Xi1uxSzYAWSdBTes=\r\n=iqSb\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"8aa938ff27e114a4f4d140e0ddeb4d77a5b3298c","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.19.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.7","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.18.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.18.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.17.12","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.1","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.16.0_1660547232245_0.4428995648347438","host":"s3://npm-registry-packages"}},"4.16.2":{"name":"@yaireo/tagify","version":"4.16.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.16.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"2d63fa7e538d73b8c7e30378aec868100d595a74","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.16.2.tgz","fileCount":12,"integrity":"sha512-xbA0uBuS2C+hrKvYb0LdzgqduFr2ZqLGSLJ+pTaRB6fyWRmWTGE+aiBMcnYWAi79N6E9RFnjZ1oIqde76bafWA==","signatures":[{"sig":"MEQCIFLclNnntm7czRQ6eC9MVOm/OBMVrHZ19959Du1u2jmQAiBHX1nDT6JdSTPQuKOh8cBrTUkdWtlQfJEitJyfkG7doA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":541990,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi/2y1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrZKg//bE30mott8F2ecxvB+F7sUci6XgTkNzSQl0xJJBkJXTgmWUZ9\r\nscnf+/aN1gFZ+ojbWgZYWuXQsqcJlQSDIdbqo48jWsYA83A3TVBvLQfPMVYo\r\n0sNj22QyEy2ezKFhP3teAwhPKxsMEUArugoYaY9FCtB0AVun0yDesYdDmtLA\r\nBaxL6goX9LzDAWSApA7gdSZUJXfvhKo8Xq9wy9fE8JtGZHVOMGPDT6NvMQJy\r\nPeWLE6NfM7pEkDX6UX6fgkwqqRh1Wvc8itEgq/R3NGdCW3eRDs1cs9oFI9Gj\r\nJJkuTokbeiD7W0sLQHa0/r09h2CxGEVUxDC0iRL/ADrD/Ca1oJocrTGhIpDJ\r\nUXUrvgR7/gA1dT9nDWpQlQQBDXtFF1URN+eKHjpsle6ikof0PlYP0M7FVpmI\r\nGo3NBXODjU/SBDpa3R7U0+wQNNbuj9Ac6gunwyj4Fm8PpjfO42XLptQfIugz\r\nWe0XBvfYVNO/62oSb9r7NElQPOuXB2PVFfLfbdMF7y23zEmlrDrfgUZj842e\r\nRDKXniLUWTgMgUsEk1pIKMexCIPRrwg66hj/RAJGDR30AieYTGmVdXa5oDoC\r\nxMvFy/LdHayGR16leV8JnjHqKKIp3qrnwqDfVyr/v+f4fzT84KQUR3CnmY8q\r\ngjMeUBVGzSjugtdapzRFrKnaxGK4nRDzR9A=\r\n=3FkG\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"e6605ed1d1cd4a6b0e72f4c647ca444ebc05c061","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.19.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.7","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.18.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.18.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.17.12","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.1","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.16.2_1660906676920_0.20050047045719466","host":"s3://npm-registry-packages"}},"4.16.3":{"name":"@yaireo/tagify","version":"4.16.3","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.16.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"2646c9c94241d4c89ff8261daf61767dccb66e34","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.16.3.tgz","fileCount":12,"integrity":"sha512-qbtNo1VJ0ANj9mE3ggoRqAEZBk2GjrHUIs/YdzPEUBRyCh4VOF3UMCXPW9q7zPqgu0ZduD0dR2Ygyy22co9/+Q==","signatures":[{"sig":"MEUCIQCCeunZxlTqhiKtwtTRVlLMpPcMp8pgATrvPgPb2ietHQIgE7rq8rXa11BBQYw5PDBvSD/2a637ewRQOBYByEAOavc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":544302,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjEJdvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp4/RAAn+xZvaGeAl+WXZOXJcRYJzHD4S6ehJWKpC9fOZ5n9qdJt9q3\r\nbMbyN+7KYo2s5NZ/BbCRVMabu5TWDLoZFOYqBtWNGdVsanPGNPFBVcadilgD\r\nt4ZbN/338GDiFBchV3lI89UQWt6tqCruj54PsEqsmpT4p+QihJuwOl2mu1y3\r\nyJ6WpQAyKnE35Di3EyZDXEPnFNcA1q74ENo34afZYyFwXqp/Fx0efSxd+NSJ\r\n8KwfhhnV2YszytnmZZgMLq03zJTsbn/TYZTw6qQztQxvNyzzH8TIZvi2maoI\r\nvnt9lszaePzlxYkfZjE558uuJIet3HF8rMyXTeD170TuGsRNTqlDLxwhEV/z\r\nDGZbHauQvHIZwdN73To6FfwYARhh4slrjv7+Ik83GdIKFTNbcOYlQo0szzF8\r\ntVNx6h8njuAU/c+MAlDqF7sd9LnhZipPvpqhobnBkgp1OB4ZkDlFDK8Kcrv8\r\nRlIWzscb3Im7KiP2ORrvK1et6YWUVnGuAPRj5zeUUsvV6PiJczGJORpO6Dx0\r\ni01/+BtpgYNNaZsmJ0zT9m90OxXy9F9oX0pS3y9OW1WHBcyze8NoYCu7CcXB\r\nh4PkjatHYvEwm+FdS2wPY+5pTdzjbz8mFYW9p6cEJRfxC6JJw1rNlJRSaPXH\r\np9DCJCCsNU/BtgUyO21/1LrSnn/ZbcIw2X0=\r\n=IdEO\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"ada4473669f2fb4598f379cdf3e3ddbfc90d1820","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.19.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.7","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.18.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.18.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.17.12","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.1","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.16.3_1662031727560_0.9152703138405403","host":"s3://npm-registry-packages"}},"4.16.4":{"name":"@yaireo/tagify","version":"4.16.4","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.16.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"78d2cbb56cd083af175d3cb48178ada0b37d9872","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.16.4.tgz","fileCount":12,"integrity":"sha512-7x13aVfYPGUUMXWkV11/Zw4w1RkkTWtaO/rEAkaOFNwGIFXDBeG5Wr4gWF6JSHXLZAreS53nHq6b6mJrtpUgYA==","signatures":[{"sig":"MEUCIQDs2ZvQZaoNpo6Zd/FI7Vez+LsddYHWLB3vT3fxp5/TqwIgTmd968EyznfD6Y1KMkfTBoq/dIaJzB2Tx/dCdMCvFoM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":547080,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjE6chACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp1dw/8DJ9dira6wDOSrI3ahn670vtzhgEMT+TbyUZU70lNX/mPYoHo\r\nPh0HiyPF26c/YfKO/XejM+UCWcchqw4SpvBlgbxUlELhJzObGaLcUFLGYip1\r\nd1uP3jaWGh8kdBptHYs2L1RHQTNqyD2nAFGDiv/Bp9xmVa15i8p6CkzsJZVZ\r\ncIkCGclanYbytZ1dCRHFNwIxwAqB+pRBGUjA5K6k1jUXVRNa41cZmRv7icA+\r\n5DOtRVC2hOr3kc2J6aLpDHAHAGK/BmtUPgP3VkV6jJxNAC6BcAL0oqzcJqXw\r\nNlFMI4fNo2hxS4S3in83D57mhZOcwb4P1o7tNq7iPNQmXcqv57Ewlwnaauiq\r\nOTV3JgUYPZCTA5gYFLAvyoQkY6dGgOiZgSHYtGSoZZa0KtxgIj+D7e7zlz0+\r\n9a6OlyCZZv9uT3Ah+gO6sr6QpqVv1lS0ZyzF8tyNbA+neZ2T8Q45RCkbhyCc\r\ndCiBhHmfdjFW9Z78D8Pug2LKHF7p/TM5m1WWuDBHLL1ROyZZgKTxCMpwBwyQ\r\nX6JAf17aYoM9sHloW777+MmTgviCCZ0VCe5Ilyq2FAQfUlPUVjBFY96X3MD6\r\nF4UoXAJB+rIIaODFzIiN8ketTSp28wfTm3tbsSrDuEX1V1rvpZgczI5VOjec\r\nPMdp+Zp6XwHlJvOBwSiLtMeZJZTybseuvSw=\r\n=ZUVR\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"6442a5967c6a515dcd6a4d18d620161c16ceffc6","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.1.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.19.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.7","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.0.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.18.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.0.1","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.18.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.7","@babel/preset-react":"^7.17.12","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^5.3.1","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.16.4_1662232353383_0.8891974427446991","host":"s3://npm-registry-packages"}},"4.17.0":{"name":"@yaireo/tagify","version":"4.17.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.17.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"1558755c915c124b2185f545d05654bef377b457","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.17.0.tgz","fileCount":12,"integrity":"sha512-DTAaJ+8moyeWswZlAC3nH1DY3oatg+vXP9XInM5EjDxgVZZfaBlrW2CmB9wMYMitJPGFxOsIh2p8HR2Dmz0L9w==","signatures":[{"sig":"MEQCID8beZbSsEurkuJ7cKDCnKmA8bt3Pu/i+LsykmCSSOxjAiBwx2p5oMbx/FENhYTnI1ksz7UV5Y8d86bMJg2sbpr59g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":554293,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjcBOnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoQ7Q//eMrIUZDz6JhmOndy8s2OI8KZ2TcN0BXAFwVdKy+/htj5uqXe\r\nuTo0FYxvczhGQirYV5HRgfxfXDezUquIPljJ8M4VTUw1SSOQMn1g4Yuj5uqv\r\njo4LPK8Q/niBJerKADAq7tYByD8qpR0SiAUrBWJzSBMihbSUbuqMXU6rl9wN\r\ni7T0DH+oNUy//wuynPgrTn8YA/YZA00v5/0SlpE2oiU8vFD1MTJTDqVSV2qM\r\n6CqPgrK6kbcwSlrE32CFS1RZ/AtoZ2ZCtZDfljXYTXIWgFCAm6l1WJbm4pyw\r\nMBTGd8S3lywW/KLeu5IhM8FgTPz/7Cn+hqbH7qKo5hFfa+gUpSZr2hZVX4G0\r\na97bkWzWXl574cvdeTShhaBilpwIQtRoHE5uuXTOhHtMgEO2t/5fx7wkUG3p\r\nvA6hnrU4YcZz6V5lNOQ38Cm+esNaofZ5rOVcjDFiiDMlyf2zyWjbsimnCzBf\r\nki1yXlT+xTEMMAavkoPPtz5nigW2g+xDkizTrgLmaCI3uKLueWy5xvcXA1fr\r\neJ6bKzoi+h/AjGL6h25QAyc2eaSBhpH19q+zT3wY1brIdj33MphGkd4p7vCY\r\nkryMQXW5M1xWtRvGPDTXHYg66/U1YnyxL+B2+XfqU8zl192ChKMpIljyCh/N\r\nMZXLbJx38Q6OkdzVtrixqsd8c1kXEYAaMZM=\r\n=wt1B\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","exports":{".":{"import":"./dist/tagify.esm.js","default":"./dist/tagify.js","require":"./dist/tagify.js"},"./helpers":{"import":"./src/parts/helpers.js"}},"gitHead":"8a9efbd680dc05f3f398bf91025f949a69551fbf","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.12.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.20.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.17.0_1668289447509_0.7848733953661882","host":"s3://npm-registry-packages"}},"4.17.1":{"name":"@yaireo/tagify","version":"4.17.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.17.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"c82e26b511f96f0a65cce5bd530cee40660c39d7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.17.1.tgz","fileCount":12,"integrity":"sha512-nxYSfiIE9HTk+gL7NDjLOvWbi0WOdiXRok9wNk1GKGxumz9JOiSuDHiF7Cerph05cSPlu78fm/Pk3WR0jX5WOA==","signatures":[{"sig":"MEUCIHvbkPXLxD/DQBorR6HmqYI6mHaAwlyY/Myb0/a0bCcUAiEAmnJGHJRUL8Yz8vRH21Iz68WVOxYBAS0NnSCyd0pe1Fs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":553484,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjc7PIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp7FQ/+KJ1GHMlVIfA4PpdUoiWQygwQWmZeLvh06F3VqlYwnoCKAsd9\r\ntHcscHDq0ZdpXbCvNoT/2YbukEa+2YsJgmvDxl/N3npLr30QCpHcAzWtNcTK\r\nYzY9NiACxQyt/jdEtUs2l7go+RgdlHR+Nue0As6U4nNYtjABwYg+wVYjIIeu\r\nY8wNNuOmajfNHlGgWbkXcJEJ141fzEHLgfMnCBYxpXnYRd1WwCc1N4Itz5ql\r\n7iyW5LvxzQluK39Kl9vmLST2QDwI/iAXb0CTYYjMX/z0OtT8J8MG5jpXjMEI\r\nr5IVGKR59CXgqFwU8LGk7ZuzAE5Xw3eg2/HkplnU/lW1i5i4o4+9esyb9ckn\r\n68ad9u3ZU9SfUhKQjwKp1xakR0vX5HYcn2/y4cgkN2mWWayOhLyBDbjmzsHh\r\nfJpGPGgtrdLBt5epy+wabzPzA9o0Um39iiDZMsN2/RCtAeQ0vOuFgKr434PX\r\nXUtlCKrO2zNfQu9OOoHZ2mclI4K3zUYQH81WhVko60AgzSm1rkljd9O9tce7\r\nsCkebcV4FRo3Wm0eCl50h3pBFUj4Pl+Wmct9mMpq8dWKBWm1vJJYNiUQ41m0\r\n/ngsYoubqPxedbQWSSoT8B2vBDaeuZ5dzZB3eE8x/9t/Xt0cNE7XFCivextN\r\nA3nUbk0MkTqtgL1iX/2HrHRXFoOuGWJI6Lo=\r\n=73dZ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"d0229bb746098b0d68ba77c5055506c46c5c538e","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.12.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.20.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.17.1_1668527048312_0.43887416512349064","host":"s3://npm-registry-packages"}},"4.17.2":{"name":"@yaireo/tagify","version":"4.17.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.17.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"a314774a98929dcbd5cd677d5504ca1fcdb05d4a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.17.2.tgz","fileCount":12,"integrity":"sha512-pCMHI/4exinvCYThPDOOAQ8wBQtov4gNHYBA1ni9sKEjBkAuZztvbBOcmE3ocUG4a6VqniKcJvgZIt9I+UblWg==","signatures":[{"sig":"MEUCIQD4JCPQ9372rEjZQHrzzIp/Deox6yWcHcyFPTbm2N8KJQIgLd0JrPMSACHpy33Ojzz6zHM/i7UZYAq2UJfpOAT051A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":553922,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdNDXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrcIQ//YAS7YsCeXfooo1cpnqtoqxOB8xqIIcTM5v9Os5EFA0ekbKFt\r\nr87MDk/LYtyM7WRpDNzy4CpKKXVkocoBRdZpHj48bRf13qGQJMUmwMIxVd2a\r\ntOps+cINQlCXLk7QQtd1024nYN9VQYCU65Spqu/CS6kBfp1mxeAvwJqPONMQ\r\nq2CGf9f4eGqrkGZLcpTmMoPMalxGro6t+n5wAVvrT0TiIYxM997K5OT6kprp\r\n1BZXy1pMrF3bWVqhM8QJdWE+/s77Yjpwxtj06ASW/fYpTg5mdiniFef5IuVW\r\nKULOmVoH9zXUlWTbT3RnTv51yU74CxgSnc70JPpruYgyyTv3BRumVPmWsGH/\r\nBESuFRiqFNANTQBiPRl4Tx1y5QdWXv9z06oOIbIQk0uZNa/Xhd4uehcRekbI\r\n5MbYMUY5U2c67RgJPnwXGoE8/Ksu7H47GuUyvKAtdXnJljoKnvKLmMHMh/gf\r\nbbFtU1iQ9AM3JH1gQSnaXTwfZTmyBeFZ0kvDXjzeVXW3Q2ZBBm258OeP4H6y\r\nactVyQ/89DCi4gUUOejRlPDGGjzxg8cB1IG7EoYviwjhBft5lmLt77dSjlbU\r\n5fiw8jj5HL8+IaEw0PsopVa/4K1b61b8GKgx12TxIxYXEAYAVF9cJ98xxCV3\r\nIio8nH+arjy6/KQ5DhxHrcljcSsPFECMR/8=\r\n=bgKw\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"bd984f95e13cd938efe856eb4980e0781ad146d8","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.12.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.20.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.17.2_1668600023471_0.23409216372380204","host":"s3://npm-registry-packages"}},"4.17.3":{"name":"@yaireo/tagify","version":"4.17.3","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.17.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"07b30a0689215d2cb9f52de5f07199e1c82e0b7e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.17.3.tgz","fileCount":12,"integrity":"sha512-t+6cePJ4ZH/oNgGI+c3p141Gw8F4AKckuKVZZFH/kFlY0bwBKramRISSjrujn++2MZ10pwtpq0CaGjqyPT16eg==","signatures":[{"sig":"MEYCIQCNK+/heYSXXp2no4HZfLHf7g0lx47rQMSo7LiymeM1sAIhAPuX0EA8Z3ufQyboFwhbb2svRIXNcIY8CztZwT8Z25Yt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":554028,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdktiACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoE1A//SX3Mi5e+v370rLFoB8Xf+ESCZgRtyZ6p3Byu0Ql3OwXBc28l\r\nj8quEXhZ9xMsKLdIWHRry4iACLXf8L6hqf9zyY9SuWQn2Yyhym65+iu3SNHf\r\npNPOzTkPqRSFMJ7gbCrh7AW/nSUISsMvWBQY8NowNDvZlzCa2etkbub3m9HJ\r\n1jh/k1iwcHtKU+YHEkM3Z/mHpxauB/DjYGPgcWH6cVZuP3vfdjxTH8n4mxrf\r\nGjqrSlodZIjo78gWLGnBBrfkWDb8NTT62U28XPpgjTQ11ZkMEElbihgiEp7I\r\no1CkU7qUkH9V4HwxkjAWR3/x+e634ZCRj83x5W1dMD31hk32Um65o2jhoih5\r\nDCN8Ym4tYi702PfdAhvuX9314Mfbg3n2CLoYW37EdAGeMmXp6tZnUeWcxKXW\r\nV6dylvU0SUK4w3oqQnbRAKlog5MSGcf2Sq5RccO1GHB7bN4pl9JF9ThnBOlG\r\nMja/fJncPT5uvlcTJbYREV/9xUlh//2CUrPp+BxjwOHe3kPWDw2KG0nm0bxj\r\nZbt2NTCuxWqM6b7TEO6fzcs8c1drtQwEJ99YppJSO+n0dPBUKghJqHjbQEsR\r\np59YPaYSSf5joCXpjIWwfvFhQcKTVVR5wgF5sBf9Nbv6uT5lnBlP5V0y0iVF\r\nxBXRSx+A+Lzpt3DIEsN70ZAMIyGvKO7Xwvo=\r\n=Ow8Y\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"66921883d83928061ef8ae4a1bd4815984f9adcf","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.12.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.20.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.17.3_1668696929958_0.24192968256341163","host":"s3://npm-registry-packages"}},"4.17.4":{"name":"@yaireo/tagify","version":"4.17.4","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.17.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"cd19c5b68e914a623cc58d9be1800c356bbffe4f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.17.4.tgz","fileCount":12,"integrity":"sha512-dP6Blsi1s6Jkrhxqy3SyXfhvJ4W9f5QlLhkaG/wnuTOD+ARKNJ6MnYsKLs8+XPppuvKzNhY7binif5IHfRgcCg==","signatures":[{"sig":"MEQCIEG06Wod9WXBffEeWdukBKs3FB+GzH21+20KC5jwnpTWAiByny31D1SbaQNtJq2dk5jaGGCNu8KTGFRrcjNABwwxWA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":554104,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjePwWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqffA/6A0r2d8YCCR9YzzH7IxvJh68LAw/N72EV2LH59J6jERuMEGcJ\r\nTM81KdXjLZIBz17WoNeJE46W3U1mExE1yukaf+Z7bXHx6kCCH3fdglrK5pZc\r\nyk8aZKTILQgvghtPA4h0C1pbJ5JTLBLqwgvV0Sjt1ZwRr6Qxl9kCMhnecr3e\r\n10ZkWB/Bhzdu5tGi/r/jlzgg9ozxVNCqRmHION7sY+SvrQF0Q+EWY7GhTkuG\r\no4E+iNR1nT0S+xmm+nhME15Gec7hGdoc8v0J//4IzicdiID0k3dHg8IQ+UvG\r\nIvaSTonEJ5rDA6mFhefggLA0K881PWPc5suai5nQh5pVdB/0dPzXlXZpEyvv\r\nrwJxq0fErUPyg7cbOgY5nZFDJUTXEJzXruZXqRRLmy9/ChVVqOGVECWrO272\r\nUbKo3Sk4Vl7KgEc609ZE/NL7gWFcTU6J0ipstn8DLoQAfdTXZ/GhmxOJjmdL\r\ntYSP9ise0tAsXa5ba7F2Hhr2fKTMAr3Dwlw0dql2br1I88RXSH4P2bgF6/YT\r\nyn5Uh4JfyLBemEVi7iRFdRC8tfufUSow6ZU6iJ2bMIQT+HdS9Teog1vDiinl\r\nWEIWKhrbMxwj00AGdGmnp305yuC/aleJCoXv5pP70pymvfyD9HpJ475kq0Nm\r\nQscCUj12UlCK4gb1zl5pqBrl1PXzHa/fSnk=\r\n=Ab21\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"f2d5a0ba3db5dbf4afe4a81bd6a15999e6bb9134","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.12.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.20.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.17.4_1668873238177_0.31330118819872554","host":"s3://npm-registry-packages"}},"4.17.5":{"name":"@yaireo/tagify","version":"4.17.5","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.17.5","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"1f424d711cace160a3ab50a65e892a85b231f3d4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.17.5.tgz","fileCount":12,"integrity":"sha512-KQTj18pXEby7Zw79KwFJ/4Cwg5B2BNZrIrS/deLQ5ISoFT1we+00QfphwDLFH0upiT9scWdfKM45hUO9Kpmb1Q==","signatures":[{"sig":"MEUCIHg+71+KHimmXiWHaeLyAIdpH7h77W3UeVenuX2okbPyAiEAxjfK6nKKYcBgH7dzLO8neBhVbhE5puUuFmBAO2nT5+Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":554285,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJji9c2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqtsA//eiTZp5YH33Km08T6auc5rpxdZyjTrpB4oRPUHDBe+5XQmIj+\r\ngE0bUdnle8GP2NeOZhOc9rVM3zWH3CsfOJa3u7HuZ9d8EGOCOSJLYHjECuJE\r\n7rBC3Cwsa9LD4I4f+w65lx4osxujV72ty4BRUhHFMnKO33wtp7PerQ61fRXd\r\nloBAkINYmQVNGDOy3SPegV1tiG2ph8cmCBOsQi1IP6XnFL6CPD2wN+W84sle\r\nNc88lUPEIPl1UMF5p11L4shpu4NpWhbyB78MLYhLLBeMDyqr50rad/kw2Eub\r\nlGIiADx3XTsc8HT/sGu+Gtu9rWPFMDiCg6dyqH2zBQcBGtlOfw7UQ89fZDXY\r\n5INjRrZr6o8iesYSIceLXg4kJOCyuxUISksMSqYJatiQTKPvAsGvsol9j2G/\r\ndL8HK9VSELC6XAau6lN+4GUgGsaaLvOm491anTALPssb8aLKMsxRPfnJ8nGx\r\nGxEJZ+1OPdLW1+X1FkTAQKRwxJXQaGSxiYfeal2SeeZHDf0m8dZQ320Ty4uF\r\nu60rAqWTtg8Ep0CNTqZhn8s324h7JDtGOk+nfX0i+aPfZkibrgRqPuEA/TIE\r\nGWDWr3zx8eIbyXh+6vU+69hOk7vcSaiYIHAgyFQECLpLY/etcW58FcfOrJ3l\r\nMQao2YcJ0IyXxYjTXI5RAE8Olser7mYXEO8=\r\n=hvbQ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"3082c067cad50879f39be9c8426115cae0b9e2da","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.12.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.20.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.17.5_1670108982506_0.684035602299349","host":"s3://npm-registry-packages"}},"4.17.6":{"name":"@yaireo/tagify","version":"4.17.6","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.17.6","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"505e8d5e8fb0421c36870ac29c551c488ca8693b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.17.6.tgz","fileCount":12,"integrity":"sha512-W3rQLGO+1lczk/8Lh0nGCu6IlFrTeq3F8ofymmM7mfZWwYqLyDZyt4hRZdU9YAKPb26z1Chjl8g1J1hZZ3nmOw==","signatures":[{"sig":"MEUCIC2vlUFgQrTAqzri1Ye8BzC0gAmgrTyKy83H+1qKGOzSAiEAsvJ9/OqbF2QeqBgaZ630toX2q716rZsk92safA3Zjts=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":554361,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjjOuAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoFhBAAha3P7d32tO+0o/Rs0DrPpd7d24fqR/j0W3mFpSrd3TCJKjLm\r\nrn2yjhBiN6E32IZ4zkJe2qVNjvVlK+ARNgATDGgfuNw6nYcRvfZOELH2/lX1\r\nwqF0CC4GGzPZvzrau7utrVjjcXJi7daGngcnswWPtVma8kXro/dfHLa0VWWc\r\nrFOC6i3jz3ktkXuXSD2Q3cpnGupCbb7AutbVysD3H1FnhVgRj1Dk13zeZiti\r\nQLSezi94d6ACwHIJGdxNGP+6Xnv5Rpt0ivttSY7wK+qIQyykt4Qox90x55yG\r\nqUnvniySBpbbY+M1WXZCD9kH0nEnf5Qh6hrWhnf7Q7gEPrxfV6PMn83oFeuC\r\nocDljOxu4vCFEq9SrWmZe/l/NOax+LJ4hqI5v7SRuHNHMZYnTdadH1OFd8pJ\r\n2vT75u3DrCqIjAFwgCYwkKzJ4VbFqA5UK4dBqaFvPZHdbFKrVNhvJPhFQyM0\r\n2P9K5OPckcuItIOM4fhc24Ho4uFbWSgOPV5wvT5ox3k/K3VqAGhYBp+VAWcv\r\nuyU3zGF/dZasxTUXuYbB4oOcJo5GsXNam7L0DJQ+PFCPYlik4VEPJEwJ2FKJ\r\nlIorgC+CRNt2s4o2ynLsc6h/diLYagydWlZLXS1Lj7q1Xo6hZoK6vqvGgXgl\r\nM0CcESghK2R6BI3zcE9pXQOYcWCfpiJNfKg=\r\n=FHU7\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"fe8738a57a88c15e5463c6437743572bfa342f1c","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.12.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.20.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.17.6_1670179712047_0.7927178857192818","host":"s3://npm-registry-packages"}},"4.17.7":{"name":"@yaireo/tagify","version":"4.17.7","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.17.7","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"662eb9676818c7490752f7e99d537397cc1b9b02","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.17.7.tgz","fileCount":12,"integrity":"sha512-kMk179PY4aXdc5tIw4t65I6IvB5Dyes30DF0XTUagqcCe+pCyi60g4eUGScFsJByF/u25An0RkVqZ4+IcPVxVg==","signatures":[{"sig":"MEUCIQCOEgvf4QVvhaCjWiyZynN3MPs9K89ywWeD36+7+Jz4SwIgWnxWkxSSLZO0VJXtPtk/1dN8K1fox+HdlVk+OAEhLfQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":555771,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxbOBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoCeA//b6G0342fZxPEGlfEaEPj/fFHXUV+FfpGtsEc4w23zUK1cWzj\r\n8r2x21zMz9ov2i54k024tleqIKMUYrlBSlvkE5pM7hlG0ddrujXbYAv4WcDM\r\no+XVvzfvoLtmBvXywtF2LaHE6gEXLBg/l7NwlbodtRJeCd1IL/Ei3ryDfaIN\r\nviukswicVGNn38I8foqzdbzSTomcN7BV+oNGi3Ft0P7bmG4W3AQWiF71aV/a\r\nRke6K2fQN1Vow/3RI3Rr9GoxLfBWln3iKk7V+IyfZKqRJnT1sbS8VHZy+Nl5\r\nAjzLZZhH65iLL2e3Gro33zvBfyy9DqDiAjpLlZ9ZL0Y8XunZ7JJWwjICwr1D\r\n9tRMBBP3vbB9vyIYZLu6ycQNzBUgvNnRiL6CDpBftcvClRvD8A06rXdxVj8Y\r\nmw3hG5aux/QMXOnvuyoktbrDssDviTYiyFtd8AuKOObCjlXtT2bubySuOon+\r\n5THC/eexnMPI7NjUB4iAY4pgYQ6UBoeD7SShuDp2OQu4zx/Hbib7cr9+6T5B\r\n70iPn6WJ+uoms039C7SV33UjswXhMM9bsL57+1p3Y6YyuECcZdln8RNwdUNL\r\ni43qneTl/ZfaiZK36ke+zSeHrR4colkr6Y47os5lIragBQhPgV6YaishYSxx\r\nQygPP+TcCKBLM3PoRz6AI99TV1A+cEA36uM=\r\n=Iq1G\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"b1b1d30cc2bc941e7882aefbee2cb20ce0d08268","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.12.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.20.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.17.7_1673900929150_0.9978500710693814","host":"s3://npm-registry-packages"}},"4.17.8":{"name":"@yaireo/tagify","version":"4.17.8","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.17.8","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"2696570843e3cd14318f305e80699d457aad918a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.17.8.tgz","fileCount":12,"integrity":"sha512-MqU3JhE/35r8qZPgfLshXfOkTkgtFEXh2Ja8J3Nn1rPuut28yorJLtxH67jbrbanE1gFH2vCvxe6meqM6oZ8rA==","signatures":[{"sig":"MEUCIQCvEB39e56E+FX/N5Ba/6aZ9tyP7Guf8cBO8HiKk5MJkQIgI0sjd1gDZg/SFbC9f4/Ydfbb7TjoeE7NG4caHWTDO40=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":556056,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkNsmxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqzSQ/+KKmr4EF1VPTIjJTgLLMlxiCcy8uml6rw+Bk+wp9dcJ1hXKOT\r\nA0MMCxezpwCMwyyO8a6WuOfn2NtXU9Pd88xN5LG8KccBX/4HpFfrAHWWiUg+\r\nrEdXSucoHVt7FBtJrCIHo5OhvYrx2o5Um/TdUpxaRPREX6TXtJDOOS/zqGVs\r\ngxbC4WLn3oJsO6V+AYWQKRXkukWorDoKqk8ICVuyxgx+0vcdND8DPxFxQcb0\r\nNDBHCWVcZK35NaN+x6gG7dUasFUl8J8pNkxF0JPF46hItloTqzbusuQnlF4H\r\n169zbcqt/aIVBL/SbuhZZjpIMCQbCvzPt7f8ZfRA5VyCOHsAHrNFaDlS4sBd\r\n6OPFZsGWgAGEZ4ZnnA+kk6M1hoCruwG0Me4r2+cL75mW224Yd+CCLmhDJLkj\r\nAFTUqAmPu6uRVkp4heFXc+bPLJlEBckPo4Eto0qfVSIPAq4GQKVG2mcpBQal\r\nedXfvs6VelkAy4T08ItVg7fG/RoG42a2bs39eCZfWngGe6C7CT4wuRHXQB1o\r\nGDidF3BK++yOACUM+B6CZHuMPDHL0ngriQtwVvpe/WlDapfspk0zsv7xP0z3\r\nElbtwwCpLzq84ZDMZ3ekBs3dUcD/tF1s7uNu1rlo+pxFB5mUf8KVygjpZ9bM\r\nXa8dMcGmQGjVkyVbxh7M85SheNooXa7VF3I=\r\n=9EF2\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","gitHead":"1edeb579b18ea61693e0116281584fa5543f1b18","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.12.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"14.20.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.17.8_1681312177039_0.3060818201614315","host":"s3://npm-registry-packages"}},"4.17.9":{"name":"@yaireo/tagify","version":"4.17.9","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.17.9","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"ff10ae832001200dbd4e354aedb6d1df7074c266","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.17.9.tgz","fileCount":12,"integrity":"sha512-x9aZy22hzte7BNmMrFcYNrZH71ombgH5PnzcOVXqPevRV/m/ItSnWIvY5fOHYzpC9Uxy0+h/1P5v62fIvwq2MA==","signatures":[{"sig":"MEUCIA7puoCmx2qQDiitbLNLoPnc1gISYQNKnVECHiiUJRghAiEAuGsq87tWCALhOK+Wkclox++NHw49DT/EKCsgJ7AE3Ks=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":560461},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","engines":{"npm":">=8.0.0","node":">=14.20.0"},"gitHead":"9d8b577860e961c40eb436629a35c5ad1fcbda9a","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"8.19.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"16.20.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.17.9_1692520853525_0.09116187055425162","host":"s3://npm-registry-packages"}},"4.18.0":{"name":"@yaireo/tagify","version":"4.18.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.18.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"e4812a1175c9e708bbe585b6ec01813efa221cf8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.18.0.tgz","fileCount":12,"integrity":"sha512-ABCew3Xg4rWvWmcpyWkbq16omE0j6WR0DCIXnnIHxgVKHvvYuHamSCij37WqDMzKDjfFbaVaCIQMUI7SpMmP5w==","signatures":[{"sig":"MEQCIEKe7Wky7SU8mn4uUlHfWyZVuMYHNtW5exDbnu3v5xlXAiB3cLmvuVAvP6x3HVTwpJ39l2S3GR4a7brX4vGG/ZMI4w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":560716},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","engines":{"npm":">=8.0.0","node":">=14.20.0"},"gitHead":"9552aec6bf918030e0d5dd25d6455bd211d41917","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"9.6.7","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"18.17.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.18.0_1704403595325_0.7971112258262916","host":"s3://npm-registry-packages"}},"4.18.1":{"name":"@yaireo/tagify","version":"4.18.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.18.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"f91131715c459c46f114cecac14c4aada89ed04c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.18.1.tgz","fileCount":12,"integrity":"sha512-2cM7hExMGP/u0RF5walJXvHiRuBMXsHSzFJNuGFtyQNsWSjVKh1vGiwEgivkk38025BmpDPkf267aDgd7NWc4g==","signatures":[{"sig":"MEUCIBTXeGRWcXeWm2wvkm1lEhh+6qylY5psC59m6MxzAtRFAiEAvQshDlphwOv6cb6nG9YoZgzkMgAvfaA7W17VJDmI+dM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":561745},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","engines":{"npm":">=8.0.0","node":">=14.20.0"},"gitHead":"2d2a5a1e0e6c4a7badb7616e593634c70b3b5574","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"9.6.7","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"18.17.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.18.1_1704568404450_0.2955015896294175","host":"s3://npm-registry-packages"}},"4.18.2":{"name":"@yaireo/tagify","version":"4.18.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.18.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"846ef7b741d3bec0e3ccc1a669a26080b9c52062","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.18.2.tgz","fileCount":12,"integrity":"sha512-trQqJgC1c/snt/zVlMPsLHIdKajtjqRNlZQUsmaF4SHIrPLeXxS/jAwJnJ63GL/o9+0aOkUmbwYE9GmqOy//CQ==","signatures":[{"sig":"MEYCIQCukfVON9iGaiwGQQi8ty75uUEC+3p7GYMlUK/29WVzAwIhANOpzYIyZRSflSXrPPuNlQcU+uLeyKZNkDzkeiXBf3KR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":567229},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","engines":{"npm":">=8.0.0","node":">=14.20.0"},"gitHead":"29cd3b7c9d23540aefd7f62b82a2566d76d49dad","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"9.6.7","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"18.17.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.18.2_1705001318433_0.4006640023156214","host":"s3://npm-registry-packages"}},"4.18.3":{"name":"@yaireo/tagify","version":"4.18.3","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.18.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"23d16dd9e6af1119661054ec24574ffbe0b4eaed","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.18.3.tgz","fileCount":12,"integrity":"sha512-K6ksuPKZvVXQMyJXfh1k9TvX3FupqBLY4RUg+153TZQxtENsPxrRSu165va2uYtj2F76KdoY0laOlE5YO0Kqrg==","signatures":[{"sig":"MEUCICXfm9RRyU2eWbs1i9EaEx5OcEATpmaLFfMw6ISdBhU+AiEAgFoLuF+SiE+Hm9C0VAUBTiH/xY1hCP86Za5OhYqXudk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":567504},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","engines":{"npm":">=8.0.0","node":">=14.20.0"},"gitHead":"058c88da2ed24ad695f320087631772f79cb4668","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"9.6.7","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"18.17.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.18.3_1705581605064_0.6903051596520127","host":"s3://npm-registry-packages"}},"4.19.0":{"name":"@yaireo/tagify","version":"4.19.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.19.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"243d8f13006d7a31443544427c19115ae47e7d14","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.19.0.tgz","fileCount":12,"integrity":"sha512-5k6QCAEmIppYsYeOvTKpT1M7KDdlRF2gyqLwRFuuur8xNBe5StDEhOhjrfYhsrbCElgr+QAnRF+utM5TNvS0XA==","signatures":[{"sig":"MEQCIGTMXoL8l9rmC6MkPOCR4jrulmPoRcPALRr2GSX9Pce/AiAwqADvJNRXthZx8etFbbOZyAPEDhi9cHOHSgNegX9b1A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":573289},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","engines":{"npm":">=8.0.0","node":">=14.20.0"},"gitHead":"234bbbec68d1804686c44ac67aa2a6ba5ccdd81b","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"9.6.7","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"18.17.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.19.0_1706375361133_0.8022214247880943","host":"s3://npm-registry-packages"}},"4.19.1":{"name":"@yaireo/tagify","version":"4.19.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.19.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"7eb0b23fc16e0cf17fa1fa217599969e854b8959","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.19.1.tgz","fileCount":12,"integrity":"sha512-H+4yaPsjWrJXmRhnnGs5TQ1kp0SZtPehnsNtA7iv8TgKrFrX8EYEEgdC+vAC0PunAbmycUSd2Nf5guHpi4xCCg==","signatures":[{"sig":"MEUCIFq8M3gEFzsNewI5TQkRtPQdXBci3Mg+hLJV4j+U86G4AiEA4LSEKu8Uok4SCGNm38PZ1mWiEJ9AOdSkOvOY8oRodPI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":573273},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","engines":{"npm":">=8.0.0","node":">=14.20.0"},"gitHead":"b2cb706810e8dced1b7042e70e3f3593f427c41c","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"9.6.7","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"18.17.1","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.19.1_1706532058264_0.6265124395436641","host":"s3://npm-registry-packages"}},"4.20.0":{"name":"@yaireo/tagify","version":"4.20.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.20.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"2a19af18aae63aa1f459b4c901cddd79b0c94a1a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.20.0.tgz","fileCount":12,"integrity":"sha512-eA+F60+KRked6fvqI0OKYwh0ZHZjzZ+1Ku6Y+JCzMnCYGnAj2SGDlB00ccO024K5kQpXspzTSiGFgn6oALTA3Q==","signatures":[{"sig":"MEQCICVZADFPBFtHzHLD59/wT6Wc67r+LIsqAgr4eDrxcJiDAiB1RhWDruz2V0ExwHyk/1030sVlBoyD9x/Q6uWWjOMu2w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":576033},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","engines":{"npm":">=8.0.0","node":">=14.20.0"},"gitHead":"d8f74bb69d6d95897a581bf9b018688196e5d05d","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.5","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-banner":"^0.2.1","rollup-plugin-terser":"^7.0.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.20.0_1707664695424_0.022782233738151803","host":"s3://npm-registry-packages"}},"4.21.0":{"name":"@yaireo/tagify","version":"4.21.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.21.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"cc3497ddfc875cd7bce8560af24dc48aec27220a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.21.0.tgz","fileCount":16,"integrity":"sha512-zKMUliOI5ZkbFT0/ov7EU+Hwb5N3Doa4jmacKTjfW1gt2FyFGkL/yw+NcDIbn/MUPJhTwVDfWVvBi6M9BGGMZA==","signatures":[{"sig":"MEUCIQC5soDPQuQjiZREmsOv6h2CdUJgOcQxQUFWj5+JuJXaXgIgJC99xOgqRcAw0jHFZj0ycVuzGEViP1T2nkvS+d7jtXc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6384910},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","engines":{"npm":">=8.0.0","node":">=14.20.0"},"gitHead":"af39a2320c24cf42c9a572248081fa79b51910d5","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.5","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-terser":"^7.0.2","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.21.0_1707771183766_0.973235388299778","host":"s3://npm-registry-packages"}},"4.21.1":{"name":"@yaireo/tagify","version":"4.21.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.21.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"1af0c2f6025026e7b75608676295f204ee8326d8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.21.1.tgz","fileCount":16,"integrity":"sha512-5k/IJkMKHlIHpadt5EeEb+MtYPlbsrKFGnbAcQqgUnxhvmI8z3UcPCTW8AYTKpsxHNeJJUfOpDeLwc2d454mfg==","signatures":[{"sig":"MEUCID3DgwO6irJ9/X5Q49nfIJs9i1fwU1NxEVF0+dmnnhQqAiEAhgSTeimOd2vjyi+nC9tIrzqySJF2y1Qa1tFxV8Wf6KQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6402502},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","engines":{"npm":">=8.0.0","node":">=14.20.0"},"gitHead":"9bd64ed14cb951b27fb23e3bae2bef7f58128ee0","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.5","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-terser":"^7.0.2","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.21.1_1707773199912_0.6640122996954931","host":"s3://npm-registry-packages"}},"4.21.2":{"name":"@yaireo/tagify","version":"4.21.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.21.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"81d7870c4f5cca8fafd5fa0851ca25e9d67a5638","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.21.2.tgz","fileCount":16,"integrity":"sha512-uE7/rimuYDHqBCue5OnOGDGrPIzugD8/01+aTtRZJItkKusmdx6U47j6JVbRdpj6+6KF+VQ6HK6iEccwmmrDyw==","signatures":[{"sig":"MEQCIEHzdrFLQ7uQH2MWP2TrfpGWdtq3K0JIr++1Kls6JDw7AiAJlaBBo4Xd6Xn/LT31lpi+bD6mCHeyzUnySxQ8KhvC+A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6420557},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","engines":{"npm":">=8.0.0","node":">=14.20.0"},"gitHead":"8b9e88dd3ca3bb477cac5eaf6ef65243cf0b3378","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.5","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.39.0","rollup":"^2.75.5","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.2","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.2","rollup-plugin-terser":"^7.0.2","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.21.2_1709841683132_0.25525724289532725","host":"s3://npm-registry-packages"}},"4.22.0":{"name":"@yaireo/tagify","version":"4.22.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.22.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"08b2ac6cf17788720985a0eba03215c7e62d0396","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.22.0.tgz","fileCount":16,"integrity":"sha512-Fi3eARJPIVRVQt3u2Qs8A2wpaajvY8Sc9aIrJRmvzjYYGMOgwPJRMY7YZkDIH1dJyyC//p8eYv+4k4ZYE9hDqg==","signatures":[{"sig":"MEUCIA7omJG/a0+XeWaeWq6VWHjVQklucBc0CddMXWg+EETUAiEAuxFrW1ksuSsDq31yS4gTilUJK8SmbtNAftN1nHw5rOw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6508947},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","engines":{"npm":">=8.0.0","node":">=14.20.0"},"gitHead":"ca48d80ed8bc52b249e9a3b46271cecef0ba0399","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.5","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.56.1","rollup":"^2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.3","rollup-plugin-terser":"^7.0.2","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.22.0_1710620726052_0.8964744186510167","host":"s3://npm-registry-packages"}},"4.22.1":{"name":"@yaireo/tagify","version":"4.22.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.22.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"955182344913067745aca9fdaa09e8cd9120e1d9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.22.1.tgz","fileCount":16,"integrity":"sha512-VDWes50OZ3hBo7eDk/z0xmLf3lSpZsryyEw1BRwQh8t+xS0pLCOWhWzjbL0NrePRhDmM/4MI9/k8ovsDEV55LA==","signatures":[{"sig":"MEYCIQCl9d+dWPdK+kPuA/RejqQ6CmGYmOfab0khDcLg3mskTQIhAP6KO4gsKrWErR93K+e5AzP3mL/RtpaZ+Jur6Mqz19ty","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6504550},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","engines":{"npm":">=8.0.0","node":">=14.20.0"},"gitHead":"6a02856d3f7c775b8471d11462c633ca385c74cb","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.5","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.56.1","rollup":"^2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.3","rollup-plugin-terser":"^7.0.2","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.22.1_1710790680110_0.8586070216171715","host":"s3://npm-registry-packages"}},"4.22.2":{"name":"@yaireo/tagify","version":"4.22.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.22.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"e10d8a0890f1af4a94a6d4392483b4d2b019d79d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.22.2.tgz","fileCount":16,"integrity":"sha512-R2QSHX3eCJiAf7kIoTojlMbjHiS271z5V2XLyVf4VvgPVQpXBNFskI41DyaDiMS5enXZ13j8kmm92GI+QmgdnQ==","signatures":[{"sig":"MEYCIQD87BbB4OJcF2GLHj2X1Ww+WjhHiboSk4iSO6YugVgRvAIhAPs3j5A6MNt81XkYfhDCO7MMqkvnVi11loXAXrL9iDH6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6503918},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","engines":{"npm":">=8.0.0","node":">=14.20.0"},"gitHead":"7640e1e068ab31e1202475046ee25ffa967cd5d0","scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pkg-ok"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.5","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","path":"^0.12.7","sass":"^1.56.1","rollup":"^2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-babel":"^8.0.0","gulp-watch":"^5.0.1","@babel/core":"^7.20.5","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","@rollup/stream":"git+https://github.com/andremacola/stream.git","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","@babel/preset-env":"^7.20.2","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","@babel/preset-react":"^7.18.6","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-babel":"^6.0.3","rollup-plugin-terser":"^7.0.2","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"prop-types":"^15.7.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.22.2_1710848229955_0.23753891037014552","host":"s3://npm-registry-packages"}},"4.23.0":{"name":"@yaireo/tagify","version":"4.23.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.23.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"154c5f9b944a16099d9a79fd3c7cc69bb9b4bf9a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.23.0.tgz","fileCount":38,"integrity":"sha512-bZi/zHPHiriSOcl0DvGQrsQtfyezoyeb9ayy8i3iYRqqdlSwxwfuAU2s+nJkYT/DBuFy70ADq1vcxVKANjuoWg==","signatures":[{"sig":"MEQCIGt7byvGzTGMBz2DfPBggSGEGaZLfzCHRNPqCCWT3JrJAiAVPQcaLnjgNnNW6sphisaj0sx+thK3u0ThSatoxXAYxQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2884551},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","_from":"file:yaireo-tagify-4.23.0.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\3fe2ffda9b15ce051f636aac3d37da78\\yaireo-tagify-4.23.0.tgz","_integrity":"sha512-bZi/zHPHiriSOcl0DvGQrsQtfyezoyeb9ayy8i3iYRqqdlSwxwfuAU2s+nJkYT/DBuFy70ADq1vcxVKANjuoWg==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.56.1","rollup":"2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.23.0_1712612016527_0.42681111109756964","host":"s3://npm-registry-packages"}},"4.24.0":{"name":"@yaireo/tagify","version":"4.24.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.24.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"5e7dcf6b421178dd15bf79dce98db4078879785e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.24.0.tgz","fileCount":38,"integrity":"sha512-Q124iBwTsVgmCG1/LezRf13CGcmRqed3Jy5EZ0lE0QhnUzmwXZ0YBnYeO0Ic8DkFnZSzK2XJ7ESNwXBohs8uMw==","signatures":[{"sig":"MEQCIFQj/Rkl4st9/jmIlj9zrOoZ4U+BtZ1BGlSteAUf30DMAiA4zJt+DjRTUYAwdueQkWphLfjsJhuKV9M6vawmOCemmg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2899241},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","_from":"file:yaireo-tagify-4.24.0.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\f25e1535a68b3c6d3a186bd9013b7fb7\\yaireo-tagify-4.24.0.tgz","_integrity":"sha512-Q124iBwTsVgmCG1/LezRf13CGcmRqed3Jy5EZ0lE0QhnUzmwXZ0YBnYeO0Ic8DkFnZSzK2XJ7ESNwXBohs8uMw==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.56.1","rollup":"2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.2"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.24.0_1712863755072_0.5889704191311291","host":"s3://npm-registry-packages"}},"4.25.0":{"name":"@yaireo/tagify","version":"4.25.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.25.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"39c920ab292dc25b4020bf823a24864bfc929096","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.25.0.tgz","fileCount":40,"integrity":"sha512-VyiNEwHVMXwpFpuY9OjugdmkeI8LiZc98uNWEFnCS68HoWzeXrIh6Rl/Ucj/CbolyFFiKD2iIoRdVTJNmOQv7Q==","signatures":[{"sig":"MEUCIQCeSl61FpCcpBoQqdMteqnfmqiRvOqzpwWoJ+IqjGIpnAIgW3cDusfFfLgTGpT8C540GPTL4AfUWjhUY/HBmspab5g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4303899},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","_from":"file:yaireo-tagify-4.25.0.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.min":"./dist/tagify.js","./dist/react.tagify":"./src/react.tagify","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify.jsx"},"scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\6ea397a598b39c82ea645527c99edb6d\\yaireo-tagify-4.25.0.tgz","_integrity":"sha512-VyiNEwHVMXwpFpuY9OjugdmkeI8LiZc98uNWEFnCS68HoWzeXrIh6Rl/Ucj/CbolyFFiKD2iIoRdVTJNmOQv7Q==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.56.1","rollup":"2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.25.0_1713970556494_0.14300487342613377","host":"s3://npm-registry-packages"}},"4.25.1":{"name":"@yaireo/tagify","version":"4.25.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.25.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"3a06dfd3df12f5ffa3d1f87b10e4d91a9c2b65d2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.25.1.tgz","fileCount":40,"integrity":"sha512-B/S4WnLkfPhI+DED7d4FARpfpuyFXcwT8I7NUewdZUA9uQrJkq5l+LTCxZplLRIYjzDaw/QIFl9AOS1bBJTXDQ==","signatures":[{"sig":"MEUCIHkvaqFprcYjdW2Br/7jfXYiEAkLxPg5cTJQGB+qCLCZAiEA6IfMLc7o9zsP/Z881nVdqfS2PwgIyylruuFuo7HoBow=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4304197},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","_from":"file:yaireo-tagify-4.25.1.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify.jsx","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\874c7933698d2a327987627d223a702b\\yaireo-tagify-4.25.1.tgz","_integrity":"sha512-B/S4WnLkfPhI+DED7d4FARpfpuyFXcwT8I7NUewdZUA9uQrJkq5l+LTCxZplLRIYjzDaw/QIFl9AOS1bBJTXDQ==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.56.1","rollup":"2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.25.1_1714034630444_0.9340343217885607","host":"s3://npm-registry-packages"}},"4.26.0":{"name":"@yaireo/tagify","version":"4.26.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.26.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"478fccb3aac993da03e1571f58401510659e9969","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.26.0.tgz","fileCount":40,"integrity":"sha512-7AdaqWr+GJS9WTHkJISL+BGMMdq6WKcTiVewLRruOjyCcvQoCuXBEErQVLRdoas1jhtQ5TujWuykeCjFUikv6A==","signatures":[{"sig":"MEQCID3ccJy8EHQ7UVVwOgjwi2ikcmRQpSZy2Yz9fZ17rV6VAiBVNG0sEYV7qk7FJMpp4mO/n2EDiHmhRSgKEpI6CLPylw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4296329},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.min.js","_from":"file:yaireo-tagify-4.26.0.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify.jsx","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\8fc6b15daf5e8d2e0093846372c1c977\\yaireo-tagify-4.26.0.tgz","_integrity":"sha512-7AdaqWr+GJS9WTHkJISL+BGMMdq6WKcTiVewLRruOjyCcvQoCuXBEErQVLRdoas1jhtQ5TujWuykeCjFUikv6A==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.56.1","rollup":"2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.26.0_1714336566469_0.7783632451889235","host":"s3://npm-registry-packages"}},"4.26.1":{"name":"@yaireo/tagify","version":"4.26.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.26.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"33cd8efbeb8c4a1735af6c052982cbe2ce23f22e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.26.1.tgz","fileCount":40,"integrity":"sha512-MCcpXQDZKLAS9nWmORy5DK4WprUziG6wvC2J8Q77VuhGfrQybN89dw643VjS+ueieR5FikgtV8s20mIWBThQGA==","signatures":[{"sig":"MEQCIGD4Pyg6vRm0ECpliT71WKCKjSEbdmaTDL+2IfAGXGxPAiAVBxgMBGDglm4lohAdGe778zsSJVU5pgnxOlz4Mu8bwQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4307131},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.26.1.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify.jsx","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"echo \"No test specified\"","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\b548ea70942384bd5dcadf747483cdeb\\yaireo-tagify-4.26.1.tgz","_integrity":"sha512-MCcpXQDZKLAS9nWmORy5DK4WprUziG6wvC2J8Q77VuhGfrQybN89dw643VjS+ueieR5FikgtV8s20mIWBThQGA==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.56.1","rollup":"2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.26.1_1714649881499_0.35101297201865855","host":"s3://npm-registry-packages"}},"4.26.2":{"name":"@yaireo/tagify","version":"4.26.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.26.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"a7296c815db2e84aa0bb9a697671cd5f0d5360d5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.26.2.tgz","fileCount":40,"integrity":"sha512-uBU7Z4OFH6NRy+VZRcaVrmNVYU9ekYRRzuBM/Vsc6rweU+Izzeh0XX8u3QRUCGpwIxYJHq9YvvtLgRkd+I2xgw==","signatures":[{"sig":"MEQCIDT9e0hQXvZKJ4334g97TYbfq/V+FDG1lKKlPVhiPJbvAiAc23uIumLQK0rkd7JHVcPrasLjOrjFpe29gnN8QNR8Pw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4309573},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.26.2.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify.jsx","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\1d625df7a9cdc0393da8e9173da56793\\yaireo-tagify-4.26.2.tgz","_integrity":"sha512-uBU7Z4OFH6NRy+VZRcaVrmNVYU9ekYRRzuBM/Vsc6rweU+Izzeh0XX8u3QRUCGpwIxYJHq9YvvtLgRkd+I2xgw==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.56.1","rollup":"2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.26.2_1714998214752_0.7460553045969693","host":"s3://npm-registry-packages"}},"4.26.3":{"name":"@yaireo/tagify","version":"4.26.3","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.26.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"2ae5fa8c028359474a54ffc29fdc63df23e04086","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.26.3.tgz","fileCount":40,"integrity":"sha512-nQM8aVTtL8KB22UK2LucFYlR77XQNGaOMJ59nlDsOBOL2w3YfT5c49LJ86kJb/0CHEXf0mPCv1hws9YWXvpCFg==","signatures":[{"sig":"MEQCIGWcMbBBviMHC1R2N0OyzhPnqv4zSb1AsvB0YkRUg5TTAiB6LXn1Hr3RHuHH6/N5tqo4OoOCunlppBkxQyUZT/7yGg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4319752},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.26.3.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify.jsx","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\e141234a822ee383477121a16f9df713\\yaireo-tagify-4.26.3.tgz","_integrity":"sha512-nQM8aVTtL8KB22UK2LucFYlR77XQNGaOMJ59nlDsOBOL2w3YfT5c49LJ86kJb/0CHEXf0mPCv1hws9YWXvpCFg==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.56.1","rollup":"2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.26.3_1715201198121_0.8925246589861446","host":"s3://npm-registry-packages"}},"4.26.4":{"name":"@yaireo/tagify","version":"4.26.4","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.26.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"fbf2f5cad0b8bd668e6559678fd2d9060e02c2c9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.26.4.tgz","fileCount":40,"integrity":"sha512-u70AjKJIdy+k/Wje4zF1pVkhSJzJxhP1xq0O5/swIn2XTLEluKjzRL2Z7rebSkw7vr2/z3a5pJKC0OxMQeUfhQ==","signatures":[{"sig":"MEUCIFsjKWiVKdi6UIdDKJfvVrqEb64Gawyuq0aiT83FUgl9AiEAvIn2rkcJkybi/L6SMyWWyaTDhsiN48lOIdvtgZxq6NM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4325235},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.26.4.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify.jsx","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\c9e26e6faa0d6d8b3c262113251554f9\\yaireo-tagify-4.26.4.tgz","_integrity":"sha512-u70AjKJIdy+k/Wje4zF1pVkhSJzJxhP1xq0O5/swIn2XTLEluKjzRL2Z7rebSkw7vr2/z3a5pJKC0OxMQeUfhQ==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.56.1","rollup":"2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.26.4_1715350392745_0.3469570577512511","host":"s3://npm-registry-packages"}},"4.26.5":{"name":"@yaireo/tagify","version":"4.26.5","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.26.5","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"d9293ff0a0dfde0e8b1422383b87820e43f85151","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.26.5.tgz","fileCount":40,"integrity":"sha512-WcNQFjmH7/Llfr81NGZnalUpry4PrgDN2bdrgQcN51gNdMC8zUsR1AmAHL6yW4qmeGFg0ZLbtjVpsgKHG+MIww==","signatures":[{"sig":"MEQCIDyDdPfM/+ID1YJ3C3Z+eq4uGak6LW4NsxpA+YkEp5EKAiBdINcpbleIbmvqzPsUqwH+gIeuQwWF11+mnnRY1NrZGA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4325226},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.26.5.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./dist/react.tagify.jsx","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./dist/react.tagify.jsx","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\maja\\AppData\\Local\\Temp\\5499d142008008bd6b59fe0d792adeb8\\yaireo-tagify-4.26.5.tgz","_integrity":"sha512-WcNQFjmH7/Llfr81NGZnalUpry4PrgDN2bdrgQcN51gNdMC8zUsR1AmAHL6yW4qmeGFg0ZLbtjVpsgKHG+MIww==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.56.1","rollup":"2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.26.5_1715623441993_0.7858935529003364","host":"s3://npm-registry-packages"}},"4.26.6":{"name":"@yaireo/tagify","version":"4.26.6","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.26.6","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"ee7e7b6e7c4641770d5d892a0d87599159ad4082","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.26.6.tgz","fileCount":40,"integrity":"sha512-+WFHvdXAXwIrMH/5KcRcnixyYKYyE4ca3fhR9aljKB0N3Vgt+N5ilnZ1whPqdkmUzOs3fpW5k7nEDdLToJx2jA==","signatures":[{"sig":"MEUCIQC5HyyJ44/8mfPcG0udJrFuQ0d6NHP2d6hlK98gn3RpvwIgPSvLtqXFzomZxDOSbnfeeZ7DvWoSTrDKpHkfdxzlPjQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4307130},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.26.6.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./dist/react.tagify.jsx","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./dist/react.tagify.jsx","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\maja\\AppData\\Local\\Temp\\75970f3911eccbe945b913e0e74cbb27\\yaireo-tagify-4.26.6.tgz","_integrity":"sha512-+WFHvdXAXwIrMH/5KcRcnixyYKYyE4ca3fhR9aljKB0N3Vgt+N5ilnZ1whPqdkmUzOs3fpW5k7nEDdLToJx2jA==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.56.1","rollup":"2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.26.6_1718197404110_0.9797621597873643","host":"s3://npm-registry-packages"}},"4.27.0":{"name":"@yaireo/tagify","version":"4.27.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.27.0","homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"675fcb826d9c9fbfa352e39276d003677f52e138","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.27.0.tgz","fileCount":40,"integrity":"sha512-rMWqu5xMxVcDSElW7acwcR7eEQsaTvWzURJuUniM2Eopg/ecitCZzGC344SitnjmYI456cf3NxihbiODhH+zWQ==","signatures":[{"sig":"MEUCICzoytcrsRkJKIgWsV4QF1OA8GG6LCATdhRAaSXp/QcDAiEAm6oF0U7DnsjK5F5yueRRYUcJvwoQ15jG8w4znpCpQvc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4338940},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.27.0.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./dist/react.tagify.jsx","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./dist/react.tagify.jsx","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\615e70d2569aa4da80f59d0be26dc3ae\\yaireo-tagify-4.27.0.tgz","_integrity":"sha512-rMWqu5xMxVcDSElW7acwcR7eEQsaTvWzURJuUniM2Eopg/ecitCZzGC344SitnjmYI456cf3NxihbiODhH+zWQ==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.2.4","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"21.6.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.56.1","rollup":"2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.27.0_1719078599900_0.22017916572478446","host":"s3://npm-registry-packages"}},"4.31.0":{"name":"@yaireo/tagify","version":"4.31.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.31.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"38ccbe7ebcc7098467b9eefc01c58414624a66ee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.31.0.tgz","fileCount":41,"integrity":"sha512-om1HsHCbcI7REKRVNpe+V0SIhInZxcf9jZSPaHCnnpBgBS3ZbTVs9sXReGC55WxLLEoXtOQWMJSDrzefxKretQ==","signatures":[{"sig":"MEUCIQCHBOhCapBUCc8Gor9hyCZLDyvAPw/s6jnSB52eApOG7gIgcp99VcdQhFDWTQSraWuGsGHHp/nf6oSthiJHeFUr/6U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4329190},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"gitHead":"5a0db8a189c6cc3b75f62ec0427630d873a79aad","scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pjv"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.8.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.3.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.56.1","rollup":"2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.31.0_1724448394701_0.9354118855166815","host":"s3://npm-registry-packages"}},"4.31.1":{"name":"@yaireo/tagify","version":"4.31.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.31.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"23d575e92edfc22edb22817d38e62e02fafdee2c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.31.1.tgz","fileCount":41,"integrity":"sha512-an/gVSgYVLe+bphXouLt0w+ylrGodcpPWx0UmXd0Z0AcTm76CLVWKH6J4vIi5+KMo6LHvpV/hUZiTJpN4WPhfg==","signatures":[{"sig":"MEYCIQDU3DjkBso3GeKkdHjklHMFwBE9PQlYR9GB48INkC5BtAIhANMOFiOjTqS9ZBFjwdWFn6pO0tFX6flbdyj+6olKZ9cI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4308797},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"gitHead":"1dd2ea63a9540c79548e3f0275aac0a7f3300a34","scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pjv"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.8.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.3.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.56.1","rollup":"2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.31.1_1724658336792_0.1409200225914511","host":"s3://npm-registry-packages"}},"4.31.2":{"name":"@yaireo/tagify","version":"4.31.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.31.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"c32dc3899ef4a4bf681f453bc6080b30e9466986","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.31.2.tgz","fileCount":41,"integrity":"sha512-jl1HI9UxhyxzYyiUPYtcQJVtENB1bXLAUuh1UCqE2qfa8XItgxBZgzZlF0BAqCoffOI+ZE1hJ3Aj64JCW96YdA==","signatures":[{"sig":"MEUCIQDOOsa6NdIUTA+xXORWgHKF5lytqSj2Ez1B5VfOAsqmCQIgD4bCrWhHoS+HxOsOcJln3PlK9Egnp0mB/XH8hCqjjbk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4313191},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"gitHead":"6114e6897c7d9f7f384dbc07d2015a0fdf57f1df","scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pjv"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.8.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.3.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.56.1","rollup":"2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.31.2_1724862266586_0.16683835243306055","host":"s3://npm-registry-packages"}},"4.31.3":{"name":"@yaireo/tagify","version":"4.31.3","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.31.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"bc11f30fc137ac662303ed4db7aa2f4c3866777d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.31.3.tgz","fileCount":41,"integrity":"sha512-YpBvYxqkJkOGyHg+0OzTCgt8Zb4vlYq+qE7jgxBLyPrvheSI0SXj3dbc4lVhCQhtbos4Kb2+t7ou8a+LYQk0Og==","signatures":[{"sig":"MEYCIQDlsyggUf2Y+SEZ1NgyCMajDUrovztLaVorFhfCYl1snwIhAOmiDiqVDPOEXjzT1EhHoeC4iJP7+BIbm9xPbJlq8GWp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4318200},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"gitHead":"98fba808060394914eb4a056140a965ebedd3351","scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pjv"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.8.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.3.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.56.1","rollup":"2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.31.3_1725006230961_0.22204933471699784","host":"s3://npm-registry-packages"}},"4.31.4":{"name":"@yaireo/tagify","version":"4.31.4","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.31.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"6060abb344a870affbdac95fe232dbf14227d782","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.31.4.tgz","fileCount":41,"integrity":"sha512-762IYAhuFS9mEQSaUWt11P9a631KxD12dU+ufPwylt2v2rMrMQHjWZkZe+k/IO6SvqGHQeJzXJ/MjJ7lWmDN3g==","signatures":[{"sig":"MEUCIHrLcPiLFFgESlfkWazTpMoT9f2AqcloBSbE7slFkbDtAiEAij3np/N06Po6tq9tN3Ti5cxohPq66VAIJEnxUg2KGAg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4315315},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"gitHead":"acde8e365cb90939bf4b497206ccd8e10a6030d8","scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add .","prepublishOnly":"pjv"},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.8.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.3.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.56.1","rollup":"2.79.1","semver":"^7.3.8","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.3","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.2"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.31.4_1729779194718_0.1827991270922964","host":"s3://npm-registry-packages"}},"4.31.5":{"name":"@yaireo/tagify","version":"4.31.5","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.31.5","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"531a0a70e9911255da92d68600e97b13a302d8ec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.31.5.tgz","fileCount":41,"integrity":"sha512-2fo1fCdCVsVvn0Ym1keXHgSa6X3t1zxBKNvBx3gpBz+4GMCBsXS72Wcj7vef3vTAsAFp4H4Nkh+97UmhpnS7Ug==","signatures":[{"sig":"MEQCIFXVFM63OWYdwRtnFKMw3oRk9WY02OD1zXFz03MK5PLQAiASzICGkK7YV29/OHCyleke72XAA6cEBbVgKuO9+OfChA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4331803},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.31.5.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\53ba2bb7d293a2cb4e4c0b68a752f267\\yaireo-tagify-4.31.5.tgz","_integrity":"sha512-2fo1fCdCVsVvn0Ym1keXHgSa6X3t1zxBKNvBx3gpBz+4GMCBsXS72Wcj7vef3vTAsAFp4H4Nkh+97UmhpnS7Ug==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.8.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.3.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.74.1","rollup":"2.79.2","semver":"^7.6.0","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.4","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.3"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.31.5_1729852165092_0.2716869298825322","host":"s3://npm-registry-packages"}},"4.31.6":{"name":"@yaireo/tagify","version":"4.31.6","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.31.6","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"d3cddeedc4ecba2839195df36164cb37a1e8a49a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.31.6.tgz","fileCount":41,"integrity":"sha512-mEdz0eVXg2P0InSKE7xThTWjQ+foXZ0vBvGpHUcKvYbGFZnXPdfkPweZB7OEPibBRVP5VoW2U+7vgrJGcu/tdA==","signatures":[{"sig":"MEQCIHt4aEvYfEt+fMeLxssOA+9u6MQBcYsdorcMZLSdPQjsAiBRtRp2G2W/b4TE6/2o1RGTTKSCNj2WGib0pf5lqytEyg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4315138},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.31.6.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\c2e6a1c76698dbd0dee93c928429f43c\\yaireo-tagify-4.31.6.tgz","_integrity":"sha512-mEdz0eVXg2P0InSKE7xThTWjQ+foXZ0vBvGpHUcKvYbGFZnXPdfkPweZB7OEPibBRVP5VoW2U+7vgrJGcu/tdA==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.8.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.3.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.74.1","rollup":"2.79.2","semver":"^7.6.0","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.4","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.3"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.31.6_1730093413593_0.4644795127907597","host":"s3://npm-registry-packages"}},"4.32.0":{"name":"@yaireo/tagify","version":"4.32.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.32.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"d20a88fca397f4e75e85ae811d386513772c0b0c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.32.0.tgz","fileCount":41,"integrity":"sha512-CxHpwgloFYh3EwGs4LUkEz8oKswLNyX4CtSSqZCcSA0pUV5xTe8L+YaJnbpU79iV3bqxCwkxTx6E0Wi0ebujBQ==","signatures":[{"sig":"MEUCIQDa6hTtWXzwWf+mKW3DAZi7Pxg4PXxAWb8X1aPyhp9aEgIgTEtvtF9VK7d3hFlriocZlwtwOO+bQEr0zZe016zKDRM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4329589},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.32.0.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\efe7ff5284a56df4c36c3f9fb60ae31a\\yaireo-tagify-4.32.0.tgz","_integrity":"sha512-CxHpwgloFYh3EwGs4LUkEz8oKswLNyX4CtSSqZCcSA0pUV5xTe8L+YaJnbpU79iV3bqxCwkxTx6E0Wi0ebujBQ==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.8.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.3.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.74.1","rollup":"2.79.2","semver":"^7.6.0","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.4","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.3"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.32.0_1731224448585_0.6749870506367919","host":"s3://npm-registry-packages"}},"4.32.1":{"name":"@yaireo/tagify","version":"4.32.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.32.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"0b93647b557233ee402311ab5f9917c572d95eba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.32.1.tgz","fileCount":41,"integrity":"sha512-QlWP+9K9AIFs1RtGLjw1oqBIAhiKMWRH5s+vxXk4gdhsc6Ii87jucGXdL9uUJ9Pn33A1Zw41ZfBsguQkN0wEuQ==","signatures":[{"sig":"MEUCIQCIbE5TFyAREUu8V5+x8TI5D1b167syeJ6XOAU3auN3xgIgRgMzJzOGKna0WSyHJ7EghPNlak6J8SUXoNVX8pGOgGs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4328557},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.32.1.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\d4f9207f3d4d26b6c1c6b37558aa46cc\\yaireo-tagify-4.32.1.tgz","_integrity":"sha512-QlWP+9K9AIFs1RtGLjw1oqBIAhiKMWRH5s+vxXk4gdhsc6Ii87jucGXdL9uUJ9Pn33A1Zw41ZfBsguQkN0wEuQ==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.8.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.3.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.74.1","rollup":"2.79.2","semver":"^7.6.0","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.4","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.3"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.32.1_1732367575405_0.052546618553438895","host":"s3://npm-registry-packages"}},"4.32.2":{"name":"@yaireo/tagify","version":"4.32.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.32.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"332cd76bec770b7e2aa7c7708571847b84f60c9e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.32.2.tgz","fileCount":41,"integrity":"sha512-Ub0O+yVkrUGGW+78rNW+EiFaxsn+LvShZXHyrUWbIkIAgJc8mSh1q63PHtUHDM1bugLOK3b4RI1kfQlwcewYJQ==","signatures":[{"sig":"MEUCIQDTV+CuNJVmcqjZ+O0FDNSrfpmTSFQ1nu5GAQl1ueZPlQIgC/Scdb7ltaXW0wE/PoODcgGu7WxoBXUwMEkpew8tiBo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4386829},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.32.2.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\e5a14bee96cfd5d50aeb8db1f751326e\\yaireo-tagify-4.32.2.tgz","_integrity":"sha512-Ub0O+yVkrUGGW+78rNW+EiFaxsn+LvShZXHyrUWbIkIAgJc8mSh1q63PHtUHDM1bugLOK3b4RI1kfQlwcewYJQ==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.8.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.3.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.74.1","rollup":"2.79.2","semver":"^7.6.0","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.4","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.3"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.32.2_1733587748538_0.019255538111658588","host":"s3://npm-registry-packages"}},"4.33.0":{"name":"@yaireo/tagify","version":"4.33.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.33.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"4167ba55d74921c92e226c3cf31360070643802e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.33.0.tgz","fileCount":41,"integrity":"sha512-8MQF26Q5NIJXXLETAMOSFv2d6Jj5DH0xwUM6kCelQ9CMG7oIA4HIdQ6sMy5dF95IBLqCJOF9MM4vfiyQIcrejA==","signatures":[{"sig":"MEYCIQDLXCovcTlq00mjyvfqb8H/9Sn1VPJFBhNFNzqhjLrjZQIhAPcXWGbJeOklqkMcJKhBNYzvAL0tS9Wde1N3s9+LunLa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4440179},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.33.0.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\78a0e08827b2dcd4c2eee92ceeba37a4\\yaireo-tagify-4.33.0.tgz","_integrity":"sha512-8MQF26Q5NIJXXLETAMOSFv2d6Jj5DH0xwUM6kCelQ9CMG7oIA4HIdQ6sMy5dF95IBLqCJOF9MM4vfiyQIcrejA==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.8.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.3.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.74.1","rollup":"2.79.2","semver":"^7.6.0","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.4","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.3"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.33.0_1734808746125_0.9064237608970158","host":"s3://npm-registry-packages-npm-production"}},"4.33.1":{"name":"@yaireo/tagify","version":"4.33.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.33.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"bed901b8367c8dbea39ba7a8d646e9e83a284f16","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.33.1.tgz","fileCount":41,"integrity":"sha512-V+jMHsGVCLIn5vgF+UaC413VThsXzwVyMp4TiUyjXzWwXXubmObLJ/LgokN5LXkQJNAzzpHWLILzvoQV7GmNog==","signatures":[{"sig":"MEYCIQDwLBpNaJ60yo8RAEj14resIzeaoXHLQJotjqxRGficRgIhAJy35h6MaR9ZDcv4HPhWCHoMYYXxR3isX1qXENLa1N+y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4444743},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.33.1.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\4e90c521533d5d29a1772f6e1dd100b3\\yaireo-tagify-4.33.1.tgz","_integrity":"sha512-V+jMHsGVCLIn5vgF+UaC413VThsXzwVyMp4TiUyjXzWwXXubmObLJ/LgokN5LXkQJNAzzpHWLILzvoQV7GmNog==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.8.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.3.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.74.1","rollup":"2.79.2","semver":"^7.6.0","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.4","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.3"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.33.1_1736535471987_0.6012893716493053","host":"s3://npm-registry-packages-npm-production"}},"4.33.2":{"name":"@yaireo/tagify","version":"4.33.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.33.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"496290622831d7700c8e3c9f730f9988eebb3364","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.33.2.tgz","fileCount":41,"integrity":"sha512-0r6c9ky3Vguj4pOKGy/sGGcfbfR+5zmZ7u4+1DWTf6v9z71cDksDp7A7l9g9mxlSZ1cs9Wk4pp/GEWfr8muykw==","signatures":[{"sig":"MEUCIQDqWVfFxY2OOciTiqI691T4KrpZnFr8gxWcLR80HZSDhQIgYuX0LQUGwLn61aTvNm6sVK1iiBj3nNum/amqi+F0pSk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":4444789},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.33.2.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./src/tagify.scss":"./src/tagify.scss","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\37e9f4c02eedaba92c8d81cabf56e901\\yaireo-tagify-4.33.2.tgz","_integrity":"sha512-0r6c9ky3Vguj4pOKGy/sGGcfbfR+5zmZ7u4+1DWTf6v9z71cDksDp7A7l9g9mxlSZ1cs9Wk4pp/GEWfr8muykw==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.8.1","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.3.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.74.1","rollup":"2.79.2","semver":"^7.6.0","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.4","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.3"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.33.2_1737888908258_0.21171810101789257","host":"s3://npm-registry-packages-npm-production"}},"4.34.0":{"name":"@yaireo/tagify","version":"4.34.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.34.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"6f058612c9b8d8470a08d24f4072ba9f8cbe8d3e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.34.0.tgz","fileCount":41,"integrity":"sha512-+IckJUhvjii37n/YFX3YUTJvcp8rUU0CnjAqa87/psSKjiF5xwoK7Mo0rsadzdrPxycrcn6Uwzl8zPO6/8CXOQ==","signatures":[{"sig":"MEYCIQCOJWpXLBo7t0ESmlvtujzO7VkVB5Ga20/i/KXl7zW4CAIhAOiXp2UJjW24bHD4MMp2LJGhRelayk1CALV9sTre+AsW","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":4450721},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.34.0.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./src/tagify.scss":"./src/tagify.scss","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\3031b845b6c871791c557a9333afb435\\yaireo-tagify-4.34.0.tgz","_integrity":"sha512-+IckJUhvjii37n/YFX3YUTJvcp8rUU0CnjAqa87/psSKjiF5xwoK7Mo0rsadzdrPxycrcn6Uwzl8zPO6/8CXOQ==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.9.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.14.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.74.1","rollup":"2.79.2","semver":"^7.6.0","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.4","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.3"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.34.0_1744219039213_0.44544315516313926","host":"s3://npm-registry-packages-npm-production"}},"4.35.0":{"name":"@yaireo/tagify","version":"4.35.0","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.35.0","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"b7b0eba66962df16ab3fa8b5312880667a7d7de7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.35.0.tgz","fileCount":41,"integrity":"sha512-D+o/c2rAhNA/Cmiw1sV1YtuxPCqB0UpVOXdnR9DXPuMHvU0quIEkU3FA6JDXTYMQV6FL7YGwonq2yPMfkc83lQ==","signatures":[{"sig":"MEQCIDcHYNA8cz5ZAFyrSE580fJwzeO49X49FBSEArIJy1uMAiAiwMICDczBTv8s0Zb+NlTQm98t85kvXbORw0L1kf7HLw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":4447777},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.35.0.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./src/tagify.scss":"./src/tagify.scss","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\bfaf49b1a424feb92c9a032c0e6a3196\\yaireo-tagify-4.35.0.tgz","_integrity":"sha512-D+o/c2rAhNA/Cmiw1sV1YtuxPCqB0UpVOXdnR9DXPuMHvU0quIEkU3FA6JDXTYMQV6FL7YGwonq2yPMfkc83lQ==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.9.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.14.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.74.1","rollup":"2.79.2","semver":"^7.6.0","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.4","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.3"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.35.0_1745415759388_0.061665800107901125","host":"s3://npm-registry-packages-npm-production"}},"4.35.1":{"name":"@yaireo/tagify","version":"4.35.1","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.35.1","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"fd94e67f7ee1f175bb89ab7579d16081c727cea7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.35.1.tgz","fileCount":41,"integrity":"sha512-PF6nwp1lHMVS2IVpqZTxx53fQyEBUDjdDQsi7gD9Vx/EQ398gRH8LByEL8lawws9iJHB90on74VWG3pvwznrEg==","signatures":[{"sig":"MEUCIQDPHimHAn+Ksp2xSPNjThtcvpDKF08xVJWcvW1OeLgL5AIgS7IN4gb3HT8tmRW1xC0wh3dZa2gpyxjhbuNt6bRSSJQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":4447804},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.35.1.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./src/tagify.scss":"./src/tagify.scss","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\8f81136b680311d7201211bf947cd654\\yaireo-tagify-4.35.1.tgz","_integrity":"sha512-PF6nwp1lHMVS2IVpqZTxx53fQyEBUDjdDQsi7gD9Vx/EQ398gRH8LByEL8lawws9iJHB90on74VWG3pvwznrEg==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.9.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.14.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.74.1","rollup":"2.79.2","semver":"^7.6.0","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.4","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.3"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.35.1_1746699995804_0.026967803218922226","host":"s3://npm-registry-packages-npm-production"}},"4.35.2":{"name":"@yaireo/tagify","version":"4.35.2","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.35.2","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"e02d301e62d3fc157fe9e0110ee233d0fbffd15d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.35.2.tgz","fileCount":41,"integrity":"sha512-bqGdhIYXoU+bklT0zjGmvMNfjYCtwWDAfeaSwaneEeo+DterNJFmFR6ATbhjA5QUICqZygBfoPy980I5lRIHsw==","signatures":[{"sig":"MEQCIEJkiZvgaOI/DiowDJ2Cti2FLxmrNGX7ujgBEtNN+NcIAiAaHUnWfaZ9xWfKqwDgoNndZ+bkoh1hWCaqFLzNrXT9Pg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":4471558},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.35.2.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./src/tagify.scss":"./src/tagify.scss","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\0eb24c5b9754cd2e1d6c9eb169609bd8\\yaireo-tagify-4.35.2.tgz","_integrity":"sha512-bqGdhIYXoU+bklT0zjGmvMNfjYCtwWDAfeaSwaneEeo+DterNJFmFR6ATbhjA5QUICqZygBfoPy980I5lRIHsw==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.9.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.14.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.74.1","rollup":"2.79.2","semver":"^7.6.0","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.4","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.3"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.35.2_1752325970574_0.16259964336573196","host":"s3://npm-registry-packages-npm-production"}},"4.35.3":{"name":"@yaireo/tagify","version":"4.35.3","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.35.3","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"4c23f676a169fd6e6131557f0c3feb3ab70917ec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.35.3.tgz","fileCount":41,"integrity":"sha512-YXqNIHoKwZXRxeMSu1E9/CaE/e4rC81RUyg2IaPYh6ZmcAl+7dVi/QoNV1pGu7MLXIqQYpXyXxzDoweIOF7GIw==","signatures":[{"sig":"MEQCIB4QxtuiAMe0nFHUL+aXs4rQY6VPDv42FuGUC0udBncqAiBnozpSDj+BQowpcexfwUWoMRtvq3c3R+iwsBA2tO8OsA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":4474342},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.35.3.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./src/tagify.scss":"./src/tagify.scss","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\d7c3638540650387004d9c6114da5bdb\\yaireo-tagify-4.35.3.tgz","_integrity":"sha512-YXqNIHoKwZXRxeMSu1E9/CaE/e4rC81RUyg2IaPYh6ZmcAl+7dVi/QoNV1pGu7MLXIqQYpXyXxzDoweIOF7GIw==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.9.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.14.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.74.1","rollup":"2.79.2","semver":"^7.6.0","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.4","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.3"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.35.3_1753117530262_0.20523099059347616","host":"s3://npm-registry-packages-npm-production"}},"4.35.4":{"name":"@yaireo/tagify","version":"4.35.4","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.35.4","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"287d8023800763ee594454b5f3855ea0b4b309c2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.35.4.tgz","fileCount":41,"integrity":"sha512-kC+1FEAZEM4DrBmn/wKMnpu5D1Lt1oMt/Wkx+VAdK13a/0B/hY+PWMoZKPePM81TX/VIpf7dstTDg6ckOvbzNw==","signatures":[{"sig":"MEQCIBbcOsaC1dHxXkBBWNWZBIxHg3zzi+LZoIWMWV1BLh2AAiB2DUEqlFIB+MYlEwj0XeyAj1hvKpnOjp0a/KI7c4nmBg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":4490202},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.35.4.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./src/tagify.scss":"./src/tagify.scss","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\1ff6ab12e0cebccc58d0368a0f3d0c61\\yaireo-tagify-4.35.4.tgz","_integrity":"sha512-kC+1FEAZEM4DrBmn/wKMnpu5D1Lt1oMt/Wkx+VAdK13a/0B/hY+PWMoZKPePM81TX/VIpf7dstTDg6ckOvbzNw==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.9.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.17.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.74.1","rollup":"2.79.2","semver":"^7.6.0","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.4","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.3"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.35.4_1756374448157_0.8194494436235511","host":"s3://npm-registry-packages-npm-production"}},"4.35.5":{"name":"@yaireo/tagify","version":"4.35.5","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.35.5","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"2ec78ccb470e65544d1349ec23032149a6a07a10","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.35.5.tgz","fileCount":41,"integrity":"sha512-IJf1z205bocsDoiJ6syqGwW8bY/oCQttpGfMeaeUipbNwmz4j+5oaCT6Gx+Bbu9ToGqGhd0Qo1yjcbJPArjJqg==","signatures":[{"sig":"MEQCIFP61/Q5WEMzYlM71n8Y9JQ7o0HnvNvXehPdKei0/hJqAiA7OJM0r/n61DDuk50kCdP6DaqKNaY58d5oOinrytuN2w==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":4496725},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.35.5.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./src/tagify.scss":"./src/tagify.scss","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\c1b108752ecd78ec5bb2e6e4b06b2713\\yaireo-tagify-4.35.5.tgz","_integrity":"sha512-IJf1z205bocsDoiJ6syqGwW8bY/oCQttpGfMeaeUipbNwmz4j+5oaCT6Gx+Bbu9ToGqGhd0Qo1yjcbJPArjJqg==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.9.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.17.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.74.1","rollup":"2.79.2","semver":"^7.6.0","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.4","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.3"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.35.5_1762068154420_0.4246273743586917","host":"s3://npm-registry-packages-npm-production"}},"4.35.6":{"name":"@yaireo/tagify","version":"4.35.6","keywords":["tags","tagging","component","tag","ui"],"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"license":"MIT","_id":"@yaireo/tagify@4.35.6","maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"homepage":"https://github.com/yairEO/tagify","bugs":{"url":"https://github.com/yaireo/tagify/issues"},"np":{"yarn":false,"yolo":true},"dist":{"shasum":"4dabf9ec4f9bff9f6f2481452df025a50bcc77f3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.35.6.tgz","fileCount":41,"integrity":"sha512-+UsaVuU3osYwmiie8YrbMkpyEInet2el3t+8lKf9j27RsACESmOvM5QtI0MwmzFdjMSAGwqdp7UjRqOo8GJrnA==","signatures":[{"sig":"MEUCIQDUVewDTV5btOD2AcccsodlP0GJB9mAA7VQiJZwchi4XwIgW6+vAnGBHyjXFiiWBXbpva5SElduV1CLRmToaKskeuQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":4527542},"jest":{"preset":"jest-puppeteer"},"main":"./dist/tagify.js","_from":"file:yaireo-tagify-4.35.6.tgz","engines":{"npm":">=9.0.0","node":">=16.15.0"},"exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./vue":"./dist/tagify.vue","./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/tagify.css":"./dist/tagify.css","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.vue":"./dist/tagify.vue","./src/tagify.scss":"./src/tagify.scss","./dist/react.tagify":"./src/react.tagify","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.min.js":"./dist/tagify.js","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js"},"scripts":{"test":"pnpm exec playwright test","build":"gulp","serve":"npx http-server -o index.html -c-1","start":"gulp --dev","version":"gulp build && git add ."},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\b78a38735b599ad109ecea7f4147bfff\\yaireo-tagify-4.35.6.tgz","_integrity":"sha512-+UsaVuU3osYwmiie8YrbMkpyEInet2el3t+8lKf9j27RsACESmOvM5QtI0MwmzFdjMSAGwqdp7UjRqOo8GJrnA==","repository":{"url":"git+https://github.com/yairEO/tagify.git","type":"git"},"_npmVersion":"10.9.2","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","directories":{},"_nodeVersion":"22.17.0","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"_hasShrinkwrap":false,"devDependencies":{"gulp":"^5.0.0","path":"^0.12.7","sass":"^1.74.1","rollup":"2.79.2","semver":"^7.6.0","beepbeep":"^1.3.0","gulp-swc":"^2.0.0","gulp-tap":"^2.0.0","gulp-umd":"^2.0.0","@swc/core":"^1.4.12","gulp-bump":"^3.2.0","gulp-sass":"^5.1.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","@types/node":"^20.12.8","gulp-cached":"^1.1.1","gulp-concat":"^2.6.1","gulp-insert":"^0.5.0","gulp-rename":"^2.0.0","gulp-terser":"^2.1.0","gulp-replace":"^1.1.4","run-sequence":"^2.2.1","vinyl-buffer":"^1.0.1","gulp-nunjucks":"^6.0.0","@rollup/stream":"^3.0.1","gulp-clean-css":"^4.3.0","gulp-streamify":"^1.0.2","gulp-combine-mq":"^0.4.0","gulp-sourcemaps":"^3.0.0","@playwright/test":"^1.43.1","gulp-tag-version":"^1.3.1","gulp-autoprefixer":"^8.0.0","gulp-css-globbing":"^0.2.2","gulp-load-plugins":"^2.0.8","rollup-plugin-swc3":"^0.11.0","gulp-header-comment":"^0.10.0","vinyl-source-stream":"^2.0.0","@rollup/plugin-terser":"^0.4.4","rollup-plugin-banner2":"^1.2.3"},"peerDependencies":{"react":"*","react-dom":"*","prop-types":">15.5.7"},"_npmOperationalInternal":{"tmp":"tmp/tagify_4.35.6_1763224655038_0.9042975834110833","host":"s3://npm-registry-packages-npm-production"}},"4.36.0":{"name":"@yaireo/tagify","version":"4.36.0","homepage":"https://github.com/yairEO/tagify","description":"lightweight, efficient Tags input component in Vanilla JS / React / Angular [super customizable, tiny size & top performance]","keywords":["tags","tagging","component","tag","ui"],"license":"MIT","browserslist":[">1%","not dead","not ie < 11","not IE_Mob 11","not op_mini all"],"engines":{"npm":">=9.0.0","node":">=16.15.0"},"np":{"yarn":false,"yolo":true},"jest":{"preset":"jest-puppeteer"},"author":{"name":"Yair Even-Or","email":"vsync.design@gmail.com"},"main":"./dist/tagify.js","exports":{".":{"import":"./dist/tagify.esm.js","require":"./dist/tagify.js"},"./react":"./src/react.tagify","./react.tagify":"./src/react.tagify","./dist/react.tagify":"./src/react.tagify","./dist/react.tagify.jsx":"./src/react.tagify","./dist/tagify.min.js":"./dist/tagify.js","./dist/tagify.min":"./dist/tagify.js","./dist/tagify.esm.js":"./dist/tagify.esm.js","./dist/tagify.polyfills.min.js":"./dist/tagify.polyfills.min.js","./dist/tagify.vue":"./dist/tagify.vue","./vue":"./dist/tagify.vue","./dist/tagify.css":"./dist/tagify.css","./src/tagify.scss":"./src/tagify.scss"},"repository":{"type":"git","url":"git+https://github.com/yairEO/tagify.git"},"bugs":{"url":"https://github.com/yaireo/tagify/issues"},"peerDependencies":{"prop-types":">15.5.7","react":"*","react-dom":"*"},"devDependencies":{"@playwright/test":"^1.57.0","@rollup/plugin-terser":"^0.4.4","@rollup/stream":"^3.0.1","@swc/core":"^1.4.12","@types/node":"^22.19.7","beepbeep":"^1.3.0","gulp":"^5.0.1","gulp-autoprefixer":"^8.0.0","gulp-bump":"^3.2.0","gulp-cached":"^1.1.1","gulp-clean-css":"^4.3.0","gulp-combine-mq":"^0.4.0","gulp-concat":"^2.6.1","gulp-css-globbing":"^0.2.2","gulp-header-comment":"^0.10.0","gulp-insert":"^0.5.0","gulp-load-plugins":"^2.0.8","gulp-nunjucks":"^6.1.0","gulp-rename":"^2.1.0","gulp-replace":"^1.1.4","gulp-sass":"^5.1.0","gulp-sourcemaps":"^3.0.0","gulp-streamify":"^1.0.2","gulp-swc":"^2.2.0","gulp-tag-version":"^1.3.1","gulp-tap":"^2.0.0","gulp-terser":"^2.1.0","gulp-umd":"^2.0.0","gulp-util":"^3.0.8","gulp-watch":"^5.0.1","path":"^0.12.7","rollup":"2.79.2","rollup-plugin-banner2":"^1.2.3","rollup-plugin-swc3":"^0.11.0","run-sequence":"^2.2.1","sass":"^1.74.1","semver":"^7.7.3","vinyl-buffer":"^1.0.1","vinyl-source-stream":"^2.0.0"},"scripts":{"start":"gulp --dev","build":"gulp","version":"gulp build && git add .","test":"pnpm exec playwright test","serve":"npx http-server -o index.html -c-1"},"_id":"@yaireo/tagify@4.36.0","_integrity":"sha512-pq7z1E0sWWPNTp8gUzWI7yNbILtVbA2qBAGMfn5bDu3ttLLWxW4k0sdKB/RkSZfimqxr0dTr3UNjwIUl49/LDw==","_resolved":"C:\\Users\\vsync\\AppData\\Local\\Temp\\da4722df67a4cccf1eefd6e7c4f3de8f\\yaireo-tagify-4.36.0.tgz","_from":"file:yaireo-tagify-4.36.0.tgz","_nodeVersion":"22.17.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-pq7z1E0sWWPNTp8gUzWI7yNbILtVbA2qBAGMfn5bDu3ttLLWxW4k0sdKB/RkSZfimqxr0dTr3UNjwIUl49/LDw==","shasum":"f16adae492a33fd3c5bc01643eefd75965ae9560","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@yaireo/tagify/-/tagify-4.36.0.tgz","fileCount":41,"unpackedSize":4709185,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIE0n89ADXNKuLvqLAadcy3qVxpcWKJmHxz7usCOs90alAiEAvhG5irVipwcnJLuMYV5xZ86a2J17jHMAMBP23m2m6XY="}]},"_npmUser":{"name":"anonymous","email":"vsync.design@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"vsync.design@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/tagify_4.36.0_1768677180832_0.05613592271878454"},"_hasShrinkwrap":false}},"name":"@yaireo/tagify","time":{"created":"2017-05-30T20:33:49.093Z","modified":"2026-01-17T19:13:01.177Z","1.1.2":"2017-05-30T20:33:49.093Z","1.2.2":"2017-10-24T11:16:38.971Z","2.0.0":"2018-06-17T15:18:46.088Z","2.0.3":"2018-07-03T21:20:55.921Z","2.1.0":"2018-07-07T16:38:18.604Z","2.1.7":"2018-08-25T16:13:25.884Z","2.1.9":"2018-09-07T10:35:00.783Z","2.3.0":"2018-09-30T07:42:03.223Z","2.5.0":"2018-10-01T20:12:45.240Z","2.5.1":"2018-10-02T20:36:51.189Z","2.6.0":"2018-10-07T20:31:28.266Z","2.6.2":"2018-10-12T15:12:30.087Z","2.6.3":"2018-10-24T07:32:46.929Z","2.6.4":"2018-10-27T19:23:50.335Z","2.6.5":"2018-10-30T18:51:17.230Z","2.6.6":"2018-11-03T14:29:20.452Z","2.7.0":"2018-11-10T20:17:59.749Z","2.7.1":"2018-11-14T08:31:31.363Z","2.7.2":"2018-11-14T14:44:59.115Z","2.7.4":"2018-11-14T20:36:42.315Z","2.7.5":"2018-11-15T23:05:51.186Z","2.7.6":"2018-11-16T13:32:44.855Z","2.7.7":"2018-11-24T18:13:48.598Z","2.8.0":"2018-12-01T16:24:51.764Z","2.8.1":"2018-12-01T16:57:35.169Z","2.8.2":"2018-12-01T17:44:04.386Z","2.8.4":"2018-12-08T21:49:19.575Z","2.8.5":"2018-12-09T21:11:45.715Z","2.8.6":"2018-12-13T12:09:25.860Z","2.9.0":"2018-12-16T11:11:48.756Z","2.9.1":"2018-12-17T09:31:29.355Z","2.9.7":"2018-12-30T08:58:49.768Z","2.9.8":"2019-01-01T21:27:47.592Z","2.9.9":"2019-01-02T20:27:54.653Z","2.10.1":"2019-01-02T21:44:13.626Z","2.11.0":"2019-01-26T22:02:32.694Z","2.11.1":"2019-01-26T22:05:01.608Z","2.12.0":"2019-02-09T22:22:49.398Z","2.12.1":"2019-02-14T21:10:32.618Z","2.12.2":"2019-02-19T21:09:10.393Z","2.12.6":"2019-02-23T19:21:17.492Z","2.13.0":"2019-02-25T21:04:55.101Z","2.15.0":"2019-03-26T15:15:28.124Z","2.15.1":"2019-04-02T15:54:21.921Z","2.15.2":"2019-04-05T20:03:38.469Z","2.16.0":"2019-04-10T20:41:43.767Z","2.17.0":"2019-04-13T18:20:27.139Z","2.18.0":"2019-04-24T19:07:12.665Z","2.18.1":"2019-04-25T21:23:24.167Z","2.18.2":"2019-04-30T21:23:29.006Z","2.18.3":"2019-05-04T18:37:59.908Z","2.19.0":"2019-05-14T20:45:56.723Z","2.19.1":"2019-05-15T20:50:35.193Z","2.20.1":"2019-05-27T21:59:41.544Z","2.21.0":"2019-05-28T20:41:54.269Z","2.21.1":"2019-06-05T18:21:29.104Z","2.22.0":"2019-06-05T20:10:23.297Z","2.22.1":"2019-06-06T18:35:37.193Z","2.22.2":"2019-06-15T18:19:55.330Z","2.22.3":"2019-06-18T21:27:02.564Z","2.23.0":"2019-07-10T21:11:39.277Z","2.23.1":"2019-07-29T20:07:58.632Z","2.24.0":"2019-08-17T14:21:21.872Z","2.25.1":"2019-08-23T20:13:48.738Z","2.25.2":"2019-08-23T20:53:17.451Z","2.25.3":"2019-08-27T19:23:01.787Z","2.26.0":"2019-08-28T19:37:12.773Z","2.26.1":"2019-08-31T10:02:43.870Z","2.26.2":"2019-08-31T21:08:41.907Z","2.27.0":"2019-09-02T06:35:37.258Z","2.28.0":"2019-09-11T20:48:51.957Z","2.28.1":"2019-09-12T06:12:12.581Z","2.28.2":"2019-09-13T12:52:34.088Z","2.28.4":"2019-09-14T20:27:08.997Z","2.29.0":"2019-09-23T19:48:29.289Z","2.29.1":"2019-10-06T20:00:13.775Z","2.30.0":"2019-10-07T21:08:36.166Z","2.31.0":"2019-10-14T09:34:40.208Z","2.31.1":"2019-10-14T09:47:26.526Z","2.31.2":"2019-10-14T18:32:06.438Z","2.31.3":"2019-11-03T21:28:09.993Z","2.31.4":"2019-11-10T22:26:35.365Z","2.31.6":"2019-11-20T22:59:39.419Z","3.0.0":"2019-12-12T13:37:00.828Z","3.1.0":"2019-12-12T21:16:50.085Z","3.2.0":"2019-12-18T14:53:32.802Z","3.2.1":"2019-12-20T15:10:25.281Z","3.2.2":"2019-12-20T15:32:32.811Z","3.2.3":"2019-12-22T16:06:54.287Z","3.2.4":"2019-12-23T13:53:35.440Z","3.2.5":"2019-12-27T10:51:30.684Z","3.2.6":"2020-01-06T22:10:57.426Z","3.3.0":"2020-01-25T20:15:13.629Z","3.3.1":"2020-02-04T21:35:21.700Z","3.4.0":"2020-02-07T20:26:27.773Z","3.5.0":"2020-02-23T23:16:34.449Z","3.5.1":"2020-02-25T19:57:36.465Z","3.6.0":"2020-03-01T18:28:14.268Z","3.6.1":"2020-03-03T21:30:26.369Z","3.6.2":"2020-03-05T10:56:10.138Z","3.6.3":"2020-03-17T13:47:47.255Z","3.6.6":"2020-04-03T21:38:05.803Z","3.6.7":"2020-04-05T17:33:09.663Z","3.6.8":"2020-04-06T08:31:26.987Z","3.6.9":"2020-04-06T08:53:06.795Z","3.6.10":"2020-04-06T08:55:58.248Z","3.7.0":"2020-04-23T11:35:02.449Z","3.7.1":"2020-04-25T17:47:56.741Z","3.7.2":"2020-04-27T21:22:31.207Z","3.7.3":"2020-05-01T20:44:02.453Z","3.8.0":"2020-05-05T16:36:43.901Z","3.9.0":"2020-05-16T19:54:42.594Z","3.9.1":"2020-05-16T20:53:04.775Z","3.9.2":"2020-05-18T22:15:34.832Z","3.9.3":"2020-05-19T22:30:08.186Z","3.10.0":"2020-05-30T20:37:49.162Z","3.10.1":"2020-05-30T20:38:56.199Z","3.10.2":"2020-06-01T22:20:51.796Z","3.11.0":"2020-06-10T21:03:37.779Z","3.11.1":"2020-06-13T21:17:47.002Z","3.11.2":"2020-06-20T21:35:36.210Z","3.11.3":"2020-06-21T19:55:09.789Z","3.12.0":"2020-06-27T20:59:39.815Z","3.13.0":"2020-07-02T09:45:35.888Z","3.14.0":"2020-07-06T11:50:05.128Z","3.14.1":"2020-07-06T12:51:31.062Z","3.14.2":"2020-07-06T12:52:36.801Z","3.14.3":"2020-07-08T12:36:41.088Z","3.15.0":"2020-07-13T11:43:51.089Z","3.15.1":"2020-07-13T12:19:32.158Z","3.15.2":"2020-07-14T13:11:57.310Z","3.15.3":"2020-07-14T14:46:39.418Z","3.15.4":"2020-07-19T09:44:22.004Z","3.16.0":"2020-07-25T19:25:30.923Z","3.16.1":"2020-07-26T09:35:38.444Z","3.16.2":"2020-07-26T21:28:01.895Z","3.16.3":"2020-07-28T19:21:06.659Z","3.17.0":"2020-08-05T14:03:42.497Z","3.17.1":"2020-08-05T16:19:11.007Z","3.17.2":"2020-08-08T19:23:32.092Z","3.17.3":"2020-08-09T09:01:55.089Z","3.17.4":"2020-08-09T09:03:19.850Z","3.17.6":"2020-08-10T14:13:57.430Z","3.17.7":"2020-08-10T19:30:22.359Z","3.17.8":"2020-08-22T15:55:18.728Z","3.17.9":"2020-08-27T19:09:52.710Z","3.17.10":"2020-08-28T20:52:40.613Z","3.18.0":"2020-09-05T20:10:04.231Z","3.18.1":"2020-09-12T19:07:30.831Z","3.19.0":"2020-09-21T10:23:17.228Z","3.19.1":"2020-09-25T20:44:10.098Z","3.19.2":"2020-09-27T19:46:39.470Z","3.19.3":"2020-09-30T16:14:58.573Z","3.19.4":"2020-09-30T19:10:52.650Z","3.19.5":"2020-10-04T16:49:20.796Z","3.19.7":"2020-10-05T21:05:51.965Z","3.20.0":"2020-10-07T17:56:39.193Z","3.20.1":"2020-10-22T19:55:56.130Z","3.20.2":"2020-10-24T13:29:37.584Z","3.20.3":"2020-10-26T15:25:06.185Z","3.21.0":"2020-11-05T23:28:03.353Z","3.21.1":"2020-11-10T20:29:30.150Z","3.21.2":"2020-11-10T21:38:07.085Z","3.21.3":"2020-11-10T22:01:35.135Z","3.21.4":"2020-11-11T06:20:12.753Z","3.21.5":"2020-11-22T22:46:06.985Z","3.22.0":"2020-12-26T20:51:39.918Z","3.22.1":"2021-01-17T20:51:11.739Z","3.22.2":"2021-02-13T18:04:33.678Z","3.22.3":"2021-02-16T20:24:02.245Z","3.23.0":"2021-02-25T20:37:16.024Z","3.23.1":"2021-03-07T18:48:38.318Z","3.25.0":"2021-03-28T20:48:37.558Z","4.0.0":"2021-03-30T09:41:00.840Z","4.0.1":"2021-04-02T14:17:40.588Z","4.0.2":"2021-04-05T07:31:45.979Z","4.0.3":"2021-04-05T17:28:14.998Z","4.0.4":"2021-04-10T19:43:01.922Z","4.0.5":"2021-04-15T21:04:04.606Z","4.1.0":"2021-04-24T21:06:41.053Z","4.1.1":"2021-04-24T21:20:01.153Z","4.1.2":"2021-05-15T22:18:14.548Z","4.1.3":"2021-05-23T08:59:59.999Z","4.1.4":"2021-05-30T14:54:56.817Z","4.2.0":"2021-06-06T12:08:14.848Z","4.3.0":"2021-06-12T18:47:57.667Z","4.3.1":"2021-06-16T09:56:43.531Z","4.4.0":"2021-07-03T21:37:06.319Z","4.5.0":"2021-07-13T20:40:51.174Z","4.6.0":"2021-07-28T21:11:30.267Z","4.7.0":"2021-08-20T21:59:13.787Z","4.7.1":"2021-08-21T09:49:08.700Z","4.7.2":"2021-08-22T21:17:59.364Z","4.8.0":"2021-09-21T13:49:23.294Z","4.8.1":"2021-09-24T20:38:22.930Z","4.9.0":"2021-11-13T21:16:31.402Z","4.9.1":"2021-11-19T15:47:32.449Z","4.9.2":"2021-11-27T14:28:51.587Z","4.9.3":"2021-12-11T14:59:52.643Z","4.9.4":"2021-12-11T15:05:15.807Z","4.9.5":"2022-01-24T18:58:42.179Z","4.9.6":"2022-02-06T17:30:33.733Z","4.9.7":"2022-02-13T19:01:15.664Z","4.9.8":"2022-02-17T12:41:43.494Z","4.10.0":"2022-04-05T18:23:21.973Z","4.11.0":"2022-04-10T18:27:05.241Z","4.12.0":"2022-04-25T17:24:03.128Z","4.13.0":"2022-07-09T13:33:27.112Z","4.13.1":"2022-07-09T18:23:16.803Z","4.13.2":"2022-07-11T19:48:28.339Z","4.13.3":"2022-07-13T22:22:33.698Z","4.14.0":"2022-07-20T21:05:31.217Z","4.14.1":"2022-07-25T22:02:59.217Z","4.15.0":"2022-07-30T22:02:02.495Z","4.15.1":"2022-07-30T23:04:48.926Z","4.15.2":"2022-07-31T09:21:06.224Z","4.15.3":"2022-08-05T15:06:34.740Z","4.15.4":"2022-08-13T19:52:30.167Z","4.16.0":"2022-08-15T07:07:12.528Z","4.16.2":"2022-08-19T10:57:57.141Z","4.16.3":"2022-09-01T11:28:47.819Z","4.16.4":"2022-09-03T19:12:33.551Z","4.17.0":"2022-11-12T21:44:07.701Z","4.17.1":"2022-11-15T15:44:08.522Z","4.17.2":"2022-11-16T12:00:23.701Z","4.17.3":"2022-11-17T14:55:30.154Z","4.17.4":"2022-11-19T15:53:58.351Z","4.17.5":"2022-12-03T23:09:42.796Z","4.17.6":"2022-12-04T18:48:32.314Z","4.17.7":"2023-01-16T20:28:49.387Z","4.17.8":"2023-04-12T15:09:37.256Z","4.17.9":"2023-08-20T08:40:53.803Z","4.18.0":"2024-01-04T21:26:35.601Z","4.18.1":"2024-01-06T19:13:24.633Z","4.18.2":"2024-01-11T19:28:38.706Z","4.18.3":"2024-01-18T12:40:05.343Z","4.19.0":"2024-01-27T17:09:21.460Z","4.19.1":"2024-01-29T12:40:58.452Z","4.20.0":"2024-02-11T15:18:15.613Z","4.21.0":"2024-02-12T20:53:03.988Z","4.21.1":"2024-02-12T21:26:40.187Z","4.21.2":"2024-03-07T20:01:23.307Z","4.22.0":"2024-03-16T20:25:26.307Z","4.22.1":"2024-03-18T19:38:00.355Z","4.22.2":"2024-03-19T11:37:10.254Z","4.23.0":"2024-04-08T21:33:36.884Z","4.24.0":"2024-04-11T19:29:15.352Z","4.25.0":"2024-04-24T14:55:56.640Z","4.25.1":"2024-04-25T08:43:50.686Z","4.26.0":"2024-04-28T20:36:06.719Z","4.26.1":"2024-05-02T11:38:01.732Z","4.26.2":"2024-05-06T12:23:34.955Z","4.26.3":"2024-05-08T20:46:38.354Z","4.26.4":"2024-05-10T14:13:12.967Z","4.26.5":"2024-05-13T18:04:02.208Z","4.26.6":"2024-06-12T13:03:24.405Z","4.27.0":"2024-06-22T17:50:00.153Z","4.31.0":"2024-08-23T21:26:34.939Z","4.31.1":"2024-08-26T07:45:37.105Z","4.31.2":"2024-08-28T16:24:26.861Z","4.31.3":"2024-08-30T08:23:51.268Z","4.31.4":"2024-10-24T14:13:14.902Z","4.31.5":"2024-10-25T10:29:25.415Z","4.31.6":"2024-10-28T05:30:13.844Z","4.32.0":"2024-11-10T07:40:48.884Z","4.32.1":"2024-11-23T13:12:55.643Z","4.32.2":"2024-12-07T16:09:08.844Z","4.33.0":"2024-12-21T19:19:06.390Z","4.33.1":"2025-01-10T18:57:52.330Z","4.33.2":"2025-01-26T10:55:08.505Z","4.34.0":"2025-04-09T17:17:19.471Z","4.35.0":"2025-04-23T13:42:39.623Z","4.35.1":"2025-05-08T10:26:36.174Z","4.35.2":"2025-07-12T13:12:50.841Z","4.35.3":"2025-07-21T17:05:30.497Z","4.35.4":"2025-08-28T09:47:28.393Z","4.35.5":"2025-11-02T07:22:34.649Z","4.35.6":"2025-11-15T16:37:35.285Z","4.36.0":"2026-01-17T19:13:01.031Z"},"readmeFilename":"README.md","homepage":"https://github.com/yairEO/tagify"}