{"_id":"eslint-plugin-jsx-a11y","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"jessebeach","email":"jesse.r.beach@icloud.com"},{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"dist-tags":{"v5-backport":"5.1.1","latest":"6.10.2"},"author":{"name":"Ethan Cohen"},"description":"Static AST checker for accessibility rules on JSX elements.","readme":"<p align=\"center\">\n  <a href=\"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/actions\">\n    <img src=\"https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/jsx-eslint/eslint-plugin-jsx-a11y\"\n         alt=\"CI status\" />\n  </a>\n  <a href=\"https://npmjs.org/package/eslint-plugin-jsx-a11y\">\n    <img src=\"https://img.shields.io/npm/v/eslint-plugin-jsx-a11y.svg\"\n         alt=\"npm version\">\n  </a>\n  <a href=\"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/HEAD/LICENSE.md\">\n    <img src=\"https://img.shields.io/npm/l/eslint-plugin-jsx-a11y.svg\"\n         alt=\"license\">\n  </a>\n  <a href='https://coveralls.io/github/jsx-eslint/eslint-plugin-jsx-a11y?branch=master'>\n    <img src='https://coveralls.io/repos/github/jsx-eslint/eslint-plugin-jsx-a11y/badge.svg?branch=master' alt='Coverage Status' />\n  </a>\n  <a href='https://npmjs.org/package/eslint-plugin-jsx-a11y'>\n    <img src='https://img.shields.io/npm/dt/eslint-plugin-jsx-a11y.svg'\n    alt='Total npm downloads' />\n  </a>\n</p>\n\n<a href='https://tidelift.com/subscription/pkg/npm-eslint-plugin-jsx-a11y?utm_source=npm-eslint-plugin-jsx-a11y&utm_medium=referral&utm_campaign=readme'>Get professional support for eslint-plugin-jsx-a11y on Tidelift</a>\n\n# eslint-plugin-jsx-a11y\n\nStatic AST checker for accessibility rules on JSX elements.\n\n#### _Read this in [other languages](https://github.com/ari-os310/eslint-plugin-jsx-a11y/blob/HEAD/translations/Translations.md)._\n\n[Mexican Spanish\uD83C\uDDF2\uD83C\uDDFD](https://github.com/ari-os310/eslint-plugin-jsx-a11y/blob/HEAD/translations/README.mx.md)\n\n## Why?\n\nThis plugin does a static evaluation of the JSX to spot accessibility issues in React apps. Because it only catches errors in static code, use it in combination with [@axe-core/react](https://github.com/dequelabs/axe-core-npm/tree/develop/packages/react) to test the accessibility of the rendered DOM. Consider these tools just as one step of a larger a11y testing process and always test your apps with assistive technology.\n\n## Installation\n\n**If you are installing this plugin via `eslint-config-airbnb`, please follow [these instructions](https://github.com/airbnb/javascript/tree/HEAD/packages/eslint-config-airbnb#eslint-config-airbnb-1).**\n\nYou'll first need to install [ESLint](https://eslint.org/docs/latest/user-guide/getting-started):\n\n```sh\n# npm\nnpm install eslint --save-dev\n\n# yarn\nyarn add eslint --dev\n```\n\nNext, install `eslint-plugin-jsx-a11y`:\n\n```sh\n# npm\nnpm install eslint-plugin-jsx-a11y --save-dev\n\n# yarn\nyarn add eslint-plugin-jsx-a11y --dev\n```\n\n**Note:** If you installed ESLint globally (using the `-g` flag in npm, or the `global` prefix in yarn) then you must also install `eslint-plugin-jsx-a11y` globally.\n\n<a id=\"usage\"></a>\n## Usage - Legacy Config (`.eslintrc`)\n\nAdd `jsx-a11y` to the plugins section of your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix:\n\n```json\n{\n  \"plugins\": [\"jsx-a11y\"]\n}\n```\n\nThen configure the rules you want to use under the rules section.\n\n```json\n{\n  \"rules\": {\n    \"jsx-a11y/rule-name\": 2\n  }\n}\n```\n\nYou can also enable all the recommended or strict rules at once.\nAdd `plugin:jsx-a11y/recommended` or `plugin:jsx-a11y/strict` in `extends`:\n\n```json\n{\n  \"extends\": [\"plugin:jsx-a11y/recommended\"]\n}\n```\n\n### Configurations\n\n> As you are extending our configuration, you can omit `\"plugins\": [\"jsx-a11y\"]` from your `.eslintrc` configuration file.\n\n```json\n{\n  \"settings\": {\n    \"jsx-a11y\": {\n      \"polymorphicPropName\": \"as\",\n      \"components\": {\n        \"CityInput\": \"input\",\n        \"CustomButton\": \"button\",\n        \"MyButton\": \"button\",\n        \"RoundButton\": \"button\"\n      },\n      \"attributes\": {\n        \"for\": [\"htmlFor\", \"for\"]\n      }\n    }\n  }\n}\n```\n\n## Usage - Flat Config (`eslint.config.js`)\n\nThe default export of `eslint-plugin-jsx-a11y` is a plugin object.\n\n```js\nconst jsxA11y = require('eslint-plugin-jsx-a11y');\n\nmodule.exports = [\n  …\n  {\n    files: ['**/*.{js,mjs,cjs,jsx,mjsx,ts,tsx,mtsx}'],\n    plugins: {\n      'jsx-a11y': jsxA11y,\n    },\n    languageOptions: {\n      parserOptions: {\n        ecmaFeatures: {\n          jsx: true,\n        },\n      },\n    },\n    rules: {\n      // ... any rules you want\n      'jsx-a11y/alt-text': 'error',\n    },\n    // ... others are omitted for brevity\n  },\n  …\n];\n```\n\n### Shareable Configs\n\nThere are two shareable configs, provided by the plugin.\n\n- `flatConfigs.recommended`\n- `flatConfigs.strict`\n\n#### CJS\n\n```js\nconst jsxA11y = require('eslint-plugin-jsx-a11y');\n\nexport default [\n  jsxA11y.flatConfigs.recommended,\n  {\n    // Your additional configs and overrides\n  },\n];\n```\n\n#### ESM\n\n```js\nimport jsxA11y from 'eslint-plugin-jsx-a11y';\n\nexport default [\n  jsxA11y.flatConfigs.recommended,\n  {\n    // Your additional configs and overrides\n  },\n];\n```\n\n**Note**: Our shareable configs do NOT configure `files` or [`languageOptions.globals`](https://eslint.org/docs/latest/user-guide/configuring/configuration-files-new#configuration-objects).\nFor most of the cases, you probably want to configure some of these properties yourself.\n\n```js\nconst jsxA11y = require('eslint-plugin-jsx-a11y');\nconst globals = require('globals');\n\nmodule.exports = [\n  …\n  {\n    files: ['**/*.{js,mjs,cjs,jsx,mjsx,ts,tsx,mtsx}'],\n    ...jsxA11y.flatConfigs.recommended,\n    languageOptions: {\n      ...jsxA11y.flatConfigs.recommended.languageOptions,\n      globals: {\n        ...globals.serviceworker,\n        ...globals.browser,\n      },\n    },\n  },\n  …\n];\n```\n\n#### Component Mapping\n\nTo enable your custom components to be checked as DOM elements, you can set global settings in your configuration file by mapping each custom component name to a DOM element type.\n\n#### Attribute Mapping\n\nTo configure the JSX property to use for attribute checking, you can set global settings in your configuration file by mapping each DOM attribute to the JSX property you want to check.\nFor example, you may want to allow the `for` attribute in addition to the `htmlFor` attribute for checking label associations.\n\n#### Polymorphic Components\n\nYou can optionally use the `polymorphicPropName` setting to define the prop your code uses to create polymorphic components.\nThis setting will be used determine the element type in rules that require semantic context.\n\nFor example, if you set the `polymorphicPropName` setting to `as` then this element:\n\n`<Box as=\"h3\">Configurations </Box>`\n\nwill be evaluated as an `h3`. If no `polymorphicPropName` is set, then the component will be evaluated as `Box`.\n\nTo restrict polymorphic linting to specified components, additionally set `polymorphicAllowList` to an array of component names.\n\n⚠️ Polymorphic components can make code harder to maintain; please use this feature with caution.\n\n## Supported Rules\n\n<!-- begin auto-generated rules list -->\n\n\uD83D\uDCBC Configurations enabled in.\\\n\uD83D\uDEAB Configurations disabled in.\\\n☑️ Set in the `recommended` configuration.\\\n\uD83D\uDD12 Set in the `strict` configuration.\\\n❌ Deprecated.\n\n| Name                                                                                                         | Description                                                                                                                         | \uD83D\uDCBC    | \uD83D\uDEAB    | ❌  |\n| :----------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------- | :---- | :---- | :- |\n| [accessible-emoji](docs/rules/accessible-emoji.md)                                                           | Enforce emojis are wrapped in `<span>` and provide screen reader access.                                                            |       |       | ❌  |\n| [alt-text](docs/rules/alt-text.md)                                                                           | Enforce all elements that require alternative text have meaningful information to relay back to end user.                           | ☑️ \uD83D\uDD12 |       |    |\n| [anchor-ambiguous-text](docs/rules/anchor-ambiguous-text.md)                                                 | Enforce `<a>` text to not exactly match \"click here\", \"here\", \"link\", or \"a link\".                                                  |       | ☑️    |    |\n| [anchor-has-content](docs/rules/anchor-has-content.md)                                                       | Enforce all anchors to contain accessible content.                                                                                  | ☑️ \uD83D\uDD12 |       |    |\n| [anchor-is-valid](docs/rules/anchor-is-valid.md)                                                             | Enforce all anchors are valid, navigable elements.                                                                                  | ☑️ \uD83D\uDD12 |       |    |\n| [aria-activedescendant-has-tabindex](docs/rules/aria-activedescendant-has-tabindex.md)                       | Enforce elements with aria-activedescendant are tabbable.                                                                           | ☑️ \uD83D\uDD12 |       |    |\n| [aria-props](docs/rules/aria-props.md)                                                                       | Enforce all `aria-*` props are valid.                                                                                               | ☑️ \uD83D\uDD12 |       |    |\n| [aria-proptypes](docs/rules/aria-proptypes.md)                                                               | Enforce ARIA state and property values are valid.                                                                                   | ☑️ \uD83D\uDD12 |       |    |\n| [aria-role](docs/rules/aria-role.md)                                                                         | Enforce that elements with ARIA roles must use a valid, non-abstract ARIA role.                                                     | ☑️ \uD83D\uDD12 |       |    |\n| [aria-unsupported-elements](docs/rules/aria-unsupported-elements.md)                                         | Enforce that elements that do not support ARIA roles, states, and properties do not have those attributes.                          | ☑️ \uD83D\uDD12 |       |    |\n| [autocomplete-valid](docs/rules/autocomplete-valid.md)                                                       | Enforce that autocomplete attributes are used correctly.                                                                            | ☑️ \uD83D\uDD12 |       |    |\n| [click-events-have-key-events](docs/rules/click-events-have-key-events.md)                                   | Enforce a clickable non-interactive element has at least one keyboard event listener.                                               | ☑️ \uD83D\uDD12 |       |    |\n| [control-has-associated-label](docs/rules/control-has-associated-label.md)                                   | Enforce that a control (an interactive element) has a text label.                                                                   |       | ☑️ \uD83D\uDD12 |    |\n| [heading-has-content](docs/rules/heading-has-content.md)                                                     | Enforce heading (`h1`, `h2`, etc) elements contain accessible content.                                                              | ☑️ \uD83D\uDD12 |       |    |\n| [html-has-lang](docs/rules/html-has-lang.md)                                                                 | Enforce `<html>` element has `lang` prop.                                                                                           | ☑️ \uD83D\uDD12 |       |    |\n| [iframe-has-title](docs/rules/iframe-has-title.md)                                                           | Enforce iframe elements have a title attribute.                                                                                     | ☑️ \uD83D\uDD12 |       |    |\n| [img-redundant-alt](docs/rules/img-redundant-alt.md)                                                         | Enforce `<img>` alt prop does not contain the word \"image\", \"picture\", or \"photo\".                                                  | ☑️ \uD83D\uDD12 |       |    |\n| [interactive-supports-focus](docs/rules/interactive-supports-focus.md)                                       | Enforce that elements with interactive handlers like `onClick` must be focusable.                                                   | ☑️ \uD83D\uDD12 |       |    |\n| [label-has-associated-control](docs/rules/label-has-associated-control.md)                                   | Enforce that a `label` tag has a text label and an associated control.                                                              | ☑️ \uD83D\uDD12 |       |    |\n| [label-has-for](docs/rules/label-has-for.md)                                                                 | Enforce that `<label>` elements have the `htmlFor` prop.                                                                            |       | ☑️ \uD83D\uDD12 | ❌  |\n| [lang](docs/rules/lang.md)                                                                                   | Enforce lang attribute has a valid value.                                                                                           |       |       |    |\n| [media-has-caption](docs/rules/media-has-caption.md)                                                         | Enforces that `<audio>` and `<video>` elements must have a `<track>` for captions.                                                  | ☑️ \uD83D\uDD12 |       |    |\n| [mouse-events-have-key-events](docs/rules/mouse-events-have-key-events.md)                                   | Enforce that `onMouseOver`/`onMouseOut` are accompanied by `onFocus`/`onBlur` for keyboard-only users.                              | ☑️ \uD83D\uDD12 |       |    |\n| [no-access-key](docs/rules/no-access-key.md)                                                                 | Enforce that the `accessKey` prop is not used on any element to avoid complications with keyboard commands used by a screen reader. | ☑️ \uD83D\uDD12 |       |    |\n| [no-aria-hidden-on-focusable](docs/rules/no-aria-hidden-on-focusable.md)                                     | Disallow `aria-hidden=\"true\"` from being set on focusable elements.                                                                 |       |       |    |\n| [no-autofocus](docs/rules/no-autofocus.md)                                                                   | Enforce autoFocus prop is not used.                                                                                                 | ☑️ \uD83D\uDD12 |       |    |\n| [no-distracting-elements](docs/rules/no-distracting-elements.md)                                             | Enforce distracting elements are not used.                                                                                          | ☑️ \uD83D\uDD12 |       |    |\n| [no-interactive-element-to-noninteractive-role](docs/rules/no-interactive-element-to-noninteractive-role.md) | Interactive elements should not be assigned non-interactive roles.                                                                  | ☑️ \uD83D\uDD12 |       |    |\n| [no-noninteractive-element-interactions](docs/rules/no-noninteractive-element-interactions.md)               | Non-interactive elements should not be assigned mouse or keyboard event listeners.                                                  | ☑️ \uD83D\uDD12 |       |    |\n| [no-noninteractive-element-to-interactive-role](docs/rules/no-noninteractive-element-to-interactive-role.md) | Non-interactive elements should not be assigned interactive roles.                                                                  | ☑️ \uD83D\uDD12 |       |    |\n| [no-noninteractive-tabindex](docs/rules/no-noninteractive-tabindex.md)                                       | `tabIndex` should only be declared on interactive elements.                                                                         | ☑️ \uD83D\uDD12 |       |    |\n| [no-onchange](docs/rules/no-onchange.md)                                                                     | Enforce usage of `onBlur` over `onChange` on select menus for accessibility.                                                        |       |       | ❌  |\n| [no-redundant-roles](docs/rules/no-redundant-roles.md)                                                       | Enforce explicit role property is not the same as implicit/default role property on element.                                        | ☑️ \uD83D\uDD12 |       |    |\n| [no-static-element-interactions](docs/rules/no-static-element-interactions.md)                               | Enforce that non-interactive, visible elements (such as `<div>`) that have click handlers use the role attribute.                   | ☑️ \uD83D\uDD12 |       |    |\n| [prefer-tag-over-role](docs/rules/prefer-tag-over-role.md)                                                   | Enforces using semantic DOM elements over the ARIA `role` property.                                                                 |       |       |    |\n| [role-has-required-aria-props](docs/rules/role-has-required-aria-props.md)                                   | Enforce that elements with ARIA roles must have all required attributes for that role.                                              | ☑️ \uD83D\uDD12 |       |    |\n| [role-supports-aria-props](docs/rules/role-supports-aria-props.md)                                           | Enforce that elements with explicit or implicit roles defined contain only `aria-*` properties supported by that `role`.            | ☑️ \uD83D\uDD12 |       |    |\n| [scope](docs/rules/scope.md)                                                                                 | Enforce `scope` prop is only used on `<th>` elements.                                                                               | ☑️ \uD83D\uDD12 |       |    |\n| [tabindex-no-positive](docs/rules/tabindex-no-positive.md)                                                   | Enforce `tabIndex` value is not greater than zero.                                                                                  | ☑️ \uD83D\uDD12 |       |    |\n\n<!-- end auto-generated rules list -->\n\nThe following rules have extra options when in _recommended_ mode:\n\n### no-interactive-element-to-noninteractive-role\n\n```js\n'jsx-a11y/no-interactive-element-to-noninteractive-role': [\n  'error',\n  {\n    tr: ['none', 'presentation'],\n  },\n]\n```\n\n### no-noninteractive-element-interactions\n\n```js\n'jsx-a11y/no-noninteractive-element-interactions': [\n  'error',\n  {\n    handlers: [\n      'onClick',\n      'onMouseDown',\n      'onMouseUp',\n      'onKeyPress',\n      'onKeyDown',\n      'onKeyUp',\n    ],\n  },\n]\n```\n\n### no-noninteractive-element-to-interactive-role\n\n```js\n'jsx-a11y/no-noninteractive-element-to-interactive-role': [\n  'error',\n  {\n    ul: [\n      'listbox',\n      'menu',\n      'menubar',\n      'radiogroup',\n      'tablist',\n      'tree',\n      'treegrid',\n    ],\n    ol: [\n      'listbox',\n      'menu',\n      'menubar',\n      'radiogroup',\n      'tablist',\n      'tree',\n      'treegrid',\n    ],\n    li: ['menuitem', 'option', 'row', 'tab', 'treeitem'],\n    table: ['grid'],\n    td: ['gridcell'],\n  },\n]\n```\n\n### no-noninteractive-tabindex\n\n```js\n'jsx-a11y/no-noninteractive-tabindex': [\n  'error',\n  {\n    tags: [],\n    roles: ['tabpanel'],\n  },\n]\n```\n\n### no-static-element-interactions\n\n```js\n'jsx-a11y/no-noninteractive-element-interactions': [\n  'error',\n  {\n    handlers: [\n      'onClick',\n      'onMouseDown',\n      'onMouseUp',\n      'onKeyPress',\n      'onKeyDown',\n      'onKeyUp',\n    ],\n  },\n]\n```\n\n## Creating a new rule\n\nIf you are developing new rules for this project, you can use the `create-rule`\nscript to scaffold the new files.\n\n```sh\n./scripts/create-rule.js my-new-rule\n```\n\n## Some background on WAI-ARIA, the AX Tree and Browsers\n\n### Accessibility API\n\nAn operating system will provide an accessibility API that maps application state and content onto input/output controllers such as a screen reader, braille device, keyboard, etc.\n\nThese APIs were developed as computer interfaces shifted from buffers (which are text-based and inherently quite accessible) to graphical user interfaces (GUIs). The first attempts to make GUIs accessible involved raster image parsing to recognize characters, words, etc. This information was stored in a parallel buffer and made accessible to assistive technology (AT) devices.\n\nAs GUIs became more complex, the raster parsing approach became untenable. Accessibility APIs were developed to replace them. Check out [NSAccessibility (AXAPI)](https://developer.apple.com/library/mac/documentation/Cocoa/Reference/ApplicationKit/Protocols/NSAccessibility_Protocol/index.html) for an example. See [Core Accessibility API Mappings 1.1](https://www.w3.org/TR/core-aam-1.1/) for more details.\n\n### Browsers\n\nBrowsers support an Accessibility API on a per operating system basis. For instance, Firefox implements the MSAA accessibility API on Windows, but does not implement the AXAPI on OSX.\n\n### The Accessibility (AX) Tree & DOM\n\nFrom the [W3 Core Accessibility API Mappings 1.1](https://www.w3.org/TR/core-aam-1.1/#intro_treetypes)\n\n> The accessibility tree and the DOM tree are parallel structures. Roughly speaking the accessibility tree is a subset of the DOM tree. It includes the user interface objects of the user agent and the objects of the document. Accessible objects are created in the accessibility tree for every DOM element that should be exposed to assistive technology, either because it may fire an accessibility event or because it has a property, relationship or feature which needs to be exposed. Generally, if something can be trimmed out it will be, for reasons of performance and simplicity. For example, a `<span>` with just a style change and no semantics may not get its own accessible object, but the style change will be exposed by other means.\n\nBrowser vendors are beginning to expose the AX Tree through inspection tools. Chrome has an experiment available to enable their inspection tool.\n\nYou can also see a text-based version of the AX Tree in Chrome in the stable release version.\n\n#### Viewing the AX Tree in Chrome\n\n1. Navigate to `chrome://accessibility/` in Chrome.\n1. Toggle the `accessibility off` link for any tab that you want to inspect.\n1. A link labeled `show accessibility tree` will appear; click this link.\n1. Balk at the wall of text that gets displayed, but then regain your conviction.\n1. Use the browser's find command to locate strings and values in the wall of text.\n\n### Pulling it all together\n\nA browser constructs an AX Tree as a subset of the DOM. ARIA heavily informs the properties of this AX Tree. This AX Tree is exposed to the system level Accessibility API which mediates assistive technology agents.\n\nWe model ARIA in the [aria-query](https://github.com/a11yance/aria-query) project. We model AXObjects (that comprise the AX Tree) in the [axobject-query](https://github.com/A11yance/axobject-query) project. The goal of the WAI-ARIA specification is to be a complete declarative interface to the AXObject model. The [in-draft 1.2 version](https://github.com/w3c/aria/issues?q=is%3Aissue+is%3Aopen+label%3A%22ARIA+1.2%22) is moving towards this goal. But until then, we must consider the semantics constructs afforded by ARIA as well as those afforded by the AXObject model (AXAPI) in order to determine how HTML can be used to express user interface affordances to assistive technology users.\n\n## License\n\neslint-plugin-jsx-a11y is licensed under the [MIT License](LICENSE.md).\n","repository":{"type":"git","url":"git+https://github.com/jsx-eslint/eslint-plugin-jsx-a11y.git"},"users":{"scronide":true,"program247365":true,"fearnbuster":true,"alshamiri2":true,"hq229075284":true,"bcowgi11":true,"maufrontier":true,"sayrilamar":true,"evcohen":true,"phritolay":true,"craigmorton":true,"deiga":true,"alekseyleshko":true,"jalik":true,"wefiy":true,"mswanson1524":true,"itonyyo":true,"ugarz":true,"langri-sha":true,"matt.harris":true,"abuelwafa":true,"ryanlittle":true,"cycomachead":true},"bugs":{"url":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues"},"license":"MIT","versions":{"0.4.2":{"name":"eslint-plugin-jsx-a11y","version":"0.4.2","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.4.2","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"cf464069d4d7d98f6d2c0b1b86d431388f2d6a68","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.4.2.tgz","integrity":"sha512-KpxhGASOeJbJnjb0ig1FEswjDlaWoo1GzF4qW8uhVs3HCuC+WzjX98UeciB0NG5o+TvZx7Hpxk3dHk0allMM4g==","signatures":[{"sig":"MEYCIQCYxABr7p40QsGEv/JnqrZyrV7qc/YbxqG0queQmWTqgQIhAI/PY1CznhnBx0Nn11m++8VU7Jpq/hp0boD88HbTfPjd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"cf464069d4d7d98f6d2c0b1b86d431388f2d6a68","engines":{"node":">=0.10.0"},"gitHead":"645bf1637fd60ac39c49919894cfa313d29a831f","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.12","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"mocha":"^2.4.5","eslint":"2.2.x","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^5.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.4.2.tgz_1458850221449_0.8363424907438457","host":"packages-12-west.internal.npmjs.com"}},"0.6.0":{"name":"eslint-plugin-jsx-a11y","version":"0.6.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.6.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"f1577627357f40f01fc15852cf2612fc3217bc2a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.6.0.tgz","integrity":"sha512-DEXphyg3I+f1rYH7dRCGJ7d+7oDD3G8u1vVbrH6aHO4rFSajN8WmfTSuGwXGoniwTVrFWu7YgDcIPQcxgGllTg==","signatures":[{"sig":"MEUCIQDQZB7jS5NKJBwM5ocar1oisp4UTcVsjjQKw603sIdLRwIgLC1VsNC9wgQbro52aQJwPVBnFR+jKnPNJlK8ANQoGoQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"f1577627357f40f01fc15852cf2612fc3217bc2a","engines":{"node":">=0.10.0"},"gitHead":"baf9dc822ed7c585ea2733789a666822620f6b00","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.15.0","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.4.2","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.6.0.tgz_1459971749747_0.6414034026674926","host":"packages-12-west.internal.npmjs.com"}},"0.4.3":{"name":"eslint-plugin-jsx-a11y","version":"0.4.3","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.4.3","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"95af5b6d31f26db321ed677d1d5e5f8174ea4e67","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.4.3.tgz","integrity":"sha512-pz6Ob4u2TgX0ZUa6D6r8520w77FZt2J8BNQn3LQhvWNtQ39Dd27VwAQTxtYyWAwxSvxCH+uq/1GSqvd6auvj8w==","signatures":[{"sig":"MEUCIQDn9kBa4r9qzJZXoTdQIkr24ti//giOCIJRYMhYGeZ72gIgI52+yvfUblkMbtMrZNfC55qwuqEIuvea8cDwvfMhzTk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"95af5b6d31f26db321ed677d1d5e5f8174ea4e67","engines":{"node":">=0.10.0"},"gitHead":"e56579be5e1e1f9a78e7a2078c5739a91021ee27","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.12","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.4.3.tgz_1459298813476_0.3416865710169077","host":"packages-12-west.internal.npmjs.com"}},"0.6.1":{"name":"eslint-plugin-jsx-a11y","version":"0.6.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.6.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"70ba444ae849bed1f5489bf6567459a2b02188b1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.6.1.tgz","integrity":"sha512-pcg81B/KssWSkPqJoRXLsX9MMS5n4v+7NvTT5bIVO/st5zAX/hePNIggAXVaD7ZRHtSihI9sTaYCGdfZCDarvg==","signatures":[{"sig":"MEYCIQCyKAHZh9hjE1VuMZd+d4IsDGDmAjEBUx/wCLQMHbuTFQIhAMHgOPe7M9AbnFTSTOCkOYADOR30Wha1a3O80sAivP24","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"70ba444ae849bed1f5489bf6567459a2b02188b1","engines":{"node":">=0.10.0"},"gitHead":"a4bf31dcd84fa52ffa3beb2e1ef612145422e29e","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.12","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.6.1.tgz_1460051343670_0.709923081798479","host":"packages-12-west.internal.npmjs.com"}},"0.2.2":{"name":"eslint-plugin-jsx-a11y","version":"0.2.2","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.2.2","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"59c4665070824b3b2dfd648eb899a7aaf113b6ba","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.2.2.tgz","integrity":"sha512-UAE6NMWiygkcN77jMwNI95Xrui8rbgDLLhQIupUNI7c3wjQad7+EBKUeHGuMIRBodFOBKjtDBP1o0L57NZ6Vkg==","signatures":[{"sig":"MEUCIQDAFTJIxTryXpVmFCSMf5UqmU2Z17lVAA+21AqatS05yAIgMeobnD6khBxwftSVGT5f/BcAAWkFAKAVEikHdqjdRMA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"59c4665070824b3b2dfd648eb899a7aaf113b6ba","engines":{"node":">=0.10.0"},"gitHead":"faf44db9837bb561daa3c08bdb8db722cce06e9c","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.12","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^5.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.2.2.tgz_1456894562786_0.9652472131419927","host":"packages-12-west.internal.npmjs.com"}},"0.4.0":{"name":"eslint-plugin-jsx-a11y","version":"0.4.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.4.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"771f46cebc144e78a8f189d10bd850165081087e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.4.0.tgz","integrity":"sha512-Y4LYZnypGyZiCS9xZBrPCsVGu1rStkKJCu30gNKfLUsQXOxU4eLeCPvlBZb1MTVt/KFEGO8XtqaXFxo67ZpsCA==","signatures":[{"sig":"MEQCIAZTAXwm/Rlm61mulAFMtMVezbyDJsqyVUSOFSnHXWssAiBBDlnQ2PplPgEeQcqOUyKUqRRH89DIje2JC/VYCA58Mg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"771f46cebc144e78a8f189d10bd850165081087e","engines":{"node":">=0.10.0"},"gitHead":"2bbe002d4a7313ceadc4a171382d0a4a9760f028","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.12","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^5.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.4.0.tgz_1456979287955_0.5653301521670073","host":"packages-12-west.internal.npmjs.com"}},"0.4.1":{"name":"eslint-plugin-jsx-a11y","version":"0.4.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.4.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"1065db76c38819fc824c006e0d0ed49e2abb6ea9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.4.1.tgz","integrity":"sha512-kxo6gh+xmeWfP+RKKvICXdMqhuJL7DK3hF37idUL58awakiZ9YsbWmtebS5oG0XGlUEOlcBI5O+TiO0rcB6uuA==","signatures":[{"sig":"MEUCIQC64hKvryHmK5qTYHrEin9vByVXoWGdFibYjlwkLE3pTQIgJdbNWuV3rpp8nD9ZPkUJGgPcwLQIPepm4GG5EYzFyBk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"1065db76c38819fc824c006e0d0ed49e2abb6ea9","engines":{"node":">=0.10.0"},"gitHead":"030c6eec6fbeefb9b32308622b3b3d9a7367aa3a","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.7","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.2","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^5.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.4.1.tgz_1457115727436_0.3091991078108549","host":"packages-12-west.internal.npmjs.com"}},"0.6.2":{"name":"eslint-plugin-jsx-a11y","version":"0.6.2","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.6.2","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"e4f0125df05aa713627fddf5dd861524b57083f0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.6.2.tgz","integrity":"sha512-CMF5d+Zkdf7xfYLbk6xdaR32cx6+s5sOtGsvJQq68zThPt2Umx98oHsf0w8eWuTse3Tn5zONFBM7MUy9cvN96Q==","signatures":[{"sig":"MEUCIQDn+ZhldKecunGA11aaZZKLOjZq2VgfNUZfqlsgxrYEwgIgAkrfnoC200W1tX00r+8+/BwP1bgouJMzaIIA9RaXgpk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"e4f0125df05aa713627fddf5dd861524b57083f0","engines":{"node":">=0.10.0"},"gitHead":"4fabf9146ac8914b162df4d91ef512b378cbe5e6","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.12","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.6.2.tgz_1460156707232_0.38944418728351593","host":"packages-12-west.internal.npmjs.com"}},"0.0.2":{"name":"eslint-plugin-jsx-a11y","version":"0.0.2","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.0.2","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"7b5804e553280705ac312bed0a5898c1d88c3a8f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.0.2.tgz","integrity":"sha512-USSjCkHTTVsA3YL+/KsQSxYK2yrk4rwcSnLCIodwG0BLz1ImqrSl65jdUtH/97O0QgeTt3Hbsnj5Vv/pEoBbmw==","signatures":[{"sig":"MEYCIQCHIJU3a0AIqUTti2di8eTgbMv5u/bzg5QBjMWgvPScDAIhAPRQftMeHVCKHdnx8UHpsrBJiEo4NW1muyamCWi/0Zha","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"7b5804e553280705ac312bed0a5898c1d88c3a8f","engines":{"node":">=0.10.0"},"gitHead":"6c01f1e52660c8f0c884aee2a99b0492444997c4","scripts":{"lint":"eslint ./","test":"npm run lint && npm run unit-test","coveralls":"cat ./reports/coverage/lcov.info | coveralls","unit-test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --reporter nyan"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.7","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.2","devDependencies":{"mocha":"2.4.5","eslint":"2.1.0","istanbul":"0.4.2","coveralls":"2.11.6","babel-eslint":"5.0.0-beta10"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.0.2.tgz_1456789206331_0.06109274295158684","host":"packages-6-west.internal.npmjs.com"}},"0.2.0":{"name":"eslint-plugin-jsx-a11y","version":"0.2.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.2.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"00aad30ac43d484854d170de281bab74a4e63101","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.2.0.tgz","integrity":"sha512-qrXnTg1E6HjXmjpYZvM9rx2oXwkpBj5SkHLhK5J2B06PqYFl+MrwYZWRcT3Ma0v7F3l3B5HQ/UlF+utUMs0Zmw==","signatures":[{"sig":"MEYCIQDk20DMpluyKKuKgz7lI+6ZRioHpUsteBJHhcH2hH1jRwIhAMYmtiGz4o+dlx7AjZlKJydDlhwVKrwAZd8zHCJeovAT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"00aad30ac43d484854d170de281bab74a4e63101","engines":{"node":">=0.10.0"},"gitHead":"5988218de13b581208b8de43bd118fc0d03884e9","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.7","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.2","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^5.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.2.0.tgz_1456868773313_0.13620449882000685","host":"packages-11-east.internal.npmjs.com"}},"6.7.1":{"name":"eslint-plugin-jsx-a11y","version":"6.7.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.7.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"jessebeach","email":"jesse.r.beach@icloud.com"},{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"fca5e02d115f48c9a597a6894d5bcec2f7a76976","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz","fileCount":225,"integrity":"sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==","signatures":[{"sig":"MEUCIQDgok8q+cP0lsqJ7FFnhv6IAiqo9kpdPhxC4kgXFeUPKQIgRHJN6cqb/0R1ci55bDh2m82rAw5JNiL9lxC3stQBDWw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":706678,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjv4pYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmozaA/+ORPGg4hTUYc15FOWMKFTZM6d7qh9Ma0aQBSIUalRTzE1RGgh\r\n6HEbUDeKYSkYhKJny4lFx0GhxLGGeUu93/SlQiqQjt/HsL4KBunbIISu1njb\r\noWrsdaOAljievNLrmv4q3BIiT+J8uNTXEjxNw7iXVnEYD+Jk2u7aUZ+C2z5c\r\nvArB2Tv4UV7DF0KdpyKakJm60tW70F5oXRj06p4o3kAyiL6xzw3SHe4ztNVF\r\n034kozVLQQJAS3ojkWp9d+MOtV01kPZ4RgG9/X2L1x9F6Eq3fbvoIGs/6lvm\r\n2vYFnaMCWRoYVLvJ6oM6yq6F54n7S9cD+srBsfV2jfMOPTlz8oNpavegSy/b\r\njgH9FEMWbNK9Bn/FSa6C7mZy5g0cW+4MX1zVcJmAiMB371AQHn4i1ldoBaDE\r\nyQ1/eL/0fuj9sKXhxldutfHtlRXObB/EK06AKJjAMXAvXMocoVHoE0ejyJxP\r\na2vL1a9jKJsVf9jVrhvo3tRYbGEZRhgFz6pBAsbfnj5YYb8qs7B9Bk/J+DGD\r\niY4RPqfH/Gdsf9/ed2gfZwlKEwyFmM87NwxDo95V7TxyQR26WSLuDFpQ4git\r\nrVdVvTK6f9q60JktvJtyFZjMstpgisEO9QN2R1bU3E8XyjFt6QW2HwAG4PW4\r\njx8x/zWFPwBu5IVRJqckHP7JOizv3LBo4cQ=\r\n=teEt\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"roots":["__tests__"],"testEnvironment":"node","coverageDirectory":"coverage","coverageReporters":["lcov","json","html"],"testPathIgnorePatterns":["__tests__/__util__/"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"20b082a890f8e27320c6b2b3587edc6d0b735c97","scripts":{"flow":"flow","jest":"jest --coverage __tests__/**/*","lint":"eslint --ext=js,mjs,cjs,ts,tsx .","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","prepack":"npmignore --auto --commentLines=autogenerated && npm run build","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","version":"auto-changelog && git add CHANGELOG.md","lint:fix":"npm run lint -- --fix","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest && npm run lint && npm run flow && npm run jest","generate-list-of-rules":"eslint-doc-generator --rule-doc-title-format prefix-name --rule-doc-section-options false --config-emoji recommended,☑️","pregenerate-list-of-rules":"npm run build","generate-list-of-rules:check":"npm run generate-list-of-rules -- --check"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/jsx-eslint/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"9.2.0","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"_nodeVersion":"19.3.0","dependencies":{"has":"^1.0.3","semver":"^6.3.0","axe-core":"^4.6.2","minimatch":"^3.1.2","aria-query":"^5.1.3","emoji-regex":"^9.2.2","jsx-ast-utils":"^3.3.3","language-tags":"=1.0.5","@babel/runtime":"^7.20.7","array-includes":"^3.1.6","ast-types-flow":"^0.0.7","axobject-query":"^3.1.1","object.entries":"^1.1.6","object.fromentries":"^2.0.6","damerau-levenshtein":"^1.0.8","array.prototype.flatmap":"^1.3.1"},"publishConfig":{"ignore":["!lib",".github/workflows",".flowconfig","/src","/reports","/flow","scripts/","CONTRIBUTING.md"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false,"startingVersion":"6.6.2"},"devDependencies":{"aud":"^2.0.2","jest":"^24.9.0","eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8","expect":"^24.9.0","rimraf":"^3.0.2","to-ast":"^1.0.0","flow-bin":"^0.147.0","minimist":"^1.2.7","npmignore":"^0.3.0","@babel/cli":"^7.20.7","babel-jest":"^24.9.0","estraverse":"^5.3.0","in-publish":"^2.0.1","@babel/core":"^7.20.12","jscodeshift":"^0.7.1","object.assign":"^4.1.4","ast-types-flow":"^0.0.7","auto-changelog":"^2.4.0","@babel/register":"^7.18.9","babel-preset-airbnb":"^5.0.0","safe-publish-latest":"^2.0.0","@babel/eslint-parser":"^7.19.1","eslint-doc-generator":"^1.4.1","eslint-plugin-import":"^2.26.0","eslint-plugin-flowtype":"^5.8.0 || ^8.0.3","eslint-config-airbnb-base":"^15.0.0","eslint-plugin-eslint-plugin":"^4.3.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.7.1_1673497176791_0.6716846185373775","host":"s3://npm-registry-packages"}},"0.2.1":{"name":"eslint-plugin-jsx-a11y","version":"0.2.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.2.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"c1cd301393f41795f5e0b56b586f401f74266378","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.2.1.tgz","integrity":"sha512-ZSQPz/0RBGz8Lka3+aMxLLsNPAvJ76XxDOyfBr0VFYYwraXxRf/wdnt8VRZwiosK48dZkvjFl6AL/2j+nY3XQQ==","signatures":[{"sig":"MEYCIQDEh5cF0HpePbJWkotqY/T09596V4Ocde6xsI7ea3t6FwIhALEonFcKeACmowh1aAPUIjbPstVyvmVTcnSYXYIrIAdo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"c1cd301393f41795f5e0b56b586f401f74266378","engines":{"node":">=0.10.0"},"gitHead":"8086b92693b192770119cd0c5c559f824525a808","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.7","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.2","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^5.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.2.1.tgz_1456885117778_0.8174131107516587","host":"packages-13-west.internal.npmjs.com"}},"6.9.0":{"name":"eslint-plugin-jsx-a11y","version":"6.9.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.9.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"jessebeach","email":"jesse.r.beach@icloud.com"},{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"67ab8ff460d4d3d6a0b4a570e9c1670a0a8245c8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.9.0.tgz","fileCount":229,"integrity":"sha512-nOFOCaJG2pYqORjK19lqPqxMO/JpvdCZdPtNdxY3kvom3jTvkAbOvQvD8wuD0G8BYR0IGAGYDlzqWJOh/ybn2g==","signatures":[{"sig":"MEQCIE02+0ZAg9M/3ihStj8o5/LsJfwgR+dz0KVg7S2w/sfjAiADY+YwR3/0PT+A6AYbImQAhY9zb/yGqA00ywWp5zyK4w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":756148},"jest":{"roots":["__tests__"],"testEnvironment":"node","coverageDirectory":"coverage","coverageReporters":["lcov","json","html"],"testPathIgnorePatterns":["__tests__/__util__/"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"882bd4dc8a4898be1ca0e69561f7885b8ea2c085","scripts":{"flow":"flow","jest":"jest --coverage __tests__/**/*","lint":"eslint --ext=js,mjs,cjs,ts,tsx .","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","prepack":"npmignore --auto --commentLines=autogenerated && npm run build","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","version":"auto-changelog && git add CHANGELOG.md","lint:fix":"npm run lint -- --fix","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","test:examples":"npm run test-example:legacy && npm run test-example:flat-esm && npm run test-example:flat-cjs","prepublishOnly":"safe-publish-latest && npm run lint && npm run flow && npm run jest","pretest:examples":"npm run build","test-example:legacy":"cd examples/legacy && npm install && npm run lint","test-example:flat-cjs":"cd examples/flat-cjs && npm install && npm run lint","test-example:flat-esm":"cd examples/flat-esm && npm install && npm run lint","generate-list-of-rules":"eslint-doc-generator --rule-doc-title-format prefix-name --rule-doc-section-options false --config-emoji recommended,☑️ --ignore-config flat/recommended --ignore-config flat/strict","pregenerate-list-of-rules":"npm run build","generate-list-of-rules:check":"npm run generate-list-of-rules -- --check"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/jsx-eslint/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"10.7.0","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"_nodeVersion":"22.2.0","dependencies":{"hasown":"^2.0.2","axe-core":"^4.9.1","minimatch":"^3.1.2","aria-query":"~5.1.3","emoji-regex":"^9.2.2","jsx-ast-utils":"^3.3.5","language-tags":"^1.0.9","array-includes":"^3.1.8","ast-types-flow":"^0.0.8","axobject-query":"~3.1.1","safe-regex-test":"^1.0.3","object.fromentries":"^2.0.8","damerau-levenshtein":"^1.0.8","es-iterator-helpers":"^1.0.19","array.prototype.flatmap":"^1.3.2","string.prototype.includes":"^2.0.0"},"publishConfig":{"ignore":["!lib",".github/workflows",".flowconfig","/src","/reports","/flow","scripts/","CONTRIBUTING.md","/examples"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false,"startingVersion":"6.6.2"},"devDependencies":{"aud":"^2.0.4","jest":"^24.9.0","eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8","expect":"^24.9.0","rimraf":"^3.0.2","semver":"^6.3.1","to-ast":"^1.0.0","flow-bin":"^0.147.0","minimist":"^1.2.8","jackspeak":"=2.1.1","npmignore":"^0.3.1","@babel/cli":"^7.24.7","babel-jest":"^24.9.0","estraverse":"^5.3.0","in-publish":"^2.0.1","@babel/core":"^7.24.7","jscodeshift":"^0.7.1","object.assign":"^4.1.5","auto-changelog":"^2.4.0","object.entries":"^1.1.8","@babel/register":"^7.24.6","babel-preset-airbnb":"^5.0.0","safe-publish-latest":"^2.0.0","@babel/eslint-parser":"^7.24.7","eslint-doc-generator":"^1.7.1","eslint-plugin-import":"^2.29.1","eslint-plugin-flowtype":"^5.8.0 || ^8.0.3","eslint-config-airbnb-base":"^15.0.0","eslint-plugin-eslint-plugin":"^4.3.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.9.0_1718864332238_0.6783662813031772","host":"s3://npm-registry-packages"}},"6.5.1":{"name":"eslint-plugin-jsx-a11y","version":"6.5.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.5.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"cdbf2df901040ca140b6ec14715c988889c2a6d8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz","fileCount":220,"integrity":"sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==","signatures":[{"sig":"MEUCIQCtWe4UL4auKe+fqmBuo65kmEbV2JNAn61h5GkmQjPCwwIgWndl58wM17MaabMOf2KMbetKi8ZPt+k++wJMyzv8afE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":635959},"jest":{"roots":["__tests__"],"testEnvironment":"node","coverageDirectory":"coverage","coverageReporters":["lcov","json","html"],"testPathIgnorePatterns":["__tests__/__util__/"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"30deacbf240f8cea7b88a977a72ed54b499c134e","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","jest":"jest --coverage __tests__/**/*","lint":"eslint .","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","lint:fix":"npm run lint -- --fix","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","prepublishOnly":"safe-publish-latest && npm run lint && npm run flow && npm run jest && npm run build"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/jsx-eslint/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"8.1.0","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"greenkeeper":{"ignore":["jest","babel-jest"]},"_nodeVersion":"17.0.1","dependencies":{"has":"^1.0.3","axe-core":"^4.3.5","minimatch":"^3.0.4","aria-query":"^4.2.2","emoji-regex":"^9.2.2","jsx-ast-utils":"^3.2.1","language-tags":"^1.0.5","@babel/runtime":"^7.16.3","array-includes":"^3.1.4","ast-types-flow":"^0.0.7","axobject-query":"^2.2.0","damerau-levenshtein":"^1.0.7"},"_hasShrinkwrap":false,"devDependencies":{"aud":"^1.1.5","jest":"^24.9.0","eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8","expect":"^24.9.0","rimraf":"^3.0.2","to-ast":"^1.0.0","flow-bin":"^0.147.0","minimist":"^1.2.5","@babel/cli":"^7.16.0","babel-jest":"^24.9.0","estraverse":"^5.3.0","in-publish":"^2.0.1","@babel/core":"^7.16.0","jscodeshift":"^0.7.1","object.assign":"^4.1.2","babel-preset-airbnb":"^5.0.0","safe-publish-latest":"^2.0.0","@babel/eslint-parser":"^7.16.3","eslint-plugin-import":"^2.25.3","eslint-plugin-flowtype":"^5.8.0 || ^8.0.2","eslint-config-airbnb-base":"^15.0.0","eslint-plugin-eslint-plugin":"^4.0.2","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.16.0"},"peerDependencies":{"eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.5.1_1636565424901_0.36596551382599984","host":"s3://npm-registry-packages"}},"0.0.1":{"name":"eslint-plugin-jsx-a11y","version":"0.0.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.0.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"dist":{"shasum":"6667d6194385bf6f7f3d47063df223716ed576c0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.0.1.tgz","integrity":"sha512-bKkgRwWCfl6K4xTwvY5MymyaS9/J4ZYnCeDszs4nkTzgKp4f3m1iYwZCB7w/9lZdNHfqcDJ10n2hJKR3D1Gs2w==","signatures":[{"sig":"MEQCICqedDJnIk0BFYOAs6Yw6HXRbacMnSjP+iVqvr+sG4wgAiAGE7khfxAnMmSl0cd7W94wOSQuwgJlsmx2mbzhsBIsYQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"6667d6194385bf6f7f3d47063df223716ed576c0","engines":{"node":">=0.10.0"},"gitHead":"8fa86874447e096f565651222133a0bd1522fa9e","scripts":{"lint":"eslint ./","test":"npm run lint && npm run unit-test","coveralls":"cat ./reports/coverage/lcov.info | coveralls","unit-test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --reporter nyan"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"_npmVersion":"2.14.7","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.2","devDependencies":{"mocha":"2.4.5","eslint":"2.1.0","istanbul":"0.4.2","coveralls":"2.11.6","babel-eslint":"5.0.0-beta10"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.0.1.tgz_1456788412150_0.22615406825207174","host":"packages-9-west.internal.npmjs.com"}},"6.7.0":{"name":"eslint-plugin-jsx-a11y","version":"6.7.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.7.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"jessebeach","email":"jesse.r.beach@icloud.com"},{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"b7a8ced4a427bb54eab050fc2a59e31938a16445","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.0.tgz","fileCount":225,"integrity":"sha512-EGGRKhzejSzXKtjmEjWNtr4SK/DkMkSzkBH7g7e7moBDXZXrqaUIxkmD7uF93upMysc4dKYEJwupu7Dff+ShwA==","signatures":[{"sig":"MEYCIQCND8hGESMMlHIA1A7xKHMhVT3BKXHblB5Luu4UKG8J9AIhAKLZFrhMcQOF4NhlupPDDnruDK3jCyOtLBc56eGXyVIB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":705994,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjvJmwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrncxAAlH/PS76OgM+ujI2rqEe8X0bh79z5wEfoSJvotvsvvoHBKdtW\r\nU6MO9sRh9fvLc1w+/CITeh1k+K3J5/agSE4Ppzlpf3GAA/7NhHsxnz02bLrE\r\nARoK4jiefRXsQ9mcbUSRCEwFEpBHMOGxNCfq7XwkgFj/oy1Ag4Z7XO6s38co\r\n0O8Lh0RSvijiRw+raBiqCaovoGlt5WmwqI7OPg1RXOrjL45l4/ynOAAcOTO7\r\nhdnMngZC8lEW9TRAiW5Nr9hB4d6GS5CKeigLYaSNBtUqKwMDeRdvAEGSOu7U\r\nrBTUBKKAcNtiuMabhaEqNgPxmJv1iY1JWMPUlwzG2ePlTwTErf+fjigue5J9\r\ngqVpEvAuYbeMuKuAv3VWOQ3m3krY0yfnXFR5cFb9Z1a7/DSc01YYcldhhZKo\r\nfC5Nv36AYaRGpp0A9V/Xf74RNDhJ5KvWdhGJ8nuJYuLWlzsjskrfMrdDHXrn\r\nJe9YRjRA+HWhlT8gy4qy8XqXZuDuaNloUc7ZlP6Wa2o2U5kn30gBDv4JdNSj\r\nqWx18QojPJA4UYO8vC70GOzfkBubv/tTVe/uIZBsh0HaM6LZTUKVZRfr2gOm\r\nIJww2ee1Cl8G9oCX3s2VtyJ1UscNDSCS/rzVM11AuDWmLhV1m7c7Oi1xZBcd\r\nBOLLTWUeM2zuQr82sb/5OJoIfCWTEdSExSE=\r\n=RKHF\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"roots":["__tests__"],"testEnvironment":"node","coverageDirectory":"coverage","coverageReporters":["lcov","json","html"],"testPathIgnorePatterns":["__tests__/__util__/"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"136ced7b15afcefcc23e51dafb97e7795ec08d48","scripts":{"flow":"flow","jest":"jest --coverage __tests__/**/*","lint":"eslint --ext=js,mjs,cjs,ts,tsx .","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","prepack":"npmignore --auto --commentLines=autogenerated && npm run build","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","version":"auto-changelog && git add CHANGELOG.md","lint:fix":"npm run lint -- --fix","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest && npm run lint && npm run flow && npm run jest","generate-list-of-rules":"eslint-doc-generator --rule-doc-title-format prefix-name --rule-doc-section-options false --config-emoji recommended,☑️","pregenerate-list-of-rules":"npm run build","generate-list-of-rules:check":"npm run generate-list-of-rules -- --check"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/jsx-eslint/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"9.2.0","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"_nodeVersion":"19.3.0","dependencies":{"has":"^1.0.3","semver":"^6.3.0","axe-core":"^4.6.2","minimatch":"^3.1.2","aria-query":"^5.1.3","emoji-regex":"^9.2.2","jsx-ast-utils":"^3.3.3","language-tags":"=1.0.5","@babel/runtime":"^7.20.7","array-includes":"^3.1.6","ast-types-flow":"^0.0.7","axobject-query":"^3.1.1","object.entries":"^1.1.6","object.fromentries":"^2.0.6","damerau-levenshtein":"^1.0.8","array.prototype.flatmap":"^1.3.1"},"publishConfig":{"ignore":["!lib",".github/workflows",".flowconfig","/src","/reports","/flow","scripts/","CONTRIBUTING.md"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false,"startingVersion":"6.6.2"},"devDependencies":{"aud":"^2.0.2","jest":"^24.9.0","eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8","expect":"^24.9.0","rimraf":"^3.0.2","to-ast":"^1.0.0","flow-bin":"^0.147.0","minimist":"^1.2.7","npmignore":"^0.3.0","@babel/cli":"^7.20.7","babel-jest":"^24.9.0","estraverse":"^5.3.0","in-publish":"^2.0.1","@babel/core":"^7.20.12","jscodeshift":"^0.7.1","object.assign":"^4.1.4","ast-types-flow":"^0.0.7","auto-changelog":"^2.4.0","@babel/register":"^7.18.9","babel-preset-airbnb":"^5.0.0","safe-publish-latest":"^2.0.0","@babel/eslint-parser":"^7.19.1","eslint-doc-generator":"^1.4.1","eslint-plugin-import":"^2.26.0","eslint-plugin-flowtype":"^5.8.0 || ^8.0.3","eslint-config-airbnb-base":"^15.0.0","eslint-plugin-eslint-plugin":"^4.3.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.7.0_1673304496330_0.2458794036760974","host":"s3://npm-registry-packages"}},"6.10.0":{"name":"eslint-plugin-jsx-a11y","version":"6.10.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.10.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"jessebeach","email":"jesse.r.beach@icloud.com"},{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"36fb9dead91cafd085ddbe3829602fb10ef28339","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.0.tgz","fileCount":229,"integrity":"sha512-ySOHvXX8eSN6zz8Bywacm7CvGNhUtdjvqfQDVe6020TUK34Cywkw7m0KsCCk1Qtm9G1FayfTN1/7mMYnYO2Bhg==","signatures":[{"sig":"MEYCIQDSYbEjn+nQ5Mj/XhYNTOvuZ7FhiOoKw52NM8jiOHNpyAIhAITjku6j1+6MFSlHMK+GyHMxBC1DVme07B+duwP1m918","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":757893},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"65c9338c62c558d3c1c2dbf5ecc55cf04dbfe80c","scripts":{"flow":"flow","lint":"npx eslint@8 --ext=js,mjs,cjs,ts,tsx .","test":"npm run tests-only","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","prepack":"npmignore --auto --commentLines=autogenerated && npm run build","pretest":"npm run lint:fix && npm run flow","version":"auto-changelog && git add CHANGELOG.md","lint:fix":"npm run lint -- --fix","posttest":"npx npm@'>=10.2' audit --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"tape --require=@babel/register '__tests__/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","test:examples":"npm run test-example:legacy && npm run test-example:flat-esm && npm run test-example:flat-cjs","prepublishOnly":"safe-publish-latest && npm run lint && npm run flow && npm run tests-only","pretest:examples":"npm run build","test-example:legacy":"cd examples/legacy && npm install && npm run lint","test-example:flat-cjs":"cd examples/flat-cjs && npm install && npm run lint","test-example:flat-esm":"cd examples/flat-esm && npm install && npm run lint","generate-list-of-rules":"eslint-doc-generator --rule-doc-title-format prefix-name --rule-doc-section-options false --config-emoji recommended,☑️ --ignore-config flat/recommended --ignore-config flat/strict","pregenerate-list-of-rules":"npm run build","generate-list-of-rules:check":"npm run generate-list-of-rules -- --check"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/jsx-eslint/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"10.8.2","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"_nodeVersion":"22.7.0","dependencies":{"hasown":"^2.0.2","axe-core":"^4.10.0","minimatch":"^3.1.2","aria-query":"~5.1.3","emoji-regex":"^9.2.2","jsx-ast-utils":"^3.3.5","language-tags":"^1.0.9","array-includes":"^3.1.8","ast-types-flow":"^0.0.8","axobject-query":"^4.1.0","safe-regex-test":"^1.0.3","object.fromentries":"^2.0.8","damerau-levenshtein":"^1.0.8","es-iterator-helpers":"^1.0.19","array.prototype.flatmap":"^1.3.2","string.prototype.includes":"^2.0.0"},"publishConfig":{"ignore":["!lib",".github/workflows",".flowconfig","/src","/reports","/flow","scripts/","CONTRIBUTING.md","/examples"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false,"startingVersion":"6.6.2"},"devDependencies":{"tape":"^5.8.1","eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9","rimraf":"^3.0.2","semver":"^6.3.1","to-ast":"^1.0.0","flow-bin":"^0.147.0","minimist":"^1.2.8","jackspeak":"=2.1.1","npmignore":"^0.3.1","@babel/cli":"^7.25.6","babel-jest":"^24.9.0","estraverse":"^5.3.0","in-publish":"^2.0.1","@babel/core":"^7.25.2","jscodeshift":"^0.7.1","object.assign":"^4.1.5","auto-changelog":"^2.4.0","object.entries":"^1.1.8","@babel/register":"^7.24.6","babel-preset-airbnb":"^5.0.0","safe-publish-latest":"^2.0.0","@babel/eslint-parser":"^7.25.1","eslint-doc-generator":"^1.7.1","eslint-plugin-import":"^2.29.1","eslint-plugin-flowtype":"^5.8.0 || ^8.0.3","eslint-config-airbnb-base":"^15.0.0","eslint-plugin-eslint-plugin":"^4.3.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.10.0_1725430215759_0.0921831946746996","host":"s3://npm-registry-packages"}},"6.10.1":{"name":"eslint-plugin-jsx-a11y","version":"6.10.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.10.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"jessebeach","email":"jesse.r.beach@icloud.com"},{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"87003835bad8875e023aa5db26f41a0c9e6a8fa9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.1.tgz","fileCount":229,"integrity":"sha512-zHByM9WTUMnfsDTafGXRiqxp6lFtNoSOWBY6FonVRn3A+BUwN1L/tdBXT40BcBJi0cZjOGTXZ0eD/rTG9fEJ0g==","signatures":[{"sig":"MEUCIQCyYQMsKq9OyGgOH83X+YMVupepLsM39ZBdYPrpm6ZIBAIgGJGV3IuiaDc+q66fNUjvG5WKqaXI3pDsAt8znVCXdK0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":758956},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"e5dda96f9c021c524a05d9b6b209a2389828ffb3","scripts":{"flow":"flow","lint":"npx eslint@8 --ext=js,mjs,cjs,ts,tsx .","test":"npm run tests-only","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","prepack":"npmignore --auto --commentLines=autogenerated && npm run build","pretest":"npm run lint:fix && npm run flow","version":"auto-changelog && git add CHANGELOG.md","lint:fix":"npm run lint -- --fix","posttest":"npx npm@'>=10.2' audit --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"tape --require=@babel/register '__tests__/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","test:examples":"npm run test-example:legacy && npm run test-example:flat-esm && npm run test-example:flat-cjs","prepublishOnly":"safe-publish-latest && npm run lint && npm run flow && npm run tests-only","pretest:examples":"npm run build","test-example:legacy":"cd examples/legacy && npm install && npm run lint","test-example:flat-cjs":"cd examples/flat-cjs && npm install && npm run lint","test-example:flat-esm":"cd examples/flat-esm && npm install && npm run lint","generate-list-of-rules":"eslint-doc-generator --rule-doc-title-format prefix-name --rule-doc-section-options false --config-emoji recommended,☑️ --ignore-config flat/recommended --ignore-config flat/strict","pregenerate-list-of-rules":"npm run build","generate-list-of-rules:check":"npm run generate-list-of-rules -- --check"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/jsx-eslint/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"10.9.0","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"_nodeVersion":"22.10.0","dependencies":{"hasown":"^2.0.2","axe-core":"^4.10.0","minimatch":"^3.1.2","aria-query":"^5.3.2","emoji-regex":"^9.2.2","jsx-ast-utils":"^3.3.5","language-tags":"^1.0.9","array-includes":"^3.1.8","ast-types-flow":"^0.0.8","axobject-query":"^4.1.0","safe-regex-test":"^1.0.3","object.fromentries":"^2.0.8","damerau-levenshtein":"^1.0.8","es-iterator-helpers":"^1.1.0","array.prototype.flatmap":"^1.3.2","string.prototype.includes":"^2.0.1"},"publishConfig":{"ignore":["!lib",".github/workflows",".flowconfig","/src","/reports","/flow","scripts/","CONTRIBUTING.md","/examples"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false,"startingVersion":"6.6.2"},"devDependencies":{"tape":"^5.9.0","eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9","rimraf":"^3.0.2","semver":"^6.3.1","to-ast":"^1.0.0","flow-bin":"^0.147.0","minimist":"^1.2.8","jackspeak":"=2.1.1","npmignore":"^0.3.1","@babel/cli":"^7.25.7","estraverse":"^5.3.0","in-publish":"^2.0.1","@babel/core":"^7.25.8","jscodeshift":"^17.0.0","object.assign":"^4.1.5","auto-changelog":"^2.5.0","object.entries":"^1.1.8","@babel/register":"^7.25.7","babel-preset-airbnb":"^5.0.0","safe-publish-latest":"^2.0.0","@babel/eslint-parser":"^7.25.8","eslint-doc-generator":"^1.7.1","eslint-plugin-import":"^2.31.0","eslint-plugin-flowtype":"^5.8.0 || ^8.0.3","eslint-config-airbnb-base":"^15.0.0","eslint-plugin-eslint-plugin":"^4.3.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.25.7"},"peerDependencies":{"eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.10.1_1729489771619_0.35004395436405233","host":"s3://npm-registry-packages"}},"6.10.2":{"name":"eslint-plugin-jsx-a11y","version":"6.10.2","description":"Static AST checker for accessibility rules on JSX elements.","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"repository":{"type":"git","url":"git+https://github.com/jsx-eslint/eslint-plugin-jsx-a11y.git"},"main":"lib/index.js","scripts":{"prepack":"npmignore --auto --commentLines=autogenerated && npm run build","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","flow":"flow","lint:fix":"npm run lint -- --fix","lint":"npx eslint@8 --ext=js,mjs,cjs,ts,tsx .","prepublish":"not-in-publish || npm run prepublishOnly","prepublishOnly":"safe-publish-latest && npm run lint && npm run flow && npm run tests-only","pretest":"npm run lint:fix && npm run flow","test":"npm run tests-only","tests-only":"tape --require=@babel/register '__tests__/**/*.js'","posttest":"npx npm@'>=10.2' audit --production","pretest:examples":"npm run build","test:examples":"npm run test-example:legacy && npm run test-example:flat-esm && npm run test-example:flat-cjs","test-example:legacy":"cd examples/legacy && npm install && npm run lint","test-example:flat-esm":"cd examples/flat-esm && npm install && npm run lint","test-example:flat-cjs":"cd examples/flat-cjs && npm install && npm run lint","pregenerate-list-of-rules":"npm run build","generate-list-of-rules":"eslint-doc-generator --rule-doc-title-format prefix-name --rule-doc-section-options false --config-emoji recommended,☑️ --ignore-config flat/recommended --ignore-config flat/strict","generate-list-of-rules:check":"npm run generate-list-of-rules -- --check","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"devDependencies":{"@babel/cli":"^7.25.9","@babel/core":"^7.26.0","@babel/eslint-parser":"^7.25.9","@babel/plugin-transform-flow-strip-types":"^7.25.9","@babel/register":"^7.25.9","auto-changelog":"^2.5.0","babel-plugin-add-module-exports":"^1.0.4","babel-preset-airbnb":"^5.0.0","eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9","eslint-config-airbnb-base":"^15.0.0","eslint-doc-generator":"^1.7.1","eslint-plugin-eslint-plugin":"^4.3.0","eslint-plugin-flowtype":"^5.8.0 || ^8.0.3","eslint-plugin-import":"^2.31.0","estraverse":"^5.3.0","flow-bin":"^0.147.0","in-publish":"^2.0.1","jackspeak":"=2.1.1","jscodeshift":"^17.0.0","minimist":"^1.2.8","npmignore":"^0.3.1","object.assign":"^4.1.5","object.entries":"^1.1.8","rimraf":"^3.0.2","safe-publish-latest":"^2.0.0","semver":"^6.3.1","tape":"^5.9.0","to-ast":"^1.0.0"},"engines":{"node":">=4.0"},"license":"MIT","dependencies":{"aria-query":"^5.3.2","array-includes":"^3.1.8","array.prototype.flatmap":"^1.3.2","ast-types-flow":"^0.0.8","axe-core":"^4.10.0","axobject-query":"^4.1.0","damerau-levenshtein":"^1.0.8","emoji-regex":"^9.2.2","hasown":"^2.0.2","jsx-ast-utils":"^3.3.5","language-tags":"^1.0.9","minimatch":"^3.1.2","object.fromentries":"^2.0.8","safe-regex-test":"^1.0.3","string.prototype.includes":"^2.0.1"},"peerDependencies":{"eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true,"startingVersion":"6.6.2"},"publishConfig":{"ignore":["!lib",".github/workflows",".flowconfig","/src","/reports","/flow","scripts/","CONTRIBUTING.md","/examples"]},"_id":"eslint-plugin-jsx-a11y@6.10.2","gitHead":"7f3d698f40d697471555e1dae74bfc7ee94d0b86","bugs":{"url":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues"},"homepage":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y#readme","_nodeVersion":"23.1.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==","shasum":"d2812bb23bf1ab4665f1718ea442e8372e638483","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz","fileCount":229,"unpackedSize":752797,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBLVcMo1z8881smPVhZGfvKqwjP/+8M3bzoHT8HZNUjkAiA/xOYOovyHHvvQMOBMfy5+Yr/IUGMhxRrzLV+dMim4GA=="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"jessebeach","email":"jesse.r.beach@icloud.com"},{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/eslint-plugin-jsx-a11y_6.10.2_1729917917787_0.38443942450029756"},"_hasShrinkwrap":false},"2.1.0":{"name":"eslint-plugin-jsx-a11y","version":"2.1.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@2.1.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"759524b8d7161d849a77a91735a3974dd1cfc32b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-2.1.0.tgz","integrity":"sha512-RRCuQt2r6Vqg8OBrn5gjV8ONAcUxwFahwuy6jkWfXsCjArCEyvCFs16bFKUgyZyHi/qFov588C44N0DEAy8XvQ==","signatures":[{"sig":"MEUCIFXLd/xRniK5N0QsR+r3HKcLDUFdnvoKZEfqrnwiJJiaAiEA6IE/An59TU4+CF2a6ixh/sq8c96FTOWOT57nhftZk0Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"759524b8d7161d849a77a91735a3974dd1cfc32b","engines":{"node":">=0.10.0"},"gitHead":"c3d3cba525fd7ee799ca33fc0856a7d7888321d2","scripts":{"lint":"eslint  --config .eslintrc src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.8.6","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"5.11.1","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.10.2","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0","eslint-plugin-import":"^1.8.1","eslint-config-airbnb-base":"^3.0.1"},"peerDependencies":{"eslint":"^2.10.2 || 3.x"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-2.1.0.tgz_1470852080915_0.2616600813344121","host":"packages-12-west.internal.npmjs.com"}},"1.3.0":{"name":"eslint-plugin-jsx-a11y","version":"1.3.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.3.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"f15138c7d5194c1519155709129c6f1258377236","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.3.0.tgz","integrity":"sha512-aQttyTD7479187vYPFgm1qaAGnBOgDjDAiUbd7lJweVdGNFxJI/U6oGZDFOAiNFvfpLDtBfh0EJ6wlkghvcZ/g==","signatures":[{"sig":"MEQCIBHlPGgFrDkKCt7uv4mEME6KC2P107FTDto81wqa9tEVAiA/BaDMA0QoxtuL8J+xNz4ZA1V9OR1pWPiv8Phcpw7zUA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"f15138c7d5194c1519155709129c6f1258377236","engines":{"node":">=0.10.0"},"gitHead":"b884b198fd010fc12c9f34cab71cef9075a2c9a1","scripts":{"lint":"eslint  --config .eslintrc.js .","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.9.1","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"6.1.0","dependencies":{"object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.3.0.tgz_1465142279064_0.11090778931975365","host":"packages-12-west.internal.npmjs.com"}},"6.2.2":{"name":"eslint-plugin-jsx-a11y","version":"6.2.2","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.2.2","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"485a71cd90e8e811ec1dd8294ace47a4b7a073b5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.2.tgz","fileCount":214,"integrity":"sha512-ut8SE5Run3X5sTHOANlVu5zJPHVPzluWVB/vfQgbgXcIl/DUJ0tO/SV67SzTTMp6PZGH1vojvUNYItCH2+S21w==","signatures":[{"sig":"MEUCIBVRz4RODkxH7yqBcTbQOf7TN3rgKG2EVvtkPijBPVexAiEAuDIIzVCQ8XzqSxvptYTNFfPp8ln4Tq9/CAGJymCXJls=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":586812,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGF9/CRA9TVsSAnZWagAAxskQAKPESqfJ2a7jx1ksCjOn\ngAVeUg5w6CP0xMNuJMsgxhEiRWyOxvtzquZANkMj7o7QbRcccH+kuygDGTye\n6fs0q+eRNcdGcSxrevpj6u9MEKcICCLZkXN9b/ns9WFCEg+AEBpuAiYNL4jO\nO+IvbUEYdvXN71FtoBRugnKn3iW/+C+DR8lPBRzs9koGWEaVkX2Sw2R3ZxC/\nMn3v45RakQtf6/+D+Yk8CUXE+8YNpbttl2qfaOYhHt9nk96SqlHoVjJFqp5R\nkpm9cqOqqdlmy1Ti0/f35PGJg1fhSI0+4OwXtX/10iZCxC6vO64r3q0alu+q\nFeVq45olTQJxcZdOM5Z+nDoZgV1CSxLArc1bv4Xzi9MJ+R/Py2/JmfPYIwh9\nkl2r+BN8gRYUlLo1Y+NobOnEgr5raqavJzv+XkvJP3eQ9zv4tC4G9RNwYGLS\nsgOfAupbDPRdDDTMukP8w9cBb40smRwmKrr5B1g+GCNQUKOGk6D98Id2mh3w\nc4vybrlf6LL/oBnt/dAGEcpb4GG8J8ocqm7ybgCPiItSnzv6zmTI/DZme+/J\nP36Ms8MbEOiazSDZ7YkZdvetT1UQKc+Oat9YHhCzsz/ugVChO0eg564XCnFz\nrHqKoFmw5rrSiLgVjo2UdeXC18fJMI4vbWukLiVylUbk+QTxo4AtDaJq8zcb\n9k22\r\n=Rb6C\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"roots":["__tests__"],"testEnvironment":"node","coverageDirectory":"reports","coverageReporters":["lcov","html"],"testPathIgnorePatterns":["__tests__/__util__/"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"057fb27d2d58fc37d300e6f85554cdc94181b892","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","jest":"jest --coverage __tests__/**/*","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"safe-publish-latest && not-in-publish || (npm run lint && npm run flow && npm run jest && npm run build)"},"_npmUser":{"name":"jessebeach","email":"splendidnoise@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"6.9.2","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"greenkeeper":{"ignore":["jest","babel-jest"]},"_nodeVersion":"10.12.0","dependencies":{"has":"^1.0.3","aria-query":"^3.0.0","emoji-regex":"^7.0.2","jsx-ast-utils":"^2.2.1","array-includes":"^3.0.3","ast-types-flow":"^0.0.7","axobject-query":"^2.0.2","damerau-levenshtein":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","eslint":"^3 || ^4 || ^5 || ^6","expect":"^24.3.1","rimraf":"^2.6.3","to-ast":"^1.0.0","flow-bin":"^0.102.0","minimist":"^1.2.0","coveralls":"^3.0.1","@babel/cli":"^7.4.4","babel-jest":"^24.0.0","estraverse":"^4.2.0","in-publish":"^2.0.0","@babel/core":"^7.0.0","jscodeshift":"^0.6.0","babel-eslint":"^10.0.1","object.assign":"^4.1.0","@babel/runtime":"^7.4.5","babel-preset-airbnb":"^4.0.0","safe-publish-latest":"^1.1.1","eslint-plugin-import":"^2.18.0","eslint-plugin-flowtype":"^3.5.0","eslint-config-airbnb-base":"^13.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":"^3 || ^4 || ^5 || ^6"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.2.2_1561878398484_0.8013215910379898","host":"s3://npm-registry-packages"}},"6.4.0":{"name":"eslint-plugin-jsx-a11y","version":"6.4.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.4.0","maintainers":[{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"64485c4d8392cb21086dbb08030505accc041158","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.0.tgz","fileCount":217,"integrity":"sha512-zxAMaDw56XO4rg1nTbjGR/lXFamHNcaBLOhxklZdPNMO0yEfI7czmNi7j7CNU/rg8vLMQP6V+SpJaksITq5UIA==","signatures":[{"sig":"MEYCIQCHei8Wz6YO03xCop5xje8aU1WAC5sFRbUDwQYYbjJbDwIhAN4Ykbt7YI5Ud9DQtQqYg/IVvb55QWXvMFqz+pdiMf+O","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":613016,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfll0cCRA9TVsSAnZWagAArSIP/iriBWvyttOU6IkUz+eV\n09fyvn2FgtLuJ/EoM28O5lvu3w+OS1Gn6JK0P17Hw7nuEP88b/if4csSyVVH\nJ9GPkO0nPDA5X+SSAS5EkW/967g5xMKqNjmyQJkrgEt1Ja3KJHGWJxZ6V3ik\nzy/UWVvxLtwR1p8lCcXldDAUS/KyeHq7jkZE+MiMQOMV8qMyg45S/8Py16OX\ndrSiZPjewnIGhUgY8n6eNGTYd+trUboceaxMpu5J0lPGKrGdOJOg9l5zRmpd\nhH9f3Unmp140LsJCkzuWkMDvmo+4bQmg5NXJ6JZDVXHY9NWmKjHsXxngCXAg\n2e9Hl445AgjGttnCMVXGHJa0JcOQosWYnREfwQroHHYywEg6RhJqFmHCrtxj\nSI02HJyzuR8+10yGonythboiKqiVyqlpBaw3xaWlgvkD0tALxctXMOGOTIR6\nhy1zLMydWv86rBePn/yAyDLWPTzHUPXiKtmlv1cgg9YxWdW0xIz/DhyuUme9\n383x7Yz/IMsG0Zb2AvDcMG/iajOlxq82X+YTCnctE/QpMRENhZQ8K7ldeL0M\nuAVGYXNTP2R45pLQ7afX7pmo/nlhFGKjzVntosSxQ11Ricf6bHP5Ob3DOlIX\no/r98RQcgMrYmn0BhhiPPX0klpUTKDGHVnaEWRc65nxhSqfeUb6uJ8i5zvlo\ngaOA\r\n=BR8Z\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"roots":["__tests__"],"testEnvironment":"node","coverageDirectory":"reports","coverageReporters":["lcov","html"],"testPathIgnorePatterns":["__tests__/__util__/"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"1834668927e9c6b470f39f4bcaed113dc38e4b8d","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","jest":"jest --coverage __tests__/**/*","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"safe-publish-latest && not-in-publish || (npm run lint && npm run flow && npm run jest && npm run build)"},"_npmUser":{"name":"jessebeach","email":"splendidnoise@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"6.13.1","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"greenkeeper":{"ignore":["jest","babel-jest"]},"_nodeVersion":"13.2.0","dependencies":{"has":"^1.0.3","axe-core":"^4.0.2","aria-query":"^4.2.2","emoji-regex":"^9.0.0","jsx-ast-utils":"^3.0.0","language-tags":"^1.0.5","@babel/runtime":"^7.11.2","array-includes":"^3.1.1","ast-types-flow":"^0.0.7","axobject-query":"^2.2.0","damerau-levenshtein":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.9.0","eslint":"^3 || ^4 || ^5 || ^6 || ^7","expect":"^24.9.0","rimraf":"^3.0.2","to-ast":"^1.0.0","flow-bin":"^0.113.0","minimist":"^1.2.5","coveralls":"^3.1.0","@babel/cli":"^7.11.6","babel-jest":"^24.9.0","estraverse":"^5.2.0","in-publish":"^2.0.1","@babel/core":"^7.11.6","jscodeshift":"^0.7.0","babel-eslint":"^10.1.0","object.assign":"^4.1.1","babel-preset-airbnb":"^5.0.0","safe-publish-latest":"^1.1.4","eslint-plugin-import":"^2.22.1","eslint-plugin-flowtype":"^5.2.0","eslint-config-airbnb-base":"^14.2.0","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^3 || ^4 || ^5 || ^6 || ^7"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.4.0_1603689755656_0.6298354584364987","host":"s3://npm-registry-packages"}},"6.2.3":{"name":"eslint-plugin-jsx-a11y","version":"6.2.3","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.2.3","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"b872a09d5de51af70a97db1eea7dc933043708aa","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.3.tgz","fileCount":214,"integrity":"sha512-CawzfGt9w83tyuVekn0GDPU9ytYtxyxyFZ3aSWROmnRRFQFT2BiPJd7jvRdzNDi6oLWaS2asMeYSNMjWTV4eNg==","signatures":[{"sig":"MEUCIQCEIzKTTjDwqyf4onzwGofx/mwAXHuka4ihGv4XGLK3UwIgaM/fSM5rjzJBIhLE4V4q8O2d6MSHYYD6u2c9F7+lLpA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":586897,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGYsbCRA9TVsSAnZWagAAGdQP/Rpk/mVk21S3caLdkO3c\nXr/JoneUgedw5zhUchg16tfYuMJS07tCybCV/umqHaJA9njOO7AdY1f9/Y4k\nsGK91QUsYlKopFX5QfjKbu0YN9W1R9ALU4+TQU2Rq2gJVDFcoamVO25FN8sK\napyfA/u5gInCPxFsiG533Ayxr72hUbfA4TEu0Z+D1So0xAZ7NeVTxg1y35xe\ndO4yFyueBMCsBXhrymuEedW3YO+f5B/0EKF7PjLqKZb+iS5DNZo4ErX46S2y\n5ZfPTH/G5NHuDSX4y9bv8FfyBQUevQojmVWqwQ0n28V4DkYL2uNOb2BkaUOi\nCywZC7+OzkQvVd3NIF4PPBtLzk1RNBlbOhzuZhYIa6/NMgEK6OYac7n9SeTH\nU5VH/5zkI+ZApdl/2eaba0pih8kiwJrNDglMnJg67IjaFSEIKgrPxEA8wKXN\nrXpA+CQiIpaQte7rEs3XeuwgJfo90fwp1KnSdnk4vGAF4BdD34HP1A3Objyz\nYB5i2tOJdgE6JkkiHtrszcx83jvCvO1LQAFUSws/F3jMdJH/0g3yaRfuZn41\nmCzhl7ANAWL5alby1cnlRBH9FPORVOUm1sgtd48YIHFu8/xCyGNfV/4H8/Yj\nTOLyF3wnXnUFYRZZYUuG+UqaqJy8OmluHi5qTzhQOsxvOVRbQs3HjykzGBpy\nIvjT\r\n=vCid\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"roots":["__tests__"],"testEnvironment":"node","coverageDirectory":"reports","coverageReporters":["lcov","html"],"testPathIgnorePatterns":["__tests__/__util__/"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"e2a53d10db6666d94781bf3102ce3d5e82776648","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","jest":"jest --coverage __tests__/**/*","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"safe-publish-latest && not-in-publish || (npm run lint && npm run flow && npm run jest && npm run build)"},"_npmUser":{"name":"jessebeach","email":"splendidnoise@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"6.9.2","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"greenkeeper":{"ignore":["jest","babel-jest"]},"_nodeVersion":"10.12.0","dependencies":{"has":"^1.0.3","aria-query":"^3.0.0","emoji-regex":"^7.0.2","jsx-ast-utils":"^2.2.1","@babel/runtime":"^7.4.5","array-includes":"^3.0.3","ast-types-flow":"^0.0.7","axobject-query":"^2.0.2","damerau-levenshtein":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","eslint":"^3 || ^4 || ^5 || ^6","expect":"^24.3.1","rimraf":"^2.6.3","to-ast":"^1.0.0","flow-bin":"^0.102.0","minimist":"^1.2.0","coveralls":"^3.0.1","@babel/cli":"^7.4.4","babel-jest":"^24.0.0","estraverse":"^4.2.0","in-publish":"^2.0.0","@babel/core":"^7.0.0","jscodeshift":"^0.6.0","babel-eslint":"^10.0.1","object.assign":"^4.1.0","babel-preset-airbnb":"^4.0.0","safe-publish-latest":"^1.1.1","eslint-plugin-import":"^2.18.0","eslint-plugin-flowtype":"^3.5.0","eslint-config-airbnb-base":"^13.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":"^3 || ^4 || ^5 || ^6"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.2.3_1561955098275_0.1286114410203283","host":"s3://npm-registry-packages"}},"6.4.1":{"name":"eslint-plugin-jsx-a11y","version":"6.4.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.4.1","maintainers":[{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"a2d84caa49756942f42f1ffab9002436391718fd","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz","fileCount":217,"integrity":"sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==","signatures":[{"sig":"MEQCIDgEBaXMkrYcILDZ6mnIQ6IGBTTPqK4aJFCPjZVvGaAFAiBT83BBzAsa3+GE7x7bgkryxYT5RaVSLW9NSW0YySzekQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":613097,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJflv3kCRA9TVsSAnZWagAAbDoQAIErGygfFS+H6qmCZta3\nydGmjYVEVu0P6TQXQqIwwQ+/xp5DIw2aQepka/wTgy8Y1fMlM/JDJltYPR51\n4QcU9Jdnc+DzeBiLBT/QvzfG5sUtn7ZD6Oq3wPic9bcitmsaH4vYuDjEHGFI\nQTy0AvUY61cb7SRka6iG8JuTAatwZZa2YucC82jmZw7++x4U3atpmjSu9H+h\nW1rVh382PnZtOH/C3UOZOX6UFawOomBLKOcDYSJdiKdze9v+BdvvKZRXG607\n06cefYdbIFZGxhj9U0E7GAIwn6aTS9BIDxlMPvmwtirBFCby9Hzr7yGY3SKm\nFfazdLtYnq2I800OY/b2xA5M3psrj+WWFdqFTfHIFYs4SvW5D0EgMBCUGNpH\nA776X5faQAexGeTurhoILV+ixliyIz4CFeTdInzkFlD/M98PWb6eAAuV9P9F\nsiqTpI6ILepx52Hi9958nGvnFOuhITq01weER8uexv4T/FpJyrroMZnvTnYs\nBLihRwwxgIeOXoxhSC4USPs8TRBZoQLmy/hD5LN6dHB95axwVHW4h/xPvu7D\nOlMkFuvCnpjWsL8Fg1NMXyfgfJ3lLIYcA/QlNapjiNB2zVdA9VNKr/LmXZco\n6qYAwbIaDOptAuSXoDxxW50mU7w6genm7QK7YmHolRz2hTaxBjnNmrUDbVRk\n7QnK\r\n=LLmx\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"roots":["__tests__"],"testEnvironment":"node","coverageDirectory":"reports","coverageReporters":["lcov","html"],"testPathIgnorePatterns":["__tests__/__util__/"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"07064577ac28c161236bc5c83a9ed746fb7aa969","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","jest":"jest --coverage __tests__/**/*","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"safe-publish-latest && not-in-publish || (npm run lint && npm run flow && npm run jest && npm run build)"},"_npmUser":{"name":"jessebeach","email":"splendidnoise@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"6.13.1","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"greenkeeper":{"ignore":["jest","babel-jest"]},"_nodeVersion":"13.2.0","dependencies":{"has":"^1.0.3","axe-core":"^4.0.2","aria-query":"^4.2.2","emoji-regex":"^9.0.0","jsx-ast-utils":"^3.1.0","language-tags":"^1.0.5","@babel/runtime":"^7.11.2","array-includes":"^3.1.1","ast-types-flow":"^0.0.7","axobject-query":"^2.2.0","damerau-levenshtein":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.9.0","eslint":"^3 || ^4 || ^5 || ^6 || ^7","expect":"^24.9.0","rimraf":"^3.0.2","to-ast":"^1.0.0","flow-bin":"^0.113.0","minimist":"^1.2.5","coveralls":"^3.1.0","@babel/cli":"^7.11.6","babel-jest":"^24.9.0","estraverse":"^5.2.0","in-publish":"^2.0.1","@babel/core":"^7.11.6","jscodeshift":"^0.7.0","babel-eslint":"^10.1.0","object.assign":"^4.1.1","babel-preset-airbnb":"^5.0.0","safe-publish-latest":"^1.1.4","eslint-plugin-import":"^2.22.1","eslint-plugin-flowtype":"^5.2.0","eslint-config-airbnb-base":"^14.2.0","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^3 || ^4 || ^5 || ^6 || ^7"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.4.1_1603730916302_0.31264922196125733","host":"s3://npm-registry-packages"}},"1.5.0":{"name":"eslint-plugin-jsx-a11y","version":"1.5.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.5.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"cc1dd738374da5fb3825d59d9f24b356bd0c4263","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.5.0.tgz","integrity":"sha512-XFFBRHMmLnaW2MpjA5C9VMRdmoj7t53JTI9AsSal+rOq444tB7eQOuZ5XuxRzheF6SAfd/js/lKIiQF4oQc3ZQ==","signatures":[{"sig":"MEYCIQCMpBeUpT3x9rMudZDoP00tS7bzzRsW0RNzcnecoaw2VAIhAOj39HCzpHMs5iT2gvQASKJOaKsgGFxKvZwWBu96PG+r","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"cc1dd738374da5fb3825d59d9f24b356bd0c4263","engines":{"node":">=0.10.0"},"gitHead":"e4768ef0c75c224052af939de24224d389fb2879","scripts":{"lint":"eslint  --config .eslintrc src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.8.6","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"5.11.1","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0","eslint-plugin-import":"^1.8.1","eslint-config-airbnb-base":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.5.0.tgz_1466090118423_0.47739606397226453","host":"packages-16-east.internal.npmjs.com"}},"6.0.2":{"name":"eslint-plugin-jsx-a11y","version":"6.0.2","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.0.2","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"659277a758b036c305a7e4a13057c301cd3be73f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.0.2.tgz","integrity":"sha512-2wJ1TzdcZp/o+IdiX4L5iJbDQZJvYKEO71UkDnGlZymwrm90iDXXa85q+x/dcpxQuvCr5Tbhsz4/1TOew2xiGw==","signatures":[{"sig":"MEQCICs2F6HjpGE1V82SWIplQPMhnyGKvv2DhHfTaj8W+vhZAiAzsozr/t4hUG5roOkvmi3PZhr8wkpVato51JgyNTuauA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"jest":{"roots":["<rootDir>/__tests__"],"coverageDirectory":"reports","coverageReporters":["lcov"],"testPathIgnorePatterns":["<rootDir>/__tests__/__util__"]},"main":"lib/index.js","_from":".","_shasum":"659277a758b036c305a7e4a13057c301cd3be73f","engines":{"node":">=4.0"},"gitHead":"b15b7f845b3b7c504d7d255b811343a807115d48","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"jest --coverage __tests__/**/*","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm test -- --ci --runInBand","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"npm run lint && npm run flow && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.10.10","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"_nodeVersion":"6.10.2","dependencies":{"aria-query":"^0.7.0","emoji-regex":"^6.1.0","jsx-ast-utils":"^1.4.0","array-includes":"^3.0.3","ast-types-flow":"0.0.7","axobject-query":"^0.1.0","damerau-levenshtein":"^1.0.0"},"devDependencies":{"jest":"^20.0.4","eslint":"^3.19.0","expect":"^1.20.2","rimraf":"^2.6.1","to-ast":"^1.0.0","flow-bin":"^0.49.1","minimist":"^1.2.0","babel-cli":"^6.24.1","coveralls":"^2.13.1","babel-core":"^6.25.0","babel-jest":"^20.0.3","jscodeshift":"^0.3.30","babel-eslint":"^7.2.3","object.assign":"^4.0.4","babel-polyfill":"^6.23.0","babel-preset-es2015":"^6.24.1","eslint-plugin-import":"^2.3.0","eslint-plugin-flowtype":"^2.34.0","eslint-config-airbnb-base":"^11.2.0","babel-plugin-transform-flow-strip-types":"^6.22.0","babel-plugin-transform-object-rest-spread":"^6.23.0","babel-plugin-transform-es2015-template-literals":"^6.22.0"},"peerDependencies":{"eslint":"^3 || ^4"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-6.0.2.tgz_1498697741763_0.9027187745086849","host":"s3://npm-registry-packages"}},"6.2.0":{"name":"eslint-plugin-jsx-a11y","version":"6.2.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.2.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"0db5a0efad21b815849c7783abe8379eb8fa1ca6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.0.tgz","fileCount":228,"integrity":"sha512-KpibpIdKT0nbDG7G/ILWoZoN5G9cj3h1IHARxzvHk5Nt2LQ7oPUutbO9QbT1FKNHLPZB6BaoA1ASSLOiJZVEUQ==","signatures":[{"sig":"MEUCICon46eQz7nBmNnuKbSp756K6lcjtkXFvCslMmP8Pr8dAiEA+zuHZHmOKE275gPpWHKoDQx1j65JzniLKtxXOwq3mv8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":597363,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcSnTXCRA9TVsSAnZWagAAQkMP/jsFrJgBq7gwp2Jccz9G\nqQtPskm/fGfwjIG3/0JrsemQ2KYutU87e7r5+bkXH51GA97wIIlKC5Lw5fvy\nA6olc4RuyYtdVtRXD3PqlAnAcT8M5jM5FCKPTtHb/JOH8HfbU2hjt8dETOSS\nh4YXD+0FsInP5YYxoUJCsBTM0OK7dX4egb9XwOYsBwd3eVtizbevOLUuSeut\n2AKmssRfjdG0YaBHnHJJDKh7MqnqZSovTQisIRcgWBJqbkfiBrIOEtkrL4hS\nMyjfyqBjSqLt45dXNdMJBPGfqqsrwG1iSsg0zkt8yNW8r23oHYhciZ6Zb/Il\naemzq1jo5zaqmnzkK9vi/CKSH2oaFiZvzwsN1MG296RSyYycnGqbozxSboIr\nAoUBobCeRwB2EW/h4jO1FYSJjCFF9vKiboH9lgUvyNeC+wfgPr269rB20dEW\n4Am/vIHsGOQFu4u8gzrAdMDSRYJCwt/8IOqk1iZdBkEn0vFO/bQCgCTO5TWY\nyfP/cyAhZj99IssSJVE85rKguoYNPwZNA7Ok4aDYnncd/g2P3B978ZA1r0Tr\n5bkBez8ZI4t7fshNgnGIl9Ua1eEWxE9/Br0hC+NFE1iAdBQTAMtvoNcOSNN8\nyOObMgUbCQiFIwkc77t2cmNWc9pZZRYNqob1ykpjIkhJ14lvPWbgOQ9IyIIj\nwpiD\r\n=78Vh\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"roots":["<rootDir>/__tests__"],"testEnvironment":"node","coverageDirectory":"reports","coverageReporters":["lcov","html"],"testPathIgnorePatterns":["<rootDir>/__tests__/__util__"]},"main":"lib/index.js","engines":{"node":">=4.0"},"scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","jest":"jest --coverage __tests__/**/*","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"safe-publish-latest && not-in-publish || (npm run lint && npm run flow && npm run jest && npm run build)"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y","type":"git"},"description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"greenkeeper":{"ignore":["jest","babel-jest"]},"licenseText":"The MIT License (MIT)\nCopyright (c) 2016 Ethan Cohen\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","dependencies":{"has":"^1.0.3","aria-query":"^3.0.0","emoji-regex":"^7.0.2","jsx-ast-utils":"^2.0.1","array-includes":"^3.0.3","ast-types-flow":"^0.0.7","axobject-query":"^2.0.2","damerau-levenshtein":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^21.2.1","eslint":"^4.19.1","expect":"^21.2.1","rimraf":"^2.6.2","to-ast":"^1.0.0","flow-bin":"^0.88.0","minimist":"^1.2.0","babel-cli":"^6.26.0","coveralls":"^3.0.1","babel-core":"^6.26.3","babel-jest":"^21.2.0","estraverse":"^4.2.0","in-publish":"^2.0.0","jscodeshift":"^0.6.0","babel-eslint":"^8.2.5","object.assign":"^4.1.0","babel-polyfill":"^6.26.0","babel-preset-es2015":"^6.24.1","safe-publish-latest":"^1.1.1","eslint-plugin-import":"^2.13.0","eslint-plugin-flowtype":"^2.49.3","eslint-config-airbnb-base":"^13.0.0","babel-plugin-transform-flow-strip-types":"^6.22.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es2015-template-literals":"^6.22.0"},"peerDependencies":{"eslint":"^3 || ^4 || ^5"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.2.0_1548383446397_0.5627834255966302","host":"s3://npm-registry-packages"}},"1.5.1":{"name":"eslint-plugin-jsx-a11y","version":"1.5.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.5.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"f053abc764a055852533e589cbcb6ef33f808b09","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.5.1.tgz","integrity":"sha512-wEjulukzD1o0+pm1UYjewxtLESlAlfBHOjPpqZDE+kyWUr+3uVDYrNeg7ZCg43auybGugn6Wqpb0U6tZ4hYzUw==","signatures":[{"sig":"MEUCIQDatqYXl/IGXgiO6+ByYDe6hZq1X25boFuGDLrcxqadhAIgfQpikuEqi5oTiftcmKMPrb33M4e+h9yeoJDnkyH3fPw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"f053abc764a055852533e589cbcb6ef33f808b09","engines":{"node":">=0.10.0"},"gitHead":"f560d8e725786fd9c80daca59806c70ceef1330f","scripts":{"lint":"eslint  --config .eslintrc src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.8.6","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"5.11.1","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0","eslint-plugin-import":"^1.8.1","eslint-config-airbnb-base":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.5.1.tgz_1466108213494_0.9180769277736545","host":"packages-16-east.internal.npmjs.com"}},"6.0.3":{"name":"eslint-plugin-jsx-a11y","version":"6.0.3","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.0.3","maintainers":[{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"54583d1ae442483162e040e13cc31865465100e5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.0.3.tgz","integrity":"sha512-24jFfQsdCxb39qMuwosM2ejqeH22H8ajlVdVuUHedH/yoaU0MsBJtNr0vYe5Q22/7fHARX0mhYpykUHlE8dVfA==","signatures":[{"sig":"MEQCIAt18RlEiD6DfAkx3MC9CSf2uHHHA+kMHcjmqWWk2cpIAiBdP1HQD0cn0hdSAXtqURKKMnt4HAR9jOApYzGLY0o1nQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"jest":{"roots":["<rootDir>/__tests__"],"coverageDirectory":"reports","coverageReporters":["lcov","html"],"testPathIgnorePatterns":["<rootDir>/__tests__/__util__"]},"main":"lib/index.js","_from":".","_shasum":"54583d1ae442483162e040e13cc31865465100e5","engines":{"node":">=4.0"},"gitHead":"94faf51ce14f764175b7876891b1a3d1fd45eed8","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","jest":"jest --coverage __tests__/**/*","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"safe-publish-latest && not-in-publish || (npm run lint && npm run flow && npm run jest && npm run build)"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.10.3","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"_nodeVersion":"6.3.0","dependencies":{"aria-query":"^0.7.0","emoji-regex":"^6.1.0","jsx-ast-utils":"^2.0.0","array-includes":"^3.0.3","ast-types-flow":"0.0.7","axobject-query":"^0.1.0","damerau-levenshtein":"^1.0.0"},"devDependencies":{"jest":"^21.2.1","eslint":"^4.9.0","expect":"^21.2.1","rimraf":"^2.6.1","to-ast":"^1.0.0","flow-bin":"^0.57.3","minimist":"^1.2.0","babel-cli":"^6.24.1","coveralls":"^3.0.0","babel-core":"^6.25.0","babel-jest":"^21.2.0","in-publish":"^2.0.0","jscodeshift":"^0.3.30","babel-eslint":"^8.0.1","object.assign":"^4.0.4","babel-polyfill":"^6.23.0","babel-preset-es2015":"^6.24.1","safe-publish-latest":"^1.1.1","eslint-plugin-import":"^2.8.0","eslint-plugin-flowtype":"^2.39.1","eslint-config-airbnb-base":"^12.1.0","babel-plugin-transform-flow-strip-types":"^6.22.0","babel-plugin-transform-object-rest-spread":"^6.23.0","babel-plugin-transform-es2015-template-literals":"^6.22.0"},"peerDependencies":{"eslint":"^3 || ^4"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-6.0.3.tgz_1513176876563_0.4826712042558938","host":"s3://npm-registry-packages"}},"6.2.1":{"name":"eslint-plugin-jsx-a11y","version":"6.2.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.2.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"4ebba9f339b600ff415ae4166e3e2e008831cf0c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.1.tgz","fileCount":212,"integrity":"sha512-cjN2ObWrRz0TTw7vEcGQrx+YltMvZoOEx4hWU8eEERDnBIU00OTq7Vr+jA7DFKxiwLNv4tTh5Pq2GUNEa8b6+w==","signatures":[{"sig":"MEUCIFRZh0vqC19GwpJUOmo5uOiYgAPJD7hpewe3adDd5HqLAiEA0ksbQ4iagnpPQqD1A+C7FXuYAMT71plZz+luiH7h+PI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":599772,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcV13fCRA9TVsSAnZWagAAeBcP/1cL5Q3SMd082uosA900\nlTKoWgEWqCvBFdXd8CegtVfGp5CzuMR869agIRg/tEWhoq8y4ZQmbkj4q5e+\n+4J3tCoSV2TRqdP3i6e3dNiTqeYQT/6hWfqABIB0NH9H1lxfWErb8krKIfDH\n8HFsULar45k/sTqcSxRx1myVc6DbUH38XRMthHBEBvb1IFX9PCYvVmG29FKz\nnweBbYrQATcOeP+zJCbm9Ohu8capc0O4VXxHhEOcx0FJMXT5kpDQakczXM1T\nxn0vmojRsY/qeuuzrmeLXtz6/nghxGzKU5eshW44eJpHUL+5NYsKE7ZOb3di\nUzJMLEP6PoMLkscQWU8G23N4nr9fwNR+ZjU9XBoknSbab+CoXlluixG0uzGF\nJ5bS+TbBj+NUDrME+f0MaKIjlmAYvvskGQhJYNqP+xjQ+mCHe5sDX73toRfR\nAke5ELxx80vCmz6XDuv6E1TBVLzNmlvwtj2QKnFBkK3jUttN2i4wkhN9vYOj\nLrv2DPR9s0yJIdwMuCn47X4nzIlJNUip40GumBg9UqWMxp8SG+PsCMhtsjQp\nUPsQtWyE8cqerFVm1D1PFRydjtypwo8JMBi7+elgFx6L4l+IWAqdPtyHrb2i\nn8gm0M5F5os/R0XemI2Sn063laLy0i3iF11XioAd6MLIbbDxwp6jAeeomw9C\n8Jz0\r\n=gKgN\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"roots":["<rootDir>/__tests__"],"testEnvironment":"node","coverageDirectory":"reports","coverageReporters":["lcov","html"],"testPathIgnorePatterns":["<rootDir>/__tests__/__util__"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"1ec0749de4ecafb5c24a8cc270619c0f3bcc9d17","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","jest":"jest --coverage __tests__/**/*","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"safe-publish-latest && not-in-publish || (npm run lint && npm run flow && npm run jest && npm run build)"},"_npmUser":{"name":"jessebeach","email":"splendidnoise@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"6.4.1","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"greenkeeper":{"ignore":["jest","babel-jest"]},"_nodeVersion":"10.12.0","dependencies":{"has":"^1.0.3","aria-query":"^3.0.0","emoji-regex":"^7.0.2","jsx-ast-utils":"^2.0.1","array-includes":"^3.0.3","ast-types-flow":"^0.0.7","axobject-query":"^2.0.2","damerau-levenshtein":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^21.2.1","eslint":"^4.19.1","expect":"^21.2.1","rimraf":"^2.6.2","to-ast":"^1.0.0","flow-bin":"^0.88.0","minimist":"^1.2.0","babel-cli":"^6.26.0","coveralls":"^3.0.1","babel-core":"^6.26.3","babel-jest":"^21.2.0","estraverse":"^4.2.0","in-publish":"^2.0.0","jscodeshift":"^0.6.0","babel-eslint":"^8.2.5","object.assign":"^4.1.0","babel-polyfill":"^6.26.0","babel-preset-es2015":"^6.24.1","safe-publish-latest":"^1.1.1","eslint-plugin-import":"^2.13.0","eslint-plugin-flowtype":"^2.49.3","eslint-config-airbnb-base":"^13.0.0","babel-plugin-transform-flow-strip-types":"^6.22.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es2015-template-literals":"^6.22.0"},"peerDependencies":{"eslint":"^3 || ^4 || ^5"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.2.1_1549229534564_0.11271700508464311","host":"s3://npm-registry-packages"}},"1.5.2":{"name":"eslint-plugin-jsx-a11y","version":"1.5.2","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.5.2","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"f0be5b7e143f5586e5b10ee9f04478f5c37b9792","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.5.2.tgz","integrity":"sha512-OQBqlKd7C7weXaV/EN/4CCGgCm1/QWVnsxMIMDzB89LNhEWPhM+1a/b20DCYsfH/ctwF9MFGDAVW45vfpQDYGA==","signatures":[{"sig":"MEUCIQCcBBo0ilF01SNWglRXtWNpNueZ5ADFoTz+0UnlvsvJTgIgejMpmdM0eC0BbgCF+/9wwzXwS5tHtS4rle9nfvf1ugk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"f0be5b7e143f5586e5b10ee9f04478f5c37b9792","engines":{"node":">=0.10.0"},"gitHead":"ff4f086fbfbc20fce79bd7f47ad87f1de6e18e56","scripts":{"lint":"eslint  --config .eslintrc src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.8.6","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"5.11.1","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0","eslint-plugin-import":"^1.8.1","eslint-config-airbnb-base":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.5.2.tgz_1466112649057_0.7501316540874541","host":"packages-12-west.internal.npmjs.com"}},"6.0.0":{"name":"eslint-plugin-jsx-a11y","version":"6.0.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.0.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"d5cdd68f665a89540a55ddc0d898caf80ca94ac5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.0.0.tgz","integrity":"sha512-GpHwgFBscmkXSVLDAdVcX3sOVx5naIz9Qfl5OBsfo8XZQng1+0wcAEJE5c5/jy0+Dq6s80TG2aExrfiHzPkNMA==","signatures":[{"sig":"MEUCIDpDz8b8DC41QeY+W7XAwyFJWfZhMGUVmghA0xqJDBwyAiEA7RHeXUEb4jovuKoZM6NRMkA2rh5XrcZ7tNXe1lQgJnU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"jest":{"roots":["<rootDir>/__tests__"],"coverageDirectory":"reports","coverageReporters":["lcov"],"testPathIgnorePatterns":["<rootDir>/__tests__/__util__"]},"main":"lib/index.js","_from":".","_shasum":"d5cdd68f665a89540a55ddc0d898caf80ca94ac5","engines":{"node":">=4.0"},"gitHead":"131a75d3e0f1e87c01958ee70ba010515c4a4e27","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"jest --coverage __tests__/**/*","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm test -- --ci --runInBand","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"npm run lint && npm run flow && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.10.10","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"_nodeVersion":"6.10.2","dependencies":{"aria-query":"^0.7.0","emoji-regex":"^6.1.0","jsx-ast-utils":"^1.4.0","array-includes":"^3.0.3","ast-types-flow":"0.0.7","axobject-query":"^0.1.0","damerau-levenshtein":"^1.0.0"},"devDependencies":{"jest":"^20.0.4","eslint":"^3.19.0","expect":"^1.20.2","rimraf":"^2.6.1","to-ast":"^1.0.0","flow-bin":"^0.47.0","minimist":"^1.2.0","babel-cli":"^6.24.1","coveralls":"^2.13.1","babel-core":"^6.25.0","babel-jest":"^20.0.3","jscodeshift":"^0.3.30","babel-eslint":"^7.2.3","object.assign":"^4.0.4","babel-polyfill":"^6.23.0","babel-preset-es2015":"^6.24.1","eslint-plugin-import":"^2.3.0","eslint-plugin-flowtype":"^2.34.0","eslint-config-airbnb-base":"^11.2.0","babel-plugin-transform-flow-strip-types":"^6.22.0","babel-plugin-transform-object-rest-spread":"^6.23.0","babel-plugin-transform-es2015-template-literals":"^6.22.0"},"peerDependencies":{"eslint":"^3 || ^4"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-6.0.0.tgz_1498526718476_0.4590593895409256","host":"s3://npm-registry-packages"}},"1.5.3":{"name":"eslint-plugin-jsx-a11y","version":"1.5.3","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.5.3","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"6de6e6cc4e41be46e9971c13e139bf25b645d571","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.5.3.tgz","integrity":"sha512-81cYPWAlygPaWyhuSlzDguRu7ImjK6pw7e7GA7f/dUA3R4X36fK16W4D3YxJ43iVNrsj5r42aTORgy/6GDd3Kg==","signatures":[{"sig":"MEUCIQDlCKEk2QU2caemzjI7IR/aNUGcqnL4gNbbVZrlw1jFlwIgJbkb7/EdAf/dfMikEG5ohHgmJycexF+qkex2DjK/d2o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"6de6e6cc4e41be46e9971c13e139bf25b645d571","engines":{"node":">=0.10.0"},"gitHead":"6fbfb10a79bb3b0f1db8c26e9675137c3a31b7cf","scripts":{"lint":"eslint  --config .eslintrc src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.8.6","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"5.11.1","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0","eslint-plugin-import":"^1.8.1","eslint-config-airbnb-base":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.5.3.tgz_1466114256477_0.08113061729818583","host":"packages-16-east.internal.npmjs.com"}},"6.0.1":{"name":"eslint-plugin-jsx-a11y","version":"6.0.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.0.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"abcfd3e131448ee836f7f1c7ca1145cdfaed58d2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.0.1.tgz","integrity":"sha512-GQrXSxR7hR83HaI7Q4ImeNpjdNyHpgyxVnwKInXHbcZWg5hAhqPO9pY2/2LeIAcLokO+xChB3tTVH6aNXx5sEw==","signatures":[{"sig":"MEUCIHEzM8jnRtE3ET1165FbCxWgANb9k9qbp9KW79wZeOMaAiEA71AnfQQ+uvWB9knr/5MqXDOgKgy6vVQ7LsqxHcYHbmo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"jest":{"roots":["<rootDir>/__tests__"],"coverageDirectory":"reports","coverageReporters":["lcov"],"testPathIgnorePatterns":["<rootDir>/__tests__/__util__"]},"main":"lib/index.js","_from":".","_shasum":"abcfd3e131448ee836f7f1c7ca1145cdfaed58d2","engines":{"node":">=4.0"},"gitHead":"71ce135afc114478d057e3f832b3a9002208cbc8","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"jest --coverage __tests__/**/*","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm test -- --ci --runInBand","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"npm run lint && npm run flow && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.10.10","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"_nodeVersion":"6.10.2","dependencies":{"aria-query":"^0.7.0","emoji-regex":"^6.1.0","jsx-ast-utils":"^1.4.0","array-includes":"^3.0.3","ast-types-flow":"0.0.7","axobject-query":"^0.1.0","damerau-levenshtein":"^1.0.0"},"devDependencies":{"jest":"^20.0.4","eslint":"^3.19.0","expect":"^1.20.2","rimraf":"^2.6.1","to-ast":"^1.0.0","flow-bin":"^0.49.1","minimist":"^1.2.0","babel-cli":"^6.24.1","coveralls":"^2.13.1","babel-core":"^6.25.0","babel-jest":"^20.0.3","jscodeshift":"^0.3.30","babel-eslint":"^7.2.3","object.assign":"^4.0.4","babel-polyfill":"^6.23.0","babel-preset-es2015":"^6.24.1","eslint-plugin-import":"^2.3.0","eslint-plugin-flowtype":"^2.34.0","eslint-config-airbnb-base":"^11.2.0","babel-plugin-transform-flow-strip-types":"^6.22.0","babel-plugin-transform-object-rest-spread":"^6.23.0","babel-plugin-transform-es2015-template-literals":"^6.22.0"},"peerDependencies":{"eslint":"^3 || ^4"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-6.0.1.tgz_1498692451721_0.09730476257391274","host":"s3://npm-registry-packages"}},"1.5.4":{"name":"eslint-plugin-jsx-a11y","version":"1.5.4","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.5.4","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"9510507686cb0f5f26b67ac2e982eae04b562f11","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.5.4.tgz","integrity":"sha512-UZK2msj1bUtSowOnLpvNdazPf2pmAxLLOU4EJoQPKdPQFnOPrzhR9yJJENr5oGhAfshzqbiH7Fbr0lyS3BrLAw==","signatures":[{"sig":"MEUCIDM3NY4mLV+1Ftv6bCvZRmPIhx1iJ1tK4xDwBq0Ky7N8AiEAt/jVCvM/1/v+l2VIkf0FhvuXPbMkZFLu7EfyARkxvEs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"9510507686cb0f5f26b67ac2e982eae04b562f11","engines":{"node":">=0.10.0"},"gitHead":"a38be7610335cc114180c1f83e3b72fdd4f31294","scripts":{"lint":"eslint  --config .eslintrc src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.9.1","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"6.1.0","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.10.2","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0","eslint-plugin-import":"^1.8.1","eslint-config-airbnb-base":"^3.0.1"},"peerDependencies":{"eslint":"^2.10.2"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.5.4.tgz_1467771067422_0.21181172132492065","host":"packages-12-west.internal.npmjs.com"}},"1.5.5":{"name":"eslint-plugin-jsx-a11y","version":"1.5.5","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.5.5","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"da284a016c1889e73698180217e2eb988a98bab5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.5.5.tgz","integrity":"sha512-xNVb5/M3JXG8dWthVf1bp0pvDCizF5TmESZb/jjpRPaHcUQT/DyN/fHby94o9JQ6ObBgY/CF/osnfR1/towWPA==","signatures":[{"sig":"MEQCICYQuXDDfqTZD9NWNGi9wxOazzxmcBNvu/9zPGUKQIkHAiA31SPiISudYp+8fh7P/t5Qz6KWaKZT2cKP7mZsMMk/2w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"da284a016c1889e73698180217e2eb988a98bab5","engines":{"node":">=0.10.0"},"gitHead":"4f4ecc25041143747c57951bed0b9a60d187cb39","scripts":{"lint":"eslint  --config .eslintrc src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.9.1","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"6.1.0","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.10.2","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0","eslint-plugin-import":"^1.8.1","eslint-config-airbnb-base":"^3.0.1"},"peerDependencies":{"eslint":"^2.10.2 || 3.x"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.5.5.tgz_1467771698910_0.7360590270254761","host":"packages-12-west.internal.npmjs.com"}},"5.0.0":{"name":"eslint-plugin-jsx-a11y","version":"5.0.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@5.0.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"88c1d26b2d145ef077ab3d130be15243ac06a877","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.0.0.tgz","integrity":"sha512-5jpQvdNQ1BcDpzuYVM0GLP1BG5A7F3ZbCa5CsQVcK7oRGG/XhPADoSFy5bx+6wIof27qWEbsSgEVQI4rG3FPQw==","signatures":[{"sig":"MEYCIQC6cCh/EUCctrqTlmOmP4F5cWxyzzVAfm/6975vSqAifQIhAKrdyI0Akz+ZAEfgPtR5TK8ayseG1v/6kPisUHMguQ8n","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"jest":{"roots":["<rootDir>/__tests__"],"coverageDirectory":"reports","coverageReporters":["lcov"],"testPathIgnorePatterns":["<rootDir>/__tests__/__util__"]},"main":"lib/index.js","_from":".","_shasum":"88c1d26b2d145ef077ab3d130be15243ac06a877","engines":{"node":">=4.0"},"gitHead":"ca876d2368c085ace81907be8cfe6192c50cc082","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","lint":"eslint  --config .eslintrc src __tests__","test":"jest --coverage __tests__/**/*","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"npm run lint && npm run flow && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.10.10","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"_nodeVersion":"6.9.5","dependencies":{"aria-query":"^0.5.0","emoji-regex":"^6.1.0","jsx-ast-utils":"^1.4.0","ast-types-flow":"0.0.7","axobject-query":"^0.1.0","damerau-levenshtein":"^1.0.0"},"devDependencies":{"jest":"^19.0.0","eslint":"^3.12.2","expect":"^1.20.2","rimraf":"^2.5.2","to-ast":"^1.0.0","flow-bin":"^0.44.2","minimist":"^1.2.0","babel-cli":"^6.14.0","coveralls":"^2.11.8","babel-core":"^6.14.0","babel-jest":"^19.0.0","jscodeshift":"^0.3.30","babel-eslint":"^7.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.14.0","eslint-plugin-import":"^2.2.0","eslint-plugin-flowtype":"^2.32.1","eslint-config-airbnb-base":"^11.0.0","babel-plugin-transform-flow-strip-types":"^6.21.0","babel-plugin-transform-object-rest-spread":"^6.20.2"},"peerDependencies":{"eslint":"^2.10.2 || 3.x"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-5.0.0.tgz_1494006760127_0.438992821611464","host":"packages-18-east.internal.npmjs.com"}},"5.0.1":{"name":"eslint-plugin-jsx-a11y","version":"5.0.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@5.0.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"48e678891fec9fe1e53ef53adc2f7d05fee6640c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.0.1.tgz","integrity":"sha512-YBiKpbIarwKNMfJVwKO0c26Ipjykj48WSpaEe2prrnoEoxy4UT6hM7DtqNkb6NpMIrh2WRAJfLjXzVBgiD7juQ==","signatures":[{"sig":"MEUCIQCBZWrzg1FkR43pfOgBmwEUIrT8UexzaOZlHUTFOHAvPgIgegpVS6YIV87dJEojGQTdAtNcB1RjfN7nBzhvcCQLTfY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"jest":{"roots":["<rootDir>/__tests__"],"coverageDirectory":"reports","coverageReporters":["lcov"],"testPathIgnorePatterns":["<rootDir>/__tests__/__util__"]},"main":"lib/index.js","_from":".","_shasum":"48e678891fec9fe1e53ef53adc2f7d05fee6640c","engines":{"node":">=4.0"},"gitHead":"bf0ac6a98da0dbfff171d30ff1359bfa535efbb1","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","lint":"eslint  --config .eslintrc src __tests__","test":"jest --coverage __tests__/**/*","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"npm run lint && npm run flow && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.10.3","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"_nodeVersion":"6.3.0","dependencies":{"aria-query":"^0.5.0","emoji-regex":"^6.1.0","jsx-ast-utils":"^1.4.0","array-includes":"^3.0.3","ast-types-flow":"0.0.7","axobject-query":"^0.1.0","damerau-levenshtein":"^1.0.0"},"devDependencies":{"jest":"^20.0.0","eslint":"^3.12.2","expect":"^1.20.2","rimraf":"^2.5.2","to-ast":"^1.0.0","flow-bin":"^0.45.0","minimist":"^1.2.0","babel-cli":"^6.14.0","coveralls":"^2.11.8","babel-core":"^6.14.0","babel-jest":"^20.0.0","jscodeshift":"^0.3.30","babel-eslint":"^7.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.14.0","eslint-plugin-import":"^2.2.0","eslint-plugin-flowtype":"^2.32.1","eslint-config-airbnb-base":"^11.0.0","babel-plugin-transform-flow-strip-types":"^6.21.0","babel-plugin-transform-object-rest-spread":"^6.20.2"},"peerDependencies":{"eslint":"^2.10.2 || 3.x"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-5.0.1.tgz_1494179380565_0.6866007358767092","host":"packages-18-east.internal.npmjs.com"}},"5.0.2":{"name":"eslint-plugin-jsx-a11y","version":"5.0.2","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@5.0.2","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"b93371bf67e9408dc3d798893d1e304a158ada09","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.0.2.tgz","integrity":"sha512-CjH5AlIvcKWARP1gie0InI1x41vckQfsm02qIZggTWeInEmezbv0B6qqLyhfJmF/ycNx2szb81haZcc+BbvdNA==","signatures":[{"sig":"MEYCIQDSfzpQvpOHJHdz2c234iduplhiarLW+ieDRKuzaMir/wIhANmfQG1wlGvg331I0QhfQJ4O6WAgKBc85KvtUc+jhrFz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"jest":{"roots":["<rootDir>/__tests__"],"coverageDirectory":"reports","coverageReporters":["lcov"],"testPathIgnorePatterns":["<rootDir>/__tests__/__util__"]},"main":"lib/index.js","_from":".","_shasum":"b93371bf67e9408dc3d798893d1e304a158ada09","engines":{"node":">=4.0"},"gitHead":"4230a692b8afb649a21842a90ebddc256b4005bb","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"jest --coverage __tests__/**/*","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"npm run lint && npm run flow && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.10.10","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"_nodeVersion":"6.9.5","dependencies":{"aria-query":"^0.5.0","emoji-regex":"^6.1.0","jsx-ast-utils":"^1.4.0","array-includes":"^3.0.3","ast-types-flow":"0.0.7","axobject-query":"^0.1.0","damerau-levenshtein":"^1.0.0"},"devDependencies":{"jest":"^20.0.0","eslint":"^3.12.2","expect":"^1.20.2","rimraf":"^2.5.2","to-ast":"^1.0.0","flow-bin":"^0.45.0","minimist":"^1.2.0","babel-cli":"^6.14.0","coveralls":"^2.11.8","babel-core":"^6.14.0","babel-jest":"^20.0.0","jscodeshift":"^0.3.30","babel-eslint":"^7.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.14.0","eslint-plugin-import":"^2.2.0","eslint-plugin-flowtype":"^2.32.1","eslint-config-airbnb-base":"^11.0.0","babel-plugin-transform-flow-strip-types":"^6.21.0","babel-plugin-transform-object-rest-spread":"^6.20.2"},"peerDependencies":{"eslint":"^2.10.2 || 3.x"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-5.0.2.tgz_1494957087850_0.14735450875014067","host":"packages-18-east.internal.npmjs.com"}},"5.0.3":{"name":"eslint-plugin-jsx-a11y","version":"5.0.3","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@5.0.3","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"4a939f76ec125010528823331bf948cc573380b6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.0.3.tgz","integrity":"sha512-YNIrEw8cepPQlHcPUKLbJF9R4O4duG7ZGZuT0L+jYVdsRmBb6klnpYI0XnuEK3qMirTuuovb4Lg6+Scy4BCwaA==","signatures":[{"sig":"MEUCICfc2eCEjQfa0CTBnjVTPSt7jEKGPwYVvdSvTK0UfpyIAiEA+Hv4DPiQcSA+X/Fzb+IZWKjBh9UFcGolsUWB2AnyjMY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"jest":{"roots":["<rootDir>/__tests__"],"coverageDirectory":"reports","coverageReporters":["lcov"],"testPathIgnorePatterns":["<rootDir>/__tests__/__util__"]},"main":"lib/index.js","_from":".","_shasum":"4a939f76ec125010528823331bf948cc573380b6","engines":{"node":">=4.0"},"gitHead":"fab40fe6cc150795695f2a0202856fdee23d03f6","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"jest --coverage __tests__/**/*","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"npm run lint && npm run flow && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.10.10","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"_nodeVersion":"6.9.5","dependencies":{"aria-query":"^0.5.0","emoji-regex":"^6.1.0","jsx-ast-utils":"^1.4.0","array-includes":"^3.0.3","ast-types-flow":"0.0.7","axobject-query":"^0.1.0","damerau-levenshtein":"^1.0.0"},"devDependencies":{"jest":"^20.0.0","eslint":"^3.12.2","expect":"^1.20.2","rimraf":"^2.5.2","to-ast":"^1.0.0","flow-bin":"^0.45.0","minimist":"^1.2.0","babel-cli":"^6.14.0","coveralls":"^2.11.8","babel-core":"^6.14.0","babel-jest":"^20.0.0","jscodeshift":"^0.3.30","babel-eslint":"^7.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.14.0","eslint-plugin-import":"^2.2.0","eslint-plugin-flowtype":"^2.32.1","eslint-config-airbnb-base":"^11.0.0","babel-plugin-transform-flow-strip-types":"^6.21.0","babel-plugin-transform-object-rest-spread":"^6.20.2"},"peerDependencies":{"eslint":"^2.10.2 || 3.x"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-5.0.3.tgz_1494964884076_0.860053869895637","host":"packages-12-west.internal.npmjs.com"}},"1.1.0":{"name":"eslint-plugin-jsx-a11y","version":"1.1.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.1.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"5788a24c7cf00f0ddcb0627b73551425a1b93587","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.1.0.tgz","integrity":"sha512-hmOt0n9llXnSQnqSJLuQDAQisapRhM16FvPbnpzopnt8l+W3G/lIjFKsCbOwgQPeY8wQ1AttazFceQVFq9yN+Q==","signatures":[{"sig":"MEUCIQCVJN1DJHY5cHNPJarnnOGUmYe8Mm6D7cSaSwLc/phg/gIgKddKtGc1CHPT5Lccm4TwM6Kr+W/uw6Gwavj7uRg11GQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"5788a24c7cf00f0ddcb0627b73551425a1b93587","engines":{"node":">=0.10.0"},"gitHead":"d8933d102741c08927edcb55ef95a4f81c633eb7","scripts":{"lint":"eslint  --config .eslintrc.js .","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.12","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.6","dependencies":{"object-assign":"^4.0.1"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.1.0.tgz_1462557448015_0.02221077191643417","host":"packages-12-west.internal.npmjs.com"}},"0.5.1":{"name":"eslint-plugin-jsx-a11y","version":"0.5.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.5.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"9a49715141844039d8c792ed6cbbe5c0c817a514","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.5.1.tgz","integrity":"sha512-A9za2sk/o4wOOotzlJBb3P01qGUR41w7dAMQ3A+KtMyrjdxJEzZRlD1D5cHYr5m/UzLSjj7PRJ8n8lgVdBMlMA==","signatures":[{"sig":"MEUCIQDrZTNLMH62MRzNPVb15r5QOEmf/ZS5Mpg8JhZ2I0a22AIgfhooNHo6AseOeHeraveT9fZgm58Ufi1m4rbejk9BLRg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"9a49715141844039d8c792ed6cbbe5c0c817a514","engines":{"node":">=0.10.0"},"gitHead":"bd894e4e4ebe4e4131b58ec3ba375dbab9e477f1","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.15.0","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.4.2","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.5.1.tgz_1459875893746_0.6161996675655246","host":"packages-12-west.internal.npmjs.com"}},"0.5.2":{"name":"eslint-plugin-jsx-a11y","version":"0.5.2","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.5.2","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"860e74099cbeeb3f2d3d104a6ae1744dd3d02878","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.5.2.tgz","integrity":"sha512-b+1N+hrXYbcHHAgeWATYEdCAR94O8EnL+eQtCfeXi+P/wMKGOokiKFmHXV20jaWUSTVjjmAvIhPtjxylJpslUw==","signatures":[{"sig":"MEYCIQCXIRVsv5SunGLBrx+QM2EoxkxhoYSpc7qu6RpVhdHdsgIhAOvHs/3Yke1/1e4gjGCxmzcDB9Y9yfSoeJe1tCpHozJ5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"860e74099cbeeb3f2d3d104a6ae1744dd3d02878","engines":{"node":">=0.10.0"},"gitHead":"f9ea90b6b283aa086f9fee3a229fe6459efd67fe","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.15.0","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.4.2","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.5.2.tgz_1459877331627_0.5679649102967232","host":"packages-12-west.internal.npmjs.com"}},"0.3.1":{"name":"eslint-plugin-jsx-a11y","version":"0.3.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.3.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"fa381d7d3c91f9cc65f0a32e6cdd093406b36e44","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.3.1.tgz","integrity":"sha512-e09VROh8lXuaf4LAX97CA8Of1O08q1gsfdx41ffx72CzuHaMKmFl/2jF/nRw5qCZQla4ai8s09NgNf2Ub8cytw==","signatures":[{"sig":"MEYCIQDC8nAWhQgnmK9QS/2QnBysiMT+QOWe9aQXNUZk2ApX8wIhAP1ZSRjXgyym2TS/C3wjo1kpPE+xFVq6NXZcoO1lTxkQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"fa381d7d3c91f9cc65f0a32e6cdd093406b36e44","engines":{"node":">=0.10.0"},"gitHead":"7ca97873f6ef363c005a73f54877c6131afc3993","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.7","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.2","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^5.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.3.1.tgz_1456966668869_0.6598350116983056","host":"packages-13-west.internal.npmjs.com"}},"0.5.0":{"name":"eslint-plugin-jsx-a11y","version":"0.5.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.5.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"69cbb26992c43f1632265b970de880fcfd3810fd","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.5.0.tgz","integrity":"sha512-2tFQuyRZRo6/FvtGGL9P62dEv3InUGBNW210w0N5kdRl37EPJ0z0U46sOWg/JTxzutnDi1PKqJpPp6EWHf7wuw==","signatures":[{"sig":"MEYCIQDmp+d+8kADq+inr+LiZ+Dthy8QEuY+JsfvOFpg4PvW/QIhALXaDTM57Zid+uAFBhKm5OT2sPINOryoiywpQ/tej3tx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"69cbb26992c43f1632265b970de880fcfd3810fd","engines":{"node":">=0.10.0"},"gitHead":"00ae7e4b59ddd1c119d8881002c357a62239f6e7","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.12","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.5.0.tgz_1459624834187_0.8986303771380335","host":"packages-12-west.internal.npmjs.com"}},"0.5.3":{"name":"eslint-plugin-jsx-a11y","version":"0.5.3","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.5.3","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"b21057bac016db0f5e1150ef91c2f5aec1eaa771","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.5.3.tgz","integrity":"sha512-U0ekgI9xBr+e7xkxn5WUo4LSBTjdzqBPmfKjI8qoLguUvGUAXuzuaTtJS5E4F37LmDzk4Mst3w5x99eA7XvHxA==","signatures":[{"sig":"MEQCIAXpYM9pBa79pt8anIxSkA2zWvcJtR+f5XwTjnBq6giHAiAcGTsJi/JEnnoq/FI7wXZTc5ODx/cOKZyl4gEBGamMpA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"b21057bac016db0f5e1150ef91c2f5aec1eaa771","engines":{"node":">=0.10.0"},"gitHead":"9f788ca783dfd26da5e7258e3fca2dd180c23564","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.15.0","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.4.2","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.5.3.tgz_1459894974526_0.7220654785633087","host":"packages-12-west.internal.npmjs.com"}},"0.5.4":{"name":"eslint-plugin-jsx-a11y","version":"0.5.4","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.5.4","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"0de0ad3413ed0223724f66e3008faa630e2421c6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.5.4.tgz","integrity":"sha512-OQKsu2yUfWAxNJJJB/02XLqCQ5KZDAlVaem9hSWoqNHr8QGaP8bMhC8XbTY2Wd17Wy+nyLI/UQKyw976ADGNtw==","signatures":[{"sig":"MEUCIQDd7DpcIPyT1xYVVaExOnNzQmKEQOMM3CRhhZUyq+Jl5gIgEW7FyIOdndRdx9qoCMPMaB+m/TSqYdqTshnY7w5ZcGs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"0de0ad3413ed0223724f66e3008faa630e2421c6","engines":{"node":">=0.10.0"},"gitHead":"1827da3720117dbbe8c8a69aba518ccf4560858b","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.15.0","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.4.2","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.5.4.tgz_1459964965143_0.803209756501019","host":"packages-12-west.internal.npmjs.com"}},"4.0.0":{"name":"eslint-plugin-jsx-a11y","version":"4.0.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@4.0.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"779bb0fe7b08da564a422624911de10061e048ee","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-4.0.0.tgz","integrity":"sha512-fhh2Q21sZIhoPxPfzRzKwjUMaXPfKelhPehzPyFnhH18xaLh6dOQ0Bn0Q1+tzdhFVh2GB2NZvC/g0FSWQXEoVg==","signatures":[{"sig":"MEUCIDX+VrmVB/6t6m1SMOVEuYWUmCS9PlLuusubL6NMejMFAiEA7mbLtRZAGgfzZW5e6aavScSJVeWJd0f17ZqyGfO22Qs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"jest":{"testPathDirs":["<rootDir>/__tests__"],"coverageDirectory":"reports","coverageReporters":["lcov"],"testPathIgnorePatterns":["<rootDir>/__tests__/__util__"]},"main":"lib/index.js","_from":".","_shasum":"779bb0fe7b08da564a422624911de10061e048ee","engines":{"node":">=4.0"},"gitHead":"24128bb96129b74ad8a11b17924158f1372d3661","scripts":{"flow":"flow; test $? -eq 0 -o $? -eq 2","lint":"eslint  --config .eslintrc src __tests__","test":"jest --bail --coverage","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"npm run lint && npm run flow && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.9.1","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"_nodeVersion":"6.1.0","dependencies":{"aria-query":"^0.3.0","emoji-regex":"^6.1.0","jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","ast-types-flow":"0.0.7","damerau-levenshtein":"^1.0.0"},"devDependencies":{"jest":"^18.1.0","eslint":"^3.12.2","expect":"^1.20.2","rimraf":"^2.5.2","to-ast":"^1.0.0","flow-bin":"^0.38.0","minimist":"^1.2.0","babel-cli":"^6.14.0","coveralls":"^2.11.8","babel-core":"^6.14.0","babel-jest":"^18.0.0","jscodeshift":"^0.3.30","babel-eslint":"^7.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.14.0","eslint-plugin-import":"^2.2.0","eslint-plugin-flowtype":"^2.29.2","eslint-config-airbnb-base":"^11.0.0","babel-plugin-transform-flow-strip-types":"^6.21.0","babel-plugin-transform-object-rest-spread":"^6.20.2"},"peerDependencies":{"eslint":"^2.10.2 || 3.x"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-4.0.0.tgz_1486231091894_0.8926710076630116","host":"packages-18-east.internal.npmjs.com"}},"0.1.1":{"name":"eslint-plugin-jsx-a11y","version":"0.1.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.1.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"eb600df502756c35626f8581baba6b358ca6d032","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.1.1.tgz","integrity":"sha512-uLllMcy4UjKU1PadVuS6KnTa9KkepRe6BmdosYoh49NWTCbOAp4vGlw0YAiN3fpbhIhpzEZVLIRF9yxxqSdlyQ==","signatures":[{"sig":"MEUCIQCj5Xc7JEf2GqDVOcCmPGSFlVRlq7/sDz95vA5THF2mygIgbtcYese8tFJyhrHSjosFFZiKCnhx04IMBvRsPbrCWRI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"eb600df502756c35626f8581baba6b358ca6d032","engines":{"node":">=0.10.0"},"gitHead":"4ee1abd4249cbadb90b84e8b82e528b607eafc31","scripts":{"lint":"eslint  --config .eslintrc.js ./","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"webpack --config .webpack.config.js --optimize-minimize","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.12","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","webpack":"^1.12.14","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^5.0.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.1.1.tgz_1456849281145_0.03732568910345435","host":"packages-9-west.internal.npmjs.com"}},"6.8.0":{"name":"eslint-plugin-jsx-a11y","version":"6.8.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.8.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"jessebeach","email":"jesse.r.beach@icloud.com"},{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"2fa9c701d44fcd722b7c771ec322432857fcbad2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz","fileCount":227,"integrity":"sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==","signatures":[{"sig":"MEQCIGwp/appt65eEY9jXwiZL8V9aZakF8ZowIGz5g+19TYPAiByaMtr6lmAPt8Y4A96u/8vPU1/MlTWqFRqKpz/xc7zkg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":738677},"jest":{"roots":["__tests__"],"testEnvironment":"node","coverageDirectory":"coverage","coverageReporters":["lcov","json","html"],"testPathIgnorePatterns":["__tests__/__util__/"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"974275353598e9407c76bd4a50c331a953755cee","scripts":{"flow":"flow","jest":"jest --coverage __tests__/**/*","lint":"eslint --ext=js,mjs,cjs,ts,tsx .","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","prepack":"npmignore --auto --commentLines=autogenerated && npm run build","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","version":"auto-changelog && git add CHANGELOG.md","lint:fix":"npm run lint -- --fix","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest && npm run lint && npm run flow && npm run jest","generate-list-of-rules":"eslint-doc-generator --rule-doc-title-format prefix-name --rule-doc-section-options false --config-emoji recommended,☑️","pregenerate-list-of-rules":"npm run build","generate-list-of-rules:check":"npm run generate-list-of-rules -- --check"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/jsx-eslint/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"10.1.0","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"_nodeVersion":"20.7.0","dependencies":{"hasown":"^2.0.0","axe-core":"=4.7.0","minimatch":"^3.1.2","aria-query":"^5.3.0","emoji-regex":"^9.2.2","jsx-ast-utils":"^3.3.5","language-tags":"^1.0.9","@babel/runtime":"^7.23.2","array-includes":"^3.1.7","ast-types-flow":"^0.0.8","axobject-query":"^3.2.1","object.entries":"^1.1.7","object.fromentries":"^2.0.7","damerau-levenshtein":"^1.0.8","es-iterator-helpers":"^1.0.15","array.prototype.flatmap":"^1.3.2"},"publishConfig":{"ignore":["!lib",".github/workflows",".flowconfig","/src","/reports","/flow","scripts/","CONTRIBUTING.md"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false,"startingVersion":"6.6.2"},"devDependencies":{"aud":"^2.0.3","jest":"^24.9.0","eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8","expect":"^24.9.0","rimraf":"^3.0.2","semver":"^6.3.1","to-ast":"^1.0.0","flow-bin":"^0.147.0","minimist":"^1.2.8","jackspeak":"=2.1.1","npmignore":"^0.3.0","@babel/cli":"^7.23.0","babel-jest":"^24.9.0","estraverse":"^5.3.0","in-publish":"^2.0.1","@babel/core":"^7.23.2","jscodeshift":"^0.7.1","object.assign":"^4.1.4","auto-changelog":"^2.4.0","@babel/register":"^7.22.15","babel-preset-airbnb":"^5.0.0","safe-publish-latest":"^2.0.0","@babel/eslint-parser":"^7.22.15","eslint-doc-generator":"^1.5.2","eslint-plugin-import":"^2.29.0","eslint-plugin-flowtype":"^5.8.0 || ^8.0.3","eslint-config-airbnb-base":"^15.0.0","eslint-plugin-eslint-plugin":"^4.3.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.22.5"},"peerDependencies":{"eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.8.0_1698877531540_0.4559677370629096","host":"s3://npm-registry-packages"}},"0.1.2":{"name":"eslint-plugin-jsx-a11y","version":"0.1.2","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.1.2","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"f4e32b841e842578cb7a0a423bcafd3019982cfa","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.1.2.tgz","integrity":"sha512-yW5c9n2LZHW3UI1QsrYMkMBjnTnO7srqcbzAulqLYpzt1OiV5/U2uCHB7vhAzZ9r/0VAp1d1dgoVNgtw6Nceeg==","signatures":[{"sig":"MEYCIQCqzg50IG9kw3liLT6m4uURb4TKa45sml0oQTD0+QLOnQIhAImDCa5wyBFIagey2cOgiVqicYv24lHLkSO9/2fopIYv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"f4e32b841e842578cb7a0a423bcafd3019982cfa","engines":{"node":">=0.10.0"},"gitHead":"8472503a9a56002bc453f66ed89ac64ee4313288","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.7","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.2","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^5.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.1.2.tgz_1456856869752_0.29013136797584593","host":"packages-12-west.internal.npmjs.com"}},"0.3.0":{"name":"eslint-plugin-jsx-a11y","version":"0.3.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.3.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"aae42637df14b6d83f13aa817416eb97366708c5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.3.0.tgz","integrity":"sha512-5Ol1+YGd7fRMMcRKFmY6ziTo5GQJRm9P3yWC8Pht+SuwTGRRhiNbKjiSbgoy5uMPY2PzqrGvjPj5DDKStK34Og==","signatures":[{"sig":"MEUCIQCFijMsixboqEJdDPQ27z9qt09Be3z859xTE2aDZKoqOAIgGHa9qQ+o5imIn6tWZ2WVSJ9WgDPQiSjzJ1/8hvDLbv0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"aae42637df14b6d83f13aa817416eb97366708c5","engines":{"node":">=0.10.0"},"gitHead":"1f42630fd07c4e3d55631405b004dcfa4b5e2bee","scripts":{"lint":"eslint  --config .eslintrc.js src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.7","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.2","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^5.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.3.0.tgz_1456962625024_0.21112309768795967","host":"packages-13-west.internal.npmjs.com"}},"6.6.0":{"name":"eslint-plugin-jsx-a11y","version":"6.6.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.6.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"2c5ac12e013eb98337b9aa261c3b355275cc6415","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.0.tgz","fileCount":224,"integrity":"sha512-kTeLuIzpNhXL2CwLlc8AHI0aFRwWHcg483yepO9VQiHzM9bZwJdzTkzBszbuPrbgGmq2rlX/FaT2fJQsjUSHsw==","signatures":[{"sig":"MEUCIF5d05oLCxSfcorTmeRDQsJoDEBQA/r1gYvh9yC6MKRDAiEAlE9bp4cYPVYspK0ela/nZ0uGBg+06yPgmxMSnqgblh8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":667742,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitd6jACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoHlg//aQtSXP6H+KKgzndaQDzveWwd7sE00HrkQL55J6IobvfOvuGj\r\nv+OY/t5AqjHg0udlx40moInWGg1m6OEpA92aelS19hNd+WFrDBnjPwH0jHDC\r\nEqBf6VQxrpfI3wY69bbIrUxeWDrX8iooiUAQQyjaE6eXnoSUHX1RMoit1PFv\r\nDjXYJ/f9prXwIidr5x1AnrHxWXGERya2gDt9ojCXX9+IPnt7KM6ijNRtyOfd\r\nIE3InBYNWtqRAxwgdmY5KYNoGsnsrEr5TI2+HTL02p8WO59U6pfpcMbJXu14\r\nNudYPbGdKYb3cup7SUCfZkliZ6wfyOkvcenXl/EwclrvDeKWe+MTHPOVkTlD\r\nrWMZqNbdPRJ4DilYRdtYsDYGI/dAesZxwMJj/A1cTdZFGLpFTyLohNb2f7Ty\r\nqVeLCQDu/Ww/5avEzHWIfYaqw9xhYOD/L06eQTzeJow6Sr4nC3EJRaIKpohc\r\nGRK4Jss8S5Mcp4zxZ5ig+K/BISTp3IDpHfTqnTn76QBZ6g/BhMwePnOWICKz\r\nTupkJZouGKl+x3A9aVfzkQY1EAv3rR5sgN84+KCXYwaToqYMgvSU0OSZlEWJ\r\nvHSqUCxWubXXaIHYniuhutyoRgrCNCjbbTgtoo0R/IEUzu7Va8hUGhSa0AWQ\r\n0bLAbOlg45rXq7SP9wRjMTw3A5Z7LTB70rg=\r\n=wCEK\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"roots":["__tests__"],"testEnvironment":"node","coverageDirectory":"coverage","coverageReporters":["lcov","json","html"],"testPathIgnorePatterns":["__tests__/__util__/"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"cce34974d75f2c05e40223d79fd2d0005436f9a5","scripts":{"flow":"flow","jest":"jest --coverage __tests__/**/*","lint":"eslint .","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","lint:fix":"npm run lint -- --fix","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","prepublishOnly":"safe-publish-latest && npm run lint && npm run flow && npm run jest && npm run build","generate-list-of-rules":"md-magic --path '**/*.md' --ignore 'node_modules'","generate-list-of-rules:check":"npm run generate-list-of-rules && git diff --exit-code README.md"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/jsx-eslint/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"8.12.1","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"greenkeeper":{"ignore":["jest","babel-jest"]},"_nodeVersion":"18.4.0","dependencies":{"has":"^1.0.3","semver":"^6.3.0","axe-core":"^4.4.2","minimatch":"^3.1.2","aria-query":"^4.2.2","emoji-regex":"^9.2.2","jsx-ast-utils":"^3.3.1","language-tags":"^1.0.5","@babel/runtime":"^7.18.3","array-includes":"^3.1.5","ast-types-flow":"^0.0.7","axobject-query":"^2.2.0","damerau-levenshtein":"^1.0.8"},"_hasShrinkwrap":false,"devDependencies":{"aud":"^2.0.0","jest":"^24.9.0","eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8","expect":"^24.9.0","rimraf":"^3.0.2","to-ast":"^1.0.0","flow-bin":"^0.147.0","minimist":"^1.2.6","@babel/cli":"^7.17.10","babel-jest":"^24.9.0","estraverse":"^5.3.0","in-publish":"^2.0.1","@babel/core":"^7.18.5","jscodeshift":"^0.7.1","object.assign":"^4.1.2","ast-types-flow":"^0.0.7","markdown-magic":"^2.6.0","@babel/register":"^7.17.7","babel-preset-airbnb":"^5.0.0","safe-publish-latest":"^2.0.0","@babel/eslint-parser":"^7.18.2","eslint-plugin-import":"^2.26.0","@technote-space/doctoc":"~2.4","eslint-plugin-flowtype":"^5.8.0 || ^8.0.3","eslint-config-airbnb-base":"^15.0.0","eslint-plugin-eslint-plugin":"^4.3.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.17.12"},"peerDependencies":{"eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.6.0_1656086179382_0.4839045379704454","host":"s3://npm-registry-packages"}},"0.1.0":{"name":"eslint-plugin-jsx-a11y","version":"0.1.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@0.1.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"ccc0184335c0b3e992529b914c7a5dbe2822f4ab","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-0.1.0.tgz","integrity":"sha512-vnk7OSBTA0NR8T3XpJF92OnWrRxgS1F56RJlGklkcYV+BI6MpY47hCiaJDPaCh8y1PA8rw7vU9x4j4vJfsgFBg==","signatures":[{"sig":"MEUCIQDS2bNBKy7U8/wvhR3WjRMB2jnrL7frWejyE3E6U+N0dQIgbqzJ04HwIiQTPrCliJJdysNt1iEw3OGV1trC4dYzf+g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"ccc0184335c0b3e992529b914c7a5dbe2822f4ab","engines":{"node":">=0.10.0"},"gitHead":"87e032e4b43ec821274d24af5f20578548b791a2","scripts":{"lint":"eslint  --config .eslintrc.js ./","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter nyan","build":"webpack --config .webpack.config.js --optimize-minimize","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.12","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","webpack":"^1.12.14","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^5.0.0","babel-loader":"^6.2.4","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-0.1.0.tgz_1456815235154_0.8753632646985352","host":"packages-6-west.internal.npmjs.com"}},"6.6.1":{"name":"eslint-plugin-jsx-a11y","version":"6.6.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.6.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"93736fc91b83fdc38cc8d115deedfc3091aef1ff","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz","fileCount":224,"integrity":"sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==","signatures":[{"sig":"MEYCIQC5yaQMbs9a4Ng4lRxwCLHnPnkQ6I0wAncuOBp+1+U+BwIhAJHLhSCqP5OpSUY5nZ7FBkTZ6Ernh9XzJyN6DdbOqopH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":674408,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2aDHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmop2RAAnK/urQZQ009ohS9df0IBa8NsAYxJraQHnclOC0lyE6P7uP8j\r\nt1K5X22KMCsMBCyEN6wk4l0notzS88hO1IcGAvJ6giuxJ7jaH8jYtx2eI5xf\r\nVLVcwQ8u7qMlqo8MY8TZqZM583XUwK3uiWilUI8MrMoZb1Vk7d5B7lhugN6r\r\nG2xBMGtd6kSPfAF0hgDnOHiWSE+uIU9IUg4zj9DkouAmBx2KzQST9QQrK2rJ\r\nI9nWol1Jc1cDnNny6f1LtE7uM9as3mzTdXK5Pxp8OyQelDPu0czCxi8C2EGO\r\nEK2RdTV+9BIsE5UjFEidLJVtFYeQSus58fvQ1b+MjtaQUy5zQOuj3CZiy0SF\r\n95GTsOgiaEu0BxSeBsxPI4ptII4VmidWLijtadfgUULOODsPqeLPKYY+B/Nm\r\ndsqBHXm+kKuBW48JS9q4Jyv47cFH5tgDWcP4iYZCM09y7QZHkmDn34KNx2Eo\r\nCk6v+njLOiHC/vab5KHImrEDk97Elyl3yRyVYaRkCOLXiLEEQ90Uaep9Y9t7\r\n3+CD0hmFL26bY2bz4DSO60enoGy4MPDKhtv0Yiaiqp0RvRq8RN07srwARjez\r\nbYynQVfwLEIoyIGWOdCNFt6jOgGozqoC8/NVeSojAA9KFYw9Mw5accQflviW\r\ntuxbFV4wZKz6MZvAAD343/Tb88Oiu0vFgkg=\r\n=pQF8\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"roots":["__tests__"],"testEnvironment":"node","coverageDirectory":"coverage","coverageReporters":["lcov","json","html"],"testPathIgnorePatterns":["__tests__/__util__/"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"d678a98ccd5dfada49e8a8be0f1b9e252700dd4f","scripts":{"flow":"flow","jest":"jest --coverage __tests__/**/*","lint":"eslint .","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","lint:fix":"npm run lint -- --fix","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","prepublishOnly":"safe-publish-latest && npm run lint && npm run flow && npm run jest && npm run build","generate-list-of-rules":"md-magic --path '**/*.md' --ignore 'node_modules'","generate-list-of-rules:check":"npm run generate-list-of-rules && git diff --exit-code README.md"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/jsx-eslint/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"8.13.2","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"greenkeeper":{"ignore":["jest","babel-jest"]},"_nodeVersion":"18.6.0","dependencies":{"has":"^1.0.3","semver":"^6.3.0","axe-core":"^4.4.3","minimatch":"^3.1.2","aria-query":"^4.2.2","emoji-regex":"^9.2.2","jsx-ast-utils":"^3.3.2","language-tags":"^1.0.5","@babel/runtime":"^7.18.9","array-includes":"^3.1.5","ast-types-flow":"^0.0.7","axobject-query":"^2.2.0","damerau-levenshtein":"^1.0.8"},"_hasShrinkwrap":false,"devDependencies":{"aud":"^2.0.0","jest":"^24.9.0","eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8","expect":"^24.9.0","rimraf":"^3.0.2","to-ast":"^1.0.0","flow-bin":"^0.147.0","minimist":"^1.2.6","@babel/cli":"^7.18.9","babel-jest":"^24.9.0","estraverse":"^5.3.0","in-publish":"^2.0.1","@babel/core":"^7.18.9","jscodeshift":"^0.7.1","object.assign":"^4.1.2","ast-types-flow":"^0.0.7","markdown-magic":"^2.6.0","@babel/register":"^7.18.9","babel-preset-airbnb":"^5.0.0","safe-publish-latest":"^2.0.0","@babel/eslint-parser":"^7.18.9","eslint-plugin-import":"^2.26.0","@technote-space/doctoc":"~2.4","eslint-plugin-flowtype":"^5.8.0 || ^8.0.3","eslint-config-airbnb-base":"^15.0.0","eslint-plugin-eslint-plugin":"^4.3.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.18.9"},"peerDependencies":{"eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.6.1_1658429639339_0.9387688476096498","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"eslint-plugin-jsx-a11y","version":"3.0.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@3.0.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"38f22742a5752a8e72db693d7cd86e13a357da25","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-3.0.1.tgz","integrity":"sha512-88gXLEknN/lqXNNdf52RyoHozqehczYcrKRQPlr/nrVb+50CqqNKQL+iAsTlSWPyxmRTGzxKcIXYANwxfEOCRg==","signatures":[{"sig":"MEQCIEXCXP3fF+NgqAxivSGl4LELJInwb3YBD3MzUTCUQHKgAiBmlaP1KrAjS2a8iInxOdztaWrgPqb3ji7ruAEJSwd09A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"jest":{"coverageDirectory":"reports","coverageReporters":["lcov"]},"main":"lib/index.js","_from":".","_shasum":"38f22742a5752a8e72db693d7cd86e13a357da25","engines":{"node":">=4.0"},"gitHead":"2d6426f2dbc5fed2fa92a2f4af65ffab4be6e59f","scripts":{"lint":"eslint  --config .eslintrc src tests","test":"jest --coverage","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint:fix","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.9.1","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"6.1.0","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"jest":"^16.0.1","eslint":"^3.9.1","rimraf":"^2.5.2","babel-cli":"^6.14.0","coveralls":"^2.11.8","babel-core":"^6.14.0","babel-jest":"^16.0.0","babel-eslint":"^7.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.14.0","eslint-plugin-import":"^2.2.0","eslint-config-airbnb-base":"^10.0.1"},"peerDependencies":{"eslint":"^2.10.2 || 3.x"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-3.0.1.tgz_1478519953347_0.3698755099903792","host":"packages-18-east.internal.npmjs.com"}},"3.0.2":{"name":"eslint-plugin-jsx-a11y","version":"3.0.2","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@3.0.2","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"9f0eabcafde3d2a2600d96a66adb90d099e841fe","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-3.0.2.tgz","integrity":"sha512-0wbYZ2hSX8E9cvFPjxDb+qZrrewTjMDU0KYGgkUy8vVcNSEwoYEQntfXgJPK1zDicWwGhOoHygV510TXUKUNLQ==","signatures":[{"sig":"MEUCIGUgfcIuEsSCrsqPXdd45DyUExkZ7shBZZ3MF4pbfBxGAiEA0jHJ3MD+u2+2vmtCKxeZgdX7dLGC8RcighpYNTIiefY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"jest":{"coverageDirectory":"reports","coverageReporters":["lcov"]},"main":"lib/index.js","_from":".","_shasum":"9f0eabcafde3d2a2600d96a66adb90d099e841fe","engines":{"node":">=4.0"},"gitHead":"8bddf7e889fd608852cdd42510c4ac3fff15fdf1","scripts":{"lint":"eslint  --config .eslintrc src tests","test":"jest --coverage","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint:fix","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.8.9","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"6.2.0","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"jest":"^17.0.1","eslint":"^3.9.1","rimraf":"^2.5.2","babel-cli":"^6.14.0","coveralls":"^2.11.8","babel-core":"^6.14.0","babel-jest":"^17.0.1","babel-eslint":"^7.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.14.0","eslint-plugin-import":"^2.2.0","eslint-config-airbnb-base":"^10.0.1"},"peerDependencies":{"eslint":"^2.10.2 || 3.x"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-3.0.2.tgz_1481741547540_0.4272751344833523","host":"packages-12-west.internal.npmjs.com"}},"2.0.0":{"name":"eslint-plugin-jsx-a11y","version":"2.0.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@2.0.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"92540f1088511c964dce24258fe432296941dae3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-2.0.0.tgz","integrity":"sha512-lLt+duN5F1oXXRWIl3ESsBk+mgQT5886AfMuQ+x4C00kLNP0+LqVCmv5t0IBpCDIrmdNcUTp35odzNWCJS3edA==","signatures":[{"sig":"MEQCIGDtZJqdHw+KCjpEF5Q09RXmoAeRs2usspltpbfu1d5MAiAsQOoucdJLF/1uFx/l8nOLvZNpl5GoWkg3GN0ca+4yTg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"92540f1088511c964dce24258fe432296941dae3","engines":{"node":">=0.10.0"},"gitHead":"7a1e9c5f012f68c64a9cb89c1d980cbfcc8d3d23","scripts":{"lint":"eslint  --config .eslintrc src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.8.6","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"5.11.1","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.10.2","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0","eslint-plugin-import":"^1.8.1","eslint-config-airbnb-base":"^3.0.1"},"peerDependencies":{"eslint":"^2.10.2 || 3.x"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-2.0.0.tgz_1468357773801_0.25119259068742394","host":"packages-16-east.internal.npmjs.com"}},"2.0.1":{"name":"eslint-plugin-jsx-a11y","version":"2.0.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@2.0.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"f3be0689f320c4067645625f69a2e493b532bf95","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-2.0.1.tgz","integrity":"sha512-mS3M4x3d6IWsCuoAR0u+rwk4CXL8X8Toq0X/Nvo0bPbBQ4boVbXMH2ntbY3XrV9usHqO7XntldTE9yA+9Bglew==","signatures":[{"sig":"MEQCIFwBrmmGei+H4nUpDD4svtf3KA7nYQGVa+LAfnJ9MNUBAiArRXXdlnP9ykigRNLa48ANSnBdUJzXV3+8LVpBx6YGig==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"f3be0689f320c4067645625f69a2e493b532bf95","engines":{"node":">=0.10.0"},"gitHead":"7e215a27ecc7dc77cba9b3721dc0c712fada07ac","scripts":{"lint":"eslint  --config .eslintrc src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.8.6","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"5.11.1","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.10.2","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0","eslint-plugin-import":"^1.8.1","eslint-config-airbnb-base":"^3.0.1"},"peerDependencies":{"eslint":"^2.10.2 || 3.x"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-2.0.1.tgz_1468427974231_0.9658283789176494","host":"packages-12-west.internal.npmjs.com"}},"2.2.2":{"name":"eslint-plugin-jsx-a11y","version":"2.2.2","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@2.2.2","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"ac893b4f9ecb7534bc0373ff6a47388835d3a859","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-2.2.2.tgz","integrity":"sha512-PDojj8+tE37SEKH8bx63FWQLJ2w40o1bxoE17sotC0xAPEtCzspA2XZa3zQMlZXyQbwOjWzw4RUWVsixbmSqiQ==","signatures":[{"sig":"MEYCIQDu9bWyKeNR2lxTQdSE5O60o/Zf0ZwJorFhwY+Uze3migIhAL+vfwEY7uxFp+F/Yz4TKPKr+j9KmLw6IB3Nkisz0pxz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"ac893b4f9ecb7534bc0373ff6a47388835d3a859","engines":{"node":">=4.0"},"gitHead":"ef757f0438812897902a469d004b4bc655c896d1","scripts":{"lint":"eslint  --config .eslintrc src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint:fix","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.8.6","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"5.11.1","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"mocha":"^3.0.0","eslint":"^3.0.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0","eslint-plugin-import":"^1.8.1","eslint-config-airbnb-base":"^7.0.0"},"peerDependencies":{"eslint":"^2.10.2 || 3.x"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-2.2.2.tgz_1473695827975_0.4182706894353032","host":"packages-12-west.internal.npmjs.com"}},"2.2.3":{"name":"eslint-plugin-jsx-a11y","version":"2.2.3","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@2.2.3","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"4e35cb71b8a7db702ac415c806eb8e8d9ea6c65d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-2.2.3.tgz","integrity":"sha512-OS+axp7UzxE7fmiTHiv9GEavlCfYFIXLQvyEZLMOAJB1/wALDVfWi2KPlj9TKbP97cof/7ZSVwaG6lpUKq8Tog==","signatures":[{"sig":"MEUCIF6yHh0AqHAglEGcseLkqQboj15+C1NVkBMlJvYvNtheAiEA+/3h7nSj+TAhzVK0seB6rt6Xttx4tLtfYOCkDaB/Tf8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"4e35cb71b8a7db702ac415c806eb8e8d9ea6c65d","engines":{"node":">=4.0"},"gitHead":"9b9c72b051d0518e317a4fb420270cfd85737e3c","scripts":{"lint":"eslint  --config .eslintrc src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint:fix","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.9.1","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"6.1.0","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"mocha":"^3.0.0","eslint":"^3.0.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.14.0","coveralls":"^2.11.8","babel-core":"^6.14.0","babel-eslint":"^7.0.0","babel-preset-es2015":"^6.14.0","eslint-plugin-import":"^1.16.0","eslint-config-airbnb-base":"^8.0.0"},"peerDependencies":{"eslint":"^2.10.2 || 3.x"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-2.2.3.tgz_1475940924128_0.7890685545280576","host":"packages-16-east.internal.npmjs.com"}},"2.2.0":{"name":"eslint-plugin-jsx-a11y","version":"2.2.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@2.2.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"d2bc7b0306a682ec661bd79dc60a69198011caa0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-2.2.0.tgz","integrity":"sha512-shKjulUbUP5Vmi9Q6qe8TTyaiigQr/eU3YLHnXc1SMkma/4OH+z8+jqbj2DiuvYlcqoreEmQwEXAVf0zh1HQ6w==","signatures":[{"sig":"MEQCIEta9ToK52fEJzEuFzlzkCN49Hf1i4nRLzbwTl7LIl5HAiB7zv/Y++khrl/zSy6W/yUgVriWjRTAtQJGaNe6FBvRog==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"d2bc7b0306a682ec661bd79dc60a69198011caa0","engines":{"node":">=0.10.0"},"gitHead":"8c8f29889c7505e80a6af27e6cadfaa4e9e42bcd","scripts":{"lint":"eslint  --config .eslintrc src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","lint:fix":"npm run lint -- fix","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.9.1","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"6.1.0","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"mocha":"^3.0.0","eslint":"^3.0.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0","eslint-plugin-import":"^1.8.1","eslint-config-airbnb-base":"^5.0.0"},"peerDependencies":{"eslint":"^2.10.2 || 3.x"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-2.2.0.tgz_1472220831824_0.6144239213317633","host":"packages-16-east.internal.npmjs.com"}},"2.2.1":{"name":"eslint-plugin-jsx-a11y","version":"2.2.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@2.2.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"1919fab212cd73a95eab2ac12a028793f37e4196","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-2.2.1.tgz","integrity":"sha512-5K9FjeX7rHQD9HhGWolJj+y1DhvyZ1LAX0/l+Po5W7QcsiUenmPoSYJK4GN7uiQNAG9R5RuDDG5yiOMj737ixQ==","signatures":[{"sig":"MEYCIQD8uAcVq834d+tEcJodvogkucaLeHUygp5XaM7o2DtldgIhAJ42i2XksHtqjx+KvUnZxMX+xzna620yHTO2JWmLpgFy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"1919fab212cd73a95eab2ac12a028793f37e4196","engines":{"node":">=4.0"},"gitHead":"c6637c66e2363c3992924ea80bc3c34a38cd9b77","scripts":{"lint":"eslint  --config .eslintrc src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint:fix","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.8.6","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"5.11.1","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"mocha":"^3.0.0","eslint":"^3.0.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0","eslint-plugin-import":"^1.8.1","eslint-config-airbnb-base":"^5.0.0"},"peerDependencies":{"eslint":"^2.10.2 || 3.x"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-2.2.1.tgz_1472676593839_0.5255585331469774","host":"packages-16-east.internal.npmjs.com"}},"1.0.3":{"name":"eslint-plugin-jsx-a11y","version":"1.0.3","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.0.3","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"b26efda4b426c19ac83d546021fc909fa91705b9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.0.3.tgz","integrity":"sha512-KiErFxPVPxXDch0rxkwLEjEDMsIL7GuKYynXfPygh8VQFmYj5qeW6Qv6SfGOyac8Q6soCit09x7ap3AYQ7xm5w==","signatures":[{"sig":"MEUCIHnJI3w9JB33fquVaVYzSlJaLtb9AUOntMNnFHRQlfxaAiEAuWs0gwFXohtw05O2PlqpCg47XuD5koQS59Y2fSAPAyE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"b26efda4b426c19ac83d546021fc909fa91705b9","engines":{"node":">=0.10.0"},"gitHead":"a62360deb347333f4c92d685b90872a9d204bcdc","scripts":{"lint":"eslint  --config .eslintrc.js .","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.12","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.6","dependencies":{"object-assign":"^4.0.1"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.0.3.tgz_1461637206055_0.34957364085130394","host":"packages-16-east.internal.npmjs.com"}},"1.2.1":{"name":"eslint-plugin-jsx-a11y","version":"1.2.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.2.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"5d27ae197356e74d02645ce07065abf5b7bb199f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.2.1.tgz","integrity":"sha512-OtusAFjkdnSD3135j+VEo+9faZCpqKiqf5lC1b1k1EaXww25LrbyAqXTGT7lkyN/eHWzmRYlnXzswIo8Y0gohg==","signatures":[{"sig":"MEYCIQDUq37DqukXIxt5VMMlBX/z+WwqGR1PPSGS8gLDctvyGgIhANoYpMrXr152T1iHQGKt3UNK8coTqUnjchBQrPI+J5MS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"5d27ae197356e74d02645ce07065abf5b7bb199f","engines":{"node":">=0.10.0"},"gitHead":"5d4fa08e206f915d2e7ff87a3e242166ea569e7a","scripts":{"lint":"eslint  --config .eslintrc.js .","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.9.1","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"6.1.0","dependencies":{"object-assign":"^4.0.1"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.2.1.tgz_1463676453896_0.32962232851423323","host":"packages-16-east.internal.npmjs.com"}},"6.3.1":{"name":"eslint-plugin-jsx-a11y","version":"6.3.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.3.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"99ef7e97f567cc6a5b8dd5ab95a94a67058a2660","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.3.1.tgz","fileCount":217,"integrity":"sha512-i1S+P+c3HOlBJzMFORRbC58tHa65Kbo8b52/TwCwSKLohwvpfT5rm2GjGWzOHTEuq4xxf2aRlHHTtmExDQOP+g==","signatures":[{"sig":"MEQCIFjuMoyFIpcc+Q1Hnl3ZbsvunPdkXk3De9hhSbXnKWvXAiB9kQl2bINUryQGNhy25a/FXg1BNe93Dc1V0pqBF0EoMA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":603878,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe7S4zCRA9TVsSAnZWagAAQ4IP/RNBSaQ5vpCsVTi4o75b\np5VyJqdwZOyds+isHUZ8R1Pp5MYbwlp5g8VvLttS6S7k9UjagpW5St6I1Qxl\n4LQQL5qt6rp0Pfxls62GP74cFbVsEL26/5kTQIqeWN7DTRYl9lzv4WvFD2vT\nreJI/6jHQRyTIAprbrMU8bysehVgiokSH2ArhxSyftY2PU+P4vguu79OS6bL\nm+9ykOe52ir2OFgmgO+VNqAZaepxcSqnjwaSPgMjxv5wujjPAxORn7z7IHOB\nIeosoCUa/UBJSXzbZsTdQlRf8iHMkp3Icd0kjnxZgM/5k1bV6IZhe4oENBYu\ng4eZqL8V8JJHGQ2+6ILiIhsvSD38bMC2j2ZJwMPpsVkYTTteieB916BSDJwO\nmt44KkQo1RYq7JkJwCOpYNiCycvepDpBWSJzfJhCMPtLYlhKL1pdRZaILBhi\nmXYpQHBrWtzMBjzgSZN5tsQtDQZ+l+3E9PnIy638HydkBxYs1SSol+RP0mQs\nfISH1xhSfh5UYJcfBIY3u15tYjGHJKLEznk7jlmsLNq9UxC6flOBw/E9/fF9\nXCTBr25NbHrvB9f7TxU95NnnOKDTDx3vEnQLYsTAmYpbjrgNXgsP3etRQaXN\nZjCXYbTcxpOWuKQjouOZnP9HMIGnuFJVjFbeH5zHZeiZAFgE/LFCQ90qDpFI\nmeS5\r\n=8weO\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"roots":["__tests__"],"testEnvironment":"node","coverageDirectory":"reports","coverageReporters":["lcov","html"],"testPathIgnorePatterns":["__tests__/__util__/"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"1614b85d3e060d77113a60351ad4b0237c05f159","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","jest":"jest --coverage __tests__/**/*","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"safe-publish-latest && not-in-publish || (npm run lint && npm run flow && npm run jest && npm run build)"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"6.14.5","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"greenkeeper":{"ignore":["jest","babel-jest"]},"_nodeVersion":"14.4.0","dependencies":{"has":"^1.0.3","axe-core":"^3.5.4","aria-query":"^4.2.2","emoji-regex":"^9.0.0","jsx-ast-utils":"^2.4.1","language-tags":"^1.0.5","@babel/runtime":"^7.10.2","array-includes":"^3.1.1","ast-types-flow":"^0.0.7","axobject-query":"^2.1.2","damerau-levenshtein":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.9.0","eslint":"^3 || ^4 || ^5 || ^6 || ^7","expect":"^24.3.1","rimraf":"^3.0.2","to-ast":"^1.0.0","flow-bin":"^0.113.0","minimist":"^1.2.5","coveralls":"^3.1.0","@babel/cli":"^7.10.1","babel-jest":"^24.9.0","estraverse":"^5.0.0","in-publish":"^2.0.1","@babel/core":"^7.10.2","jscodeshift":"^0.7.0","babel-eslint":"^10.1.0","object.assign":"^4.1.0","babel-preset-airbnb":"^5.0.0","safe-publish-latest":"^1.1.4","eslint-plugin-import":"^2.21.2","eslint-plugin-flowtype":"^5.1.3","eslint-config-airbnb-base":"^14.2.0","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^3 || ^4 || ^5 || ^6 || ^7"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.3.1_1592602162444_0.40513229821447694","host":"s3://npm-registry-packages"}},"1.0.4":{"name":"eslint-plugin-jsx-a11y","version":"1.0.4","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.0.4","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"32799fd59088e4340c3cc954de860132a8d04d3c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.0.4.tgz","integrity":"sha512-1V85QiszIX2FKzlmXwZ9mfdjJoHSm+eFItIT9D/Uzfep/Sz97ySMV2HDIObV02aRsAHCRKlmXy+ZosxgLnPizA==","signatures":[{"sig":"MEYCIQCCUeDembu6R1ZSolRm/fFqEn0eH0hHlcy/KDCg3TpMLgIhAJSeY9qDeDJuBTX+4aWYjI7f47DVnsK/JU/nVVPM6042","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"32799fd59088e4340c3cc954de860132a8d04d3c","engines":{"node":">=0.10.0"},"gitHead":"e4da9cf9771c29301f491a2e6c9476887d6f7b9f","scripts":{"lint":"eslint  --config .eslintrc.js .","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.12","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.6","dependencies":{"object-assign":"^4.0.1"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.0.4.tgz_1461870326583_0.8569057343993336","host":"packages-12-west.internal.npmjs.com"}},"1.2.2":{"name":"eslint-plugin-jsx-a11y","version":"1.2.2","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.2.2","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"2b56f82f3647a2ae13a7dc6be66ecf4c08fcd30c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.2.2.tgz","integrity":"sha512-BHthFfpYgWLHqdntmjjawy8zQ7LLk65k3Gvf7/JveILoq5/7FnItcZmYVaEr6MABnCXMtxf+mWpWzgJ/JNhQEg==","signatures":[{"sig":"MEUCICjRM7Rpp7G8FFKZdHNKPUtRagVNE7aSl8tsDH6EFwAvAiEA5te85Lzd8konPm7FQlCiMUCX22I5nVITg1HFBedgiN0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"2b56f82f3647a2ae13a7dc6be66ecf4c08fcd30c","engines":{"node":">=0.10.0"},"gitHead":"4c54152cb356e3010b1c129fd0cc2b4e2c85c979","scripts":{"lint":"eslint  --config .eslintrc.js .","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.9.1","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"6.1.0","dependencies":{"object-assign":"^4.0.1"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.2.2.tgz_1463739452570_0.29407698195427656","host":"packages-12-west.internal.npmjs.com"}},"1.4.0":{"name":"eslint-plugin-jsx-a11y","version":"1.4.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.4.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"2965dc9e3fe7c29b4d5e70a26546a7445d652ca6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.4.0.tgz","integrity":"sha512-b96swUTfPuAD9x/QX+5Pup92iP42usnph1o4DWwItk3FvSBkBZZgWa4UfQ3aTGHfWWPZ0ltyGy0pJoKz+XIcAA==","signatures":[{"sig":"MEUCIHWhzXZWa71DmsCrIl59UNKUAniIr/C5SUPFy+SnKxZAAiEA0W8ysQ6QLC5yCCfnZvHour4qEI/VLaaRh7aSWZf4VE8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"2965dc9e3fe7c29b4d5e70a26546a7445d652ca6","engines":{"node":">=0.10.0"},"gitHead":"0bb56f4fe3f9af36e6ee9572c9ae00ab79cf79f2","scripts":{"lint":"eslint  --config .eslintrc.js .","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.9.1","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"6.1.0","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.4.0.tgz_1465574977145_0.07007915200665593","host":"packages-16-east.internal.npmjs.com"}},"6.5.0":{"name":"eslint-plugin-jsx-a11y","version":"6.5.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.5.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"291680831cef60acbce51ab81e66dbca0b2ab3d4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.0.tgz","fileCount":220,"integrity":"sha512-4luUql2LFmDENUGzLx7ra+2CiOq6SWaQ3Dxr3wO0qEeoAIC5P2Xrc08BdINRJkHOAfwIjzP4eI9+wrZy703Oug==","signatures":[{"sig":"MEQCIHlK/yUrg0U5R4d3H9qC+8g1QgGq7PQli5D62KGASm81AiA3+Vsl6ZAeOOVJ9d9F1fCQaqkdZdKeqSWZBPb6MEf/aw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":632490},"jest":{"roots":["__tests__"],"testEnvironment":"node","coverageDirectory":"coverage","coverageReporters":["lcov","json","html"],"testPathIgnorePatterns":["__tests__/__util__/"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"f8c40017a0a0806555b37bf644e7d5ffa9ca79b3","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","jest":"jest --coverage __tests__/**/*","lint":"eslint .","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","lint:fix":"npm run lint -- --fix","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","prepublishOnly":"safe-publish-latest && npm run lint && npm run flow && npm run jest && npm run build"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"deprecated":"Build process had a bug; upgrade to v6.5.1","repository":{"url":"git+https://github.com/jsx-eslint/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"8.1.0","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"greenkeeper":{"ignore":["jest","babel-jest"]},"_nodeVersion":"17.0.1","dependencies":{"has":"^1.0.3","axe-core":"^4.3.5","minimatch":"^3.0.4","aria-query":"^4.2.2","emoji-regex":"^9.2.2","jsx-ast-utils":"^3.2.1","language-tags":"^1.0.5","@babel/runtime":"^7.16.3","array-includes":"^3.1.4","ast-types-flow":"^0.0.7","axobject-query":"^2.2.0","damerau-levenshtein":"^1.0.7"},"_hasShrinkwrap":false,"devDependencies":{"aud":"^1.1.5","jest":"^24.9.0","eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8","expect":"^24.9.0","rimraf":"^3.0.2","to-ast":"^1.0.0","flow-bin":"^0.147.0","minimist":"^1.2.5","@babel/cli":"^7.16.0","babel-jest":"^24.9.0","estraverse":"^5.3.0","in-publish":"^2.0.1","@babel/core":"^7.16.0","jscodeshift":"^0.7.1","object.assign":"^4.1.2","babel-preset-airbnb":"^5.0.0","safe-publish-latest":"^2.0.0","@babel/eslint-parser":"^7.16.3","eslint-plugin-import":"^2.25.2","eslint-plugin-flowtype":"^5.8.0 || ^8.0.2","eslint-config-airbnb-base":"^15.0.0","eslint-plugin-eslint-plugin":"^4.0.2","@babel/plugin-transform-flow-strip-types":"^7.16.0"},"peerDependencies":{"eslint":"^3 || ^4 || ^5 || ^6 || ^7 || ^8"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.5.0_1636530300260_0.3335743128332387","host":"s3://npm-registry-packages"}},"1.2.3":{"name":"eslint-plugin-jsx-a11y","version":"1.2.3","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.2.3","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"03ac3b6fe33117de7410f32b0db1cbc4ceb5815b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.2.3.tgz","integrity":"sha512-GVUzyG1jr74fULkaali/Uotf+1B+D8KBWxa5/yTK/keHE/P9z6ke5sgC8Ep9fHqCq0RtO3vvTiVUKBbbHKdmSw==","signatures":[{"sig":"MEUCIQD5/+wQqPRCp5w4PXmeFdoYlgbzAUYwaM9XnhilyQacZAIgX1doPbKDUslrmkmc8dZ6KIza8q1ZHkX7VLV4wg6lWo4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"03ac3b6fe33117de7410f32b0db1cbc4ceb5815b","engines":{"node":">=0.10.0"},"gitHead":"1a8f7a8576aff1860a4b39241bb7cc67af765f32","scripts":{"lint":"eslint  --config .eslintrc.js .","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.9.1","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"6.1.0","dependencies":{"object-assign":"^4.0.1"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.2.3.tgz_1464886938402_0.9387456334661692","host":"packages-12-west.internal.npmjs.com"}},"1.4.1":{"name":"eslint-plugin-jsx-a11y","version":"1.4.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.4.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"9eba24c2c4521e7f66098b3147803d48977b6f1c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.4.1.tgz","integrity":"sha512-yG9IuKgeKy5vGkVhI8J48dmjJVH/Un7o1dqbT0a23UHhU/DeiCRL46zmKBe4O4f1djPd2wyMK/e/ZHeinV/Q6Q==","signatures":[{"sig":"MEYCIQCNydKrmkOLXzo1J0/xRcEmFWfAOoNiny0cMQSC8x2ZHQIhAN4i4eY9WpD7GnvgkNo/EtMdxJfwIrQVDX2VszGEst/P","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"9eba24c2c4521e7f66098b3147803d48977b6f1c","engines":{"node":">=0.10.0"},"gitHead":"c7d973d0a9716ddf1469931d2ba7ee5994c2b982","scripts":{"lint":"eslint  --config .eslintrc src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.9.1","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"6.1.0","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0","eslint-plugin-import":"^1.8.1","eslint-config-airbnb-base":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.4.1.tgz_1465588624482_0.8208529348485172","host":"packages-12-west.internal.npmjs.com"}},"6.1.1":{"name":"eslint-plugin-jsx-a11y","version":"6.1.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.1.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"7bf56dbe7d47d811d14dbb3ddff644aa656ce8e1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.1.1.tgz","fileCount":205,"integrity":"sha512-JsxNKqa3TwmPypeXNnI75FntkUktGzI1wSa1LgNZdSOMI+B4sxnr1lSF8m8lPiz4mKiC+14ysZQM4scewUrP7A==","signatures":[{"sig":"MEYCIQCNPXrWM+BbBfTo+hbBe/qYrg9/jG7tCdyQ/qAjlhgb/gIhAOdKaVXv/LZS9YXjKdgqKfuY2FzSQfvU3FEzIT/X3T7O","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":735770,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbSNDaCRA9TVsSAnZWagAAKMcP/0/WQcYx1Ia9lxFbDLeE\nkfyCeqPTrai5UitJk3j6LGZgCrVgHi9aL7m8dqbpg3u+68cs97zymP/21sni\nCY9gxRqBtWjO+2fEaftGGN3KLB53jiuu6137WtrFCATvzgQIYyCw6fgCrM5Z\nyAcgNZFQURm9+BEZQntWIzwzSOIedV/1koaUdpjJnvYxEVPBkOHzK6FZbRnB\nMatqeyENL3V+7dpA/w/g42S3WA/2kEt+c4hpX66pRhwbIgMulC3SO7iT6DyI\nj7dRpGcL7pxeTcYMC6xqboZ6cwkkmTQOZhc/hjeB6vvenNzRsym5T2eM0XA8\ns7OVVxjUfm1sD4eRqwzUGVaaszRwI9UDUdPC32pcsHbLdUW+TL91dmd/oRV+\nnqHE7d00ROr7REpa+BowqDO67GrUeqNWs5B41kN2vmAwZCKwvQcZ8v4xR3t0\n5RRJY/m0ygeS8vPVKD2ZcUu2gMpP2pyrL9WaOfhyQsdaIcMLGLtFtlqr9OWq\n6ARywgOAVgDCuNmv1fcADS6I5PUlnvJiZb3kSqhzEKrwH40bZJ8MBBqJ0zew\nBqM5XRYRIQtToKIPyDsZv/9YctPV0rf4clHOTAIHNo+2UO3gXnguNMqFL6cW\nYpwxqZBdz0HkwmFkJU9DJpbXMdyq7Bdzd6ySmPXyzwWVhZ8X9F07Wvxx/ICl\nC1Dw\r\n=0dhv\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"roots":["<rootDir>/__tests__"],"testEnvironment":"node","coverageDirectory":"reports","coverageReporters":["lcov","html"],"testPathIgnorePatterns":["<rootDir>/__tests__/__util__"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"7aacdc9664e419957b3b2d0120d2aa4f73b77282","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","jest":"jest --coverage __tests__/**/*","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"safe-publish-latest && not-in-publish || (npm run lint && npm run flow && npm run jest && npm run build)"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"5.6.0","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"greenkeeper":{"ignore":["jest","babel-jest"]},"_nodeVersion":"8.11.3","dependencies":{"has":"^1.0.3","aria-query":"^3.0.0","emoji-regex":"^6.5.1","jsx-ast-utils":"^2.0.1","array-includes":"^3.0.3","ast-types-flow":"^0.0.7","axobject-query":"^2.0.1","damerau-levenshtein":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^21.2.1","eslint":"^4.19.1","expect":"^21.2.1","rimraf":"^2.6.2","to-ast":"^1.0.0","flow-bin":"^0.66.0","minimist":"^1.2.0","babel-cli":"^6.26.0","coveralls":"^3.0.1","babel-core":"^6.26.3","babel-jest":"^21.2.0","in-publish":"^2.0.0","jscodeshift":"^0.4.0","babel-eslint":"^8.2.5","object.assign":"^4.1.0","babel-polyfill":"^6.26.0","babel-preset-es2015":"^6.24.1","safe-publish-latest":"^1.1.1","eslint-plugin-import":"^2.13.0","eslint-plugin-flowtype":"^2.49.3","eslint-config-airbnb-base":"^13.0.0","babel-plugin-transform-flow-strip-types":"^6.22.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es2015-template-literals":"^6.22.0"},"peerDependencies":{"eslint":"^3 || ^4 || ^5"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.1.1_1531498714368_0.23577285449440755","host":"s3://npm-registry-packages"}},"1.4.2":{"name":"eslint-plugin-jsx-a11y","version":"1.4.2","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.4.2","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"14871bbc2d62810ddb607d6e6de8b3e03874ad31","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.4.2.tgz","integrity":"sha512-RNc6NRJ9HRoqZJ6eXuemhFxvrAGoML3gHXbGCX+9YEPCbxJgKbliF1/g/vE+PyMPNmHkVWoilPrYAMmYeyQKqg==","signatures":[{"sig":"MEQCIDxc0f2EDckk99iTysN9zkAdF2MdDtFYPBNJgkdkLHRkAiBZQTK9IOtvPP9TsjfGGlAyycmZh6XWjARN5auEoYSy7w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"14871bbc2d62810ddb607d6e6de8b3e03874ad31","engines":{"node":">=0.10.0"},"gitHead":"5e04ad9606ec35d52e2f6faed49571208cb7419a","scripts":{"lint":"eslint  --config .eslintrc src tests","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.9.1","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"6.1.0","dependencies":{"jsx-ast-utils":"^1.0.0","object-assign":"^4.0.1","damerau-levenshtein":"^1.0.0"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0","eslint-plugin-import":"^1.8.1","eslint-config-airbnb-base":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.4.2.tgz_1465595937226_0.5984484036453068","host":"packages-16-east.internal.npmjs.com"}},"6.1.2":{"name":"eslint-plugin-jsx-a11y","version":"6.1.2","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.1.2","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"69bca4890b36dcf0fe16dd2129d2d88b98f33f88","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.1.2.tgz","fileCount":205,"integrity":"sha512-7gSSmwb3A+fQwtw0arguwMdOdzmKUgnUcbSNlo+GjKLAQFuC2EZxWqG9XHRI8VscBJD5a8raz3RuxQNFW+XJbw==","signatures":[{"sig":"MEUCIQCc1yl0NNZIdkf+qz93wA3NDdkaJckIeA4Gf5h2/ZltngIgZH8wpvk3PNGtnZglaZwUorwwItQc19BnqKNTSOM7Scc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":739274,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbt4C4CRA9TVsSAnZWagAAwEsP/0ij7ZI1L95cIUcpEvVn\nBNjJkvFjOm6PIkoJGl+nh3rmwlFAVCSrygQjf4bEcJEIc0zpUOWMvJWSr8jp\nMURjt8jnX153BvMOIN3QYzNHG1iAnBT4KghqsgpsgKV60q73FgOJSGpgNkRO\nDqK5GmN7MZp5qlIaT5Qh0cYXCdgarH+rvFgXepkdvm+SbllMrKvC2CVMVFyH\ngNU2knnTiMRDQmozozSPmkkrOVCgsqudswaGIbkaPC8hj+VquOFsdXUUHkXM\nkIUm6rrb1ht7Ap4S1pPXu3Kh3hCWXIbpd9gxAQ95B6VvBPPFgfaQxtqtlj9u\nEAoLVng0FK8UKRbf19xrOgp2TkBWvkYBhja28WRtvEZvVOfYDqGWPVNBNfVF\naecp5Xnni17IOXGqLdxDlvs+IsymZW7wUdsXPuSkGytJ7Brs9Sh++dgXyFh0\n+UsSVXW32kdr61IPHUeJvLv+iegEhuVb2UOPxw/Hz2kWiPUsxKVXyFa5ZICn\ngKViqKiL3R7zjIU6RezY5NLq1vZsiZDeNhWAwimgTNb497kfzJBPxUXMdqSS\nCHBGcISSl86C3Of/BURwQb0PjjzMkBJLIBi4YBrLy5jtCBsOUYd6+Ty1tS47\nvu7BpZ5kzdw00udbNBS7FFLCRfYcC3sQbDiz8xB3UqbMVfkI7vTsyUKie65y\nLTMM\r\n=dMk3\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"roots":["<rootDir>/__tests__"],"testEnvironment":"node","coverageDirectory":"reports","coverageReporters":["lcov","html"],"testPathIgnorePatterns":["<rootDir>/__tests__/__util__"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"c538d359dd7981a2898657aefda11dbe3eec258c","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","jest":"jest --coverage __tests__/**/*","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"safe-publish-latest && not-in-publish || (npm run lint && npm run flow && npm run jest && npm run build)"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"5.6.0","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"greenkeeper":{"ignore":["jest","babel-jest"]},"_nodeVersion":"8.11.3","dependencies":{"has":"^1.0.3","aria-query":"^3.0.0","emoji-regex":"^6.5.1","jsx-ast-utils":"^2.0.1","array-includes":"^3.0.3","ast-types-flow":"^0.0.7","axobject-query":"^2.0.1","damerau-levenshtein":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^21.2.1","eslint":"^4.19.1","expect":"^21.2.1","rimraf":"^2.6.2","to-ast":"^1.0.0","flow-bin":"^0.66.0","minimist":"^1.2.0","babel-cli":"^6.26.0","coveralls":"^3.0.1","babel-core":"^6.26.3","babel-jest":"^21.2.0","estraverse":"^4.2.0","in-publish":"^2.0.0","jscodeshift":"^0.4.0","babel-eslint":"^8.2.5","object.assign":"^4.1.0","babel-polyfill":"^6.26.0","babel-preset-es2015":"^6.24.1","safe-publish-latest":"^1.1.1","eslint-plugin-import":"^2.13.0","eslint-plugin-flowtype":"^2.49.3","eslint-config-airbnb-base":"^13.0.0","babel-plugin-transform-flow-strip-types":"^6.22.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es2015-template-literals":"^6.22.0"},"peerDependencies":{"eslint":"^3 || ^4 || ^5"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.1.2_1538752694959_0.6350320905083475","host":"s3://npm-registry-packages"}},"6.3.0":{"name":"eslint-plugin-jsx-a11y","version":"6.3.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.3.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"f6dc42b0a34fd38973b7f8888cb55ac7dab34984","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.3.0.tgz","fileCount":217,"integrity":"sha512-tHSWX2jXlAaiI45YuEPi3KXJ7MihvQWUZMR9UNB4bUVYvAamwr6AwCm5dgOZOV2rC2qVMjBtjNshBE46n4IG6w==","signatures":[{"sig":"MEUCIQC/6e5bafJNUDBH4lNf0TTAKl4r/yLZ2LDQNWbhDmwVSQIgdX3JOPpJkKLStKbo+MbZ1TtijHkL0kTrLK28P6phDKw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":603197,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe66/gCRA9TVsSAnZWagAAV4IQAICQSwiyn8o27OwUELuB\nwccRi9UZlLvSuCSStZxQwyBJ9aD1fjnhx1qUQalycztmk3GJ0w/gDp8ZVke+\n3+LV8NEFapt6aZz5n9p2KHulOPO4/hmPfDaouAQ1tkbxtwpB6pRxIp8PLlHY\nz0oeQBWzDMDboydK9YBKfPRI2cqsknTIHg8ndlqabKl7MUY5heK9DkUJ8PrE\n5BlTUT7Sahok76kV+yrxiwu06Y+RYhwdQohOZZ2tPZ6eEwAvgK+68VwAcUOw\nEzioyg46fBF3Wehbdmk5v8X7qekhkQCPqlM1TL65T0XrnOZFBeLRjL3KEm+p\nzFtRsCjJ7E+tN1kEt6/YPKghiW7MZWLfKP6C4kppF15kkRWAtxf/d75I10v9\nTCGOIG/QkwdUNRXjMGpeflcPcEtV4LnJh8BwVk9KF93GQXeClhYkwT+N62Fx\nvoHdQShSwPaD1lI3KlrJyv2AhZcETcOS0FENpuK2YXdc/AFUiv7pCOUL7mqp\npJWO11+zfjB0G0i+AgZVFIT0Lu+eMCl/jTLRm7bUfqRhPk6nTDw4yHGI4YjL\nLbC74Suef8EohraaF024l7IxpXmxTcxOIC4AautKCEKISHJDvE7QQ3EzZOUf\nov9Jq2aIKmU7z2wgb5g5DSSQaiPrt38QomUYzCbPMPFniU1lpf1K07GVg3Nx\nfqSZ\r\n=6MEL\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"roots":["__tests__"],"testEnvironment":"node","coverageDirectory":"reports","coverageReporters":["lcov","html"],"testPathIgnorePatterns":["__tests__/__util__/"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"7b5d228d36442963f3eb76599302fce8073fd7eb","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","jest":"jest --coverage __tests__/**/*","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"safe-publish-latest && not-in-publish || (npm run lint && npm run flow && npm run jest && npm run build)"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"6.14.5","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"greenkeeper":{"ignore":["jest","babel-jest"]},"_nodeVersion":"14.4.0","dependencies":{"has":"^1.0.3","axe-core":"^3.5.4","aria-query":"^4.2.0","emoji-regex":"^9.0.0","jsx-ast-utils":"^2.4.1","language-tags":"^1.0.5","@babel/runtime":"^7.10.2","array-includes":"^3.1.1","ast-types-flow":"^0.0.7","axobject-query":"^2.1.2","damerau-levenshtein":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.9.0","eslint":"^3 || ^4 || ^5 || ^6 || ^7","expect":"^24.3.1","rimraf":"^3.0.2","to-ast":"^1.0.0","flow-bin":"^0.113.0","minimist":"^1.2.5","coveralls":"^3.1.0","@babel/cli":"^7.10.1","babel-jest":"^24.9.0","estraverse":"^4.3.0","in-publish":"^2.0.1","@babel/core":"^7.10.2","jscodeshift":"^0.7.0","babel-eslint":"^10.1.0","object.assign":"^4.1.0","babel-preset-airbnb":"^5.0.0","safe-publish-latest":"^1.1.4","eslint-plugin-import":"^2.21.2","eslint-plugin-flowtype":"^5.1.3","eslint-config-airbnb-base":"^14.2.0","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^3 || ^4 || ^5 || ^6 || ^7"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.3.0_1592504287562_0.054705193899851956","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"eslint-plugin-jsx-a11y","version":"6.1.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@6.1.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"569f6f2d29546cab82cedaa077ec829693b0c42d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.1.0.tgz","fileCount":205,"integrity":"sha512-hnhf28u7Z9zlh7Y56tETrwnPeBvXgcqlP7ntHvZsWQs/n/p/vPnfNMNFWTqJAFcbd8PrDEifX1NRGHsjnUmqMw==","signatures":[{"sig":"MEQCIG5+XJkEC/GSuNXyk7QMnY7w4V6lVx8mjud4PTGxXm7TAiBuI3fu03ho9Wxmac/D8MnkEiQ8yoLtpF9w3Fly33YLWQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":729985,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbO61tCRA9TVsSAnZWagAACOoQAKG1yF2rMwgj1VR+d7GH\nKkYYqXXPadNrNj6DYHlRexK14VhtbWhCjAcznaxgzX0tZ7w+VkdUih7GH0DH\nROhNVuoUvsEUCpwSHTMnGfkcHnjrSPRQyvwV6jTZpRlIKzvadEv5lwFQ3Czp\n1ZFJhgsRSv/LgNmzfB5THQPpFElK5BmWCLleSNAnaecgLUjHflPKZbKFKn5G\nRWgdxnwJBoLhcybv0Y0NFCKW9vMipcybIqGMHONR1NigZi6eE0/3BApkW0cy\n/tNNjt537WKKvdOT3oDUopfSACmNNEyATOVsT4REHWlEypUJl/Z4YRyUpjgx\ndsmXrOCDUBkOZ5BjDNhmw49hq3PnpIs9Qk2Cp7eTSZ08drSZc9gzk1Rbu5vX\nnEmiNkqtLXw9Rsci2UmFtikZ1fLHw/IkLpSYywBOqBUzoJiq9kyEYF8XPYXH\nnOUlfsHNIwrwp7fF7ifJgl0lMNDkEbLtL1mZC+jUmAHl0ks144p78yxpkDs6\nKY1xhwwAgxuL/iMh8gn6IXeR3KarPR9X15Qz+wbE0dPZ3+9ImmtdIT/8QJZX\nQifzvDv0EgGv42nTtzSU48yLnQAAjL/IQxdEGtlVKkRxgz+ZEdweJWQRqEQ+\nV5R9gnj70gN0xfSffPxU72gYpLCtyclnA3HcTyz3bHA/n6UfQsEJwulesqo/\naFai\r\n=WqFt\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"roots":["<rootDir>/__tests__"],"testEnvironment":"node","coverageDirectory":"reports","coverageReporters":["lcov","html"],"testPathIgnorePatterns":["<rootDir>/__tests__/__util__"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"b800f40a2a69ad48015ae9226fbe879f946757ed","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","jest":"jest --coverage __tests__/**/*","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"npm run jest","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm run jest -- --ci --runInBand","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"safe-publish-latest && not-in-publish || (npm run lint && npm run flow && npm run jest && npm run build)"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"5.6.0","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"greenkeeper":{"ignore":["jest","babel-jest"]},"_nodeVersion":"8.11.3","dependencies":{"has":"^1.0.3","aria-query":"^3.0.0","emoji-regex":"^6.5.1","jsx-ast-utils":"^2.0.1","array-includes":"^3.0.3","ast-types-flow":"^0.0.7","axobject-query":"^2.0.1","damerau-levenshtein":"^1.0.4"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^21.2.1","eslint":"^4.19.1","expect":"^21.2.1","rimraf":"^2.6.2","to-ast":"^1.0.0","flow-bin":"^0.66.0","minimist":"^1.2.0","babel-cli":"^6.26.0","coveralls":"^3.0.1","babel-core":"^6.26.3","babel-jest":"^21.2.0","in-publish":"^2.0.0","jscodeshift":"^0.4.0","babel-eslint":"^8.2.5","object.assign":"^4.1.0","babel-polyfill":"^6.26.0","babel-preset-es2015":"^6.24.1","safe-publish-latest":"^1.1.1","eslint-plugin-import":"^2.13.0","eslint-plugin-flowtype":"^2.49.3","eslint-config-airbnb-base":"^13.0.0","babel-plugin-transform-flow-strip-types":"^6.22.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es2015-template-literals":"^6.22.0"},"peerDependencies":{"eslint":"^3 || ^4 || ^5"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y_6.1.0_1530637677121_0.1889532467317021","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"eslint-plugin-jsx-a11y","version":"5.1.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@5.1.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"4a829634344e7a90391a9fb0fbd19810737d79c5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.1.0.tgz","integrity":"sha512-yH0N0E9CREF00Di3XzUCFHyyEDVQpvhTCJ7PSVnrexCZniy46tIq+sIzTOGtPjNaqfecWkfzN8PLPX0yUuXEbw==","signatures":[{"sig":"MEQCIAUVH7AS8MgFZCGAvIPDJRcJB2Tqz4gBKzLXpqvTJ+iBAiB4cONfN+7qunYI1AmM7E8AOaxj/XWV1uNyH6qjeZW1QQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"jest":{"roots":["<rootDir>/__tests__"],"coverageDirectory":"reports","coverageReporters":["lcov"],"testPathIgnorePatterns":["<rootDir>/__tests__/__util__"]},"main":"lib/index.js","_from":".","_shasum":"4a829634344e7a90391a9fb0fbd19810737d79c5","engines":{"node":">=4.0"},"gitHead":"fc9ff2be1e6630dc45bdec3e697b524a6ff490ef","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"jest --coverage __tests__/**/*","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"npm run lint && npm run flow && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"3.10.10","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"_nodeVersion":"6.10.2","dependencies":{"aria-query":"^0.5.0","emoji-regex":"^6.1.0","jsx-ast-utils":"^1.4.0","array-includes":"^3.0.3","ast-types-flow":"0.0.7","axobject-query":"^0.1.0","damerau-levenshtein":"^1.0.0"},"devDependencies":{"jest":"^20.0.0","eslint":"^3.12.2","expect":"^1.20.2","rimraf":"^2.5.2","to-ast":"^1.0.0","flow-bin":"^0.45.0","minimist":"^1.2.0","babel-cli":"^6.14.0","coveralls":"^2.11.8","babel-core":"^6.14.0","babel-jest":"^20.0.0","jscodeshift":"^0.3.30","babel-eslint":"^7.0.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.14.0","eslint-plugin-import":"^2.2.0","eslint-plugin-flowtype":"^2.32.1","eslint-config-airbnb-base":"^11.0.0","babel-plugin-transform-flow-strip-types":"^6.21.0","babel-plugin-transform-object-rest-spread":"^6.20.2"},"peerDependencies":{"eslint":"^2.10.2 || ^3 || ^4"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-5.1.0.tgz_1498526652125_0.8964516492560506","host":"s3://npm-registry-packages"}},"5.1.1":{"name":"eslint-plugin-jsx-a11y","version":"5.1.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@5.1.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"jessebeach","email":"splendidnoise@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"5c96bb5186ca14e94db1095ff59b3e2bd94069b1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.1.1.tgz","integrity":"sha512-5I9SpoP7gT4wBFOtXT8/tXNPYohHBVfyVfO17vkbC7r9kEIxYJF12D3pKqhk8+xnk12rfxKClS3WCFpVckFTPQ==","signatures":[{"sig":"MEUCIQDyiWzWcfQ028UVhDniq/fCD0Cyfq6D750CgX4zyCCb+wIgMGf1bga1JyrsaAjACCD4HJSHCYRHMu0uy+RD+pX97m8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"jest":{"roots":["<rootDir>/__tests__"],"coverageDirectory":"reports","coverageReporters":["lcov"],"testPathIgnorePatterns":["<rootDir>/__tests__/__util__"]},"main":"lib/index.js","engines":{"node":">=4.0"},"gitHead":"1e13e04e9fc35d31df9c6281798bd3a912024f43","scripts":{"flow":"if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi","lint":"eslint  --config .eslintrc src __tests__ __mocks__ scripts","test":"jest --coverage __tests__/**/*","build":"rimraf lib && babel src --out-dir lib --copy-files","create":"node ./scripts/create-rule","pretest":"npm run lint:fix && npm run flow","test:ci":"npm test -- --ci --runInBand","lint:fix":"npm run lint -- --fix","coveralls":"cat ./reports/lcov.info | coveralls","prepublish":"safe-publish-latest && npm run lint && npm run flow && npm run test && npm run build"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"5.0.3","description":"Static AST checker for accessibility rules on JSX elements.","directories":{},"_nodeVersion":"8.1.3","dependencies":{"aria-query":"^0.7.0","emoji-regex":"^6.1.0","jsx-ast-utils":"^1.4.0","array-includes":"^3.0.3","ast-types-flow":"0.0.7","axobject-query":"^0.1.0","damerau-levenshtein":"^1.0.0"},"devDependencies":{"jest":"^20.0.4","eslint":"^3.19.0","expect":"^1.20.2","rimraf":"^2.6.1","to-ast":"^1.0.0","flow-bin":"^0.47.0","minimist":"^1.2.0","babel-cli":"^6.24.1","coveralls":"^2.13.1","babel-core":"^6.25.0","babel-jest":"^20.0.3","jscodeshift":"^0.3.30","babel-eslint":"^7.2.3","babel-polyfill":"^6.23.0","babel-preset-es2015":"^6.24.1","safe-publish-latest":"^1.1.1","eslint-plugin-import":"^2.3.0","eslint-plugin-flowtype":"^2.34.0","eslint-config-airbnb-base":"^11.2.0","babel-plugin-transform-flow-strip-types":"^6.22.0","babel-plugin-transform-object-rest-spread":"^6.23.0","babel-plugin-transform-es2015-template-literals":"^6.22.0"},"peerDependencies":{"eslint":"^2.10.2 || ^3 || ^4"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-5.1.1.tgz_1499133979884_0.06283428054302931","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"eslint-plugin-jsx-a11y","version":"1.0.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.0.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"306883d5b4d5f0c0afb45fde3287a48b1c66434e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.0.0.tgz","integrity":"sha512-eRgYKYp03D9byF4fqIxT52hysPMyngli+gZEBSZVEcVjvUHy15C9eFhdrkrs7mOeQtCN9vJFjquHpbpU+jJezw==","signatures":[{"sig":"MEYCIQCUFeV10MIbXTUC6ATwb8w/Jt/aVTP9rc0ruLUhFNOEeAIhALACqOzBdX4hne/fTZ6eprizuK/HZfj7vluVu7XgktcB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"306883d5b4d5f0c0afb45fde3287a48b1c66434e","engines":{"node":">=0.10.0"},"gitHead":"fa4492e6aa9ebe7835228d6187598d2533e35b97","scripts":{"lint":"eslint  --config .eslintrc.js .","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.15.0","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.4.2","dependencies":{"object-assign":"^4.0.1"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.0.0.tgz_1461110231632_0.6745502231642604","host":"packages-16-east.internal.npmjs.com"}},"1.0.1":{"name":"eslint-plugin-jsx-a11y","version":"1.0.1","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.0.1","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"9cdd988624a66993367ef1901fbe474fe54d14e9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.0.1.tgz","integrity":"sha512-nGwhVO2TXOGynULs7nUamYyaUDjvpliZAiRelB29rgDx2ygbziAWibGj66SN+ZrTxAWs2bSDatcE0DFDzBaT0w==","signatures":[{"sig":"MEYCIQChbd0BluljSbjnjMBKHNs4iSQuexFgiVh5VVW9rhhSTQIhAOWr4N3d9kq2PhaSfoZMf7wNs7wngoI6xvTa5jPyDYqZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"9cdd988624a66993367ef1901fbe474fe54d14e9","engines":{"node":">=0.10.0"},"gitHead":"392736b3ddc08d212bfe2409169e92ddbb9d81f7","scripts":{"lint":"eslint  --config .eslintrc.js .","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.12","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.6","dependencies":{"object-assign":"^4.0.1"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.0.1.tgz_1461111618498_0.7693088019732386","host":"packages-16-east.internal.npmjs.com"}},"1.0.2":{"name":"eslint-plugin-jsx-a11y","version":"1.0.2","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.0.2","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"77ccd5ae58d1c451853e15cbc12357c8b0b23957","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.0.2.tgz","integrity":"sha512-biY86Ny1WDxRpuPbtw8RHgf6LxQGvvJ9Fka0Pm4MwVjOaIlRg2L09fKFqpsLJo+nN1lT/zeNffdgZPd3fNvlfg==","signatures":[{"sig":"MEUCIHT0gD8woG6M4WS+RYRXS76VQlWIKqbazZfIKK/QGlQsAiEAjeVIUXSnPYunqIdDgaDhLx1juIqqseeoKdhOxOqp7rQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"77ccd5ae58d1c451853e15cbc12357c8b0b23957","engines":{"node":">=0.10.0"},"gitHead":"5e9200368981edea093ebf94d8bc62ea7ce8a4f6","scripts":{"lint":"eslint  --config .eslintrc.js .","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.15.0","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.4.2","dependencies":{"object-assign":"^4.0.1"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.0.2.tgz_1461193445422_0.1559460205025971","host":"packages-12-west.internal.npmjs.com"}},"1.2.0":{"name":"eslint-plugin-jsx-a11y","version":"1.2.0","keywords":["eslint","eslintplugin","eslint-plugin","a11y","accessibility","jsx"],"author":{"name":"Ethan Cohen"},"license":"MIT","_id":"eslint-plugin-jsx-a11y@1.2.0","maintainers":[{"name":"evcohen","email":"ethanvcohen@gmail.com"},{"name":"lencioni","email":"joe.lencioni@gmail.com"}],"homepage":"https://github.com/evcohen/eslint-plugin-jsx-a11y#readme","bugs":{"url":"https://github.com/evcohen/eslint-plugin-jsx-a11y/issues"},"dist":{"shasum":"b1382dedb35b173a0ff444f2bc67bd37b10906d9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-1.2.0.tgz","integrity":"sha512-IC8FGioqJNier2sSTXFlVvA8rkiUvn1/vgJSDIQ3ZwkdYkPL6lGVfocgJcUpOg1pz16YHqq6AXyh7BIaGawNnQ==","signatures":[{"sig":"MEYCIQD1tRwZhcRqedtehkbL1L4DuJN1EusKgrZ0XCHfIz2LagIhANRmsc7mwsq7uuqESVz94g0xQJK+DztGEKCKB8vx7vEm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"b1382dedb35b173a0ff444f2bc67bd37b10906d9","engines":{"node":">=0.10.0"},"gitHead":"4455c06c7768ea0b2324d713b7d38561abb19402","scripts":{"lint":"eslint  --config .eslintrc.js .","test":"istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --compilers js:babel-core/register --reporter dot","build":"rimraf lib && babel src --out-dir lib && cp -R src/util/attributes lib/util/attributes","pretest":"npm run lint","coveralls":"cat ./reports/coverage/lcov.info | coveralls","prepublish":"npm run lint && npm run test && npm run build"},"_npmUser":{"name":"evcohen","email":"ethanvcohen@gmail.com"},"repository":{"url":"git+https://github.com/evcohen/eslint-plugin-jsx-a11y.git","type":"git"},"_npmVersion":"2.14.12","description":"A static analysis linter of jsx and their accessibility with screen readers.","directories":{},"_nodeVersion":"4.2.6","dependencies":{"object-assign":"^4.0.1"},"devDependencies":{"mocha":"^2.4.5","eslint":"^2.2.0","rimraf":"^2.5.2","istanbul":"^1.0.0-alpha.2","babel-cli":"^6.6.0","coveralls":"^2.11.8","babel-core":"^6.6.0","babel-eslint":"^6.0.0","babel-preset-es2015":"^6.6.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsx-a11y-1.2.0.tgz_1462567684647_0.5277826937381178","host":"packages-12-west.internal.npmjs.com"}}},"name":"eslint-plugin-jsx-a11y","time":{"0.4.2":"2016-03-24T20:10:21.793Z","0.6.0":"2016-04-06T19:42:30.238Z","0.4.3":"2016-03-30T00:46:53.905Z","0.6.1":"2016-04-07T17:49:04.240Z","0.2.2":"2016-03-02T04:56:03.283Z","0.4.0":"2016-03-03T04:28:08.796Z","0.4.1":"2016-03-04T18:22:08.758Z","0.6.2":"2016-04-08T23:05:07.633Z","0.0.2":"2016-02-29T23:40:07.842Z","0.2.0":"2016-03-01T21:46:15.610Z","6.7.1":"2023-01-12T04:19:36.937Z","0.2.1":"2016-03-02T02:18:38.347Z","6.9.0":"2024-06-20T06:18:52.442Z","6.5.1":"2021-11-10T17:30:25.042Z","0.0.1":"2016-02-29T23:26:53.790Z","6.7.0":"2023-01-09T22:48:16.586Z","modified":"2025-04-26T11:28:36.821Z","6.10.0":"2024-09-04T06:10:15.923Z","6.10.1":"2024-10-21T05:49:31.809Z","6.10.2":"2024-10-26T04:45:18.067Z","2.1.0":"2016-08-10T18:01:22.976Z","created":"2016-02-29T23:26:53.790Z","1.3.0":"2016-06-05T15:58:01.787Z","6.2.2":"2019-06-30T07:06:38.611Z","6.4.0":"2020-10-26T05:22:35.806Z","6.2.3":"2019-07-01T04:24:58.516Z","6.4.1":"2020-10-26T16:48:36.444Z","1.5.0":"2016-06-16T15:15:20.890Z","6.0.2":"2017-06-29T00:55:43.239Z","6.2.0":"2019-01-25T02:30:46.713Z","1.5.1":"2016-06-16T20:16:55.804Z","6.0.3":"2017-12-13T14:54:37.842Z","6.2.1":"2019-02-03T21:32:14.692Z","1.5.2":"2016-06-16T21:30:49.452Z","6.0.0":"2017-06-27T01:25:18.619Z","1.5.3":"2016-06-16T21:57:38.701Z","6.0.1":"2017-06-28T23:27:31.923Z","1.5.4":"2016-07-06T02:11:09.849Z","1.5.5":"2016-07-06T02:21:41.092Z","5.0.0":"2017-05-05T17:52:41.129Z","5.0.1":"2017-05-07T17:49:42.203Z","5.0.2":"2017-05-16T17:51:28.724Z","5.0.3":"2017-05-16T20:01:26.459Z","1.1.0":"2016-05-06T17:57:30.570Z","0.5.1":"2016-04-05T17:04:54.237Z","0.5.2":"2016-04-05T17:28:52.085Z","0.3.1":"2016-03-03T00:57:49.757Z","0.5.0":"2016-04-02T19:20:34.678Z","0.5.3":"2016-04-05T22:22:55.012Z","0.5.4":"2016-04-06T17:49:25.571Z","4.0.0":"2017-02-04T17:58:12.592Z","0.1.1":"2016-03-01T16:21:22.966Z","6.8.0":"2023-11-01T22:25:31.813Z","0.1.2":"2016-03-01T18:27:50.278Z","0.3.0":"2016-03-02T23:50:25.824Z","6.6.0":"2022-06-24T15:56:19.526Z","0.1.0":"2016-03-01T06:53:56.843Z","6.6.1":"2022-07-21T18:53:59.506Z","3.0.0":"2016-10-12T01:33:57.881Z","3.0.1":"2016-11-07T11:59:14.046Z","3.0.2":"2016-12-14T18:52:29.629Z","2.0.0":"2016-07-12T21:09:35.696Z","2.0.1":"2016-07-13T16:39:37.132Z","2.2.2":"2016-09-12T15:57:10.241Z","2.2.3":"2016-10-08T15:35:24.741Z","2.2.0":"2016-08-26T14:13:52.720Z","2.2.1":"2016-08-31T20:49:55.798Z","1.0.3":"2016-04-26T02:20:09.742Z","1.2.1":"2016-05-19T16:47:38.734Z","6.3.1":"2020-06-19T21:29:22.653Z","1.0.4":"2016-04-28T19:05:27.016Z","1.2.2":"2016-05-20T10:17:33.138Z","1.4.0":"2016-06-10T16:09:39.687Z","6.5.0":"2021-11-10T07:45:00.441Z","1.2.3":"2016-06-02T17:02:20.948Z","1.4.1":"2016-06-10T19:57:07.043Z","6.1.1":"2018-07-13T16:18:34.464Z","1.4.2":"2016-06-10T21:58:59.920Z","6.1.2":"2018-10-05T15:18:15.195Z","6.3.0":"2020-06-18T18:18:07.688Z","6.1.0":"2018-07-03T17:07:57.213Z","5.1.0":"2017-06-27T01:24:12.304Z","5.1.1":"2017-07-04T02:06:21.518Z","1.0.0":"2016-04-19T23:57:14.547Z","1.0.1":"2016-04-20T00:20:20.598Z","1.0.2":"2016-04-20T23:04:05.827Z","1.2.0":"2016-05-06T20:48:07.455Z"},"readmeFilename":"README.md","homepage":"https://github.com/jsx-eslint/eslint-plugin-jsx-a11y#readme"}