[
  {
    "path": ".gitignore",
    "content": ".DS_Store\n*.log\nnode_modules\n"
  },
  {
    "path": "LICENSE",
    "content": "This is free and unencumbered software released into the public domain.\n\nAnyone is free to copy, modify, publish, use, compile, sell, or\ndistribute this software, either in source code form or as a compiled\nbinary, for any purpose, commercial or non-commercial, and by any\nmeans.\n\nIn jurisdictions that recognize copyright laws, the author or authors\nof this software dedicate any and all copyright interest in the\nsoftware to the public domain. We make this dedication for the benefit\nof the public at large and to the detriment of our heirs and\nsuccessors. We intend this dedication to be an overt act of\nrelinquishment in perpetuity of all present and future rights to this\nsoftware under copyright law.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\nFor more information, please refer to <http://unlicense.org>\n"
  },
  {
    "path": "README.md",
    "content": "# Inclusive Menu Button\n\nA **menu button** module that implements the correct ARIA semantics and keyboard behavior.\n\n## Installation\n\n```\nnpm i inclusive-menu-button --save\n```\n\n## Expected markup\n\nIn the following example, three menu items are provided.\n\n```html\n<div data-inclusive-menu>\n <button data-inclusive-menu-opens=\"difficulty\">\n   Difficulty\n   <span aria-hidden=\"true\">&#x25be;</span>\n </button>\n <div id=\"difficulty\" data-inclusive-menu-from=\"left\">\n   <button>Easy</button>\n   <button>Medium</button>\n   <button>Incredibly Hard</button>\n </div>\n</div>\n```\n\n* The parent element must take `data-inclusive-menu`.\n* `data-inclusive-menu-opens` takes a value that must match the menu element's `id`. In this case, it is `difficulty`.\n* `data-inclusive-menu-from` defines from which side of the button the menu will grow. Any value but \"right\" will mean it grows from the left.\n* The menu items must be sibling buttons. The script adds the `menuitem` role (as well as the `menu` role to the parent menu element).\n\n### After initialization\n\nOnce you've initialized the menu button, this will be the resulting markup, including all of the necessary ARIA attribution:\n\n```html\n<div data-inclusive-menu>\n <button data-inclusive-menu-opens=\"difficulty\" aria-haspopup=\"true\" aria-expanded=\"false\">\n   Difficulty\n   <span aria-hidden=\"true\">&#x25be;</span>\n </button>\n <div id=\"difficulty\" data-inclusive-menu-from=\"left\" role=\"menu\" hidden>\n   <button role=\"menuitem\" tabindex=\"-1\">Easy</button>\n   <button role=\"menuitem\" tabindex=\"-1\">Medium</button>\n   <button role=\"menuitem\" tabindex=\"-1\">Incredibly Hard</button>\n </div>\n</div>\n```\n\n## CSS\n\nThe following functional styling is provided for the basic layout of an archetypal \"dropdown\" menu appearance. You can either override and add to these styles in the cascade or remove them altogether and start from scratch.\n\n```css\n[data-inclusive-menu] {\n  position: relative;\n  display: inline-block;\n}\n\n[data-inclusive-menu-opens],\n[data-inclusive-menu] [role^=\"menuitem\"] {\n  text-align: left;\n  border: 0;\n}\n\n[data-inclusive-menu] [role=\"menu\"] {\n  position: absolute;\n  left: 0;\n}\n\n[data-inclusive-menu] [data-inclusive-menu-from=\"right\"] {\n  left: auto;\n  right: 0;\n}\n\n[data-inclusive-menu] [role^=\"menuitem\"] {\n  display: block;\n  min-width: 100%;\n  white-space: nowrap;\n}\n\n[data-inclusive-menu] [role^=\"menuitem\"][aria-checked=\"true\"]::before {\n  content: '\\2713\\0020';\n}\n```\n\n## Initialization\n\nInitialize the menu button / menu like so:\n\n```js\n// get a menu button\nconst exampleButton = document.querySelector('[data-inclusive-menu-opens]')\n\n// Make it a menu button\nconst exampleMenuButton = new MenuButton(exampleButton)\n```\n\n### Checked items\n\nSometimes you'd like to persist the selected menu item, using a checked state. WAI-ARIA provides `menuitemradio` (allowing the checking of just one item) and `menuitemcheckbox` (allowing the checking of multiple items). Checked items are marked with `aria-checked=\"true\"`.\n\nYou can supply the constructor with a `checkable` value of 'none' (default), 'one', or 'many'. In the following example, 'one' is chosen, implementing `menuitemradio`. See the examples folder for working demonstrations.\n\n```js\n// Make it a menu button with menuitemradio buttons\nconst exampleMenuButton = new MenuButton(exampleButton, { checkable: 'one' })\n```\n\nIf you want to set default checked items, just do that in the HTML:\n\n```html\n<div id=\"difficulty\" data-inclusive-menu-from=\"left\">\n <button>Easy</button>\n <button aria-checked=\"true\">Medium</button>\n <button>Incredibly Hard</button>\n</div>\n```\n\nThe basic CSS (see above) prefixes the checked item with a check mark. This declaration can be removed safely and replaced with a different form of indication.\n\n### API methods\n\nYou can open and close the menu programmatically.\n\n```js\n// Open\nexampleMenuBtn.open()\n\n// Close\nexampleMenuBtn.close()\n\n// Toggle\nexampleMenuBtn.toggle()\n```\n\n### Event subscription\n\nYou can subscribe to emitted `open`, `close`, and `choose` events.\n\n#### `open` and `close` examples\n\n```js\nexampleMenuButton.on('open', function () {\n  // Do something when the menu gets open\n})\n\nexampleMenuButton.on('close', function () {\n  // Do something when the menu gets closed\n})\n```\n\n#### `choose` example\n\nThe `choose` event is passed the chosen item’s DOM node.\n\n```js\nexampleMenuButton.on('choose', function (choice) {\n  // Do something with `choice` DOM node\n})\n```\n\n### Unsubscribing\n\nThere is an `off` method included for terminating event listeners.\n\n```js\nexampleMenuButton.off('choose', exampleHandler)\n```\n"
  },
  {
    "path": "examples/basic.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <link rel=\"stylesheet\" href=\"../inclusive-menu-button.css\" />\n    <style>\n    /* basic page styles */\n    html {\n      font-size: 150%;\n      font-family: sans-serif;\n      padding: 1em;\n    }\n\n    * {\n      font-size: inherit;\n      font-family: inherit;\n    }\n\n    /* custom theming */\n    button {\n      padding: 0.25rem 1rem;\n      background: black;\n      color: white;\n    }\n\n    button:focus {\n      outline: none;\n      background-color: #3737c8;\n    }\n\n    [data-inclusive-menu] [role^=\"menuitem\"] {\n      margin-top: 3px;\n    }\n    </style>\n    <title>\n      Inclusive Menu Button | Basic Example\n    </title>\n  </head>\n  <body>\n    <div data-inclusive-menu>\n     <button data-inclusive-menu-opens=\"edit\">\n       Edit\n       <span aria-hidden=\"true\">&#x25be;</span>\n     </button>\n     <div id=\"edit\" data-inclusive-menu-from=\"left\">\n       <button>Undo</button>\n       <button>Redo</button>\n       <button>Cut</button>\n       <button>Copy</button>\n       <button>Paste</button>\n     </div>\n    </div>\n    <script src=\"../inclusive-menu-button.js\"></script>\n    <script>\n      // Instantiation\n      var exampleButton = document.querySelector('[data-inclusive-menu-opens]')\n      var exampleMenuButton = new MenuButton(exampleButton)\n\n      // Listen to choose event\n      exampleMenuButton.on('choose', function(choice) {\n        console.log('You chose \"' + choice.textContent + '\"')\n      })\n    </script>\n  </body>\n</html>\n"
  },
  {
    "path": "examples/disabled-items.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <link rel=\"stylesheet\" href=\"../inclusive-menu-button.css\" />\n    <style>\n    /* basic page styles */\n    html {\n      font-size: 150%;\n      font-family: sans-serif;\n      padding: 1em;\n    }\n\n    * {\n      font-size: inherit;\n      font-family: inherit;\n    }\n\n    /* custom theming */\n    button {\n      padding: 0.25rem 1rem;\n      background: black;\n      color: white;\n    }\n\n    button:disabled {\n      color: #999;\n      background: #333;\n    }\n\n    button:focus {\n      outline: none;\n      background-color: #3737c8;\n    }\n\n    [data-inclusive-menu] [role=\"menuitem\"] {\n      margin-top: 3px;\n    }\n    </style>\n    <title>\n      Inclusive Menu Button | Disable Items Example\n    </title>\n  </head>\n  <body>\n    <div data-inclusive-menu>\n     <button data-inclusive-menu-opens=\"difficulty\">\n       Difficulty\n       <span aria-hidden=\"true\">&#x25be;</span>\n     </button>\n     <div id=\"difficulty\" data-inclusive-menu-from=\"left\">\n       <button disabled>Easy</button>\n       <button>Medium</button>\n       <button disabled>Very Tricky</button>\n       <button>Incredibly Hard</button>\n       <button>Impossible</button>\n     </div>\n    </div>\n    <script src=\"../inclusive-menu-button.js\"></script>\n    <script>\n      // Instantiation\n      var exampleButton = document.querySelector('[data-inclusive-menu-opens]')\n      var exampleMenuButton = new MenuButton(exampleButton)\n\n      // Listen to choose event\n      exampleMenuButton.on('choose', function(choice) {\n        console.log('You chose \"' + choice.textContent + '\"')\n      })\n    </script>\n  </body>\n</html>\n"
  },
  {
    "path": "examples/menuitemcheckbox.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <link rel=\"stylesheet\" href=\"../inclusive-menu-button.css\" />\n    <style>\n    /* basic page styles */\n    html {\n      font-size: 150%;\n      font-family: sans-serif;\n      padding: 1em;\n    }\n\n    * {\n      font-size: inherit;\n      font-family: inherit;\n    }\n\n    /* custom theming */\n    button {\n      padding: 0.25rem 1rem;\n      background: black;\n      color: white;\n    }\n\n    button:focus {\n      outline: none;\n      background-color: #3737c8;\n    }\n\n    [data-inclusive-menu] [role^=\"menuitem\"] {\n      margin-top: 3px;\n    }\n    </style>\n    <title>\n      Inclusive Menu Button | menuitemcheckbox example\n    </title>\n  </head>\n  <body>\n    <div data-inclusive-menu>\n     <button data-inclusive-menu-opens=\"typography\">\n       Typography\n       <span aria-hidden=\"true\">&#x25be;</span>\n     </button>\n     <div id=\"typography\" data-inclusive-menu-from=\"left\">\n       <button>Ligatures</button>\n       <button>Drop caps</button>\n       <button>Hyphenation</button>\n     </div>\n    </div>\n    <script src=\"../inclusive-menu-button.js\"></script>\n    <script>\n      // Instantiation\n      var exampleButton = document.querySelector('[data-inclusive-menu-opens]')\n      var exampleMenuButton = new MenuButton(exampleButton, { checkable: 'many' })\n\n      // Listen to choose event\n      exampleMenuButton.on('choose', function (choice) {\n        console.log('You chose \"' + choice.textContent + '\"')\n      })\n    </script>\n  </body>\n</html>\n"
  },
  {
    "path": "examples/menuitemradio.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <link rel=\"stylesheet\" href=\"../inclusive-menu-button.css\" />\n    <style>\n    /* basic page styles */\n    html {\n      font-size: 150%;\n      font-family: sans-serif;\n      padding: 1em;\n    }\n\n    * {\n      font-size: inherit;\n      font-family: inherit;\n    }\n\n    /* custom theming */\n    button {\n      padding: 0.25rem 1rem;\n      background: black;\n      color: white;\n    }\n\n    button:focus {\n      outline: none;\n      background-color: #3737c8;\n    }\n\n    [data-inclusive-menu] [role^=\"menuitem\"] {\n      margin-top: 3px;\n    }\n    </style>\n    <title>\n      Inclusive Menu Button | menuitemradio example\n    </title>\n  </head>\n  <body>\n    <div data-inclusive-menu>\n     <button data-inclusive-menu-opens=\"difficulty\">\n       Difficulty\n       <span aria-hidden=\"true\">&#x25be;</span>\n     </button>\n     <div id=\"difficulty\" data-inclusive-menu-from=\"left\">\n       <button>Easy</button>\n       <button>Medium</button>\n       <button>Very Tricky</button>\n       <button>Incredibly Hard</button>\n       <button>Impossible</button>\n     </div>\n    </div>\n    <script src=\"../inclusive-menu-button.js\"></script>\n    <script>\n      // Instantiation\n      var exampleButton = document.querySelector('[data-inclusive-menu-opens]')\n      var exampleMenuButton = new MenuButton(exampleButton, { checkable: 'one' })\n\n      // Listen to choose event\n      exampleMenuButton.on('choose', function (choice) {\n        console.log('You chose \"' + choice.textContent + '\"')\n      })\n    </script>\n  </body>\n</html>\n"
  },
  {
    "path": "inclusive-menu-button.css",
    "content": "[data-inclusive-menu] {\n  position: relative;\n  display: inline-block;\n}\n\n[data-inclusive-menu-opens],\n[data-inclusive-menu] [role^=\"menuitem\"] {\n  text-align: left;\n  border: 0;\n}\n\n[data-inclusive-menu] [role=\"menu\"] {\n  position: absolute;\n  left: 0;\n}\n\n[data-inclusive-menu] [data-inclusive-menu-from=\"right\"] {\n  left: auto;\n  right: 0;\n}\n\n[data-inclusive-menu] [role^=\"menuitem\"] {\n  display: block;\n  min-width: 100%;\n  white-space: nowrap;\n}\n\n[data-inclusive-menu] [role^=\"menuitem\"][aria-checked=\"true\"]::before {\n  content: '\\2713\\0020';\n}\n"
  },
  {
    "path": "inclusive-menu-button.js",
    "content": "/* global define */\n\n(function (global) {\n  'use strict'\n\n  // Constructor\n  function MenuButton(button, options) {\n    options = options || {}\n\n    // The default settings\n    this.settings = {\n      checkable: 'none'\n    }\n\n    // Overwrite defaults where they are provided in options\n    for (var setting in options) {\n      if (options.hasOwnProperty(setting)) {\n        this.settings[setting] = options[setting]\n      }\n    }\n\n    // Save a reference to the element\n    this.button = button\n\n    // Add (initial) button semantics\n    this.button.setAttribute('aria-haspopup', true)\n    this.button.setAttribute('aria-expanded', false)\n\n    // Get the menu\n    this.menuId = this.button.getAttribute('data-inclusive-menu-opens')\n    this.menu = document.getElementById(this.menuId)\n\n    // If the menu doesn't exist\n    // exit with an error referencing the missing\n    // menu's id\n    if (!this.menu) {\n      throw new Error('Element `#' + this.menuId + '` not found.')\n    }\n\n    // Add menu semantics\n    this.menu.setAttribute('role', 'menu')\n\n    // Hide menu initially\n    this.menu.hidden = true\n\n    // Get the menu item buttons\n    this.menuItems = this.menu.querySelectorAll('button')\n\n    if (this.menuItems.length < 1) {\n      throw new Error('The #' + this.menuId + ' menu has no menu items')\n    }\n\n    this.firstItem = this.menuItems[0]\n    this.lastItem = this.menuItems[this.menuItems.length - 1]\n\n    var focusNext = function (currentItem, startItem) {\n      // Determine which item is the startItem (first or last)\n      var goingDown = startItem === this.firstItem\n\n      // helper function for getting next legitimate element\n      function move(elem) {\n        return (goingDown ? elem.nextElementSibling : elem.previousElementSibling) || startItem\n      }\n\n      // make first move\n      var nextItem = move(currentItem)\n\n      // if the menuitem is disabled move on\n      while (nextItem.disabled) {\n        nextItem = move(nextItem)\n      }\n\n      // focus the first one that's not disabled\n      nextItem.focus()\n    }.bind(this)\n\n    Array.prototype.forEach.call(this.menuItems, function (menuItem) {\n      // Disable menu button if all menu items are disabled\n      var active = Array.prototype.filter.call(this.menuItems, function (item) {\n        return !item.disabled\n      })\n      if (active.length < 1) {\n        this.button.disabled = true\n        return\n      }\n\n      // Add menu item semantics\n      if (this.settings.checkable === 'one') {\n        menuItem.setAttribute('role', 'menuitemradio')\n      } else if (this.settings.checkable === 'many') {\n        menuItem.setAttribute('role', 'menuitemcheckbox')\n      } else {\n        menuItem.setAttribute('role', 'menuitem')\n      }\n\n      // Prevent tab focus on menu items\n      menuItem.setAttribute('tabindex', '-1')\n\n      // Handle key presses for menuItem\n      menuItem.addEventListener('keydown', function (e) {\n        // Go to next/previous item if it exists\n        // or loop around\n\n        if (e.keyCode === 40) {\n          e.preventDefault()\n          focusNext(menuItem, this.firstItem)\n        }\n\n        if (e.keyCode === 38) {\n          e.preventDefault()\n          focusNext(menuItem, this.lastItem)\n        }\n\n        // Close on escape or tab\n        if (e.keyCode === 27 || e.keyCode === 9) {\n          this.toggle()\n        }\n\n        // If escape, refocus menu button\n        if (e.keyCode === 27) {\n          e.preventDefault()\n          this.button.focus()\n        }\n      }.bind(this))\n\n      menuItem.addEventListener('click', function (e) {\n        // pass menu item node to select method\n        this.choose(menuItem)\n\n        // close menu and focus menu button\n        this.close()\n        this.button.focus()\n      }.bind(this))\n    }.bind(this))\n\n    // Handle button click\n    this.button.addEventListener('click', this.toggle.bind(this))\n\n    // Also toggle on down arrow\n    this.button.addEventListener('keydown', function (e) {\n      if (e.keyCode === 40) {\n        if (this.menu.hidden) {\n          this.open()\n        } else {\n          this.menu.querySelector(':not([disabled])').focus()\n        }\n      }\n\n      // close menu on up arrow\n      if (e.keyCode === 38) {\n        this.close()\n      }\n    }.bind(this))\n\n    // initiate listeners object for public events\n    this._listeners = {}\n  }\n\n  // Open method\n  MenuButton.prototype.open = function () {\n    this.button.setAttribute('aria-expanded', true)\n    this.menu.hidden = false\n\n    if (this.settings.checkable === 'one') {\n      var checked = this.menu.querySelector('[aria-checked=\"true\"]')\n    }\n    // Check the checked item if using menuitemradio\n    if (checked) {\n      checked.focus()\n    } else {\n      this.menu.querySelector('[role^=\"menuitem\"]:not([disabled])').focus()\n    }\n\n    this.outsideClick = function (e) {\n      if (!this.menu.contains(e.target) && !this.button.contains(e.target)) {\n        this.close()\n        document.removeEventListener('click', this.outsideClick.bind(this))\n      }\n    }.bind(this)\n\n    document.addEventListener('click', this.outsideClick.bind(this))\n\n    // fire open event\n    this._fire('open')\n\n    return this\n  }\n\n  // Close method\n  MenuButton.prototype.close = function () {\n    this.button.setAttribute('aria-expanded', false)\n    this.menu.hidden = true\n\n    // fire open event\n    this._fire('close')\n\n    return this\n  }\n\n  // Toggle method\n  MenuButton.prototype.toggle = function () {\n    var expanded = this.button.getAttribute('aria-expanded') === 'true'\n    return expanded ? this.close() : this.open()\n  }\n\n  MenuButton.prototype.choose = function (choice) {\n    if (this.settings.checkable === 'one') {\n      // Remove aria-checked from whichever item it's on\n      Array.prototype.forEach.call(this.menuItems, function (menuItem) {\n        menuItem.removeAttribute('aria-checked');\n      })\n\n      // Set aria-checked=\"true\" on the chosen item\n      choice.setAttribute('aria-checked', 'true')\n    }\n\n    if (this.settings.checkable === 'many') {\n      // check or uncheck item\n      var checked = choice.getAttribute('aria-checked') === 'true' || false\n      choice.setAttribute('aria-checked', !checked)\n    }\n\n    // fire open event\n    this._fire('choose', choice)\n\n    return this\n  }\n\n  MenuButton.prototype._fire = function (type, data) {\n    var listeners = this._listeners[type] || []\n\n    listeners.forEach(function (listener) {\n      listener(data)\n    })\n  }\n\n  MenuButton.prototype.on = function (type, handler) {\n    if (typeof this._listeners[type] === 'undefined') {\n      this._listeners[type] = []\n    }\n\n    this._listeners[type].push(handler)\n\n    return this\n  }\n\n  MenuButton.prototype.off = function (type, handler) {\n    var index = this._listeners[type].indexOf(handler)\n\n    if (index > -1) {\n      this._listeners[type].splice(index, 1)\n    }\n\n    return this\n  }\n\n  // Export MenuButton\n  if (typeof module !== 'undefined' && typeof module.exports !== 'undefined') {\n    module.exports = MenuButton\n  } else if (typeof define === 'function' && define.amd) {\n    define('MenuButton', [], function () {\n      return MenuButton\n    })\n  } else if (typeof global === 'object') {\n    // attach to window\n    global.MenuButton = MenuButton\n  }\n}(this))\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"inclusive-menu-button\",\n  \"version\": \"0.1.4\",\n  \"description\": \"A menu button module that implements the correct ARIA semantics and keyboard behavior.\",\n  \"main\": \"inclusive-menu-button.js\",\n  \"scripts\": {\n    \"test\": \"echo \\\"Error: no test specified\\\" && exit 1\",\n    \"lint\": \"standard ./inclusive-menu-button.js\",\n    \"uglify\": \"uglifyjs inclusive-menu-button.js -o inclusive-menu-button.min.js\",\n    \"extract-version\": \"cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\\\",]//g' | tr -d '[[:space:]]'\",\n    \"add-version\": \"echo \\\"/*! inclusive-menu-button $(npm run extract-version --silent) — © Heydon Pickering */\\n$(cat inclusive-menu-button.min.js)\\\" > inclusive-menu-button.min.js\",\n    \"build\": \"npm run uglify && npm run add-version\",\n    \"precommit\": \"npm run build\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/Heydon/inclusive-menu-button.git\"\n  },\n  \"keywords\": [\n    \"menu\",\n    \"button\",\n    \"ARIA\",\n    \"accessibility\",\n    \"dropdown\"\n  ],\n  \"author\": \"Heydon Pickering\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Heydon/inclusive-menu-button/issues\"\n  },\n  \"homepage\": \"https://github.com/Heydon/inclusive-menu-button#readme\",\n  \"devDependencies\": {\n    \"husky\": \"^0.13.3\",\n    \"standard\": \"^10.0.2\",\n    \"uglify-js\": \"^2.8.22\"\n  }\n}"
  }
]