{"_id":"nestable2","_rev":"15-80224dfeaaed63ef0bd1961f6487f993","name":"nestable2","time":{"modified":"2022-06-21T00:35:21.925Z","created":"2017-05-22T00:05:12.017Z","1.2.4":"2017-05-22T00:05:12.017Z","1.2.3":"2017-05-22T00:18:19.164Z","1.2.5":"2017-05-23T22:30:28.908Z","1.2.6":"2017-05-28T02:01:31.788Z","1.2.7":"2017-05-28T20:41:30.681Z","1.2.8":"2017-06-19T18:23:09.936Z","1.2.9":"2017-06-21T19:13:50.967Z","1.3.0":"2017-06-22T22:19:12.385Z","1.3.1":"2017-06-24T22:01:32.209Z","1.4.0":"2017-07-15T12:14:22.583Z","1.5.0":"2017-07-20T22:42:30.311Z","1.6.0":"2017-10-22T01:58:06.058Z"},"maintainers":[{"name":"pjona","email":"npmjs@pjona.net"}],"dist-tags":{"latest":"1.6.0"},"description":"Drag & drop hierarchical list with mouse and touch compatibility","readme":"Nestable2 - new pickup of Nestable!\n========\n\n### Drag & drop hierarchical list with mouse and touch compatibility (jQuery / Zepto plugin)\n\n[![Demo](https://img.shields.io/badge/demo-live-brightgreen.svg?style=flat-square)](https://ramonsmit.github.com/Nestable2/)\n[![Build Status](https://travis-ci.org/RamonSmit/Nestable2.svg)](https://travis-ci.org/RamonSmit/Nestable2)\n[![License](https://img.shields.io/npm/l/nestable2.svg?style=flat-square)](https://github.com/RamonSmit/Nestable2/blob/master/LICENSE)\n[![Release](https://img.shields.io/npm/v/nestable2.svg?style=flat-square)](https://www.npmjs.com/package/nestable2)\n\nNestable is an experimental example and IS under active development. If it suits your requirements feel free to expand upon it!\n\n## Install\n\nYou can install this package either with `npm` or with `bower`.\n\n### npm\n\n```shell\nnpm install --save nestable2\n```\n\nThen add a `<script>` to your `index.html`:\n\n```html\n<script src=\"/node_modules/nestable2/jquery.nestable.js\"></script>\n```\n\nOr `require('nestable2')` from your code.\n\n### bower\n\n```shell\nbower install --save nestable2\n```\n\n### CDN\n\nYou can also find us on [CDNJS](https://cdnjs.com/libraries/nestable2):\n\n```\n//cdnjs.cloudflare.com/ajax/libs/nestable2/1.6.0/jquery.nestable.min.css\n//cdnjs.cloudflare.com/ajax/libs/nestable2/1.6.0/jquery.nestable.min.js\n```\n\n## Usage\n\nWrite your nested HTML lists like so:\n```html\n<div class=\"dd\">\n    <ol class=\"dd-list\">\n        <li class=\"dd-item\" data-id=\"1\">\n            <div class=\"dd-handle\">Item 1</div>\n        </li>\n        <li class=\"dd-item\" data-id=\"2\">\n            <div class=\"dd-handle\">Item 2</div>\n        </li>\n        <li class=\"dd-item\" data-id=\"3\">\n            <div class=\"dd-handle\">Item 3</div>\n            <ol class=\"dd-list\">\n                <li class=\"dd-item\" data-id=\"4\">\n                    <div class=\"dd-handle\">Item 4</div>\n                </li>\n                <li class=\"dd-item\" data-id=\"5\" data-foo=\"bar\">\n                    <div class=\"dd-nodrag\">Item 5</div>\n                </li>\n            </ol>\n        </li>\n    </ol>\n</div>\n```\nThen activate with jQuery like so:\n```js\n$('.dd').nestable({ /* config options */ });\n```\n\n### Events\n`change`: For using an .on handler in jquery\n\nThe `callback` provided as an option is fired when elements are reordered or nested.\n```js\n$('.dd').nestable({\n    callback: function(l,e){\n        // l is the main container\n        // e is the element that was moved\n    }\n});\n```\n\n`onDragStart` callback provided as an option is fired when user starts to drag an element. Returning `false` from this callback will disable the dragging.\n```js\n$('.dd').nestable({\n    onDragStart: function(l,e){\n        // l is the main container\n        // e is the element that was moved\n    }\n});\n```\n\nThis callback can be used to manipulate element which is being dragged as well as whole list.\nFor example you can conditionally add `.dd-nochildren` to forbid dropping current element to\nsome other elements for instance based on `data-type` of current element and other elements:\n \n ```js\n $('.dd').nestable({\n     onDragStart: function (l, e) {\n         // get type of dragged element\n         var type = $(e).data('type');\n         \n         // based on type of dragged element add or remove no children class\n         switch (type) {\n             case 'type1':\n                 // element of type1 can be child of type2 and type3\n                 l.find(\"[data-type=type2]\").removeClass('dd-nochildren');\n                 l.find(\"[data-type=type3]\").removeClass('dd-nochildren');\n                 break;\n             case 'type2':\n                 // element of type2 cannot be child of type2 or type3\n                 l.find(\"[data-type=type2]\").addClass('dd-nochildren');\n                 l.find(\"[data-type=type3]\").addClass('dd-nochildren');\n                 break;\n             case 'type3':\n                 // element of type3 cannot be child of type2 but can be child of type3\n                 l.find(\"[data-type=type2]\").addClass('dd-nochildren');\n                 l.find(\"[data-type=type3]\").removeClass('dd-nochildren');\n                 break;\n             default:\n                 console.error(\"Invalid type\");\n         }\n     }\n });\n ```\n`beforeDragStop` callback provided as an option is fired when user drop an element and before 'callback' method fired. Returning false from this callback will disable the dropping and restore element at start position.\n\n```js\n$('.dd').nestable({\n    beforeDragStop: function(l,e, p){\n        // l is the main container\n        // e is the element that was moved\n        // p is the place where element was moved.\n    }\n});\n```\n\n### Methods\n\n`serialize`:\nYou can get a serialised object with all `data-*` attributes for each item.\n```js\n$('.dd').nestable('serialize');\n```\nThe serialised JSON for the example above would be:\n```json\n[{\"id\":1},{\"id\":2},{\"id\":3,\"children\":[{\"id\":4},{\"id\":5,\"foo\":\"bar\"}]}]\n```\n\n`toArray`:\n```js\n$('.dd').nestable('toArray');\n```\nBuilds an array where each element looks like:\n```js\n{\n    'depth': depth,\n    'id': id,\n    'left': left,\n    'parent_id': parentId || null,\n    'right': right\n}\n```\n\nYou can get a hierarchical nested set model like below.\n```js\n$('.dd').nestable('asNestedSet');\n```\nThe output will be like below:\n```js\n[{\"id\":1,\"parent_id\":\"\",\"depth\":0,\"lft\":1,\"rgt\":2},{\"id\":2,\"parent_id\":\"\",\"depth\":0,\"lft\":3,\"rgt\":4},{\"id\":3,\"parent_id\":\"\",\"depth\":0,\"lft\":5,\"rgt\":10},{\"id\":4,\"parent_id\":3,\"depth\":1,\"lft\":6,\"rgt\":7},{\"id\":5,\"parent_id\":3,\"depth\":1,\"lft\":8,\"rgt\":9}]\n```\n\n`add`:\nYou can add any item by passing an object. New item will be appended to the root tree.\n```js\n$('.dd').nestable('add', {\"id\":1,\"children\":[{\"id\":4}]});\n```\nOptionally you can set 'parent_id' property on your object and control in which place in tree your item will be added.\n```js\n$('.dd').nestable('add', {\"id\":1,\"parent_id\":2,\"children\":[{\"id\":4}]});\n```\n\n`replace`:\nYou can replace existing item in tree by passing an object with 'id' property.\n```js\n$('.dd').nestable('replace', {\"id\":1,\"foo\":\"bar\"});\n```\nYou need to remember that if you're replacing item with children's you need to pass this children's in object as well.\n```js\n$('.dd').nestable('replace', {\"id\":1,\"children\":[{\"id\":4}]});\n```\n\n`remove`:\nYou can remove existing item by passing 'id' of this element. To animate item removing check `effect` config option. This will delete the item with all his children.\n```js\n$('.dd').nestable('remove', 1);\n```\nThis will invoke callback function after deleting the item with data-id '1'.\n```js\n$('.dd').nestable('remove', 1, function(){\n    console.log('Item deleted');\n});\n```\n\n`removeAll`:\nRemoves all items from the list. To animate items removing check `effect` config option. You can also use callback function to do something after removing all items.\n```js\n$('.dd').nestable('removeAll', function(){\n    console.log('All items deleted');\n});\n```\n\n`destroy`:\nYou can deactivate the plugin by running\n```js\n$('.dd').nestable('destroy');\n```\n### Autoscroll while dragging\nAutoscrolls the container element while dragging if you drag the element over the offsets defined in `scrollTriggers` config option.\n\n```js\n$('.dd').nestable({ scroll: true });\n```\n\nTo use this feature you need to have `jQuery >= 1.9` and `scrollParent()` method.\nYou can be find this method in `jQuery UI` or if you don't want to have `jQuery UI` as a dependency you can use [this repository](https://github.com/slindberg/jquery-scrollparent).\n\n\nYou can also control the scroll sensitivity and speed, check `scrollSensitivity` and `scrollSpeed` options.\n\n### On the fly nestable generation\n\nYou can passed serialized JSON as an option if you like to dynamically generate a Nestable list:\n```html\n<div class=\"dd\" id=\"nestable-json\"></div>\n\n<script>\nvar json = '[{\"id\":1},{\"id\":2},{\"id\":3,\"children\":[{\"id\":4},{\"id\":5,\"foo\":\"bar\"}]}]';\nvar options = {'json': json}\n$('#nestable-json').nestable(options);\n</script>\n```\nNOTE: serialized JSON has been expanded so that an optional \"content\" property can be passed which allows for arbitrary custom content (including HTML) to be placed in the Nestable item\n\nOr do it yourself the old-fashioned way:\n```html\n<div class=\"dd\" id=\"nestable3\">\n    <ol class='dd-list dd3-list'>\n        <div id=\"dd-empty-placeholder\"></div>\n    </ol>\n</div>\n\n<script>\n$(document).ready(function(){\n    var obj = '[{\"id\":1},{\"id\":2},{\"id\":3,\"children\":[{\"id\":4},{\"id\":5}]}]';\n    var output = '';\n    function buildItem(item) {\n\n        var html = \"<li class='dd-item' data-id='\" + item.id + \"'>\";\n        html += \"<div class='dd-handle'>\" + item.id + \"</div>\";\n\n        if (item.children) {\n\n            html += \"<ol class='dd-list'>\";\n            $.each(item.children, function (index, sub) {\n                html += buildItem(sub);\n            });\n            html += \"</ol>\";\n\n        }\n\n        html += \"</li>\";\n\n        return html;\n    }\n\n    $.each(JSON.parse(obj), function (index, item) {\n\n        output += buildItem(item);\n\n    });\n\n    $('#dd-empty-placeholder').html(output);\n    $('#nestable3').nestable();\n});\n</script>\n```\n\n### Configuration\n\nYou can change the follow options:\n\n* `maxDepth` number of levels an item can be nested (default `5`)\n* `group` group ID to allow dragging between lists (default `0`)\n* `callback` callback function when an element has been changed (default `null`)\n* `scroll` enable or disable the scrolling behaviour (default: `false`)\n* `scrollSensitivity` mouse movement needed to trigger the scroll (default: `1`)\n* `scrollSpeed` speed of the scroll (default: `5`)\n* `scrollTriggers` distance from the border where scrolling become active (default: `{ top: 40, left: 40, right: -40, bottom: -40 }`)\n* `effect` removing items animation effect (default: `{ animation: 'none', time: 'slow'}`). To fadeout elements set 'animation' value to 'fade', during initialization the plugin.\n\nThese advanced config options are also available:\n\n* `contentCallback` The callback for customizing content (default `function(item) {return item.content || '' ? item.content : item.id;}`)\n* `listNodeName` The HTML element to create for lists (default `'ol'`)\n* `itemNodeName` The HTML element to create for list items (default `'li'`)\n* `rootClass` The class of the root element `.nestable()` was used on (default `'dd'`)\n* `listClass` The class of all list elements (default `'dd-list'`)\n* `itemClass` The class of all list item elements (default `'dd-item'`)\n* `dragClass` The class applied to the list element that is being dragged (default `'dd-dragel'`)\n* `noDragClass` The class applied to an element to prevent dragging (default `'dd-nodrag'`)\n* `handleClass` The class of the content element inside each list item (default `'dd-handle'`)\n* `collapsedClass` The class applied to lists that have been collapsed (default `'dd-collapsed'`)\n* `noChildrenClass` The class applied to items that cannot have children (default `'dd-nochildren'`)\n* `placeClass` The class of the placeholder element (default `'dd-placeholder'`)\n* `emptyClass` The class used for empty list placeholder elements (default `'dd-empty'`)\n* `expandBtnHTML` The HTML text used to generate a list item expand button (default `'<button data-action=\"expand\">Expand></button>'`)\n* `collapseBtnHTML` The HTML text used to generate a list item collapse button (default `'<button data-action=\"collapse\">Collapse</button>'`)\n* `includeContent` Enable or disable the content in output (default `false`)\n* `listRenderer` The callback for customizing final list output (default `function(children, options) { ... }` - see defaults in code)\n* `itemRenderer` The callback for customizing final item output (default `function(item_attrs, content, children, options) { ... }` - see defaults in code)\n* `json` JSON string used to dynamically generate a Nestable list. This is the same format as the `serialize()` output\n\n**Inspect the [Nestable2 Demo](https://ramonsmit.github.io/Nestable2/) for guidance.**\n\n## Change Log\n\n### 21th October 2017\n* [klgd] Fixed conflict when project using also jQuery 2.*\n* [RomanBurunkov] Moved effect and time parameter in `remove` method to config option. This changes break backward compatibility with version 1.5\n* [RomanBurunkov] Added callback in methods `remove` and `removeAll` as a parameter\n* [RomanKhomyshynets] Fixed `add` function with non-leaf parent_id, fixed [#84](https://github.com/RamonSmit/Nestable2/issues/84)\n\n### 9th August 2017\n* [pjona] Added support for string (GUID) as a data id\n\n### 21th July 2017\n* [spathon] Append the .dd-empty div if the list don't have any items on init, fixed [#52](https://github.com/RamonSmit/Nestable2/issues/52)\n* [pjona] Fixed problem on Chrome with touch screen and mouse, fixed [#28](https://github.com/RamonSmit/Nestable2/issues/28) and[#73](https://github.com/RamonSmit/Nestable2/issues/73)\n\n### 15th July 2017\n* [RomanBurunkov] Added fadeOut support to `remove` method\n* [pjona] Fixed `replace` method (added collapse/expand buttons when item has children), see [#69](https://github.com/RamonSmit/Nestable2/issues/69)\n* [uniring] Added autoscroll while dragging, see [#71](https://github.com/RamonSmit/Nestable2/issues/71)\n\n### 2nd July 2017\n* [pjona] Added CDN support\n* [pjona] Removed unneeded directories in `dist/`\n\n### 25th June 2017\n* [pjona] Fixed `add` method when using parent_id, see [#66](https://github.com/RamonSmit/Nestable2/issues/66)\n\n### 22th June 2017\n* [pjona] Added Travis CI builds after each commit and pull request\n* [pjona] Added `test` task in gulp with eslint validation\n* [pjona] Added minified version of JS and CSS\n* [pjona] Changed project name to `nestable2`\n* [pjona] Fixed `remove` method when removing last item from the list\n\n### 16th June 2017\n\n* [imliam] Added support to return `false` from the `onDragStart` event to disable the drag event\n\n### 28th May 2017\n\n* [pjona] Function `add` support `parent_id` property\n* [pjona] Added `replace` function\n* [pjona] Added `remove` function\n\n### 22th May 2017\n\n* [pjona] Added npm installation\n* [pjona] Added `add` function\n\n### 10th April 2017\n\n* [timalennon] Added functions: `toHierarchy` and `toArray`\n\n### 17th November 2015\n\n* [oimken] Added `destroy` function\n\n### 2nd November 2015\n\n* [ivanbarlog] Added `onDragStart` event fired when user starts to drag an element\n\n### 21th April 2015\n\n* [ozdemirburak] Added `asNestedSet` function\n* [ozdemirburak] Added bower installation\n\n### 6th October 2014\n\n* [zemistr] Created listRenderer and itemRenderer. Refactored build from JSON.\n* [zemistr] Added support for adding classes via input data. (```[{\"id\": 1, \"content\": \"First item\", \"classes\": [\"dd-nochildren\", \"dd-nodrag\", ...] }, ... ]```)\n\n### 3rd October 2014\n\n* [zemistr] Added support for additional data parameters.\n* [zemistr] Added callback for customizing content.\n* [zemistr] Added parameter \"includeContent\" for including / excluding content from the output data.\n* [zemistr] Added fix for input data. (JSON string / Javascript object)\n\n### 7th April 2014\n\n* New pickup of repo for developement.\n\n### 14th March 2013\n\n* [tchapi] Merge Craig Sansam' branch [https://github.com/craigsansam/Nestable/](https://github.com/craigsansam/Nestable/) - Add the noChildrenClass option\n\n### 13th March 2013\n\n* [tchapi] Replace previous `change` behaviour with a callback\n\n### 12th February 2013\n\n* Merge fix from [jails] : Fix change event triggered twice.\n\n### 3rd December 2012\n\n* [dbushell] add no-drag class for handle contents\n* [dbushell] use `el.closest` instead of `el.parents`\n* [dbushell] fix scroll offset on document.elementFromPoint()\n\n### 15th October 2012\n\n* Merge for Zepto.js support\n* Merge fix for remove/detach items\n\n### 27th June 2012\n\n* Added `maxDepth` option (default to 5)\n* Added empty placeholder\n* Updated CSS class structure with options for `listClass` and `itemClass`.\n* Fixed to allow drag and drop between multiple Nestable instances (off by default).\n* Added `group` option to enabled the above.\n\n* * *\n\nOriginal Author: David Bushell [http://dbushell.com](http://dbushell.com/) [@dbushell](http://twitter.com/dbushell/)\n\nNew Author     : Ramon Smit    [http://ramonsmit.nl](http://ramonsmit.nl) [@ramonsmit94](https://twitter.com/Ram0nSm1t/)\n\nContributors :\n\n* Cyril [http://tchap.me](http://tchap.me), Craig Sansam\n* Zemistr [http://zemistr.eu](http://zemistr.eu), Martin Zeman\n* And alot more. \n\nCopyright © 2012 David Bushell / © Ramon Smit 2014/2017 | BSD & MIT license\n","versions":{"1.2.3":{"name":"nestable2","version":"1.2.3","description":"Drag & drop hierarchical list with mouse and touch compatibility","main":"jquery.nestable.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git://github.com/RamonSmit/Nestable.git"},"keywords":["jquery","tree","list","sortable","nestable","drag","drop"],"author":{"name":"David Bushell","email":"hi@dbushell.com","url":"https://github.com/dbushell"},"contributors":[{"name":"Ramon Smit","email":"ramon@daltcore.com"},{"name":"Martin Zeman","email":"me@zemistr.eu"}],"license":"MIT","bugs":{"url":"https://github.com/RamonSmit/Nestable/issues"},"homepage":"https://github.com/RamonSmit/Nestable#readme","gitHead":"7359316395076d655c46943f88fa0ad6f1bdf27c","_id":"nestable2@1.2.3","_shasum":"fbf5c0ad64dfc6bf42de9da836c5370f2e1d99b0","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"pjona","email":"npmjs@pjona.net"},"dist":{"shasum":"fbf5c0ad64dfc6bf42de9da836c5370f2e1d99b0","tarball":"https://registry.npmjs.org/nestable2/-/nestable2-1.2.3.tgz","integrity":"sha512-tRP6t7hhdcxM6UMoko45cJSw8JIO+zTfaucTx21zlsPUK2+rYqclGKUoIYz1GRpIj+B7YffiBoIZ7PmfOGXzDQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICwbcneIFJidA2LmYODjgBKhw0KF58zbhBEZe80mSR4ZAiBvgF9dbC4Ytuv2a8JR0nMxEG87IMy+5PEOLqwx2/n3aA=="}]},"maintainers":[{"name":"pjona","email":"npmjs@pjona.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nestable2-1.2.3.tgz_1495412298118_0.025531651685014367"}},"1.2.5":{"name":"nestable2","version":"1.2.5","description":"Drag & drop hierarchical list with mouse and touch compatibility","main":"jquery.nestable.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git://github.com/RamonSmit/Nestable.git"},"keywords":["jquery","tree","list","sortable","nestable","drag","drop"],"author":{"name":"David Bushell","email":"hi@dbushell.com","url":"https://github.com/dbushell"},"contributors":[{"name":"Ramon Smit","email":"ramon@daltcore.com"},{"name":"Martin Zeman","email":"me@zemistr.eu"}],"dependencies":{"jquery":"^1.7.2"},"license":"MIT","bugs":{"url":"https://github.com/RamonSmit/Nestable/issues"},"homepage":"https://github.com/RamonSmit/Nestable#readme","gitHead":"8371e0038c9410e9e0dd635f8052a5b70efcb143","_id":"nestable2@1.2.5","_shasum":"f5a1c97c147ef58fc3a0980bc4ea838f30e84670","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"pjona","email":"npmjs@pjona.net"},"dist":{"shasum":"f5a1c97c147ef58fc3a0980bc4ea838f30e84670","tarball":"https://registry.npmjs.org/nestable2/-/nestable2-1.2.5.tgz","integrity":"sha512-5bQLgUBYb2iQ04Ny43gfcZeKScmI2YD2Jq8LKMB66HSBGGo7R2K67vA8wlAMcL9UUx9+E9rCEBZLdV8VlH4WXA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDQDibdMnA37s5mBT4ZsFd77bwk+MNokTak42H46n0A2AIhAPQMQ6Y7tt+vbdlCw12iJH0QIcXZVueSJylFXehK6fHH"}]},"maintainers":[{"name":"pjona","email":"npmjs@pjona.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nestable2-1.2.5.tgz_1495578627961_0.6229375055991113"}},"1.2.6":{"name":"nestable2","version":"1.2.6","description":"Drag & drop hierarchical list with mouse and touch compatibility","main":"jquery.nestable.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git://github.com/RamonSmit/Nestable.git"},"keywords":["jquery","tree","list","sortable","nestable","drag","drop"],"author":{"name":"David Bushell","email":"hi@dbushell.com","url":"https://github.com/dbushell"},"contributors":[{"name":"Ramon Smit","email":"ramon@daltcore.com"},{"name":"Martin Zeman","email":"me@zemistr.eu"}],"dependencies":{"jquery":"^1.7.2"},"license":"MIT","bugs":{"url":"https://github.com/RamonSmit/Nestable/issues"},"homepage":"https://github.com/RamonSmit/Nestable#readme","gitHead":"22e1c7e85511cdd98fe377596ea23f536988a1d3","_id":"nestable2@1.2.6","_shasum":"08785c90e2d0927c408675ee6e0023e5965d451e","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"pjona","email":"npmjs@pjona.net"},"dist":{"shasum":"08785c90e2d0927c408675ee6e0023e5965d451e","tarball":"https://registry.npmjs.org/nestable2/-/nestable2-1.2.6.tgz","integrity":"sha512-00Jyo/Uv3tVi0gGh+DHt7+c8q/uv5mvOLe9zeX7gD1ZZMWc/hKDwymNpkjx4+4KCCpwIWv2RdLJkFmtO56++2A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDNrEmoqeTlBpyZsqI894kfwu/D55O0LEsHn0Bkv6TUDAIhAOXJCoZB1YiOHCJfDkDg6cm3jgtD+Jj9Z2XU7m2U2B6y"}]},"maintainers":[{"name":"pjona","email":"npmjs@pjona.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nestable2-1.2.6.tgz_1495936890635_0.4409942477941513"}},"1.2.7":{"name":"nestable2","version":"1.2.7","description":"Drag & drop hierarchical list with mouse and touch compatibility","main":"jquery.nestable.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git://github.com/RamonSmit/Nestable.git"},"keywords":["jquery","tree","list","sortable","nestable","drag","drop"],"author":{"name":"David Bushell","email":"hi@dbushell.com","url":"https://github.com/dbushell"},"contributors":[{"name":"Ramon Smit","email":"ramon@daltcore.com"},{"name":"Martin Zeman","email":"me@zemistr.eu"}],"dependencies":{"jquery":"^1.7.2"},"license":"MIT","bugs":{"url":"https://github.com/RamonSmit/Nestable/issues"},"homepage":"https://github.com/RamonSmit/Nestable#readme","gitHead":"75a61d80f98f9c1151dd7bc30c950d9a04729a7c","_id":"nestable2@1.2.7","_shasum":"31e186333409959a82ee169b34fc825bd057834d","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"pjona","email":"npmjs@pjona.net"},"dist":{"shasum":"31e186333409959a82ee169b34fc825bd057834d","tarball":"https://registry.npmjs.org/nestable2/-/nestable2-1.2.7.tgz","integrity":"sha512-aFhuQFbDeCY9OGEQKlw9QzSHrDvCYFoxbCr477tltO77NSpVXHnIEVPTn7ivBR5pIP3v5DOCg9zi1xKYu24jZQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDXeeq4Zk4XdJPPUf/njjKH6dFUFOAqlYGwSR8Q60x80gIhAO26y4CTs5O/PLwwHEid2SjnJvYSc8L6DbwHfnnxCt9i"}]},"maintainers":[{"name":"pjona","email":"npmjs@pjona.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nestable2-1.2.7.tgz_1496004089514_0.38243644614703953"}},"1.2.8":{"name":"nestable2","version":"1.2.8","description":"Drag & drop hierarchical list with mouse and touch compatibility","main":"jquery.nestable.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git://github.com/RamonSmit/Nestable.git"},"keywords":["jquery","tree","list","sortable","nestable","drag","drop"],"author":{"name":"David Bushell","email":"hi@dbushell.com","url":"https://github.com/dbushell"},"contributors":[{"name":"Ramon Smit","email":"ramon@daltcore.com"},{"name":"Martin Zeman","email":"me@zemistr.eu"}],"dependencies":{"jquery":"^1.7.2"},"license":"MIT","bugs":{"url":"https://github.com/RamonSmit/Nestable/issues"},"homepage":"https://github.com/RamonSmit/Nestable#readme","gitHead":"046a8093d33a081b54de24ca3483be51867c7d26","_id":"nestable2@1.2.8","_npmVersion":"5.0.3","_nodeVersion":"6.11.0","_npmUser":{"name":"pjona","email":"npmjs@pjona.net"},"dist":{"integrity":"sha512-H3XAAw+HUwF4rcyLjuknMi1eaRlij8AzvTzz66MHBDItkLyzdd+lrb8gXJntiVr3YgfDovHydYe5KUayCIJiGA==","shasum":"556505052f7baf76439a26d2f57f58b15f443c31","tarball":"https://registry.npmjs.org/nestable2/-/nestable2-1.2.8.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHm0mCQeKKii8WnrJRGCrWgFVKqXomyU47WcyP2wxMdaAiBjaAdnoZObctv6UupAOtXjYJw49e0MC2sxjqTi+A7TFQ=="}]},"maintainers":[{"name":"pjona","email":"npmjs@pjona.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nestable2-1.2.8.tgz_1497896588776_0.34999065287411213"}},"1.2.9":{"name":"nestable2","version":"1.2.9","description":"Drag & drop hierarchical list with mouse and touch compatibility","main":"jquery.nestable.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git://github.com/RamonSmit/Nestable.git"},"keywords":["jquery","tree","list","sortable","nestable","drag","drop"],"author":{"name":"David Bushell","email":"hi@dbushell.com","url":"https://github.com/dbushell"},"contributors":[{"name":"Ramon Smit","email":"ramon@daltcore.com"},{"name":"Martin Zeman","email":"me@zemistr.eu"}],"dependencies":{"jquery":"^1.7.2"},"license":"MIT","bugs":{"url":"https://github.com/RamonSmit/Nestable/issues"},"homepage":"https://github.com/RamonSmit/Nestable#readme","gitHead":"3e2a11d23ff6aea9f7ee2d54ea353dee5f767052","_id":"nestable2@1.2.9","_npmVersion":"5.0.3","_nodeVersion":"6.11.0","_npmUser":{"name":"pjona","email":"npmjs@pjona.net"},"dist":{"integrity":"sha512-2sPKj1RdPSFUTVcpwoH/pFJuJIg8N6JFvNwsHM4HuWbzuTv3xfeb7etwmVLrWFWl7pptu31M04H2hEOD6Irz3g==","shasum":"f433efd8af79cf846fc1893cdcded10a888386e7","tarball":"https://registry.npmjs.org/nestable2/-/nestable2-1.2.9.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC6jnDs9AnBYyrqiR3Fg1LZx4Ffn38q8DLjzlDZjjbgUgIgF6k4XD+usc5FWLuP8G+hjXlWGfIAxioIKUhkY9JQk/g="}]},"maintainers":[{"name":"pjona","email":"npmjs@pjona.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nestable2-1.2.9.tgz_1498072429930_0.448560350574553"}},"1.3.0":{"name":"nestable2","version":"1.3.0","description":"Drag & drop hierarchical list with mouse and touch compatibility","main":"jquery.nestable.js","scripts":{"test":"gulp test"},"repository":{"type":"git","url":"git://github.com/RamonSmit/Nestable2.git"},"keywords":["jquery","tree","list","sortable","nestable","nestable2","drag","drop"],"author":{"name":"David Bushell","email":"hi@dbushell.com","url":"https://github.com/dbushell"},"contributors":[{"name":"Ramon Smit","email":"ramon@daltcore.com"},{"name":"Martin Zeman","email":"me@zemistr.eu"},{"name":"Marek Skiba","email":"skibamarek@gmail.com"}],"dependencies":{"jquery":"^1.7.2"},"devDependencies":{"gulp":"^3.9.1","gulp-clean-css":"^3.4.2","gulp-eslint":"^4.0.0","gulp-uglify":"^3.0.0"},"license":"MIT","bugs":{"url":"https://github.com/RamonSmit/Nestable2/issues"},"homepage":"https://github.com/RamonSmit/Nestable2#readme","gitHead":"ce63329b6d285437e63c5d6fa29163418f81d330","_id":"nestable2@1.3.0","_npmVersion":"5.0.3","_nodeVersion":"6.11.0","_npmUser":{"name":"pjona","email":"npmjs@pjona.net"},"dist":{"integrity":"sha512-zzvcP1Hh4ksb+WWxNMqPIdcgVlx6E88GQlFNrVVLlmv9zatM0ig4wGFAafyHXH0er01XAxWT3ktPOFQcBZz9bw==","shasum":"a28d77d7e63bdd37edb88d250fd00f48fdded9ed","tarball":"https://registry.npmjs.org/nestable2/-/nestable2-1.3.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDheDN7VxTipVcHAXCIJ4C3uydJbFKxn9F8Tuf8RVlJugIgc5FfGgrHiQmM1uS50m0AohsaiEy0gGe9dRMFBFAYkB4="}]},"maintainers":[{"name":"pjona","email":"npmjs@pjona.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nestable2-1.3.0.tgz_1498169951190_0.2589009979274124"}},"1.3.1":{"name":"nestable2","version":"1.3.1","description":"Drag & drop hierarchical list with mouse and touch compatibility","main":"jquery.nestable.js","scripts":{"test":"gulp test"},"repository":{"type":"git","url":"git://github.com/RamonSmit/Nestable2.git"},"keywords":["jquery","tree","list","sortable","nestable","nestable2","drag","drop"],"author":{"name":"David Bushell","email":"hi@dbushell.com","url":"https://github.com/dbushell"},"contributors":[{"name":"Ramon Smit","email":"ramon@daltcore.com"},{"name":"Martin Zeman","email":"me@zemistr.eu"},{"name":"Marek Skiba","email":"skibamarek@gmail.com"}],"dependencies":{"jquery":"^1.7.2"},"devDependencies":{"gulp":"^3.9.1","gulp-clean-css":"^3.4.2","gulp-eslint":"^4.0.0","gulp-uglify":"^3.0.0"},"license":"MIT","bugs":{"url":"https://github.com/RamonSmit/Nestable2/issues"},"homepage":"https://github.com/RamonSmit/Nestable2#readme","gitHead":"fc239e3c98d973691eff6b4d18ff5f1a461796fc","_id":"nestable2@1.3.1","_npmVersion":"5.0.3","_nodeVersion":"6.11.0","_npmUser":{"name":"pjona","email":"npmjs@pjona.net"},"dist":{"integrity":"sha512-AKEsxkxQtm75UNqjzZMN9l40hACJMZnhtxBPM53VlbGujPuNhkxVANdzwR/8MC+mxZvHpEjSNxcBi+hQVanuXQ==","shasum":"3956a98b006996cd1dc72081407aaa0c628b9e7a","tarball":"https://registry.npmjs.org/nestable2/-/nestable2-1.3.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHZly2oGROSMRC8rRtSwgT4+UPdJaBAhj4AIwWn8nU5FAiEA1HLTE0MaoZ6zeszWVPQN85h274XDOBEQlJ2P+Dnex6s="}]},"maintainers":[{"name":"pjona","email":"npmjs@pjona.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nestable2-1.3.1.tgz_1498341691107_0.5119572856929153"}},"1.4.0":{"name":"nestable2","version":"1.4.0","description":"Drag & drop hierarchical list with mouse and touch compatibility","main":"jquery.nestable.js","scripts":{"test":"gulp test"},"repository":{"type":"git","url":"git://github.com/RamonSmit/Nestable2.git"},"keywords":["jquery","tree","list","sortable","nestable","nestable2","drag","drop"],"author":{"name":"David Bushell","email":"hi@dbushell.com","url":"https://github.com/dbushell"},"contributors":[{"name":"Ramon Smit","email":"ramon@daltcore.com"},{"name":"Martin Zeman","email":"me@zemistr.eu"},{"name":"Marek Skiba","email":"skibamarek@gmail.com"}],"dependencies":{"jquery":"^1.7.2"},"devDependencies":{"gulp":"^3.9.1","gulp-clean-css":"^3.4.2","gulp-eslint":"^4.0.0","gulp-rename":"^1.2.2","gulp-uglify":"^3.0.0"},"license":"MIT","bugs":{"url":"https://github.com/RamonSmit/Nestable2/issues"},"homepage":"https://github.com/RamonSmit/Nestable2#readme","gitHead":"5ed13fc9295aee3ae59cce8a8479e18c767fcfaf","_id":"nestable2@1.4.0","_npmVersion":"5.0.4","_nodeVersion":"8.1.3","_npmUser":{"name":"pjona","email":"npmjs@pjona.net"},"dist":{"integrity":"sha512-Pz2KFgWUFiJZLdBbkSKBoyg4mvO3a/3Npn29aLHHpHKRR7IR+ZfnDfLhK1QxffSXaShytOAUpnJq3GP/LN1DwQ==","shasum":"a8a9b00b99b00ea9a17c410016b762b76ffb47a4","tarball":"https://registry.npmjs.org/nestable2/-/nestable2-1.4.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDG6TyzJztD5wKgd8bhetfVN62rHYKrZSOy9E9o0NyJNgIhAN3fvlV4bh6hNx04sgG9VWVAzGfhLTQH2QSOVLpJk9vq"}]},"maintainers":[{"name":"pjona","email":"npmjs@pjona.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nestable2-1.4.0.tgz_1500120861364_0.08767425152473152"}},"1.5.0":{"name":"nestable2","version":"1.5.0","description":"Drag & drop hierarchical list with mouse and touch compatibility","main":"jquery.nestable.js","scripts":{"test":"gulp test"},"repository":{"type":"git","url":"git://github.com/RamonSmit/Nestable2.git"},"keywords":["jquery","tree","list","sortable","nestable","nestable2","drag","drop"],"author":{"name":"David Bushell","email":"hi@dbushell.com","url":"https://github.com/dbushell"},"contributors":[{"name":"Ramon Smit","email":"ramon@daltcore.com"},{"name":"Martin Zeman","email":"me@zemistr.eu"},{"name":"Marek Skiba","email":"skibamarek@gmail.com"}],"dependencies":{"jquery":"^1.7.2"},"devDependencies":{"gulp":"^3.9.1","gulp-clean-css":"^3.4.2","gulp-eslint":"^4.0.0","gulp-rename":"^1.2.2","gulp-uglify":"^3.0.0"},"license":"MIT","bugs":{"url":"https://github.com/RamonSmit/Nestable2/issues"},"homepage":"https://github.com/RamonSmit/Nestable2#readme","gitHead":"0acdd26d318d3aded63a9fc3e6c64c91d18e1bcd","_id":"nestable2@1.5.0","_npmVersion":"5.3.0","_nodeVersion":"8.1.3","_npmUser":{"name":"pjona","email":"npmjs@pjona.net"},"dist":{"integrity":"sha512-NaEe7FfFb052VL9qhDikM7w9BFyfDmhQraUfM67mxx+M8GsJenI3kfRK+aomaamqOwA47XEjqd6DZUlAqKsLbw==","shasum":"e0904809c8d89714ce34ca2c99d6208b71460416","tarball":"https://registry.npmjs.org/nestable2/-/nestable2-1.5.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCr0Gz6m9AOIw0hiZRIPQFAQEAkoEtKVxoxo3eAZ5p7pgIhAMiwRK/Nk1gO9zXma7OQInTA1ljI/aExdnlNwJ4aAEbk"}]},"maintainers":[{"name":"pjona","email":"npmjs@pjona.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nestable2-1.5.0.tgz_1500590549195_0.025859001791104674"}},"1.6.0":{"name":"nestable2","version":"1.6.0","description":"Drag & drop hierarchical list with mouse and touch compatibility","main":"jquery.nestable.js","scripts":{"test":"gulp test"},"repository":{"type":"git","url":"git://github.com/RamonSmit/Nestable2.git"},"keywords":["jquery","tree","list","sortable","nestable","nestable2","drag","drop"],"author":{"name":"David Bushell","email":"hi@dbushell.com","url":"https://github.com/dbushell"},"contributors":[{"name":"Ramon Smit","email":"ramon@daltcore.com"},{"name":"Martin Zeman","email":"me@zemistr.eu"},{"name":"Marek Skiba","email":"skibamarek@gmail.com"}],"dependencies":{"jquery":">=1.7.2"},"devDependencies":{"gulp":"^3.9.1","gulp-clean-css":"^3.4.2","gulp-eslint":"^4.0.0","gulp-rename":"^1.2.2","gulp-uglify":"^3.0.0","gulp-sass":"^3.1.0"},"license":"MIT","bugs":{"url":"https://github.com/RamonSmit/Nestable2/issues"},"homepage":"https://github.com/RamonSmit/Nestable2#readme","gitHead":"6906da8e820a737a2edb59bb1a97e9c1f2b09758","_id":"nestable2@1.6.0","_npmVersion":"5.4.2","_nodeVersion":"8.7.0","_npmUser":{"name":"pjona","email":"npmjs@pjona.net"},"dist":{"integrity":"sha512-/jBy2FhAqik/yV1fYDqbP3OvGLb/wpjweg91UTzIREI+69hbqkKjJ9L+/FSBejYM0WMhvd2Q2p0+8XXetv0egA==","shasum":"83ffe2483cca1c63771ec0012693b5155bfdd115","tarball":"https://registry.npmjs.org/nestable2/-/nestable2-1.6.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCCLmmu/xtZhnDAdZjVjWK/SzhzSjcKq64ICdLitkZ7wwIgSqM2q5/Na92CNHzTkDMhSf6ZtGUfbKiIScz3TJvLl9o="}]},"maintainers":[{"name":"pjona","email":"npmjs@pjona.net"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nestable2-1.6.0.tgz_1508637484846_0.3718482838012278"}}},"homepage":"https://github.com/RamonSmit/Nestable2#readme","keywords":["jquery","tree","list","sortable","nestable","nestable2","drag","drop"],"repository":{"type":"git","url":"git://github.com/RamonSmit/Nestable2.git"},"contributors":[{"name":"Ramon Smit","email":"ramon@daltcore.com"},{"name":"Martin Zeman","email":"me@zemistr.eu"},{"name":"Marek Skiba","email":"skibamarek@gmail.com"}],"author":{"name":"David Bushell","email":"hi@dbushell.com","url":"https://github.com/dbushell"},"bugs":{"url":"https://github.com/RamonSmit/Nestable2/issues"},"license":"MIT","readmeFilename":"README.md"}