{"maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"keywords":["eslint","plugin","jsdoc"],"dist-tags":{"latest":"62.9.0"},"author":{"name":"Gajus Kuizinas","email":"gajus@gajus.com","url":"http://gajus.com"},"description":"JSDoc linting rules for ESLint.","readme":"<a name=\"user-content-eslint-plugin-jsdoc\"></a>\n<a name=\"eslint-plugin-jsdoc\"></a>\n# eslint-plugin-jsdoc\n\n[![NPM version](https://img.shields.io/npm/v/eslint-plugin-jsdoc.svg?style=flat-square)](https://www.npmjs.org/package/eslint-plugin-jsdoc)\n[![Travis build status](https://img.shields.io/travis/gajus/eslint-plugin-jsdoc/master.svg?style=flat-square)](https://travis-ci.org/gajus/eslint-plugin-jsdoc)\n[![js-canonical-style](https://img.shields.io/badge/code%20style-canonical-blue.svg?style=flat-square)](https://github.com/gajus/canonical)\n[![Discord Chat](https://img.shields.io/badge/chat-on%20disord-green.svg?logo=discord)](https://discord.gg/kFFy3nc)\n\nJSDoc linting rules for ESLint.\n\n* [eslint-plugin-jsdoc](#user-content-eslint-plugin-jsdoc)\n    * [Installation](#user-content-eslint-plugin-jsdoc-installation)\n    * [Configuration](#user-content-eslint-plugin-jsdoc-configuration)\n        * [Flat config (procedural)](#user-content-eslint-plugin-jsdoc-configuration-flat-config-procedural)\n        * [Flat config (declarative)](#user-content-eslint-plugin-jsdoc-configuration-flat-config-declarative)\n        * [`eslintrc`](#user-content-eslint-plugin-jsdoc-configuration-eslintrc)\n    * [Options](#user-content-eslint-plugin-jsdoc-options)\n    * [Settings](#user-content-eslint-plugin-jsdoc-settings)\n    * [Advanced](#user-content-eslint-plugin-jsdoc-advanced)\n    * [Processors](#user-content-eslint-plugin-jsdoc-processors)\n    * [Rules](#user-content-eslint-plugin-jsdoc-rules)\n\n\n<a name=\"user-content-eslint-plugin-jsdoc-installation\"></a>\n<a name=\"eslint-plugin-jsdoc-installation\"></a>\n## Installation\n\nInstall [ESLint](https://www.github.com/eslint/eslint) either locally or\nglobally.\n\n```sh\nnpm install --save-dev eslint\n```\n\nIf you have installed `ESLint` globally, you have to install JSDoc plugin\nglobally too. Otherwise, install it locally.\n\n```sh\nnpm install --save-dev eslint-plugin-jsdoc\n```\n\n<a name=\"user-content-eslint-plugin-jsdoc-configuration\"></a>\n<a name=\"eslint-plugin-jsdoc-configuration\"></a>\n## Configuration\n\n<a name=\"user-content-eslint-plugin-jsdoc-configuration-flat-config-procedural\"></a>\n<a name=\"eslint-plugin-jsdoc-configuration-flat-config-procedural\"></a>\n### Flat config (procedural)\n\nThis is the currently recommended approach for all flat configs (besides the\narray-based `examples`, `default-expressions`, and\n`examples-and-default-expressions` configs).\n\n```js\nimport {jsdoc} from 'eslint-plugin-jsdoc';\n\nexport default [\n  jsdoc({\n    config: 'flat/recommended',\n  })\n];\n```\n\nOr with TypeScript-aware extra rules and/or settings supplied:\n\n```js\nimport {jsdoc} from 'eslint-plugin-jsdoc';\n\nexport default [\n  jsdoc({\n    config: 'flat/recommended',\n    rules: {\n      'jsdoc/check-values': [\n        'error',\n        {\n          allowedLicenses: [\n            'MIT', 'ISC',\n          ],\n        },\n      ],\n    },\n    // Uncomment this if you wish your `settings` to overwrite the config's own settings;\n    //   otherwise, the default behavior is to merge recursively\n    // mergeSettings: false,\n    settings: {\n      // Do not add a `jsdoc` child object here as you would for regular ESLint `settings`\n      structuredTags: {\n        see: {\n          name: 'namepath-referencing',\n          required: [\n            'name',\n          ],\n        },\n      },\n      /*\n        // Since the recommended config has been chosen, the above settings will\n        //    be merged by default with the following (which are tags that are\n        //    being allowed and requiring a type):\n        structuredTags: {\n          next: {\n            required: [\n              'type',\n            ],\n          },\n          rejects: {\n            required: [\n              'type',\n            ],\n          },\n        },\n      */\n    }\n  })\n];\n```\n\nA `plugins` property can also be supplied to merge with the resulting `jsdoc` plugin.\n\nOther config properties such as `files`, `ignores`, etc. are also copied over,\nthough noting that if the specified config produces an array, they will not\ncurrently function.\n\nThere is also a `extraRuleDefinitions.forbid` option, the details of which are\nexplained in the [Advanced](./docs/advanced.md#forbidding-structures) docs\n(under creating your own rules and forbidding structures).\n\n<a name=\"user-content-eslint-plugin-jsdoc-configuration-flat-config-declarative\"></a>\n<a name=\"eslint-plugin-jsdoc-configuration-flat-config-declarative\"></a>\n### Flat config (declarative)\n\n```js\nimport jsdoc from 'eslint-plugin-jsdoc';\n\nconst config = [\n  // configuration included in plugin\n  jsdoc.configs['flat/recommended'],\n  // other configuration objects...\n  {\n    files: ['**/*.js'],\n    // `plugins` here is not necessary if including the above config\n    plugins: {\n      jsdoc,\n    },\n    rules: {\n      'jsdoc/require-description': 'warn'\n    }\n  }\n];\n\nexport default config;\n```\n\nThe general starting rulesets you can extend from in flat config are:\n\n- `jsdoc.configs['flat/recommended']`: Recommended starting rules for enforcing proper tag values, that common tags exist, and that tags are formatted and styled consistently\n  - `jsdoc.configs['flat/recommended-error']`: The same, reporting with failing errors instead of mere warnings\n- `jsdoc.configs['flat/recommended-typescript']`: A similar recommended starting list, adjusted for projects using TypeScript syntax (and not just the \"typescript\" `mode` setting)\n  - `jsdoc.configs['flat/recommended-typescript-error']`: The same, reporting with failing errors instead of mere warnings\n- `jsdoc.configs['flat/recommended-typescript-flavor']`: A similar recommended starting list, adjusted for projects using JavaScript syntax (source files that are still `.js`) but using TypeScript flavor within JSDoc (i.e., the default \"typescript\" `mode` in `eslint-plugin-jsdoc`)\n  - `jsdoc.configs['flat/recommended-typescript-flavor-error']`: The same, reporting with failing errors instead of mere warnings\n- `jsdoc.configs['flat/recommended-tsdoc']`: Like `flat/recommended-typescript` but with `require-throws-type`, `require-yields-type`, and `require-next-type` turned off, for use with [TSDoc](https://tsdoc.org/) (e.g., [TypeDoc](https://typedoc.org/))\n  - `jsdoc.configs['flat/recommended-tsdoc-error']`: The same, reporting with failing errors instead of mere warnings\n- `jsdoc.configs['flat/recommended-mixed']`: A combination of `flat/recommended-typescript-flavor` and `flat/recommended-typescript` with automatic assignment of subconfig based on file extension (`**/*.{js,jsx,cjs,mjs}` and `**/*.{ts,tsx,cts,mts}`, respectively)\n\n<a name=\"user-content-eslint-plugin-jsdoc-configuration-flat-config-declarative-granular-flat-configs\"></a>\n<a name=\"eslint-plugin-jsdoc-configuration-flat-config-declarative-granular-flat-configs\"></a>\n#### Granular Flat Configs\n\nThere also exist several more granular, standalone TypeScript rulesets you can extend from.\nThese each only enable mostly or only rules from the recommended starting rules:\n\n- **Contents**: rules that check names and descriptions\n  - `jsdoc.configs['flat/contents-typescript']`: for TypeScript files, with reports set to warn\n  - `jsdoc.configs['flat/contents-typescript-error']`: for TypeScript files, with reports set to error\n  - `jsdoc.configs['flat/contents-typescript-flavor']`: for files using JavaScript syntax and JSDoc types, with reports set to warn\n  - `jsdoc.configs['flat/contents-typescript-flavor-error']`: for files using JavaScript syntax and JSDoc types, with reports set to error\n- **Logical**: rules that enforce proper tag values\n  - `jsdoc.configs['flat/logical-typescript']`: for TypeScript files, with reports set to warn\n  - `jsdoc.configs['flat/logical-typescript-error']`: for TypeScript files, with reports set to error\n  - `jsdoc.configs['flat/logical-typescript-flavor']`: for files using JavaScript syntax and JSDoc types, with reports set to warn\n  - `jsdoc.configs['flat/logical-typescript-flavor-error']`: for files using JavaScript syntax and JSDoc types, with reports set to error\n- **Requirements**: rules that enforce tags exist or have or don't have types\n  - `jsdoc.configs['flat/requirements-typescript']`: for TypeScript files, with reports set to warn\n  - `jsdoc.configs['flat/requirements-typescript-error']`: for TypeScript files, with reports set to error\n  - `jsdoc.configs['flat/requirements-typescript-flavor']`: for files using JavaScript syntax and JSDoc types, with reports set to warn\n  - `jsdoc.configs['flat/requirements-typescript-flavor-error']`: for files using JavaScript syntax and JSDoc types, with reports set to error\n- **Stylistic**: rules that enforce clear, consistent tag formatting and styles\n  - `jsdoc.configs['flat/stylistic-typescript']`: for TypeScript files, with reports set to warn\n  - `jsdoc.configs['flat/stylistic-typescript-error']`: for TypeScript files, with reports set to error\n  - `jsdoc.configs['flat/stylistic-typescript-flavor']`: for files using JavaScript syntax and JSDoc types, with reports set to warn\n  - `jsdoc.configs['flat/stylistic-typescript-flavor-error']`: for files using JavaScript syntax and JSDoc types, with reports set to error\n\nFor example, to enforce only that any JSDoc tags and their contents are valid and styled consistently in TypeScript files, without enforcing that tags must always exist:\n\n```js\nimport jsdoc from 'eslint-plugin-jsdoc';\n\nexport default [\n  jsdoc.configs['flat/contents-typescript-error'],\n  jsdoc.configs['flat/logical-typescript-error'],\n  jsdoc.configs['flat/stylistic-typescript-error'],\n];\n```\n\n<a name=\"user-content-eslint-plugin-jsdoc-configuration-flat-config-declarative-granular-flat-configs-why-certain-rules-were-excluded-from-the-granular-configs\"></a>\n<a name=\"eslint-plugin-jsdoc-configuration-flat-config-declarative-granular-flat-configs-why-certain-rules-were-excluded-from-the-granular-configs\"></a>\n##### Why certain rules were excluded from the granular configs\n\nA few rules were left out of the granular configs. Here is why:\n\nRules which might have been added to `required`:\n  - [`require-throws`](./docs/rules/require-throws.md#readme) - Since this can't enforce all cases, some may not wish this rule enforced.\n  - [`require-file-overview`](./docs/rules/require-file-overview.md#readme) - Too demanding for all projects\n  - [`convert-to-jsdoc-comments`](./docs/rules/convert-to-jsdoc-comments.md#readme) - Overly aggressive for some projects\n\nRules which might have been added to `logical`:\n  - [`no-missing-syntax`](./docs/rules/no-missing-syntax.md#readme) - Has no default options.\n  - [`no-restricted-syntax`](./docs/rules/no-restricted-syntax.md#readme) - Has no default options.\n\nRules which might have been added to `contents`:\n  - [`match-name`](./docs/rules/match-name.md#readme) - Has no default options.\n  - [`require-description`](./docs/rules/require-description.md#readme) - Too demanding for all projects\n  - [`require-description-complete-sentence`](./docs/rules/require-description-complete-sentence.md#readme) - Too demanding for all projects\n\nRules which might have been added to `stylistic`:\n  - [`check-indentation`](./docs/rules/check-indentation.md#readme) - May not be desired by all projects\n  - [`sort-tags`](./docs/rules/sort-tags.md#readme) - Too project-specific\n\n<a name=\"user-content-eslint-plugin-jsdoc-configuration-eslintrc\"></a>\n<a name=\"eslint-plugin-jsdoc-configuration-eslintrc\"></a>\n### <code>eslintrc</code>\n\nAdd `plugins` section to [.eslintrc.*](https://eslint.org/docs/user-guide/configuring#configuration-file-formats)\nand specify `eslint-plugin-jsdoc` as a plugin.\n\n```json\n{\n    \"plugins\": [\n        \"jsdoc\"\n    ]\n}\n```\n\nFinally, enable all of the rules that you would like to use.\n\n```javascript\n{\n    \"rules\": {\n        \"jsdoc/check-access\": 1, // Recommended\n        \"jsdoc/check-alignment\": 1, // Recommended\n        // \"jsdoc/check-examples\": 1, // Deprecated and not for ESLint >= 8\n        \"jsdoc/check-indentation\": 1,\n        \"jsdoc/check-line-alignment\": 1,\n        \"jsdoc/check-param-names\": 1, // Recommended\n        \"jsdoc/check-property-names\": 1, // Recommended\n        \"jsdoc/check-syntax\": 1,\n        \"jsdoc/check-tag-names\": 1, // Recommended\n        \"jsdoc/check-template-names\": 1,\n        \"jsdoc/check-types\": 1, // Recommended\n        \"jsdoc/check-values\": 1, // Recommended\n        \"jsdoc/convert-to-jsdoc-comments\": 1,\n        \"jsdoc/empty-tags\": 1, // Recommended\n        \"jsdoc/escape-inline-tags\": 1, // Recommended for TS configs\n        \"jsdoc/implements-on-classes\": 1, // Recommended\n        \"jsdoc/imports-as-dependencies\": 1,\n        \"jsdoc/informative-docs\": 1,\n        \"jsdoc/lines-before-block\": 1,\n        \"jsdoc/match-description\": 1,\n        \"jsdoc/match-name\": 1,\n        \"jsdoc/multiline-blocks\": 1, // Recommended\n        \"jsdoc/no-bad-blocks\": 1,\n        \"jsdoc/no-blank-block-descriptions\": 1,\n        \"jsdoc/no-defaults\": 1, // Recommended\n        \"jsdoc/no-missing-syntax\": 1,\n        \"jsdoc/no-multi-asterisks\": 1, // Recommended\n        \"jsdoc/no-restricted-syntax\": 1,\n        \"jsdoc/no-types\": 1, // Recommended for TS configs\n        \"jsdoc/no-undefined-types\": 1, // Recommended for non-TS configs\n        \"jsdoc/reject-any-type\": 1, // Recommended\n        \"jsdoc/reject-function-type\": 1, // Recommended\n        \"jsdoc/require-asterisk-prefix\": 1,\n        \"jsdoc/require-description\": 1,\n        \"jsdoc/require-description-complete-sentence\": 1,\n        \"jsdoc/require-example\": 1,\n        \"jsdoc/require-file-overview\": 1,\n        \"jsdoc/require-hyphen-before-param-description\": 1,\n        \"jsdoc/require-jsdoc\": 1, // Recommended\n        \"jsdoc/require-next-description\": 1,\n        \"jsdoc/require-next-type\": 1, // Recommended\n        \"jsdoc/require-param-description\": 1, // Recommended\n        \"jsdoc/require-param-name\": 1, // Recommended\n        \"jsdoc/require-param-type\": 1, // Recommended in non-TS configs\n        \"jsdoc/require-param\": 1, // Recommended\n        \"jsdoc/require-property-description\": 1, // Recommended\n        \"jsdoc/require-property-name\": 1, // Recommended\n        \"jsdoc/require-property-type\": 1, // Recommended in non-TS configs\n        \"jsdoc/require-property\": 1, // Recommended\n        \"jsdoc/require-rejects\": 1, // Recommended\n        \"jsdoc/require-returns-check\": 1, // Recommended\n        \"jsdoc/require-returns-description\": 1, // Recommended\n        \"jsdoc/require-returns-type\": 1, // Recommended in non-TS configs\n        \"jsdoc/require-returns\": 1, // Recommended\n        \"jsdoc/require-template\": 1,\n        \"jsdoc/require-template-description\": 1,\n        \"jsdoc/require-throws\": 1,\n        \"jsdoc/require-throws-description\": 1,\n        \"jsdoc/require-throws-type\": 1, // Recommended\n        \"jsdoc/require-yields-check\": 1, // Recommended\n        \"jsdoc/require-yields-description\": 1,\n        \"jsdoc/require-yields-type\": 1, // Recommended\n        \"jsdoc/require-yields\": 1, // Recommended\n        \"jsdoc/sort-tags\": 1,\n        \"jsdoc/tag-lines\": 1, // Recommended\n        \"jsdoc/text-escaping\": 1,\n        \"jsdoc/ts-method-signature-style\": 1,\n        \"jsdoc/ts-prefer-function-type\": 1,\n        \"jsdoc/ts-no-unnecessary-template-expression\": 1,\n        \"jsdoc/type-formatting\": 1,\n        \"jsdoc/valid-types\": 1 // Recommended\n    }\n}\n```\n\nOr you can simply add the following to [.eslintrc.*](https://eslint.org/docs/user-guide/configuring#configuration-file-formats),\nwhich enables the rules commented above as \"recommended\":\n\n\n```json\n{\n  \"extends\": [\"plugin:jsdoc/recommended\"]\n}\n```\n\nYou can then selectively add to or override the recommended rules.\n\nAlternatively, if you wish to have all linting issues reported\nas failing errors, you may use the \"recommended-error\" config:\n\n```json\n{\n  \"extends\": [\"plugin:jsdoc/recommended-error\"]\n}\n```\n\nIf you plan to use TypeScript syntax (and not just \"typescript\"\n`mode` to indicate the JSDoc flavor is TypeScript), you can use:\n\n```json\n{\n  \"extends\": [\"plugin:jsdoc/recommended-typescript\"]\n}\n```\n\n...or to report with failing errors instead of mere warnings:\n\n```json\n{\n  \"extends\": [\"plugin:jsdoc/recommended-typescript-error\"]\n}\n```\n\nIf you are not using TypeScript syntax (your source files are still `.js` files)\nbut you are using the TypeScript flavor within JSDoc (i.e., the default\n\"typescript\" `mode` in `eslint-plugin-jsdoc`) and you are perhaps using\n`allowJs` and `checkJs` options of TypeScript's `tsconfig.json`), you may\nuse:\n\n```json\n{\n  \"extends\": [\"plugin:jsdoc/recommended-typescript-flavor\"]\n}\n```\n\n...or to report with failing errors instead of mere warnings:\n\n```json\n{\n  \"extends\": [\"plugin:jsdoc/recommended-typescript-flavor-error\"]\n}\n```\n\nIf you are using [TSDoc](https://tsdoc.org/) (e.g., with [TSDoc](https://tsdoc.org/) or\n[TypeDoc](https://typedoc.org/)), you may use the `tsdoc` config, which is like\n`recommended-typescript` but additionally turns off `require-throws-type`,\n`require-yields-type`, and `require-next-type` (since TSDoc does not support\n`{Type}` annotations on those tags):\n\n```json\n{\n  \"extends\": [\"plugin:jsdoc/recommended-tsdoc\"]\n}\n```\n\n...or to report with failing errors instead of mere warnings:\n\n```json\n{\n  \"extends\": [\"plugin:jsdoc/recommended-tsdoc-error\"]\n}\n```\n\n<a name=\"user-content-eslint-plugin-jsdoc-options\"></a>\n<a name=\"eslint-plugin-jsdoc-options\"></a>\n## Options\n\nRules may, as per the [ESLint user guide](https://eslint.org/docs/user-guide/configuring), have their own individual options. In `eslint-plugin-jsdoc`, a few options,\nsuch as, `exemptedBy` and `contexts`, may be used across different rules.\n\n`eslint-plugin-jsdoc` options, if present, are generally in the form of an\nobject supplied as the second argument in an array after the error level\n(any exceptions to this format are explained within that rule's docs).\n\n```js\n// `.eslintrc.js`\n{\n  rules: {\n    'jsdoc/require-example': [\n        // The Error level should be `error`, `warn`, or `off` (or 2, 1, or 0)\n        'error',\n        // The options vary by rule, but are generally added to an options\n        //  object as follows:\n        {\n          checkConstructors: true,\n          exemptedBy: ['type']\n        }\n    ]\n  }\n}\n```\n\n<a name=\"user-content-eslint-plugin-jsdoc-settings\"></a>\n<a name=\"eslint-plugin-jsdoc-settings\"></a>\n## Settings\n\nSee [Settings](./docs/settings.md#readme).\n\n<a name=\"user-content-eslint-plugin-jsdoc-advanced\"></a>\n<a name=\"eslint-plugin-jsdoc-advanced\"></a>\n## Advanced\n\nSee [Advanced](./docs/advanced.md#readme).\n\n<a name=\"user-content-eslint-plugin-jsdoc-processors\"></a>\n<a name=\"eslint-plugin-jsdoc-processors\"></a>\n## Processors\n\nSee our `@example` and other item [processors](./docs/processors.md#readme).\n\n<a name=\"user-content-eslint-plugin-jsdoc-rules\"></a>\n<a name=\"eslint-plugin-jsdoc-rules\"></a>\n## Rules\n\nProblems reported by rules which have a wrench :wrench: below can be fixed automatically by running ESLint on the command line with `--fix` option.\n\nNote that a number of fixable rules have an `enableFixer` option which can\nbe set to `false` to disable the fixer (or in the case of `check-param-names`,\n`check-property-names`, and `no-blank-blocks`, set to `true` to enable a\nnon-default-recommended fixer).\n\n|recommended|fixable|rule|description|\n|-|-|-|-|\n|:heavy_check_mark:|| [check-access](./docs/rules/check-access.md#readme) | Checks that `@access` tags have a valid value. |\n|:heavy_check_mark:|:wrench:| [check-alignment](./docs/rules/check-alignment.md#readme) | Reports invalid alignment of JSDoc block asterisks. |\n||| [check-examples](./docs/rules/check-examples.md#readme) | @deprecated - Use `getJsdocProcessorPlugin` processor; ensures that (JavaScript) samples within `@example` tags adhere to ESLint rules. |\n||| [check-indentation](./docs/rules/check-indentation.md#readme) | Reports invalid padding inside JSDoc blocks. |\n||:wrench:| [check-line-alignment](./docs/rules/check-line-alignment.md#readme) | Reports invalid alignment of JSDoc block lines. |\n|:heavy_check_mark:|:wrench:| [check-param-names](./docs/rules/check-param-names.md#readme) | Checks for dupe `@param` names, that nested param names have roots, and that parameter names in function declarations match JSDoc param names. |\n|:heavy_check_mark:|:wrench:| [check-property-names](./docs/rules/check-property-names.md#readme) | Ensures that property names in JSDoc are not duplicated on the same block and that nested properties have defined roots. |\n||| [check-syntax](./docs/rules/check-syntax.md#readme) | Reports against syntax not valid for the mode (e.g., Google Closure Compiler in non-Closure mode). |\n|:heavy_check_mark:|:wrench:| [check-tag-names](./docs/rules/check-tag-names.md#readme) | Reports invalid block tag names. |\n||| [check-template-names](./docs/rules/check-template-names.md#readme) | Checks that any `@template` names are actually used in the connected `@typedef` or type alias. |\n|:heavy_check_mark:|:wrench:| [check-types](./docs/rules/check-types.md#readme) | Reports types deemed invalid (customizable and with defaults, for preventing and/or recommending replacements). |\n|:heavy_check_mark:|| [check-values](./docs/rules/check-values.md#readme) | This rule checks the values for a handful of tags: `@version`, `@since`, `@license` and `@author`. |\n||:wrench:| [convert-to-jsdoc-comments](./docs/rules/convert-to-jsdoc-comments.md#readme) | Converts non-JSDoc comments preceding or following nodes into JSDoc ones |\n|:heavy_check_mark:|:wrench:| [empty-tags](./docs/rules/empty-tags.md#readme) | Checks tags that are expected to be empty (e.g., `@abstract` or `@async`), reporting if they have content |\n|:heavy_check_mark:|:wrench:| [escape-inline-tags](./docs/rules/escape-inline-tags.md#readme) | Reports use of JSDoc tags in non-tag positions (in the default \"typescript\" mode). |\n|:heavy_check_mark:|| [implements-on-classes](./docs/rules/implements-on-classes.md#readme) | Prohibits use of `@implements` on non-constructor functions (to enforce the tag only being used on classes/constructors). |\n||| [imports-as-dependencies](./docs/rules/imports-as-dependencies.md#readme) | Reports if JSDoc `import()` statements point to a package which is not listed in `dependencies` or `devDependencies` |\n||| [informative-docs](./docs/rules/informative-docs.md#readme) | This rule reports doc comments that only restate their attached name. |\n||:wrench:| [lines-before-block](./docs/rules/lines-before-block.md#readme) | Enforces minimum number of newlines before JSDoc comment blocks |\n||| [match-description](./docs/rules/match-description.md#readme) | Enforces a regular expression pattern on descriptions. |\n||:wrench:| [match-name](./docs/rules/match-name.md#readme) | Reports the name portion of a JSDoc tag if matching or not matching a given regular expression. |\n|:heavy_check_mark:|:wrench:| [multiline-blocks](./docs/rules/multiline-blocks.md#readme) | Controls how and whether JSDoc blocks can be expressed as single or multiple line blocks. |\n||:wrench:| [no-bad-blocks](./docs/rules/no-bad-blocks.md#readme) | This rule checks for multi-line-style comments which fail to meet the criteria of a JSDoc block. |\n||:wrench:| [no-blank-block-descriptions](./docs/rules/no-blank-block-descriptions.md#readme) | If tags are present, this rule will prevent empty lines in the block description. If no tags are present, this rule will prevent extra empty lines in the block description. |\n||:wrench:| [no-blank-blocks](./docs/rules/no-blank-blocks.md#readme) | Removes empty blocks with nothing but possibly line breaks |\n|:heavy_check_mark:|:wrench:| [no-defaults](./docs/rules/no-defaults.md#readme) | This rule reports defaults being used on the relevant portion of `@param` or `@default`. |\n||| [no-missing-syntax](./docs/rules/no-missing-syntax.md#readme) | Reports when certain comment structures are always expected. |\n|:heavy_check_mark:|:wrench:| [no-multi-asterisks](./docs/rules/no-multi-asterisks.md#readme) | Prevents use of multiple asterisks at the beginning of lines. |\n||| [no-restricted-syntax](./docs/rules/no-restricted-syntax.md#readme) | Reports when certain comment structures are present. |\n|On in TS; Off in TS flavor|:wrench:| [no-types](./docs/rules/no-types.md#readme) | This rule reports types being used on `@param` or `@returns` (redundant with TypeScript). |\n|:heavy_check_mark: (Off in TS; Off in TS flavor)|| [no-undefined-types](./docs/rules/no-undefined-types.md#readme) | Besides some expected built-in types, prohibits any types not specified as globals or within `@typedef`. |\n||:wrench:| [prefer-import-tag](./docs/rules/prefer-import-tag.md#readme) | Prefer `@import` tags to inline `import()` statements. |\n|:heavy_check_mark:|| [reject-any-type](./docs/rules/reject-any-type.md#readme) | Reports use of `any` or `*` type |\n|:heavy_check_mark:|| [reject-function-type](./docs/rules/reject-function-type.md#readme) | Reports use of `Function` type |\n||:wrench:| [require-asterisk-prefix](./docs/rules/require-asterisk-prefix.md#readme) | Requires that each JSDoc line starts with an `*`. |\n||| [require-description](./docs/rules/require-description.md#readme) | Requires that all functions (and potentially other contexts) have a description. |\n||:wrench:| [require-description-complete-sentence](./docs/rules/require-description-complete-sentence.md#readme) | Requires that block description, explicit `@description`, and `@param`/`@returns` tag descriptions are written in complete sentences. |\n||:wrench:| [require-example](./docs/rules/require-example.md#readme) | Requires that all functions (and potentially other contexts) have examples. |\n||| [require-file-overview](./docs/rules/require-file-overview.md#readme) | Checks that all files have one `@file`, `@fileoverview`, or `@overview` tag at the beginning of the file. |\n||:wrench:| [require-hyphen-before-param-description](./docs/rules/require-hyphen-before-param-description.md#readme) | Requires a hyphen before the `@param` description (and optionally before `@property` descriptions). |\n|:heavy_check_mark:|:wrench:| [require-jsdoc](./docs/rules/require-jsdoc.md#readme) | Checks for presence of JSDoc comments, on functions and potentially other contexts (optionally limited to exports). |\n||| [require-next-description](./docs/rules/require-next-description.md#readme) | Requires a description for `@next` tags |\n|:heavy_check_mark:|| [require-next-type](./docs/rules/require-next-type.md#readme) | Requires a type for `@next` tags |\n|:heavy_check_mark:|:wrench:| [require-param](./docs/rules/require-param.md#readme) | Requires that all function parameters are documented with a `@param` tag. |\n|:heavy_check_mark:|:wrench:| [require-param-description](./docs/rules/require-param-description.md#readme) | Requires that each `@param` tag has a `description` value. |\n|:heavy_check_mark:|| [require-param-name](./docs/rules/require-param-name.md#readme) | Requires that all `@param` tags have names. |\n|:heavy_check_mark: (Off in TS; On in TS flavor)|:wrench:| [require-param-type](./docs/rules/require-param-type.md#readme) | Requires that each `@param` tag has a type value (in curly brackets). |\n|:heavy_check_mark:|:wrench:| [require-property](./docs/rules/require-property.md#readme) | Requires that all `@typedef` and `@namespace` tags have `@property` when their type is a plain `object`, `Object`, or `PlainObject`. |\n|:heavy_check_mark:|| [require-property-description](./docs/rules/require-property-description.md#readme) | Requires that each `@property` tag has a `description` value. |\n|:heavy_check_mark:|| [require-property-name](./docs/rules/require-property-name.md#readme) | Requires that all `@property` tags have names. |\n|:heavy_check_mark: (Off in TS; On in TS flavor)|| [require-property-type](./docs/rules/require-property-type.md#readme) | Requires that each `@property` tag has a type value (in curly brackets). |\n||| [require-rejects](./docs/rules/require-rejects.md#readme) | Requires that Promise rejections are documented with `@rejects` tags. |\n|:heavy_check_mark:|:wrench:| [require-returns](./docs/rules/require-returns.md#readme) | Requires that returns are documented with `@returns`. |\n|:heavy_check_mark:|| [require-returns-check](./docs/rules/require-returns-check.md#readme) | Requires a return statement in function body if a `@returns` tag is specified in JSDoc comment(and reports if multiple `@returns` tags are present). |\n|:heavy_check_mark:|| [require-returns-description](./docs/rules/require-returns-description.md#readme) | Requires that the `@returns` tag has a `description` value (not including `void`/`undefined` type returns). |\n|:heavy_check_mark: (Off in TS; On in TS flavor)|| [require-returns-type](./docs/rules/require-returns-type.md#readme) | Requires that `@returns` tag has type value (in curly brackets). |\n||| [require-tags](./docs/rules/require-tags.md#readme) | Requires tags be present, optionally for specific contexts |\n||| [require-template](./docs/rules/require-template.md#readme) | Requires `@template` tags be present when type parameters are used. |\n||| [require-template-description](./docs/rules/require-template-description.md#readme) | Requires a description for `@template` tags |\n||| [require-throws](./docs/rules/require-throws.md#readme) | Requires that throw statements are documented with `@throws` tags. |\n||| [require-throws-description](./docs/rules/require-throws-description.md#readme) | Requires a description for `@throws` tags |\n|:heavy_check_mark:|| [require-throws-type](./docs/rules/require-throws-type.md#readme) | Requires a type for `@throws` tags |\n|:heavy_check_mark:|| [require-yields](./docs/rules/require-yields.md#readme) | Requires yields are documented with `@yields` tags. |\n|:heavy_check_mark:|| [require-yields-check](./docs/rules/require-yields-check.md#readme) | Ensures that if a `@yields` is present that a `yield` (or `yield` with a value) is present in the function body (or that if a `@next` is present that there is a yield with a return value present). |\n||| [require-yields-description](./docs/rules/require-yields-description.md#readme) | Requires a description for `@yields` tags |\n|:heavy_check_mark:|| [require-yields-type](./docs/rules/require-yields-type.md#readme) | Requires a type for `@yields` tags |\n||:wrench:| [sort-tags](./docs/rules/sort-tags.md#readme) | Sorts tags by a specified sequence according to tag name, optionally adding line breaks between tag groups. |\n|:heavy_check_mark:|:wrench:| [tag-lines](./docs/rules/tag-lines.md#readme) | Enforces lines (or no lines) before, after, or between tags. |\n||:wrench:| [text-escaping](./docs/rules/text-escaping.md#readme) | Auto-escape certain characters that are input within block and tag descriptions. |\n||:wrench:| [ts-method-signature-style](./docs/rules/ts-method-signature-style.md#readme) | Prefers either function properties or method signatures |\n|:heavy_check_mark:|| [ts-no-empty-object-type](./docs/rules/ts-no-empty-object-type.md#readme) | Warns against use of the empty object type |\n||:wrench:| [ts-no-unnecessary-template-expression](./docs/rules/ts-no-unnecessary-template-expression.md#readme) | Catches unnecessary template expressions such as string expressions within a template literal. |\n||:wrench:| [ts-prefer-function-type](./docs/rules/ts-prefer-function-type.md#readme) | Prefers function types over call signatures when there are no other properties. |\n||:wrench:| [type-formatting](./docs/rules/type-formatting.md#readme) | Formats JSDoc type values. |\n|:heavy_check_mark:|| [valid-types](./docs/rules/valid-types.md#readme) | Requires all types/namepaths to be valid JSDoc, Closure compiler, or TypeScript types (configurable in settings). |\n","repository":{"type":"git","url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git"},"users":{"bsara":true,"netweb":true,"vidhill":true,"kogakure":true,"rochejul":true,"xueboren":true,"cognivator":true,"chkhikvadze":true,"flumpus-dev":true},"bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"license":"BSD-3-Clause","versions":{"0.0.0":{"name":"eslint-plugin-jsdoc","version":"0.0.0","_id":"eslint-plugin-jsdoc@0.0.0","maintainers":[{"name":"anonymous","email":"gajus@applaudience.com"}],"dist":{"shasum":"c3c1d49fef800d0c035f6a390b90eb4417fcac01","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-0.0.0.tgz","integrity":"sha512-2uq/YwZga0SLvxG1m3FbXPiIDFhmEISxbyCsrfLyxPqnhCidj9fXPOmLdHbUq3LulKLYyLACwPW9qdL8UTI2bA==","signatures":[{"sig":"MEUCIQCncjdPYJPpibJSU5YyFHegoxnUXOzMRkeYUsKkUVGqgwIgKBzl7t/sti5qO2AvAMJc+KTtk4yn5I2/BgL8RLjogt4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"c3c1d49fef800d0c035f6a390b90eb4417fcac01","scripts":{},"_npmUser":{"name":"anonymous","email":"gajus@applaudience.com"},"_npmVersion":"2.14.2","directories":{},"_nodeVersion":"4.0.0"},"0.0.1":{"name":"eslint-plugin-jsdoc","version":"0.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gk@anuary.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@0.0.1","maintainers":[{"name":"anonymous","email":"gajus@applaudience.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"eb6255f55879f25ed79447680c278743e8dbc031","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-0.0.1.tgz","integrity":"sha512-blqoV9MFLV5fHDsq96gcJwVCiXF1KDTs072lL2VC5PhB5NL6V3HnVfx/GEYu0cvtjVwWvNQ5BSRXZ/0CaUYhtQ==","signatures":[{"sig":"MEUCIGaj5kOp8lNv7IsWn3JD3zwkPhf0P4Y/n/pGLhskn2deAiEAqkkw3FVYN8+vhwGZvFORM712RfErQgosnOry8Ev4Sno=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"eb6255f55879f25ed79447680c278743e8dbc031","gitHead":"8044b83d804e23beb2d6d8662fdaeb1e11303cf5","scripts":{"test":"babel-node ./node_modules/.bin/mocha ./test/**/*.js","build":"babel ./src/ --out-dir ./dist/","watch":"babel --watch ./src/ --out-dir ./dist/"},"_npmUser":{"name":"anonymous","email":"gajus@applaudience.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"2.14.3","description":"JSDoc specific linting rules for ESLint.","directories":{},"_nodeVersion":"4.1.0","dependencies":{"jscs":"^2.1.1","lodash":"^3.10.1","jscs-jsdoc":"^1.1.0"},"devDependencies":{"babel":"^5.8.23","mocha":"^2.3.2","eslint":"^1.5.0"},"peerDependencies":{"eslint":">=0.8.0"}},"0.0.2":{"name":"eslint-plugin-jsdoc","version":"0.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gk@anuary.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@0.0.2","maintainers":[{"name":"anonymous","email":"gajus@applaudience.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"b7e9085c48ca472f41bce67b1d2462d4420597c8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-0.0.2.tgz","integrity":"sha512-FKEpAkEDOnO4yEopbjX0UH+q8tyL2iwq2IpudfFpm7epbiL28tRc7bCCXZWAvo8aBButUlpfX2p/sd43WvDBzg==","signatures":[{"sig":"MEUCIQCTmkwbh9bbLWhQ8KhtVA6KOoiJgDnOfl9er2cTy9XFwQIgeyy2EmEMeYram4i6Y3hmV31H0xB2QzJt20iwKM8qiHU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"b7e9085c48ca472f41bce67b1d2462d4420597c8","gitHead":"604b5f820d422399e836d73082510a0d0feb53c8","scripts":{"test":"babel-node ./node_modules/.bin/mocha ./test/**/*.js","build":"babel ./src/ --out-dir ./dist/","watch":"babel --watch ./src/ --out-dir ./dist/"},"_npmUser":{"name":"anonymous","email":"gajus@applaudience.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"2.14.3","description":"JSDoc specific linting rules for ESLint.","directories":{},"_nodeVersion":"4.1.0","dependencies":{"jscs":"^2.1.1","lodash":"^3.10.1","jscs-jsdoc":"^1.1.0"},"devDependencies":{"babel":"^5.8.23","mocha":"^2.3.2","eslint":"^1.5.0"},"peerDependencies":{"eslint":">=0.8.0"}},"1.0.1":{"name":"eslint-plugin-jsdoc","version":"1.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gk@anuary.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@1.0.1","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"4f3e25366571a9826b31d2005bc5d3a57df667a4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-1.0.1.tgz","integrity":"sha512-zoaOVMBkskiaWopGIsqvRdctnhcmiQ545byW8/pzYfeuCOycmcCUp16ruEENepERh5EG4mNb7XNtjKQEtv0fcA==","signatures":[{"sig":"MEUCICKU4HbSv5XXes9S23nYNMATsSdygEyv1V6IJNIJ8ErmAiEA89C4tn0t/EBNudI1BEWdBDp0Wg0eJhPgGdWTaZ9AVIY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"4f3e25366571a9826b31d2005bc5d3a57df667a4","gitHead":"f6a740d2b869f77e7f43c20a08b922feb3471b87","scripts":{"test":"node ./node_modules/.bin/babel-node ./node_modules/.bin/mocha ./test/**/*.js","build":"babel ./src/ --out-dir ./dist/","watch":"babel --watch ./src/ --out-dir ./dist/","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md"},"_npmUser":{"name":"anonymous","email":"gk@anuary.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.3.3","description":"JSDoc specific linting rules for ESLint.","directories":{},"_nodeVersion":"4.1.0","dependencies":{"jscs":"^2.2.1","lodash":"^3.10.1","jscs-jsdoc":"^1.2.0"},"devDependencies":{"babel":"^5.8.23","mocha":"^2.3.3","eslint":"^1.5.1","gitdown":"^2.3.1"},"peerDependencies":{"eslint":">=0.8.0"}},"1.1.0":{"name":"eslint-plugin-jsdoc","version":"1.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gk@anuary.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@1.1.0","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"26353430d9503c0d24c2b5f03a30002bc29fa57b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-1.1.0.tgz","integrity":"sha512-X2dSJe4qdygxny5nV7vYgyErscONRHfeJEJOqzw5KSzs2HyxRS74wEKYdTGu4jOml3LonDDQoKQqfThgV3Qnbg==","signatures":[{"sig":"MEUCIQDeznV4vZq7RfydtcM/ERmmfeaCrCHj1sABnM6DTHpe9gIgDW+oC6+mAxivu4XUy/d9TiQKl1Dz0qyVPchs1T7QSWA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"26353430d9503c0d24c2b5f03a30002bc29fa57b","gitHead":"b07ce5b3ddcb1c9ab1348fb0d9c4c528ec39c924","scripts":{"test":"node ./node_modules/.bin/babel-node ./node_modules/.bin/mocha ./test/**/*.js","build":"babel ./src/ --out-dir ./dist/","watch":"babel --watch ./src/ --out-dir ./dist/","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md"},"_npmUser":{"name":"anonymous","email":"gk@anuary.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"2.14.4","description":"JSDoc specific linting rules for ESLint.","directories":{},"_nodeVersion":"4.1.2","dependencies":{"jscs":"^2.2.1","lodash":"^3.10.1","jscs-jsdoc":"^1.2.0"},"devDependencies":{"babel":"^5.8.23","mocha":"^2.3.3","eslint":"^1.5.1","gitdown":"^2.4.0"},"peerDependencies":{"eslint":">=0.8.0"}},"1.1.2":{"name":"eslint-plugin-jsdoc","version":"1.1.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@1.1.2","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"d50bff5f53c2388d243f28adcd50b20a71985501","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-1.1.2.tgz","integrity":"sha512-IKwbJKpUqj9fFsyAdstubOtXq5QoPIFnHun05q2tqt2EOkNgLK49RPoBBJngmPvn8tKxlo0+Xu5ZHTexuOJKEg==","signatures":[{"sig":"MEQCIGXJIVtO9Pyb30qrADUqZa+yWjmjO4lAYl3nIjY4vH9bAiAEWwq3bEasc1DVZaTDNovDl9zDEkhOAUflOLT551+xHg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"d50bff5f53c2388d243f28adcd50b20a71985501","gitHead":"1535bf8ab7e0c1377933fd48413303ff3a4fb015","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md","pragmatist":"node ./node_modules/.bin/pragmatist","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.3.12","description":"JSDoc specific linting rules for ESLint.","directories":{},"_nodeVersion":"5.2.0","dependencies":{"jscs":"^2.2.1","lodash":"^3.10.1","jscs-jsdoc":"^1.2.0"},"devDependencies":{"mocha":"^2.3.3","gitdown":"^2.4.0","pragmatist":"^2.3.5"},"peerDependencies":{"eslint":">=0.8.0"}},"1.1.3":{"name":"eslint-plugin-jsdoc","version":"1.1.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@1.1.3","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"88b3ea4bc5994977cea5e8118f9c2aa3332b1b04","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-1.1.3.tgz","integrity":"sha512-/3E6YzmrrOpKpgiR4+N7GfP7wodi2KqcMViwtM4VgzVDkQ8EVwJGz78RDUopeSeIb6bL7NJK72CuJ1U1VJnhvw==","signatures":[{"sig":"MEUCIQD+q6/SqDxWUVNqWVXXa3fcTe0voOhQaS5GT6T1h23ikgIgDlKm7Ce315T3uGkpQEjnyrHMoVon45jKAVI4NCeSXv8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"88b3ea4bc5994977cea5e8118f9c2aa3332b1b04","gitHead":"d7321fe9a2a87048082c3363e3e4da45a004e651","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md","pragmatist":"node ./node_modules/.bin/pragmatist","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.5.2","description":"JSDoc specific linting rules for ESLint.","directories":{},"_nodeVersion":"5.2.0","dependencies":{"jscs":"^2.7.0","lodash":"^3.10.1","jscs-jsdoc":"^1.3.1"},"devDependencies":{"mocha":"^2.3.4","gitdown":"^2.4.0","pragmatist":"^2.3.6"},"peerDependencies":{"eslint":">=0.8.0"}},"2.0.1":{"name":"eslint-plugin-jsdoc","version":"2.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@2.0.1","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"0adcda29fdc782e52b0161983fe41ba8acbbaae5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-2.0.1.tgz","integrity":"sha512-eytS+t3Igh7nPtBavmTUmBDQo2K2Ro9QeeTAWxI0fZKttTb31K5sGlX+E7WW+cJCfO3fcqEwfDYg/fxuawA6IA==","signatures":[{"sig":"MEQCIDWQN6fFZvc63qebxRKNsaB3WVpMcwgvEd2ViimlbbqWAiAeuJ0zNevzuVohfDVABDjI5tpj0Z5MSjRwe5bmav7zMg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"0adcda29fdc782e52b0161983fe41ba8acbbaae5","gitHead":"764d25e0696dd047f6fcab4bc0f53224e6799203","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md; npm run readme-add-assertions","pragmatist":"node ./node_modules/.bin/pragmatist --browser","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build","readme-add-assertions":"babel-node --presets es2015 ./bin/readme-assertions.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.5.2","description":"JSDoc specific linting rules for ESLint.","directories":{},"_nodeVersion":"5.2.0","dependencies":{"lodash":"^3.10.1","comment-parser":"^0.3.1"},"devDependencies":{"mocha":"^2.3.4","eslint":"^1.10.3","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.3.17","pragmatist":"^2.3.6","babel-preset-es2015":"^6.3.13"},"peerDependencies":{"eslint":">=0.8.0"}},"2.0.2":{"name":"eslint-plugin-jsdoc","version":"2.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@2.0.2","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"9a090187155cf9e3adb7651b84192c902b26be37","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-2.0.2.tgz","integrity":"sha512-8yeF3kXFH7LYZnBSS+kxIB0/cocOu5iHAxRB58IKLjkeLCkKviEWTiwU1qK3Vg/Y4JzGxRgDhR4tT+2aasBSSQ==","signatures":[{"sig":"MEYCIQCQPn0fcUH5FtKjRV6meD0YZ59EWiDT67QvXz/vBfWqYgIhAJVPQjnbDzYkAZD49hcxRNGGRa1Woh0hgpJybnJJLLnq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"9a090187155cf9e3adb7651b84192c902b26be37","gitHead":"96b33b86d5c532d6b5715315209aca1fa243675e","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md; npm run readme-add-assertions","pragmatist":"node ./node_modules/.bin/pragmatist --browser","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build","readme-add-assertions":"babel-node --presets es2015 ./bin/readme-assertions.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.5.2","description":"JSDoc specific linting rules for ESLint.","directories":{},"_nodeVersion":"5.2.0","dependencies":{"lodash":"^3.10.1","comment-parser":"^0.3.1"},"devDependencies":{"mocha":"^2.3.4","eslint":"^1.10.3","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.3.17","pragmatist":"^2.3.6","babel-preset-es2015":"^6.3.13"},"peerDependencies":{"eslint":">=0.8.0"}},"2.0.3":{"name":"eslint-plugin-jsdoc","version":"2.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@2.0.3","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"8871cc59125ce761ab45ac41d27103c027181145","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-2.0.3.tgz","integrity":"sha512-RlGFVeAp8yUpkj71DjevyuHDekBtA+1fmM3/IouQxQGBffAw1n6nIgMW0QRQxUM92Mw1FD/tqOEGYkrvzCAEfg==","signatures":[{"sig":"MEYCIQDEKoquDHlQveIH/bAZho5oqGEkYqnxtuPUbQKUFjHkJQIhAKfhTqJBx0wRVn/PrKEsxKIEfzB++3Ob1eT1yi5jIwdB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"8871cc59125ce761ab45ac41d27103c027181145","gitHead":"7b9e29835d77a9ea96048a4d545153801547152d","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md; npm run readme-add-assertions","pragmatist":"node ./node_modules/.bin/pragmatist --browser","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build","readme-add-assertions":"babel-node --presets es2015 ./bin/readme-assertions.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.5.2","description":"JSDoc specific linting rules for ESLint.","directories":{},"_nodeVersion":"5.2.0","dependencies":{"lodash":"^3.10.1","comment-parser":"^0.3.1"},"devDependencies":{"mocha":"^2.3.4","eslint":"^1.10.3","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.3.17","pragmatist":"^2.3.6","babel-preset-es2015":"^6.3.13"},"peerDependencies":{"eslint":">=0.8.0"}},"2.0.4":{"name":"eslint-plugin-jsdoc","version":"2.0.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@2.0.4","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"b0334f464fc2879593f450316634bb1af0f2e34a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-2.0.4.tgz","integrity":"sha512-Q81qZZsc5CY5Txw8raVSXmVqCXlB67GX76KF7bgF25FEHVKtlGyLeDYc2LBptjo9IIejKBnMAjuGE3DO8au05g==","signatures":[{"sig":"MEQCICNvgrX6HaO9LOeaEqTZzSSHRy+F4GfWAtEiGwmgKzMXAiAK4dpcwguWj4Lym/g5clu62+Nuc+8kVU6W0+EegU9snw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"b0334f464fc2879593f450316634bb1af0f2e34a","gitHead":"062572e62d7b7fd6fa0f2c1db208b25bd66cd35b","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md; npm run readme-add-assertions","pragmatist":"node ./node_modules/.bin/pragmatist --browser","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build","readme-add-assertions":"babel-node --presets es2015 ./bin/readme-assertions.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.5.2","description":"JSDoc specific linting rules for ESLint.","directories":{},"_nodeVersion":"5.2.0","dependencies":{"lodash":"^3.10.1","comment-parser":"^0.3.1"},"devDependencies":{"mocha":"^2.3.4","eslint":"^1.10.3","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.3.17","pragmatist":"^2.3.6","babel-preset-es2015":"^6.3.13"},"peerDependencies":{"eslint":">=0.8.0"}},"2.1.0":{"name":"eslint-plugin-jsdoc","version":"2.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@2.1.0","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"4ac651a7eb186633728aec4d65b5bf061e66caed","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-2.1.0.tgz","integrity":"sha512-5npR+KEdHFVUU88hzxAtbkH2gDBlZw3JC3ldHQEfeiP9CX13iOOIz7f2TJ6NPPCvkYcDKBKyEiPfPGG+aoj8HA==","signatures":[{"sig":"MEUCIDN1Hq+r+EqXZ6y2ZfM9se/2/h8DPFD+9245sLyAphpuAiEAlyJgVakaH+EgrlH/1R5mO6yHbFhewc6NdmbKarTmkQw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"4ac651a7eb186633728aec4d65b5bf061e66caed","gitHead":"730565878dee83c56f362e7605b434e5b52dcc91","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md; npm run readme-add-assertions","pragmatist":"node ./node_modules/.bin/pragmatist --browser","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build","readme-add-assertions":"babel-node --presets es2015 ./bin/readme-assertions.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.5.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"5.2.0","dependencies":{"lodash":"^3.10.1","comment-parser":"^0.3.1"},"devDependencies":{"mocha":"^2.3.4","eslint":"^1.10.3","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.3.17","pragmatist":"^2.3.6","babel-preset-es2015":"^6.3.13"},"peerDependencies":{"eslint":">=0.8.0"}},"2.1.1":{"name":"eslint-plugin-jsdoc","version":"2.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@2.1.1","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"eb64c819bab3dc64f230ddb2f0bf92c24118b209","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-2.1.1.tgz","integrity":"sha512-jzIjo/4m57Xc15HI9G/aWvidBQBo9+n9BzvZw9CjJc/tDuc2j6j1uf39Nf0qrrVhzzyPkldvoN8TrEBKCaazdg==","signatures":[{"sig":"MEUCIGVoE5HLhW1nK36gPopu1kJ6s6pWtSJlLK2kMfTYSGiUAiEA72kIF7tlEY3iiJw3uLwMaRDHxoM/jBSol/zZ1x6lnoQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"eb64c819bab3dc64f230ddb2f0bf92c24118b209","gitHead":"7ea2effc8b79d6e875074b06608982391df84e1a","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md; npm run readme-add-assertions","pragmatist":"node ./node_modules/.bin/pragmatist --browser","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build","readme-add-assertions":"babel-node --presets es2015 ./bin/readme-assertions.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.5.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"5.2.0","dependencies":{"lodash":"^3.10.1","comment-parser":"^0.3.1"},"devDependencies":{"mocha":"^2.3.4","eslint":"^1.10.3","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.3.17","pragmatist":"^2.3.6","babel-preset-es2015":"^6.3.13"},"peerDependencies":{"eslint":">=0.8.0"}},"2.1.2":{"name":"eslint-plugin-jsdoc","version":"2.1.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@2.1.2","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"57a4aa92b26cc6f9b399749a90496a3591c23f68","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-2.1.2.tgz","integrity":"sha512-+ELlFFbsyYCFqwGxiPDLAPIltZO+kfTcm77Iy7OdN5/8F+AYdJY+khMcW0mtlQf2+ClyWeiry8vizdOs/iP/qA==","signatures":[{"sig":"MEUCIQC7MpN0faauemhmZIQYjG4NAnmbTHeO4ogaLmVCYwPICwIgYGtG3pfSYYRS+1SWk0AsSN0ToKADLBHf5o0QOqnGWV0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"57a4aa92b26cc6f9b399749a90496a3591c23f68","gitHead":"447f7b3363fcca3e4bdf78895b980b304d03b147","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md; npm run readme-add-assertions","pragmatist":"node ./node_modules/.bin/pragmatist --browser","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build","readme-add-assertions":"babel-node --presets es2015 ./bin/readme-assertions.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.5.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"5.2.0","dependencies":{"lodash":"^3.10.1","comment-parser":"^0.3.1"},"devDependencies":{"mocha":"^2.3.4","eslint":"^1.10.3","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.3.17","pragmatist":"^2.3.6","babel-preset-es2015":"^6.3.13"},"peerDependencies":{"eslint":">=0.8.0"}},"2.1.3":{"name":"eslint-plugin-jsdoc","version":"2.1.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@2.1.3","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"d480fc223f67e50c26366270fde28254fdbd2f20","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-2.1.3.tgz","integrity":"sha512-GwrZ385vxK0RDjNQ13VTuPaxec1xExYn2hzrxaBxSIaRDwD+xaIQUKpAWMGICSfXJCJA4EvRlNtkRM4G7pQReg==","signatures":[{"sig":"MEUCIQDgYh8Ax4RGpmfaPIWijU2En0fm0buhCfXRDbIq0fKBMwIgc3JvzSJt3M+TveaxwdmpkDYAoFUZuEsyUhhyLDrrz8Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"d480fc223f67e50c26366270fde28254fdbd2f20","gitHead":"40a7673ee8b22fd254ee03687be1eb892ed05c13","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md; npm run readme-add-assertions","pragmatist":"node ./node_modules/.bin/pragmatist --browser","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build","readme-add-assertions":"babel-node --presets es2015 ./bin/readme-assertions.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.5.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"5.2.0","dependencies":{"lodash":"^3.10.1","comment-parser":"^0.3.1"},"devDependencies":{"mocha":"^2.3.4","eslint":"^1.10.3","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.3.17","pragmatist":"^2.3.9","babel-preset-es2015":"^6.3.13"},"peerDependencies":{"eslint":">=0.8.0"}},"2.1.4":{"name":"eslint-plugin-jsdoc","version":"2.1.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@2.1.4","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"9a6e66240e0d1f84ab5e8d72fb4f05cb232b908a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-2.1.4.tgz","integrity":"sha512-tnVB95oXiI0OJI/ZJ4cO2sHzHiNy9LWce1oUynVgaetyCnuji+mM0j2T7Jk9XGjWxlJTj2fKr5FFZSlfJm8dIQ==","signatures":[{"sig":"MEQCIHGKN9041MXcrqaDfdbn6OK6eCks5htcAls5WA7myGTNAiAvJzzhYa1IRN7xsXw0w9OFKavXgiH+oQPssk/ho/QqFQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"9a6e66240e0d1f84ab5e8d72fb4f05cb232b908a","gitHead":"305ccbc36606f8f8e01bc561b6e14ea9e9422c25","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md; npm run readme-add-assertions","pragmatist":"node ./node_modules/.bin/pragmatist --browser","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build","readme-add-assertions":"babel-node --presets es2015 ./bin/readme-assertions.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.5.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"5.2.0","dependencies":{"lodash":"^3.10.1","comment-parser":"^0.3.1"},"devDependencies":{"mocha":"^2.3.4","eslint":"^1.10.3","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.3.17","pragmatist":"^2.3.9","babel-preset-es2015":"^6.3.13"},"peerDependencies":{"eslint":">=0.8.0"}},"2.2.0":{"name":"eslint-plugin-jsdoc","version":"2.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@2.2.0","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"9b9551694aaec64d4f20b31da0f06f8e7d1020fb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-2.2.0.tgz","integrity":"sha512-GtFEbrlBHXUkMXAOHEr8LpxF5adm7Lb6jQI98kZm3OTx91/iC9GHPKM9TFgEn8t+G5b55QkVh42EPQnHjnadfQ==","signatures":[{"sig":"MEQCIAgEjM7ztDRaZyw2sBIHgzEEHCkCDuH1tY4r6W4sBl56AiAeKHY5cDkH8aIPcvPIwULE/xbQUUdh5rIotoQ40Q4pRA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"9b9551694aaec64d4f20b31da0f06f8e7d1020fb","gitHead":"3f80240cb0f9d6c91b9f7aa9149266410dcc2a54","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md; npm run readme-add-assertions","pragmatist":"node ./node_modules/.bin/pragmatist --browser","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build","readme-add-assertions":"babel-node --presets es2015 ./bin/readme-assertions.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.5.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"5.2.0","dependencies":{"lodash":"^3.10.1","comment-parser":"^0.3.1"},"devDependencies":{"chai":"^3.4.1","mocha":"^2.3.4","eslint":"^1.10.3","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.3.17","pragmatist":"^2.3.13","babel-preset-es2015":"^6.3.13"},"peerDependencies":{"eslint":">=0.8.0"}},"2.2.1":{"name":"eslint-plugin-jsdoc","version":"2.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@2.2.1","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"286b2399b3e8fbdf8d5adebb826192b4da805431","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-2.2.1.tgz","integrity":"sha512-341kqtdLxJu2zTrj8DvBnVfbTHDL80mM3ah5tq12Eu6y+u4/+wOkFuy2bZyuz4gNzryyy2HnePYqPiYk0m9EpQ==","signatures":[{"sig":"MEYCIQDoe26nOA/TqTJCL8kpe87V56QACa8LEjH8IdyEdF/bgQIhANGvWNwvGuED6YO5OMqgQ4yL9avD1G3wIIc17zUIQw/Y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"286b2399b3e8fbdf8d5adebb826192b4da805431","gitHead":"02453b480c46a63b4c9f4d44f8eff4537608bed4","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md; npm run readme-add-assertions","pragmatist":"node ./node_modules/.bin/pragmatist --browser","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build","readme-add-assertions":"babel-node --presets es2015 ./bin/readme-assertions.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.5.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"5.2.0","dependencies":{"lodash":"^3.10.1","comment-parser":"^0.3.1"},"devDependencies":{"chai":"^3.4.1","mocha":"^2.3.4","eslint":"^1.10.3","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.3.17","pragmatist":"^2.3.13","babel-preset-es2015":"^6.3.13"},"peerDependencies":{"eslint":">=0.8.0"}},"2.2.2":{"name":"eslint-plugin-jsdoc","version":"2.2.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@2.2.2","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"45893050116ab6c243fee98e23fdd5d8c4f4e533","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-2.2.2.tgz","integrity":"sha512-OGGJQt7wBgVgD9EhJyYi7gqAeGXlQZihQINMCxgUBHNBkCBA7xmg4MimIMs2MGtc3+YMGxC5BBE/A64+rkNniQ==","signatures":[{"sig":"MEUCIQDlv52SnP2sDhYeKEwDqXqzXFAcAhneXKSEJdj60APTgAIgKSNZrejl73Y27yTlvpbIYZLwi7rbI9OZc18OSps29UA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"45893050116ab6c243fee98e23fdd5d8c4f4e533","gitHead":"87108fcb84e9e765a22343176c8b2dfeb9bde00a","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md; npm run readme-add-assertions","pragmatist":"node ./node_modules/.bin/pragmatist --browser","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build","readme-add-assertions":"babel-node --presets es2015 ./bin/readme-assertions.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.5.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"5.3.0","dependencies":{"lodash":"^3.10.1","comment-parser":"^0.3.1"},"devDependencies":{"chai":"^3.4.1","mocha":"^2.3.4","eslint":"^1.10.3","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.3.17","pragmatist":"^2.3.67","babel-preset-es2015":"^6.3.13"},"peerDependencies":{"eslint":">=0.8.0"}},"2.2.3":{"name":"eslint-plugin-jsdoc","version":"2.2.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@2.2.3","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"42d6e427768fb9fed12f2595719b13cf68e73f2f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-2.2.3.tgz","integrity":"sha512-exgGFTfaMIyp4hZxSPS0pd9h42uezFlZdu7c68WidmjNdoyhM5gTq7whMYoSQ8vXeXchfZXoyiDLs7jD/ePzUw==","signatures":[{"sig":"MEYCIQDl5YPtS4qBOewMaS4MtuGfb8uN2Xq4aY4H1ZdGq7dz9AIhALDLKPV9VPFv1tn8TxgYoRYZQocB2NkEi3o39Ql21xe9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"42d6e427768fb9fed12f2595719b13cf68e73f2f","gitHead":"f2ff8a94a5aa82934915ae4d0c36617a0a7e2225","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md; npm run readme-add-assertions","pragmatist":"node ./node_modules/.bin/pragmatist --es5","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build","readme-add-assertions":"babel-node --presets es2015 ./bin/readme-assertions.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.7.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"5.6.0","dependencies":{"lodash":"^4.3.0","comment-parser":"^0.4.0"},"devDependencies":{"chai":"^3.5.0","mocha":"^2.4.5","eslint":"^2.0.0","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.5.1","pragmatist":"^3.0.4","babel-preset-es2015":"^6.5.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc-2.2.3.tgz_1455461434361_0.7580304490402341","host":"packages-9-west.internal.npmjs.com"}},"2.2.4":{"name":"eslint-plugin-jsdoc","version":"2.2.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@2.2.4","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"a53679a2a2e19c5b0a9606b55a6e44428c8857d7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-2.2.4.tgz","integrity":"sha512-m944ObYnOa90Auw1hL5JHdqoFt8jHHFzO9CJ4ceakbLSZIzJLZHR0OiWtuGZHbWVg3cmJwKyd1wdevqvOwGVGg==","signatures":[{"sig":"MEYCIQD+iKhcS1cUoSPpa0NabyF3ixUJSNhlSjxZZt78ZIcargIhAKw2wBsOscvrheGIO7d0P0gSwVapy6e2tfuQCH8vzsDo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"a53679a2a2e19c5b0a9606b55a6e44428c8857d7","gitHead":"a5a367ab0febda694bd59e0bc9573fa2ff1d8703","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md; npm run readme-add-assertions","pragmatist":"node ./node_modules/.bin/pragmatist --es5","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build","readme-add-assertions":"babel-node --presets es2015 ./bin/readme-assertions.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.7.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"5.6.0","dependencies":{"lodash":"^4.3.0","comment-parser":"^0.4.0"},"devDependencies":{"chai":"^3.5.0","mocha":"^2.4.5","eslint":"^2.0.0","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.5.1","pragmatist":"^3.0.4","babel-preset-es2015":"^6.5.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc-2.2.4.tgz_1455465384074_0.9758122679777443","host":"packages-6-west.internal.npmjs.com"}},"2.3.0":{"name":"eslint-plugin-jsdoc","version":"2.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@2.3.0","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"8a6621a99096817958e40bcf80ed8d05cbdfdc1e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-2.3.0.tgz","integrity":"sha512-Z5MR+sfuev+3jS6ktSlDZxvMqd+/fweBwI21S9QZzosZSpWZEgbeJgd4cQXVabJTqbhqR65buVR2VnB1tSGtQw==","signatures":[{"sig":"MEYCIQDV2cw+LUfWK3KRZcQDQSmrJSPl/4Y9txlGuJNoDvKKoAIhAIWJayYRP9lzMQcRdIVRbUHpUPQrb1nmjGiitKr8uCpP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"8a6621a99096817958e40bcf80ed8d05cbdfdc1e","gitHead":"5660f0c5a941ced1903f5ecc3566dde4b0350c66","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md; npm run readme-add-assertions","pragmatist":"pragmatist --es5","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build","readme-add-assertions":"babel-node --presets es2015 ./bin/readme-assertions.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.7.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"5.6.0","dependencies":{"lodash":"^4.3.0","comment-parser":"^0.4.0"},"devDependencies":{"chai":"^3.5.0","mocha":"^2.4.5","eslint":"^2.0.0","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.5.1","pragmatist":"^3.0.4","babel-preset-es2015":"^6.5.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc-2.3.0.tgz_1455543341945_0.5846223016269505","host":"packages-9-west.internal.npmjs.com"}},"2.3.1":{"name":"eslint-plugin-jsdoc","version":"2.3.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@2.3.1","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"f645edb1f5d72abaa8a1fb1743ac1ecd6882d727","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-2.3.1.tgz","integrity":"sha512-78PL/ZzzWJnYj7TUtvkZjuJRPK8AHRn8J8UmMo23ie43A1RNoP+ULMTn7oKJkq/ck7CJ+tQl2Qy8qnSY+aXP/Q==","signatures":[{"sig":"MEUCIGDfpK4GQgSEKpVY5QU9dUPvkq+rFL7n0Tk4oCcR3JR7AiEA1c1PZEI8QkwwNZ0jz6LSMQjZo2jy7RWW42jQc60YB0o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"f645edb1f5d72abaa8a1fb1743ac1ecd6882d727","gitHead":"0edb46040affb607ee2219eaccf6eab73d9601fa","scripts":{"lint":"npm run pragmatist lint","test":"npm run pragmatist test","build":"npm run pragmatist build","watch":"npm run pragmatist watch","readme":"node ./node_modules/.bin/gitdown ./.README/README.md --output-file ./README.md; npm run readme-add-assertions","pragmatist":"pragmatist --es5","watch-lint":"npm run pragmatist watch-lint","watch-test":"npm run pragmatist watch-test","watch-build":"npm run pragmatist watch-build","readme-add-assertions":"babel-node --presets es2015 ./bin/readme-assertions.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"3.7.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"5.6.0","dependencies":{"lodash":"^4.5.1","comment-parser":"^0.4.0"},"devDependencies":{"chai":"^3.5.0","mocha":"^2.4.5","eslint":"^2.2.0","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.5.1","pragmatist":"^3.0.13","babel-preset-es2015":"^6.5.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc-2.3.1.tgz_1456162000946_0.5590762367937714","host":"packages-5-east.internal.npmjs.com"}},"2.4.0":{"name":"eslint-plugin-jsdoc","version":"2.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@2.4.0","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"7c1eaa8e88fab04c807472c17b6ff9a1ac7e564d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-2.4.0.tgz","integrity":"sha512-adG5FySIY+ijWAVyQ7y9t8ELvcriYuPFFiECHvdSrex9bn2VvJbbDJXnpT+fUH88gpnXsy5MwcGRQywljkwhMA==","signatures":[{"sig":"MEUCIQC+6Yeg9xdBJ73Ck+HSd7CQgI0fCLq/fVgEXKiAlmtBwwIgb8RbGQiHhOZnijZRYuOlkCj+33+Xt+pzeERDfsCNXtA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"7c1eaa8e88fab04c807472c17b6ff9a1ac7e564d","gitHead":"3cc6b0e1db008f68d68385f6c3910a022eb8eb08","scripts":{"lint":"eslint ./src ./test","test":"mocha --compilers js:babel-register && npm run lint","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run readme-add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"4.0.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"7.1.0","dependencies":{"lodash":"^4.5.1","comment-parser":"^0.4.0"},"devDependencies":{"chai":"^3.5.0","mocha":"^2.5.3","eslint":"^3.10.2","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.18.0","babel-register":"^6.18.0","babel-preset-es2015":"^6.5.0","eslint-config-canonical":"^5.5.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc-2.4.0.tgz_1479890505422_0.10443366039544344","host":"packages-18-east.internal.npmjs.com"}},"3.0.0":{"name":"eslint-plugin-jsdoc","version":"3.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.0.0","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"6063b4f1c9801ad35a9a70ece75b0c9804a1e449","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.0.0.tgz","integrity":"sha512-Ev2f2wIxsZZbvUUY2eTWGyNU8z4q06FLkv3bhgIku+peNtLf9s7DJGeJRqEBxwMsvcaW5q2it4Jx1SH89LgbcQ==","signatures":[{"sig":"MEYCIQD7T4RS9l6AHGidW9U8ZPkI5i6jv/BLb8jTG8/mWhN37gIhAOyhBBub39hRTsv4krn0cp6wOJHlo81uWWVblUVEinNu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"6063b4f1c9801ad35a9a70ece75b0c9804a1e449","engines":{"node":">=5"},"gitHead":"50d8d23ebce9162e15742864c44339ce07a2fde8","scripts":{"lint":"eslint ./src ./test","test":"mocha --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"4.4.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"7.7.3","dependencies":{"lodash":"^4.5.1","comment-parser":"^0.4.0"},"devDependencies":{"chai":"^3.5.0","mocha":"^2.5.3","eslint":"^3.10.2","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.18.0","babel-register":"^6.18.0","babel-preset-env":"^1.2.2","semantic-release":"^6.3.2","eslint-config-canonical":"^5.5.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc-3.0.0.tgz_1489848483009_0.9724905686452985","host":"packages-18-east.internal.npmjs.com"}},"3.0.1":{"name":"eslint-plugin-jsdoc","version":"3.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.0.1","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"abbf4c785e7a750b6272e8079e986a440e14fbb2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.0.1.tgz","integrity":"sha512-Ttm2/RAiC2MKjh+F+6kvMX0Y7DIc096j106qzS8OyG3ccwtZjhTA8Jrr9NmrvfU9fojrkhVzF0hZylcSg+pslA==","signatures":[{"sig":"MEUCIQDJbha4JoXTBrz+GLAUINDXJl3A8KYWcTXx9/Ky3c4TbwIgE21qqTcTnZTNyj4b2f/2kw4kXjV2HFBNlajFD6MiY5c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"abbf4c785e7a750b6272e8079e986a440e14fbb2","engines":{"node":">=4"},"gitHead":"1f7e8a38cf673f4102ceb3b55b76c2f1c0020020","scripts":{"lint":"eslint ./src ./test","test":"mocha --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"4.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"7.9.0","dependencies":{"lodash":"^4.5.1","comment-parser":"^0.4.0"},"devDependencies":{"chai":"^3.5.0","mocha":"^2.5.3","eslint":"^3.10.2","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.18.0","babel-register":"^6.18.0","babel-preset-env":"^1.2.2","semantic-release":"^6.3.2","eslint-config-canonical":"^5.5.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc-3.0.1.tgz_1492163286601_0.17591306357644498","host":"packages-12-west.internal.npmjs.com"}},"3.0.2":{"name":"eslint-plugin-jsdoc","version":"3.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.0.2","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"0a247a1104a03966a0ec88d5bc03e4d3668737c3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.0.2.tgz","integrity":"sha512-k+Bpl4wxsPGl400inXuCZg9n2FHeWTr4wSrWTRM5K6q0Qt+SecBOjIuXhvIxVmpqglr94Uix2aL+Ga/80AbhsA==","signatures":[{"sig":"MEQCIF99LnIsmUFsRXmP2w5aWCe3T0wSqKDnSgUV4YGlSOXhAiACeNxSI8BqWBXOZWOFXars2oGU/CR+zr6+tUwJrKZ1sA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"0a247a1104a03966a0ec88d5bc03e4d3668737c3","engines":{"node":">=4"},"gitHead":"7e57c13041de88941fca610c54b5ac374e88336c","scripts":{"lint":"eslint ./src ./test","test":"mocha --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"4.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"7.9.0","dependencies":{"lodash":"^4.5.1","comment-parser":"^0.4.0"},"devDependencies":{"chai":"^3.5.0","mocha":"^2.5.3","eslint":"^3.10.2","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.18.0","babel-register":"^6.18.0","babel-preset-env":"^1.2.2","semantic-release":"^6.3.6","eslint-config-canonical":"^5.5.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc-3.0.2.tgz_1492166685800_0.7565378828439862","host":"packages-12-west.internal.npmjs.com"}},"3.1.0":{"name":"eslint-plugin-jsdoc","version":"3.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.1.0","maintainers":[{"name":"anonymous","email":"gk@anuary.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"6f2b22a70919aac23e8d2f78217d28731f6e444d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.1.0.tgz","integrity":"sha512-na17V5dFkosCIlMqBg0oQKVDiO+2f1IuAJq6UDwrBicqMEWFLTJAer6a+oefkPsQZtGBUimzUHjB4y+1yXra8g==","signatures":[{"sig":"MEUCIQDnI6l74nxUF3zN7OOfDjnDkmc+07EJAqtSybQY/+DItwIgAd3rMm7wA3NJSgNWQj0c9IOIWMuLJbGXW6DJXsx4Oyo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","_from":".","_shasum":"6f2b22a70919aac23e8d2f78217d28731f6e444d","engines":{"node":">=4"},"gitHead":"682b6bd6d42ad0797de40647d19a78e60fd6d852","scripts":{"lint":"eslint ./src ./test","test":"mocha --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"4.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"7.10.0","dependencies":{"lodash":"^4.5.1","comment-parser":"^0.4.0"},"devDependencies":{"chai":"^3.5.0","mocha":"^2.5.3","eslint":"^3.10.2","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.18.0","babel-register":"^6.18.0","babel-preset-env":"^1.2.2","semantic-release":"^6.3.6","eslint-config-canonical":"^5.5.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc-3.1.0.tgz_1494597264714_0.9531400471460074","host":"packages-12-west.internal.npmjs.com"}},"3.1.1":{"name":"eslint-plugin-jsdoc","version":"3.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"267a99cd73994a6efe4e7f0bdac3cbe8e9147d74","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.1.1.tgz","integrity":"sha512-ByzGoUafskkO+tbadGqN+Tnm0hwb1HJbZX6tya5FW4an4KM6KBVgskgo6Dlj2SMvPx0aCmkbaH0Ghpyk1Qcqrg==","signatures":[{"sig":"MEYCIQCTlc5OtSqGVN1X1w8hXJUECVMJQ6i15oA0CYsZrYWblQIhAIf5zeBuXUW5HQ4JIWiHPQu2q8n+6aprB289NRn4Eo5y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","engines":{"node":">=4"},"gitHead":"c6cb74060378f85033e723269ae944ba83e44713","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"5.0.3","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"7.10.0","dependencies":{"lodash":"^4.5.1","comment-parser":"^0.4.0"},"devDependencies":{"chai":"^3.5.0","mocha":"^2.5.3","eslint":"^3.10.2","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.18.0","babel-register":"^6.18.0","babel-preset-env":"^1.2.2","semantic-release":"^6.3.6","babel-preset-es2015":"^6.24.1","eslint-config-canonical":"^5.5.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc-3.1.1.tgz_1498215945292_0.02423928026109934","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"eslint-plugin-jsdoc","version":"3.1.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.1.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"901ab61b5ad3ff3a08697a59e806698c9e1fdf51","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.1.2.tgz","integrity":"sha512-8TBOoXWzT192M/oL/PfELmpFUxOt31Tb8Y5BrWknKFwPDSq9IhJvKB72chiEZrkIec8PUrEH/jmIK8ZLtANqPQ==","signatures":[{"sig":"MEUCIQCmWmcqajXZU8dhatM6SOW25TlVllYmsJc8vD1MpN8tbAIgFMYPXjADQEa/cPFA253hroX8pUbVnQibdCCGwXYRmaE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","engines":{"node":">=4"},"gitHead":"86fd67c408a5ac7b5cefd56cd7ca40ff98cfab82","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"5.3.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"7.10.1","dependencies":{"lodash":"^4.5.1","comment-parser":"^0.4.0"},"devDependencies":{"chai":"^3.5.0","mocha":"^2.5.3","eslint":"^3.10.2","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.18.0","babel-register":"^6.18.0","babel-preset-env":"^1.2.2","semantic-release":"^6.3.6","babel-preset-es2015":"^6.24.1","eslint-config-canonical":"^5.5.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc-3.1.2.tgz_1501181221777_0.3675326684024185","host":"s3://npm-registry-packages"}},"3.1.3":{"name":"eslint-plugin-jsdoc","version":"3.1.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.1.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"fa49d493b9ca0e763d92b0c9e5cbf9891e8e3a30","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.1.3.tgz","integrity":"sha512-ujXBhNQz57tLP0bs99QTDPiCX54EypczVhgg9CMJVD9iwfDeFZk5LkQHk+iPfKlV5tk8+dMm+Soxq8QmQK99ZA==","signatures":[{"sig":"MEUCIQChW0QPklNV6bCb0p+iHXMOKM1rMtTfvb1EvezERau60gIgC4DRQUJGlkh0HvNb5CdXeIwgcbdTbyF935A4YQBKkXw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","engines":{"node":">=4"},"gitHead":"1a7e8c80ecb38ae395c178090fb6aac64a424632","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"5.4.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"7.10.1","dependencies":{"lodash":"^4.5.1","comment-parser":"^0.4.0"},"devDependencies":{"chai":"^3.5.0","mocha":"^2.5.3","eslint":"^3.10.2","globby":"^4.0.0","gitdown":"^2.4.0","babel-cli":"^6.18.0","babel-register":"^6.18.0","babel-preset-env":"^1.2.2","semantic-release":"^6.3.6","babel-preset-es2015":"^6.24.1","eslint-config-canonical":"^5.5.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc-3.1.3.tgz_1506068927297_0.3228109059855342","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"eslint-plugin-jsdoc","version":"3.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"16c41575745601f9b7d873a4b8fe6f54b9eccec2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.2.0.tgz","integrity":"sha512-Jx/PoZ8VLOnS2BYwoVeCqXch+ApyQyc7bAImka7zlVRDrob054l4Do+QLppa1WpNV+ftYZGYVPCLjpKCe4VI3A==","signatures":[{"sig":"MEUCIQDtrt9A058vWmbwIlUvaijnaPkBi2F+HBsRLANDR4CN/gIgHFFKt/QvERPV291ZAoeTzSvhfdb53SgU+WPhSmYaFPY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","engines":{"node":">=4"},"gitHead":"60eb36bccfcaa50f4ebed8f56c6c1845f3134606","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"5.5.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.9.1","dependencies":{"lodash":"^4.17.4","comment-parser":"^0.4.2"},"devDependencies":{"chai":"^4.1.2","mocha":"^3.5.3","eslint":"^4.7.2","globby":"^6.1.0","gitdown":"^2.5.1","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.0","semantic-release":"^8.0.3","babel-preset-es2015":"^6.24.1","eslint-config-canonical":"^9.3.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.22.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc-3.2.0.tgz_1510105500845_0.675481287529692","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"eslint-plugin-jsdoc","version":"3.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"fc28597d2d1754bd0fea5c201f0092418191a09c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.3.0.tgz","integrity":"sha512-Ic5ObCo+Z7KNhF9MVy8EL49ial3Mr8vq/T52vkEkWSpUADwaTpF0iaiNMtEB+QmbFxM1D1pPOcaEisRJPQdkrA==","signatures":[{"sig":"MEUCIA3OslhxRAJwzQiULVFe448qu0D/oVwR54xjM+PKy5Y/AiEAp6UPsUPSfWdzpjOuQYHm03z5SWU18oOLNYfWuLRLUrs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","engines":{"node":">=4"},"gitHead":"0e6b80e89214454794108d3be6a7e268d60e9a55","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"5.6.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.9.3","dependencies":{"lodash":"^4.17.4","comment-parser":"^0.4.2"},"devDependencies":{"chai":"^4.1.2","mocha":"^3.5.3","eslint":"^4.7.2","globby":"^6.1.0","gitdown":"^2.5.1","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.0","semantic-release":"^8.0.3","babel-preset-es2015":"^6.24.1","eslint-config-canonical":"^9.3.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.22.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc-3.3.0.tgz_1513379066187_0.687364352401346","host":"s3://npm-registry-packages"}},"3.3.1":{"name":"eslint-plugin-jsdoc","version":"3.3.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.3.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"d58489523ddd76a9b93dd42d51b92609d52b6b1d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.3.1.tgz","integrity":"sha512-bIPBOl5Z1Tv1+U7Sq0DcOydTIpug5zFjefjewxPGEiNootLltTYCvlL0TlfDhjyb+CrJ+4+n4/y8r9tqBtZZ4Q==","signatures":[{"sig":"MEQCIA4/Rdq49BCjCReQm0FWNAN1PXaWTkbPiB3fDqO4/GtLAiBliO6b4+lG6Q+wXbXNS8b146+7jLwjHgizWKRQFTgVmA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/index.js","engines":{"node":">=4"},"gitHead":"9ffa44c8b2741f0bf2c367070a9715234766a966","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"5.6.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.9.4","dependencies":{"lodash":"^4.17.4","comment-parser":"^0.4.2"},"devDependencies":{"chai":"^4.1.2","mocha":"^3.5.3","eslint":"^4.7.2","globby":"^6.1.0","gitdown":"^2.5.1","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.0","semantic-release":"^8.0.3","babel-preset-es2015":"^6.24.1","eslint-config-canonical":"^9.3.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.22.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc-3.3.1.tgz_1515256607244_0.25797434197738767","host":"s3://npm-registry-packages"}},"3.4.0":{"name":"eslint-plugin-jsdoc","version":"3.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"18707589c15d25520065e07191effdc374b0a227","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.4.0.tgz","fileCount":38,"integrity":"sha512-N/WWm3tZG66RsnqWlY5paK3JrLtPZq0nQxAG5W7v9SEOr8nBA9udYTf7lCyQSqm9Ne+7bzmLr/oZzoAWuTZ3ew==","signatures":[{"sig":"MEQCIGTTpgz0pTxcLzkRqpdyLcqOFIJiFzORA1PWj8XB5sE0AiAEMNW3p1IUr+KADtDvKlmEjnEMhkeGo9HUHQogUSFJWw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":110289},"main":"./dist/index.js","engines":{"node":">=4"},"gitHead":"c8eb609b3b71b4f0ad9f51f362966b3be30a0005","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"5.6.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.9.4","dependencies":{"lodash":"^4.17.4","comment-parser":"^0.4.2"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","mocha":"^3.5.3","eslint":"^4.7.2","globby":"^6.1.0","gitdown":"^2.5.1","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.0","semantic-release":"^8.0.3","babel-preset-es2015":"^6.24.1","eslint-config-canonical":"^9.3.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.22.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.4.0_1518523252453_0.24785989837143418","host":"s3://npm-registry-packages"}},"3.4.1":{"name":"eslint-plugin-jsdoc","version":"3.4.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.4.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"aea72244a71dcffa3524615f661478f01bbbd826","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.4.1.tgz","fileCount":38,"integrity":"sha512-HJ3kowJgZHk+lL6IPdzs2BV+lJAOfxtyW4OOCaHrOs0AJYdbb9orQKpR8w8YUuztW69QDiUYaGA8sLKFfGvWlQ==","signatures":[{"sig":"MEYCIQDyUL33XmO0qLqQ1lMxlM3wTBq1xOh7IdRest6FfdtrlAIhAMrjDxYSVjv3j4khIhoW/52ZrKmClEWFgU+48YxJR4Y2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":111382},"main":"./dist/index.js","engines":{"node":">=4"},"gitHead":"d579850484a03004c6dc594ae4e20fbbda88b6f5","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"5.6.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.9.4","dependencies":{"lodash":"^4.17.4","comment-parser":"^0.4.2"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","mocha":"^3.5.3","eslint":"^4.7.2","globby":"^6.1.0","gitdown":"^2.5.1","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.0","semantic-release":"^8.0.3","babel-preset-es2015":"^6.24.1","eslint-config-canonical":"^9.3.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.22.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.4.1_1518605706302_0.6951228983776718","host":"s3://npm-registry-packages"}},"3.5.0":{"name":"eslint-plugin-jsdoc","version":"3.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"cb1bbb941c499fac16c699a5856a332b517897de","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.5.0.tgz","fileCount":38,"integrity":"sha512-qoNpVicVWGjGBXAJsqRoqVuAnajgX7PWtSa2Men36XKRiXe3RS/QmRv215PXZwo4OHskYOsUoJUeiPiWtS9ULA==","signatures":[{"sig":"MEUCIQCB0hjhajJMaO3fHuMc36ZSdCKXhSc0XFCreaki8/j8PQIgUaAo8qYCDceQ0bVyU1VIpjNvTpCePsUbWuqwSrFQ3D0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":113174},"main":"./dist/index.js","engines":{"node":">=4"},"gitHead":"647dc04305fbc5191fdf9463a08877618d9e5a09","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"5.6.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.9.4","dependencies":{"lodash":"^4.17.4","comment-parser":"^0.4.2"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","mocha":"^3.5.3","eslint":"^4.7.2","globby":"^6.1.0","gitdown":"^2.5.1","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.0","semantic-release":"^8.0.3","babel-preset-es2015":"^6.24.1","eslint-config-canonical":"^9.3.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.22.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.5.0_1519140150489_0.21604413176301174","host":"s3://npm-registry-packages"}},"3.6.0":{"name":"eslint-plugin-jsdoc","version":"3.6.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.6.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"0db605726aba8232c53ab639bde19b8f1285529d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.6.0.tgz","fileCount":42,"integrity":"sha512-nyGUoxL6OwvmAQ3Z4tIgQWxua1+VRk7egQIpEpm9KNqdJ/iTRBc2XMYmdr3i1PMfgwu7QCsNvwuWNdIj5PEBTA==","signatures":[{"sig":"MEQCIDlj6Ft1PpDEVGiJKKFrOThqU3+rjBC6j7UeZel64Z3wAiBlNBZ9bcDXOTM2yNomutohlA1lVIyEVJE3ON1FO+yHAg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":124148},"main":"./dist/index.js","engines":{"node":">=4"},"gitHead":"323a13354257da2862a1d154c32c1c84e5799ec4","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"5.8.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.11.1","dependencies":{"lodash":"^4.17.4","comment-parser":"^0.4.2","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","mocha":"^3.5.3","eslint":"^4.19.1","globby":"^6.1.0","gitdown":"^2.5.1","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.0","semantic-release":"^8.0.3","babel-preset-es2015":"^6.24.1","eslint-config-canonical":"^9.3.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.22.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.6.0_1523030176027_0.3322514460932966","host":"s3://npm-registry-packages"}},"3.6.1":{"name":"eslint-plugin-jsdoc","version":"3.6.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.6.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"3878ea7292dbc6f78f07508a21c5a57b3202850d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.6.1.tgz","fileCount":42,"integrity":"sha512-cIt4vtoDmjEaptmOMPRvQLV8heij6CuNkftCnjlJiOzCYPmT7cX6khWonCkjKqZnYBwmSMhOprWI9p3OfCplpw==","signatures":[{"sig":"MEQCIDog7fQGQaHnNhsS/JLC9dzLMoeeExm570g7iLmY/jJZAiBAf/tK4J2y3vCWf8/43gA14LatRGFDiHxB1MxQH5tc/Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":124499},"main":"./dist/index.js","engines":{"node":">=4"},"gitHead":"14d7f22aa6fe179d53e00e479965a9ac44fe3518","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"5.8.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.11.1","dependencies":{"lodash":"^4.17.4","comment-parser":"^0.4.2","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","mocha":"^3.5.3","eslint":"^4.19.1","globby":"^6.1.0","gitdown":"^2.5.1","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.0","semantic-release":"^8.0.3","babel-preset-es2015":"^6.24.1","eslint-config-canonical":"^9.3.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.22.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.6.1_1523035508688_0.9215292915142961","host":"s3://npm-registry-packages"}},"3.6.2":{"name":"eslint-plugin-jsdoc","version":"3.6.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.6.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"daab6a2eecd5a63b7fdc2d406e6b33b9307a9b23","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.6.2.tgz","fileCount":42,"integrity":"sha512-PTKwDnAtrgV8lAalMJFGkpKjs2K9dTHPxJOOPYhH2oXGEy3L0LEcluLzQPbZsUBpG2eZZrf3+dWgREQdzDstpw==","signatures":[{"sig":"MEYCIQCNU4a0wRVZWNf9AKUb8wkrSWs1Sy3ekN2f8Jt43DykeAIhAORx7RGMFkqJm9aZf8jNRQMm+WJFALtk7vcZJkSlTnpg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":124532},"main":"./dist/index.js","engines":{"node":">=4"},"gitHead":"c206a9e526c55a731e518407173e03f798409d8a","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"5.8.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.11.1","dependencies":{"lodash":"^4.17.4","comment-parser":"^0.4.2","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","mocha":"^3.5.3","eslint":"^4.19.1","globby":"^6.1.0","gitdown":"^2.5.1","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.0","semantic-release":"^8.0.3","babel-preset-es2015":"^6.24.1","eslint-config-canonical":"^9.3.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.22.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.6.2_1523045895759_0.7410047511073912","host":"s3://npm-registry-packages"}},"3.6.3":{"name":"eslint-plugin-jsdoc","version":"3.6.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.6.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"8ac4b962964c2893fb0f58c621904203f07bd462","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.6.3.tgz","fileCount":42,"integrity":"sha512-99SddzRNkyQFhx8Du8M3ex/jG0MmuNu01gIb4iN+nNswYy8bKrwHnRRRQOcsBMFBIUArKAdU6BSI9OeLhYZl1w==","signatures":[{"sig":"MEUCIEF/g6D/wuYe0TbYSklz+/En0zP0lgCVr3OR0t0tZIRpAiEApmp9Ebz3cZJHgu5MGd149IZqa6zgHCycYOcCaE1rbak=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":124931,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa0yzpCRA9TVsSAnZWagAAhuwP/if7WkI3ZRIW5A40Js+q\nbvjt+8cb0eOhG4PjKf8GoabXf59IqqLvdy9ZGrNi8LAsChUfRPOIXjJE97Wy\nkrbsJBxgT2k5exEWvuZ8PMukImBo9miX9d8Qt3mlWf1quaUCveMX/GgoQTJe\nj0P0cb11gIRkqF34F4ChLS5t4fy8fON/Ay34oVBtz6Lzg3dvnxwntW6xuyKw\nE2gRziUkyuUdgPea2oTOCoTDHeB6C3iIgtmTd6O0X7mXrOcWNwXxlxrnVdAu\npLXw1RYLy8RhQwCuiKn73uwwTIwRPniqVHoS7PUqD8vPP4k7RkgJFtgbhDlP\nyE7DFzFGhK6UA9ejNwnj2vb5aE7nH0TCoVwAV5wTUik8hHZcS4k+ckcMTvq2\nLT5T7f51ganaHzz2V4m+33QNa4QQ9W1rJ3Xf0XDWpXvKcjVWRHULkyAlwmNE\nS7KeZikU4HxXg4aPfWscvNg93apRiPNbhsFc5UMKaRh+i6yku2vKaQPQxP/I\noeAje03Jjw46eMmAgbhkuYKFNxy165UFjV73wMMlobcZpi7QlKoGUYKEJ9u1\n2CqvNELt2mE2azYGtUv1jZuTabnUpwN/YRAN3qPiIWTivyU3Gzr482GM4SeH\nNq3FAHv5xRRKyQ8pXO7bj2m12LsiB4ZOEH/WyNqZQnwphV6hzDYTW2UdOxl8\nThmQ\r\n=eXCM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=4"},"gitHead":"94464cde9b09e196a60b3900fcf2cdc6d0262e33","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"5.8.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.11.1","dependencies":{"lodash":"^4.17.4","comment-parser":"^0.4.2","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","mocha":"^3.5.3","eslint":"^4.19.1","globby":"^6.1.0","gitdown":"^2.5.1","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.0","semantic-release":"^8.0.3","babel-preset-es2015":"^6.24.1","eslint-config-canonical":"^9.3.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.22.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.6.3_1523789031488_0.5871406228001894","host":"s3://npm-registry-packages"}},"3.7.0":{"name":"eslint-plugin-jsdoc","version":"3.7.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.7.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"b7ce206f99efdc4c0a31b492ae5aedfb06f03dc6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.7.0.tgz","fileCount":42,"integrity":"sha512-y8v3NRYhfEMHcaKPV3RK/JIMYW0k4cnUc3cNNHCwEXlB5gjyhkxqOfe8BRMgulYqzW0Y6a1q7YqqA9Cy07KNww==","signatures":[{"sig":"MEYCIQDrMHO9Z4IgDz+Y0LEpC6jN+glutv4+LS6AeEdQBmrVUwIhAPxxuB/HVvsFTF06e1ECgTf8higbKq15t9MFFf6TVHTE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":127962,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/PryCRA9TVsSAnZWagAAQG4QAJNvTSrgOniiJSfLp8U+\n5Y+jfSEoq2cqttUxCW1kxZgSNMHDkHG/fHjwouUBXfhVp5iafHvWlW3+vd/I\n4a5MVZnA6T80x7rD6ApTl33NRwP0WpMnrtlfua1aOC725cl9OsSDxJRAD91g\nzFn/PAW6newHU+12bouDbl4dUoDMTTjVACw0RflqmiR1ehJqVIPeApV7JLr1\n4+bL4hZjjaR00VyYHXvLENZJDaCEdIXQ8fLddPRDsWAiYlLKYgzPlxjyC1tE\n/9I0fkWsP4tz0E7Jah2QNRy6RNEoJdNnZ/+5Qax+aK2DRuTAaztq+jqQ6ItA\n8OLFo9e0gJEBTo8PnG43k3XhsxxpI7ALF3oWarUXVW+Q7RXQDgaa22v8LFkM\n5id7LONOLjmZA5JDUqCPNNRKgy2WqkUJCTvOYPA94F+sGxUEuYXvYT+jUuqe\nxEPminsuNB9fzoPm81PJBtUVKpyEwMlt7zLz5sEUELi+CT1qyUuULsiOwDzt\nChtJ/tfiucIV/AWlKjQshP6xr/UP76o4qlRFFb8BfunCSCE5taSH9SQQ6NZn\nZZuc8wz3q/vqIWT9S/ZNipVO5DS+ma1VupX8ZgLnBzNjEqvKrDjuSCzp+zEQ\n1XsOSbze4GHB5kmLWzDGyQPey8Dsk2Xx+mCBsA3Q+tZc1HYr2bFCMRg9q68t\n0C5b\r\n=q40T\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=4"},"gitHead":"6413e7d2a6408a0bfc5a6d6b3b5a94bcf81c0603","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.0.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.11.2","dependencies":{"lodash":"^4.17.4","comment-parser":"^0.4.2","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","mocha":"^3.5.3","eslint":"^4.19.1","globby":"^6.1.0","gitdown":"^2.5.1","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.0","semantic-release":"^8.0.3","babel-preset-es2015":"^6.24.1","eslint-config-canonical":"^9.3.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.22.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.7.0_1526528752640_0.5928703053498456","host":"s3://npm-registry-packages"}},"3.7.1":{"name":"eslint-plugin-jsdoc","version":"3.7.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.7.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"3e5912d3f9f9ae41d8bd74c12dc96a0121707708","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.7.1.tgz","fileCount":42,"integrity":"sha512-Us8EIFX0KK7bdlvRaCoR45LGvfjjpYGVTV7xGGRIR1YWKJzWJEcZsrkpf2rYLBTA5mBvLxDB5EEv1UPtwwVvhA==","signatures":[{"sig":"MEUCIDUw7zx7kg1bk+0iT//Hn558gClauy0FpHb0iqPKdbGzAiEAlCD9BGZ0f7Du3TYhbDFRu8hBjmww3kzeFK2/bmMs3co=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":133774,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbA8qGCRA9TVsSAnZWagAAs8wP/iKJMKFraf4kPBKC8757\nOxqCuQ0rOOsbQ6C8TFqybxGS4Pp0uV0nzKUpEf6X022nfpq/o5xZNm418A4R\n+ShuaWgAet2YxpDi+uXtIpcmGo+iv7T20EExkts7dKcB6zUdMdBd5sR1tqCe\n3tzXd6kc5M+vqu9oPoAcATgWryRtM/0kdmuDavJI2UL6ZHYMy9GWqQRQez5L\napNC+w5DAPARJUcKsYogLYDBdXslBzQ8NXkxiXRKeTZhYHfT4MIX+wjYpOPZ\nWz9+lltXMhiwndaAF+tzA7+GuF5XElBefASufPdnsvWiH+LIS15noPPs7ctY\nQentLpt8XkEj1ixyiG0XDNC50hgYHEZXq4tl5Pa5XvSlZmBRfpZCDjwjBSeh\nIJHN/nF3QPlAhh8h7hAiBHhlpkiOxjIv7XQgcyL3+8BeCZuYFF0C8dQmSxx2\nY3Kwsl45lG393mJYpQ7OHDMoChWTMTqwVqrcdz3UgkQi7Xu4KYi4XiGHUMLO\nTwJyP2UuWy7uFD7Hp7YQzHtHKiercV36lqhB8WvGBRAb42hsn7Q1NB8mKYQ6\nZg5MsS6rQP97d0jpf70XEHlwp4Tlc27YsfQ/WH9Aicx3sD9zvYh+66YH3+cq\n0RKbG5HGCf2S4rbGTkga2zE0TFBgBI9iN8+7ZpU06quOjRZQzta9oP59BUPx\nNWTu\r\n=jUgB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=4"},"gitHead":"59673c4e30add182af7456dcc2f11ff4bcfa7e6b","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.0.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.11.2","dependencies":{"lodash":"^4.17.4","comment-parser":"^0.4.2","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","mocha":"^3.5.3","eslint":"^4.19.1","globby":"^6.1.0","gitdown":"^2.5.1","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.0","semantic-release":"^8.0.3","babel-preset-es2015":"^6.24.1","eslint-config-canonical":"^9.3.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.22.0"},"peerDependencies":{"eslint":">=0.8.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.7.1_1526975108355_0.6048772620547365","host":"s3://npm-registry-packages"}},"3.7.2":{"name":"eslint-plugin-jsdoc","version":"3.7.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.7.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"8656523b7ef90463cfe162dd3a422f5d9d4b04d5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.7.2.tgz","fileCount":43,"integrity":"sha512-NqA/deLCjuQQMPM8zMSQRzLjmaSfGIECtAna38uiwvbIHVK83bO2/lSq7hOnElBkYkT7BubGeUscVd4L/FofiA==","signatures":[{"sig":"MEUCIBY+ifZGAl2IAbwxthJ2/bKQ6ob5MeO7PmH+FgLd8PlTAiEAkNwQtdS6Gz+sY5rJ4fG9vMHnfyhnQZ9lzGkI01uff7Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":139802,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbfIuGCRA9TVsSAnZWagAAxJcP/iZa/jyxIiIPziGFXo4D\ngAwSJFL3ihLYAs/Hu+ASfw6sJYPtlTLppw3M9saScLdllSTm17Gs3ZgDJu7G\nKeLxAn2I8ByIGQAtOQaiBhPuZrhSYySEAPpoO5+sXa7Di6Co4frBXJLccHfr\nohCWLzOxOSiyCtaeI93cx6whoOn2ev1WpLQNvbJzg1j9TEZiZHLGGUnlZKTq\ncNCiQFGo8n8MZ5s4Ynba4gxDkGYFvTH7YAgdiKo0XCVsgdzz7TbGWdVu4K1v\nD+qFCZMECJ6QgWahuzywI4eBcjLuMJv73X+pUHqJZWA1UYovqjXfVekEdI3r\n+GRcDXOgPfDa9b38zk5NIXu9cuF3hov8w7avS/FRnZYvmwknrEFdYMac005h\nukjB5k+lLcHYVxl/ro0WSfNINxIVw8qP0wxj1NSCd3MYSfzXkSecDeV19OC8\nLZd1t/DWCCkEfwfzuJiE3DTysY+oY+MPxLRQ0F7D1nHQWrSwHd++WG1Qzrx2\nCqW/EKHyhjEkWraF7t48DQbtoF6+w6FZzoL4/u28N2L5vc0Yvm7tuMyRMlJG\nJpEnNVDOlw+rJiOjYuGgFTHD2BRHZoCIUJTwQubeAyhZ99jqhSoiWeKAX1E2\nE+eFERIiAfwtQZ2KNIEDTL7KeSvDLEX4QithqYSNzqSujR+XkfcX6m75aKJy\nu+vz\r\n=wiRP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=4"},"gitHead":"c315d55bdad25f12eb7edaa827d3851581704ded","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./src/bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.4.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.11.4","dependencies":{"lodash":"^4.17.4","comment-parser":"^0.4.2","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","glob":"^7.1.2","mocha":"^3.5.3","eslint":"^4.19.1","globby":"^6.1.0","gitdown":"^2.5.1","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.0","semantic-release":"^8.0.3","babel-preset-es2015":"^6.24.1","eslint-config-canonical":"^9.3.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.22.0"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.7.2_1534888837536_0.5318297930510147","host":"s3://npm-registry-packages"}},"3.8.0":{"name":"eslint-plugin-jsdoc","version":"3.8.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.8.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"6c5f6618b304fbfe28ec6898aff8fdeb3965aef8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.8.0.tgz","fileCount":43,"integrity":"sha512-Fp5BwwQGCA6w/00+rp+6Dr/l2f8i1d8XsorT9qZZn+9UJQHqywPCxJ7nb5ZY50FqhDz8nY5gl/jPJ5j0elD1XQ==","signatures":[{"sig":"MEUCIQCvdVUN5uzUbFHT9RtT4RXa3mAQx5WNmYkZtnwgGF7u5wIgPrEmbxALsbN38mNxAvz4sLUX7GBVnlSwhaumRiqxxVU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140702,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbfK6oCRA9TVsSAnZWagAAPkIP/3d8+qXa0wr5W1KxXoYe\ne6eLoRGOub3gv/eUORmqskuA46BLOBWijbK8gZXKEKXW1YHs5fwb19bboUdE\nshCT+lyHW2kmZko10jRFE93suwzzKkBnvOFucdIGvRtoinON7CJYHvI9o9Hs\n/WeAUchr+W79IxPTJbo+bR4k1UhGkbWDXoReFqDzapdtAJj3NyM7Z99ojVvG\nVmiPcMUkBeza3YBjGw8n3SDsewqfXYQcN3DH4Mpg3WyxNuxmp1iVvNj/VYv0\nSR7LiNMMtv54eEG5l9pjNI6gWzXzU1DHH7d230+Szq/Z4cGAhW6dUpazlygK\n1+prRm3XHgWEn/UL24dK3677MCFghrz8QkiJiIqd/awwYLO677Gvba1wvpUD\nFfxso5WXN5FqU0fM2vr/Pdcq0I1miZDHQ5Ft1TdaEimimQ97GVY/PCMKEqWH\nFNLxzHaYwPWhJV7JsAc4+Ur5X1PuMOk0i2I0x70PElVp69IjJ6N8cD7laOLi\nb83VvGs+jh0XMBtsbkblAuqL0sBSQVjL9+tQDA8AS+av2UVISCwPz5ypC0Lp\nPUcJ0CJsSmIR24at98k+1YhdVm7UTD1ka51aokFmsN3Ikb/khSfNHLbXKZ4X\n/ENhcp+GK+mxVJdp/00CGS9KD5JUkcdMjrqdvXwAtt5HlbxlLFFrvi57yjFJ\nVtzn\r\n=Qd1+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=4"},"gitHead":"605ef1c639299a1f1d90f399fa65a7922243e5a1","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:babel-register","build":"NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","add-assertions":"babel-node --presets es2015 ./src/bin/readme-assertions","generate-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.4.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.11.4","dependencies":{"lodash":"^4.17.4","comment-parser":"^0.4.2","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.1.2","glob":"^7.1.2","mocha":"^3.5.3","eslint":"^4.19.1","globby":"^6.1.0","gitdown":"^2.5.1","babel-cli":"^6.26.0","babel-register":"^6.26.0","babel-preset-env":"^1.6.0","semantic-release":"^8.0.3","babel-preset-es2015":"^6.24.1","eslint-config-canonical":"^9.3.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-flow-strip-types":"^6.22.0"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.8.0_1534897831416_0.35648982385345085","host":"s3://npm-registry-packages"}},"3.9.0":{"name":"eslint-plugin-jsdoc","version":"3.9.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.9.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"29e2c4fdf340e0bdf44613d3725e06f633db58cf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.9.0.tgz","fileCount":45,"integrity":"sha512-lEeDTWQsifySVTLAOTbcWQ8ThWmIqcNeBiS1ZE6pjTyqGfYvxw4uth5o7S01DiyKl0O3047cVffA8vOX+Y6nZQ==","signatures":[{"sig":"MEQCICPUEqjcCOPB8VbMiqedOFZI/ZeCICDL6XUadjc9KjCuAiA5KklN4zN9V9BXWEksRTQUe+Ri740vKlhuLwXsH6ghwg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":148362,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbybIcCRA9TVsSAnZWagAAUDQP+gKRoxvQIktcGo1/cAMc\nJ9/TazUVZcQ7Z3kPQSrymV7ZTFEcfvYaFFsnEcyo6ipGFqwFdjjXXzeh79Lr\nD6s2v/KcfAbjJXz1gRpIx6oteFHwHBbuaFP9vxETYKc/CG5hVtj1dFJFmMta\nbnZuGQQ6PgvNbyWOeBmyeUoGu1rl+URqCmpRfk772U6Ml1xe2+3848N+3qQV\ngfVPHqDADhffktzPWAGRUa513/0lo0CIGZhWGcvsOsSm19Mpu78uGDcfgMNe\ngvU3odgv55tmatoZeuwKB6cb7R79p75Db14He+tbc9cmbOKeFjQbv61AKn6v\nRPrAN30SnIqLxPVl6rlPSBdXXzlI1Eg/TmKWcwisU2oHVGbWubBHVSKja5eC\nAhKRCEK56vtw6XU9Vq+LHE0FnprqDuqVY+iwo4icDr5qMUaRWa8nGTBvKw8B\nqXY19wTPMiJGVWIeJ1+VqC2tG6XeRqcCKpPdBe+wc4rtDkKINQCXwUuO3pTB\ngIQG30n8z1IABMvVJqzlXz54MNsDe/ESIsNSrpKVZfqqUfXwgr+HUBOOWvhy\nkEsnAps4m88bKai9PncrSDa9aezMPpBirT0S5fYRFiDR0DGfElXQtzSt+YPR\nolkeEc21cOL3wikjyFF2AiTj4gNoHzGyte9aG8/QOd18BqQuBog44INV0+Az\nU0+p\r\n=PYWw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"175ef6d4e70fee4765dc5008e0784e6cf46c1b5b","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:@babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.4.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.12.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.0","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.1.2","mocha":"^5.2.0","eslint":"^5.7.0","globby":"^8.0.1","marked":"^0.5.1","gitdown":"^2.5.4","@babel/cli":"^7.1.2","@babel/core":"^7.1.2","@babel/node":"^7.0.0","@babel/register":"^7.0.0","semantic-release":"^15.10.3","@babel/preset-env":"^7.1.0","eslint-config-canonical":"^13.0.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.0.0"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.9.0_1539944987141_0.6787003979667074","host":"s3://npm-registry-packages"}},"3.9.1":{"name":"eslint-plugin-jsdoc","version":"3.9.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.9.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"ca626c7899b6b883e6b4bec441d3510f756d98d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.9.1.tgz","fileCount":45,"integrity":"sha512-kSQ62uraDa9QSv/5YncMZoKLScqrq7kt4lGGokH7Iyuqqzo2rZhERdrkPELLdnX4jWwkh+gYFZBt0PVIseKH1g==","signatures":[{"sig":"MEQCID7l/UUD1I7NUvVh02GiAU2/Ip5uEdY5KuBVcje71fuUAiAMrd0VvPMtGtgl65rLS4wlDnzwal/eRAoG+DS/g/kc/A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":148360,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbz3GaCRA9TVsSAnZWagAAl5UP/1XR3Rg49rX5YYuBmNqZ\n6lytPWwIkIxWS9xhLa0mueyuOH3GIC7ZhKx8ovQ6ZGT+f0fb2BM+gMTYNAqh\nd5qm5Dc4GP8mQxiFfZFA2Rxvp4jeyYmlT0pkeC9sK3Lvgd2GRiZp6yv2wFAH\ncvCfGTZc7k5rrvUEGfdNUG2JrV0QaH7FhljCC0k4WwBmN+FhglAiHDaHTSJU\nQGAX6Tr9BsZl/ZCq7noGMkjR6gTCkIllkKK25izPAyJdP1AVjgiFpcD14GnP\nBJWTnZ0BgcySmD0JzohjkxwLp6EftQR9SNV5ROqzefCM3uJZkkr8arJodRBM\nB5TQJgPB6/bZK/Nw9rHBz165fp1XbnggeZpvqEovlH38PAdywoJUm//5NDiM\n1VPmLpuwskJVpjYuVDZXSVTfW40FhfiXx5ArXPIGecqIdqh+tP++JyXyM2o7\nuBULMw1rjKg7aB1a5HQYRHwM/tZvsL2puhC3dC5jm9aW2XoISiZFFP0GePO6\nBCJ1UdFzXY3ZKQ9CS68dk3NXsJRSSTWaQOZp90jGg+T/gkMq89ZmpYpAF4u5\nO2NklhGYTachd5WGwbz/598XcuMsaVJjVhYBe8dLyX+wZ8Rjk0A87KZv6YWP\nCYnBV8GdEPHWsAF4j9pckqrJSOlfhHgSYmrVdAzB8ThTmYg28Q9NfVEeFTDl\nJEST\r\n=pKm3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"dc2f86fe04cc9d4076aa4950bbaed8bf54f4761f","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:@babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.4.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.0.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.0","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.1.2","mocha":"^5.2.0","eslint":"^5.7.0","globby":"^8.0.1","marked":"^0.5.1","gitdown":"^2.5.4","@babel/cli":"^7.1.2","@babel/core":"^7.1.2","@babel/node":"^7.0.0","@babel/register":"^7.0.0","semantic-release":"^15.10.3","@babel/preset-env":"^7.1.0","eslint-config-canonical":"^13.0.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.0.0"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.9.1_1540321688935_0.7898233023435504","host":"s3://npm-registry-packages"}},"3.10.0":{"name":"eslint-plugin-jsdoc","version":"3.10.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.10.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"699d739e7d3aec2403c8f952c321336b3319d1d7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.10.0.tgz","fileCount":45,"integrity":"sha512-MpWb+gGkl+pAxvq6bPwp06B7cAPi2nLd9jhtLhHGiNzD5TdA7k1xoCaXsTv4La65zbhcJuCiXOxjD2HtWYbbwA==","signatures":[{"sig":"MEYCIQCqVXmNNrSSu70qycNN6pwZpz+DHtZUQmaRlQYjBqSkQgIhAJ8K4/ix3vxUkxF9A2+Sp5k7MB/8wfXmUoAkyORspNRH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":146880,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCn8dCRA9TVsSAnZWagAAhqkP/2fneffhT0ImzrUiAD8S\nOND81C5clT66lPlEvy3sq79r3DWnPPQJF7jg0n2fjdaiVB1VKrNo99Jav2Di\nU3MLfHbC4z2izheaPb7PO6iYuVgxOu2/q9iVV7ibGzAHxGi8Bzp4j5SZHKvE\nSKgBUPGrtP90xIDF+C60xdtV9kONIYBqMSXh/q/zEzyXu4kpXRk9x6MfUiWP\n8+4o9ZsDe6EItUexyp4wjn/k4FIcIHU8zdmbbP/1A5t8NC0ydTrG6NT49+N+\nPgybVQHbY7n3OEWjutYzVQ6DRX6QBTFGHYJXtxlgYwZXNtqIozAzbUoCwm75\n5+/tO1MCKx4f5N0N30L8oab61oKbUM/neglebwengeAvRNuDwzPFD2pkojOK\n+0vzPRq0SLUZFX/N/R1BlQ/crv2MACDeA8at8i8NSmnrBqXcRXfy3D2K3rJT\nZGbNswnPf4H+caKRsPBhPyXKNEJ7CUaHJ2fuagjBDmMmQeYx1v1qUKS1Z+VG\nBaxXE5mFcZBG5jGxFINcQKx0u63WZ/ftnTzQl6AptZEGLP3g9E3LpbxDt7KN\n9zUxED4AcyvXjrzEaGtQ3JGMdOtkNOHs1nDe/PVe4HwbdrTGOJ/9gbt1i/M1\nZJGclSiuzEXBEGiGfLvIXJNTl1BQR5L1dI5HyWtMuf3bt14wyCqcSUD6uC2o\nY6tP\r\n=cNoS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"efdeea4d8fdf980b32c6c76e8010dadac0b632d1","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --compilers js:@babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.4.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.14.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.0","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.2.0","mocha":"^5.2.0","eslint":"^5.9.0","globby":"^8.0.1","marked":"^0.5.2","gitdown":"^2.5.5","@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/node":"^7.2.0","@babel/register":"^7.0.0","semantic-release":"^15.12.4","@babel/preset-env":"^7.2.0","eslint-config-canonical":"^14.0.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.0"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.10.0_1544191771943_0.48461789249484233","host":"s3://npm-registry-packages"}},"3.11.0":{"name":"eslint-plugin-jsdoc","version":"3.11.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.11.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"c79e2e6e061e20042d281653d53664e19e462560","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.11.0.tgz","fileCount":45,"integrity":"sha512-0hmZQqpiS3mQ7+yBb02ApZaOCUNQxfLAVBiUiyK2wB1R1v75J4cwKwdIhJOuGZCfhbYu+RzaFZFE5xHdy2iJuQ==","signatures":[{"sig":"MEUCIQD04QcV7ISTu0tyPrpLDBHCpesyhLsLrI1i2+z0OhA0bQIgT1sio46HS2GvOyoYhkSbpMazTH/qjKNYx0Cq4BLCPdg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":155138,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCpieCRA9TVsSAnZWagAA0UQP/31o4q7K4aGxidNter+O\nurgyKdS6M294oCuIVcBS+lBR62+b2ZcKI2SOAra8tuOXiXY3ciOt7e0eYiQx\n+V+R29jdRiECBwpDCDtzD2xNJXs0J3DnILfEfjnkMzxkMCog100udRR85YY4\nZJgLZOP3MgrzIXoDoHbxuyyk5q1BiMu4SMc05g4+2c6mfCJwK6TpTKSssCGp\nmY2j4EVl9usWDS0NUGe7n9+cRChcfv9gdyqZzjDZrJllhi9TG62kgWwPXTkl\nx1BxnUM+63wBclB0wWUiAe7KoDdOSfGY1fccgK+UZxxFQO/p94rX3UifQvd/\nZKgBgLkpsIzSb1qH7eR/bfKseDXZ52j5/6/Oq2hU22vty1enS+xv3IL6KYNd\nemwuwgYzkMyoJbJquyAB1urb6rTLjKgQNipMfnJSPUGLam95Eqkh82xTlQFm\n5WwhX6PbYPYAko9EovGk6hQgpPG7TrGwowoAIFJR7yk/BKoADzsc1cVwyRDa\nhaX+EDBYxPARwZ//BT25qeSumxijg/grpkPIvXeUWrsbqMQbX9du8fapGhjr\nB3EhXQotyeuC4qTwjn2pGeWlYvQPsQDMBz9YiFmcfk/npIJzPF1gKv4MjKkA\nPKGAw1/kAlkeP08vl0/DFJt/j0xn8BYCIEMvaTbK7JUhTt4eXNUDzoLidsre\ng6+M\r\n=n03Q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"7a34bb1f3c06cf395052b2345ed7890acd874ba6","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.4.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.3.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.0","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.2.0","mocha":"^5.2.0","eslint":"^5.9.0","globby":"^8.0.1","marked":"^0.5.2","gitdown":"^2.5.5","@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/node":"^7.2.0","@babel/register":"^7.0.0","semantic-release":"^15.12.4","@babel/preset-env":"^7.2.0","eslint-config-canonical":"^14.0.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.0"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.11.0_1544198301091_0.5165892528063187","host":"s3://npm-registry-packages"}},"3.12.0":{"name":"eslint-plugin-jsdoc","version":"3.12.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.12.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"b08017fed6ea0503c1f306a2826adc2847a7964c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.12.0.tgz","fileCount":45,"integrity":"sha512-kxMYEd3KWDmWldo14d9/JWnn1EJ75cLD2j0SR+rTykH0Xu5Z37Jjy4vHuivGMRD/Z4dHPBTkHSRqNIXkA8I5Kg==","signatures":[{"sig":"MEUCIQDrWiB1GubakCd7qoYPJofNOBkRXsyuy/hUl9BFXfXHVAIgdSo+lvX5HwkLgfG8ZEQgWyy5rFtj4OGwfQbkj60T2lA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":155839,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCp5GCRA9TVsSAnZWagAA4FIP/27dRkJdOdNGRHvyQgot\nX/YL6qcK2P/MEUJQmemY/8JpcBQB6kVDVp93FftfxhKGSnIWjXGLzs6H2Y+o\n5eLbxdy44dwyj/1cgr5WQX93qZ7tNmX28S9v3PkLb77o47c9qSGCQUG1Q6H5\nbqbTP4gdw0/KZv+CdgJ2ofQ8BA0Koe3ntum/b6NdlnfzYN1Ae8vOiTuT5PTV\n8SFdOe25JEkJdSA7eFUPdCLY1BfbNH2iYnffW3nvgp+ttLj8JqxXp3o3Miyc\n/P+V1L1Wjf5DeDe6+ez7ddttQMZ6WsW9o1AA1xNHHcdZ+ftHw1CYwN9FAFSn\nnxswYh5N4yjBj4Y1KhNkuixKyl3w1G7EB6Hc+cWWtYmvLpSHL0n1o9JGpJ+b\n4bLef52C0V4Qg9i1R5CcfPzJHOygrgMtzO85B3kJcWNHhiQZZssjWH2wzdB9\nD49aL8SXinxF5Z3wTNJJWSdcWyAoGaIivpR7EcCD4nzoBTOROXqsRMoCyPQz\n9TSnsT8gnmyb5xWf/n0nxGnjCsF+ppxyh6AmPQz4suYqwDs/bT5I1lVZ7dcy\nL0v6BywCnSY+Ua8iJjhbl50pcN6lTIToOYfGE7seQOOTm5mldrwUIUC5wkZ4\n7rrn9A7xTPjbkqJY4JOCWGubXQk2hhd7SZDPRNIQHGqjmiJfqF9C3CLnULSH\nh2CQ\r\n=e5+W\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"5bd0fb7468d98a1e0f5ac730d247e4865d718e08","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.4.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.3.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.0","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.2.0","mocha":"^5.2.0","eslint":"^5.9.0","globby":"^8.0.1","marked":"^0.5.2","gitdown":"^2.5.5","@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/node":"^7.2.0","@babel/register":"^7.0.0","semantic-release":"^15.12.4","@babel/preset-env":"^7.2.0","eslint-config-canonical":"^14.0.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.0"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.12.0_1544199749746_0.2850652345045872","host":"s3://npm-registry-packages"}},"3.12.1":{"name":"eslint-plugin-jsdoc","version":"3.12.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.12.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"44d863ed6ac9634e74e3f0df38969d974c1e8374","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.12.1.tgz","fileCount":45,"integrity":"sha512-xHd+7d6RzJst/j0an0CKGd0nCXU5kzxh/BHR0CP/HzRrCqkuSa8/tesW6Tu2iPL+oaKanZvT0PMKa2YlbFhI3g==","signatures":[{"sig":"MEUCIQDqf05wyLGVwGAGXuQVl8Qv/cx7SswSa7F+U7PP/JXL3wIgBvEgcpTTVuweAOizPGkU7rbwRFFpmQjm+5s42ol19Ww=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":155965,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcDC5XCRA9TVsSAnZWagAAJFcP/2cS6n7vEqlx4WTmySyR\nY8Zt+BUMpK7IAX9mUeJ70s8hDJXe+TnFmeo+3TAiC8HXD0gFRsVGI8XVJ8EO\nw2wbVF9uQ43SoDRWk+HnU6Fg+QO4wILriK1/vMgQ1auF5J3gP2myW8U0ZsDZ\nWg0QcMLnsIRoaKhOo5c7i5ntBNVrxCKr3qL8oBaf6sq7XgRqq0iZGh4KmUSg\nlxGH88vg1uN3EPKsCjKYEOVQN9pPHDtWI7GqLV9a4+s8QUCX9kdtlMYsa2Uv\nZE6GQNvC4R5IZDDznGQuiw//D3HGvtO5XYxiIjW/vxFdYoJ2C2NtpZp4AfXN\nJJqslI9Ln0xljITJ5rbi2bP6ZA0HZI87nASBBJiGv/rl16G5kfcUaqO/88DH\nElBCPmZH9hNTC5kkVvik7xFRsPurZJgDdGGtoCq9uqHsN6R/PKcfo4vte193\nvkWoTDdy3fkYV8ZBQ2wdmLQ1M4fSXTNKSZWavdCetzXDC+hP6CKyc8bpHBCw\nTHi/dunKWyP4mIOitjnjQnyU7iwk9IBNxVo2E82W9Fvy78RtCmInmr6ZaHOz\nI8q92vOLT9zv4sOTFUtZijbHf6u1X70tEvRwtXX/x76ACIyEg/PpzYz0De6M\nu+VeNmf1uFX5FGqcVeT4WksxXHni6HU9+7j0DCbau7ZE4KDWz0poVknFdk6K\nusU/\r\n=ei4+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"9a3889672c2bce8400257305ed407e2323b9b447","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.4.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.4.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.0","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.2.0","mocha":"^5.2.0","eslint":"^5.9.0","globby":"^8.0.1","marked":"^0.5.2","gitdown":"^2.5.5","@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/node":"^7.2.0","@babel/register":"^7.0.0","semantic-release":"^15.12.4","@babel/preset-env":"^7.2.0","eslint-config-canonical":"^14.0.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.0"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.12.1_1544302166653_0.5614881487947254","host":"s3://npm-registry-packages"}},"3.13.0":{"name":"eslint-plugin-jsdoc","version":"3.13.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.13.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"7ab65fc5ce24416885d9d6c667713f9a5f446003","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.13.0.tgz","fileCount":47,"integrity":"sha512-NcAWar0VOCnO5K++i+aqUpEC5zEp2GxlE8Dz6eh05To31G/dbu+9oZI7EPJcJAdi7u4ZX2bYqPdGqmcVL62h7g==","signatures":[{"sig":"MEYCIQDRRnTh5xsxVovU/gVexg1x6eAUyGNS1So27jY2oIO9nwIhAOxMvRmEIvRZEeyUL5ICFBqTnZeVmZ6u3liDZJnFaPqT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":191460,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcDPEBCRA9TVsSAnZWagAAsDYP/2fl4GmVDZM1a1/Xdd3T\nOl/s3VKFM8P3nPBO1uozwqkIngcnz0KK8X43EIvn6oj2dEEwUwq3ff83Ls8/\nUl89qVJ5LXlDZ2JttixXPrJtx2efdNYy/DXxaDKK7Z3rdarg50eBLhQbs+CO\nJoKmxZPjxZXjOlHMoADcMqjEzM3vBDF5yIhJORkpoBmVSk01Og5N2ElfzoGT\n8C1FNSpqo9SYnqthHcL5tRdvLZc8iyX289TSx5kxt/XOj5UY1ulQzUJchz2m\nW2hpEMOsIZjDFYGwzpn7z0hK4oUrKH1DhfdMtHIvrhOf0gU1ddtABFmZdF86\nHBQ6WZ37zF6qNCkU1GTLa1VZooCIoNIYxWm4Zdy0zxT6C4gvB8auZJJl0FvZ\nwOPB6NAqlyk+9rVANZIPS6TnEzGR+27vTa6h/0+hQZu4x/GjySP7rspHPsaB\nEXCAmYvKHJsxPQWmyZQlk53RdRBw2FuedmZGUm5nxyRoUKqYKA2uGfbMoyYE\nqs1mu/RQt2Rab0dm0VVA+54YQas70gKcnYVpEaoETAFd8gI+XiB36xui4VL3\nFpdNDzb5X1s4+fInURYXy4ZIZ9w8QkVJZfX7aa+GJ3acWChNNB+axJhTHncq\n+e3rclAZ7fyatoOmxsB8OnY0TJE33b48MEJ0qItorFlPT4UZ5iRjQxvOnb5e\nv/Me\r\n=n0pU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"442285d49662c46dfbbb254790e846c39f764ae3","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.4.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.14.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.0","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.2.0","mocha":"^5.2.0","eslint":"^5.10.0","globby":"^8.0.1","marked":"^0.5.2","gitdown":"^2.5.5","@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/node":"^7.2.0","@babel/register":"^7.0.0","semantic-release":"^15.12.4","@babel/preset-env":"^7.2.0","eslint-config-canonical":"^15.0.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.0"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.13.0_1544352000425_0.34661431615117055","host":"s3://npm-registry-packages"}},"3.14.0":{"name":"eslint-plugin-jsdoc","version":"3.14.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.14.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"a0fa9ec71366d04dca14bcee4ed04434202f8104","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.14.0.tgz","fileCount":47,"integrity":"sha512-5QBhxmf7XeJpUsha3cEUe0j8JVcd7XMnDUkqhKdtbrUb0oz4Ea0/b1kfE8FN0/iu2mvVSb1HArMPQT9SxQY2/g==","signatures":[{"sig":"MEUCIDAo/w1To6tbZ/z2FY41F5m4Xn6rcgxITgshfFUxyKGgAiEAlxQ4spUE0iZ+TNBiyIUkR+2mA0Rs4JKVmrVHXuQl7us=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":193023,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcDP2TCRA9TVsSAnZWagAASxQP/2IPyQNHuRA3dJUTA1ji\nv2crUrikU66fHSah0i5vihvSip0hP8Ymk2gvOHSgR8sr615SzboNFEjtgnJX\n9F86auYQWz6wAsPAdI3LKqjKk22d3Xn1Y5/4FO2iWBwxrWo/aWqOlzLBVC8E\nC1EW8GcgZWhsO7X6SKI50TaLPPHsut6O/NHyQTkY0VyVUDx8tijbi9aozN1J\nF9aXkl8ceLomW0yfdXRh8peRfHYO9sfIUv/UJjFBWHkveifOgZt7kj3iimW0\n0RoslRffVvy7AlCKkYw8c0NywAtTnZbhqZ4Z6YqKwotclhBlRza377M/DBMw\nw+5V/eYLYYThJBGzYEFDr9b9s0u1VV6ErB7P95BRgeNmiF6AwRN6LtLGKbQn\n2UKvMoWPytRIHSnNcwENNvhzZpmSmDqofp0pGyzSS0IZDKRgtYy6Dhvm2HLS\n4UT/bYader9jjY2CSuGY4iIA47g4+yUz5Ijp5tUs6A5bkMwZRxFopxptLGO1\nxmp2CjDo1NFUA01mlJWTR5m+LH8d+23FBQWf44TUxCuRaG093UfAePSc6akh\nuZrS8Hr9wodxCYodt7NojK+gaRsgYGefZGJFYZS9EX0RMqo+1uY1qa1/R3lN\ngTwWfYlFQHT2V/fbRrs283bvkkjeujP0kIfM9gdctvpKSY7kfzvbjyVeraMx\n5ZHx\r\n=fcSh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"1b69b04237dd5a9c0b59f0f51d6975014124001b","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.4.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.4.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.0","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.2.0","mocha":"^5.2.0","eslint":"^5.10.0","globby":"^8.0.1","marked":"^0.5.2","gitdown":"^2.5.5","@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/node":"^7.2.0","@babel/register":"^7.0.0","semantic-release":"^15.12.4","@babel/preset-env":"^7.2.0","eslint-config-canonical":"^15.0.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.0"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.14.0_1544355218665_0.21038283126020407","host":"s3://npm-registry-packages"}},"3.14.1":{"name":"eslint-plugin-jsdoc","version":"3.14.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.14.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"465836dfde8e3061a66e69a95b21e83f9c89779e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.14.1.tgz","fileCount":47,"integrity":"sha512-rhWrW3UrMt487TCXxSIXW4aCqB3pb1tGAWki0CjWG/ApQdNnhoCs/Lz7EtxOfQfBGvBSjfYiXEEnJRCRMTtubQ==","signatures":[{"sig":"MEYCIQC/IPoIh8WOfq3Gku6ElZ7wB3ESixgy7x0MElUMsxV4zwIhAMDy7RPYdnrNPodClb2S3I+dxdPSm/22Ue8K9gp8N5Ok","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":193402,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcGnD3CRA9TVsSAnZWagAA4hgP/1jySRXNm27PX/W24T0W\nOA4dvWTsSjBVZDEC4BJLQ3AokVzCHnpNG7ZZfUM94IrsBImTtnkZvl8pDcin\nMNehQTu1ZpI5/8SF9c3NmIOewgdZ4gmlxQ8HVJcZE8RW5QBr6cG1MnGI+R4c\nbxAsyGkWrLmR53kv83k8Bxyx7Xo4Yr4mERLIdlUbn1zKHQrMpvBOHpGgRcwr\n7MJiDrm2FJVzpaJeIjttARbAjzzRLODBHH7wi1iV8oRx2KL+iEmd2M6Qs4tf\nwXQXhyBi+rfyb3dAajlzTjjwPed1UD8LbtMedn08App+IBSl1UU9ubqT2Rov\nrzlnpaZEzoDnE4O7Z4wYUGMb/y+9as4S/N9/C6lsy1Laa1RSWooXMAg9fEnB\nTBuTgvQMdxc4jVJDoeIyMMvlg8L3aGNdzQoVlwRT5H8AYRLSBptgtS+nYoGS\n4Vnc2eELQjiOFccY/xg+FKOWs/jfx5orZRq0hrD6a64vS/DLr7EvtFRsSRhF\nSLchH0ryy2wOh5zP4gnHVGNXYtj66OfxCSOAeLoEEzX9AWi8rFVz7tPxXnfY\n4D9bVQkOEMnSOAS0FT4dxc8AqbnJNi2T1Meot8c5dfQQoTC3OU1Fx7VC0eys\nFlUCXLVqtASQt9YJGZnB0q4+ouL8tgOlL4OHAHSgA+WadMgGDQeG8PEdolWJ\nLRQI\r\n=McNb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"3c0e3c67422be9712d7f8fa7fbd6198e8db16b2c","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.14.1","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.1","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.2.0","mocha":"^5.2.0","eslint":"^5.10.0","globby":"^8.0.1","marked":"^0.5.2","gitdown":"^2.5.5","@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/node":"^7.2.0","@babel/register":"^7.0.0","semantic-release":"^15.12.4","@babel/preset-env":"^7.2.0","eslint-config-canonical":"^15.0.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.0"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.14.1_1545236726545_0.7047382712436532","host":"s3://npm-registry-packages"}},"3.15.0":{"name":"eslint-plugin-jsdoc","version":"3.15.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.15.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"b392b36f977cef3b645b47ddfa17434f2fa882e7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.15.0.tgz","fileCount":49,"integrity":"sha512-CzrxUdaN1AyF8nBeaV/NWzgDIB0OPVAnUuJXShFCynZU671yyQltZXOgXPFSohyNL/3epY3mTSJDBmF+DYX9AQ==","signatures":[{"sig":"MEUCIQDoQuijurgEtdpB84wgQPoRQsaO5CPXsVor8YVPW6AMEAIgdNs4rB7vgpPcF6VLXYiXTwymJGwo8x1tntcUHLpZqz0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":198664,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcKllICRA9TVsSAnZWagAARR4P/iGlFx147SxWTGMDfYMM\neF/x3ZkoIUEdEJjeimQ6uRA3qiOUaSlHHkVAL/kxjOw8qQ1xdXxgWCJ3/Smi\nBKsgL93ie9cfJ/sa/bJPvafbnN5nyyOSVRGptosnF6bem1KqOVLXeiVRlGH3\n9ngenNhqtzzFBWYZvUQrm1W5pX6xIl6Gjhn8x80O/2Xhr/qrsac+Q44Qllbg\no8B2ymbkZBP5C8YkqJJtE5/AiI3h9L6Ply04CDIPco09UW1pOy9sA9xuLYmF\nwtT+TZ0z7/Gfn/zX0v2Yn0kXtqWxXEwzvuTpKWwwcGMfaYMuc0Dcq8uB1X6S\nAmQnOSmTRpLs5jyUTQkYoRmZxzkUjVVLCa9H+aQ4Qp+HfZTQon8e2Sh4Tkst\nHSaom04YE44yvBgQYxJYr9fwOjBCOC2faGIFqJE60MxWERfIhMZjhKHL/1KC\nmcVHjupi7uXAavkU1eioOXP3BM7WtScb1fCrM/u9hQjSUpVRJSflTokyvthF\nKPNR+0U9RzLTvTnl3Blw/yXXUeyaFsU4i3Mcnnog87Mn1qLJMqx4J5kZdsE0\nG0VdTaEyGn7NoKEJYp3dxl7sGrW9ex7KXUJNmpjw9t4m5m3y3SmPNw3wrpDo\nuALVOXs4zJmmlD5Sijq9NZpYbTziU61XqWx3ceJD30ZPfPwlDtCf8WzvJmzF\nfCxh\r\n=Tg/B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"5cddd0692d4a745e809141df3fc511f2ba10611f","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.6.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.1","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.2.0","mocha":"^5.2.0","eslint":"^5.10.0","globby":"^8.0.1","marked":"^0.5.2","gitdown":"^2.5.5","@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/node":"^7.2.0","@babel/register":"^7.0.0","semantic-release":"^15.12.4","@babel/preset-env":"^7.2.0","eslint-config-canonical":"^15.0.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.0"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.15.0_1546279239296_0.2117104360277824","host":"s3://npm-registry-packages"}},"3.15.1":{"name":"eslint-plugin-jsdoc","version":"3.15.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@3.15.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"b4f2bc12d04c3719c296e2b354147a1c9fe93644","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.15.1.tgz","fileCount":49,"integrity":"sha512-xIQ+ajO6M6zsu5XEn5+1QyE1/P1w/l3yAXPCToZjRcrsKsg5yLTsYnrkdoJZJegE70dTZZwQ5bYPCjEbPey6cw==","signatures":[{"sig":"MEQCIBkrbledUV50cHbghf40uwk0iwC9lxMx54u+jRdtHzfhAiAbbuOID4lxmbr3jtg5XqARMr7suBrxzm71/bsiSNv8vA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":202727,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLxUUCRA9TVsSAnZWagAAi8AP/343crODCzyI1rLepIz4\nuxR/JNxLw2z+D2MUCI484aNRHvfa5kZ9Zffc7LuUSFeGc7UigeQsox57fhfu\nDrqdJnmK6Y6dAfyphg5bAFHHkcEwn2h9KAkDQ0vsnPX23LXFecTpBihcFz5d\nFSXLOnNKLVE8YJADFwDwiLBYmaapE0FO5bt3V9wqUI9aDyC4RQhQxS1WhijE\nvoGGXTlve3kz96nEhE/skgO+/GW8ln6QmKxvvoONj4DGnRZPgAuQNumR14c1\nq5PeLIxQUOl3X0vtgvOHjKpLpOv3Rtf/T6eS3/Bg1Y1kdnPykr8p6ynKeoU8\nvzveV+33UeQ1tZAvfVcT/rF33NUTD++uxvyPNKFXvamEd5hugkOV9qke1lCH\newDfTBRzdmMSvs3HouT5W9v2pzXBCV8iUwEA2UqVtvOaBpMtrrw8EGO1AOLe\neH5nV3/3afQu8lhELraVfMIL4R0xgajHwZSZTfWxUTJN+1IL+jdjO9WDqaIK\n85KzDZL8hIdzNYvrXt/H8EfdR29A2d4lCxD1LB66lleObnRvmwxvDes9xosK\nsk99TRKujZMFW9BQ9pf+r/7ZgDER2BOxxteBwWfaJdyCz3qU/+rCT1J6RqtP\ng/SOCQGgOD1cRNvKg7Y8KwbT27t7mRLLI3MjL0PwJ/WxFL4QPcxu586QRxLa\ncLiN\r\n=7YFm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"879ea7a0b833f6ea2c6e8c71ca89568a567a7f8e","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.15.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.1","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.2.0","mocha":"^5.2.0","eslint":"^5.10.0","globby":"^8.0.1","marked":"^0.5.2","gitdown":"^2.5.5","@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/node":"^7.2.0","@babel/register":"^7.0.0","semantic-release":"^15.12.4","@babel/preset-env":"^7.2.0","eslint-config-canonical":"^15.0.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.0"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_3.15.1_1546589459613_0.1403195035516056","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"eslint-plugin-jsdoc","version":"4.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"c791b37597db349e4879f82b7a2625d3eb85f2df","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.0.0.tgz","fileCount":51,"integrity":"sha512-ItGZcUuaG7IjIdIF4rBOgoo+HRKd7CwzoC9PBrX9a1xwE6VuIxSbRLk411GKCm/mVhbf4vzcGrU/Ggm3bsk6cA==","signatures":[{"sig":"MEUCIGTY87CllmG2C7hB3/RUxAuM3hfG7qWznf3Nlzv5sQv0AiEAt2RxKgGtkuBFVCvWiXimPOdi8FIglTG88+eUbwPAPLg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":205458,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcQLfhCRA9TVsSAnZWagAAtDYP/RNo1eTC5SUS6gkgzVho\nc41cIMOXnB7gRh0z36ZASKMoeObzu6GEuCvtlLxdm30MtEYOHtW1ixnuB6Bl\n9aWG+HQOrKzEPXaafuTfnRwIs0OTLhSM+bJJq2yLqCKoY5pA863lUtR6YI3s\nisjwYE6JuHDFQZNcdZAM0zRPxxa3sTrR4m+UFxtWyqLJctYixCblYj45hU9F\nTIJSNx0++93ysp0BVj63wSr6lXOyh35LC+VomQoLAINH3ArvNbIUjOfXSmp6\nQxJ1nnSt3WjicfRTI+oElVdleVwM59rbRnJh3mppC1AusCpmjbM6aJfvw4JA\nhEZA8IcjMkFVj9set+mc//kDq1j+uPLdCnWNt7zCbyXiy1vDqYjn/5HyUP4B\nFcbom9TuJ2kjdt57bduUwbqq2QiZkBF/PU0SPTCgQ7k6tEAsE77YjSo22059\nv+S487rP8Okr96jC+8DW4zbnKQsRModhEbIs7Vn5TAB4oz5CU30e3YfSpHCh\nVBcs5DCDHynEphzUcjSUK4vOpwyovxQ15ZaqLMe12TsWhd91l9jsXn9CTaxv\neG2eFyQfJiuvvYZAI24DlIEeYxxdb7dNyKYPkWyRDw4LqAILc6MxkXKtsMaz\nFORUCtVh0x45ZUVX55AgSN5P3HZAzoVJq1an+LoCDQZnUTiiVPQN5Rw9/YY9\nwBiq\r\n=awYC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"987214fcd790ad8f39ca2986736ff83c5b2a7c1e","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.6.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.1","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.2.0","mocha":"^5.2.0","eslint":"^5.10.0","globby":"^8.0.1","marked":"^0.5.2","gitdown":"^2.5.5","@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/node":"^7.2.0","@babel/register":"^7.0.0","semantic-release":"^15.12.4","@babel/preset-env":"^7.2.0","eslint-config-canonical":"^15.0.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.0"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.0.0_1547745248351_0.2111246346015505","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"eslint-plugin-jsdoc","version":"4.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"6f5e3a96e78bceec98a469718b8446c6d229aa52","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.0.1.tgz","fileCount":51,"integrity":"sha512-aQ7UeIGmaXGWJhYz1S81Pg5A+P6P+c1ebdV9BfG+RdVlx8WB6HVVKhdnIfvHVmD9vjsma89OjOzVSBNxJQ5x8g==","signatures":[{"sig":"MEUCIFNuGfMg51NS5H+zf79uGU4Xr5t8lll295euNacM9JSmAiEAwdVWBk8nMHxLMc0FQKrJ+cka+k/XjlPrdSGc3aiFurY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":205522,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcRdBMCRA9TVsSAnZWagAAh80P/j0rr0izcg9NiXrQsnSt\nOtXXMhbF4/KLRNYij69oj1O72KLLJrJKyn4qYsezxxQ+vK0TBb0Bm9DpQQXH\noR1tQYfBWTHAuuaAJpJ2vgstLEGZkGJ4/birTHSRb4RH6ZJX69Y0Z0IGi0cj\njx6W5MFYzVJmqsO04G3cCdZZWN7y0XMLuJe/kTxFLDC9uuBizRb9Vq64v/z+\ny/UkKTY0EDGW5t6CKw0BbIFCr95qQEQpCHWw+P+44ajfS4+P1JxLRICclha4\nRnP6tRItDBBIpH96Gpz4Bh774a59VPlZcgynJsE3HAVMnpXR0CeMhbVdMtEj\nnHhxiBw8MwaOc0d838Uh88U+2+VPNtxC7YOWE/iwFOyhYt6t/7MfjqRhGk6U\nkvgCgYDvuYZUC0AaCi8z5I3xCcmG7Y5SEi4sugjnSVb7j70pJS5ATLHctD++\nZs9GqBzvasD8lDdTOZkI42xpEXKWUbIr9NndtLR+98k6sb4rZKa8+GBrtNoO\nKnrs4qU79FLxzDXW5lgPgo5LSiCMn43KdHLuCNP785o6ksYXAyJmHdkoqsLv\nQCQiE0T2SR1LcMPdjFEByX8Cjl8nsRkiD0ZqDGQyOKxwBHddsenoxQnF2Qav\nubdh2gfL5AMaPLDig/0za5mxtBzMHoo4o0+KmWmqFtimc06iDEVoszCbdd/K\nAhHj\r\n=cHs6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"ffcace9cae4455f0d03dadc5ed694a97f3fbe1b6","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.15.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.1","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.2.0","mocha":"^5.2.0","eslint":"^5.10.0","globby":"^8.0.1","marked":"^0.5.2","gitdown":"^2.5.5","@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/node":"^7.2.0","@babel/register":"^7.0.0","semantic-release":"^15.12.4","@babel/preset-env":"^7.2.0","eslint-config-canonical":"^15.0.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.0"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.0.1_1548079179483_0.19872456810594197","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"eslint-plugin-jsdoc","version":"4.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"ed1100a4bef9ab80b78cff9c1512fd9538fea5e8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.1.0.tgz","fileCount":51,"integrity":"sha512-XNyl+G2ZtmKXNn/MDGsDVQwgkM81i/hDLwVPc7CPMHrob/0Po0vzKNOvxwIoluBhhigCssvYUg7hg2gN0N2vgw==","signatures":[{"sig":"MEUCIBSfuJAyF5uLEYst1so2eQxgeqW02Sw5dVBUAXe7WpK0AiEAsm4oQMnj94MeGTSrAF7xmPupJmq4AqiQABpHHjEwKHM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":206330,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcThQDCRA9TVsSAnZWagAA1gsP/iBLwbl8ZYhZRaSY4N+b\n0QnmqJleHIbawHWWydvTYvrQ6pjFcsF9eKBas8HSfBIroYF88GehHANrpDgm\nnfzbI4icYhlJQrqI55VM9V3G3ww+5bQ6zgg2NciabOyxSe3alY/yh2+1pajw\nJmusbE7UOcrdPX5w5PpHit8TGn2b5NJYNEeKVNr9Z+rtwolPwFdfTa5cXztr\n6U6uxm3m+cm33jigJBZ+qo7EAQIHD6sECP/k7Qe6K27/Ptzdp0asgErGyMS0\nAx2Mgd3Z91lS4LdrORzQfP5YOKIGPlDN7nWaN9urtuqDf9l/3wNt3nTjUjS7\nn/gfocd5n+gJT671SsvjIFT5AX4yz1LigyHDTy/30cZd4Q50Vei+FnqGahvF\nL+IyLWC7ABcFzQvfLgMx8Oif+Rp/PwxDJ7ngWATt87wdDLOc1tGmHRHl6Yoi\nJb25Ya0+oAw00iDexLHWWide9JfB4GWCpi0kBzx0KuUjhtWF1RimvySHT/zG\nI/STiSRuhu4vGopZcMksKBdC634eTGaHImRxV8UkSgmV6YnvxoOu/hfajRwR\n5amFIVKS9bi1sc5tSyAe1osyaUXJfWZvbnVMj6zTkaJM4TtPlS1/UWu1lZ4T\np2YpXn1gPudi1zvv6lVTH5ihVpGrRequoNzMpvCA0p9ZYnYRZl/kzICNACXl\ngdXe\r\n=OJC9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"663f59e91b05706d7e43e4ed166660eedbf6f0c2","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.15.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.1","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.2.0","mocha":"^5.2.0","eslint":"^5.10.0","globby":"^8.0.1","marked":"^0.5.2","gitdown":"^2.5.5","@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/node":"^7.2.0","@babel/register":"^7.0.0","semantic-release":"^15.12.4","@babel/preset-env":"^7.2.0","eslint-config-canonical":"^15.0.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.0"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.1.0_1548620801838_0.8921550175362123","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"eslint-plugin-jsdoc","version":"4.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"54f33bdc878b21fd43f4d82c92970bb9b062f18d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.1.1.tgz","fileCount":51,"integrity":"sha512-ZsMmZbhnJBJDwTY+iNUDW5qV9pmXMC+6LPtthPExIJHQyv+rNHU87xjfeCbVciecJ/oHb8HK1ho4eOQbHZfvag==","signatures":[{"sig":"MEUCIDoSX1ASmLDzP2H5bFNmnywxEWdiSCjsqK9B/t3ENn4+AiEAl2ECXWApVFkkdn8dfWTcb0gkWWGxcpUYYk6vYMxp7hU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":207386,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJccwKxCRA9TVsSAnZWagAApwMP/AkvwwuNa7h14226eLfK\nZSrK4n0HLhiPrDx5pqDHzLm29YarS+oP82RbW7NI7cVK1RILdk36fqnUXaGe\nyidUgZ4gVuecp10XqNyCOf90eq68Rwz+r3FUKC2F/ortA1ddUUoouAOqzcO4\nVskK7fiJcH6qqJQDX+EKQx5Y89xfAWHAiR0StrzJQSnMyKapOR6z3ApvThKb\nerLtavGrqYBPGKOGEfz7NV9LuXWoHg5lUTfylaH5obL4epvZ9YJIw+nAWkiy\nrBWizn9bZ+2sg5TYQf5ZyTCOH/Xg/YDx0WhI8BEI5s6UxziOaeYHqmJBey/G\na1xtyeQ7dp1HRSRIRiyHonmbJs1gjKTd03Q45yhFZjMFpv667wfO9xpRfsK3\nrUPL9Kh0IxVg2FH/+cCjYoi9AXGtamNd7+ckqhM8HfCVjH1LmeYCm+W24rYN\nb+U7lEHyMez4AJ+XQwb8Tm1M8tY3KTk06hALAadBCNSxkST5s5SiugQCc1iV\nidUnv9HRQ8bPj4Nk+iE0tEaD8M7J8yDKreX5bdxYsWi/aIL9tyyPATdXGtpm\nIfLD9mrUmT6vYyjfbS8VlHAUfi4WxpYXnMwwFa660o1xAYI0bWoYqU4XPcYt\nxC2FY80LzZ3yjsacqfre6r3fIymxh3wQjQfiGtooJX29x9Aa/s9ntVNAxPFR\ny91h\r\n=EQl8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"af5a9a9aca1b51c2e7b5e9ac30b728b9c744744e","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.10.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.1.1_1551041200146_0.9703308136786926","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"eslint-plugin-jsdoc","version":"4.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"e8c4b397c8536f94af54894fcbe57b488de4614e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.2.0.tgz","fileCount":51,"integrity":"sha512-uNbIaqPenElXOwlk/IHpxOlPiHFi9tZ0uRmbkP3YELVXp1yr4gKOvgaMIK70gz1/9+Jhztrhe4B3EWCm9Kq6ow==","signatures":[{"sig":"MEYCIQDF3Y8lrTaa9lYK++wwMId4jkC2CloFcN6f/xgzzm5HGQIhAN618hUGQ3n3QqeSKs9WVGyCe9ErvKpfv79QT5863Xmu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":207977,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJciQrICRA9TVsSAnZWagAAdewQAI0dlP6fsj8DfNpCJqMy\nI/Eetb2pSEDuuJVBQueU5VwBvcXKrsKp+Ixd6RQ4szpszyaS6q/FViK3mKHC\nJBFlV6pdT1gwVelyepOkxaMsmbMEjk0rVmwbyYrup1X0tpEedxkAOHO38gcq\nJ7zsScm2DmjDcUdLV0WrwObaOK239wnJ78h6hb/Rao/+2peEj1niDqvD//hq\n0w1AzOaARHLiRFK1+5bcqq16sa4eGk4TorpSOLvYWp20IgtAO/bslGt1+m1D\nwEZFr7rREFfh3E3iHgF8sgZE2pdpCYXQgt8mqeE8X1VN0T1lakPgXH0PKswB\nj7Qwo8UCRc7UDgMzVj5VF+oqXiaCnkhs+GtFMkoIt9uSEfoyDGme+U/yEc9c\ntE3v/lliavfzfIxX7lTbmPAu1PIgPv/+fz4WVLROVfaKbbV6sML0XG72MpMO\nGg194CmoaIzxsQCGsN5UohyyoDesJd+RtTIAz5yeyC7v2zuL77iMMDFEEJyl\nyti3BAz4dF134XatI6tktCtgJJrfw+/LbAs+h9KZmLYfx6EJjfZsAWmtWgPO\nc1D0Z01iAmWiKt40WEoXQlmVA1JliLMEhlgwPcCexet9c/2MKuOs4DVxkL4d\ns5pKxS/DfJjF8kXoAQo09oxJTTpaeYFQ1/Wz9OvZWSKw3NCcy1OB9GABPlx9\nomNc\r\n=HFyL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"39918c8d62378389200d6255c8d73a9555a84355","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.11.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.2.0_1552485062884_0.11481198705906603","host":"s3://npm-registry-packages"}},"4.3.0":{"name":"eslint-plugin-jsdoc","version":"4.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"eea01a995195f373334da967f16c1cf057902fd6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.3.0.tgz","fileCount":51,"integrity":"sha512-lHc0LnTrMYjNs5BwOR1PoCyGTc2CAgqZmzuaveo7UfErVqQyBPco75Hg8Qinqf3tM/wtR6hCAyjZVaaMu3ZkYw==","signatures":[{"sig":"MEQCIGdWayxTxkbHpQ0oiJ4evutjUrkC1246vCAvB0QjyrvkAiB1IrQt4ldxZqvyD60+ohqnbHwR1mfHLhGUiBTSbdt00A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":208087,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJciklJCRA9TVsSAnZWagAAY1cP/jRHOFyoilDjNWB9iEai\n4ZLyf5GO2EgmIYe6w5RTC1CVHpX/KW1ACxkZsvlplouyWHayFXObvwfM//gk\nh6w1qrwrf+9pFHA8dwlwwNWr+iCRWnKXya6X5x/9lGVDpOciX61J/p+BUmy6\ng0QS6aeBMjmBl8ukAek8nOObsvOSANtJS3eUsTaucQ2cXDBr2G4Xrh1ZM4Ff\ns1OZ6RJLuUNRS/7UDvtCzaZ8HIM0ynq2K3hnFDzCYR3t3fzWMKwNvjVpE9hN\nMBmvNdBH+kBm0z/zlp0v8ZWNWpEIsWSQcsKnCPWedMG3eF/FEiDYa4QU7NCy\ni/ZlPXTvC9gK3niLDVxv751BbjqpowJ5ZPdsDW5M/B/mcReLIyY5/UH/aoJ1\nArbxfv+vPFandwBCQwGfgEyyvbnrsLysLUMaXTOWwq88/+L0Xs39wn6yhOSu\nnrcT8oSixCDAbwguqqhhkfeo/b5EqsfkdlDftaP6aBXNbkZdr5JpUZcG1As+\n/cd/d61lvATkga0uYdpCSee/yxWnNNXEX7CZiSg+a83sFWmDI1F/DUK/JUrM\nYdZXUwkKlZjCMsHx5X4I7Hpn1UO9nf97CfiSeeur4wREHtuiRuL8MqX9foaB\nwWQXpE8NpxE59c1NUjPV64mC1AWfuWFh+WzbgwV04oZGdOgpstWeREzB3oLf\ngJdQ\r\n=A0dq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"692d4b9ec9a027c1c58cad3c6576bc336a3172e9","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.11.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.3.0_1552566600142_0.5192034838141386","host":"s3://npm-registry-packages"}},"4.4.0":{"name":"eslint-plugin-jsdoc","version":"4.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"ecdf72e0f226293ccf7083a13340547ee81c43ba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.4.0.tgz","fileCount":51,"integrity":"sha512-q+4IV5wU9wCoCL3zRBOR1/E4qWzMTEZ6Y7H2eYOq9HQI5ouqowN8VTWFC9yR7x6Apmn4aQQEFrm2EsX78msTOw==","signatures":[{"sig":"MEYCIQDuWRp1ykxy+K0WyEFF+luEiNuU6BMqGyjavD0xE6CRBQIhAOJhY0cFpKrizB10r/PjnssxCqTEGH3L29FdIQrEkpOV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":208365,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcik9CCRA9TVsSAnZWagAAjRwP/3GtXopU9R8Gk2ppL95Y\ngx6X13gckp05O6FQCGsZCNoOooLIOKUprmoo8lMZuahfW8NZWZtzrCK3iJkz\nzF8RUsG3gf+ggqgeOzzJLcDkhxmhqhYQ4DzL7Z9JMe2aVNd2aAQOtg37WERK\nKfQInlsXLhSl8fCLfQJzV6HsCBVp3oKckyPcZTaHSc1PpjAZtI+dS+1a0+5g\nTAH1YjHabfjn3kL1k2ssJbx49CSn7wdzc/DtGjO7zOYPr99g3Z5FKabAfr0N\nYC1BL4Wxc0jbJLoI0a8g/ymRCc72RhdOtMJVqLDIjXhEr/IiEPvLziBxbUPO\n6Nejyk7z3sPFoICjOIcF5RTGpxmYAK18GHyz8LsMJHS0oV5ul/uEjl5Rn+b+\nRkTFb8vWGgeUGD+4qcenqfYLxGVqXp9+7WYjKCdd1h2GaH7hzksaIYqTewlf\ngHx+7lGwKgVnWRahQO6zya1q9p8S8w5s3QC9xpPvmwO/eDjFB7TCvEeNRtR2\nk2Tf3mlQyuhSMwOiKLjGjSFX/Kmlkkk1Zd6eUlTEdsPUy5WCz+PT8MP1HPIU\nFvA+3AmDdlNdBGS14EOYw+CUjmv1GyKBQqfISdmjXfYUfQMvDDvqmkkBQ4w1\n7ceJ2nwT306fWcsBin5IrGGJWoRpbzMoMBrode4iKqUX0YgfO7j9d42Vb8dh\nZ9r8\r\n=bj7H\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"2619665e3ba4e75a7c4e2ed8be408ea1861edff0","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.11.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.4.0_1552568129049_0.680025776802824","host":"s3://npm-registry-packages"}},"4.4.1":{"name":"eslint-plugin-jsdoc","version":"4.4.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.4.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"bbfff55a6ee4c9b996560e8840cd75087ee905f2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.4.1.tgz","fileCount":51,"integrity":"sha512-scDqhjrt75NgspUqcLStxNCAKeAFFMngS+cKNqQoJ86INGyu52ZID1Y72BJb67QtSZYh6fRXmHRIxhxyiXf5eQ==","signatures":[{"sig":"MEQCIDCBwrHu3wTRyMZQ+XU6rjtfHhqwag9KNwC2YeZKTGAcAiBer2Ke6P93EhF4dWdiYn2zjx+DMe6NpslJC306kE0xIA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":208740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcip1CCRA9TVsSAnZWagAAo/cP/iPiI+fTyTsK7bAySKtE\noLAqZUvSBvsMFjA4RrA6Zziy972RH99/2JiKi22YtMVdJ+HAidMPQ/1Mmtq3\nST9VUSokMYUyn0TYmmCio1ls0ZMNJytlIHsdkHQxvu+vUW+P6apcPgfnwt+w\n9Wr15kxYdFu9tKoo+efR9zxCFCI9Bo7Euokw1GbXNNramhQ+Sqc8rzznYYuv\n64NSa7D1b6HLdNoEo+AmhmIKNgireG+cZ1LWzAsml63aeVs+CFCVATvFsBwV\nC5VmAa9ORdDxT1tkViVScLrx1r2vq5ov3gtMbtBdqd5SByj60Vr9U/OCKZ2c\ney3uEFeMnRyf2akCxkbzlWRTJlJrepY/sq9xO3md5ilF35m0itQKas0gJtnn\n2E4pCFUkvsWmVCddhRd+3U1Y7n5PkuZiCau+WzJ2/DxvUtgY6iY3mZ7L9Zsj\napPDaapnQJwQi586vziPPfYQiPhAEZDvl5WlQkQDdnxLTDdZrnNmFpR+4hlH\nIDnCn6lsPirhbSCmJUFpDOExN2G2AR9aawfKMGiQd9eX2ev2Be+5zypF9ekv\nY7/E0XdjZhLL3FdWZd8bqnJFvog1KGFlfjUppW343PaR2eZ8bSvkuvvP2R6c\nN1uwd+6qYsEMb5fXplJAXRm8crsLAnMJj3lx0E5rU1vOr4Iesch4xlZsI+++\nhA3h\r\n=8ZSo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"897f205bc903dd318a975b8fde1bbfe1b03ecf02","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.11.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.4.1_1552588097396_0.8371605748281521","host":"s3://npm-registry-packages"}},"4.4.2":{"name":"eslint-plugin-jsdoc","version":"4.4.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.4.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"98826f770ea6e67fe9f3892c98bb425ef1b9ee86","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.4.2.tgz","fileCount":51,"integrity":"sha512-5lynBedPf1qA+PcdqghENWk/reYGQuCSaSgZM9Y8NgHLtfMjFWmXinr6j7EjieWhjnsEalgMHOwQGUGZHWP1VA==","signatures":[{"sig":"MEYCIQDtJz3ScIyNk4SLBHYMDGzkC3l9YaK1q3wONEOvN5xUBgIhAMyeIoYQ636r8mF0kXUcJkPjeCRoG7XFiCoye/IA1zVU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":209431,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJci/0DCRA9TVsSAnZWagAA+4kP/jJI8i24dv/Q+67H2GcB\noh8ecZyLpWOKZhExEhAeFCT/NNEfEsQgDgTrr/nCg6INZfKv5OHC2laDdnmt\nD4yHiLqYir20XgRIw2rqIJj6p/C5+7u5CBcw0us+D+3bbQSaGsd9Aygeqk/V\nHADKzJGj54pKKJ+qFTFhPEQBrSqPY/Ieqy75XQniK4Sb1Y0oLgawBNNhHL5K\n4UmKNbBOpGqwU5cIm6upDYga7O95DR0IKfc8Q0H9vlggaqssXrkGBxzbM42H\nJaAY+27f94XCPyRfnBJzGRMxWHqb9lMEfBPpmHjXhw77fdrsfJgYNy/J1gV1\nEAFJKYE2jVMC68dScunaIkAgwGRSh1A3DCIE3UWiAwaUGi5rNMmPLW4D+QFa\ntNo9YtTmZrVsYA6bN5bbgxIVJZjo/z6Y0CJ9CbuW76j19hPMduz4WyRh8Mrp\nvNR26x18VRmdE0ca+3/8T2Mhkd9DZZyfRF+34zrA4WPZCjSUr7fkuRQu61p4\nLh8OUndrcfogotK+8zV3BTLZcH92aiDSWnXnhP6ZUv0dX4doe/ZNyBd68q3s\nU2Wza/NfP45qhi2n/6M8dep1hUfowSdi1BwGk4mDsS/nWdARlZzt7rsuFX3e\no2W5M804b7sdLmI9YshPWfSzzccYrkUTVcaAjVWlAOrxhNxlTo5KIbcFx4WE\nIQYU\r\n=dzzK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"b8b9692d387307da59de82107e3bd37b80c263a2","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.11.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.4.2_1552678145923_0.1516505895506597","host":"s3://npm-registry-packages"}},"4.4.3":{"name":"eslint-plugin-jsdoc","version":"4.4.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.4.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"7e1d622328e80a4aff9b40e05246217265dadcc7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.4.3.tgz","fileCount":51,"integrity":"sha512-P1Eun0J8QxSsKuRr81BJnJFPN7/LoCSLb+MvmFHGDMwWUjhjeNcTjK/ZRREdWYAFBNdD0wo7VcqltJiKxnlPgQ==","signatures":[{"sig":"MEQCIEHJ5an2I0wZG3WOqROHS92uMzbiVcp1eAx/1Rdmb33XAiA1X7saTxYZU4Q26cH+mnSbh1hwD7SD+8p4dj+esjgvLw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":209800,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJckM4gCRA9TVsSAnZWagAAfpgP/jY6iDyQsyIiP0eCm7zI\nQpvv23kz4GjJsjFhFwXT7J0k7VqDzPjkwKTwCKbbQhoxryCD9mjanrLDkEIT\nVw3Nm+1+1BKlbREQ4ndG6PoKMJibfKQ/DcOQXxW1tAcjUuvJlL0IV/z0JN3C\nbKyjMmTSaBG6yvyk5V1BtNR/VRZdQgPLRBHdgXJobSWfeTVmx8mHXZEjgLok\nZBQ4fzOinO9/3+8B2A2wtK6KSV91FMupj+3UFpX7V2skArgZEvta/BJxV5Sr\nE2L3MyIFcdhI5xRBVo8HJ8mid1uetU3Eg8PJnE4h+ElabqoOENcFyV4fMmGa\njPcL/LphY4744ExlBkCYYVuGPNRonfUnc1xaDZiOtSOBfEgg5Cm54Sf+dXk1\nn4XGmRgoJSDt2APdKylrf3XIyiwTBgkiZSaXAn3L9KZMDRT4LaZDFTytVh0a\n2Wowk2cqDw3SDRFVFmPUH+WZBKD7H0/MrrRQ4vra2mbPoyGTyZPcqeb6Wk7R\nBSznNzm1DAfx9AqEzWtlrAtKFg/aVa4Kw3vzEePJpvEYr5ke0Jc5KAzhQw3X\ny6Rc8zjFxPNp3CttLKtF3rNW70o1aN0IOmP2BXZSY2TajkQVd5JkLM6xG1Fd\nUGt1NZm9aO7UivRsw0gEDgZiOvhravrst1FTXvwIqIIy6wNCIB4woSoQlL8d\nRN6u\r\n=2JBC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"8578f0011b267004ecd48f90786ba86ac2151d6e","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.12.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.4.3_1552993823416_0.35324990216492735","host":"s3://npm-registry-packages"}},"4.5.0":{"name":"eslint-plugin-jsdoc","version":"4.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"1eee47e2fa7493dfaab1063211a8c9a0df255db1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.5.0.tgz","fileCount":51,"integrity":"sha512-5DDzQNbNxH5vdLnOSsKv4VBItL5hwEVITfrKZeAuxOeUFiKW1O1wWtOnDSyRtUZ2ygUos1kwESbAFGEDxYihGg==","signatures":[{"sig":"MEUCIQDEkHRESs4ihtVk8sw9vfWtRUpyJlIddZ5A2rolWnlHHwIgGQP+WPENLNbsJPRCUfDZ71UOOlf7c1aPmLq76ze3bQ0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":209877,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcmpZkCRA9TVsSAnZWagAAFqQQAJE4cbJy+eXqkHDoI7dl\nnohkBGzGB+K9UDrc3bQLUJNfvrwcClr2mPW9NLmM7qvYqDT3oPTQBvvvGn2k\nmcn5khyRglGCIwNmup/gANg6hGfDDA26I6xgc+Hj2oxaqZeBxo9igFw0Cv6W\n2MwLGHWjZcD3wHiXPFzCEPGgdgaNR7QMxRF58H/RB00c3HBulWkxZxkajRlf\nU9U2IIQ6kMVuMl1W5hQnAySBzMZhP4ZjTEFZgQp4xkFckhEduAXiMTKpyGYK\nteEFtQLUmJBy16z2xFRAhItetjpViuEix9WrErcHbWFk6lV9HkHVrfVqxWQZ\n29ZGbgYXBb+T8+NI1lRSbY38hZ2ccE0PStzCUdkCtujkcSJpW5iqz3HtOTpm\nWssl5lzYfUhGBF/OILyM+F+Bxn2OWcpIdCPFp6VGO+2OQekS0WPiV/aEJjZw\nLgBjl37kO5wfe6yl5U+eD3GNkVa6mh1KFcpvBmXhUZYB2/TgmIMIlCxxkE+7\nbvVLlgNclfCgijPkH2f8EUgCLtkmxGdTwTHUNY8Lkcw582dAEwGGQHzUklWf\nufy+NoZTJd8V97KvYsdx5hi6eb83V7G3qtheCBcf3/aDjqM8FVdphegx+adU\nTKIYCoBJEVsDY9eK/rlOfFgU5SClOV1oTFZCvCKp33x08HdYXA/EZ42kUDbW\nkuYT\r\n=YIZW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"d2dbfa1d5297046be1879efc16dc76e25aeb93e0","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.12.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.5.0_1553634915799_0.3780375004857086","host":"s3://npm-registry-packages"}},"4.6.0":{"name":"eslint-plugin-jsdoc","version":"4.6.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.6.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"b9294ddfa060805388f75865a03a7942a2d68047","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.6.0.tgz","fileCount":51,"integrity":"sha512-R5O57t1JdIkuKLx2rhAHu3J2l1Me/Yr/I9wbyD4/hL6T82G6SKu/9D0W/PxkitijY3tI4c7nRHXEJpCPrnBXug==","signatures":[{"sig":"MEUCIQCBtAuJRlQXXnausykz0jilfwHkf+JIKG2TRYc7ulecpAIgQRwTV70SmM1o77xM1g+fAyQntwMBeGW7Yxv25EZvtvk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":212393,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcnPinCRA9TVsSAnZWagAA4J0P/2mSA91dMl5Iqtq5VovQ\nfcxh/hEUDJVFpvttKyV/20SHY3vqnt9Ujju8tbCzABjfc5GNcTG7vds16wOr\nSDwf+U5VjxlJ94l8se6EWYN1uOWQklfl7ASKGwzSw597BhEwGiAu9c0hg2Iw\n+bBA0VjpXYVTAbGE6anuvUaFxSQQr6vZeFDSb/RkcjmLJkk1Vogpd7NGhvFP\nl8bc3nWDygfIwvvln+TZrLIiSwIWdc77ZHZLQOj0JgwhuT0ekRd8jndzJRO3\n54U0nN/OpfFaygUXcPECDSYXACV56Zld8/HYBha7EQoCDXsJZpTlGWazEEOg\nuHoIyipR4wOucUytTalB5bPCsSnZ5jzoEkWxRfhAY345FNJbvWaB9BSufGLm\nGwYADHxzN4fSEd3fIqASiafFUX/LqdUIpdjYFWBS7rkSaeSHm79onqbGZFYh\nvrk04fQBD1YKiwtJbuKw/9PFXYxbFHhdTcUOhXTMq6smkWIdwS7SKcfkk4c7\n9rM3jRUvTmN0hrbCnj7JGEZJUKGoxSgp0NtW/kIMZyIeBxK7AZwKmN27ApSW\nBCN6HNUqjrVFmhCJT5yXyh4FoKn5kAkdS8+1LrMFCeTor4uQqYPJf2qNpar2\nW3uFZ74LXcUURpccEfOvp+AvwwVMswLHIjRqAFxI23nie6dW1hdKP2Dk//51\nfjub\r\n=QpQi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"070f53513d3b340dc4a783a670f37284325e58cc","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.12.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.6.0_1553791141699_0.16234038064539713","host":"s3://npm-registry-packages"}},"4.7.0":{"name":"eslint-plugin-jsdoc","version":"4.7.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.7.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"b38e00bfa7711010047325459b009990379ca551","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.7.0.tgz","fileCount":51,"integrity":"sha512-ghsgfi4j8rwnCWX/jSDHdyvqt4KzEnuXa0kYXfDhTQvd/ZDt4LNBfBC9ZVXc0ApqZDI8TL3L10og2er2s4O/7g==","signatures":[{"sig":"MEYCIQDC0f99zqs1NWNRDiKgQ/hz7SExPH52Exn3KYOzQ8Ie3QIhAI/28o/3twCEE5FjkaNv4uiqGwFzNoIXhO0T6nZZOtvS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":213477,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcoeyGCRA9TVsSAnZWagAAgRMP/0FYizuMeCq3Q7qpEByT\nW0W2EmsxeoE0WH/r2AvGib3EzB+Y4ASkI1AxYkDSs2WGPmGXN8ob7KNwdPOk\nAnfcMV/pmJr59VCg+Lj8Vx8Mj14CLrfe3fn/4hjAZ2drsWZ4YaWMZAcSstOQ\ntEO9j1UF2t5lfzId9gc5f0/peoCO3iYmO5gHjjt9Tb4LFwCoLwOOfB2qDeJL\n+DmZVjkTvPXayBHPz1swcZzfGLbVeiYMOvT2oEdaj4UTJgqOSFVFs0s3PQo4\nlofwWGE7pOMZoR2CV1aDfuGejc02jbGJh+u7FTQXNQhOA2oZduLZqBnB0zpA\n2ItyrnTA3ZdXCZNEbPTwnNvjC2nLRtvKIy1qKRXrsFkUeLWO8iy7huSGDyJL\n66ptTowfcjYcIhwNDwfg/cusqRjn3lp1bEk5eTLJ0GH/xCqp/u7wuuqRcZiK\nz9giibtnOCD3J3PQPN4/3bpLVhH3wtvc/r25bc+UgDKGFsYB7aOeCZct89+0\njwuK3rwAP7jM4XW2iPJviIH/mARFEyHYpm4wFPXFLfGPR0ol6+x6S+kA3+wx\nt3fMk7G4NL/0e2Tg4D2IP/PtjXSKoe0KBRgeQK3UJgkDdGFh/ly85fWyWOOa\n6W29McUUeVv9HsET5WOPBJxSEBlfd9cuP63Z2QNuqrOqNPiANi+qZx9012kV\ny1ye\r\n=qCU7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"750560464212595a313bf44474cfcb9fad536165","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.13.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.7.0_1554115717689_0.5147085763695936","host":"s3://npm-registry-packages"}},"4.8.0":{"name":"eslint-plugin-jsdoc","version":"4.8.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.8.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"f0e4fae74bd6b83654025bb77d1f39cfe4916152","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.8.0.tgz","fileCount":57,"integrity":"sha512-kaGr4AAoU38t2CLJKKVSI0PQ0Clmh9lTjxdwopercV5vU0ZkyDyooyKX4ip1HHp2OSGYQYtp1tDjTexVhfQH+A==","signatures":[{"sig":"MEUCIQDV5dDvPv2ItUTm/eJWeUm37oMOgbpPMz6C7gDHy3ZPugIgTXQcqiQZ3rjavYhAgB4ZQlz4hC/U9nSBqSZXga/6vhs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":225478,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcpfYjCRA9TVsSAnZWagAAH5UQAIe7xkOCCuerJGOnhxBf\n6teuLOLC7XsoMuYyJF7yLyXUddAJQEX7r+fuXOcTEabl/GVdHSl8VvpT5wrk\n15QV7vbElx77rMmTvB7CIvxmuu9qDye5htoDQ0mXjjhLpUfo2UoNe962WbWD\nMGrEjAuWUp28cCgzuCJs1K0VAjFdCT+B+I2XNKwUmo4/Szk7/iXpfbLvKDJa\nbioTx0eMQOn1CsgZSqxS+L0z474lXwWTAQrfOrjjiN3i7m0NlsohijSMoKQE\nvMdEStwbM9vPLnT7Yu7HsdpmgyqRVObiav9NDIgEjP5N3ORXK47jxDJUf+pc\nhKDlSwdbvS9HxSHUi+sCBjZ0g4VPe//2v+So1wk91k5CbPX4k0/IfvaRTd1+\nkX3QSn4HmRdOhfTvXr7cpKN8k0MWEkEBIkO6YPNifbu2YgYZBvYKr9B0DgbC\nQRniBAyKdufxkbYiohTvvNqLdZoABJanc/VSaTuyJ3digHx6Ji0rFWRwrUNz\nafzn4NnyLy8sTEKzqklO6+pqMng78Jb+O7YlMuVPbhb9zQjEl9qFE68zHB6S\nRR4WGl5pQbWAG2L2WYK69rO0e13hN/EZ4JzJm5knz6S3Owf18JXn9hf99EaO\nDFkvwlT6Fbhk4e5c0n0JPgWk7o3h7wWYZylVInDY4jEJblIKJH5Cc3Bd3NAH\nYk8I\r\n=J5H8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"ea849962ce7f2befa84d546595e7ff2149d46239","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.13.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"^2.0.0-alpha-8"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.8.0_1554380322570_0.7193381293134484","host":"s3://npm-registry-packages"}},"4.8.1":{"name":"eslint-plugin-jsdoc","version":"4.8.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.8.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"36b02d3b3edb6d350b84225b3358a34ca90e6440","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.8.1.tgz","fileCount":57,"integrity":"sha512-OiGiRphug9+ekA34hpEhAHJytrBLbHMnW902yGN/axLpsys4C/OW31a0vV210NkLNOJJdG0hpnccb504oeVFeA==","signatures":[{"sig":"MEUCIHE8qggWYqnpbrSQKpMzT8nO2cZxM/AVXj7Q6ElKfouCAiEA3646zN9bQ8MCr5QIr0IfgrVvnfwqYmAgewn74E3WsSc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":228274,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcqw6YCRA9TVsSAnZWagAADEoP/RP8yKV6JwcuegpepjiA\ns3inHmSUmlaVxl/wpqMBKQqMafZHuOvPpQZFuUqoNVVMMRKGigdoSgBthb7x\nx3EkcpucIwqGcBFdQz8ln52rE8Tvf9DVAPdPMx9kNvnhoo4F+VwCsOO1uTOG\nshKDX73DbWbpLBlhBLsdhlumylYcPvaJut0gpZ3zD1VkT3DzvpPD7Z0ay/R8\n/WRj5gPmx7zQdTeSyM3borfWCgoDPsWCzDouLd+cvU2i1RTvq248ecy0tLso\nZTg9exWWNrl4W1wWHopmqbps3ew279crJfb7kOnTkbyYTEKwTNak2IL6KsWW\neDrq4/WjAT4As3GXglrMaHD+k/MzOX+OBxzzvLgNtAgjhyjc7/7WRXAu1Cjg\nwzx72SyKDR597N+KpXHo8otIcfU0QlSqFNczT0lhpxGVEzLzKq4Ym6xm2G+/\ndoLGTL43rWNTnsaB3kB4e8tSXTHpiEsqobnY/UCP+XOCmFyBlj3UdceRF+Ak\n+1smkyAx9hYyDtjpRpSlRmEUh7QrjrqPmTEP0JSqtY/99b0EvQp62RlhvP19\nvGXlJyDx2uhw4hP8XDmE1Qr9n0ETO8Hqtdzmu18loCGvosKWJ/9Vdx0CZWWp\nNEjiiUicTkDEkreBuHR+I1R2n2DMxkJQpjP/UNzcqoHoZ7JFUl13ENjaKsf3\nEVby\r\n=v/GS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"7794dd6a561f469f0f0c056c985930215a3e3dd0","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.13.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.8.1_1554714262617_0.27689558300271666","host":"s3://npm-registry-packages"}},"4.8.2":{"name":"eslint-plugin-jsdoc","version":"4.8.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.8.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"d1f9d503865f0a57244f1d580b72d6f6383bd118","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.8.2.tgz","fileCount":57,"integrity":"sha512-4ybjEYqUdrE6fMbsU2PS71Q8H9+iMxoDOI0eNZG0o99T70rOFRV3C4enTNBzoqjAU1UwecnmWONyb8zjdpLneQ==","signatures":[{"sig":"MEUCIQDKx6sDkyFob+CWhTBXLRa7xEZnkEmJ7tBDJUtGLlUFfAIgAI1kZQUGQt16umAdY8d9r/2jsInOT3nRsADSvV2vikE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":228912,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcqzsTCRA9TVsSAnZWagAARk4P/iYthVENcmWMSlmqWq3U\n3aebMzr7tEON+zRhj+gjqdlIIgKKixeZwzizAmv81nZrWZL7oVTWPEdqdUTN\n4Cb7LZfHkg/fSntvPl3FKY3QZQpWTKZ1uQPyzC5r8j3CfuaJFKdnJLmeKbV+\nbWeBcAGYKddTLBuqM/uGH1Q2FfRyrSV6lwoG7bIOFpENU4N4hFWej70hafwn\nMgMmUO7G5Ohjww63naZvHrV/r8mC488GOI3xTk0lvUxCbx4lt6mp3Phf4L/p\nk4lgmXoUrta9u+Wl9akJ4XzcU8eR7m57TUBFqEJBIzySlV9hrgXX1fdtl4nO\nS48UJP5BoeJklWEhySGyp3x8ZZ1b59pHieY8q5G6rDb231po4YilWz3Y8x9e\n42o+QLeolJTDtChizf+++44TidQXZt+QZHnCstuLeaGHOL763tfiAHPgeTnp\nv3lf1VEu3UHkDyWpQyo2EA8W8bIvcVVVoY1+naHvSf453fe+HB22l0fCMdU0\nnhxGXNU0t/rEWcO+tIqQAdGGCrn8XgUBGJ6Ck+UdM1/V9CBS77PTjRtyzKLa\nBkXmw5pkVRypswsrRvv8hP6M83V3e3aPg6/zwIMLGVZaRz2c4bzRRNWHvER5\nA7i20hiRPDF9iSjQiyoM01XGTAdAf6ZqIl2b8i+365rDdZwkY22aXJrGwJ02\nWLJC\r\n=Qvbr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"bcaf02ecc64ebc964366f6801beb2df4496f5d95","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.15.1","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.8.2_1554725650540_0.6512876229402675","host":"s3://npm-registry-packages"}},"4.8.3":{"name":"eslint-plugin-jsdoc","version":"4.8.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.8.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"1060e8b5c1ac83b2dd613c2d62fe1612394aafa9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.8.3.tgz","fileCount":57,"integrity":"sha512-lKOaphUUzv0qKJrAdEwQGEWcNN2Foae5W111u1ASKQeliyJkKXCVxia0dakATuI/s2ojr6Q3FVzWwT6uE1icBg==","signatures":[{"sig":"MEUCIBfZ7ce/r2q7WKNHKOkENCoA7cCaBySwxb/cSaPCjvGGAiEAjB6d1pfEZuAJ3tiWJNRaAXD+VPJBNTp1soCie18A6yQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":229428,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrLNnCRA9TVsSAnZWagAAYh0QAI3nSL9Nt2ZKgapBAaYS\nC74ykXmxKxuAPH+dCnnZ1s4lXLqSSqMzlR4h+sRMLHjCU4u71b+JaJpEQFU8\n6RHUSjLw96DelT6JagZymdPeNX4n1RUfEUmtb70O016o+7Fk7N0I3qI66Vk0\nHYFfkGgSdOLnsfdAGrmGvQJHNKD/EofJraJEQs/gX/DVvfnrXncj1lre7fqM\nWMI+6l2SWzjZEzKNcjdPulT7r7sKhqGzf2/Zuh33kw3fjUKmeELUnJYi+XA2\n8N60Zamc/Kqr6M0KvLtchvu+orFeNyABpqS+lqcnXg+mXYvcv0uawQx/jLXP\nHg018EjAuMUigMMu7CmJX3p4SA1YEQub7OBtjnWh+NIiEkilsJ+rPDFo+wly\nuzuH7cXXmaRMQ0BYOvMYcSx0GxzA/jF4BAgUZN+PyUYo8Q7Xm2VEkn49MuRr\n7QfRLkn6DPCXs6B0WnvMue4dlSJ7o2F6rYg6WmmRlV9EtAuV5aabcVBuqijG\n12PIhTdCKZQK7F5IV8aCcmUhEvMKXe8wB5E6VPevppvvbsZP8UaMWJ9DIoC2\nL1bLD8IqFSbW7uN4JDZApdkqCok4Qr26G/kBx3ro2eb0qHd04qPk8uecPcIg\nM8EPPxbQme7N1K1D4sSUcZqB41DCiqrwnO4oOyOc2icoi2jLxLesGJYqtO2E\nv96k\r\n=m4Lg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"49af10af0a5a174852608465025d4b058cf7bbd3","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"11.13.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.8.3_1554821990459_0.1126857685058209","host":"s3://npm-registry-packages"}},"4.8.4":{"name":"eslint-plugin-jsdoc","version":"4.8.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@4.8.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"31f413c8a31fe656881398d8920b381bfdfac618","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.8.4.tgz","fileCount":59,"integrity":"sha512-VDP+BI2hWpKNNdsJDSPofSQ9q7jGLgWbDMI0LzOeEcfsTjSS7jQtHDUuVLQ5E+OV2MPyQPk/3lnVcHfStXk5yA==","signatures":[{"sig":"MEUCIG/bGaNEu6PZFsgEqLL+t72BwHOLhrlP/R0gcmfUbZ0UAiEA/GBsa3Q4EOaV+w4urLYHFxp0M31+MsIUg8jC397n27w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":250360,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc1og0CRA9TVsSAnZWagAAEWwP/RkRum6MeEuCUg20NHjp\nP/ZdYN5EFWWxPYh5vmuIB3z6QrISjHO/qqNubDyMsFQWFFEGFEPNCwlO6KeZ\nrl4817c8oXYrHxtakyCCP0Zqn+45ZhwkI4rmzgLwyU//kssy9prNIApGs+9E\nAwaCbhThX2oZ3gPeVl0ORiA1cbcQDezF4mWKUyfAopLchLJ2z8pB9l6NLp5v\nH7Wl+Kj/O7uaLsnrnRMBISoiJ/ROtJmnQIuVqr3yvASm3+w5pYhAg+leQcb2\nSsn2fjvXopg/6M3ORQ7lSITsnBy79bfyn6rrdA3SrCpMUV7dfEuBPI3fhvoL\nwK574nutm+Kkz0/nuls+163N7I9o8Wkc8KGq8ezrel0wFaXA4CMTkg2F1WYi\nNbHBAzT49a5czn6Ew0XPOCrcTzDKVt3S78EkS4ba1gUPP3EgYRLoyuZhQlk5\nT7eTtNcRzrRWU2wUCXHqKWXuUGNjQ4RXd0e/7Y6Lw53ODSx+cAHk+4BdhSZs\nPwCjVQy9xNg9pDoq2Ui4E7vnA/KhNr1tvvAPrE+Ldwdwhx5RopFHEKy8Hk9K\nsUsWOqIP7GOgRb+VXb/t1qGWBTF+bDn959kfHG6iyrz+Len1spDsdf6v1xQ1\ng/G+RIyBWmGoDqJyGXOO2Nc5IZBoFrV+3d6gO/NWRM2WOsx7tTEn74z/i+mE\nBqvt\r\n=kXhz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=4"},"gitHead":"9c586c52e85faab16cd08396c0a3fb0909e58bf0","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.2.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_4.8.4_1557563443173_0.4578370815625392","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"eslint-plugin-jsdoc","version":"5.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@5.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"79ccf7740e57207463d418a00d2cd2d08eb14fab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-5.0.0.tgz","fileCount":59,"integrity":"sha512-QLVjVi+R/WqAamHs/DrxuOMJNC+gIuZ9pEwk6nOwYFjKrXB1H3ILk/xQ4XVlrE0t5iaZ4/u7/eDEMQ2476bibQ==","signatures":[{"sig":"MEUCIBSO46qBE92J9aPw4QSi0kY5MlmXEakI4sRclSXUJgytAiEA9H6WuDpvSt7p27kwPHrNpGnAl2hxx5XdwkyCezHgmsU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":245409,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc2/ecCRA9TVsSAnZWagAAkscP/1KqJCiSEg7VXbCYWr99\nNzmekLC6IIBPS9JQ3YjR9yYFVKjqzpb1/I6ZMedg5JK1QSiE3OFPt0gsjLOj\nrDYsVqyWUeTBH3GfXubWeE5TFQC9SgJ2bkhH8bT5Qq6GxQhcY9AIg1b0CujE\nMa83LA8W2FPor2otTYN+MKoMl4q1XI8/AiqdVXJAgrQwfrJfwjEBdmygY54Z\n+ahmMN8Gze8JP80bRfHtAXV7Lx1J9kFfc+f27DqBvi8g5TmkIlfou7bhKjkb\nLX7zmvtxhT2pF2u+11w5lOliKNM/GW6n75zBXfI1249OOMxx8aHNraW5YmQU\nTPEt4oNSoytGbP84R4SUJ7cFY7VaGyilAATEEd6GH4CMcmEYy7MNyVsEEFcd\nVl3hS/WlrpemOEeuBNP0LOKH+/A29zvqhlEzQTxVlaDrReFIqSysUddxcVVn\nhq/Vl7HWdntz6xx6ZKO7rn4srmnvedduOCbnu25olokUuNW+vooOvgO4yrVC\nEasBLvhrhDyfdsP281BC3FRopiDUxesio8NRyocvO7O6oG7hwvwG+j3wsWvR\nnmb0EJzjxwDwmCmT6MmJwYk5OcGkXTvPQ7LWWdcPoZhP/oAgWNdc4hZ5Fa/r\nhbQ/y9dkazQtxjNOnq0G9GL0y/MbWP9QS2K795tQgZ4NKRQDX3INjFveyoIM\nfwoc\r\n=Byfk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"3a42f2077d4b06f841364a5c206ef58bca6a53af","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.2.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_5.0.0_1557919642899_0.569550300065063","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"eslint-plugin-jsdoc","version":"5.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@5.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"eeaf22962ea418beefb54eacf9b6b5687640a32d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-5.0.1.tgz","fileCount":59,"integrity":"sha512-NNKZjZDksu1W5SIuYnBEChEGbJe/U3CMfBRE205TqZbMPA4INjYY3De734XhUa/UEl65tXKcJGLIy2wFEwyfug==","signatures":[{"sig":"MEQCIAlS09Y2Bz2hORS+ccVafvulyurZB/zgr56e8/IB8d2yAiAwLWA9pvrfhB16t8w0LxTJsn1CAHHhBi6/QRtfOhhAew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":246449,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc3A2eCRA9TVsSAnZWagAAg1UP+QE5xCCzfrwxNEzCX9q/\nfheAI+nP9o1r6KpU5avTd5/L5YAi9JM98gTxL0CgPmHaC5+thiVQIJIIjvTy\notUlBSEvPV2bHYr3Tp5wT04qiO3cW4Dr+dDbxUzI6E+6xxb6Uto17IXbRAfn\ndQbhoCH6yjr+DUf8GSKZgrBgHyRzw1vTBTOUU8SgiXP8R138UOj3fBAIds4X\nwwTHM74/6kPkJDOyGHgzY81x0ZMi3x+6I1LGvRhUtWyJ/9H1ojL/lQBlc32B\ndkY5OxrKJYDcS2VicnmiSWo9rRfndy4w2yI37arrgRL9HGizdJTxWeeJ7VnG\nD5+xpXyUp3fJYG0ARC7BI9mY1Z5xY6WHZ1GsAr5+jRImCT4b2kICjvrq+FzG\n8nDGgpIyCvDtU16TuO+htugaZtUE80RChpzpMetD0HQ0s+yFIpO+xNXU90RF\n88TdQ/H+7C+65fz/tkKbewnRFp/YCVP3RxkVUTdYGqZLdCAaVmrAQyX1tsmi\n5GR/pLTSuMXw6k5Nu9HfMKT4wiJOSrN3nkW9lXXgyGQmszeor89PwEDEflPb\n8NhYpNb3F2jb8xH6140rwqgOCsD7KUTrbiCDfJjtgxWNPwJQNWjRiH4NpF0/\nt8RjMA3phpuHSEBHZ8m5uzOG3ar0s2DlKtsKODogH4NXLVLtgJIljKT6wL6v\nIiP2\r\n=In4h\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"4a338a39adacfb7d986f1f90e97b88d0314dccde","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.2.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_5.0.1_1557925277452_0.8131255102758843","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"eslint-plugin-jsdoc","version":"5.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@5.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"dist":{"shasum":"3387a116511ce188008670bbea598dec1de11549","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-5.0.2.tgz","fileCount":59,"integrity":"sha512-ACSu4NEEG5KZK7liCZz9jm5f5hFHcCL29zsN0RTixIZe1kuZOVO3oVbvnpe6o/U/3h9dMLJ42Yhe6umBS6aO7A==","signatures":[{"sig":"MEQCIA4qzxAMK/oTT2OwgFXXPg2+03+knpZxsA3WS+733FEjAiB8NowV42BbBTn7hwfs5t6UoPla1HTAnz3t1ubyxDALQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":247398,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc3DKBCRA9TVsSAnZWagAAyykQAJVuum8REb5SAU3sslqV\ntNZPmS7EZdPxbqWK0umqgHwenAmB0PYM3le1jKeiLpomV5VyKDyKiYAst4oO\nL23HJSDFApOWmrBuubIss0+AlyuY7ogZnue1spUN5hSZuxgm0xV/y+Of1UDy\ntG4wrpSgKu60oYJEVbdUNkmPW8QmQgNL2xMvZ5O/2ydTgeTL4TbKNcaiYE/q\n42RXOy9CATYD6a0D0ap8v9JyYT3xqNfkM8PhPqQbpqkYhj2DJrDQixRoVaQU\nmd1uDE3v4jX4rJmLUkyfd7o5grY6GegKCFQ+6DBg+dsDFJPbLWnCcY23z2Ag\n+hWxtAvDnWePs8L/nDEfk3G9+Ixqp2bw/XL6ETT2w3Ro9mIgX63FnC+LaM8f\nkrgx4ItSWFfgRLe4JGNqAwIFGNnfQ5pONrOB9CtcRHWA2s+BOwBucqlO/Up9\naRSg6VUbQIhS3YIDikVY+zaCmX7AWQfPDqldSdyH6K44wQ2zX0FGnqIUM5lV\nL5Q7BhOb44nIy4NMYIYqqqnNybTG6GBPZ3nBnyxQok34UCdlKzTDfut4UKgO\n2DElEXHncBq8DTASAVUQ2/jlhu9SjYfFchpL2RZL5AOqbnIB3a0a8A2+Y5Zk\nBojmCaeYltRixLgU4rzwRUb2c2w6TebEdbI7IJzN+co6+ETMQFWsLCWCa2xg\nzlLp\r\n=fK4k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"40a7fc0eacef610e03dc1637b4c4ad5692669fbe","scripts":{"lint":"eslint ./src ./test","test":"mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.2.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","glob":"^7.1.3","husky":"^1.3.1","mocha":"^6.0.1","eslint":"^5.14.1","globby":"^9.0.0","marked":"^0.6.1","gitdown":"^2.5.7","@babel/cli":"^7.2.3","@babel/core":"^7.3.3","@babel/node":"^7.2.2","@babel/register":"^7.0.0","semantic-release":"^15.13.3","@babel/preset-env":"^7.3.1","eslint-config-canonical":"^16.1.0","babel-plugin-add-module-exports":"^1.0.0","@babel/plugin-transform-flow-strip-types":"^7.2.3"},"peerDependencies":{"eslint":">=4.14.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_5.0.2_1557934720526_0.6173314858718522","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"eslint-plugin-jsdoc","version":"6.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@6.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"878fac5bad2c5409f9670eb99b18f59c724e0bd5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-6.0.0.tgz","fileCount":69,"integrity":"sha512-Ps7y2Uu4auoJwTK4ClJfwhzICE9GIyiDFwPc7XGG9MhAaIOr2f+5thRftmQTpb+BKouN0DwuJRu35wuLhhdlkA==","signatures":[{"sig":"MEQCIGYW88m58O4d6Jqonjrcf2F5xoCjSJiimB/NQ1Zokh2OAiAgb00M3Ib1mWz5VlxbWpKQV8hVsQaoAhtwG11YQJyOLQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":346701,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5I1lCRA9TVsSAnZWagAAEIcP+gOSArL6k2QCO9Jag1kN\nQZdU7IsLGMJ43p6i8xpkm5jXZFyc/XunBjVr7Q8wJeAgTQxAGfnca0rRtr/D\nw98sc6IjGo28z1EjGqvtpF97G++35d/L5Sc2Hao+09VkLPLiQZcWouxX/GkI\niTBcnCV2KjM3pJ3Rcr2mEe7I6hTs/DH5SugZw0Ymt1lfhmXn9dhzVwEnrgcv\nNgHfwbOalr4okS0gH7+mjzY1kxO1ewonu6bQVKhfJ7H489hy27mfQJNlMorL\ngFUReIXDDWg68tmOWfQudo1kDK6MduZbWXwx9bgyNVxvVsDG8H6sabW+oPVL\n17h5UxiC7uVlkrwSw/QOoniNn2EumD+PibnS8+dUfStTuIK8JPfhu3KqY43W\nM8EyP4tsHL/BWfrLmIkIM7ZXHZtNXTJwjvEJIceaj1AbUAnEX96cGJuVCvmX\niXbbGS5gXBs2B6xyS4zNN6EKbqkoJ4w/cAuBrljvCOuQ98RKv5Jx6s+IqLVE\ngrZpz3qPDD7/NIZsG+FL2LcI6VMJTTnGfViuIB8wScPQpdl9hg2/Atw+215W\nL9CUZoIO1yqhxikCKKV5o3xPspCthIwY2USsajMPRaP3B97ShJxEcwCJ5zxe\nt1dmKi5JE8lD+VYPPFjBpn+Ha5Ibtx5NmFf7RVwdASWMn+tUfsKWeFniNO+w\nkQ0B\r\n=bJSl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"05c24d17260083ae3944e39d62e401fe91e70161","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.3.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.3.0","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.7","@babel/cli":"^7.4.4","@babel/core":"^7.4.4","@babel/node":"^7.2.2","@babel/register":"^7.4.4","semantic-release":"^15.13.12","@babel/preset-env":"^7.4.4","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_6.0.0_1558482276068_0.7522024515967167","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"eslint-plugin-jsdoc","version":"6.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@6.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"d0134752bcc8491d33139b25785ef9cba93cfcfe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-6.0.1.tgz","fileCount":69,"integrity":"sha512-7ZLrSW5VDQGiYlvMO9YL4t+so7Rsoi6/PUwEem+nRCZ/HMN+1UgTYDTdtkY7/ImQ9vS8GT+jmtdrxai9+j1MeQ==","signatures":[{"sig":"MEQCIFrXYdZAgvcDjY4rHohoJSMVdRx+0C/0HCGip1/7t9rBAiBa9tyPdZMRz1ySm4pULwDvMtN8Z98E5ZQFW5pe+KOeQA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":346695,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5J3XCRA9TVsSAnZWagAA7ucP/RuQ27tDmBXwcnhT8Ffu\nxr53ff+nqce+9bGjs12LWhFyBWmtBnaVx++I5MFcVoFXRjqDOZ0T9TdJM/yw\nFvdBL9qi+5jj6t8PxQLIqNgTu7F5K+LgKr96wr80unJkbg9zEW+DWzm2s/wg\nN4W7bDBZK6vMja+sHOqWQ/r8xmQjkXDRc8mkZtaUkWfMaqindclYiV318/ld\nt32/7Co+uSahERpzyt8gZqVzwGuj7xrsULpp0JKi+150gxzKBy6B8HyGi6Yn\n8AHVZ6FB73WyeDAlfOCiCY4Qmvr6fmUUrRvl3O01oFdG5IEhUolzS/Kwm15D\njiGOj2lPpk9CXCw5Znsnujax2+sXqFptY7jfHn6x6YMhw+NTocLxrSwULE56\njjlCIt+yGtjonhm/xvBQzvo1hXXWYgdx6sWW0V48dmt4j8nDvfwKbK8Hl06X\n60DxIgsh5cmFgHo3GrFZzfrAxTmDpSA14505o9JF4wbCvI2LkGn0QXfvjcbw\nqe6T3gcOzw7pnkD4l8GPwEd4E12tNEBwr+TwoRBiMvXESxZnmFKfwxJNz5mB\nqQWz89+HfKDpE3jcTbgtThSLvxoMEb2iXBardMjDR4YYViL3n+SiZMQt3eSD\n1WM+7KPIHq41cnGs0JzUp+wCCne489egfu382ttARp52we9Lv+O5HNNniOZq\nJn2L\r\n=ZevQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"af32667694b58922999dde19663e66f712f198c9","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.3.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.3.0","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.7","@babel/cli":"^7.4.4","@babel/core":"^7.4.4","@babel/node":"^7.2.2","@babel/register":"^7.4.4","semantic-release":"^15.13.12","@babel/preset-env":"^7.4.4","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_6.0.1_1558486486148_0.6687394888389684","host":"s3://npm-registry-packages"}},"6.0.2":{"name":"eslint-plugin-jsdoc","version":"6.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@6.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"75c8fbd482968a2f9eeeffa4b70b63072fc351d6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-6.0.2.tgz","fileCount":69,"integrity":"sha512-cW1LMP8AWKdy6qPUXSgx1GfwNGQoroCSUeXkz7VBuavPsvKk4UvCY3pBUhcPRWvmc9MydTco+vqfj+/KBCysaQ==","signatures":[{"sig":"MEUCICAwzXyfd39OuSUjZVKEu2lNDQmA0uLP1xo6+r0BGxppAiEAzMutznIervhGMbd9UhTyWkx78OlAa+ksNMkYOt7Y+c8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":346881,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5UmVCRA9TVsSAnZWagAA62YP/00iJxzxsBD4JAQwz5cq\nxVreejVeeZC9HIcB25UC7YPyQ2MlYERu49fbwQULPWXDTsWvyXu5i/quiKAv\nsDiuLWAOKKDF7YXfFk3AY9Vk8XQ37iMIfGvEI803VpwoUiwd8ocrh9rCREc7\n3W04EUGvq6yGdr33rkQ3BlMBbNUDD2hHq12ow+gCsNvCxzJxN9OTmBA86dkf\nO3g/zBi7xLNLmzvcF+cEPkCVWruRtwmmWL5W/Ki/SWJT19EsZUXNuQhKwsZd\nNLmIYMdEDfvH9NLkysH2xktJ20GvI1WaOYZJTIh7N7WUbjLv8j3qZyhfNe83\ns0nSTQphRx7Wt8OSyRqbzvbTGCjJQ/DoN7IATpK64iq6DASyzTRqAjwfNMTT\nSUKn1RBAPkdxw1i5VICsA5XYS78Ai5uSjQLRSUvMSFYRkvK/mHgWCdXvflJa\nb96Axedm9g8efKsMplKbG2pRL5JXHhRYkRpTDEXAWTsMSyERcUBdNpe0PqXx\niH1R6CiKEe5mdCG6tmrMz0J7JlsFRpdIygoTdywW6SYXHz0PPdygqcU52MO0\n0cVqh5OICyZLsYw6+aTuNKoq2/SgxDHUTS6AZkC/4n18F6gVmHDoQHNEO8Wg\nD3o4oq0YsCwPwdk7sqJIMpGZrmXFg2nRNlHzNC6RhXEZorjrx6+7RKtEUI6u\ncmA6\r\n=3we1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"27be21fcc7e8feb9d4fc5dd14aaef199bd8d47d6","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.16.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.3.0","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.7","@babel/cli":"^7.4.4","@babel/core":"^7.4.4","@babel/node":"^7.2.2","@babel/register":"^7.4.4","semantic-release":"^15.13.12","@babel/preset-env":"^7.4.4","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_6.0.2_1558530452671_0.9025665851147466","host":"s3://npm-registry-packages"}},"6.0.3":{"name":"eslint-plugin-jsdoc","version":"6.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@6.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"b0fd65905dc2df5233699662515bda833e9432d4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-6.0.3.tgz","fileCount":69,"integrity":"sha512-J5aHmFxxWi/82xcmnJLjfcwiJR1uu13jK4AhRFY0KoK0ItcuPoKesvW6O4gjgdIn82Y5Bd4enWTkiop/wslDcw==","signatures":[{"sig":"MEYCIQCaQK5Skx3Zf+3eC1K0DiOBg40IamVVwD0EBcvZv+1uvAIhAISrusH2wL4CC1D3neWD4dveJcQFSxuZcLXNCi3ZZUCW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":350009,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5eJ9CRA9TVsSAnZWagAAfsQP/iBfsBR0aJqLAQudgVm0\n7I88b4cs8H65d7fLAf3a/mC6Nt89deoxTW11zoRKT0lDIIO26epT2ORBgKwz\np1VrjamY0c16b1fg9HgDsAochdZv2k6ppCDMM8RNUf3eOyE+Z/HxvPmpUMt8\nDL1tplGdb9EPTh+e5ush5QGzJ9bSUCe4Otcvy01PHK13JalO7WotcjuyJjUs\nk3GLKvzrDJ0qd/EoMBCtlHW4SA5w5cYNgL0zzjfXnbiBmBvBHgCAD+h63k87\ny89mTx6Vo59RIhJkAHzCt1YEs6Fi/ESoOHe03n9x4F4BHzvbFLSMeoX6a6PU\nZyG9RQ+3Yl6vNSmgY848j4CCS4TnVvAh4mBjtjkXRP9qYu3y9e9UrIADZDK3\nSrZGdm8SCVsV7/LqqoyDI4y/pVZsTmD8wRrWL0MIKSwShoMZ+lTksxo59evp\nJLDhSx8aW1MRBnySEe8oir9g/1nKZ1IQA5zF8l4UIcLKJUMiv78goUj1MlQo\nnm4XKxag1Vw7aQZBB42WZ498/5vq7sDimiYKkTJo1WXb9Xq0985na7FASs6P\nb1Tbhs0XU8ntMgMIWhpnLXjdsBSS1egY/7mGUL39DDVK5BINtydhkHZlpjFg\nr2OGlSynBd3PDXeQprKcU8vhHWeLXpVvvSKzvg5tT2lex5XXkHnDx3+QC+XN\nZ1+F\r\n=ffOe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"bd0684a13fa581955095b1fa3fb0e52b4a681571","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.16.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.3.0","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.7","@babel/cli":"^7.4.4","@babel/core":"^7.4.5","@babel/node":"^7.4.5","@babel/register":"^7.4.4","semantic-release":"^15.13.14","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_6.0.3_1558569596626_0.41789813547103716","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"eslint-plugin-jsdoc","version":"7.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@7.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"3be84633768480c5b22747d0f534575c7b98505c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-7.0.0.tgz","fileCount":69,"integrity":"sha512-Yu9nfWDG5zJWK1l65MYu7GjHPltPdhZz8m6oqD/h2jDxNgSltgqH5irR5kS38F3eTb4zhS7+FaHE8bz1ph7omQ==","signatures":[{"sig":"MEYCIQClJzyNuA9xvi1BOHKeF+pjg/zxXUvuBLBosrF9xhPe3QIhAOCH719B/lmRzsChESTJH9BDsJqqgeUDRlmdtn/5yThc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":358936,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc56kYCRA9TVsSAnZWagAAoGMP/A4XVdzooL2n7x6VcRq4\nIEtJB7Z+Kd4Mcx+1EdP0qXctTe1TZajJe3lZIDmvb+1CxNoasuM+yuqnyN6c\nKOkI0J0yZOmt+8k/6W5/LNabTmQSfWpiK7XAq7nxsfLZMxGBCZ7u2+a5FfDN\nUErxlZK6ZTkCuTvmF/JIyrQxJWTI62wn6ugOWKsfXQa/Cfot8GbUeNisYcUa\nEWq3PneZKzZqHggiNeZTF0FRptWWi8W84JxmJBtbsL8HLkeXEg8AjnqPfYxl\ne4nweIyGKPOHR3hGvQwzm6pGzZjfNseVDLLR6RUNyhsJkHE/X7H+7KJlROZL\neLURzKN1zWlWj8c9w+nySw0F8284IJy0Nn+G+icppn1Go98+J3BGmUcTarBi\noCVW6x2sX+Yf+lnlSv1AnyBvuSajPi52/UuZH8a9WHhwu6hy/xB4KARyw9sa\naOClPRtYba8R1OfO6SubzJY+g0pUHbDchZ6zTCntLY0ytg4vT0c+zYBs+io3\n0PUApKBTwaHWEXgbYROLHtM4I6bpIvP4Bu6GlBJ65NKEsrMDLNDxxzqP4Dgd\nuT25InkeFTcsI+kZ2VbXaKQSXrt3D2bDEgu0km4BU5jHMwjCg3Mro4XsT/Jc\nWXnH1t8mBrjax3d+qf5yqil8vTMpLglkJ1tsY5LZnu6dU6sOnSsY2dFKj+Rt\nPtLa\r\n=QkS6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"2605705204e05baba83a8fc4e7ff5c2a28a81feb","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.3.1","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.3.0","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.7","@babel/cli":"^7.4.4","@babel/core":"^7.4.5","@babel/node":"^7.4.5","@babel/register":"^7.4.4","semantic-release":"^15.13.14","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_7.0.0_1558685975324_0.5814275518136145","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"eslint-plugin-jsdoc","version":"7.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@7.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"47ddce8ddc1c0815a6b86638f61f52b79a112228","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-7.0.1.tgz","fileCount":69,"integrity":"sha512-6fvW2OAFvaKWogaOqaOwj+Coo9zItB2kTQxSfZfRXYWhuDUsXvs0IE+Wa1vEXkZtSIYCLCXAC3weqUyJLs7n9w==","signatures":[{"sig":"MEQCIB13GpSuPSBscDs6RSaW69zN7FIiakNR+KgBtWrhrLeZAiBw8zIdhzQFJHIAYBz1JaaxyRK32gkLlZ8YFth0a9QtTA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":359381,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc57SUCRA9TVsSAnZWagAALqwP/RdCZoL3LNb8RuUqwQLE\n9epp/RT/6Nmg3mI/jY1F+n7u+0xcsdnbtdAy3JUlJos01IRZo2L5bWWkx3nk\n8flqfyCZYypeIlnhKi106wAvCeXfz87VWHAG3LOH2LiG8a/08s8U7+XwiuhX\n5f4lNMGbJtIV3Ny8KiX0olCIbB46U5uCHBVR8ODhQpeBu8u+I2H6cvJNbC/k\naIYzFXdPhKnOSPCo9dVqLlzT914sxeSkurlOcC4La21mlcuYqXROSYiNgJ6l\nXUBUM4o/HiH1QZmetVheEkQ9utiVoogjw3GGr9eNpTqO09FZgnZtDXxwTyMF\n2+E0XuOfS5KR8hpd1oJxQmMXMqcUSR+qflEq64LfHbfvjYyWeaZNeX/Ube+b\nTOpHg1fCuJJZeWymDK3MuKnAlwN+EHwkhR34ceBMF7YZ0aPsiGg5laQ4uPg/\n1FZE4fPanAqUnrH7UR7FJO76mjGMAjZ0XSiDUrdliKt+WYKEjxUdsxQ+KhFN\nwK6asQEeyA7TgXaPT28sqO2AEQBApALnJcHWLr3J9YDaqe4T+n8tmDOfaqHi\nA4laR0bBR2WvgtHC0wlYgNsZuAP0+ea6+Ncl1l9BpCEP5kSOSADzVXPnhMOp\nTsOdyqfh+5axNrY954mllUPbHBNWAKIBCOi7++GRjgP2QnSJRdnv7224+28S\ndRR0\r\n=j7iG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"76962d563973cf8b7826b422122d898895a00649","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.3.1","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.3.0","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.7","@babel/cli":"^7.4.4","@babel/core":"^7.4.5","@babel/node":"^7.4.5","@babel/register":"^7.4.4","semantic-release":"^15.13.14","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_7.0.1_1558688915166_0.07042526236790714","host":"s3://npm-registry-packages"}},"7.0.2":{"name":"eslint-plugin-jsdoc","version":"7.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@7.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"d1c1bf04f65c121a50928a87658a7508a7cdd57f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-7.0.2.tgz","fileCount":69,"integrity":"sha512-iqPdJsBy88FLrr8ru69Ab+SKPrjNEQwK2vicGXrBbDA6aia8IRVz2J2LPCfwdyuSxrI91bd4Za1Z57TC5tUp2w==","signatures":[{"sig":"MEYCIQCctaIQYOzakIT1QHvN2eY7WXnt4b6lzubBEgZMGBkdvQIhALX36rp6VCjP/P/pOsMKf82LwJrDvpxm91k6m54W1nWM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":359684,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc57+QCRA9TVsSAnZWagAAsUsP/0aGk2mJBWmpbPwWRfvK\nPVXjWT1HGb4wD8jeEGE6XVec1gIGiCwEyZ4st+CfMOnFj1NpGw1ID6TabAAm\ne+4IHg/k2yiqDB85/6Wf6sXTFTYNAYSCIsGErcbWMXlYmuNDWBHDMEDRQE+b\nr0jQ8FYFFghlSTlscNo5mqwq+h1g3CPdz6ljDJIeyJCJEjiWpHQArPXq8Kvw\nzsoxZDzkPy2Bk35qDlI5U02UnL7eMrUv3m4Mb/h3G2TVMlZpcfmFKwUHN0b0\nJmxe72THHMbm27kpdXTLX2TpKNf5KLvhK7Y8CZZpWiNFmGVpRP+PZMh0kgTG\n67iyo8N+uuu7eY2Bk5btIVcN4dw1SX1JJTfTCCwqhbPR6C/kYiBryMmZ41UY\nK5tEnnwDhyhv+bChfZlXBTCmnW3SvdjbKiBOMNPVv/Z3Yy7OHfd8xvN3GuaY\nFnMq625mj50UIhh4NKZpJe6vyIRejO79/2Y9crI0a1kyZJHtYH2ncyhXqy/u\nU8XEW86HsottjjeGxqxPlu0IUzOB45RZ5GYRUJnJnKISt99YYanXPXiErx+n\n7iH2RCFHwxETuQN4TCaKrTWp2Cv7D9jY1Kc3Tze4iFYn3QB6HWXx74HB51ax\n5Gl6U3kH7UYz0NlgB7oTikD1Uuxjz/BwczJgRxao3dnYkKrCKLcz0b3cfLa7\nmn76\r\n=b3aC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"cda68393bb34b50de5f5621606fb864f7342d3e1","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.3.1","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.3.0","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.7","@babel/cli":"^7.4.4","@babel/core":"^7.4.5","@babel/node":"^7.4.5","@babel/register":"^7.4.4","semantic-release":"^15.13.14","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_7.0.2_1558691727586_0.3832176061464678","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"eslint-plugin-jsdoc","version":"7.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@7.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"e29f8d2ec89e71738226a26752a0835999d8b820","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-7.1.0.tgz","fileCount":69,"integrity":"sha512-uMVfw88MfiAiMlcS+bk7RMo8G31GiKyCkSYh6Pnfb2qOxtLjCERcpZ7Hft5YZC9JwLGRt2PVuYmfh2J2x9nTQg==","signatures":[{"sig":"MEUCIBUXmJMFGcQOGBPLAhBKPEeYN4/XlPVvBcQKx2ggpBoOAiEAvNW4smqkOh3k15UvtzryC2yxv82O2xryguzYJtjRGRU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":363537,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc7H8JCRA9TVsSAnZWagAA480P/RLZv4WaaZtwlvIMWCgZ\nJdFSYVfzFNvqVv6JikMNSrTqZlSd2h0egfHwyTy0gXgAGO+Z/afEoezqN7hR\npmR+XZCeYMr7S7J2enaOr1Ed6BI8NMVu/0GS9upx2INuKTgV+kXVYf9LE/OY\nQDlAAy6ge4Tbl4fVUlscX6MyrJ8cHGOc/An0NeGF/rfcPGtVO29IDPXQXdS+\nXUwwFLINNrp55JttwFRnJ9x83b7jFzqTGr0iZVXFnyXOUJvGGlyNTkmWH7w9\nQNSoaORr866tgSGSiNRMytvWZg1wtug0vlGM+hvU3PbEnyH6AiRPyBdDG0eg\nFYw3UhenkHq+nhdEvMlNpDtHIe0RzTzrtKPcARKC8YLWtl7K8/GI7dXjicMf\nzNF5WdyDgMkjcAp9PbAPrwGxWeZMq6UPlUR6n5hSGxkeDSTLx3ppeFbrp1V0\nVjcRezomK+Iq4v1OYSZGTymZmS84nq0Un7Ubu4Htmo+y9jcEeYSNuHdzVCgx\nQXI4/8KVRivLXMLs2Gs87oFbna1NWu7XQVzdBaLNVQEQtXlrevUBstcgkPWo\nmoaZVi9yyVymlWdpLdY9MlWCmrM0+TOZFB/J5Ro70qJo1pCUyMLFCkuqitlQ\nN/m8+UNOWyJtZJzNZjZxxCpl0AVD9r0dBKHfCOF55fGwbK9NFdmMHsQdkjvh\n6bzA\r\n=4ry9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"89885109d0b59f4607a754d155b98bfd53c6d5e1","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.3.1","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.3.0","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.7","@babel/cli":"^7.4.4","@babel/core":"^7.4.5","@babel/node":"^7.4.5","@babel/register":"^7.4.4","semantic-release":"^15.13.14","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_7.1.0_1559002888404_0.9066798047353608","host":"s3://npm-registry-packages"}},"7.2.0":{"name":"eslint-plugin-jsdoc","version":"7.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@7.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"a65927fc12e008dfe0ae8d66dff6bf1e637dcf7e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-7.2.0.tgz","fileCount":69,"integrity":"sha512-3Lap6GIRlFAEiGheWXYDkGE30MH+X6pu4E1ZRjBoBVjfV5EyrfUgQI9m8LtSI4v9RBFtmEf8A8MZOqCGnR6I8A==","signatures":[{"sig":"MEUCIBGl8pnGFruLp+oc+v4/w1rIzFGG/6rqTHhmRK0E1DCaAiEA+uCmTpHd8oYxuRaX0TisjgR6IXxxp9yX+fbHaJqCUpU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":365240,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc7k71CRA9TVsSAnZWagAArAkP/3411cZ5PMCfJT6SFs81\nz6YERpeH9kCSZoMbl09KG70ahtI329pibeI7I7ebEdXz8APQnfHYBQ22tBel\nTQ+22Hx3w0Vz3+D6ezeN6HL9rAohWbTYgYv9ndM5S1j23pahsx1rBLWvClIE\nO/jGr2ZTRZNKTW9DEDkNTeoI7miSYP3ScpdQ4Tv6Msy0GW0kHpEsA0IgXwrQ\nBln2EpTJJytUEx/bLTByuqbxo4PBt0hPdG0BIbkPdgkf80jnyyYg/vR4pBzS\nSpM4JXXJIT4eF3I9lPWrUrQkcTSjJXu1A7XQ1X1ENbCrVMM4DMXwGdoLFXqL\niecUDOqm9R/EznjkBwJVQ3tgtK28kB1Ryy9w08NrzVCQJa7kAWgubOlgevjL\nT8O3OsFDo+XBE2FbTRbHu8LcDb1pbnklJT3z/vvbzVmbxfEfdxVNz2SLF4G0\n7KCfxCrmzr8g0cWAh61boyZRM9spE+L82hkGo1k8nQyBOX99JhtcDqbIoNLA\nuwXFae2m//JjUNkKDAHTdaDBfecs126virNNE6oBkpA6K8qWup2IfA2iqLbV\nU4rIIgVXG190K3OP/rwrHo2ITALMHOFHq/jqYOeJiNrux/aqnSV4Wr1UTN7U\nrev95vb/FHitQ53K8X8/IKgHoKyPmTkNw4Honq25kvrwUcLpNt3ekYS/UHwd\nQ/t7\r\n=GAvW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"a05741abaa04541f790133a279d58d4ff9b23e13","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.16.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.3.0","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.7","@babel/cli":"^7.4.4","@babel/core":"^7.4.5","@babel/node":"^7.4.5","@babel/register":"^7.4.4","semantic-release":"^15.13.14","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_7.2.0_1559121651749_0.9730952294020405","host":"s3://npm-registry-packages"}},"7.2.1":{"name":"eslint-plugin-jsdoc","version":"7.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@7.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"61d23d9656295cfa33408f0fe2ff2a79b86c376a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-7.2.1.tgz","fileCount":69,"integrity":"sha512-jibpqEIcXuIi6MsrnyOCTX7uiQUnFH2CWOw+R4uD9Uevvt+SLqPhvW3/ggaOob8HafviWuwi4+qWQ24WwMaFcQ==","signatures":[{"sig":"MEQCIELWEnvBiC8h3WI9UisheoFvU+n8S+WFeUIxcii4T5g3AiATVO26XOzXP/OXeCW3Dp4rl2UiX6iXMtWU8v5kB35a1w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":366190,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc764pCRA9TVsSAnZWagAA61MQAJdlE3amasi6wouxkTwu\nHPm/4nHoQceVs94H5+Kke559R2hWyfI/p6nxOAAAqkZySGCETbvN22qcvu36\nTxPDWGE6SysQNfNElVmAj+Ai/0oOq2/CNje+lZ8xCT+9oG4eMyKHk1XWTO02\nnAWQfeIjsaQU5AYRlt8qSpSQ1grYeVsGYlIRJAhMNr6avV7zac5t3XibzY4X\n5/+s+7lGXHBN35IkMj7TVR/eknuIhFVOlhuLeCNA1/M/Dcb/3Tm0BZRTt2yn\nTMVaVnX2Nqx3hJxH4vIAoPz6iqudRIY8fh4o6bIgeEmTbQka1qaYs2zH5Q1z\n8FOmf55l87dkJVBuNvTy3Ra8Lkb9BXqmD6VobMjqFisx9cnlGiXRLpeI3SlF\n3uwmEoA3aZXABzaTSpvTGP0kMLgzr+knMIixHDr0Qi2vUSt6JhRs+phQd8OX\nJX+ZXZVSG24lOfIt3wRiKMr4IsgTBtMKsPXUG0dsQ7OIWbu1jgzq716Pqi46\nxMKeABXPs45tjug10o95GdncndjZVWq5Lk4f9K3gjfbHuWyTZEAUur6dhZ6P\nwiLYNT/zmoKUiUOxQHvVZxvh5moDewL8xzDWs4gUaiPxIaMmORw1RNJQwMMK\niNwDuq8RSQefPm+zIHqyO/zwufX78r8s13FKlKOnZFqoETp8s5Yo2i+2oFBd\nLuhi\r\n=s6+f\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"fa5a2956d7693c12d3868d45399d15d2a4424b82","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.3.1","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.3.0","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.7","@babel/cli":"^7.4.4","@babel/core":"^7.4.5","@babel/node":"^7.4.5","@babel/register":"^7.4.4","semantic-release":"^15.13.14","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_7.2.1_1559211560331_0.40807058021008635","host":"s3://npm-registry-packages"}},"7.2.2":{"name":"eslint-plugin-jsdoc","version":"7.2.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@7.2.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"ecc0757accb67be67aabd9a0575d295d54d0e361","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-7.2.2.tgz","fileCount":69,"integrity":"sha512-tZnZ3m17xYKYVTNPVE2p9Le/7lfmKJiYkefCpXPpNsmRyk8Thvqva++gjWNMjHDt1Ti8q+gG9cNSt48wFSL/6w==","signatures":[{"sig":"MEUCIQCvaKdQIWob5VQOCgdNSzd1mAWSXg8BKCHvL6eTuGE13AIgE9VDRkd/aC69Ta8JKKD2TfdJFHvWbnSuOI4QwJxPSgw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":367017,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc78HJCRA9TVsSAnZWagAAeUwP/jXLkFs2pz3d/tFZzpp2\nJYk0vE+Wk9ZOGY4u37N0HWJ+l3QlKJ9CP4KsqYCHd6JdqucwaZpecT2cjSdN\nkPbmZjLoIztHl4bsEZiy/mLW9ahOIarLq0sVd5bWgQUc5L5XM5Va1pJ7MVk5\nSCoXyXjHc5FK9yxylmvsv7O9btjiUQh9oOi4aThQvXiBKCH8ymTRMJVACMPN\nKUAWOh4q7sm+ox/o1EUA23RtzWQJHh2Y34ydZhwy/LuFkGaPb+puSLpjglHK\nhcyW/WbFGePQbhgEOesZO1UrcrypWMcNdXTJ/Acey9gB3vjaIFPvZCY4GleT\nzgEBceNiqhhUcK0/yXocOUeTEw4oxMLq8pDRpkGuXwfp9IWhqEMhT0MA/w9k\nIyxTYpE/PcV9SCmIVZNJfNxjBGFErK6Rs01zNE2Dfpux9UFTMsmLIgl/jWgz\nLG7SuRRu89fZ+qYfUqP+7iQcrq25gxEzJoMdifxc5EGmabT2q3uxQ+V1MEzK\nAUJmC2Htp9LBmmVDM5Q6GO4yI0jRp0frs0hUnVOAeK+ScHedGP/nvG4uBiyb\nuSnLK9quEIgAIcPJ7qKEyOWTRXFg3nvI0v5vQVt715u0ym3wx3ZLsNcISxKj\nrooksnKYEi/QyKWba3889DNtGzs0Nfew79D2Xm1JdSeW+7HQOH1XwZakrnux\nbWeC\r\n=bACc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"be9c24ec3f693b2b77ee7e01c72d314035d33a7e","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.3.1","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.3.0","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.7","@babel/cli":"^7.4.4","@babel/core":"^7.4.5","@babel/node":"^7.4.5","@babel/register":"^7.4.4","semantic-release":"^15.13.14","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_7.2.2_1559216584430_0.6491224633283093","host":"s3://npm-registry-packages"}},"7.2.3":{"name":"eslint-plugin-jsdoc","version":"7.2.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@7.2.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"04d21890cdadf33290f865b27f2f901f1321aa42","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-7.2.3.tgz","fileCount":69,"integrity":"sha512-233HUc5ftIlmswaNmck++gkoW2iubcDDbM4KCzTHaawJFODuTNriDmZyKm8+7GgNnnwlkrE0mmD4TCzrdMTnsA==","signatures":[{"sig":"MEUCIQDK+p4vvd9S5c6ppfTaNbM0kVuviKnkmn/Xwy8uxIGRxQIgCKeud999vGrNaL1rURX9yMZui4qRB9pjDbKhARXtPW4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":367297,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc78XzCRA9TVsSAnZWagAAMIgP/Rz3A3Dc+l2xLwLy0MdM\nfEpLZOMjDuAiOCnKeE0ZD/BgoGHhhA2Pq+xEIZ330OuKGNZ37m1dD9QEJatt\nlOlrupBG91BUYNn6j0sbER72HnVsH5KaVyPMkVGGE9IoUEn9dqrSHgqUUQIT\n7KX3wEVo3oUFXeuyOB/ub+5FEL5l5XCxzlf9Hjyv/iWUY/kGb63/mTtKIH7O\nqfmC7T0zJnCV+DYeA2BK7mmslgXvgCvVrtFkg2PA8OezTzW5nMWOJs4TNoai\nnMvuZQiNGNCgp6Ybc01gbUeJsa5NNHPD59xyl0yPoSDmYDSSE0mQyX+AbekP\nx8qG10z5gBCjKkcvkTv+HzSHT3ewj3NV7GvukBCBPrx+ejW0GQN5IAwde21m\nI7LrAcg6Vfpm1gqL6PXv45a/wBY0KzX4u493sBIzWI+aaACrllCHQn6m8ERK\nxFX2k4P6dFlMlsch54DRkEXsHnWNB0PB8fWejNvkiLbi6wEWA1KKSz9tEcp1\nN3j5vcAweJtKuJKhecqNTQ2CRuw6LcqFgIWTzOe/iRSIm3Re2iJ+GGTqLg8l\nzECgdOMbGH+1pdBu/ph8rPg5Iy1aPna70lvIbzq1Kxk0NbtnTwG8NF9qiBYx\nCIia4ix99tAB2GcShE+ta0yldMrJEq3UZwxsYASxk6XZVVACTouQqFEEFkQU\nXOYv\r\n=hVtX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"2cc7dd17e49da6cdb2d5382a346d4af87984e54c","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.16.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.3.0","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.7","@babel/cli":"^7.4.4","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.1","@babel/register":"^7.4.4","semantic-release":"^15.13.14","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_7.2.3_1559217650046_0.28636922741428417","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"eslint-plugin-jsdoc","version":"8.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"d02c206f8ffa12add810995366d1f92d1dd8321b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.0.0.tgz","fileCount":69,"integrity":"sha512-9y2HYDDS5xBVjnZZaiGYyAN48cpEPjZMgqMQq4a/PWY9B1pwyRdZZU199IwTVhzs9azc1rF4F6noXAi5o++6DQ==","signatures":[{"sig":"MEQCIFiq1MaQtOrqRtwgtso0kA5by/XV1VlLrG5LN9QCST2FAiAdIatl440qxE172LWEHAfsViQF2Dom72XTuwzYqB2jtA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":383490,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/1rmCRA9TVsSAnZWagAATOkQAISI7gyk0n6xJ/bvHq+H\nnguAXIqxaxHGLwwyFE6GONwkGzcoZjjgpuFdqKKGi4Xg6BHMk1PGOsASsQJm\nVYCW5hfAGVlr9Nl5TLeuZ1ZKEsSDJ0saJ323DnDuYMak7av4B2dYs6IliS+S\nmRVv9ncMt9NU1jHjeJkQdXcQcK6B4hd3nxPTAL0V8hxKMMmik5UFY15TBUbf\n3n0d3QgjbE3P6sic60+YU1OnlW17VuLsGKGbqSl3ARhMC1Kq+IG0t+B8xOpS\nPCb46voSZ9uW9KamRm1mwvopkPg+qgs8IPZw+8Z3sYBDwxF2yEDF1MHqRsN2\ni2cwdqN8demgwnnIvU2K0wtZWYyTxp+/KaFserE1TBUcZWzwUt9fQBUS6NwI\nL3Z3FqyqyKEiLWilqLUPWD4mOXz+OUzaiLoE+DoNlsQcNmPAO/0G6n/UUMDQ\nhALp+44lnG3Ehd9CasNoSGaCUM+RhNQLZ/Ap5GHYiAcYjygEY5vX5u89FhEO\nZ+1/ZkIM62R5ztS2ZbDijbZe23OUPdZQScGMgB1JFbePTQYwFNxdfRrckPXl\n/g3DvTvctVPjNKjkUpVT15qazeFtYz3OJnI55MypepCPqBGpc4K6AAccPrsi\n7IYegB96qOgmGl3hgUemHu8eIZ/wmhcAaCz+gfsPRez5WE3OFgI/SzpbLxKd\nSB9v\r\n=h9j3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"805017cb2ae1d6e4c1122ceceab6c83993729a31","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.16.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.0","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.7","@babel/cli":"^7.4.4","typescript":"^3.5.1","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.1","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.0.0_1560238821140_0.48869695314216277","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"eslint-plugin-jsdoc","version":"8.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"8598ef4705da465d60d77c629fb22517e0e3a491","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.0.1.tgz","fileCount":69,"integrity":"sha512-kzZHxDjTgNSdDpwULMqSBZr6wKaX+vvIrg/D+UppH8rd87bh+sPzs8PEJNjsQ94tx2TSQebc3P2cXcmkIVsyeA==","signatures":[{"sig":"MEYCIQDmr9cghCV0fsDfu6eQoX29a53EromncUmiC7JPzADVsgIhAIyZwv8supdyUKSmbQtyeX1B+qsFLuV6W9oXOhQ0CQ/X","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":385406,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/4smCRA9TVsSAnZWagAAomwP/i2kj1tlogM3XTGldk6C\nD6PKZygiJDNSmG78JgLDhymPVHgk4w8gi1Rc/Q31TPgKkOk2QNGkcZau7vAl\nIEvlqtYID7Bz2BpYa31G40N51XXMAmJFDEXq01kJTrmtoV4S4ok88dYuKrbm\nsfsrDrEZCdpkGtaAyH7s3oTxYYeUMUjIDsL1KYC2XnN/8s7EivYFKNazLZ0U\nrcE72ASt/bYb1fO0qxF2x9AwbRvxD/Cwy6IDUaCfW/V+foL83Nt6l/W9pjVb\nkR7859qivUgNb4w9U8htvUCvVzwXUeqtU6DxOTbPFRp7uOJGJnFuI6lm/oho\n1ViQIrGQE8U3E9O0cagIvY6+V2/tWHX5FLu/lwH2KDET2ApTeYPGhq5kcpO4\nJUgMppbTTTjQETrShZ+iQOeQs78jO2iQaRUpuINU4KXe6EkkngITgDUMFaXM\nKKnGFddT+zorKSg7hspuPj7q+27Bn7ECcSOc4TBuA7juSm0zSdMrUhYQKed2\nQVqdr6f8RwES2dECMc2guKHgYphWQ8a0/qPax8USl3MtxA2p2bTaXcTOtKfe\n4qoQJDHxdBSnSrD3xFLqULCnFKbi0pRmutGNKF+6krfXWi0FyRazQ4KK49v0\ntw06+WRMp55+q/ftdSPmVrg6W57LmM6eQE49GUQcLZpVC6SOaLUL3SOCzFPD\nVb0F\r\n=x7rb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"a9490947bb85960fbe41dae968a5875ff2085c0d","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.4.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.0","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.8","@babel/cli":"^7.4.4","typescript":"^3.5.1","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.1","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.0.1_1560251173759_0.5812129566182729","host":"s3://npm-registry-packages"}},"8.0.2":{"name":"eslint-plugin-jsdoc","version":"8.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"72addcf51dd5d96a959ea9ea38b2b515e755e019","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.0.2.tgz","fileCount":69,"integrity":"sha512-3jAlV+RZWik4S2EA35LOsej09XyrethwOWpsqm25yTYq85jr1rWMvZgvbNPlQmkcVtwYcVVY+QqfYYgbvDsbBQ==","signatures":[{"sig":"MEQCIB9OrnfuADQpVpnc97Mgf19WoSsZDFCwTvX3JCm4o35YAiBMV9XlQzJcE1pLd6TrDjw6S8Zb5jT/UHNHusIWLbJtmw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":381107,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdBhjmCRA9TVsSAnZWagAA5bIP/3B+Q6856iLXNFiz++En\ncyrexXx/2sJFDnYCjdxJyGYVxzFMmAft5vBAfiHCJxoVN9vqlH5WqjTGnpom\nU2R2BWxB+lG0aNzahEnZxIavR3FT8kWF5li3U8oAqVDo4bTYW4tun2YNkria\nBFvPKuk45Xi9gQv2IDMRvsg/FsTkHlzSEHWXiY9HjD6PTn+i/LzWo1naEvfI\nFOBvopKEiikiby1ltxR/hXiAYfIq4vfpQRiidrQCJ1TPMaJai5ow7//tgCF/\nSRGbmM3ay/k02Rc+RwhW7yZ3DCSBB1eEVvCdTP1tit+QHFaBXdbzYhccFyJ+\nPpgW4UGOdkZC9gv9ykiXMswBdIdH5yfbLES7B1TJ9XeeuTADTsPQG9fTo0O7\ns8bw7Zlv/+QDaEXNA7onscTOkCRKnU8Oigi6EFbFim8k3Z1Xt2z4uccDRIEB\nhn+9ocYZkjnUX+0ZAb5r1Q3n0fZA42Q5Q4psw6dEYIn/Bdz5SMr2fb1r1CyA\n6/WTfFwuayN2lVoWW5WSAHocUgXMQHzBhEtEjNwKuUJAb2z82sox1M+/8++/\nqIwUFNR9yHxsjJKdruqoxw6NiqeKl9Q9LoBsBVi8bpgjED0UEovG8yGD/pen\neHukE19UA6XbXpM5uIsOl6qNK/rCdXPx8OTIRhDgB0CF1Vr5x0gcCjHHcHQj\nHuq0\r\n=Q8ip\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"5f296a063f9b8d84fd33a27a6f84c34b855c1c45","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.4.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.1","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.8","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.1","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.0.2_1560680677173_0.3755573112603532","host":"s3://npm-registry-packages"}},"8.1.0":{"name":"eslint-plugin-jsdoc","version":"8.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"c0d5911b7b86d4185e4a9577446a3959376f48e9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.1.0.tgz","fileCount":69,"integrity":"sha512-YVHgZz1zc7M0jDyNRD//ehkK3cMIRRqH0xv78V/7ZpIfuLvIKgk57fA5d8WN6dVZ+pDU4zNgvWftRV6Dbh84Cg==","signatures":[{"sig":"MEQCIHTqa1/7T4J6e7xQrBukelNcr75MoEshfpG/j0lsO2XFAiAKmSBlankX3GMRTEckkyxD0FQZxPVuTDe+aer/6uPv9A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":383834,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdBh4cCRA9TVsSAnZWagAAvSwP/RHhU3XriDhFXYPkJ+f7\ntCeXPogEwC8AGECJ50rGOafK4AQzbS4UTtqeXyf7m24tysQ3+Q7n6+Rbjj1w\nwZj9+NR2iOm6TbPaW6AI3SYFJcC2J2UcrekGW4YB1MPrBD4sQpQLqgxb7ieZ\na7ndRGSb+9lmmHZLQa38WZ/dUkDX5ow+h0q+JVvAtexawdDVZ5yeqtzWjk97\nFwT5VhwBZMaQN3XOEtjybx6kRifedD4+ypKG2cl02CWHzetQMCEkKhQHMWvy\nMsBluBoC1HGCwvEQVOrrpaksZKFdIoj3ZbTU0GtxGwPwrI70a/b95frkSlIh\nL8Ob0QthpQP5NqHt7+WBhc5yTt4arcEocNoBkJrGySKTxuKdSRBepJosRp7G\nm/y16dl9iRGaPKhZNKVP5mXslNiuQQkcFKfbamYnAQvR5Gyo0M2sQ774Hm+0\nC66wSR+eyW1DTIHV1op/ANEnORuIFd9YeEkqTU9Tt3sBU/QzIvKTjZqRmvW5\ns0RytiQOu/L1LnOaW49HleHx2h+zMBLI1uRgwtZGBegjLxi+LAmBIGkCJJyo\nuvlnfXp8dIFNcdtLMviNqs0bBVcxidA8FslOITAn918KqPWQWq50njY/JkFG\nnB7Y6tzl53mfZR+J0hPT52H0w5P5oNPsX1utMnXiIjrHL/zkeB+LJHBd7lb2\nz60A\r\n=TTTk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"0b86ed669f3fa7418085198a3df6a2082b5f6f15","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.16.0","dependencies":{"lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.1","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.8","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.1","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.1.0_1560682011372_0.663119289455629","host":"s3://npm-registry-packages"}},"8.2.0":{"name":"eslint-plugin-jsdoc","version":"8.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"43c9d9494539b78a44900d4d172789b96c4258f7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.2.0.tgz","fileCount":71,"integrity":"sha512-3f9oTnWN9CHWIUgk6P7WbhYBpJ8JFbMSVc4Cw1YsQIDBwwl7qiWhb0wx6GegxzO3xhve8fZmnL0FlYSH6BcGRg==","signatures":[{"sig":"MEUCIQCuEal26yrHmvIkvwsD2jtvwJvfeSL2OtVHpiEEQzllcwIgJvnWgmNeIRuYoj8OBWgcmupe4jN74ZfjDCW5VGjp+jE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":438267,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCfPbCRA9TVsSAnZWagAABAsP/1fhepbebvTIkBPPW7+V\n2FbsWGLC7YGWUY/BHUo9a6d0oW+hqWZw1cURrKzD+wfO6ucFq46b4/WfGTmc\nqrCe1rXRrxoKGgMJzfQmAia4GEMEOy9tuTAFwjgZe37Wy96dz2XvlhZdWNwm\nh3USqv6bueeE59NE9kTbczGBMk7iVJo0Hgg4JJqiXZwzbE6S/vW+JvwYy3Mg\n2VYRa4eblZ7FigwgU5slCmI9q4S8ukZJqRzxgZFO61mVL5Pvze+yYhGSIJUZ\nIJdlyEoo3sZWi4xliLftSzJz0dY2VxleO6xgAKHgFXpOK9QCBe7VHx2q+KkF\nI/QqpL9cDSvhGR8CpApjIBunXlBTdZTBqx+BG1pOJc4RGgBpNrYGm1wxEpPo\ninLJumknOHAgys6yhddwHt6d2YEcAMXC0lVTH89kxgor8/6HjhuhmI5yD4Pl\nl3GN/5aaLyp4Zayrsqq1ngcI2p9J6KugnUvQpAaDAffLlwSdBu/AHbhE9Mmi\n8EaiTW1Xukr3/Lh3YEzyiGwvqbsUrtynhjUVMyAEYdOvPsNPPqzqYb0Pkf5B\n/igHfNDJ5dLX9JrX7MmzMy3ZTJ7XHQPEtJeCXXDD9jPhLe4oW8Yflo+plYSD\nf4ZyLSjKYV+O9mdHKHO7D99dwVH9LWv84sPFh4Y3v/nfAt5HjThXj2RwiN6c\n2iGq\r\n=zSxV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"dbc1c34404c340d2610f769a2cca5a9c651b9024","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.1","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.8","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.2.0_1560933337918_0.253383880705891","host":"s3://npm-registry-packages"}},"8.3.0":{"name":"eslint-plugin-jsdoc","version":"8.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"8dff25994e01e5ccea78c9e385b48a12beba1bb7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.3.0.tgz","fileCount":71,"integrity":"sha512-d7eMMhUqjbmF88AqmlV1Z/swcbIRAhJqyN+fjCt0IxeaLIObUtuOtHvGcC0RszisTdAZ2JGVI6MeGJJ6OisYZg==","signatures":[{"sig":"MEQCIFx+XQ89+FXdJZXJTOaNNcczxeWnVR/nL4pwgbMovjPxAiAVblJ+d6EmBKoryJi2FAkU/z+xES8RmwqFWWiAy9itEQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":438267,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCfiyCRA9TVsSAnZWagAAuPcP/3Sgwj42r8P680x7I1wQ\nkw47+qCtlDuPAOgSW2gPX+jInWQLM8rbe2om+mHAXrFHOmq8bSeayLHztu+u\nQY0qN95MRPe7XSqJD2zlQJMcXIn5XkxW1DMshxb0fF1APgS5ILDWcIMBZ0yy\nmZddvr6/zUNbbM4ZaU3UU5iUK7sBatSrNwJLF2hxzrFHxkBfK9S1JW4DF/AM\nKmUIa5howzwxyaOs19xOjgeALObqgUVGazuvj8sRS5vo6iFBJm3JwAqYSog5\nj78OmSgBYWIkgEFcUOPs1lAV6C6/Rjtfbm+m77FSix8H+BP9mc21Ty/j41/R\n5G8k36VCclQPBGKo/moL2ov0SgAEgpFPJeTmKsyNA5e7OPomRH9m9vCSDVs+\nglSIaAABaeYfJeLXMAKitFt5ncs0hrYlAcjj5QJLE9Odaefc8Ts8XbZyoCf9\n7qUigO9zrdOizreDY2olZ2FquICTN2IjK8iuqJHRQCmjRdPkZ7DkwalEJPqu\nkpdHNUbnQ6Hsv0BF0FPq9YphCJDS2h1w88hvhHKJZ5vXk0BCjBT6htki7g2n\nZ+9W1yaJxw8ztNM/VVer9hcus7M7kpa+Ezz3eKMYG/cUUQ/79nQtqZZjsI4w\nFLPYJc2KpFP8r9XOqyTaVctnloJE4CM8rtn9Qg8hN5QuUxcBMEjQfATt7N1o\nMLZ8\r\n=iv22\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"ed08e7431e9e283a1da53718b71535069464f462","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.4","jsdoctypeparser":"4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.1","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.8","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.3.0_1560934577808_0.21585306526753545","host":"s3://npm-registry-packages"}},"8.3.1":{"name":"eslint-plugin-jsdoc","version":"8.3.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.3.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"746be3efc80f281088eaccba1dc508df5ef63c79","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.3.1.tgz","fileCount":71,"integrity":"sha512-1cIWKGRIAO3kMR5NoEcbK5RylkvTGVHtdnne3TLuMD22rc6rrbTtyN4wf8/dwn0b2ulmTMLTUkeQmbSr2+L/yw==","signatures":[{"sig":"MEUCIQCbAy962kooU6UbFrXvsztoOuAIbU6bOI03Zw6ivWH9TAIgNEsBfthy7JWZzlvpxu2wY+4zbjKuLHOyzX9NLYF62y8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":438500,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDEd7CRA9TVsSAnZWagAAw9IP/3wbX7xGnqyMfp5TOHiY\nraUxJ8SJZrfMBxRoW+wil5Ochjo5vLN+FKdjjpDrv+yREspbioFR9Mv3sBQu\n/thBj7W3gcdSbYMZS59/4VU5eRIcOfr8snlXvMpkOWu5nD+AV4lPNg/KHVcZ\nTo37OdFnsXBbgldTOpyakhYZufIz7KvhJu1N8zdA3txQSjgh2fBnG/n4RRPu\n+rCfbrrfNX5xSRjYFhbfl4tvP627j4KE9FnbZCy5XAJmruOu+REsyDtPoByB\nM+2fxWCGsZLrm8DbSyLw3WVHoqAqiAHSuq46RysYLAhIlBvegVzb0QzfuqhP\nUKZJPuvPIeTrafX4sGX6v9o7D7VtKvlapb7iyj6zj1KzznseNHATPmfa7Z2n\nSrpNcpo8dtAndnewMZllKZxDuThE4QJjwAXZUJLfWV6YxLSJGipL8T75NFWF\nJJ3URPFOhloP5FEXEV6H/6MX4bRk7ZH4wZU8hKUdlaAtIIZ+/Fx8caN9tj3r\n56747+BAe/VYVkMVS2SiPjvvD161iFxr/Ars2BgTL2+fjj7cmu8QzU5WA8t3\nMaKeUAQRAUHO6He/wGRhNQhRcAoXBeGGj14m8wNigd8mT3u3oQs2Z+TF84dZ\nnp+FT2ho8sxH1TpTf9l7RWr6ll1oFqzwRgYGxPSqq1je35ZPwJVzuQGYSUj2\nBicK\r\n=UddK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"8254e709c8ea483f1f4b7b174518192364e6c2ad","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.1","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","core-js":"^3.1.4","gitdown":"^2.5.8","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.3.1_1561085818374_0.6382167662615776","host":"s3://npm-registry-packages"}},"8.3.2":{"name":"eslint-plugin-jsdoc","version":"8.3.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.3.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"df2d1cb488c3ef7328a42b8f5a8437585dc69a68","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.3.2.tgz","fileCount":71,"integrity":"sha512-0SuZl67RVBdgP0zt/oZVHoQ77VPn6b0JbFi3MljZNLOFp2Uk3O9bopWyYfQglx5/iH5QhIokz5FfS6/V417fFQ==","signatures":[{"sig":"MEQCIE/c76bclgxViFZAKTjpMA0+vUcc/JBgvhE2rBT63VdbAiAoTy8CNejeTKRDHjolvzK9xuP9TvWbZIK9fAtrec58qQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":438486,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDFDZCRA9TVsSAnZWagAAjFcQAJDzXa0S7PlnrjgJRcRR\n//bBluS8lq8CyUi/9x52mylpf0qgsHg+lwcGMFOEbqekJ4S+SlnW8JOFFLYW\n+c1MSlyAgiJaOFuh5rwTJhblEHdxCknJoMHB5p+SHI8GsgFoSJt5IajNdfG6\nnuRpKdIKCk+AhghkXMmtosR306ZyHzuznULDkfHeG//t/ZljhzL62VQtuxSC\nsOtJaKzBSDyZNNyYH2ve0tozGjAXnn/zv+y98hExf+ONZds/hii4zDLXFfur\n7TfiwkfyUslmH+aSi/EiCY/Z8tVh28PP/89I47kHcMDTXPhW2yiljoXYKgfq\nSyvjd4UGLVjRWC1M7zoOVkUyN3U0fz45FKgorvhT+ovKStNhNWYKXD8BwZqj\nBlDVc3PCNudunpE579Mmz0gSqY72kXW5hGw8YgNggibNamhflKyHGdqfOeRI\npf4UvFSS1NWD28J6nA/eb0LdfESg3oEfAZEiWlqlhBXa0Mrh50TN2l28X/5S\nNxt8PLKd8Juws2kC8psrCqEEVeEWwL12GriN96WdkpWVdh9rYE2yHbHp//2L\n13jkne5f5zMWnUQ3tHLYqUfqOGUpGw0V4lah+DnZWJHuErRD1AyWKqP01+48\noGpYWkiSVems3OCby9TF0riDh5UaMnqJsPPP0xWbUpCMOoBoMJZXn0OmNad8\nMfFq\r\n=xU/M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"142ac178ce84632d5a8e0f6ee1e03e10d7c14d41","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.1","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.8","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.3.2_1561088216381_0.8797856839864735","host":"s3://npm-registry-packages"}},"8.4.0":{"name":"eslint-plugin-jsdoc","version":"8.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"2fd1254dceb8f672728d9d1f7546230c8e838597","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.4.0.tgz","fileCount":71,"integrity":"sha512-LAwW4YJYhsN3+kgPw9b5JXv1qtSb/TmDY6jeX7PWAtfsra/QRA8VZtLqr90La+H8sXDYWHOIKTiNUPRGWtkyhg==","signatures":[{"sig":"MEQCIFu7bww+HpyLQOVl7+CF49ANALq2Xz9H4oCW5XcIgPiCAiA809bRurJqGY0BItA1Yhl/EjJIxC2UwFRk69iLs6u0HQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":442290,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDI5ZCRA9TVsSAnZWagAAnrkP/ixFHTeQdBW20HJxeeMW\nYFsKqRNoljmgca/umnaNT0B4/lmfWJzy56fqk4ecqIeO58AGEYa9FKeGH86a\nr3Kl4WAlwt0ZFN625dE4aD8HNUXHvy2paVwsv0aBgvwnLfu/A376FPaPn7Pd\n3tOr7uzV+ARvRTBnjRqkq6TqARw4q8ztNCtnNLxayudmMTMWTcWUwoWU6S5P\ng//Oi4omf/KdjvDYBdyM8SgUnaplX//7XgiwWs/VjErVHQM7gzqIAq/dZhKz\n9JDRi5OHsXn5rpA+jfXwHnbR2KKDS/Ydil9DniJLwG9rofat7nRkJJwvpmC4\niw+jvLwjVYkwYuFApjT/FJfsJ8HCbYhZUj56MUwE+Ld5D6F29dpXEXTe+jCe\n0kgZ3wT+6U+SaeUbRBLYQENWa+IIV9c3mhMnQy82DX5fgumrtNU731F5vXFe\nzzfEddwxoHpPBerIhHfh4No556mShUcE2V16qBqJ+pWF3cwt4vzJGK+YtIvb\njEWqcq5JplaS3qEOfYJp6bJ+7sVAl3bvWPVIaau/qbQ1cdkYnBVXmIA1yMXr\ni49z0Pb/70wHF+9QkwwxAFxHX8HkEKosG+PbSqAmjIdUbl/JCkBw4EghNYwy\nNR8Lj6IME5x3vgvHZL3Ei6EUbap6xnNR4FsLjV9jUYkQGmAQS5jH/mNt8isF\nkG5S\r\n=Vkfg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"c18e6d307ad5e8aa8674722ab13a349b5ae70eaa","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.1","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.8","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.4.0_1561103960427_0.721838470151025","host":"s3://npm-registry-packages"}},"8.4.1":{"name":"eslint-plugin-jsdoc","version":"8.4.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.4.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"837e9564be24fc41c4b32da0d95845d7678863b2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.4.1.tgz","fileCount":71,"integrity":"sha512-sUzChOltlLZUmLTsvRS6E2EPMY4+A+6MLBSjsegPywBRNh82dWzfpFMD5ildv89tzPZTjZvXWVi0fJ89dBzVCw==","signatures":[{"sig":"MEQCIHmSXR6sYtAmONcoIeFKDL7E5hiyiK3QBfqsjvUTkGudAiBdRdDScKFTrVWFM7W+/mf5hEmqYdYDTbb+z7NA2fHREA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":444330,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDN+qCRA9TVsSAnZWagAA1QsQAKEk1M2gt5pjO9d8Ct+F\nu53mMacuvSBeSGCbvwQoGKKt2XE9kw1H/Akz/40YnbfFq1bWGfBXffn2PtCu\nTpxzWO8vXZDP3mXILJehiJUt8mHQXO22Hr+Ibcz8Wl16uUKoHx7Kub6XJeoO\nv1UUnU/ZX+jG9ukxnddLGQljnhS0NVcKaZqw9c6xUhRrpP0p6BurGCLZARE/\noJO6nMO204T0eaAcI+5eR4fNal3SW3i1hvik8dNzRCHVHLZrBBVldC2M6b1L\nfs128qdGFmvnot69sOOHh2eToiDASTpLdB5UM5DRpCboGOIFHoK2v9cc6A3a\nyhTwdRiEElokDfDXpXnV5oqUQQRqT//uhFqvOh1gb2KfIqgEncyP+/suGQm4\nv3o6ltrO534c0saTUJxaalqwrcirYYZ5/4yV9syk8gif7KqlwOBcA7tDT0/l\nFcYBBJpnYZNRJFIQm20cXJf1t2GfyUxTfxoLDbAF76OB49aItsUDVbwN021E\nH72HKricoua/dhd9C4s2b5LVhNqXMviE/2gUDynxncB+z9xgcPG3Hre8wjRa\ngP4UsIn2y73XGms9j7AyYiBqx4oANheTliqjIY8D2TSQujQnOUSgdG4r909C\ntMX68OhZgKGpt2SWRqJqfT1zrRtAY54fsPMmeeD1MuMuo/EtlX4NK+EHHypS\ny6mA\r\n=xPHp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"5129f6745741704bfaa785bf1873dedbc2afba34","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 5000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 5000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.1","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.8","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.4.1_1561124776844_0.40420631390019124","host":"s3://npm-registry-packages"}},"8.4.2":{"name":"eslint-plugin-jsdoc","version":"8.4.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.4.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"5b4f72e79cbac9b505bb6ceb682d6ca289a221a5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.4.2.tgz","fileCount":71,"integrity":"sha512-x1UONtWuE58kR+9249A3a3tWOSmH5TqmwHSTcLs95AGXunECciDrBrq8cXJRUV630UBow9KGpVhl0p5dgIGNwQ==","signatures":[{"sig":"MEUCIHa3JoR0HL7TYDi+Xn7WfKgjCs3O7/9pHD0GH+5uVCc4AiEA3w5zTvCQx3KX+rLV+LKmHu6as6nulGINZmvKXSK3WVY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":446007,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDQFYCRA9TVsSAnZWagAAErYP/Aig0tSQY7rjqwkD88jM\n4b0qpM0SuX4Kv/hezWPJm5FUYPXW1iTIYThaKM30rrAbhYOWPtDWCGJ3zdUU\nw8Mijcm8RirmopncsD/vS7Z1sr+waSAH43QFNyvVS1q94rhGjfNgxu7XUhZn\nfCZB7NYDHtI8FnIe3vDI167+lBS+bZasRxznpIo8rafG6paUVwGMGLQgMk1c\nge8ONwMLNKiBgfUDxzz538rGgOPTiz+R1TCSDiun2xn3XoW8ZuCtEk7IgLVy\nCzZA+ptbYoBLnyeEYTPSTnyN8eAuLOgK1ZAaMmbLp16hreKzlKFxWjNOFPdD\njA34DXoUbJuscAnxUWtSubGEDOVsXw3RzCtre02pVE2SbDiIZCm12cmb6fXa\nion/XHuDEcDrYN9UQiQjx/MGujOzV545vrfvUpzDAbE4mkyOReUp9F9ylMPP\np4SgfPgZPvqueW3jsn4FXrLj8/O8tKsMiPNWZtwmHVaLdZwvb3BqLv36nvKE\n5uP12wd6qLstaQraKiG83VIm7kAu767HJ+adn1CWlDcNyuylXvm/DM7E1M3p\n7ztoXASFzYDnZkV3EAyiPDqql1mLfRpbgklWdBa1xkF0xrq9sA1ISBm0dnMl\ns/zkXJCpIDs5qcS5392I4kHNk2j5qmBN3Ul7ys1N+QsrYDT22nuhbM95g4sm\nHsaa\r\n=JeCL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"da25e1ba326d08fad0918a38a8994774ff5e5372","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 5000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 5000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.1","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.8","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.4.2_1561133398331_0.1171569182385328","host":"s3://npm-registry-packages"}},"8.4.3":{"name":"eslint-plugin-jsdoc","version":"8.4.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.4.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"include":["src/"],"require":["@babel/register"],"sourceMap":false,"instrument":false},"dist":{"shasum":"dc9e9f0580686be877baf731da37d7a78abcda5a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.4.3.tgz","fileCount":71,"integrity":"sha512-5vz6pVP+ZqiRmwfh/sWQxcRSj/uWsB8fYfgwtWhr/48wcSN3Lo6btWbMfP5I7GFc6D5TzdyhvMELcth7WPQ3hg==","signatures":[{"sig":"MEUCIEV4AJXzK1M4MxwxDBc8i8PTLhJtx18Z90ILOuYoymenAiEA+HIPUz8ffrOfOG60DNxxFyOGZmkKD2/5zqwVh8HuoVs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":446390,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDWriCRA9TVsSAnZWagAA0ykP/iHUHLloLRC+l5xBSzhk\nTTVJleXBCU5kSQP/JV9GXX9CYwcGnLo4kN2QtrnDNHk9cpglWtnYLpem1DDd\nFUG+q2RA4rs4msXgi4rRe8nlH7CHzyT+eLhFY7/Q45bPK2xbaYu8qNBuP+Rw\n/r3AzjVPcEyEYrKC+IszI4lUWWHpuzrnZNEthDpPiPZhsmPg09+bImkAzbWt\nIv26aj4fx/ZcmKJQEU+FJEq8mvgmcidQmAE947QPEIWMxxG0wOS+Cch4bPic\nSdo5vZugFkTVMd+4dEnpB/Z1oW/Eg5Qi5Ty1LujDb0nvbmX4NGaMe2v2Jbnx\n+h2IEU2maTVLdRZuIyTIqCnoNT0YyMUD5N1MIJ3MUvdYvDOYyWAYLGdKLaAu\n/DH348zEK6s9BdBTDMgtrkam2kv8NZZAiygaObr956FCQheV64lqZwCd+2gi\n0sYmnibE5oWxjgwSaaeO+j8p6QPGJoF9op0J/09Kowp3GJ7JonG/Cp7DTLs1\nfZ29CM+gtpWp0HuC55nq7Vb+lscut2+fjeFSTlMuIXgIcRnzKi4rIcHI+/0W\nK9gmJ3RbBr4Qro8xIaAEvZ1DL2uhv9EgR+fkNTPJeRjLw8sn9244awZtPfso\n3fTXcr9VJgY6SkXIgNh5asB65Psh0fQFa/zfZj1zDUxo0lezBAaAVaYn4IfE\nBEbs\r\n=F+Gv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"5b7da118d83350cdf94312f8b0cdb027c2a59312","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 5000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 5000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.1","mocha":"^6.1.4","eslint":"^5.14.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.8","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":">=5.16.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.4.3_1561160417063_0.9055848949992171","host":"s3://npm-registry-packages"}},"8.4.4":{"name":"eslint-plugin-jsdoc","version":"8.4.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.4.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":95,"include":["src/"],"require":["@babel/register"],"branches":95,"functions":100,"sourceMap":false,"instrument":false,"statements":95,"check-coverage":true},"dist":{"shasum":"0d5b861d0b6d06d7e4053ff2fc593723c648b400","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.4.4.tgz","fileCount":71,"integrity":"sha512-qLMk8ojCaS1Ji9VZicRKW7UAVjUh7oG2AszyNfUuXnyLXIi2O0HTPKa+V8XzJ46MlLoMFOwj8LV3KEX379rQ8g==","signatures":[{"sig":"MEUCIBHIy6j2XLpSEk+zIwKcu6fuL15TQqq3Hy6WMZpn6RzCAiEAtQtJGbs+8eSAE2iHN5dTXJpV3PY1EflhBVrp3pWNTfE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":450468,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDiyACRA9TVsSAnZWagAADb8P/2fVjH90Kyav1vLmEbd7\nOqsVwlOD1mJJTYis1GPizRA97aI8susOoaEY5mcVHZVf71pgLi14LY0JYEQ+\nv+Qk7vJTYok5hSrezpDcq+sn/6KTzd1TTZPA/TTN9TD6OLJhUmNxv6GPIEcf\nZU6P+wfYDY3e/xVM/BmgRz9wzYqifvgTXQ6V715UJWuPaXpjboER6/tFLbKy\nrvRtEMYsrwgX0RIR3jhszHKt6DYEbh/dXNV6ZZn2RYY2pi0PjIilzTEbejjs\nt0olnaZxRSKT6H/m7HvBmdS/urogvw67FPim/FTa8Krlyl7TCxIhEZptfa5E\nv0wfsqk7Gvqbj5Ow5oXiN0p9K0KbhyP33+O+W8crZvuSrnavLRBOtAOG6zr9\nq325z0hKZGLGRP80AwRRUZ9yGor44gfdE9Ab0M6Sh0yMjas/4vGPI56bvR8c\nc3K8pSp4CiMocUHrfO1P5t1+7G9Ym00E7rrToOLd1p7GI56pV5t/XQEne/bW\nMjwio+aTE/X5t7MhRXrDgaqod4FA7RFrtb9GYrmwPlG9R00w0uGMizIYHfF9\nO62UesHG9up5yCQzKVoyF+gdqyGbIgTJcvJg2KBtFm0KrcSDsPHI//82O4+8\n4pmtRwIYcc15wLBlpdV09A6CA76ZFViqSYvJwn92MlUcI0fuFcxpcgET32sB\n93Pm\r\n=20wN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"7dc6b10292bb3ce0c4ac72c74f22e37797eac585","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.1","mocha":"^6.1.4","eslint":"^6.0.0","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.8","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.4.4_1561209983372_0.8726208435665392","host":"s3://npm-registry-packages"}},"8.4.5":{"name":"eslint-plugin-jsdoc","version":"8.4.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.4.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":95,"include":["src/"],"require":["@babel/register"],"branches":95,"functions":100,"sourceMap":false,"instrument":false,"statements":95,"check-coverage":true},"dist":{"shasum":"1ab9ae5d01083cea28e9a2bd3eaff671b92df1c0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.4.5.tgz","fileCount":71,"integrity":"sha512-6TgQ8hy49kEDF/jqjpgVFMMRP40C4XXlWEawXWJZJWNBKUsjTMqmlRINpf7b6ldjU4Fk4ZQ15KsWYpt4yM1iBw==","signatures":[{"sig":"MEUCIQDIeN8xApct3h/VN/VJoCWlK0CjZ9evLlxpAdQXj2eRFAIgW0cA0WxJwG7Kp6ZuoubXPOnA7wwV4agMUja6+bw8ErA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":453721,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDwFXCRA9TVsSAnZWagAAMLwP/jZbQZVvrmN+mEz/ZSSJ\nmgCjYXcafGW9rkRZW3fXfmEqfTTjtE0+tNTYuOHNQ3s6P666N3SDAIeQi7XX\n9P2fo0j2JUKP8WvULKXFzPcdrcs0ZhYKRAs3PVhcQPcCOlSR7Rcn2kkPcZ/w\ndZCFimHdVVbbhikciqF7n5EopbiY9mlIbeUbAIylW3A8sQa2p9F/LuZWu+PO\n8S40nOjyuzLtmQ+0tD7N+33Cdv9WREdqBtJ2t9oHN+JFy1WvIm3bFdFjzGIN\nPfg9rep/y4aFXYO/XnpM2AXICm1bSkrISV1qhPFtwdbFzFM1tco8GbO+4+54\n9Uhz+gKQYlbh6uFu6bXFg9vdcyhaNTnh57+5yWjGeBJefMF31tUZKvH3vKB1\nyGtEsHgOJAvhdNw3jnVrcTr15vmHUNnPpOkxVEO3ENmw7zn6sz+RhfRXu4d9\nHDdALLC1SSTV9ZI1Y9XtKqI0CUzUcIFDY3stjQXZoa14z0NgYGKicHuYGC3u\npy75iO7aAE6Df5/h/foEe6BMjLi4PGCsxfjVmt+iGnQ9kQAYaB4QabwEVjjG\nZxg1p6hzBrP4859+ruRppHnPOp5lbrFzZmZXiqkdfw5bYFk1FKgOwAN5dPBN\nYsjxBI4thbF+8n5raFDgn9kmRCOmgSoTfm9+nTXA6CNWRZTPNAoMWq+bz94G\nCh9L\r\n=H3oi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"d9fdc7a3c13f41fe7d528fb884a11bc5502f643d","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.1","mocha":"^6.1.4","eslint":"^6.0.0","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.8","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.10.3-alpha.13","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.4.5_1561264470143_0.2917829681567321","host":"s3://npm-registry-packages"}},"8.4.6":{"name":"eslint-plugin-jsdoc","version":"8.4.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.4.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"33338714632c8bd596cca63c3a9eb3728100f266","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.4.6.tgz","fileCount":71,"integrity":"sha512-05qlilEFDADuhXUwIn2p7gH3JrbDj/GJqNNGrYWuaXMyiGS/2n4CzwV6R18cRFln6eZYb8OFKeEmwm/PYaNZAg==","signatures":[{"sig":"MEUCIQCMNCeLbWBkmxUj9IdpZXxyK1HPnGxIYcSI7WGc0xCBIwIgOXu+XG8AHpMVAIp9abNqTj0pYaDP2JhZkWZ8kFzCwNc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":456919,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdD52vCRA9TVsSAnZWagAAm10P/iO3XW6U0TYxTVUiRv7l\nERK7aXZxXTaLefxQ5jKuxch88RrRI2qon8or6/+VTXUIOvb0+vqecaQa9zgn\ngZvRCVduM7JxjXx7mYRRE90M5OsACzbSv1UwZKsITCyqPdy7E1jeC0AkAlyi\nZFY8BQ3Jxqkskz/BSzWo0/kNKbTLtIMyHoIwvuwyWcxC3lok1beAKrxWlqGE\nF9cJMI87SeUpoCcC1908dSjne0PH6DeyAw6onuJ9woSvhvHRpRTi032y+GpD\npXCzAbKlq7Htlx9uUn9Z+J0DqXxurK3hHYoQy0kxVyNlf9NJFq3nLlxWGF2y\nEsP9YYCSJhncXnRbg6TiH92yjIblZuS8rVBJrNLZ3LtKzPv0CklLwSETliqO\nFXfuzz6wGVc1C1Yi2BRXgOJysqXX5BxmfYOYqCAO1Cvv616gx4D7OhxjRcB2\nYCRoEWht/E2uCR1jKJVA7RxLHlAbSJsBq9jXzp7/gNM7aLMCJ6cuwXY1uk06\nNgB5hA6WqISgr5ibQP7eOh1VK9eyu3xtAIgHaUKR55F5gmdnkFMPe3NMaR4l\n0V81aC88EwxgylgIYIqL4yywrEx/PcBsfBTzdraeyua3mO+Ce/q84Cgo6+vb\nHg83/xW8qYuw3+n7SWJl3Ffc7CQPulbG+1HJ9xLYig9aex3VLJ+dspHa1IUq\nRMGW\r\n=wy38\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"0bd35d14d827a3545a30fbb0b75e1d18ce3fa808","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.1","mocha":"^6.1.4","eslint":"^6.0.0","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.8","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.10.3-alpha.13","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.4.6_1561304493887_0.7687531622960024","host":"s3://npm-registry-packages"}},"8.5.0":{"name":"eslint-plugin-jsdoc","version":"8.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"55d54f5faaf57590c812d9dcce7f0f236e95391a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.5.0.tgz","fileCount":71,"integrity":"sha512-6n/KtdLwDzsRy/IExCgvR15XWRWOD/8OllpClRM/7Upmp/AG9Q1FLN3KwZxaklZPDIiuWBxaLII76LmnNupKpQ==","signatures":[{"sig":"MEUCIGIk8XSBRj7Py17T3lKGhkszy0AZ8eox4OO3/USU4Y8yAiEA8UVkrxXcw5JEjM+MkS52r51VUJwpbVd4MfBc5PO0C5k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":459839,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdD+h+CRA9TVsSAnZWagAAJGIQAKQlsDTBRBpEsGSvBvTd\nqoKv3vOtkaM//h9O8fk+joELQaMZQWVAufRFZC/NRfxcnLPDffMhhC4grSSf\nVab8UOYmivs5PgjyDy8dF+1phMsUL+SsT/EOOwx770KvytuAYmxIWxqwTO96\nUIIjLk10122zOAgXmdVXQGeTeGyaVPxBGAoLed/bG1C5NiQUAMR8g95RLkVt\nbK0uqF7uuGLHBCVdM5vWEGHBKu/yiDIZYikb76cCCYJfQ2nQahO1sDN3yaK0\nYRIQrLlzwE998CrPXo3cZegXlnGb7iyqMulKRgq2xQeZRFl+JTAU4KMrrbzH\nfC01Ooyat6gO+gLhj675iM6+SeF3Tna9nJNN2+rX88EhGNVm5JgLk1FEIG9g\n0h9vXOm+/6dplEG0NpgEiE3cyb5sQ/aayofUGhku1Nmzar3hCFa36RZNX8yE\nDlkyq+VIXc+WLEPZuDLHfWDsWC/JE5mwWPoqVipAyhpzvXWA9kmvQEHiD74b\ncQNSM7cBvGseftDFIOMsezDBrIFCwHCfedhplNn+JOTzKyB4b0pBEmW1jtTr\no3oyROfbxFbmyqASgI5Y9VLUxcCMECosYZUrQLPDMih3lHOFU5t+oyWHyJVE\nMLuoOsk0yAHf5h1QDKRqE7ps8BGvYj+PuZN+ITtkd/oJpVXHKTf6orknEX7X\npbyW\r\n=ZE0a\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"92519e216a744e16903d62986695b3feabb14066","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.1","mocha":"^6.1.4","eslint":"^6.0.0","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.8","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.10.3-alpha.13","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.5.0_1561323645508_0.9213012342485076","host":"s3://npm-registry-packages"}},"8.5.1":{"name":"eslint-plugin-jsdoc","version":"8.5.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.5.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ae425369f4e6ee8d0aa1c87f469e1a85bc50f027","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.5.1.tgz","fileCount":71,"integrity":"sha512-OEA3mqa+jdDGD/uTfVNe2YLYfo4gfp/XX1j/tPPluN83EVOXp6FJJ7p6fq23OStfvX999m5xoWv18xAyV/iKOg==","signatures":[{"sig":"MEQCIC0nzT5rwf0Zys6k2yu/WHAJghUWBwsYm5kGIcLhulEEAiB6AzC7uwmMf3AGtcWXiZOdZm+10SUXCkQLvFDYm819nQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":459930,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdEHySCRA9TVsSAnZWagAA2KYQAJH/bYlc0oR6HBdvRY7+\nDIud8N0Vto0pm7yhyEJaaivpUHztCHouJ9Q1Yd4ERb4Y7VilKE4maraFshB3\nGAyI3AWMcDNggxDN83oIhWlZp2uxfVkTQj6V3B1LnfR+T8LT7uSyl1XJ2c7p\nDRsNW7n0ujPVATteJu3JbJUmHLda4OyLA3S5YZprq1Uk5uWu2WM4C4BINHUO\n8mHTlsx3a4KDo1JhlYp88CEmiNl4Jqvj34Jnws1UWoQbCRKMBviOt9dCLSNL\niJLwJzxfk6dnasPIOYkki6rP7bpIIA+vpOyTZaIXrruomyk43Gkfd6T5pkL8\nnJHqRRnhPlO6V0RWbJrmOQrpXBqQwSOQgV51dl7CxfugKEzUywRP6TnSXUcK\nR2ukBg2myPQCBvbooINZm04DwcEQitCuuJ6L6l4lxlxaT657bLhpa/M+IHEj\nCunlmMbbIyLX9kHVmTvQrrb44rnf9wHW2ZKPGgVFdNV320x+fIVGob5Lk/b6\nEqUqGTCHCphr230KOSDTJ5f3lUoKERaeaQJbBv+S3qh6oin+83Kwf939vF42\n365WoPcU4ZB/ypgGn2Ma44ItYhOGSPElcUcJLZ8F4t3UHZLwSMeD+rAvkTpu\nrU26pDnxXM58lszeXg4FXgtrRZqppDIwcJxPiuJKnIuc+10QufzohhNEfZz+\n4EP/\r\n=nYlt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"8ab21789e42e21235a97c3e55ecefdb3ed53d6dd","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.1","mocha":"^6.1.4","eslint":"^6.0.0","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.8","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.5.1_1561361553221_0.4839413467546696","host":"s3://npm-registry-packages"}},"8.6.0":{"name":"eslint-plugin-jsdoc","version":"8.6.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.6.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5a4bc764c55b81bd15c18630b5c29a5625ca0141","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.6.0.tgz","fileCount":71,"integrity":"sha512-04h778Afn4AEa7V68Zt+sg1jJuP7y/JoyJeLQYkvKZcb7p2HIN+MirMSLHRL15vJGbAZKco4kT5rYYc1nP2/3w==","signatures":[{"sig":"MEYCIQDkOHgdnirQfx0nSOV5PxSGpFvItPVaK8jmBTlz2OTL+wIhALV5Hd7XBCguPbXV3KIr7NSzg11Y0wKyCgNxuvfESyT8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":460551,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdEJw0CRA9TVsSAnZWagAAz5MP+gNym/cswPjPe6FSVVIL\nZTtFj2Hg8utFKZBhqMwa52KxR6+tb97Zqt1Frr/Vy5O2z4mNyhxCkZ2qBS3n\nyDGO6Q5hVR2hbCLJTe4llqLQDWCxjah9pfjWq/0Tas8Kh4ZPXYDX0s93dNTo\nyx1yesi6H8XEG0GiT7I+Xoon+/xupULSdJvNl4sWCfcFXRiMfEsgqGrTdmbv\ntFhAkjeQfQ75KCaL/JkyJFPn+bjzF3gO0awGp94w/5ek7DGS9lhoCL1MPeun\nSxLModHGW3LLqazienDOdagkHjGfhuuzzWJIFAw9VSisUqqF6TJwV6UIj9dN\npZxa5dnLeXHPo6Z0QGiFjTCTVt33yQX1g40AeN3Y5mpzS1XoeUl8QWD9IbAm\njtdDgwipbp0BFMyWoxQ5n3qr03giDm8XV5nC/1NjzzUf3JaC4Zfhemq6tqp/\nLfVtUgdcbCR3CNXJIiHZmQJsApshi8bFAmLyIWXogL9Tbs4pnbQ2Ix8/cWVt\nC82JcUD8UTRK7wfiLfzw/djlg0wWWE3AJA5zlWUI9z3itIJ1aAkENyK5xWjd\nULwSZntU3yyl9M+nOTF12DlQL8j85xWhCMH2m4vOVBxSVpTmJv3RY64NBoBe\npl97FO2FJY2JNUJdpNRJF3DqkLMkGUy22nbXWZCul2XktcBgXNvY/Pf85cqo\ngSfA\r\n=9pHs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"dfa9b23d796a011dc5ffc9f9ce18546210b98931","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.4.1","mocha":"^6.1.4","eslint":"^6.0.0","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.5.8","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.16","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.6.0_1561369650685_0.9341892980577813","host":"s3://npm-registry-packages"}},"8.6.1":{"name":"eslint-plugin-jsdoc","version":"8.6.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.6.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"611e77c789d5ff215d7107a1cb964921ac9d6bf4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.6.1.tgz","fileCount":71,"integrity":"sha512-b7lO5eadGQvo4KVxnhka/gDEorYGtHd47k8zyQaQHbsd44hR3yGZIDZk1q4z3gPiwIpIpAeivT/g9s+Ux5smvQ==","signatures":[{"sig":"MEYCIQD97hYtOR2u7s5kbw01o0Wm81e333DwQYfd9tI//1kGlQIhAIRq92LLTqAFGPPbBmmMeALIhx7UBe7zxEWIHJYbhlhn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":464648,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdEvmrCRA9TVsSAnZWagAA3LcP/3pM9I6qW9+wxNBm3boZ\nhFACTotrWiX1UERbRaftQSK9KToBGWTR5beF1EnFrJ6BPulgA/zogU8cF0Dv\ncQ72X1kAXSBj4yNQZDikiC8aMsogN5TKnRWZwLn7m/nq2EFUqtEOQcNfEaJ2\nB2MB8hJYoIDiyGTBa/EJc8WxZ0y0fiIrMnlpof1WZLVW+6oT7aaLvQz8EVIE\nGrCy0SWKNPlDpnhEU9lrsYQhcou3Xj3GXBdSbfr9GfLcte5RmS8VVFDC3TQo\nIhphkVWhoLZs62vNh83v7ZpoIUXL5uIoXww0bX32iM6x6+xTca/uVegkdHAr\nx18iUAelvEV62lTWuHtQ7r+30FordVfgHhEbBT8+T81Hy1DxzibgGFXroAJT\nBx/9FUdyCBDCBfC22UrYWlZvvgnqe3NozXFRgP4oUnKkpdopfWo4b3T+d3Bc\nP/wB7o4bQs7B6Ln05VIAFJz/rnmQZqvAPfVTrMEPue7LoCxV28ByAlivToFM\no9LDRGlLPrcowJE4X0PWv6mtDzHClijk3ssHYn8uwAkUJOgJgq+Qnbwfjp27\na2qYh629M/DJANe1LFfKIJQs9ewqHTZ22hsM647aRNft1JHl8SOMzveOFo4Q\nScYrlsNja2cvQpSZKjfLizJEgHCbueGBCLwS2yOpN+KgmEmCtGKvH1VV76C8\n6IYK\r\n=SN5g\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"383a557dba6babc1801b1c3eff6b8ee876dc80bb","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.5.0","mocha":"^6.1.4","eslint":"^6.0.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.6.1","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.17","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.6.1_1561524650123_0.03080998104179522","host":"s3://npm-registry-packages"}},"8.6.2":{"name":"eslint-plugin-jsdoc","version":"8.6.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.6.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"acf77cda9719aecfb753d796441b0c07be1e2e74","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.6.2.tgz","fileCount":71,"integrity":"sha512-dqnkRVAHFZzfHR57dzXbcBndqH6Mtd1waKgAiI3W5a3kwdWPjquFlQ20Qz+A/rV/u5wDAXWRxJMfEfCQ2gQrqg==","signatures":[{"sig":"MEUCIQDYeyHBM0kE/hVxyun1koGpBs/jhZOTHjazapBRRJvPWgIgIJ0WDsd8++LZK5vEqBmnhDAPWFiOJSYNHB+p1A8LtH0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":465390,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdE0FHCRA9TVsSAnZWagAAds4P/08M+IgvzcZ73YeH4V80\nhJDuNFrF7MIgL+sqN6XyOBDIx5kKqBOMVSI9eiyTvwRGJzFAZ6Tz0ylJ+/Xf\nNMXnxonkoEEai5M9MzGkD3ckOyLsDzWU8eJqGmzCZmAeEW38Lj7BLlMZe171\nkEyW8kwck1CSEV1LqsarAoyTZmBl/JypMQEhlMui7vv4+cNquOjw/9FtkKlG\nvod+cV1gH57FGXClYDUvaATDpCPwk1CRAx/edHpabiYyc95Zomc4f2Tbhwtq\n9TeEYuPCJEPewjBjg8Ix+quThv45Zpr8G/mowhPiN0dt6D0eXNpabjqGmJ9T\nyKXPnNu6og0M15hjgzyNx7P+ts6PZJuU8Ll/PFDM/oUy8NlZpkEKS8GcKqcK\nfb9/AR4Yd213VJAWS5efQu97tfMXpCm+Lo2GaUiPNhWilrBpres9SYj8wDYC\nMv6soKOB2AEzvydDusViV15xGbVhifCXct9HCSsMDE96Hhgd7KfPQB5RuWQQ\noxzFmdnLlr85xxKlUt2ZFtzOliOBqe5Z6nXAhX85YWcg3SjOz3t7emrqQ15Y\nGJpDv2hOdQL8IaOcmcwPwWSImA7rea8K5cDLLa/Wlb8x/g53olTSgDrNtYH1\nungldtNmyK/Fc8/7soJ2aWIZ/ExTcklIplHbaup1LL/ynF0UeMc7GMjvwer7\nvyHq\r\n=cnQy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"392e62d16b654f52034bf7886f1a906400308931","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.5.0","mocha":"^6.1.4","eslint":"^6.0.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.6.1","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.17","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.6.2_1561542982273_0.5288262260545322","host":"s3://npm-registry-packages"}},"8.7.0":{"name":"eslint-plugin-jsdoc","version":"8.7.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@8.7.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ef61bb7966138576b23aacf249e958e9a0a012ff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-8.7.0.tgz","fileCount":71,"integrity":"sha512-4UzO2Yw+5s1DOfQCTaasUx8Ng/h6/nTtrO3gGiCD086pOAcDFkbVHKdGrGnGuXd90MPDE9bHD92xJ5ke3cMrRA==","signatures":[{"sig":"MEYCIQDAeTshJ1udV/n7xQWeERglps+EQT2SRAPnHrxLSpr0+gIhALB/ykYRPMam1O2ajHvC8DVuPkcG4XfDnDh+q204a6iv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":465887,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdE1kXCRA9TVsSAnZWagAAPvcP/2DMQOS88ku1uZh801xE\nw5HdY3sQq5MpVk7XidONAhDSLDwzRO3yNFIgDFbwkWZxRd8IOJN2qeeRD5dz\n5ReYCOgW+BSRDUvJOqrCcWT7U0dSpb+dM6hmMQAK6bNJCwaqLZR18VbbWUh0\nIaGZJ39LAslZ7Zz0/PL+BIBDt1kHFLI53oN6P9YkYbXgAp/RrKD/w86Pk4f7\nhvswrhzlBPaNYdvKoeGc1GFJsQRkLOEyiKosQjvzKOGA74BABWPUBQI4Y0Dd\nzeoOTJir4dR1+7arv640Q1vKiJPOjhXTBSmAuwf2qIPQE2PijZObVIz751oB\n5rx/xh/qK8YgHdXQFU/OnxgvUmutECYqrwmA5+5+UZusM0FfYmyzPBxIb8PG\nxqXf1EO/dQWu2a+8YA0tALTCry7mRRrFSbh5DsgyGMekI/rRbR7CzFFkNPLi\nuP7NY/4nE0ltXVwVm3PsvpJSmKwk17RybIY7ggphB0YTrQIWawf5Uubyv8ED\nRpLumKAXV9+TkPR52a+x55wVzl14bQf4NvWsyw8/CKmC6e4O9j8G++X9HE0S\n4DItOQaR3Aof1h8G0egQUjN+Uv7FPbYCRdsqJpR58hTede13IiPxyV2/F5qH\nsg84hTbXrfDXj+rbkk+A+rRKsdlN3d6UEVeEJM/xgOet6Obb+pY+Su0f6VV8\nUKfd\r\n=5JI/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"96ac40bfa5c11588d119fb36e2bb3f0e34f6bdbc","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.5.0","mocha":"^6.1.4","eslint":"^6.0.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.6.1","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.17","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_8.7.0_1561549078434_0.4265317171669034","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"eslint-plugin-jsdoc","version":"9.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@9.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"69d83373e3fca232d9f7e590dd72f0f8d3b15327","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-9.0.0.tgz","fileCount":71,"integrity":"sha512-N3GSid5pj8ELOyUXUdbbcP+JVsc6niGe4zURNy4yTOQ0aCufnlgGtGkOON7jFhg6PYerOyaMnkNsdGo60ih7kA==","signatures":[{"sig":"MEUCIQCXxjOZ4wjPtbn8fvCTTeh1iUnVmSGC3kqsl+DPSZvphgIgDxgk1Zp6XfYnIF6vPse0R2gyFd99C6OnTgX/QaAxQ5o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":471698,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdFE4zCRA9TVsSAnZWagAAM4IP/3+grldLIFBxbs2Vp28y\n1u6oBLgWqY3Yj8N09IrTZRNR9koiAULAtPOhTAX7PUHFYb3zwQc+i1zU8qkc\na11kH2h1QqDkzx8NSiA3YIc3CzApAE4G1UgYBmmlIAqw+KkbBd2/QqZt87+5\n65Mmu3M3BmfxZ2tblURgb5fz2hCb5AGY+xY8BZr5VhcgBx1rwHYIUfjbIBtQ\n3wvoKlmNIWaH4cJ09H56g717qgXU6Gyxsv8/Mm0von3JR5kkW6PKMGkEPR/v\nPpF9b5YVHoJY93eAKnMNx6tQEMw80ygeSp0diWFt0tS1KKnn/7F5VcwG8dFu\nHXMMyPcb3xG68s3zau6WKP8x0IDSqy3QW3X/S06TpMJqjUg6C3B/6UceOWmy\ndgoHV8pHFkyFY8CssFP9HhBBTcN4N1XpqTgs90GjWKopCLKD6hdrjHVtayc5\nLq0gHrYF4fboYiL/1e67vd4GIa+Zb+PoQR9nPRYGpCG9J0gDU/4f8/l+0jXp\nfY5K92B6zI9zXwefYbXIyy/tSNIoJEAW0NgbjIdPrRQbmJ40QFnxvM7/qQb2\nhR0po1qlIYAIUERR85Rvxy00gJ7x19JOjJaQB3rBDj4XAbpM3Fte+3mXG5hj\nrscwQAb8Pdrnw7Lj2zEv4vsWy5wn8YyAGr+FM5t7H55shFOi/A4ZD9u/V9r2\nthDo\r\n=3TGf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"f28f87fd0666836271ce1fb3e5b0d247c00ad847","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.5.0","mocha":"^6.1.4","eslint":"^6.0.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.6.1","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_9.0.0_1561611826061_0.7212472163610537","host":"s3://npm-registry-packages"}},"9.0.1":{"name":"eslint-plugin-jsdoc","version":"9.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@9.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9fb1fc09a623a0990369e406eb897a89c6bfa5c0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-9.0.1.tgz","fileCount":71,"integrity":"sha512-4Sd6rjpMJ5YOd2WnCcgWW7K/EIawKKYgn4ObtDG0pyDP+QpN9EyRoPvY62IQtUOz5KkAS/EpFvEIMUo3qUyeyQ==","signatures":[{"sig":"MEQCIDqSQjmssr4+PC9EJC+KNq4uLlqK3TLOvAkEQTptuyvgAiBZOYO1oebbOPS6ba9FDf+Bv3TlCVAl/FxOg5L2LB979w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":473069,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdFGC0CRA9TVsSAnZWagAAiRgP/114LBZYghSCrAbFtY7+\nYJ4NLB0KbtlFdW6VZjHtvJAbPS/v05QPNX6KuLzkLjaZwme1JRVLFQ3vzzNu\ndKQFAPY2gRvTpAfxdEMSn5ay8ncIcmqxdqTI2NZg8X84uMGtQC5+IbpwEV/h\ntCCr4SLgrjQAVIWUnAEvTvhbsvKfq23j5cg0q3HYhzn06RjOH793b22J8xcw\nkE2UxENHBXN/e1yykaMC/OhhvtJYXCF56Bvj2UwuvMTTxNc9jbGm8jBpnyew\nu54OBuBCHSeS7gKuM7a6kEWD/Cezx6wzWQToRpxQ7xF4cIWPB+dnSUBVZI0A\nM72EOo3kRnPlQ77zmgMxAWwEvSRPHlKtC34SaohiXUWz5FufqOV/iAb7FxQQ\nFIbDztZbTHfoL3kZGdytv9lBp99SvRnGaR+CbXnRHvxqPrZs16boPXBSEXsn\nYT1OeMzPBjXjLhDdEX7VaQhqo7+ngzTYQer8jUXc3ioGUZWGdYJe3AblEeZ5\nw6FbpNjbu+HxsLVCraFggsNPWFi96Gn4en14ZYseH6zYG44R2sFEJQ43auVc\nG1jg//SNnacPzxUJotS3miznuwyYJ6M0cAHETxS5zMaDB2ZxkOWETDC9ynBM\nVsItY78wFNxRkobs/fn1zk62LSYIKiRA+Bj3YL6834keRAATS9CW+e1N7g+2\n7e3I\r\n=rH5P\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"a17d9965921654c99f91b02f6c44962a16153fe2","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.5.0","mocha":"^6.1.4","eslint":"^6.0.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.6.1","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_9.0.1_1561616563146_0.1807579625370026","host":"s3://npm-registry-packages"}},"9.1.0":{"name":"eslint-plugin-jsdoc","version":"9.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@9.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"979cbb7e6a85edd920c27ec57e4e6f971df80f3d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-9.1.0.tgz","fileCount":71,"integrity":"sha512-etQf1bs2KSUVt/89SvaLBXbMNCrBjq4pzXuyJO1qbzp08tKsuasYVSuHrGsWgXlNoG9tSEzZmBrWU8LLZrkFQg==","signatures":[{"sig":"MEYCIQDYA7VJRS4h3ADNaGBFbu3mmpfuG56ZzuHUFbgSOOjk4QIhAJZv8xxvGlDvJrO0d/9043CVi/bCZ61AtUaL4EeXx8Fj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":478679,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdFLSJCRA9TVsSAnZWagAAxLIP/21DaeN0Dt9O3XeD5/uL\nBQamp87Gy96Bg2FsjcWXW1h/qFl+dwBA0nFwbeEnpr0nIOehwa12QrHpEcWg\n6Xas+AcUqo3jhg+EKRqJUL4cmnZV9mKUBuK6/wcq5qTK8Gk/3gl76fqEL6qC\nsABI/dDf72rwbEUllx4AMcCRECN2ogv6LdHldjGpqkfxT1cv7OeRTpSuRKL4\nYotSsYrCzOIaoh2lsdrwI+tWlSvaJagWVahdeKFnnI/ZAWDpSocJvAhGeCYv\n2idxTZEWcnIxXzGWpwiueqCk9BnGHbgn4vt2C5D3366sAk1vPUtwKy0/qsNY\n4JOwmgdVkoenw4Vu4BVlooFotMHLKTbm8wzDLOuZuC2l4mH1SAGyn4q6mSyY\nSG+vJMAk2/oLUoAzsrTK1JSHYqzRSE0y1yPVbhD9P8pEX9EOkEPe/X/Rg1cs\n06OLaOBHidLYuaL/FlXYcljshI7I94SJz2dOqIpMxN4Ea2ytRsdT/IS61HuP\n/jYxRAB9sWx/kV5kC1u3bpgAcpWa7ZPsxFxBNOu/5aMfNw9jbQe5gvxHMlG1\nu3iw3AP0J+SADJSOcRmHtMsfpGBfINqM9r/ljetFhXgPiSaJohU6Or65FLdK\n9kPqn1GPoGWxCDKMx66jRjPJ5F3+NH48CK+oZ0AlDHwqTYjokKS0UzhXLz/x\nIb8Q\r\n=fAmf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"ecc27c5cc203310ecd94722158b26969cb7d0043","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.5.0","mocha":"^6.1.4","eslint":"^6.0.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.6.1","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_9.1.0_1561638024783_0.4700999991147654","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"eslint-plugin-jsdoc","version":"10.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@10.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"06570b9035e3be99525c63ba3e9fdd67868fe776","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-10.0.0.tgz","fileCount":71,"integrity":"sha512-xZUjGTjg4t4XoHe4VVlIddV9Xy3XFDKOyVTwM1kuyGGSP691w/o3TbxNIHe7j+x+8hcR1KGk/uLEOaI+FCTQgg==","signatures":[{"sig":"MEUCIQDq3lQgD6d/vUYjIowaxio85L9x9IEO1syjRknp8W5QoQIgdOFDADry6HZbJvz1w5cZqcjiN8WVZrUgx3TOlOg8zqw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":478680,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdFL5eCRA9TVsSAnZWagAA9WMP/iaLq2GahbnnomyxOR8q\nemH+R753v+3BKevWa2CL86PMgGTjTCf435l6OrkpLRuNqQdDwrZbCKixTJE3\ntVPeP1vdEqmXTCbNZVLO8JOvtPxkLd3oIRYtacdFQt8Jx8xfn2gI7hRXF/Q6\n0tET6IwCMtaK/qVjrUamjr6DpqgPeuXUR4fB2YMEnR9Lqyv78Icwt90nxTfo\n4EwJwP0/LKo4YvmgHna8RCVm9wavdbVSrluIjd9pmiuIQzu2ffmqBmpaLWLH\nEtWPF0zeSav+mkXzFab1FA1NnrGGgQ9SdAcdQ0q7dEuYdR/bFgRoI67PqOJd\n9eOUV2umtmgk5RPdGOnfSz8QTbK1nkVv4i/aU9itsp80cEmoEpEqs2iUQCrw\n3UbA1IsZS/pOzXdfgHCpyF1+DeWcwtkBkRoLoDbXxmxRv9tIE3oNAWFJK7bw\nTfYEOPDVKb7U2VglmcbteT1J2niwfSBdhl8mpR/K5Ml7dr4UAsXxA2neZAUG\n6RpA2rkFL4802NhICz4obTpgTRcEsd9VshEozCFM4Rk9YWm286x2BDLEwAwK\nItTETmqDehIqtHxM1Nd/PxZBRkHmBq92+k62ApGN5i3f68rVF7268RBT3C32\nZniLrLdKq89X3fc2upl2o4iXoFbZs+DMP4KD+bRfs6j0KyaT4XMpHFRAitil\nCgsr\r\n=IvOK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"2b10a7aa8789e07e9f51f792ce2cae0db310305d","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.5.0","mocha":"^6.1.4","eslint":"^6.0.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.6.1","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_10.0.0_1561640541206_0.3141841721711447","host":"s3://npm-registry-packages"}},"10.0.1":{"name":"eslint-plugin-jsdoc","version":"10.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@10.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4fa2b1aa9084ef070aa6f5c60a8c834cee8045d5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-10.0.1.tgz","fileCount":71,"integrity":"sha512-wZZkaoDspRM7bQiZ5X0zthjeAWiXTnwQU8f/vIJEg9UAupX9qFQtIzbX2ABYYfbWQlTVhf5O8erfy9w4thP+xg==","signatures":[{"sig":"MEUCIQCPWwvOI88Aa0lvgrLOpR25mDITa2N2axTaSRzL6wZAxAIgaDZZTkT+ybwXNelLGT2PNrOvnvVnEsLotbZBthtCtis=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":478755,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdFqZVCRA9TVsSAnZWagAASuMP/At8ZNiTobIrr+RX9YjB\n+fSl3syKXLEvGRQ+zfcBkqko2h+jgJchRw1pYE4auhO/QscId2BmHNVj2Dnr\nGIBhLuLGeZDkdZ60+FV/YFOt4N9Ud1HHMz2IL8WEyHczGo7OKaj0g4n9YPEC\nbJCtTOAPjtg04QSQbHSKafsDiKt4xHX0QvOWPxAp9yhYYkQd/nHGB55C8CnA\neoRc4mhg8etHT4AIQSV6OeUmy+GScdzJIMNeKAFpjrfaiOyQqq5Neb6OGZN1\nMYJB6MM0/UAuLPjoRbP/Fl7/9x7fkfRN3asYFDZxO8d33nsm22c56cg8eNIX\nfPw0D5kW9HamdUGi+Pj/o67VkLXbNbA5xETHz2el384AcdSQniRWNt9UZkO5\nA9Qh71d8b9mgQdWkdIMx2qGJ2Htc9vk1qrhVR3GVcqWLKYr/KyuZJTA3j67l\nVSgTKKiAxWMmKviUZ2rJb+PZFioN1xIr+HCYtheBAow0wWlbOwDoad7BdYNc\nqUSk5/uiiM9G6BOd6CX7f6Hz8Qu7gdWLFsoiz7RbXHcU17C/q3vaHYfL091J\nvzPWZnJfen24mDxZ3g2lSLgdq8mJSIZBVJdSMOAErg2phhUPz7CeZclHLnQ/\niks1Ly8kKx2u0h00LSI6Ixfbkx6ZO0+R86taDbwzXFlD5gfAW+436A0kCAcu\nO1T4\r\n=lQM4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"4c4b9b5460cf675a8aa429cd6ca0d7d766be1482","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.7.0","mocha":"^6.1.4","eslint":"^6.0.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.6.1","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_10.0.1_1561765460608_0.19676781777100838","host":"s3://npm-registry-packages"}},"10.0.2":{"name":"eslint-plugin-jsdoc","version":"10.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@10.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"3eda2a34153c21d514d6e64cd4670c9f410fa3df","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-10.0.2.tgz","fileCount":71,"integrity":"sha512-4qV2ipZSszRnHn99NK/tOCaIaNwP1XI7tUHnofCTCTzdwWJdsdNyeHM0R0Vv0sximxvkoM0eR8gOA1EgFqrL+A==","signatures":[{"sig":"MEUCIFW+omrUbm7zQS0Qj30XOdDtsHzGfnJ5oYf17htfW7AsAiEAgijTSOaOBWXa7RE/6pNg+qP8RDPgICL9SZpK1Xvz25w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":479042,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGB1CCRA9TVsSAnZWagAASmEP/jNHNL2WW0RTlaPwrCBU\nDkoGqw293sQgq7ZfPqojZt+gYB21GQv2p7se2BcjW/bC8u7dPXKdACdIHcxW\nEnefvfs8AL0xCANESFN96/pBaPEwAJd7NWY99S/QPh5L/mAbnI1S4lycFgVQ\nn1C7ddRmve4Tvvmj89/gMkH82acESnq4UZyaIF2DQ069E8lcBRlt9OvBvWLG\nFhZZbB2VxpFY91j3cPs1efBIKj9OBq+wpUUGVTUQO+OX226GKFIBkJovy8oZ\nD2Bo5wcUNfuc9hLQQpDScJoO4eCocdVbFrKTQ5/H/li52sGrH1SiAdBwO8Fm\nsZ9H6pn9elNwjJYNYFY5CuEZKvchs2WuD7r8kDtZka556e6wOBM6JfxJXpmV\nH/5agq66R8iYOOwlVotVcj4zBmnuu4tF9bb2yvrNagZYwKyZUmZGyRM5cMfg\nJI4SBHIIx684Kz9XED7cSNgM4Say/4Zh3GRTgon7qE5UslHH9BpJUFsWCiiR\nHg4leoXUK68dirlLQUuU4zk0jvkCng7hUwHA1+H1ZNuSWBwLCL9AWMEiaeqT\nsKY8D+NnJK96F0hj0zDcIsj/t6pUBeMivYUN4F4EL+yvhwkJ75nLrrcwTYUz\nXYVGZeozVqHJiz495Pfzpp3m/+222a4KM0rcnYIjF96XpGF24GhBml4UMDPg\nFfCZ\r\n=xrmf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"6baebd6f8cdbeedd93102eb7a5c9a928387d7cce","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.7.0","mocha":"^6.1.4","eslint":"^6.0.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.6.1","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_10.0.2_1561861440773_0.9709153500588485","host":"s3://npm-registry-packages"}},"10.0.3":{"name":"eslint-plugin-jsdoc","version":"10.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@10.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"bb0dace5e54b63be721062c9705acc11dc6f7e17","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-10.0.3.tgz","fileCount":71,"integrity":"sha512-aTlXmX4iCWf/vZyzcT13ggrHG6WW1QFvFbtrAVHU+Llcm1T7cvS/zQgPdRms2fY5XR4qBmsfeUuLe7RsszzhxQ==","signatures":[{"sig":"MEUCIQCR8+1VY3O2QxfPfEhcTbw9aT9MyZHkWRluQsv7jsEA1AIgVqTdQRkka4n22x6QMy6oqsUI40igaf73N4RZHiwg+aE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":480851,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGVnQCRA9TVsSAnZWagAAUNUQAJ5vU2yFt4ZzYHozHI4r\nMP3KOU9hKHhNmKFwOnk26Y4kg7HICNCKhfNSWChSzcxTqQeA2nGj0sYJUTTr\nM4UIdVOb473xzazpqwLS7qwj0sC8p2+tO0YD/Bfji3jW51uZJZHid3Z1bL4o\nkOxrufBjUKNLneKuzoHwL951osTznccAZ5eEemM/w1+rCuOVEWyxoviSORGv\nTUgi2GYRRL4/tFJQG//0chlvvFBXgbXSOGAvEjoB3ZnzHVHUPIS5Ea56apPw\niedUpRvyWPCdIFHQjM1Ny4Bi8owMnJxGzPdmGhkef0mLka97AJip+cljWVk1\ng4LTt8p8sQvfjpzipsCJ5J2y35U1/5hsrca3A/hgu64ncppPIXnYJx4RoL2c\ncHtrX9nB3jBElSLP6RGMnJcC212KNoCom0IuV9sKiOctinbLD2ZWFCS3ePrI\ny2KINRLuN+8xkJabp4jaQpbZKPF3Fv7kuEKje5xdydCfDjdYRlYUgasVBZiq\npiMuV4ruSGnS/WqYYiSTOQ5hTWE4rAXChCUKJzoPfOU6SY1CMOIgXmPFgUFw\ndxJwoUHvmJ3qL90XqWv2/Jx4nOnzkcOpx6Y7Jb/AO3BbcnZABXefJbtVB9Xk\n+uVFjMxG9u3zZbXLb4V0jDHbFWkw55zuQLxKwTp4h0jcTGkmMNYhbwBnxbga\n/peb\r\n=f2rg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"8cff358b4ba8b0aa3e1d1826de7509fe8f255b7d","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^2.7.0","mocha":"^6.1.4","eslint":"^6.0.1","globby":"^9.2.0","marked":"^0.6.2","gitdown":"^2.6.1","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_10.0.3_1561942479515_0.08546060260340504","host":"s3://npm-registry-packages"}},"10.1.0":{"name":"eslint-plugin-jsdoc","version":"10.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@10.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e536c22614b6c4831bf0c7d9416ecfdaa58bd8b8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-10.1.0.tgz","fileCount":71,"integrity":"sha512-HPe3Oidas0Be13P/T27rFJxQlSEhHQvKE/Z5gvmZyBQON5nMOZxv7qzaPd0gW2YsbrIGD0p58UXNN3W2blRdDQ==","signatures":[{"sig":"MEUCIQC7pxm+9gsPALQXtivnIdmny0T/oRJ14wS182ceReuBYQIgM3E2XHMSadqoAOGVLOqJjM5/qvMnkoTgpzcQzpynSQE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":480919,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdHVJACRA9TVsSAnZWagAASFQP/37trKtXLkynhGJ6uG32\naNms7k8wjvAZBV12yS8MeSmXyvCO2X9rMQB1R3fqEmM4dRs7rWDWgDGu+Pkb\ngkjj5ZvlNWm6aRQw9e02FfSyK6lqgay4A/f5lu2z/3cYCVNJAe1eOPU+WFic\nkOIWUX9c1RpdoYlzwCJa68l2Go47UxdJtHg8A40hsHqzGjhJLasyOu99G/zM\nphERXdDtXLRNG9u22Aj0VWh/iSOmI8CsCBtmsG11TALaQOf/oXuipLtrJ0xf\nBYNbd9IoagaES/WmqQakcpD6PAzEeCLmuKIiJSJ3/uW4zkTGDVypZsgHjSeq\n01fl3Eou8nCDumLUe9/Csd0m64M8+m8MCjZVPgXBqtB+XSGgoInREou0TPNa\nXzqEcIk8sSjizTdG71tAOjkBzfMM95YBcGQZ8+w0BodFLs1OLvRNcxudm9Fd\nmGBVZt/fWcedWwjIQ/zYD1qrMnZGA284QbxuG6B7CHnZ7zN/EO+ewBlJjGWF\nHjbAQJJQ/ANJq6857yvCA5/ACzxMyA+h5TlRW9SaD9R+8RCgiOxN7klZztJV\nSZUgu4ccrzsRYFS1EtEIV7PcrVniT6H3oPcchZTqS6vmyd0avvaPw0D5XL4Q\n/212zRFHdSZcEKTtD5B8Q+5RycIljWs//j5PynH2rjMbKFthsPryYIpZmkVD\ny3Dv\r\n=7kIO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"8f491ea72f92ee68c800138a2ef97c2037b1c2b9","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_10.1.0_1562202687644_0.6261059997096621","host":"s3://npm-registry-packages"}},"10.1.1":{"name":"eslint-plugin-jsdoc","version":"10.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@10.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7ba053b8811d0c78301d111d8a861b216706caa4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-10.1.1.tgz","fileCount":71,"integrity":"sha512-DOGbG3g5Qke+2nojyWv22SJ2hWjhGhfqzowhte4RpfJz5AdA1LIG9cvKTDHNo30tHbolMW2W7upJq8xnC17cnw==","signatures":[{"sig":"MEUCIQDrYa0O1OP1oLjuyM2uE99oeyx8CcWmR3LnmIJchf1V2gIgfaa0Rkm/rGHqj11R6iikPrjctFR8BDmvYJZNb8V2ufU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":480919,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdHWNUCRA9TVsSAnZWagAAMCIQAIBabJuBgcSed4+rIMLH\niiyK9rq0iw8agOwLZG2B6RaD7uUZxzi4B2sheMN2R8TLGzggMAcL4MvGM2cR\n2xWkhsC12txeCj9X/3nKlW8ldnK4QZwNrJfLecTbaWzcTkkpENqxqHMfZ+0M\nNJSt318jbU4H+WYoyqHdRB1ODYmAgmpgoEaT772oCXPVEabamT6K/s6XEu0v\n/jUY5P4bDEXkplYKRcERypj0WZJ5URklYAViDY3HaB9y7fnAfndNo/gRs40d\nOOpsmHO5geiSEk+xT0cg7lFjUGRlk1GSYf8n9e0tbXhO5rXjFRyYBLoTjmnE\nxNICjaTfCnYOsEiUwgUaLY4blx6svdWIXA3w7RHAs4NgaBZv1PyKhWDMfNCw\ncJYYuZmKemevBjbu5p6/ODo2eFVfX7Y2R44Da+y7H6DwSexYXLPQEwhssaqw\ntXg4r9k7Vrdj9THIXBzyu7t4wekeFwWwXniStRTt0Q2tefcPQMscj4FN7V4w\ng7hdarFGelC/95Iv4vFmZqhX/RdjJCpgazbEH5nk7EaJeByCJB0Q5k8T7Z6f\njIBI1bEqwJ1F4pxIc06m+SMqEbHZWvHCpEgcrs9KoEzZJ3LcgjeKUw5+Z7TJ\nxNxGbIrco/vul032OlbIxVcs7snvHbOgxqhiAA7/sqe5B++JrtB5whduVnWA\nXUD8\r\n=ZEvA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"88fe68a324a7f3b4e2fb899f6f4c1767dfc2bbde","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_10.1.1_1562207059044_0.6674877757072804","host":"s3://npm-registry-packages"}},"10.2.0":{"name":"eslint-plugin-jsdoc","version":"10.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@10.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e6341417ed49c75d7eb4b5d5eb325eab3a77f2a9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-10.2.0.tgz","fileCount":71,"integrity":"sha512-Hxqc36IFc4MO9s92TnRWBvTGj2reWQ4fPCfxHRxK58vWWeaTJe3g1CWL6UWB13/U6tCXPLEYRfHUtLaYBcd+fw==","signatures":[{"sig":"MEUCIQDOnGg5KKcIrPry07tnVixT0kG2mju7vSsTc8WsmZftOAIgDFEj2UrIzA4I8fU0f8sKqPtOvy6gRXxTJNwAH+ywhr8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":481468,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdHb/OCRA9TVsSAnZWagAAN8oP/RlSxwfiTtUuF6pU5Vx7\nBwc4Dnaj4Ug2Iq4QDt0ZOih/9vhOzUj2+jRKorx9Dfh73chuQI334uFp+reE\nqjOlZ66BRu/u9j+ygJRntB690SiR+pK8cpDoLojNUoJyMAXLgunLlrZbyxK5\n2koPEWvlqO4bqqKMwM1zi2U7bEQc8e3oEI9eyA/a8oBTndziISIWn1zZZRb/\neqw05vg5tq5nFeFahpFNZMGyPjL9ZydPYzoKrpPCYMECPF7nyWQRIffrrgTX\nq184KfBrrnMcFtvoErYZV28BWQxGX/nyukG5NcULWo3oVtPpxRhUjEWCrAqz\nxTQ9rran0GahfXjzbhn9Na7IVcAMVuba8coiwV6pRTLKSvKVUcLY/znxq45E\nz57hlfKhya+zKV9WBHy2cHJuHRgblympRjFb6uFAXX+4Ic5QB9wKmAZJV4vn\niuNb4GNDujYP6zCb4WMwSKNl78YIngJ03TISJW6FmaSemXzhSBuq91WEt7MY\nt/aqVyyaKOiKQx0AoXnPnB74dLStPuek9S/cvcDDjVSnF68e3JCPna15Ioig\neWOGWdFTHvZfGMmIeVuVD59S+vOiLXTD0l/Ww2r+lQsdVHj8SE0cI7mz2Is5\nOyvxI9D4OSMcPB0A110OqaJiSW9T6YhupzGt7SPYQzx5TvztifkbKb0iPuUr\nov4B\r\n=uKdV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"eacbe72b0220bc8f3b2bfbc8e1a7f7e5c73f9763","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.4.4","typescript":"^3.5.2","@babel/core":"^7.4.5","@babel/node":"^7.4.5","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.4.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_10.2.0_1562230733379_0.6726266500301807","host":"s3://npm-registry-packages"}},"10.3.0":{"name":"eslint-plugin-jsdoc","version":"10.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@10.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"802c03446ad9d550476b77c34acb1c2e4e777494","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-10.3.0.tgz","fileCount":71,"integrity":"sha512-FGNx4CBynH7KQ4FMJfjpscKVZT5N3+372fMuI3AAvCCEL1nT/1+gma0PssjeM7d1jqI9Cj9ysSbzcWnMuDWImg==","signatures":[{"sig":"MEUCIQDDwao095dKDX/p+UEmx75CEVW8d4H7VC5A5jx3E1lFLAIgHgycIc/ibl5KzLPKExeH5n6qjbcgQHPLbA9t8nGNqeQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":489927,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdH2gfCRA9TVsSAnZWagAAqbMP/2hmuELzeuEuLskmAlq8\nab76oovMGq6oBJgp11FCOCzHDpq/WaAW3a5t9bMcfT2l9xEIM09lXo63dZEZ\nmTiTIm59TEqAPLb217oK/PGUK0Ajn2826yu2etHYifMtgY2iPO705VCzTii7\nffLNZ6sefjnCn4AN2jzW69SXqM55PUloeM0Wp7DC0QviR7WmB/cr/jioOABn\naSegxkkuRKcHNt9SYkys5CNsaKgCvO6b9cNYXRx4EPZZuh93qD7vfrWj+e1K\nfkT43ddR1S9Ipr9WgN51Fp1hYeSIOaEFmVKweq38pIqgwYK5Xih+awWuRNDu\nuLCFYla4SmAAop4Bd1AK4mYgw31eNBK7Qm4KUMd/dKS/9QycP+m/OpfU1KNC\nPQl3RlMZ+jbMnHzBtWTkBHPWkrcKxakqIaz7m/MbHbE67XrSVm1ZwYbjT56u\nwR+u01YcGtZ2ItBvvQ4lKMI/ECNky3WxDADBJzOPCWlR6rAXoXjulqbDqYEv\nVXmDhpsDrn4YgZhKmgNKOpCRKkNu88SIjv7bdQs2dktZaAgYVEFl8NxylVet\ni0TyAi6h5YyXH3OKyV5LSL8D9RPMTK+Imzmv2Cad56kx05fV8nucLlsAugiW\nQ/ApRI4MyJdv/hK7Avwlm4/VAZUCnoF+x/R9gkdj9rTT3IDS1ce+2TOmTlrk\nQ2XM\r\n=BgGd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"a367c48a2c8209ca0fcbc40c53bffd1b1e667a09","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.2","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.0","escape-regex-string":"^1.0.6","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_10.3.0_1562339358670_0.6104739772297232","host":"s3://npm-registry-packages"}},"11.0.0":{"name":"eslint-plugin-jsdoc","version":"11.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@11.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"90d0680dc487a1b022fe4194b8ba2bec7833e944","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-11.0.0.tgz","fileCount":71,"integrity":"sha512-HbXbgSgHRZ8SdVj/ZgKODBz00C4D6JOBpzZPjR9XgACxv9cbOJ7BZsOSsRrjnTvrezBWQPTmal6BTVZHsEixNA==","signatures":[{"sig":"MEUCIQCWgPB84PVva38hA9JrFp4OFhYMcOQlHrIBmLRlIO+MUAIgYrwUE3cARRciu8KmpfqldNoCPsiMPONmf4CiU9weWlg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":492011,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdICyACRA9TVsSAnZWagAAeMUP/jkK8Pw5lqyAwZ23XcJz\nwujEn867z4poxsw+h8reRCahyzF/4FvXAzcIDaLA8IXQcQfzBDLl0IpCXUEp\nf01yJT0dohJezDLmDWFC04qrN1q9O/Normp3aZAy3fzAI3zo1oKCJqYwa2mM\nRYWI6LxFNYZJqf2k1axGf3AWGWPbp4xeYGgCAhGGh4+w3W771UeG/t+gMicA\nEtAyh5geulRE7YEzJYPrq/A/vjGQ40pSmHJ+MZKPGsnDu+sj6E0MQGyzSKFL\n3L+hv+cdK74ta6BXy2/hXh/jcSQ2HXnXFFVobigJtBO+TIntNUyD+TzF+hjF\nyix6rXn9W0D+659yRwU4sWHgX9NQg4ev7P1BARpxVQta885eA96sbfY/+835\niyc4cnPMql99V3OVZ7OCsh+AaPwYV/p4xwMSx6t6OWuHAYq0IKw4BSGueYcQ\nd3ZtEo1b6+SnnQpjW3KBtLbq4xFWMoFtyF9/3fM5MFLpN+/S3wbySkRU2SF2\njEWwALI+ljqBv1UETazbxKcKY09XcDmQqkwEqk7X78/YBlArSMn/rSw+vFlx\nKqDofDyY06jIBvmhRNx8fkEzg1x9DuxJYZd7Up7Jgt+91ER78u3n15wsFvGr\nQoJJQWVXj+LiztfLubUY5uVx7TFbE2P4pw3j9qG940X34DEMCI8aESVQEOPT\nmbzT\r\n=0pxz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"3cff0015693b0045bdacf778c51973ffb1936caa","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.2","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.0","escape-regex-string":"^1.0.6","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_11.0.0_1562389631586_0.4423948634929078","host":"s3://npm-registry-packages"}},"11.1.0":{"name":"eslint-plugin-jsdoc","version":"11.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@11.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"04599d37403e0870529d6b1da8b0d0edfff2fe35","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-11.1.0.tgz","fileCount":71,"integrity":"sha512-YdgVkW5PJP1q8bcoWrQTewRg7PBSSaFXAVtUdNP1MamBwnqysxM9vNl2UJdkSOofiDRb61iMURy6kv5tdNtKrw==","signatures":[{"sig":"MEUCIGaCquwTd0+CiRAZbdrnkPxHqHAQ1dShrO3E+i2mI1nrAiEAjTzwbXtKnmPxsM9LqdDlphbPJ7JEOQgAYuYytA4evls=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":493188,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdIDIjCRA9TVsSAnZWagAAz10P/0Smc0pnFaYnrRZeV3DY\njREcUXh1oJnZaUyD+9v4pZKhF/8y7ZwaZfoHKU8J/2k8SxZQeDke504/+GNd\ngwDlivzxffdyoQqMcQyYgaxifyHM6M+L2wbQmh28FRXxkAHaeF2kDk+ugbOU\nnvPumvrlxJV4rlUO8198PbkMMSSrkz2PgQkZd33oOsJwDcb2GnEVoXbywoDF\nUstiKyb9sTOXiX20ZIz/l8lCoYqNFCI3v3kHpR+Uf00P7eBunQZPffdEiBQ5\nMqE6+vfC1Ils1wLgCGs7R2Qk0cRJabmTUnRF0WA0QDy3NZGJyuAPaMMCxG2a\nPG4ZI1xUeiaZhIGVPaYLINilTVSruy8SUgELI2Wl4bf7e1GD0ctTIubyWGtx\nH76DG3doBJj7Uxrit6ZAwmYERmdeIYfUKaRmoJetZ5BF1YIrtUpIYfnpWHj2\nuBCYfNqzhGgBxgKVU3aHlGmr/85wKdExS6WZva7vCkdloASGyM7ZgkmTrUtg\nlBduqSAgJ9weuj3vYMuXHBjqsh/hihEn1hEFBMSfIr01vX6ADbjAYHPtMXhe\nKR5QkaGBk8ahG2X/O4uhqeFab/gCsNkSkcEhWAEwd+Jvp2jZueXAt4uj6WZD\ntBZ2gIz+If8jFz0BnbuRaRdTMNAERgo3nMr5O5qf84oMMjGexREQ28bnVOKW\n05dl\r\n=Y/JF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"3479aaf9bd90a78a34df98ff74cb632a8de62b27","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.2","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.0","escape-regex-string":"^1.0.6","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_11.1.0_1562391074833_0.7421257142882562","host":"s3://npm-registry-packages"}},"11.2.0":{"name":"eslint-plugin-jsdoc","version":"11.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@11.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"8c7c20190a4ae24d1185f981226d427aca3bcf76","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-11.2.0.tgz","fileCount":71,"integrity":"sha512-UGpqUqQlBOsiC2Ur1CE8ebEqHc1mqEe/E9fXZCwROVU2NrFotIVc7ik+mEx02c8xczSj31LMXrqCcBt4yVAGIg==","signatures":[{"sig":"MEQCICaI7oBn7hy7AJS36vz04o/EFMbb5WO7BmkjWpxJamP4AiA7JLqsHEL/ss4pYVhWWqEIw3R+FT27d+Ozn16KQwD1jQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":494470,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdIG/oCRA9TVsSAnZWagAAkgMQAIqUQA6fHBlDgMvTs3b3\nj8HPX90eMz82ToTXKIMFcRCYGIhHG1A2hKPbhlat5SNltEI++07Fkht0fias\nVczcH4slVO7OyCTSRwxbBeUwOqQY0e4aHvScjg43mqg7PsVxfP3mI3GRsQgg\nIE9Fcx6dcfVit+BLtxlAy3C8oFKs7oSHXZ5K7PmHc2lEQy6UCaAHx9AhxYtl\nh0JG5xVqFmMIQF9Hc8Pz2rY0PslG3cU2G8VE00sZzJXCrLiM9ItU+bnKWHlk\nhIcwYVR1sGmWBh2FfZf5RyV0GKkYQXKQnoXv7X0S1nd2JCYZJP41Ja4F8iLi\nj4VwvbvjNrlZCJhSRwjzniqGH4nUjUXS/fyXbiG+vdafTTNJGUSNz7a7ATjR\nMvJ+gMBvsM04xUKrD4yvTgVNRnNAKPiPG7tPcWtnjPtoPe/rUVpj5jlfh0SG\nAaLMYIUBtMk395oBq3g5TaeDrFXysWbqMqBEmEw06IqDEfQRfnpNLUTu/wbV\naoO4hoNYIj4PJO1PSybf2pZr2iRsQsZaM8B+TK/B16uB5Lbl0hi0WH9LXXJw\n7UpZyUbO+lZChqdpR6yN8ty4A7jeY0TnNo03+8J7A6Pyd2PYFez1q8GMdL/J\nEMGWCTGBA3qdBpfJ49l8u4BiOM54lR7uJyO/wmT+MwCK64cQSS9tAN0SZO3P\ndbrX\r\n=+Laq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"9b63f40206fc66ca242a5dfda8c61b5173215471","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.2","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.0","escape-regex-string":"^1.0.6","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_11.2.0_1562406886796_0.010789969262258392","host":"s3://npm-registry-packages"}},"11.2.1":{"name":"eslint-plugin-jsdoc","version":"11.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@11.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ac757d292bc33d58488e7fbd6ff1b8612cf70a5e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-11.2.1.tgz","fileCount":71,"integrity":"sha512-Cvt9+E1A8Xjy0BM1v3LF9mi5jb1Ax6nKkWdJ5sicfdMO/utu5hXOSS6p/cuOinaVFzz1/n560z4BGGb99eVC2g==","signatures":[{"sig":"MEUCIFaK71bvk/uS/5l+rqzHEi2chq2lAU5VrOT1pISbJkBVAiEA7BMWOaZdNoH0MKhSo1qGE7jAOKWKY4WvIoorIUkTz5U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":494470,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdIKbjCRA9TVsSAnZWagAArvMP/jwlvDtPivVtSc/s5rMy\nb1MFK9P6A5/GiccH3JlCQ2awYo5NEmBQr9Q+gADUXLOtahPB5qY1eN88l6vn\ngHoF941HLJwRY9cwo+aXNKSJplmMtVnnDdWpb9EJqfi010ZlBqM6ZZHbnOqM\n/8FZDyk76uTpda0AnohXbahmgL0u1Oa8WwtJwWg/qTcgHlBCRzZoS+yTWPl+\nUiK/pyFcYXuQ7Tb00yFUy2c1DitNbXmmg2q+1GxLnKIYNkeF1Q6T8Ws546pG\nrJBKkofpraE4h71wUXEUMRn1Fr9tXA3cSHD7bT5TgyXmWeqAMB0qu6qtSz7V\nbhhOMgRKNZfmtDhTQyyTS14txvWJavDk2yNv5TkVIPb18NSrImy3inR7Ywki\njyYJMRVsKgDHsNmb22L1Auy2LbWq50jPxJp0C2KlEzx3teLKa3ycNXIBgGEL\na4fN+L9iII42iEYatd+1ldnr+UDx+zUVatpiLEUQknVQcYjA5C7LDAVyJm9c\n7H/1dHYrc8w5doxNPSLKFg5lg+f3lgoHWk3b5oM4u25sqTxGMy/30G4XlQAO\n9DjFqj3S/m8giRrDCfDjumim8SMIrioraiSdAS/++zELDGGKmHWZT3w0Q7a+\nQaSQ2S+4+sCo8u920bnU+CQ7nqvp5sD32o0wzt9PO1/GeCiTvAL+yjUYHPNu\nNkd5\r\n=8KVs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"ed5693581ed66cc571d016b53f92f8079f035f35","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.2","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.0","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_11.2.1_1562420961948_0.8349017000486396","host":"s3://npm-registry-packages"}},"12.0.0":{"name":"eslint-plugin-jsdoc","version":"12.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@12.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a0b089d4652f353c5f8654883ccd715b01f85012","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-12.0.0.tgz","fileCount":73,"integrity":"sha512-mhWp7AFA9rgyr0RGfjHEl/nIBMlm/IqZ2DiWsRHZEjaS22XtYElxGp3G/7vhDENmUCckX35rQGAph/fUlXHS7w==","signatures":[{"sig":"MEYCIQC46WSrUTUvaIbdNzqc2+5xSZ2GU1Dwh2m30QidM6M3JgIhAMX42SimSy7cYwC2jDL37JcQS2E6pgIv+0SWtqEkZaOz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":506024,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdId44CRA9TVsSAnZWagAAX04QAJ4cACmsFq31ANGtdv0W\nJH/2NNIEvOWzG6fvt9p2nA2XhKBWPc15E/Ecwph2KNlFg96cRmFCbimfhNOj\njlCCBwFgx1P0nTWjcDtlYpHpZCChwZ74EoQqXsoEMBgRCyM035Ff+KLrCeUJ\nwv34s9V121c+JNDTrm40l6WWJiIjVqH6dx/zcWhlM4RznqiAa6I6/DB9C27q\na7Iti3sNNJukNqF5h0qvlify6pAuQ/xw4JvwppobA7Q2m8hiakbE1tl6czow\nLemHjfijpdyZO7DPczkGFzOcQB5uxcpoH4nevYEZfaI+8evWAOSgCx/16MXW\ntQu75U2PhNX9D8Pl4Gdrp5EiOX8lMbMWtSKcdbrb3s7S2oc8zk1kdQcEKhbM\np0JcQXcOYq/5t9iF8gxtuqAQiShgbGL64hqi3nLpRpkhNCTbaOXraGQG5AnT\n8InfokKhiCq3byBm7qATKDR0YSdnKZi1DHwSX/U3rQdHk43OXsrVpKcnpYMZ\n4IgzFxkrG6zwO4oVLLYh8SZ5ntG+jv1FzmVF7epqd4Hu4mTt39kv+N/0qhdb\nFNxKlReyjFA7pMWU2okL0hyplTW9E3+vCbIPXxFWsV2XxAZjtPNL+xHgeCEN\nN8Xe9ghC7BDkaKwX3XGP1UqbmeyO7EHnXYzr7jIWVswROtRWvUShVRb0OH8d\nqOvu\r\n=jO2H\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"92bf5b2e9ad062097b5186954eb7037dc8cad5c3","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.2","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.0","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_12.0.0_1562500663344_0.3376489138971881","host":"s3://npm-registry-packages"}},"13.0.0":{"name":"eslint-plugin-jsdoc","version":"13.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@13.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f47e36abea532b0b704af33324c6ac422c480f33","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-13.0.0.tgz","fileCount":73,"integrity":"sha512-zFi3MGteuoiTGHHrUgdoalGvgevQ3jWRVJ4ieZVrLD/D24xZc2lRHQQKVDbtX9tCQe6lKcVFJijhJyQHc+1Vfg==","signatures":[{"sig":"MEUCIA2hLHXeHLZmvlPXcV4a5lmYsaycM1xONf7ZsMC/ghaQAiEA5REQoAbyiQIgcIAPsgWN32J1OgHj9AwtlyY/dylYqo0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":507851,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdIf3TCRA9TVsSAnZWagAAl3oP/3p5nsQ5jA/KDjAg50sD\nAVqDSFsCQYmr0FEIdFDfrNc3HqDnRbgaZd3M9yxddlA9LY4wh/CxxzpGDjD+\nazI516t+A107UyjIYKjbd5vZKeIRXkBz+tboLBnL7UPYlv54mzTP7pqqTALA\nqHUU+98C/OUJiyZMB1CcAbcYbuqSV5gbHirRoQf2s8hvlioNhJYOaheNpXWF\n9ZxI5+zn/8Un4rPpzOPg4unnq4M+AnCrvLakIGHOoJkKz80YPV3sdJeLSNKj\nGiARadcRMZQJbUW8M8h19EED47h+zyLu1YPGQAQ/w5sGNukcDVrWvBsRSSgN\nvJjrH/BiXvEn1ECvSPevuLa9LwK0xs9YGanLx0mreALAes53H983JwkQarEf\nNga6AFAWVCTb6z20qzAAKCSEQiKJI3j7pw8JlBxIJBdLwzsL/fgVSSsA2EOk\n7I30mzJOv38PZbx63TAk/1EfAidljEDRADqc5yzl/I0gvWbsATWZP39SJrsE\nv3bHVSw5BTszh3N9diSa08PMmAv6P1pg0v/sz+MShyQzlbm6EuHP14qbySd2\n5KbHIThc4O7vc4cwADbxUAUbaiwlqbKWBAGA0xhYtvQKL6TYFQEmY1boOmDJ\nGG3ac3Zs8Z8kseG0+Vuo4wzqgtqMg1PRa+5bvos1/wD9EsV3f9IvnomwPGg+\ndIOX\r\n=NP3K\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"9c9429e2302118ade85345302b2c1c0a41cf6d7e","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 7000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 7000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 7000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.2","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.0","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_13.0.0_1562508754844_0.46793664914533095","host":"s3://npm-registry-packages"}},"14.0.0":{"name":"eslint-plugin-jsdoc","version":"14.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@14.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a40b65b1b6176db1f9680fc054a7a4d22f7fe806","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-14.0.0.tgz","fileCount":73,"integrity":"sha512-G+Lb7XnnfeZyYOFnZbLH/BsucDjEwggsD4DQJVfj1M9XOvSXv7v5fhvwXCBdWQXzyZ0uy28ilBRQ33dZSa9LjQ==","signatures":[{"sig":"MEYCIQDLXl7ERLKkTLxodlcm9gezPpVPwW0yXCvRaCmXY0xsCAIhANRBFEcwWQPK0YScwV9w1+1OrutbtmHZ14ZUAz7yIaBk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":502089,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdIgr7CRA9TVsSAnZWagAAIxYP/iD0PfW792rbpt8BGaGC\nAYrMBp0iPqhF8GWI4yf9GDyQdbkmj0EnUP5dhydOvq0zd/demoMlS1qBboRR\nHBcdGdenf9/M+zjLMJDrQp4ngStMoAKPOkiUvmPJWwR2xX7aqHDRGsZZx0+f\nYOD/egrr4+EnCDKmnfVo2oYD2mpQ6On+IOKDYcgZclErdXMCEaIXE5hG44UF\npISr0QzdFVilKLcJhaUhRs728JFOJY2tMM6grzGve4Tk2WjkpJ5xjAqiQ42C\nNv0bgH4TzUm0tixWSpEhVTiXfeFDBtvD46LRcn/jjUkcMp9bHLFSjB+2IHjk\nmhoRVNLbPNIYjIXC0P0t8D+pFbJ6YYVT3HKIBcsvi4FpKP4hZCaOfIKP7zrQ\nuy828rVnR39udrHh0qYdFepn4NDdEqtVAum16y8kmRhEEHIH1IW3PM+RNWvW\nhg+/V72phxdWBSG7ywNCk4R0OWgw1047dKhRpQQJ55PJEnOhKmHzGhXhGKto\n2HWFy9kBiLiO0neONLE5Zg9jVUOmvUYVnavTycAaRp4BmAopLVOCv87FfJjq\n7MBT4kyT1HihXdhb9hgfJBGDB0B8KpG92hILh+Kn6ctnlWHLBfg6+pLLSsqR\nfEcnNmg4AL54cemaybuAelSY2D2z0oZD+KQxjYA/+DerHuoo6oN5L2a1Kbnu\nnSMF\r\n=No07\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"eab28132889f9a16b3ad8f1c9a96d530e16cea2f","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.2","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.0","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_14.0.0_1562512122136_0.3220558269964757","host":"s3://npm-registry-packages"}},"14.1.0":{"name":"eslint-plugin-jsdoc","version":"14.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@14.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b7702852de1ec35ba1ee955b3efd8835d369b874","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-14.1.0.tgz","fileCount":73,"integrity":"sha512-EmgZDOdSIzIzIs7xe4CniFrwMrlQGp05BjINiWTpXRFYhLVXt8nUg5qjJUstFiCaatjYgNp/f2O33JwMXgQazw==","signatures":[{"sig":"MEUCIQC6ZeMbEvDzKyp9oO8TwZ7W7TUd+kjvwzV+begQ2p9a6QIgGh2PVJWk+bM+bdv1rKAn7eTRjzAZ72BpVGbJTIWeX4M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":504901,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdI0j1CRA9TVsSAnZWagAAG38QAIwxCBqJKzHGLgkWqScR\n5Zsr6VflFq5VkJd+9DM0OiM3LrQf9UZwCK0GdXxw/hl0MjLZJbFUE3+emqnP\npp8aNHj9pzkc95S49SfVHFANalKX9xF1kXTM4gqH1BRBEGzlnq+s+0QqQHA7\nRG7ALJucamuEkBtIWhgrEPM5sGPChhLLaqI/CY2s20lRNozVrbGdB/rGZh0K\nMlcfz9y7X1cVclPAV9QoVkKSzrDgzqEkn9aXnBf/zjD93gBpiOaQcQVeCG/4\n4gKKrSx7Rdde98eeixmgL3UFy/x+wcytI9lS5JmPtT6QjFmhJ3pYFVkjEZRp\nPrZvbQgHpz6QVpMSLMlIDcpbhetgg+c2AjoS5dBEnVLOrz9KBagCjMACqjT5\n7rtEHtf1nsrDq9GhrbLcvgu6ASxh60M19jEHAgruxULlaVCIBUCKo6ryKw4/\nWn7pQE/8l+3AxoNxYuUFSinfCDhqlsYTIROmmzAJVW7s/EMMvdhlkGqsF+F1\n3C+UI2l5aCITEBh6A97ttP3uwiqAPuUA7PbXNFDXH+Zn4Hl3X7CjUTJch7Qh\nGHT3h1bUdMjkaG2tRV52eKlROUjIyN6qvfmCg44zTc8wysj4Q4uuUHQ5On3B\nEkxRKIQpvE1l9lpwglfWHrQLriPvcYnWF6vX4zxrVZuhVJMran4p2QqJ7W2N\nm659\r\n=mPWM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"9263fba04cfdfefbeba106c7f20805ba211ba826","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.2","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.0","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_14.1.0_1562593524074_0.04808645814353474","host":"s3://npm-registry-packages"}},"15.0.0":{"name":"eslint-plugin-jsdoc","version":"15.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6a757f330e41c57ddc1a12e8c5143d52f66286f4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.0.0.tgz","fileCount":73,"integrity":"sha512-Rm31GAOLEcGq7GvJOW6aOlfKTC1tILQVEQCpM/CzVtkZlF+2QdA13sqbmw65QU/H24Ry5D1f2b8wtb40bW+7DA==","signatures":[{"sig":"MEQCIElE05bqcso24itApFW2BH1kr5JTYNEyXqT3U6RBkIpmAiB+L6x8fqAHKAOLS7WeoaEfY5eyqTyi1367/1M8BMj/dg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":508539,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdI0p4CRA9TVsSAnZWagAAk+UP/iVhlh5L7dKTcLlnRwr/\neCmVkkRyEFflmWa1lo553X3ta7FomV/6C5rPqZIuKbsyr53KlTW1HXD8u2QR\nMZLauY3Yqs6jPCJR05GPIxiYg8vdoab6eQUidSiB8md2YL4YAKNXfeE/nz1j\nZBiQMlDnu1IvSToPg7qsYmQ3MbtxKGFFFop8kY2HvaXVxSYzVgjKxyrpKHt3\n7B2ErV84xkcH8WCtvsOH8bU5Lv+jwxmTK6NvBXnSHQBTS6PN4Nr8G/dXAqF0\nNWKnKLB+2X/jJZfHJGVy9bB8iSJdJKtNx/YJBEf06lEgxVYE4YgDdQEQPWl4\neFnj44Pj9GaAUrV16h7xy88gcR6rqsG6MTcGlBimvSeIjFD97GB6jHWuLCpd\n0E3BgIpv/XKwSP1uXQ4NY6oML3hPKFoikC9QbYhgb1cRZc66uFKiZnrlI2By\n0DdoaCCLkwOippi6Zmo13C6g0t60uEXKrERanQXCtqUUG3EDWIlhCx40naNT\npizBxOPsD0WiQUy6rTRU2YO0Q8kJd7t3wdq6NSA9IIGIhI0IZQPXSWQrFMAP\n1S4bwqKf5d/E8R05HZ0pb3XFE4zW24KoZ2E9qySl/eKeraetwRQ/dfc4XzkK\n6U/ebu6YzImLMzovrj/zn7Q2rfDrgJ1Ic1XuMfQbTZD227mH/5YYvdMhONl1\nAqOX\r\n=EgTg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"616bc835e026373cdc2d953afeec9b1b9e486034","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.2","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.0","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.0.0_1562593910992_0.6152593026013875","host":"s3://npm-registry-packages"}},"15.0.1":{"name":"eslint-plugin-jsdoc","version":"15.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e086c8a884b88b01d04b72ff2d08670b29064b4b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.0.1.tgz","fileCount":73,"integrity":"sha512-Ya40lF7vdwedbxKOK32R8/JZonC/jpjWAa3aDCm9f2n7+dvZjwihXqDrOU5FZB63+EhMzFNWygDSYP5MroOpLA==","signatures":[{"sig":"MEQCIBG63Y7+3oqbNq/Q/0haab38Uh41w+cqPlGX8Msy5oyPAiA0bgBZzIDuFHniCOL9oywfMwRoKutigVAijCHt78+3hw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":508746,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdI1zNCRA9TVsSAnZWagAAApYQAKJBHHdTctDHFON/OuQc\njiSGSldKXGfn/PpgPRykdIxb8hjvR3sO2cs1va4D1+AsOSBuRY9WBiT6TSDI\nHQiD/H7/hFTuTlcTMssh71Jaco1dVct7AMt8GfqbCghOBkrvTEstbs12gXYv\nybfU7ewuqkE2ZX+MZCkzJMK+AaMeaEaJMTPHXSeO4+BHZ3zF+GF6mxCTmrPM\noc0Cr5bHHl+rz4mX+1QkEFUDjWglPpC2FqTKh37inPhT67IvkxIkQhGSEu4e\nJO12fICWLbSegaDjc6Mk3MGRMy5TqnvUsMHwe/m97Eq8XpjY0ZxdxqiZTtp+\n6Y8biqRdQzF1gTA0g21buncN7juCnSU8VmLQQ19me+mPZnyqhN+cb4hCIem4\nPibhAtmzLpwju4MCDP4/dWNEf0ilRy39I9kMu1sh1JQ7C/uXQRXZ4fj3Kx4p\nDGY11FojTQVDj8bz0llHDoX9p1eRXRqeGZ0TEahZtRzYvsfzEzAxuzH5gTbe\ndem/oziLWOnwC8uylUe55scKlIvwNmq1juPHo0zsLCFykc5goIFcTDgcJlD2\nuztnxcb1cdKt8lfgTNszUd7FkX7uSGOcD/srm8ZWEesbINtvnm42USKr1rbX\nCDYZcalnV0jC1HgNKyWlLD5RtBy3sQ+h76xLe67yU4qwNjojB34DJf9CeOII\n3yXj\r\n=/NmA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"aff7358e0e794f246d2b2148ce192413d66f469e","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"4.0.0","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.2","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.0","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.0.1_1562598604489_0.31957365194928067","host":"s3://npm-registry-packages"}},"15.1.0":{"name":"eslint-plugin-jsdoc","version":"15.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"54aa67d4d55e72deec0d4e979c17368eb2531231","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.1.0.tgz","fileCount":73,"integrity":"sha512-0+nKcx1zEcRlKcz5v5g+GRqI3cqs2RtaMJ1Hl5Q5254OkR/WKYAdFKgraA3kWrzrdvQ60cqtnfK+xc0NPqnNVA==","signatures":[{"sig":"MEUCIEf00ENaHaZbp8xoD9Oo0rxe4tE8fJC9BPYm48wbNZLdAiEA7xzkVYZcDDWJQm5ePBJe242R850g+xFO1xx4+x668XM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":508746,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdI2taCRA9TVsSAnZWagAALroP/jnLGR5tqJgsVIu5CYMJ\nFLQJE6EVKdhIoLbCLASJtK0FIfiywR9I2CM8Jxzksx/2qJV64Pgvsocs+AAa\nr/qMrp0KQ3mqlSG23Lw8kaM4f5tG7mAARMQnxPUAfcTuBF61x//Po2ai0PCq\nuxekWiUHezJnE7kwz19oUGTI3d848hrUT1rjgeBG5DjtOUQ3D4YDMr7n3wRC\nNvE4Tfyp32LnDddflaJxeUC7QDD/uVQKw2+zDNAUmgTJhQag9byDa1AzgcIX\nv5xzkK/T3N0N9OVcB/0SAsxeyD929Tqv9CoXpE9Mz5l96/gacwlIxiMMzCrT\nLmE+5m+NHRmcdq5ckoXx+QfSB3dtN4qvsLFt+Bs7YV0li/ufmL9Gevygacyv\nnEv193gy+YpHrJNfxHuXxOSkghs+2IuvEISNVccG4rjPnqX7oHOKBSbe5nQY\n41jElFE2Kr9AGu1uiCgWPfQcwKfD2OlAY3qbLF7dUHBSPmNYV54OPargKWuM\nYTPH7gDYQSksuCtQ7r6YEeeUF4LX+rYusNuARj13oXYTz+UlaKFOYtNXAptn\nQ8l0M1RlaPhpIHIth+y02kkfXd1Py0RBpqbMqvI5PCsh1NPrTvzjiwK3BQEj\ns2AlbFcGz//vNeHdMBZ3LTWtDfXspAz5v34+0r05avbR4zda52sUqSzNy+Es\nyGf0\r\n=VLq8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"7400ee7ca62b5b5c98559ba0d4c5bf2e801d4bb8","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.2","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.0","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.1.0_1562602329789_0.14173657021569763","host":"s3://npm-registry-packages"}},"15.2.0":{"name":"eslint-plugin-jsdoc","version":"15.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"320dde36b9cb0802163bfb02f801fdebdb22825e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.2.0.tgz","fileCount":73,"integrity":"sha512-J4cxzr45/3u/3qBTJezJB5ntNZQDhxS5CzAgJYP7TJ1w7/wdwwSC9x7ia1WjVkSgDicqflNgr8kDf3gr8Hwfag==","signatures":[{"sig":"MEUCIDb9iK9HxFzwYueD2z17u0w1rNk9srWOmn7Lt15YsjdiAiEA3u0GNF2tpD9fhxT39T0Guk+SBjsdKV12Ptb+r6DE4iM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":508904,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdI43gCRA9TVsSAnZWagAAcIEP/3Pg+5HOxnzC/m6jFX/4\nWhqO7JIXPMscpqk4qB3auv94wUWJzUzB6FH5JXqnKxnQGSA5KVmqC338j+Ar\nMm4/hvtzMQ48K7OTYUfgCEs80gUNRCZIioeV5kdUjkdS2XUQ+CVY5XmX6cO0\n8bkyZ0mmOKkDkFmrD6Lf2EyQtTS4XxlkAhqoQgJqbdaEPnY1HoljdlPhO1MR\nJhk/TToZlkSGF2DBtMWQWpg5lA6j0JMM3HT6jXLVSEO8V1f8fJzzzrEqKr8o\neyo0aWxwhqLZLZtn2JZn/X+KsOt/rGoBpScPXAWQbMenu8eQ3KhYPfH5tAIR\nxjT+uAnCN1ewNSwDrn8qy1Qo/pCpO9xSe1TWnBBmFkpOapriWp/HnYW0QAVT\n0SosyijToJTyPnzQ7tOf8SFCU3hXuKLMlrzB3u8G7vUihGzq4Q6kdhdgqfFr\nkV5JvWIIKGfZEWB2VSRBJXGZnfaBREfUQdbDC1zUN0rD04wMw81AEm+7mAVV\ngbPvkHWI2p+0s3VKjfQrpQAFzSVtoaB1qJaggT/UF+FNXyjMfvhluB9gV1kd\n+lbOqgUGdd6BWvTkB6GfnyQgUYZKS+tfom93xLaRnkNjoQcvdknASk65tOqa\njF46gA263/EiHDaNuLFjlg0G3b28ByKVCtQZYQ9+h2oi1OXDmiEi3+3HnKXC\nC/dh\r\n=m7og\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"9fe498909f7a2b5a005bc3fa993da0dd610582d0","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.2","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.0","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.2.0_1562611167487_0.420073321589852","host":"s3://npm-registry-packages"}},"15.3.0":{"name":"eslint-plugin-jsdoc","version":"15.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"501e3ca70d3fb83f8b8dea398a471ee1cebf99b9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.3.0.tgz","fileCount":73,"integrity":"sha512-xBOQo0Ao9VnwvLtczFSfSdh5l5CJypu2gT355x/WDkqWhIkXwIkxnQ8VSlSwl9mhNIA82BaN+mHzD2IWGS9Vaw==","signatures":[{"sig":"MEUCIGqyl5Fa21yTq5vtUq3zdTBVSUdSpWCrBWbUrRuXBujhAiEAi6rekNytNkR+frbtd7iAP59WjEYvDe+5gAEhPLZSkRQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":510221,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdI9RdCRA9TVsSAnZWagAAMQYP/jqwSCYw3BQNoXflGvDV\nTKPy1Bv+Qmw8Zt1mY5bfhez0DdGhOKQMR4DfK+TehrRRFNVU8gUtsl24mbiB\nLT7LfFkxoP4hOIhLFG8CYaYo2Vt6qnGI7CB6SjG85jQDDL+68/oKo43R5Vv1\nxKfjwtinK4MdOXIaSv4U3RtL4RTp/reCz7COxY+VC52AoZbOnYtPkdWlKW+H\neWJtBslVYZvx2rlODIzDviBGxTGJjxZrsS8X+Txqs0EbTc+uHTq5j1NdOoVK\nn33BcrDUhhE3V25wXe4ezXSl1zPwZTnjzQpJBl26bO78mnvkpIm3zB7pstGR\nA8n8ePqBkBKHnMzFDyDZy1vqNsV4whNf3ps4NQ57Dlw0Y/bN9w0beWD5xsyC\nhAZ03HYHOSKuO5r4nNtycY650IF7txgm8t++PEK/QHDUtk+vyMxF6fbVZNlL\nR2/cv4bKeFi6vt7WWYM7cMuTN+zjXDdOOizubVJhmebTnEdQ9Wmf1ZtoUQgF\nKvKU+VvfYozbUeGU4/nzRTPke6KpozyoHPc3dDnn8E9anb9gEiGpDgMYFW/Y\nZIjxMnYvjb6VA8l9DWZSWKeYfjyuMqShEwB9dyzxLCaWuwg+qilYTWBu36YI\nAUkrWNk5uyJ6/HQgFh6G/XnXy8zzmbLTEEy/HU3D9xnpOzjVu5ZSjXoK2tVW\nCsYM\r\n=Dm4k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"87a40f642070e8e72f65746932ec8e01f987013f","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.2","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.0","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.3.0_1562629211765_0.2065287820708488","host":"s3://npm-registry-packages"}},"15.3.1":{"name":"eslint-plugin-jsdoc","version":"15.3.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.3.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d220685b5b1d2f553527249c14f5e0ca60614961","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.3.1.tgz","fileCount":73,"integrity":"sha512-de7EbMeIrw/dM4d9681Y19zuJQ+n/byXAnk7fTGAmtWaqItZr5XyZ6aeG4iMuUyZOFEvaT5zVDtgXNgXEivsGA==","signatures":[{"sig":"MEUCIEBdiDO6iPJ1ye9ZtBw36uQ+p/IiLWjrS6LgQaUV8DGIAiEA73jnJKNqEW1uEkGiCcVYA0EsiDPILv89U4ytYgujB14=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":511124,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJB7ZCRA9TVsSAnZWagAAkXQQAIKCqRE3/Z/SfJylIa5b\nqs1DwmlbrqrAo5XNlGhiM1MNZejdeKeo3P7SNRop9L1sC+qrgd+IpUnf4Ana\nbf40ZTkDt8tyo831Do8kJtj6k7trqRo8Qp31ppfo/EkyRReD6ryAtOmmxTYr\nAxyMxe7Bl7MBDyFdZDp7Q9mzWKKyObS3hSCdEfuZ1b4qCk8Cb1OV+ghZMeO2\n0/EM/G9MedXxwgHUmST/AbitCVE9wZKQXIzMsotJv+ZeXr0S26Oer0JyVxi+\nYPfUZwC7TNomUhCaoHtK3JqbUI7YW1W+0GbX4oreKqm7TUqM50/01txXvarA\nFWvyw6+bo6AZUzg7jcuzQI+M5VfUXBPz0f3FHd5+ftGoij0CoW2zMWHRrt3R\nu4v3p7y/HaATx+a7j/+gZR4CZAI5z20jQABoCH8vnXPltI2UX8PfKncOIisn\nK+4xpRp1Rr2Eo3bD80oUiJqPzOhbntFDCTp3Pmulr3Y5SwyFkK+YZFuNOwXt\n+x7djdSV5jOc61QLtTT23FbP3HxnhO1EwDhD9itprCIOT6tE2gygcYzDKm2G\n8i2yckQO8UGcq24cEgTtOr1ei66j4uID1JJtBztTgLbxVlxl6Py6OV/Q2H/8\naAJDBELdx3BEK3PZ1/0d3Lnabxu01xs61tASm577EkQci+ScDZVSZMU5NGb6\nO/31\r\n=su2o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"456206e0c548c0125ca220717d9ed14daf78109e","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","regextras":"^0.6.1","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.3","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.2","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.3.1_1562648280560_0.2558601835883918","host":"s3://npm-registry-packages"}},"15.3.2":{"name":"eslint-plugin-jsdoc","version":"15.3.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.3.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"222e3013101c59ebf10b49fb2d2accf5e5eae677","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.3.2.tgz","fileCount":73,"integrity":"sha512-EpdXvRO5oS1mxsD8Jhkq4f3f5ZwM+OxJl7J93cw2H+XlZpu41Gl5n+dohDnG1poq7x6HRp3ONXHFWNHZ5n4Wnw==","signatures":[{"sig":"MEQCIAZ+RqnHqm5EplJmYv2y0ZLNOveQUprXcomuWJ4IAr7rAiBYiX/GmGbdjaCjvhEosHHwi5iNXRVx4oRpGVQQ2KTA4A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":512426,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJCZWCRA9TVsSAnZWagAAdZ8P/2nStLSsz8OETI0KEl5Q\n9edt5A2lPSdyrZVTIgkua6lM6g5PLW99l/dm1zzmf/wEQ4z9ign1tOw85q7h\ncVLScr4127o9nspihnoF4s5EG5e0dhxNhan6+vvQtcNNTqR6qSjDtovvecrH\ntyidS0bxhU6wcih1JxzwKtUblXdd2KXG7462O/lpq2OO+wgNXoQxSgALGgQc\nBbSFD78BNbBQ3uT9RuVuKZRvMxZ/xZlprGWggkJmJcxRD8y8NSxvH7lcpkWa\nOY3Q4gWg3uplx8qIL0WA7yp3wl8rjGvhJghUxK73NQsQE8ED8kYc+QUKvB3i\nJXNgJ3u3pqK/MRZmTGCPA94ntAGKP+IsIUTqNNoebIrXoZvdRPdCd4t9bZM+\ng7PU3wuwUNTc6Ymo1OlDVOIuM66Spb7VQVTK4Ws0jO1y2tq10cpMVdZGmGct\nCPB0Xqlvsva35MpqpluCX26HPbkqEbdHlF2oa6GXdDAo2F7wuQUDdXM3T08s\niOAbmMWqfg3E7r4Baz90y0AGdI2aM8ktPgbE+YRETVeKE7Y9QgSP/sQb17MW\noz/+5rxPZsM1n3fba0Xz49TLmgDB7pXjHTP0V03N9vRjDHe4H/obpA6GTEX/\nCAVJoMl19krUFFxSgPfU6H2QmLjygZr17k7bGodrdbiSvHzdpIHG8lNlEw9+\nfVOd\r\n=cIWv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"37081d2ba83d182bf295828d5428bf17d6605eb3","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","regextras":"^0.6.1","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.3","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.2","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.3.2_1562650197062_0.3118125064704933","host":"s3://npm-registry-packages"}},"15.3.3":{"name":"eslint-plugin-jsdoc","version":"15.3.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.3.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"667b73a8529d0d8324dccb5151323045efcaa675","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.3.3.tgz","fileCount":73,"integrity":"sha512-anMcI7C66tVB9CTQ8/1Papz3ejjXDxQbOI1P8zWUtiZsuVz3U4Uy7RU29F2pH3pBAJOWOBvZ6smcGKtewn2PXg==","signatures":[{"sig":"MEQCIBxok++LS+ry7g4XxWCktFbUWT4oGDpiVbqMfOCHLk/wAiBXG+eCanx5kuXt0WJTyc5rsUnUq3XvgJKIAg+pm6r8SQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":512590,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJTMSCRA9TVsSAnZWagAALngP/iBVh5taWJhf+ChKUrA9\nxob4rNyoLlszOfMQtzDsZbRA5E4Z6MRJb/r3TleuUyfFGE5i5LxNT175CzlY\n5cQSc5B9054JEWZk/Ae7eg0LzZTds4BZDlFqOd0EuXQR+gMXR1uf35RqpTCc\nXUybtxyO2t8li0wU3v4hgvjBAyyv3YwvDMwntY+BBnDAusJOSSSHb+dQly+Q\nOUT/oX7hokqPPBJBK+ee3HSRS7ViH76Dxjduyd4wRoL1AzW5ToabSX2tXh0z\niPrIR9fNdJFXYBxoRpD8enybA22N53nwz3o/ukarzQUZmnlW5PyBZETgibtm\nSyyLYEZmE8CSZRvvlZE9GEpv0JhM4A5o2eC8aRc/wRrqVMtKd0eLXaJbEjVC\nzVa3s04g5oF+qPIzD3q4V0RjYD6gsHDbL3VIx6xsSyNF81PLPFrlQZyr//NA\njmSI6PG/1EW6+nj5xpzSoJyttlCVB1DaNP821YtmYyJVrq3QfOq/kxue1TD5\nzfnORke/ZD8fl3YamrOINdb0+QAGUogdjGYIb6x/PVpfreqrI3VSUEKPW5Gf\n+UjDUHbisdlsiuzX0aGrQkoeFMqT+ltC9PaStvwEBhpiUkHP680y6Uid/pC/\nS4+KlTlGHLlxSi4edQFGQeGmR706AVN669M1h6kD/iu4dpvb7lC8gyAK064t\n0wOW\r\n=IVEJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"4049db1ea57adceae8ceb8ce38e212c8851711c7","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","regextras":"^0.6.1","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.3","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.2","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.3.3_1562718993135_0.8116216730130517","host":"s3://npm-registry-packages"}},"15.3.4":{"name":"eslint-plugin-jsdoc","version":"15.3.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.3.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"231e286e96b2d70fbbf2993cf811a58ac6737912","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.3.4.tgz","fileCount":73,"integrity":"sha512-XHBnx/Yz/RigG7GxPeqR9rsrWwPUuNSR9N2tAIaqlqJOFT04Egncms6C8xykCbpBILct2auL32ZpBL5p27qoxQ==","signatures":[{"sig":"MEQCIA0RDaioA7KOUG6WCY4rxjxXa1qLD17QD3q6hJqpBe27AiB8+394YZO4T7XLJJFbFrPZIysfz2TunLLMOdWbTCGZAg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":513692,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJUDXCRA9TVsSAnZWagAAo4kP/jj26DxXSG7dgBj19lWx\nTNRnqx68pwdif39XWmVtDEu9Nc17wNX0YaIOVoJYiaxwQNGwTSZSkvVj395b\nmRvDXOU4VkcnTLcUfZrDxXVz5tYzaJJIgRxiBs9PQhYrzdpkhoKtag46pfcM\nIC1tv39ZWm5NUKWRDtSmJ9BkhzOXB/7fY5HAj8FyVmNuSm93YUFJODzt6u3/\nCEh29oJu1V9vLySyjsNvWBsCOfpro7BIsR7J9pijUXXULn5xqy7F9YVzJcCb\nB2UQRWql9xGxE3NBVCz9mZy74A9N2RsOg2vT/6PGY1PUKIKFLHlnwXzPbKXo\nh9zubinhbh4xXJIeSOZbgjQ5KGUi1W5LaKWUIBIP19qw6pculCOtVab6vAYP\n3dZ3806KEH44oLqndIAEQW15WqBlYy7gMDkDOtOK+trqOrkqZahKxFUe2gTk\nkuDgAUQOR7HPLE1SolxwY3MFFzA8YLGGYpcBRXx3Ela6ye63aESCPHHiSKS4\nfBM4QNWvY32Ov0l6tusb5aCRdF+Sp2lbmrIdDEWLVpHFsUirJH7JLDU1UiaU\nKyS51g4esXGTJFhaSJakLHG10vcI+F0CCrKVlJeOmwPDvvbpS2kJebT2uZT5\nUqD7njBJhtpK9cm0LA7tni/dnQ6wVow0rXgYhRnz5AIt5VsyDllQX6ZlzOIK\nsEpM\r\n=kfWl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"006c14055987c600a080afecbee3e21c26d8bb59","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.11","regextras":"^0.6.1","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.3","@babel/core":"^7.5.0","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.2","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.1","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.3.4_1562722518571_0.09464164206347148","host":"s3://npm-registry-packages"}},"15.3.5":{"name":"eslint-plugin-jsdoc","version":"15.3.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.3.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"58c637fac399d66b924d7adf237ae33d492ea2eb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.3.5.tgz","fileCount":73,"integrity":"sha512-yNeXw2o5bVB6WsQqKAZ5Kp3TVfZYFWi5bR/p/pVTJyNGHolaQZtyLhFwTbjiFcgZBKuOE6jiuLugDSGDkuSsHQ==","signatures":[{"sig":"MEUCIQCzi8iG4JBGwc5TuB96z4Q5agWZZeVTUcpJUnfB0DWhFQIgCleyQ7ZUl+9u2bBgVfjDeZESa9xlcVk9khCJZZu3f7s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":513437,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJ4EoCRA9TVsSAnZWagAAZOMP/jmNsrqUO61z8hJl1u0v\nMWtSSLU3c719g7XNqA8QqzxiWjTyqaor3CwTpl2d9/8Ho2kM1LIozPh011d0\n/Ad+ZGd3uCR6XnAVV/Ykdep1TnzgjbvFQufB9Lepd32bECT3E8JrsrxtKr1C\ntKNYiKdgCJn63RI491leFfNncLwkZYYfznbpkE9zCSihGDFTWKEV3drUmUVu\nRenVoOVLhD1nI0bSLr3wjzEzBoY4g2VJsXjYZneFrQSHqc49gFK9bz+VsrOQ\n2btcbPdWRprFKC3cXxDxwGgU+PB38A6I3mAGuXiOfdA0qH7PT1rUE17HUwwR\n+BRykYJRQDjl3kPQw55NDNwzi8G1ma15ZisVoApkI0e3AhqUT3C31Fra4Qfu\nmJPPOvwCjpaTCsM/oSkZbWbVMerxfUgKO81dURmJyC8878vnlv2qXOmpTq5T\nNY7DY7WhHDp7Z5wmwGUVWzNSjQ5mEFtj4mwvUPn/aqZ0vhkhuLfVeyZOHOug\nlLUbDcdv8opF7t/tBcXqsrUoMz3qAoZnp/lh+UERfSlCI1B9FF5pVbKVzIlN\nfjh2ujArW01qTKsXOkKEHuvH2nTsNXh8qyEkdc6treilqoyK4N1U76+dvEZB\npOwB9rgfz0TT6Y1g1ptpP4QadYipEd7lfR+QnTMQmXM9J10P0lv9g6xAAELL\nJDZt\r\n=9goL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"b7bebd13b54a26d71cf2f88b1db33458c626b9a8","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.13","regextras":"^0.6.1","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.3","@babel/core":"^7.5.4","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.4","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.2","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.3.5_1562870055281_0.12951092844977974","host":"s3://npm-registry-packages"}},"15.3.6":{"name":"eslint-plugin-jsdoc","version":"15.3.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.3.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"30b1021ec9e2e9f71408c3da3bbcc53465e4cb41","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.3.6.tgz","fileCount":73,"integrity":"sha512-5HYV3+H/7cFSWQo+aEjxD0rMRMwOX7kcOmX3DsdZ4Bt3qC1Myhla22wDALDP+s8NzfDPrUk6TR2H1QM7cPV5LA==","signatures":[{"sig":"MEUCIHwyHuoM9s3rljeMW20NhtfHs/ELCKu7yfRk9Q/VCaa1AiEA9CLGma4uTJraNjAaZO/4RXxRE7EHaghxD9whs0UXdcc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":514604,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKKlVCRA9TVsSAnZWagAAtlYQAIIN7vcFbWJ2W5zir0k+\ned2LeEB9ugqMuLss3+m5sLAogVGdm2E8NKqdVK7lTAOH53Zt3xma8MkSZOAd\nYdKsiaHVfb0YHPc2d6+bI8YNPexDikB1ti1XxgMgJyd9SBK4IjMI7YWIMtfk\nzKAUsX5fje45cdcD37mwyiUYos1INWmiRGjA23QfFpZIzuOrbrkHfGYjJo2B\nhXLK2deesAM+JO8LS7/qJEn4qcvMFEGPvS2H4yAb8FtwZ8GaHoqYOIEJ4gg3\n+vaZPXaNsdL718p/fI7Xq2gVrpIqPruUzK74PED9BFybTRtLyK2er9NrhG9T\nVT35UpiVDG8R3TRtchp1hAYaf+FbEFj1ixS8cHnRVJ2wgrVj9Y6niUGUqVr8\nnUMd+7M6MIPg3+yRw4E/Er+smjmyXvUh4zcptStlJsRojjQS/3uoZD4Jjf3L\nDJ6kEb/kJzPDu8k/kEmIgr7cmL9V2V36O26QxQMohrY0nbtR3G+tCwz/yorr\n+WK8NzPBeio4vVNw5oY5xL62JMsY3FWB19UCklubTE2kJSL3DLsKbCbnAwz0\nakqM5FbZuBM364H0vE/+7VN6ofT5NHFoTnRYgae0UQYVpWR4G7CR9JBpnSSM\nQpagto/TunYLQVNDy6FD+lJR2aKr7YL4XoRWD/PanTv889a4W0PNL44px7y3\nJIHt\r\n=nOQc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"9e399148e1a9be2cff79d8874696fb6c98ad83a7","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.13","regextras":"^0.6.1","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.3","@babel/core":"^7.5.4","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.4","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.2","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.3.6_1562945876262_0.37476954008728014","host":"s3://npm-registry-packages"}},"15.3.7":{"name":"eslint-plugin-jsdoc","version":"15.3.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.3.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6117789c23caf7fea1c16ad6f9ca8f75a8ce8530","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.3.7.tgz","fileCount":73,"integrity":"sha512-0jA8Ngl/gyArPbiMqnIL61lSICC4q9ILLASoKwOU/p43lFwBaB/HQ1UH0GM6Xj0WDy4jM9Vbyn+6yKVSSalvIA==","signatures":[{"sig":"MEQCIGgMqyNAK76KXZgjsH/XRYTeoSD092TZL96rcdujtxBHAiAs7gqV1ld7UFn9mEczTH7CtnD1fMih1mYCVj1qfDZpaA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":514898,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKLhVCRA9TVsSAnZWagAAZKUP/1ZBtZdIZKQjWcHizF8z\nn6Hw6f3ezKDQ5I3HnHCHmBYAk6CBjFymioV/Kr5oyl9qx4IVjD2iSI3TaBRN\nDDfq054t9jaVpFOCTP6UtzQAERmZyf5oTpCzNV7fLmZMYjh4Nv9w6QfgpeaW\nUQmQMX8AYG2erfSHJ5lDFEgn3+/kYTFW//KUjkwrQdb4X6LCa0esJm3VO8Oj\nLD4feXbBlVZ8VWOtkaxzxicrw3dE4dBdOZj2tFtUFAT2KVoIRdSCJXCFNUCG\nBFX7B0Eahzjz4SSZEpGUiM+mv+gdaTPhfy7cpk4qbS4RCmpWGLPN7dVv1O3E\ngXCossceIztmRw7aPGzA3zrX4iwzzs2L8FGyx52t6ocWaIlMnXwp0DGN9JQ3\n1e0NofRKnCPbryYpOoXhVe5lB5M+QiindoYn3BAyWZzB1V403aLAu/bkOEMz\nGB7J74MF+vPOc/XH8fEZ4pAG8xJAXR4jQkchIYudIiVUSAM4zGllrKpAs9g3\nwmd6OSwInXZjSvn2QRuyToXA9+/nK6s93GYdcSWyomU8O6J6LXm0239ntck7\nsyOBl5MmXKhpOBUHfGynYilB2Z5oDsrDY3QOCAOAEMk9qJGkfEpr9Ce0vyiW\nwG/R1ktpXTIKNsM+kQQHHa+p81DuJkVssZeSWbJ3tITF+9FRQX5OMcX09aMW\n8C6r\r\n=CdUd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"57f33da01c33929c9e0bef7c489807f3d173cdff","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.13","regextras":"^0.6.1","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.3","@babel/core":"^7.5.4","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.4","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.2","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.3.7_1562949716502_0.9448749601993691","host":"s3://npm-registry-packages"}},"15.3.8":{"name":"eslint-plugin-jsdoc","version":"15.3.8","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.3.8","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"43a94540a2b3332e613a9eaa5e31a40b974d83af","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.3.8.tgz","fileCount":73,"integrity":"sha512-rPKQT4b9wenm5qASU5BNyHeq8f4cesRIoaDz5EKRMeFsSgwzIZAdqi/gor6fWwoosP5c0req1P42WSwmMYvoWQ==","signatures":[{"sig":"MEYCIQCkkEGdAMkqlK3UfPnYJRPBFc6dhTpJo0TDZ9pWV9fzewIhAOCMAFcTckMWNQnRpt1734ggMtVoc+HuR0tv7bMJdgod","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":517509,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKM8RCRA9TVsSAnZWagAAON0QAJ2dDv9KlUU6qYrcC5As\nk2cI0Y7/AVcdD9NHixuWUTxHIuQWneEm+AJFPZxWlYiA5ZexuV3cZcSPo7lT\nz4U5ZSdvJCATiWPB9nMyIxfoDcIM+I6abcCPQ1dyzn4e2GOmdqWdBAtbJCLD\nwlNZFV0YsGPIRrAKeHHo+BebALkL2w4mt92z5xUN8CkIo17Ult1aCRMqqVcw\n7hkipNRfQsPz2HEbYROStgsiUYAAGRFsKM786qACxOrMn6lkzB1fnJvIngTx\nVghJKqDhzfVauVn86259Fx2va8UC/CxqMOrqopyk12xydSkkAzaJzizqSTnl\ngSGW2aZizR11PzKL2ncGz7swhXSIdXhSKI1tIfGiCdG2JOLXQQljRBBYz+PO\nw1vDylYzHg4UIDn8V7dMjbAUlCISkRGC/b5vtF+vnmIK9I4Sy3DgLqozFe4H\n17+zUUXQmoIgQK8VJ4gxXlo0X75uy8HxXpn/LAxv6K62gL+j4AYQGCGoib1f\n/AM8EWaKSm58gd3tmsBfB6bj8AvNnnsRcuAaWujDG1y2cpecuKkTSyyvHmlv\nuTRRrvQlS4dmbpDLoLCcd7fT43g0X3p129GuFJTPC1gVXlz37xhpV4OhEtAf\ndUw4FoHDv+FUmH3u+ZpyiHeHPA9ldnQHR4gIWTm3+Q4lVmJBEDDyfwcIUQH1\ndtj0\r\n=koSc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"78f9b61b3a8e0a4c9e0496d79589c288f7f7d511","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.13","regextras":"^0.6.1","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.3","@babel/core":"^7.5.4","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.4","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.2","@typescript-eslint/parser":"^1.11.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.3.8_1562955536029_0.7187818342179577","host":"s3://npm-registry-packages"}},"15.3.9":{"name":"eslint-plugin-jsdoc","version":"15.3.9","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.3.9","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"249f970c16724ca614c0e7032df4133255e4ca96","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.3.9.tgz","fileCount":73,"integrity":"sha512-+AtEL1H6bA5cXLHOFh/h3sy6scJ7QMNlTUXYm88nQZfNtsXfc6Is97IgMkqOSeoisLfbUZOCUIV0yXgg2TyYOA==","signatures":[{"sig":"MEQCIBRSbVB9yBzKgbpTRpMla+VwbDvvqKQ3gF8YIwVuFHaGAiALUI6IXY6aG4Ch3FkszNV56tOxrtAnWRc8sc5npfrgEQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":517681,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKN+KCRA9TVsSAnZWagAArbAP/29yVKRv6DCSVQ5p5MOn\nLpbCLiMB18YWcM7I7bspTXBOt8JyBSBfCV3f53fNWOFcpMz0Zg9QbdLxsLxh\nEZk58FApWKzxDjPfMyhF6xT0HLI3OQx5gDE2oULDBzwDuOIMA1D5Pdbbc7ac\n4d12Kcgju0zKpJ2qCkZehugZBaqR4GhWmXFCmWMWLvgAmPgDBi8ERsypzWkp\ncylaUJGGk3X/IR9WLWB2CeZ+T6ot+heYo7myA+pQSHauZnKT7EaWqMeyPYSG\nLH2qzUfTrWmwF6wLPsLUze8s6nWW9YAtf9fbJRPcncjdrxF2Z25jU9gUwcYo\nj2wraEZE9FfiA6/HCBrsjdHxIKgKvMIe0D6YcBn55mZlhpXGFE4nFgbx8S7T\nip4vrDoLkavbNtVMs1RW2u+1S9E1HRP9rlExowDPdUDP49VdveBL1DfSo3Px\nrFvwhWlC1IXx+j50E4fdTXDLy2y/vZeJk0AZXUmVrOX0zwgzcvpECmcoXRtY\nTN1F7qvkNJc34JsDbiZ+T34QiAC1Iq7C2g0Fi7id5HvbF4PWJE5HLOM08rED\n7mLBK5JHkJX1905hDdHvfzFr7dBeBa8qzyoaQaBVsr5M9Kv0pBD2tQdIZ4El\nSxJ2VItpJ7ON75EdotXga2dhM2+t2Xerc79iSf4DEjtohJhhvQGU7vBhCgdH\nQ4Mo\r\n=NDYZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"cd35adbbfb83df87b4687110b2c874eb61c9efb7","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.14","regextras":"^0.6.1","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","escape-regex-string":"^1.0.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.3","@babel/core":"^7.5.4","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.4","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.3","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.3.9_1562959753777_0.9860495371679774","host":"s3://npm-registry-packages"}},"15.4.0":{"name":"eslint-plugin-jsdoc","version":"15.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5774f78c03f4a24075abec855500752602c5b2e8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.4.0.tgz","fileCount":73,"integrity":"sha512-fCS1IhRQoWIEhsw90gG/fL8rxWTJJsvsQiTyUIRhHDNKQyOgNcepRQc5MNiy/JOyEb8BzpNCTym+fxd2YLKwpQ==","signatures":[{"sig":"MEYCIQC5eHp6Jg6oFlBUOw3sqD9QtnmHqg5PNN6N7EaTHAmOpQIhAO9SBU+w1XLPtRIGgqv8iODlM/ZWJzEVzfAqUCxb6gjA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":520464,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKZHiCRA9TVsSAnZWagAAEfIP/AqleLuSywDDd+kAZhVZ\ng1BWpaTvTLZ+c2/3sx70L3Ex+/+ZUeBaiRpDSAYaaWVz7wvU2aTOsiBK2Dyx\ndNk7OG3RDZxJ9BG232nMr49ocHzR3ZQy2YF27BTf+8U18F/Vgn5DX5eyqxKP\n1UWwl09ITHxeHX6wEeGSUuZqGQdQXOAzf2/wyBrUoC5xpnGKVE6vl8JvefBD\nRxCaZlYRlXMg5Hbem/LhHEtSPm78q+Arvl2bxqRoAu4jdqVP2Wq90JAEY0HH\n6oRWo4IeoHXW1y1BBrX+OUth64Ri4efbgOBQh80VMlUIP3al57vkpn/xq19N\nzT+kO3usD0Wp+XLvEnMYBLvq5rqgErFPIbaKdfVLjUUWfi1m8y+vFLDe8bq4\nQjjDxNmlahI0xbGe/yqfFikewj4eIWo8xbqT8gOm+rT0vsyViFgdTPuiw8mW\nuIll2oDi4J/ddfhUrV5FMJpI1EGaLM89TB7zYdWNhGdOiOg9R6LhvBlNQdCp\nd1IH1gFoKW8J7aekVjpMFeZ+r8VnZ/pXtFgOZY2amyM726C99HGX8GDVu2Gq\ne78GhtyIWUGZTPlqvkdAyV7IFTQLiugTiPFQ2WOy2grqi+a1fdL+hb1SncLY\nxKuZ5iNLknb90TumneD0qWIETDInmYUNK4bSIFRpu0I1rdm8YYlu7ThLapMJ\nTxW3\r\n=3Ulz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"58518f599fd7df646b2578674884755ecd7ceeb4","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.14","regextras":"^0.6.1","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.3","@babel/core":"^7.5.4","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.4","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.3","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.4.0_1563005409003_0.9861575313745874","host":"s3://npm-registry-packages"}},"15.4.1":{"name":"eslint-plugin-jsdoc","version":"15.4.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.4.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"cdf568e5d26017f1db6bd6f1ed66321c2ce241b3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.4.1.tgz","fileCount":73,"integrity":"sha512-fMmGf/ZhjjVs6nOfauC3XSgPPlkir0MekwxcLsrhJIqGKYFI2Qv64Fi5K+ZZY2142qfJyzDsmOmU1DnuNhMrJA==","signatures":[{"sig":"MEUCIQDWLbbPE7iSELL3/OeVtO5zWBJOkRPFeaSCwbTsbhcndAIgBz9pqC420LYPXwjx653ipzJbuXWzIyWvIed63jRn/e8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":521864,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKfNPCRA9TVsSAnZWagAAKckP/iBcA7ANOWq8pOVWwvDu\nCNlAL7H8ZxTplrXKaK1OtM2vJA/79SRlktnzKT6OGdos/w0R/nJXRomjX3Co\nOK386QhHj71782Ui/X5GjEuk+jtnVS4MYjT0MeOvTElSkgOaiAEwOqEwRE+d\n82w4QmPho26xwlca5C1+i/JR4VRK4XpQkrLGbtkoyZCN4lNwJZq0nt/xNR4G\nDI0T31p8bYnoupg0Z32lsePE7FmUkUS0sADOWXjo6557duLuX79LrvV3r3z6\ndXIMoc8b5OxvpROEJnJOYRbreou8PBw3ZcqhmD77UU8OwxUn0Z7ekAT1Ctlu\nJ/LGnRv10J3imH4ooYNUb2E4NmZTcJI3uIjf5lDU1foaOLorc/Obqxs/sUqX\nsXb4nfm/0ZFWE5WikOXmlGqFFUVR6F3txlG2+MrByWE+zm0Z+JlAmiQmihHM\nEwLGouqM7UVgbFzxHvUZKHk5hbdVH8T36QRJ0yNtS/tD/NX8t47HlA0Sn8oY\nuQWm8emhR272bZ4ZkdtKcMjDRRysPY8dOe77LNZLEdGSrP4qtbpRKCEqU2Nq\nNwq+OZqmtQny9QnNhO2d6j50l0Af5ErF4SDr5jGmvF9VampX9S3pua/2iawP\nB0YzgWT0ratvJtc7D1vYGKjleKcuZG5OC3a1hMdtU447nGbeMa+fAb9pYHsy\nRqyx\r\n=3okn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"a1c9824be2bbbf1766e04145a4e4c7a52bd9935d","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.14","regextras":"^0.6.1","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.1","@babel/cli":"^7.5.0","typescript":"^3.5.3","@babel/core":"^7.5.4","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.4","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.3","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.4.1_1563030350120_0.3490153968976737","host":"s3://npm-registry-packages"}},"15.4.2":{"name":"eslint-plugin-jsdoc","version":"15.4.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.4.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c2783c1622007c6e3804d937ac260a3511fda4ea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.4.2.tgz","fileCount":73,"integrity":"sha512-N3p3hOU6rhUdvydhsJ/RD5eWSzIWTKDIcopGny/esoHeBakm0TVs9VN+++Jm1Z7HkNcbi0nCYY+xJskEzWmN6Q==","signatures":[{"sig":"MEUCIQCfQBnfXHbQJ47Mnfqb3I6n3qjxPaViVQv3Lb/yhZBgFQIgO6vDOnA6UL0r9w0yEwoE2QmnqA0Pr6gJgBifRogV7hI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":523704,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKo6fCRA9TVsSAnZWagAAL5MQAKQgT/SRprIaCcTAAxCz\neeRUSe9ujMgkCfA04eom4kZ3ZEqACJtgUW1HJn6EE7/xy+wUNrz6PbeC/oBW\nE8ULV/H4yW1m9PY7xS/9CsvVbiWNxsW1bZcz414Q1RgIh5Y7/Re5OpriUZvV\nv8iTbP67J/4SYxhvDNRrBVCOGnzZ5v6z/ip5S/FnaJDQGNXA+bFE7PVdyys7\nA2AG4hMf/s6pLqkaq2CTH4wvBUi+SjtR/r5KdV8kRE1ifk5cckwrCf6ZNu0W\nVghBR1i5mKlKH27eV0C+6z9ZGRYIduo+qZCwjKqrGlfZDVjIQvcCVhIaPWB6\nN0ICQy6UkXRbqv4fzhRLD+tjGkEqbvmcB4Iu/vgrrL4LknzIvNkMVXojJVsH\n/v43oXgYnYZnuFIV0w4UOp1G8nQu+/lPyHsRdDlPDfkrLdyhk9vBfPeJd/zf\noU1XiZHDQZnGHNiFRobQf3rh9JwC3KGMheTqJukFHt0TxJZIoCpMcpJHx7Mn\nNNcxfBC0oT6HnSKaxSO7Q2zAXMywpAKxhvc9WDPPa+AYhhhzmJoY7fgPKphz\nnF2Dl9Ur0kk4slb72Hzvj4SnsZd31S7X7oLb9gtSMqEAWSCC23q9E8B8jPzL\nq2+TDwEeiV9qFsLZCeQXYf9PZbepvUSNWHZSU3b4KasimpEEtU0IOgHC5NuM\nCrRb\r\n=nCDM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"71f35e2a832cad1502f445e7c3c7fecf27387331","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.14","regextras":"^0.6.1","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.2","@babel/cli":"^7.5.0","typescript":"^3.5.3","@babel/core":"^7.5.4","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.4","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.4","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.4.2_1563070109787_0.17640572849121705","host":"s3://npm-registry-packages"}},"15.5.0":{"name":"eslint-plugin-jsdoc","version":"15.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4a8c056cf4f65af82e5de3b883277eea08dcab5d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.5.0.tgz","fileCount":73,"integrity":"sha512-NWWT2CwdzM5ID/bFyOLbEG7yJGfwR6cW7Ds8/vZ1v7cSkK1YwNqY1+7DDW91UpAfJf6tskFUgfv0jTp/kGfW7Q==","signatures":[{"sig":"MEYCIQCi0TnRN/nuPZjptswJJ3dpaTAU133Il7INEjzNqVN2FwIhAIfb5XpCoxZTzieFZKNaXc9z82tgNSIQcmvUQq8on7RB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":528922,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKrncCRA9TVsSAnZWagAArXsQAJ+EPakWQFX12Ik7tE0/\nypV2FZEaMz9bnNs4yGIIdn4/qu9TR6GvZn1OCn61wAfdQTsGvdbPcxZlI828\njak2Uqrhk1/g4KZ+03TwUHLIEsDxFVKvI2dvCP6qsMVf+NpKUmAMufiuivRE\nuMwy/H+JudZU6DOFxOxOjDl6zHVeHiX1uok9fpWT9TghkKHgRbBiPYXZPvhP\ndcpoanPkYP3aQovhn+AqhPi/sWsA1vkL7KXnyai2l+C5evwpDlVgiYckwIhx\nGvgpNTSW4EFKdGeHcuBM+L78ncPeJ/ouVXYnJv1uA+cKWCI35wTevv6EuiLs\nkvMygQONfCbQuGFRdJiENVzOLvMDiU+6My04DNv6N3ft+Y7OFJumMnm7nR3V\naa8yVHf/uWU2lUBPFSfD8kHm/JsXoD3yITz6I6aK0BnW+mGNXRHLBQ3eEp1z\n5R13iUMCWnNcHJolcFnIx5GNfCyUBQHnZEhB6OimsWRnXMu3DxaI4Mmaqk5r\npc0v9O75Xk7jrSOPqEKvLQ2btSM4p36V1d5uQirOcrFFgR73RIhVzsvqK7Qa\nd2ZzQpK0/xdt9aROfKYQS9bQZUe9n8uysNNsL5nrybXtZ5wULof8Z7hUHC3b\nabeO3pNDX5rjmt7BnyXMeP5HqRYdIYEILjB7OZbclt7nws7D2vPlF8NOfBZp\ny8Cv\r\n=wMfE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"0eb7a0c3bf18ac92a4cde392ee64f29a30804639","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.14","regextras":"^0.6.1","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.2","@babel/cli":"^7.5.0","typescript":"^3.5.3","@babel/core":"^7.5.4","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.4","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.4","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.5.0_1563081179629_0.28388862333417464","host":"s3://npm-registry-packages"}},"15.5.1":{"name":"eslint-plugin-jsdoc","version":"15.5.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.5.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"42e79fe294a51f194a0e021f3111fa5ea7325c2e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.5.1.tgz","fileCount":73,"integrity":"sha512-ZE2UyTfikhkS9XatRo+UhTFJVrW0XIpK19XQdlFkgpq/BWcewRPYZdO1nJ3r5Z/o4oITfASCPZMArW9Wjhiukg==","signatures":[{"sig":"MEUCIBU5KXPDFJRi3qTLr6DytD1i+6WDDMSexRk/mDwQg5CTAiEAro0cqsP0NZUM91Fd7BlZsHiMbRn/BM4pK88pTqfScjw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":533688,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKzeGCRA9TVsSAnZWagAASHEP+wVHZ5Ib1yqKnHEBqTmk\ngAXlBgH7fldXTyWzHSrlLBmwnbrOFooYEwDlYsHRWVd6M43BcTfKxohnhJWO\nySNq9q78O2rsjC/zi055h6G7oqkWnomSro0bWPAgoNG9Sn/oP1RB3/8fPw0G\nQe+14GppDfHk9J3xhs+4CTGFYPFVsIDiNyjnuFvF4SlrazT/zqVId9F2HozE\nOxt4W9ZtsTbMcesIybZ8EzMfOCvZfsiq50QbRg2B5/QtCiIVOAYG6QeTgyai\nH3Xhbt0+M6rWf15rB6r/Ya5LIanFQXwDken6fn1otGj06qcEEtoivHVZKOpn\nnuJrAFhuoTn37CWOZ949RrahzX7/NEYiHnIs6TgO1/oCyKHpmRoruwYoRonR\nf6ciu6sKIhBjDx23UBV0l0VkmY+X2RqJiG0pQuQ6gw95cEB2DTxyUWHnj+ym\n19RoyEZE/1L11VwTL35hZ9gl9lwcYw5qPUBD+QTrEfvprkkTVHO8I72JydKo\nnvS6mwcAqZavgllwFjft17uJ/ESk0xFrFBT48kIV/DDk5bCtRcBVFDR4D649\nIDTHlsdRPr/tm884tcXxKE7/3j7TCqLjNbNqtzT6YaKRjrEuwAhm/My6tJmR\n+WZHX2x+BE9Gai8QOrCWzdsQ1hYGcA8ueuN1jDGrECVXgNSxdeGRkOl8U9FW\ncdEe\r\n=DHJk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"190e8f7bd799fde9cf6b214a1fdf96eb458f4d53","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.14","regextras":"^0.6.1","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.2","@babel/cli":"^7.5.0","typescript":"^3.5.3","@babel/core":"^7.5.4","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.4","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.4","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.5.1_1563113348882_0.7436078116410549","host":"s3://npm-registry-packages"}},"15.5.2":{"name":"eslint-plugin-jsdoc","version":"15.5.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.5.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"89768320c64ec2f30d12209e1926c4decca0568a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.5.2.tgz","fileCount":73,"integrity":"sha512-5s39RYGaqugWVoOfc6pAwj9yeNh7mclygBWTyYVJX+sGiNchwCtgHbn2AjeonOw0g168CPI3itiXetHj2Yo8gg==","signatures":[{"sig":"MEQCIEBOqcrOG25f5cSsgNvR/HVIxFpEDhhTVCeuTGHehsixAiAHt6dKxwQsRbTqP8WsaxUF9jND7R5JNhQ5/2AGxcyfTg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":534520,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLLBOCRA9TVsSAnZWagAAEC8P/1moa1n/ylIRr/R4W0gn\nmUOPN6L54NvsjZpIEnxRYZZ2PejjOhAKbZcyo1P374zPTN981HOBMmYPrdn/\nkmt67ROn7srx8X4TeY+Qd5rM5RsLSs7D+O2dxGEGHJG8U/fs5B4XfRQXRb6x\n+iKLBUtahmLLo/XfFKJ85x8WW8wELgglcY1V3Z/AjOw/AQyTenOvF7iBTBNP\nR/7fS3f5ooIdNuu64aFwW2eZDgGnTajp7RiGTVy25WLWAaJzO5AO4rwOfAMB\ndZerOHCHUQ0D1RY0YQCx5CXTv0hfgGcuRV8gZWGeOpmulvVLG4IsvZjV6uBS\neTPDo/Y50Kf4ON/RLjfeXOuMeP4bJVyA5Jv2grWP/TmpxQra0XXAptio7dRP\n9IgAYMeDL+3+R7SfrsFWllpgCg3qIaIwUR0kiqOc7WfvGDH7Mtwt0HMIBMCl\nypPBZOCeTaixcLAjqIUH7oOCP/pPzGJPml0N1lQBCvUTy21yHhmVqlN2eKs/\n1frSjniiltcvG2TIvCH58jRspMAKnnBw/degGNUeL1Aei39YL2KLKaCAx3J3\n7Yp/A30g3s0E/J8Evw/R3W0LUt5yCQOd56Kg2q5k3ws0VKNyH7kmRqduw5JQ\n0mCuXadu9V57411U83ikMxG7QFtz1/+Ge2y7iUL4IGuXhNKcG1OzZxojDGHQ\nYnrn\r\n=xhFm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"62cdc02dd13b2b4298252f412642148a6782fdb5","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.14","regextras":"^0.6.1","comment-parser":"^0.5.5","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^2.6.2","@babel/cli":"^7.5.0","typescript":"^3.5.3","@babel/core":"^7.5.4","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.4","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.4","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.5.2_1563209805460_0.3337517935092551","host":"s3://npm-registry-packages"}},"15.5.3":{"name":"eslint-plugin-jsdoc","version":"15.5.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.5.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"44e408e3bf2f60f3ad18dc829f9b9a1e34f33154","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.5.3.tgz","fileCount":73,"integrity":"sha512-lw8wYa1UFV53JLoqKOQR8YBkKlE/aguR+HGyytL9VKsVvm83DK8ReYnNNDRKik3MF661cGuaUuGfIEcdqg9l4A==","signatures":[{"sig":"MEYCIQCU1/EJUG3+lq7oRZsxe1/ic2mFvkTMWPomLldqpJsfwQIhALXoYvuPJcXYnzrqcI9FqrKmChV5caIEI26DzRIUUQD2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":534621,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdL7NGCRA9TVsSAnZWagAA/eIQAI7OQdLMRZXjDMl405Mw\nqvghCt/XCtB3ZcOr/zOl7k+rOEkrmpkiXJYgy5URkPMhws8YC3N7l2yj/AiL\n5YlrG1abug4fGKALoiumHykMLNgKc2HzseKlwKlOygOq+Sq/G0p4MAjC0TIc\nCK2Aa5DTr0L9XqVWppCFq1f6iK7GyuFqzdPcm1cbQ2mRFshb7okfQXSFs/be\nN1AnoaRcjCaBKkeTKJFFJtlQqFpIFFl1VAIPfiUZuYOhu75P9UCyM+5Sttdx\newGvkoQBZz01jYmYWtClItBzaL0z0xpwy4h5+YaHCr5cePT1hw8BofcpsvDq\nEyy9Zl11RcibQuokG7sJLlElHmOsHihA0SYX5PcV+aZahYLECWxcAivlA7Mk\nXwQxaudybH3/FmlQgTotUUcF4K5PQVI5DTrmEneAHPZwNlVYTZkYOC4XmcuN\nGZlIOmgGsJLqDqhdwUHNdHJ8zaUi0lqRyqj3aQVYS6shhC/bhhWLS6ysPEPY\nnkcavAvZExrT/u/5xvJZhj9MT6fGUQyv4q4ItsPUUVkDU+oyz4yTbG10Tspf\nkFZ4alv43RTsLWxMJLamSgTUq041ZMF2kv/Qqmk9q9w4ky4B2qXE46fyeMfR\nJfkn1lUKiee7/bFyP+rwgd4zHnc6Kt6hEdp1fRUf+U3Z9V/O80amKLAiIZYN\nrwxz\r\n=Rfd/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-commit":"npm run lint && npm run test && npm run build","post-commit":"npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify"}},"engines":{"node":">=6"},"gitHead":"ef11562a41dac61e93f839b21f209b3786f7f1d1","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","create-readme":"gitdown ./.README/README.md --output-file ./README.md && npm run add-assertions","add-assertions":"babel-node ./src/bin/readme-assertions"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.14","regextras":"^0.6.1","comment-parser":"^0.6.0","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^3.1.1","@babel/cli":"^7.5.0","typescript":"^3.5.3","@babel/core":"^7.5.4","@babel/node":"^7.5.0","babel-eslint":"^10.0.2","@babel/register":"^7.4.4","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.4","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.4","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.5.3_1563407173565_0.8935206487589225","host":"s3://npm-registry-packages"}},"15.5.4":{"name":"eslint-plugin-jsdoc","version":"15.5.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.5.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5e5315d7fe6b5e84084834ad8a1f8c3f68847556","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.5.4.tgz","fileCount":75,"integrity":"sha512-WjCQS5zk1cHHdnX35xfyiCvB9CQr0fI9lYXYrDw4JidhmstPbeFfA+kthLEOt7Y2PqXd2Rs7BEb467cZazExDg==","signatures":[{"sig":"MEYCIQCN/4KW8CN3yti+nDFpDL8QIiI5jOqrLSiV4r8WQ+t5hAIhAIxbnG2Dx3+cnZtui+1wcqa4Mw+Al0H6qD1tR8BfvHWU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":536854,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdM2dUCRA9TVsSAnZWagAA4aIP+gM4k2qO+GTzvw33eXd9\nCh4R9kn/oa/GwwkZzG/JrhlEnNkd6Yfx2bubO3Ap7Unztin6fvvO47eocsSi\ntkFEyKrtNRSyPhH/neJvCGFFEvUKoJZQ0gCSHfZK49quFELcP433Zfjk7Y0S\ndkAb39VW3SfLUGyzU7IlkAce1OnmQgubKqq/QK3CTjAMoYptPSKQRztfpHxG\nR97nmr5RKxz9ETCb95RfPzTIwio8+E1XHdUG7u062pjMHXglnvocpTvaTZg6\n2Z+IkJ7bb6sKRhpTuDr9HVvKa7lYTmMot/QvbC4J/RAWtbA+xUY9jiW/qWxn\n7f30PbC3S4+WoOTIc/qHWHMnCEO0XjuN/Bv0qhibar1NtFVQSFJEM//wrU3x\n4j/LTQ+Z/liXBiK6ezRNR2wOHc0dSqzCGGdmALrCN9j5M6uPiFdWtf3w/hdy\nGWwR4i23RfXHz9e7eTO5pLWZI8+rFvVEb2qH2gZEdIYW+LdbDd1Tz19dHemQ\nRjbeyiWE5ilEnMMPpN9TIrQMd6O2tOc0OKsADBB8pFTBW5Cs7uQE3JXVvqa4\ne8WfsX/8miHAtMs3QX/dtwCtyKjmbpJLj61beQX3tJ/2YmwgZAOzI9uuk7qO\nD89ryD9yp6YEyU6FpJEVdDtEgtO0qTApVK141P8HqHYI3FWHZiCMYc4xMIF1\nJZuF\r\n=WSEJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"6d34b942c5ab8c89346c361ee837d9e983eb6c71","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.14","regextras":"^0.6.1","comment-parser":"^0.6.0","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","gitdown":"^3.1.1","@babel/cli":"^7.5.5","typescript":"^3.5.3","@babel/core":"^7.5.5","@babel/node":"^7.5.5","babel-eslint":"^10.0.2","@babel/register":"^7.5.5","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.4","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.5.4_1563649875127_0.8164646430948521","host":"s3://npm-registry-packages"}},"15.5.5":{"name":"eslint-plugin-jsdoc","version":"15.5.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.5.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4fa8cfd1142684bef188b4ac490ae03f3b553d51","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.5.5.tgz","fileCount":73,"integrity":"sha512-CnmbmgVqcEMUf5dPaHgyzF7uLSfSShTaVud3g9YVWSn5Qw+SgB8y3vp/pYdtzrO8/sVKyqFCEG3DW3Gx0KIo5w==","signatures":[{"sig":"MEUCIBZSyoC09MAMT9mqCw94w8y7j8gu9yAuyWD+308ewLbKAiEAjmy6oDTJM50J78gS+KkmTxxZvePKMUiMJQ03vLjrIQE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":540030,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdM4jGCRA9TVsSAnZWagAAd8sP/R1VAfz7mdAL4JkR6qEa\nr3l1gCo8vNOHr+VaFjN7wvd7EGjX7teIMFbDf/4T1wcippXvBMRKUQxxuUGN\neqE/bBP0fC8cugZeuRrM52cnunFLDkpcoxH1OtfBbrX/wKc3uTGjLUTLksef\nLaguiJJ607+CHscasdTiJTH8Y4AKwysJHFH5kn8RRV23voimSyZR1Tvw3zzD\nLWS5NBOEVkRQSW3CRhZHT0TtjSrswdNV5wONybuOUsBa+o19qYOflIPSo30i\nWeE9BFc+xeI50cvHsw0592Az6xbGcOZiXuOaIXKuminvbo56IlWeMdZY9lrJ\nudnG1WXn2lwojnFSO5X/v2+1Z/C+kRJpl8UNlXEo91iKqlIppGrX8enMDnf6\n7ILP4yXgHO0/Yi5I9cOYNzCC7d9yj9eHRsph+/WtSfAcGa2LzFXJMJL12ptf\nPcyRafnaNdZDPAdvNTR9O+IfVN+eO6awgTeEUH9cCQhLHFIKlrHZMz62tICQ\njSJzWuP2FS8wO5+efbEjH8bUeoDCUNSjXWE/hSXp+yCQaZAFgxkcFZB+ijbL\nLmCIny+j2KK6JM8Yne22MZiezpAiXGs7cbSIJMaCaRKeaqkFE+1HZsLs+01g\nC/aX/K+frVS7z6WVjmde/C6YXHuZPjLtKwZSF1TdM09/2ab39UxUbQfS2+uK\nQMSA\r\n=Z0j3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"0503b4ac9c14b578fe27465b622ad61689a06bf6","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.1","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.1","mocha":"^6.2.0","eslint":"^6.0.1","gitdown":"^3.1.1","@babel/cli":"^7.5.5","typescript":"^3.5.3","@babel/core":"^7.5.5","@babel/node":"^7.5.5","babel-eslint":"^10.0.2","@babel/register":"^7.5.5","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.4","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.5.5_1563658436569_0.13077802090292479","host":"s3://npm-registry-packages"}},"15.5.6":{"name":"eslint-plugin-jsdoc","version":"15.5.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.5.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"be9d527f7322631b539b7abecc572334c2fbc250","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.5.6.tgz","fileCount":73,"integrity":"sha512-A/3RL4SPVkTG9TK30Hvu/EZ8yzI8aQBrbWGPLe+I0xDnaG9Y+z6Hd/Jo3/7vD7o4Nih5hEQ+tJoHDZg29olVPw==","signatures":[{"sig":"MEUCIGlmjKXEnSZcpjcSk0F8Da2E8ErtjApzEXWJh7/n9PANAiEA37uQrKJawHABVMxu4/A5fE8zbI692mQml7VcI91GkX4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":540465,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNL0jCRA9TVsSAnZWagAAUhAQAIUleD/UXXP7/3W12b48\nMPg/mfk5MXZuOhKWM/mQeFTaabHteW4iHgI5hBa8vGM2DPLHEsIrIvCaEFI1\ntu2x0xk5wWIt1Vfr3Ya1A6HSIlFY7arqQkq+MZiW4pvkdMhzYW/rEaS5WIzq\nf9dKpbZ9oeC1a/eh+vkqK8jBM85QJpZJlwk0oESEiD9SMmZjKfxUKFzT9HPr\naA938f72vdKo1FyVZn3D4ykhcXJjujnHocuCio1JAFZODfKv+v8tAsrdojH7\nYTntfGGHKqHAZTuOTxH2ybP/6rvu2kpe4BaGFzT3lIupAOjf3HFBx5/lOWME\noZJLV945v6A1dGEoBnCaF+yE7uxYpAWfKn7Rek36ELBMpEjbjBerxGVNZnH+\naPaBiIl0wgMdtZIpD8M1qx+CHnWjnjaWYfsaG1v0hQ6+uNpb7hqoCCP5+e6K\nx+gJFB36kDE6pr2Py/CqhcA/iKwuspZL1d9tVon94BQVjHa1QT893x59s+9b\nZz9M6BeUrY4STI9YtLH3lm6JNWiehUzOiilYjr3Wc77w3Lr+kTWBFxgRMZiZ\nkzD7pko51ba4CKkl6KNfYe5yTu+HR8YLh+KUIIHuUeQhi8XQalKG/kg3E4Dp\niBAT/mCKbEYLIpp/wc0ruBj5xTQvUNUnSKC7DnxnNx1UZGCyua98umcJZudm\nfEkD\r\n=dFCL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"1febd69ac99bdb9da139b5e0b4d14de0547d28ff","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.1","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.1","mocha":"^6.2.0","eslint":"^6.0.1","gitdown":"^3.1.1","@babel/cli":"^7.5.5","typescript":"^3.5.3","@babel/core":"^7.5.5","@babel/node":"^7.5.5","babel-eslint":"^10.0.2","@babel/register":"^7.5.5","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.4","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.5.6_1563737378492_0.26544741491930046","host":"s3://npm-registry-packages"}},"15.6.0":{"name":"eslint-plugin-jsdoc","version":"15.6.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.6.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"abd06aa7795a8def3abd9b607ee70afa284160ad","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.6.0.tgz","fileCount":73,"integrity":"sha512-aawSFNcZ9Nk6YxefORns/xszyNHPI1kxe6QgkvOFoqB3Zjb9gXuFXu99+GZZrgVd1vrjvXBjpPy4I6OjHirHfw==","signatures":[{"sig":"MEYCIQDjefjND3P7BT4p+LtBYUlarq84qLuPwlKpmwmIcyEX4wIhANG64iOfZ570lQs4982gurED9NFpYqjdq8psHo2OGaeC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":540653,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNL+TCRA9TVsSAnZWagAAgxQP/3VymYQwru/qnHl7fAk2\n6/IPwwMfmTe/QN057dF+0tfirddluq2LGNRYMB6iHUlkmGthSYizr/ebarMQ\ntvBVC86DfxeJbFgQtYXoMxJfl9hpEkrCJhnnDPpO2/fu8CJfu947yZjV3a6h\nWqsPt60K9Dk9VyPpwFkTQuVDA+KzbTH+cwnUCUPz34QMG4zqIGXUTS3hNVIC\n765ATxxhYkLkcZj5285QPUMzCJ3J0395Bgq4MmKrYv1zCGMXyAzwZwSGBZLg\ndknnk28zLqPxxjgNWgPlwSkZiwPUvIUNyAPlpGrIG8BVCgSpyc0N/fNE51lT\nMD1yAEyyzfZmcGSvVmQWI12vOXIm1iqE57mwsr7fDLRbTHq487coKjBROdfp\nPNNZrBpkdRp7OsogkUS8yXCBLUTCC0vmXTdqSIy+hOOoY9TkHr+/nhRXHM2h\nhqmT8kgUZbSa7LEzwJ46UzL43o50OUTODa31wpCl72+xP/3XKfy8joDboFqM\nRsqZqcaxQFx4Y6a4Fep/CSrW0tQXHRIIahMrgfXoNJmmgpo4XGlg6IQX6rEm\n5fUQwt9hnHcixpJdGrfCzZMzxXmbYvNkDe2sndM2FK0kdDakJNH1sCIn1S45\nyiDqlqWyK02rpOHalkswFCcgRYRXKXh8mfOp00mwP9FzMEINR35FB/67Jrla\nzQSV\r\n=lLel\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"58630295ae3e1b518fc7d01a810b83b279adc5ab","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.1","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.1","mocha":"^6.2.0","eslint":"^6.0.1","gitdown":"^3.1.1","@babel/cli":"^7.5.5","typescript":"^3.5.3","@babel/core":"^7.5.5","@babel/node":"^7.5.5","babel-eslint":"^10.0.2","@babel/register":"^7.5.5","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.4","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.6.0_1563738002650_0.09572049718798992","host":"s3://npm-registry-packages"}},"15.6.1":{"name":"eslint-plugin-jsdoc","version":"15.6.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.6.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6fc650df0583319608dcbe1a7bb700dcf72bdfc7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.6.1.tgz","fileCount":73,"integrity":"sha512-n2jA4rGvSo9K4fxeccof+QimNsEmJ6/YNQWNYeF6HWGTJdbw1iWPQbv0j1mp711DQsFrUSTEcafJiKFtURYlUQ==","signatures":[{"sig":"MEYCIQCqQOVelpSjaNP7So2sAkLdrKUGN2kebldX97EqzuJoQAIhALE+n0tM5ESqftFU2h0JabjBD+XC+fEsf14vS5Goblj5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":542162,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNRqtCRA9TVsSAnZWagAA19AQAJpT7Cbr0s94XJZE6p5C\nAq32/9FfYjKS3d2M6RqMUS3kmTGWrTum8UobkBtiJfBsdC6tr/7k58MgIZ8E\n7sU0ruQdwfYgR6uYpTeFdnK8vUyoOGtXnKq6ylRogyo0kgoJiFhUUC1LfJ0b\nnos7jiew5Kiw4RhSNo3w3sM6U7wsct4isb5HmX7azTWk3b++8vsaHaVrovKy\n19euNiSee3zYMJ22ogmhT0c+sVC8LfwWBn0v7QiWGSx+1Qw+2Pmn4Nzz8Zr2\nK5K0W6PU6p2Xh2gUwVk/vWb0K2s0KG9hOjgP+5jRGwd6JH0KCelZheO5xSEc\njZ2k0QmSHMDlwl7dgreZyzcb8L4SjgXuxDDDgfkR5/rLdWO9/Wj16rAUEi2V\neoKptg5JOqPf1lIWNfsGNEShfpY1uZQqKH/fLHp7gaWIdg6uufCmfKdx0TO/\nLVAgP5ZJyNhjsmZVuZDWZ2yt17+bLoRf2NoFw3Es4/OYovooHeGUtLu5DtVN\n9hX3bZGXzu87WvZWNiCAewodHOh/sm1KqIIIzFaS40U8L30tvTagYa1iUu8G\nNzK7eLJVGbiczfC7XSvTTc0q2sBEwDbieV/jVA2MZc4ZS6uHtP0LdHC40zuU\n3zxRXuNNYex202G/fYsX0yzxJngwb6Tut7A5ffC3lJ57u2ZAzSHJlpkRMzao\nImux\r\n=5Ufx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"a45f41c5970f1bfb8f85b683c0069a0480769bca","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.1","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.1","mocha":"^6.2.0","eslint":"^6.0.1","gitdown":"^3.1.1","@babel/cli":"^7.5.5","typescript":"^3.5.3","@babel/core":"^7.5.5","@babel/node":"^7.5.5","babel-eslint":"^10.0.2","@babel/register":"^7.5.5","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.4","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.6.1_1563761324549_0.736634713910401","host":"s3://npm-registry-packages"}},"15.6.2":{"name":"eslint-plugin-jsdoc","version":"15.6.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.6.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c8a6f0db76ecf61d956e883b48832dafd86af8b1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.6.2.tgz","fileCount":73,"integrity":"sha512-oCQfdpNlSHV8napDDSNP+5Y9tehfsPEGIbojexwEdfToFibxYd+EZIMiug7/pnIqTiF/Brcri2JqdeD8VxjL1w==","signatures":[{"sig":"MEYCIQD3hhiBJpEIHkGMIK7wX2op+qM9D6YHFSAY3i9SFRRG8QIhAJ2ZWkIIXHaztCzUYt9jdoJYk08RBUTOZsb5/TFxJnvQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":542759,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNkqWCRA9TVsSAnZWagAAp+sP/iI8D8ai+xE4lmFfMScx\nom30Jh6eIeXW+bHZwuYaxILETKHpsk5cJdT7nQpwv2EphdbXzMtlrpu5kvh3\nKe51BxUh8PN9PVabEppFlS2EBTqug7Nj41VrdN4+FriuaVavGdMApbcboQzH\nuQQGUoN4oU7vpKzq32nsNKOK2JHBMwgPT4JgSZQsOK6c9stYd7ZUxaXYtpEm\nXh4NWSbyVPOCzk8/SZuhbgynXNem0dPQ5cdfT6hfQj+mtid5apFvoZ4Cx6f4\nHPPx//cs3bdW5Ov4aLU5pQITO1/y42XvjsSITrIkhQ9LKbdRdZ7TK/nOocEu\nPEGxPQXpknpQ1gaHFKFPY/kIl5R7wGGFXpu76GEZGU+CPY2d/FBstXyqSMql\nQr5pPdpjsT4qIbsA4vELB0M6DzjJdF7FLn5kOu45Di3XlpSdJLs81/ha5Ce8\n0XEUW3RPSik5/jTwn6a/oxOQJav8p2NbvpW5c81OztnIZ+CiHz2PR6akj2wS\nfsN3Fa6dwvNiFNNnHnp12LcU3VyunORyQtHVxw0heit9aXcVnRHcjdnniL+n\nli6y1h7LPVJ4YJLlZyTZQUaBuq8U2pBYKv0E96LIveqxD+k7QIy8p0WtCLLH\n4HWvTm2gLW1hv9SQbt/bwD9oYf1ewdiqIhquE7a/ob0eEn9sBBijpu1toVbi\nNpDQ\r\n=RTfi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"6c1863771412bfccff4609131e33c5b410de7f6f","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.1","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.1","mocha":"^6.2.0","eslint":"^6.0.1","gitdown":"^3.1.1","@babel/cli":"^7.5.5","typescript":"^3.5.3","@babel/core":"^7.5.5","@babel/node":"^7.5.5","babel-eslint":"^10.0.2","@babel/register":"^7.5.5","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.4","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.6.2_1563839125794_0.09391306273225464","host":"s3://npm-registry-packages"}},"15.7.0":{"name":"eslint-plugin-jsdoc","version":"15.7.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.7.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"08bac8ca5eda0f4a0c62e9f54135ccbb5028b051","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.7.0.tgz","fileCount":73,"integrity":"sha512-uj9I7+nCDpK/odLr4qlJNFNbYNSFvwtqIP7OY+jYs3SfuafqHzgafj9kWpD/mhcOUnOwa/YCqqpij8cVpRMG5A==","signatures":[{"sig":"MEYCIQCz614z/sCYSjLaXOBG5LgtyfjmKPWnIwXO2ijgAB8Q3wIhANK8DUKRYCCy0CIGAdTodC9/e8tKPYPPe4IHWoom2F9Z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":545449,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNwmTCRA9TVsSAnZWagAAbPAQAJzcqSvcAma0ohsaU7k5\nssTjCywP+F24VePrcYZb9w0spKEJtkjLrj/eG3+qr3F+h62YZcoeo7LYTNDc\nsnf6va3xGROq70U+Qejwuz7s/6kyA9UciQmLg+tl9ioP/7RMJhTXiREPBU4V\n4mIsjqSeC4qwkPFcG4wD+GIVANSFHRIy2Ca11Q/0nvVV2RVP2r1sa3DXoeYQ\nDhlzVZMucSI8YZBI8ApkumrDVgnkG0GfvmP8XGpkW02bqguErXh+207hegSv\nLAg7UJC2oSYke32x9VGrJkWwoqdRRZaQJFeRW8Yl8KN71qGufIgOwVhPIw6J\nLD/nay12yaaBM0GrqMbEkCdKRbmzclakw95gGdCR4Ou9EdKTyiPf0J+y39XK\n4WSPNC8eRoaBoCJ8W5j/+4QaMWMdunLZQhOePunMeSOSqxvaqwo1JS6db1MD\nLEKz1mXRIh0qbC/l0fDo4XtsjUnbORhjo8jLqT2QvzE+yz4iBUe4OdA5yPL6\nf654EPBjVmCE9P1NkGjMcc/9wD6VXC6ZsFimh4YP8yY5Yeqi3LoloJt494x2\nAg0rDp44qCpojp/VZYxmnlUE0FotR3/gy129ZdSWiPe9GSATIOoz8UuuMW7W\noUww85/s/fiejG+3tsPbAXTjQfbqp3OgUNz6i+ax3+/iMYde2rPTzf3hBYKG\nV6s1\r\n=Q9zX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"b5a78fff3241b05ef661e5cdfec85b282236a945","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.6.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.1","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.1","mocha":"^6.2.0","eslint":"^6.0.1","gitdown":"^3.1.1","@babel/cli":"^7.5.5","typescript":"^3.5.3","@babel/core":"^7.5.5","@babel/node":"^7.5.5","babel-eslint":"^10.0.2","@babel/register":"^7.5.5","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.4","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.7.0_1563888018697_0.7561765513700396","host":"s3://npm-registry-packages"}},"15.7.1":{"name":"eslint-plugin-jsdoc","version":"15.7.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.7.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f797902a03f0371fdf90b44a40840e745619c8e2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.7.1.tgz","fileCount":73,"integrity":"sha512-VsjTmg0i0aOdqJWq/nEWjkgq9+6qK32FWhH+OSXuhCB1BPTquWTLVvRQIF9NzV4fM7L8V4KKABnKyjBCG3XwkA==","signatures":[{"sig":"MEUCIGR5VHKymDiwnYc54zD4MNWw/ZtiviKLsLPdfJeicWa6AiEA5MVu7xU4FqQUFhFQ7Ti2NSgzzf731dA5HT8DdEnJfLA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":546213,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdN32ACRA9TVsSAnZWagAAjo0QAINgLmWZ2T43F/oRMeb1\nRxvCPwZytnnIRn7rntnL3H5rm8Vnlyz2mRQD/3rbyIacQ+QKMSSP9aI+DIRt\nzBG6tI0MLXshCvPrGWkBLmtStOs78DRZ/fAqIXHC6JnTrOyvrE08ySWda2Q9\nhwcWRJEWOg7xqzaIMkmwayoPZ9N3WaXhj7WI8MigzEf7PQh8QT1hgBPxAadw\nahcXYdYc4yZscdmh1Syvhalj+lqooJN3F5FvGcflg0dcDBPyswJyxADScWeG\ns/RqoTVXzYP5KSW8jRBgL/p5EoarHrf4sRE/nGMMtHFotqmb/dxsVyJcXkld\nvjOOc/0Gn3Yfw2bC4ZAIKeAxw4AUDM2zO8cGYD396QFXyyFaCvEguWJWqW4P\nNLwxENfGk6uucX7XR2wO2r6ygivv8k5ZxOeyaN9hiA4XeRuFzRmsJ/C/vftc\naSl7A0bH0MrSj2HmAfCweqqONC12+5fU5+ijzLGs7V4o47f4sqZHtettfzjE\nVjuvfMBnL/Vrd0xKIULwr7Oi1dbppGWJ03hgwpiFnB9mwx3KEB1DYfh5laLh\nrj5fPaCKOXr4EDcyXI3eqDF0qtlZq9dXFpgnrA7jV+1INP/naIYcu/SGee/Y\nK0ar7IIPI5vNo8OKb3dbvP8nFz1FZHIoSVLeOW7aBFWvu/EP2291ejC6t22p\nmklf\r\n=76SW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"fda418644f7f7c355b8dd057a3703d668a3d7c9f","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.1","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.1","mocha":"^6.2.0","eslint":"^6.0.1","gitdown":"^3.1.1","@babel/cli":"^7.5.5","typescript":"^3.5.3","@babel/core":"^7.5.5","@babel/node":"^7.5.5","babel-eslint":"^10.0.2","@babel/register":"^7.5.5","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.4","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.7.1_1563917695698_0.4263453784819311","host":"s3://npm-registry-packages"}},"15.7.2":{"name":"eslint-plugin-jsdoc","version":"15.7.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.7.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2def358e61b8376de60927c63546af49d99c232f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.7.2.tgz","fileCount":73,"integrity":"sha512-xQFqyc/pWxpY1dlEeYpO3kpd/zwX9TVnMn0krvVuCe7l0MpqXxBVm/+wRpgI6E6jpE5l3yA0gQshipYyxbVLIg==","signatures":[{"sig":"MEQCIADPy0Fc1lUozoQtl9y/dyCZ7BsHTyUzbrMuxUS5fR/LAiA/8IrgU2b/u9MBogqADZZ2J8xZqUYmzOuC0EGX9W1xfg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":548878,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdN89wCRA9TVsSAnZWagAAJCwP/RhQ+cZ4KUEqUadOnVob\nhVuCVbh1uLD2OVinhG2pSvPuzd0K5rXSaSXc+PsY1RZDSRS/Q2NPkFT+DBm4\n8mVNFHyezq/9jz897ElLNtxml50HXdG+RftsPJeh8ZHrN0Jjer5Ljr1mIQTc\n5S8oZ2DXb49nOxPl5h5AsOuW/SYmRxjY9dVd51TSbJ+d9A6Tg6Pm573a0ISM\nuyk4w3iI5Olvi/7V8WMlR2cJNOyh8ERTeV6NdOxgjm8uZokf8PGSui38K55Y\nxZu+w1v2eyAEpGD5SRa9o3VCmUt79lpVLR4wwsc+NsFHcjxlAhFxJZDkl8z5\nCanFZ+NDz0dDO5KCrfLZPLBakAiHE6cjQuygc/k+gH/pW+0hl626xeaMDbwc\njn05Qk3mYfMLTJvHWP7rcI7QtOvS/lBPzbeDFuGqVMsL132quhhSQJWS/2yC\nbXxNUvP+dlMPabJmr92/CMEFK7cPg3zNKk2SYGdv4ZhYcA5WQ5p88tnA4Hsp\nSSmvT3fN1C74Qf3uEZF9vdRgpiED0t/Au1QHIufBIMgrYElSXEtjuXS3bN82\nEf/YQ1enJLCxSougRyo0piE7gqCbqASIP+BozGLCXJtV8Nxmh0yx+eiIOmVP\n/YqQlBHCvA8H6FgWgbsV6TaeFjnlYpcIXmEHVpH2AwC+ExopVd955uk9989j\nCpcp\r\n=KrSN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"a87ed9e1ad5d50ab962c9be4305726350fdc5864","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.1","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.1","mocha":"^6.2.0","eslint":"^6.0.1","gitdown":"^3.1.1","@babel/cli":"^7.5.5","typescript":"^3.5.3","@babel/core":"^7.5.5","@babel/node":"^7.5.5","babel-eslint":"^10.0.2","@babel/register":"^7.5.5","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.4","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.7.2_1563938670642_0.7541355753401602","host":"s3://npm-registry-packages"}},"15.8.0":{"name":"eslint-plugin-jsdoc","version":"15.8.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.8.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"74cf0f35dec8524a6bd011f0cf199d24e09517f2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.8.0.tgz","fileCount":73,"integrity":"sha512-J6ozWkaAgBh1eLdQE+C2wcXhoEgDmGJOSB6zMF5ktEtMBnU62xT3wfHcUacuTnv6rt+ollC0uZThaEpGA+sTNg==","signatures":[{"sig":"MEYCIQDheszoRSTZGBVJTmtg5jryKwGOl0Csp3ijhbrTgiG36wIhAPXlIjGk4aZGLs3dG4CHhv8S7d/CfsXc/VN/hZ4Wf/Sz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":533899,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdP7syCRA9TVsSAnZWagAAApkP/2kWGajXjjaOKI/mB+Qe\nes9dYTaQbvMUx35kNAoSWGc7ZI5bZXG/1G65jMmPs/W5SE2OW8zIi6WMpN7s\nn4MvBe5XECs60XFBbiqiSLOXLSWQLqkQQjIgedPtb5OpY7lZ2Z+Oa5Zvr9dL\nsbh53Yx601jXNEO905YmskstmjyS4uZfewr/x+lCbER4DY8iKQNv+EqQT5eP\nzE8XvGCuMtdDLLkcAx9bHmiPD4A86d+QBJn54RwYUakzx/FM5ZB67d33P9Du\nHTr7kdb7AEdftDiaTtwdvidtCLEKuqTiAN6wjmFw9G1fpfWiAcunrih6g4ga\nUofpo/P8cggVHC7qsBioGFR7TlunODdcZR3tjHc/Y6FOeMSzKiuUZYytaMrq\nd7IDOVH4InuRdd03gu3qp2SAgg09Y/76xYu+3jt/fXTg6v0GXl5ATnSzvxdQ\nLg/ITHBNamTih/7iCMEppYRsBrBkrewAJYij855UKBOO1OwihYodad6cbDBy\nVQskBr0ntcXv52fhetPANjSTkpeYas2kLKOWqBsibAe/hrUHnO4IFP9UhcHC\n7QOBDqr7gVNoWN1foQeBPUu8g+Ys2E9hibEZmZVIneSkOpFh28zagDzsH3jT\nzD+gZOBgKOw/FM94GefGdvWvqBXnm0psIB+2fs4UzyifVsh0dOZI05wJjynA\nmqzG\r\n=aPV0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"bf95787a2dce0f3287e1507a9161dfbccaa01cec","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.16.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.1","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.1","mocha":"^6.2.0","eslint":"^6.0.1","gitdown":"^3.1.1","@babel/cli":"^7.5.5","typescript":"^3.5.3","@babel/core":"^7.5.5","@babel/node":"^7.5.5","babel-eslint":"^10.0.2","@babel/register":"^7.5.5","semantic-release":"^15.13.18","@babel/preset-env":"^7.5.5","babel-plugin-istanbul":"^5.1.4","eslint-config-canonical":"^17.1.4","@typescript-eslint/parser":"^1.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.8.0_1564457776003_0.10955735663105526","host":"s3://npm-registry-packages"}},"15.8.1":{"name":"eslint-plugin-jsdoc","version":"15.8.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.8.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4869ed65fda751d8216ffe988dd41e0e2a0941d5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.8.1.tgz","fileCount":73,"integrity":"sha512-L3cV5WvIWBC/plHP3w86nsCUm3KR4lJB3Jku2rAew5CuqOJbG23EWAY0+tbTmL/7DEcHvnLS5JbzZG4vlcndtA==","signatures":[{"sig":"MEUCICwZ2oJ7ZQ5KwNE4IV8fLr3nG6dgd1nqYNoD5JQ7BFWnAiEAlBM5Xjz9Ah9aLv+q+Z/mqnM55VtlHLAzpr8LNzo0bOA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":534228,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdVeoXCRA9TVsSAnZWagAAWpcP/jQHNHmIGDcwI1se4YDN\nL+B3gqo9JgSdMzLKnHVtFam8mqsvKqx8rtMR7CP4NcWdtkZbb476erAK6iy9\nPMrqoF28K8M5M78QFHVZvgL9eIr9bDn9Camdi/77oqXpJVDu/nptIfTiZ8UC\njPUebrunc7M5z99DXcNkDyrHLuSbyPAbdqjglssOD95gWXy7cHLAN/1I8VA4\nPWXiG66g89YaAGlSUv+PfSrAsrq0JuYHK/Bkbf4wyhmcW6kB2dwyMpAlN2B+\nhVIe3JE4QhqHpCXj9JOLc16OejhMcS5Ke4MWZGgPm8476K7Si4soZyLXRmkx\nrRWtuxav2U7r42PmsuTdPGa4E6SFJpIZfy8rXVOhVy9C2m+zPYBtKh+fatA6\nktzvTaD3GoBk3KwdpmWKXxmMM6ZXH+cracz8yFrDWFbFKVzKp9IWkaO0ofQw\nJaRUy8hvYv2STUn7a0RM+CLEmt6tD+3EahyO2h7w4y/AE4ZrivRwUaMD5gVx\nl5D68V2dlGbtLAZTYNe0Khdg6XUBAPbWTVHoAwdffrgsZ12fS6rlkIoj0o9l\njsCKA8BnnmM091S/ZAQLw2DXGdWwK08JOtfshXAKtSBSKzeHW2iDYd9AHJcx\naBaYF7jHFIV8CuXvmrBuf3u486eBSXAaWFictgrvgj0HXBYgpsP0gF8Q2GAX\nvpnA\r\n=UmYx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"72e2eab500c7ffc4c91a7d6997886689bd9fd5de","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.3","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.1","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.3","mocha":"^6.2.0","eslint":"^6.1.0","gitdown":"^3.1.1","@babel/cli":"^7.5.5","typescript":"^3.5.3","@babel/core":"^7.5.5","@babel/node":"^7.5.5","babel-eslint":"^10.0.2","@babel/register":"^7.5.5","semantic-release":"^15.13.19","@babel/preset-env":"^7.5.5","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.3.4","@typescript-eslint/parser":"^1.13.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.8.1_1565911574456_0.5652870262273983","host":"s3://npm-registry-packages"}},"15.8.2":{"name":"eslint-plugin-jsdoc","version":"15.8.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.8.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"190e9d536d95c5eb7be008558db0cc2233fe6948","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.8.2.tgz","fileCount":73,"integrity":"sha512-kEM7AlFUNI/FEDXuhUAv3X2aBxGjGNuhshxcJ+61xBbsoW2ms1rySCMfD+bCgZhoXn9Zby3PGz9wzjmIa65hvA==","signatures":[{"sig":"MEUCIQCOQ9ZhnHzvV3peywB0fin4S2UgjvrosZ8ZhPP6opLMDQIgOetio37Oqs0I/Qxa1JFvD1EYG/6Fs5JSxUujNZgS6Lc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":534922,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdW0uCCRA9TVsSAnZWagAA7tYP/Rm0koA/47z5eXU5aJWe\nJqoz5nZtlStvZpMIzQZ0jcO06Z/WySWV5nKuP97mjfEiBDsnfcA/XehVlIMW\n63YNO6Om1Et0XAGIEFLFOCNuPg5v8fLLDMeGRKdhuXTlzookdPxaNHQcpHEn\nuymWm8iJT8zzPpaKIN9jtMUIikMVU0H4SeLCtaoSzfKlP9An3yrdq1u/KKRR\nRMSTj9fu1mQfjMiRmrzlvf+SnjteycNHEZ0DnhZKsohzmIidBDqkTu+BEH1l\n9gdbtgyJkyJ5GaIXl3KGxoGWtMZcpgDkDp0XxMvRG2oKgrw0rBM+t1j67OmN\nz5KTJc4nVQn9v7HFRgkoRgnY+MIYc+Q4C5NzIaIzULWYWJ+Ya01q3CchtOJI\ncRMRfBI8gQVIX9a8Mwuirioha3nyMLUi4KZ/YT0TXV9Xt4jpS9bk3iKL6sP6\n6qUpKcBVmRUHA1SDLA9yPI8BTYsrm8a/nQ4p9nareSCOG1CqtNkrs5l9ui30\neAXwvog5DKKd/58ZujnV4muDt4clM08h+1IUSvPlrd8d/V2igrDmXOM3y2gz\ntwvll9GR/MW2eRDWU2nYBI4oBNGmwwO6OtZyV/UdSdTGr4QoZZimmzRdThUM\nDCqXRGD+B2VWXpx8S7Mvq8UrUzJc3ZM5eyeN32d4EY7evBfPjAWW9rC7TYxB\nxOex\r\n=9sq5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"8fceb2e9e33e4052333d01c383b5209b90a3b3bd","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.3","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.8.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"5.0.1","flat-map-polyfill":"^0.3.8","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.4","mocha":"^6.2.0","eslint":"6.1.0","gitdown":"^3.1.1","@babel/cli":"^7.5.5","typescript":"^3.5.3","@babel/core":"^7.5.5","@babel/node":"^7.5.5","babel-eslint":"^10.0.2","@babel/register":"^7.5.5","semantic-release":"^15.13.21","@babel/preset-env":"^7.5.5","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.3.4","@typescript-eslint/parser":"^2.0.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.8.2_1566264193691_0.7644818202547978","host":"s3://npm-registry-packages"}},"15.8.3":{"name":"eslint-plugin-jsdoc","version":"15.8.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.8.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2d13d2f7fbeacf7e0c5eee344117736961b64a17","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.8.3.tgz","fileCount":73,"integrity":"sha512-p2O6SYetuSD5gWV04HHevIfp2WfimXReYwINuB4iC33hm1jrYoP+t2XbJtCBYvjhoRjjw8w4NfnyZKixte1fug==","signatures":[{"sig":"MEQCIBfioADXaEua98I/SvFw+KEtJCza2zX8vHsot5YQGcVoAiBNej4lyDswjz5+fO2oKN0N8oWSgH51QIyPQW4211a5xA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":534815,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdW1G1CRA9TVsSAnZWagAAlngQAIYN4g/YwMPYYiJdEzvV\nZENIiiwyv1hleSrT2zz8Dg1X/cjwadBC3ZBHRy060ndB3708qxbjp3KD3WP6\n8Fl4GrTX7U9NgjDdtvHfS6GBgzBgyUa5TKAkz9LEjG28/ZZmHumdWEMwMdX+\nw15Cw38vo8yrhapaHKANlZpSnystI5FW7yUhtubwj8ZUMlVpCnE2q1QUBPpZ\nacHJCQxt5SkdVfc3GaxmtbFB6SWpoJi0rPy2mOcoqlaArM2eu2LbbcIqBS/z\n1XFODAi4xiXPLV9P3IGrjuoLFXj9wDj6pMLaMdoLWRp3T6idN1TNPb7Dzql1\nLXgW1iP3LSo0Ck0N+2wb1/GR3I9GQurd46u4qLspg+47VdFKivMxBKAYgSaj\nYwTbpR/6npsdfrCyOgNH4okvx9Cp7RVj6d+0awKeTPy9PbpBFv1X1A4G3D48\nIoNu4TZlewxgLpkpSfZIzN/Tje1PNNXZO1VJVJqK907bWmcAIAKZEmtsMDLw\nYG2uRUEONsuQ0HY6jcaBfgBY8QdCfZMWOne5qfu8nhnDM/6ORPNnGcNiFJ3B\nlaftFiYE8+5Oa3m/KwwYU47mm75o8nM8TqdGbxDy4m1yWpFMtSknhaecx3tX\nOLf8NTh4Y/GF8uCP246fSM/CownOrggXfUOTZo6KUYi+ML9IFSkpdlQJL06o\nUiWr\r\n=/+1f\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"fd71277e1aa32bf587cf15e71906687bf783aac1","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.10.3","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.8.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"5.0.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.4","mocha":"^6.2.0","eslint":"6.1.0","gitdown":"^3.1.1","@babel/cli":"^7.5.5","typescript":"^3.5.3","@babel/core":"^7.5.5","@babel/node":"^7.5.5","babel-eslint":"^10.0.2","@babel/register":"^7.5.5","semantic-release":"^15.13.21","@babel/preset-env":"^7.5.5","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.3.4","@typescript-eslint/parser":"^2.0.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.8.3_1566265779956_0.4632860731409154","host":"s3://npm-registry-packages"}},"15.8.4":{"name":"eslint-plugin-jsdoc","version":"15.8.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.8.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"993c2175a2dfab8b3bcac4a916cfc9bc44e2fde4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.8.4.tgz","fileCount":73,"integrity":"sha512-KPYgMmZ6lrtCC93NIVp5O+yUE+bW3m3D8fztJylHw1d+VA2CQuq0BiNQZ7OXz+BK1SYF7TVAfsrHxWtIrE05GQ==","signatures":[{"sig":"MEUCIAQoo8+NW7WJYt6a9DBsl1yhmA+KUM/wk6P//Sx68FpuAiEA4vQFaiTcxJ66pu96wACqJu01EOt3376OsEeNdixmKU8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":534966,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdaIxTCRA9TVsSAnZWagAA82QQAIifsRexP5wOLwHn5ltm\nHIe33rSk7SwbwZctcWl56dI58Mp1AzCWiB2k1dT4JE/SgfablVqWKqAzh3Ce\nauKPcmhz8z7STsIpu2lLNMI0t/6Q9VkF/nwPtzLuzYw8pYYvnj3izTJzL44B\nWBRejo6vqqtxW/M80iqdnAAJInteL9LizHct47XMuqTmnork0k0e37K116qW\nFy8ZeZ+SyPVEP0h2Cz3WbV7hHMDyFkzzgEtbSH0acjmyTGKAB05d6ojjPX76\nbmRbXt7XIWofCCWe/KnUBlUe47y+A+UcErnBCtxVK2J9QZQzhQ4eqv5TJYpu\n4mZGK8IlISKT/f5JbZUjA0e216bLd5BYwHTX0sSwrMyEDMYhzrqhgn8I2a5F\n/YZzWvcMtK1Vj/bnuhGg433sraW1jadguO7OoOJccAhXSvxcW3nNGZASw5nP\n4U32xVmVRoOa0o/80mX9wfnziLq8HcLiXDHeGEt7HMnoVzTJXZxZ2gmTzARn\nOm5c24OJMIcIuJmdL5HDbFiQdY3W7xedZVbUrGhfDSIaRt+j3XN0Gaif7ssw\ntn0NKciFZ4q6X5fowgAZdIdCNZeRTD3oWYXwzdkqn/pBUUHdxbx0zd8Xc+dR\nhl+gqncZ/oSpyNP2j9MPOny5gGVUjEVQVeGjSjqgnUuMWbD1rehdiuz9DHo5\n7oDC\r\n=/vVF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"874adabf439c69e5aa31465809d83e2421e519f1","scripts":{"lint":"eslint ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.11.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.9.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"5.0.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.4","mocha":"^6.2.0","eslint":"6.2.2","gitdown":"^3.1.1","@babel/cli":"^7.5.5","typescript":"^3.5.3","@babel/core":"^7.5.5","@babel/node":"^7.5.5","babel-eslint":"^10.0.3","@babel/register":"^7.5.5","semantic-release":"^15.13.24","@babel/preset-env":"^7.5.5","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.4.0","@typescript-eslint/parser":"^2.0.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.8.4_1567132754682_0.034428458314768706","host":"s3://npm-registry-packages"}},"15.9.0":{"name":"eslint-plugin-jsdoc","version":"15.9.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.9.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e311874a34da5be09cee14fdd7a69590f3027127","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.9.0.tgz","fileCount":73,"integrity":"sha512-OY855Z7n/qkoVl9gyDwasnWUCwRDDqpSQHX2/IeKEeNUFL2/rnh1KDjy2fSha8vSPLy/62pOreHkCgvrCHsEHA==","signatures":[{"sig":"MEUCICATidT98OgwgnBah0mnUNW96gh/Oe78G+RRHzG1ocobAiEAlb5ndifWNK1FJwC1DGXoX1C1FQsPoVlsl/kERvvBzwY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":540705,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJda1PjCRA9TVsSAnZWagAAnxIQAI1nMqb6oh7C11ihB7vu\nc5Ejx3jb3p+wz4BFyfqkbnea9vpmoWUVeh+pbds31lbCKlBxx8tWABi+5bcI\nuHBpU536IP1cHfiEMU0QDTPaW21p9r0zGp9IwQVuQ6ih6vcJ1tNoh91dIgdS\nAKF5K7x2o3CYBIVQoqnNM9P0AiDiOEMQ4Qhiay54cm9DmSlZwBQbcEkhhjfc\nCJkHlX9WwjZD3s6A3kElO8xnNPYmtPoLy8lWFy5FhBglrd7TNb9KfRTYKwgV\nmA0SqDpG1iymknz7p6uWf5QG6iX5szMgPIfNM8ZIo4gmO1yNeKdRhI+mOQS1\nJXPgqdRfQLiUU+oxiUNMFo+eIIRNaIAA6W956IQGrijkY/DYMllZxUrLkytR\ngcyHqIkwOP+ulGX/K0Bn53zPywA20NV1/uoVQWV/QAMA4RKITpFWrHibbxwF\nden8Hly59NfbxUGU8v5r3O3JzKYi+dWAArZRKLJ3xIoVp//RO3xZoKEpX1VZ\n13FIZwe6AygMARSQQccveKwZa/b0rJChVJsdan3dR4ZVW3nzyxBLbPZf/0/x\nCZ1mYeGtGSsikQUfkS46JJQO1lRrzC/Vtrila9xO0dZmEXvjRRkyz95FehLS\nplTLwAH2+WhK8zXQDzSaS6QgCIvUhj9Q2V7DpMoYOWop+7I6YzuN4Lv8wJnI\npgRu\r\n=+Gmr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"12ae7c61dda3ad977b8cf27c43c4bebc30cfcba9","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.11.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"5.0.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.4","mocha":"^6.2.0","eslint":"6.2.2","gitdown":"^3.1.1","@babel/cli":"^7.5.5","typescript":"^3.5.3","@babel/core":"^7.5.5","@babel/node":"^7.5.5","babel-eslint":"^10.0.3","@babel/register":"^7.5.5","semantic-release":"^15.13.24","@babel/preset-env":"^7.5.5","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.4.0","@typescript-eslint/parser":"^2.0.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.9.0_1567314914442_0.5060946792179508","host":"s3://npm-registry-packages"}},"15.9.1":{"name":"eslint-plugin-jsdoc","version":"15.9.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.9.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5cc09ddd7e4568169a710cf5748a0ac8fc1c9af5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.9.1.tgz","fileCount":73,"integrity":"sha512-EwW580YgcyZkB83QqY8WuTioGUbIEBlPY+cRI/zSGYrg62GUpmue1HeCBiZRJ40A77BE/MGdGIbAGTdVX49URQ==","signatures":[{"sig":"MEYCIQCVAw348QK1WzJdaqrn4AVmik9bwhx1vAEnGnhcFJITTAIhAJc1lYvGLU9bTMd8GAJBEWwW4QcezpWqFkgn/VYP9MZ4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":540712,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJda2H7CRA9TVsSAnZWagAAoDwP/3gk/MZTVIM6/398e27w\noVfDDKxtJQMSv32OZOGHp8MRYzBMdvhjP48+e3dRZ2z9v41DtoP71wbg4xL0\n5AJ4hgHEHW7gNgP6CsKiYcavQVRwRZWkEhlZeZ2piNheIaDx2cv9vwOTAxkl\nkFVXe1779Zl3nlVFw1b5l/d2JT+jGMiujUcm4aMklySBNVrrtqo4z/j0BKWN\nvNkDYtxTPsIMHpiQcFW/DaQkgrGeGQJ8SiUBUDqWdv4y3ZexaoKtz0uQUWQa\n6SoOjE4bMNy9xeK6a+tNEGkbieurYMcwhak9hIBRxsOdoqq4S8LblNIMz0Ll\nsxlOlPo2yMoAtWJlpAGdml1KuO/WPLKhnRZ+Rsk07oFlRBOhSVgyI7FsT69N\niB7cVGpln29fawLIHuN4lNxPvlICAovuvAQx589YDdT1Z9ZD02tNEYQiwbBV\n3HNSz+hG2VSrew4QBPh1kvWLISTknXGULYZ3Om1RnqYCxv1K0Wrno+ncTeQU\n2iLofvxZAWWbRpH4PMRXD5FRPk+W31iVgBoRryfpMaL12sTA+JFcdDVM3UPh\nBASDNyYAE7JFO+06jUN8mWJt7R66PSLErZmBxR4qgBHhnCzZshk9j9cFmD+T\nIUZ1PyCtaeJ4FVhnmCfdKT5yIWXR2VJsn2kFyBR1dKlGeDmoYUnX2Yr1rodR\n94+Z\r\n=EpNA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"6c7a5de5a4e88dbd848ee8a127be5a7b77d4258b","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.11.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.9.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"5.0.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.4","mocha":"^6.2.0","eslint":"6.3.0","gitdown":"^3.1.1","@babel/cli":"^7.5.5","typescript":"^3.5.3","@babel/core":"^7.5.5","@babel/node":"^7.5.5","babel-eslint":"^10.0.3","@babel/register":"^7.5.5","semantic-release":"^15.13.24","@babel/preset-env":"^7.5.5","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.4.0","@typescript-eslint/parser":"^2.0.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.9.1_1567318523022_0.8193069767387875","host":"s3://npm-registry-packages"}},"15.9.2":{"name":"eslint-plugin-jsdoc","version":"15.9.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.9.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"fe02042ed6d2e140dc7710afd129382712c95101","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.9.2.tgz","fileCount":73,"integrity":"sha512-dJjIWFJlh4ti3CegWYN0jUUdjEsWvJ8TZJ/cMQldioVLxMmU3UZeZsHzxYcCicJwSVhQ+uGm+dbUyEIm0slX3Q==","signatures":[{"sig":"MEQCIFHqXE6BekiK4oXlApGzUWZd4efEwVBf3Fd2rHfx7lGXAiAl80fB00xO9lcxhW+Qo2jfCNWMN0A101g/Wa90kwF/7Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":542810,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdfLANCRA9TVsSAnZWagAAZ68QAJttr3dCU7np/NwsXRXu\ngkhZqZtQBWqqbyJAABgZCWaPG2TgSOt0r0HYNHZMVVPH/io0LBjKRSeNqgSW\n5QGpYGi1lK89uCaZKqwLDewjzgvYitOuD3s/vTh8rLbkeKTvNWKqEMyd6zF1\nStuzDIrZQJhnMDBASMie2fzhLLg+hkwrn/I50ErfLhZu4RSjPPt8DBMTFe8/\n7TMppnINXsZmRgDysO1y9/7gn1Y3kKHdyup4rXJUV92IjTETUzZ81WFRdfoJ\ntgRErRmOQ5LSjAmun9+hFP+1EtrRxH1a22hurRuMPR5etG6XPLoSoRqeMgte\nhuVwyA4WytV5Fw/f7sa1lTYYv8g/rz9OLFHBFDq1syHS3W5h70C/LOnh+zA8\nG7nfue2bmcUrMOTM4jJCushWQAGF2qr8uRbLu1ITYTVSzbByAiLEuNkVoIYb\nnHIhwqpYr6iL0uKiMwd0VmyLa8sRzHu45aBO/hpFBZ/QyqcQYy9U3XDDj4lB\naJh2fPvnLA8lNmcMQOohnNwOUUskLUyeKyCqXMb7XD3FRwP+kk0aLZIQLKyf\ndvs7NsWFsz8IhOj5U5pseYb8Mzu4aHsyMEOm6FhyGtZGM/faM7V6tDSbWZG/\nlo2lDKL8cPNqIx51CT8O8VCqVesr6KFFRUknQ5lqhWkfRfe9zmMfFyJKOXMJ\nGbHv\r\n=Kz4R\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"ebf92c5fb6abb3abdd6ede8a6b2debc5e0ab7812","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.11.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"5.0.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.5","mocha":"^6.2.0","eslint":"6.3.0","gitdown":"^3.1.1","@babel/cli":"^7.6.0","typescript":"^3.6.3","@babel/core":"^7.6.0","@babel/node":"^7.6.1","babel-eslint":"^10.0.3","@babel/register":"^7.6.0","semantic-release":"^15.13.24","@babel/preset-env":"^7.6.0","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.2.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.9.2_1568452620872_0.17213517022714342","host":"s3://npm-registry-packages"}},"15.9.3":{"name":"eslint-plugin-jsdoc","version":"15.9.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.9.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d7fb21a5104b60e36fd654586867761a7ce56f86","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.9.3.tgz","fileCount":73,"integrity":"sha512-ta2oebmerDjW2Ub9Yteufw+GsJuDE61RG7+PAavpw0mgEIBGZHCeS/GuCH8RZ5csPOBr7uHiUU5RrD/97ZjJqQ==","signatures":[{"sig":"MEUCIQCi98ruU38aRe+rkMHqfQvURx2KatLL71c4IylKhUXrvAIgKroghEAcFZ9NEWOKMCTWo43YZnFKIODo9X3OvszO3GY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":543183,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjH/8CRA9TVsSAnZWagAA5pcP/03017JAZdn4QqZ8sl8F\nzh0RgAYudNbJ9WgvU9WlhBjvxJ3+xvP0bm8nPfbZYOwV5BhmJj611K762VfG\nmZ5+aj0la1n+lNazZBBSdl3Dxq0fL5sJz3K8G7fhsm8UbqNcBOUu2UBUWRYH\njuTl0I/GwJZa99cYtGBsqPilKzXanboPxOv48dLVqdjhbJd82T8kBGML//rQ\nMF6vtgtP4dDwzZUmfNh3W/KMgJllO2wvC6pxqKSDJe+8dwBxkdj0fuADxjTU\nvnabSQ2u+2kpLROxLHP1gEvsvahnL+wA+1aGJSHZKfoGZMORLCQqsAz48/XH\naMn6BfCFTtwo53oBz8yQ2d4hjdR1A1P+8uW/5wi4I1P7gWo05U8aBLL19TEL\noa+alave61b/COC/h7yd+kZ6z2Q/ZPSdm9KmsWcDr5H8eurvOQEiTlgmoCzR\n4rzT8DOkqJnSxHPgv5gihQ9R0P7YkgEaG76r+sZDTfMwMOKI2c2XsXieYHiA\nt4ru67H760S7+6UmRv2M1QAj0VSkA8cJsKGtRErQtK9Y85kAd6w3Qs3yVsh3\nMHpYv6T+5f915InIr9LQH2sIPmGYS7cBTd4HFy/0mClnB4ZaSIrsJXOyQqmY\nIb2zrtK2cLGtD/vBSo2spU+TTf3SqjjZM9Wp66/yDA7QitqkDskDBkxQfr/h\nqApb\r\n=CBCB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"c5233848ed9eee950f8998f36c38744d2484750f","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.11.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"5.0.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.5","mocha":"^6.2.0","eslint":"6.4.0","gitdown":"^3.1.1","@babel/cli":"^7.6.2","typescript":"^3.6.3","@babel/core":"^7.6.2","@babel/node":"^7.6.2","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.24","@babel/preset-env":"^7.6.2","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.3.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.9.3_1569488891225_0.8245722672425508","host":"s3://npm-registry-packages"}},"15.9.4":{"name":"eslint-plugin-jsdoc","version":"15.9.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.9.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"04512ace8473b70930bcfe6c9287ad3edf46cb19","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.9.4.tgz","fileCount":73,"integrity":"sha512-TGk5HytRmlBA3BQ4Ya1WPzBWsi56XlFtdxDyQHNTpE5WQGphIJp7VbibWWWydU7N6HCsyhqazSSZQuO7SAJnww==","signatures":[{"sig":"MEUCIAUMh/XqVIBqca77rFziLkgIF0nsReW6i7Gu43V1ochsAiEA8b4AORJKPuatUewB5L1PqVKnWSWpVK+GUxn9iL77kdE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":543469,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjbnkCRA9TVsSAnZWagAAOFYP/1rTJwAZVBUliWAV1KaA\nZf2bU7zQ1z57pM1LL6BtZbyk3JYJTj3nwM1e11g5lQfNlPS6fNpiQ8C1Ol40\nAJQx4ckSqRr7ThGtrQ80iq/c0CwNvhsofZ08MG0lrgL1zZFBaN+8U8UIDzE3\nagorbNF9dxsXZfygn7pHC+v0J0mqLIzQh+Azu8qn4J0B2RdMmWq1n7MHKeEx\n96Z3ylvme9B++mDXGMyauQcAMM685OVDyfQZ6J0UzhlBJgEGBLd5VaDYJQWH\nVWSOi208QuzMKkl2Ya4P8dYA5ke3CXiZHhJ214Aod1CS9u/18vE/INa6kXFg\nOUtFLa7xvzRelT8c9vxjDtDeyjnZjkEzbyxhBbBVK/HEH8LAt/DdW8R4+4if\n/XkVELYxJaGHmzFcAzIF0yToz/uIkn7KfTO00KwZVSlomwzmLy7eYEHyck0U\niXCvUB/0n48tN25oiV5QP7761q65RcOvsTmpeA7IzZVzk9dXoIL3RoiXBAGm\nG3NeLZPyWLbfriFwJN9ouOZhgWZKgd9k6IpUCRS+AprBHjPHnssvi5V1IV+g\nUPIT7PyU4CqyRC2wgWawFvWPZ6ZfjjwNJj1XNVaaER3htR+Gmt4/8kKZijzp\nL+02DC4Yt+tlOzbroYZDzCug7oeS9md+fgE6lzzx0W+bVbypIWGmPnuYH87j\nazt8\r\n=VC1B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"f77144d9b31550733bc35328ed7187d13daa9ed4","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.11.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"5.0.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.5","mocha":"^6.2.0","eslint":"6.4.0","gitdown":"^3.1.1","@babel/cli":"^7.6.2","typescript":"^3.6.3","@babel/core":"^7.6.2","@babel/node":"^7.6.2","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.24","@babel/preset-env":"^7.6.2","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.3.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.9.4_1569569251230_0.9439581527923757","host":"s3://npm-registry-packages"}},"15.9.5":{"name":"eslint-plugin-jsdoc","version":"15.9.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.9.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5cb7a7b9649b2aa4b104f780e4c5bee902d975bb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.9.5.tgz","fileCount":73,"integrity":"sha512-OQOUf8Li9PRzULQG8Wi7QOd10aCZVAp/RkqOw0FYPT2j0F9lcPB21jBb6BLlWgR4F7XjdzbUmgVvhHYZGOWCVg==","signatures":[{"sig":"MEQCIBPLpC2cLMUydnD6NULUleY+zD5v61c6jGAs327mY98yAiAKCNY+46VrXrdSm5tAkr16B5RaOtPjTy/Cb26zuGYKYQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":543488,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjiCdCRA9TVsSAnZWagAAOO8P/1no62gYBnO2+fJlqKb+\nckmDE3DaiVK1yd82mAxzXbF7zojwVQp5UYmjL7OkQ5JRyWmEVznW6hIfWiNW\nLPpyZSfDblno3MEdwfbWflVv4L0w7qu3rtHEDV20Mjt+PQE3tw+vvLu2mnfF\n5KfOqGdChPltXi/ucAKnyUVefoK7VfFc0rHi8WMXNS6G9B/H5tXp5JvWhh9s\nG9v5HEL0lRAKpc1ExAth136ckuFggxJsyfs6ZpopLwo7sjE9liRYC/T6SJoq\nZw/8KPGCsARj4NKyNTKx/BCIrgD8113UZF+HuKZZtxOW8nz7B7SE/3xHGTpX\ny8rdzX6O3twIffyTBmGD32hJVXbNROKO2n12z6O9Bk+XplfDe2hBeM8MmAEd\n3+KILir1Wh7ZnNDOAnZVfsQl5iOa/pITioay8nac0ZKaO+ab3civ7v/UYbe/\nWkEJNnZd2XEAzBYRvG64ue2K/EBJf5lwGC/cQ7m9D1PrinMSgqSnWqJH+bt8\nFnT9ufqV/3kVaUxtBHfBPW7R9Caw9ngv4CH1JKdjEzqYjXAfBVAk+HKQFqxn\nC1CcCRTfcRu2gvLTGfNKzmcxwcII42CfCTOLO94PKMGoo3HGixJm4vcBWjdD\nS5bUVpNT5gV9wO1BKNr3dLQqZjly+BvT4p3wb4p4IGsVvkwac018nlXOvxTP\nipau\r\n=0v7/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"35583774fb1409de2f1f4d62f8961e64d41c119e","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.11.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"5.0.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.5","mocha":"^6.2.0","eslint":"6.4.0","gitdown":"^3.1.1","@babel/cli":"^7.6.2","typescript":"^3.6.3","@babel/core":"^7.6.2","@babel/node":"^7.6.2","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.24","@babel/preset-env":"^7.6.2","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.3.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.9.5_1569595548291_0.37433769498868474","host":"s3://npm-registry-packages"}},"15.9.6":{"name":"eslint-plugin-jsdoc","version":"15.9.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.9.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9e2307ac5cff7e35db3c1484159da388180c615b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.9.6.tgz","fileCount":73,"integrity":"sha512-Ei7IxuckrqPAc4RZ5UN3SsqnHf8h7HB8NbqqA/wvmWNnnh6mARRaDnt/QGp5HG31avN7z7a32rcajV9a0bjxbw==","signatures":[{"sig":"MEUCIQDPTOv6L0oVWhPnsIAaooym20sG+XMPOl/MBGYkphqPJgIgJUzcesrC914RgBQbkSGgOVBck4SyWEh7R3dWdeuHHFA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":547589,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdlKMqCRA9TVsSAnZWagAAwaQQAKJtBLU8pohwosiH1L/p\nU4wTZ0Gxtqo4gJfYT88/tMI4C9d1QN4AYv75dIV/3a0ZL/hX4Hzn7c04R4Pw\nvlWBqhnCpKQW0ZlFz750EqaoO7edRQ6/mRUIyG2RIJNc7uw9Ksx3EnRkQAb3\nyibADeRd000XScqkNwBf08Za8vUw9Az+ubUrutnP2c6irSp3+16U8/0rA9A5\nfI+BhXfVhJiUG9Yapaf1sY9l76DsummxDzTOoZxZKys9I3+meAYcxzbXBGkC\nu7iqY7T4GCFxXla5JZTHgnI+4Or1WKdsLJT0wdeD1a2+Qt0D+gnHZHt7eEpA\nrUPzTIKRDpA4B5Tk74/DxA/BNplqFH7PrRZCfAdHjbKD/CN6t06+zaXXUzy7\nNYtojuALXkDy102Ma9Lhk6oYMTqnWuFoVOz3oqZcY9+SOG95VZAMpRk0fqkN\nmhn2pB39P4Fz4GAxUgFXZofpNkTqBpB0ydc4J0x7b04MkOoHOFxF3KnZkdhZ\nMeUD/Hh/wL3+iVKN880l9T08FaFID0StvjegkpyYCSTlwirypY551LIrbfgw\nDoYNtgEyO7K4133EAN3T1p9HlZmanQmGw3Arop7IOoS0uUKjWpQ4XT50+O5W\n61xgI6Mx8XsQyqBu5r7GE2cVbsgpO5OB11aIm/f2XmK4G2l3x0txXr5EI/sp\nyaum\r\n=PqVD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"756520ad254e7e7f3c50171c37d5226cf08eee14","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.11.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"5.0.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.5","mocha":"^6.2.0","eslint":"6.4.0","gitdown":"^3.1.1","@babel/cli":"^7.6.2","typescript":"^3.6.3","@babel/core":"^7.6.2","@babel/node":"^7.6.2","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.24","@babel/preset-env":"^7.6.2","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.3.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.9.6_1570022185585_0.9058635176047696","host":"s3://npm-registry-packages"}},"15.9.7":{"name":"eslint-plugin-jsdoc","version":"15.9.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.9.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"132aa6a1905c17e088f908840d99577e67968ae2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.9.7.tgz","fileCount":73,"integrity":"sha512-i+bfhx9zPw9DkbrRvxH5i0f8NIizUHACSSMiGJXhznP4qOoWi/o3TQMjaP8+vwzPSqlXL/orf+KbuH8xN70ZRg==","signatures":[{"sig":"MEUCIEdvvkg3SM1NpN3l42CHyirzsb5SrvNz82G6FNniw03sAiEA38XtdGcNTohqUvLJEEQhu0oT5gWjOyK4si4D1Pgewc0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":549453,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdlKumCRA9TVsSAnZWagAAo3cQAKEkpiewjRL4a8t/AJDP\n38kvyUtSC5GglVvSxOPL7oaos2AhoE+F2tjfG/yl3Iwj8CpT14846jYHrvYY\n/QBNBPURqfabvXn/7pGumU55lPFS+C/KC2zXqqna9lXsoM5uGq0GgqAhKlPz\ntO8WMjldiYel8ss0C8Eg9OLma2fF717zyQGAHLvaYiQlJlW8a3EOPI+6Q+D4\nFRTom9N+GC6Z42FKer3nO0eIInn7QQ0+nJq6NV3rkMHgUIqonzZfxr2uH0s8\nzw5EKHqHQMFNok5QB2J9tMTt++y8nAlH1Y+/Z7n9RvGxWxCAImJRQx3sX7R1\nfDGoMhDslsdCiV09wah5WR0RfeJigr/blIO7n7eaKxQLajFdVc+tNLN3X7bB\nUiJj0emNxZD9P3fZIUv6Ti3qpieN+2f0Uzezu0KLVgCLnusHEdauJz7H6k1I\nEFakFt69iQ3tc6XSBnISNbWinDwuRFwuBRh+QtlfNC9AbfenrApqzP7E1a6f\nB9Qu/5QnHJVeWK0Dou3ANBfrboh9YhPezWVqYr39lFCG/mfWFblKrS0xxfH0\nlPQcQCO9xRKPsh2yrAARS769TkyDLCd4zQ3xFiGLZdhiDx6Oi0DILSL++/cf\nM9QkW++mIexfPp81eBDdMED/jRMJusvBd0kW/kx7G/ppkPWUlfSKIwDsWGMh\nO5wr\r\n=szzr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"cce70b0593c74fef66212723095b8d97ecf9ed93","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.11.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.11.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"5.0.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.5","mocha":"^6.2.0","eslint":"6.4.0","gitdown":"^3.1.1","@babel/cli":"^7.6.2","typescript":"^3.6.3","@babel/core":"^7.6.2","@babel/node":"^7.6.2","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.24","@babel/preset-env":"^7.6.2","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.3.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.9.7_1570024357439_0.47847897068523926","host":"s3://npm-registry-packages"}},"15.9.8":{"name":"eslint-plugin-jsdoc","version":"15.9.8","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.9.8","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"adc491e66d8f824c6f6920c2ddb0201524f14e31","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.9.8.tgz","fileCount":73,"integrity":"sha512-aJKMPuLkWe4HyTociywq48uUaxU79uvsCZ0ZcE6TynxI+SLySXbdPQTSxNZnn6FjMf8Tv/7h1BHC3dIkcqwTdQ==","signatures":[{"sig":"MEUCIQCEC1hF7cK+ZSZv7yanhrypidwDiuPUfTEDg841iS3tNwIgYFu0r3IHoRdVLSupPkX1pm5RF5EceTT62OSLiN9WuuI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":550341,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdlXpFCRA9TVsSAnZWagAAEaMP/2IqtFHZf8Mz+RNfMq4/\nyeiAuqS7E8t3JG8VN5i75JkTOB17ameTPKVRBPd2dOmB5vJdds0jzvIUQatS\npwWyG1lIDFMduS5MbaCfSG558RYq43VCtmeA/InoI2WHt7Lx4u2xCKMi+OPn\nMEb15QCV62gdYg1CZG0TYNbd5xwpIWi5XYsUPgqaoWiJu2CCZNSuN+R1MsXN\n2lUEF1WGyNs5hxR2g0hX/vgaCXBEnJO7BoSXjg7/DgslXLzhvLfMmLml10m+\nIfC4AxzE9aQOJ9q8HydQYoG4fYuEAL/cUmGM+SxkvWUoV66oNboFAbV4dFrS\n3GNAb4Fvgv94xfpb5OGiZGjJcWpPSLgUgb47+zgX+NVEIKiIfsI8Opo/i6M2\n1UOi0nImQJNbgc/putLvObUAkb3m3f2Jth5P5CN5VjvIJzTVda2kxKVwp4ZN\n41AOedOYlhACNLH09cqGJvFNYhmBAO6nEvHod/GYxpLOtlSxV4TxWtEi/2cx\nkLHb5IJqyaEwIUQc7bOmo+fMonRIHUQNJl+peVirRDYlyn6QaC9wEG5iZsD3\n4Y1J78gLxMdz4aXp3kTGtS34uvqYVa2CvYqUPSRyb9nWKmgwY26eAKbUTD9p\ns5WmkbW2Hf/B7eix74nHtBnpAq9U70+OIGG1Gpw6SkwELq+4W2RSBvn+yNyJ\nishr\r\n=fJg7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"326d2b52c7725e22a9adb88e96a70db875a4a3a6","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.11.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.11.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"5.0.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.5","mocha":"^6.2.0","eslint":"6.4.0","gitdown":"^3.1.1","@babel/cli":"^7.6.2","typescript":"^3.6.3","@babel/core":"^7.6.2","@babel/node":"^7.6.2","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.24","@babel/preset-env":"^7.6.2","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.3.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.9.8_1570077251982_0.33618750912823137","host":"s3://npm-registry-packages"}},"15.9.9":{"name":"eslint-plugin-jsdoc","version":"15.9.9","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.9.9","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"0561156a0d9fe167eeca726ea8479259f77895d7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.9.9.tgz","fileCount":73,"integrity":"sha512-gN1Dp9xaZSNAyxyahUpsnK8hubE5rYSxPSSN3wG8ZuzfMnIhp5Qm54GTdhXrK2/SjS4rNJ+C6EZFmOPSfyRcTA==","signatures":[{"sig":"MEYCIQD9oOfVMV70yAKEuvJgaTbgAHGXaRG4WAMXu4Z2VxIZcgIhAM2NnfIYjqINZcLfnThUCDhEbGmpa3O4ntiw5wc1O1Ha","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":551222,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdlp/sCRA9TVsSAnZWagAAzaUP/2CnGCRp/RKUOXQyRAoB\nN7hl0bQ54r+2u3v4gKIElj5gv8wXI95RkC763MUmgKw8VDIyBNhHev6x/BJb\nVgN/a5flcgWinDgTlSbKpRugJHcH4oTJ7aYa+kJ+Jd/gf7Klz+RDjpVUmn40\n//C7sbP1mq6gpvZvswAiQPZuHhoOnnUtkyTDmUjndRPbe/Ub83DqbcuI5d33\nQDtPpaLgefOoHCYqSMrVr1JSAsPzNtcywNq/3wlaPrZWXJgPteLC1176CZxw\nx+ffLXsoFkmeQ8/A9rI9SZM3w0feOXuZWq3f6eQ6Y7KoUcSEIDbe8sq5qWiv\noBsc2nhwb2YoAHba2BbKrvDB9RqHIRdzij4rCjDd5pa5y7oUuAGKvQe41Xjd\nw3ZVlPgDDJLLi0imI35jOIEAnhBx8uzvf1twAA1Gt0JMO6IwUBSOCwP/b7OZ\nDu/a3Dfzeg9F9TCHSbZq14knW7V9mhWK21LINNcJrMVUYkUc+eprj6c6M5QR\nqwCc6H4PWtJSfmEdWF8sq7KKtjRCv0bhxE2CBtiSytCHH5KNk+HQnINMFAtM\nBCvCgSsFu5Q+jUEs8uLFF8npAxF19lT3eGa3rfu6kou9cu8uvBckgYR2VZjp\nRF996/7bRyb9WuLZv+EnG/epVbNvDnLXuUoWvNjMkk2mde2clwTEBaZvvnvn\nfO/Y\r\n=FN3B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"24dd3281f05432c99bf9803b24ea7e523eca4fe9","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.11.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"^5.1.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.8","mocha":"^6.2.1","eslint":"6.5.1","gitdown":"^3.1.1","@babel/cli":"^7.6.2","typescript":"^3.6.3","@babel/core":"^7.6.2","@babel/node":"^7.6.2","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.24","@babel/preset-env":"^7.6.2","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.3.2","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.9.9_1570152427620_0.6885688752216248","host":"s3://npm-registry-packages"}},"15.9.10":{"name":"eslint-plugin-jsdoc","version":"15.9.10","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.9.10","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7cf8e0f4d2bba3e540e80acf119306f3fe31fd26","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.9.10.tgz","fileCount":73,"integrity":"sha512-m3jQQ7MJCnOksAhrQU5wSuPZQND1qvFNGBddhM2k3P9dJRg1N0fKHl79SE2ZV/ykd2RV1flsMHEa46kY2RCUPA==","signatures":[{"sig":"MEYCIQCAsM1vkg0YwzG0w5TUw2xHsJ+B0DQaAs4EUnJrwcxCGAIhANCbnjelAlge/ZsvvcFpMxAELNLSPU6herIkKoJMYTKE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":551223,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdl+EyCRA9TVsSAnZWagAAgtwP/RVBmZm4Lapdi+1gBmoa\n4RYhnVXRXKL/A8TYRab6b+UAWKuYGnOyR8AOOuxR/0bPAjlpf0KNhFNgBzl3\nxA0FxGrxAdgflamVoN+g5XWTWYF1sv8ET7B+10/Pj8nVSUMJyEsSF1EnwCg7\nyZxW1e0FLVGHxhlNHEeYjSFJRL/qWXpyzMKkA0MF2HXu8OxCD3yDsdlHMIjH\nBWWMt77OeAsaizJAJGih8SvfrMDjqSWdd2MswdXKxzxwNJyZlrvcQUQB7A22\nNxjnMyZYt7o4lHFYIDcC0q2GQZ6qstHzjukekDKZoRvXiAr2q3e5Bvy0zbVq\nvUTjzi15wHq7WFg3efQf6IIr0TXYs5V4Qxf1M7mb2C/fUdNMpz/v6nvqG1yX\nxRH60A9g7Z6p6JfP3hBTBm3pmA+4GQGEfqzV3OW5T5TfYfED/CjS7QlcQeeF\n8KZPDvGN7pBTQEKtiSAV2qdNSCAEKPGNJS6rnOH5cSInQ2vHVLZ5+xMpmpb7\nCki4kWl6lRfQjaDRcLQefCn0hB0fCiLFo3VTlVebka4lhMd5XBqP0krtrRA9\nL7YrBuYj4tCmQG2XLPSrMcxiV8ruMbXS2lkSm09sqkoeOpeFBSQJKccbR5JQ\n/8EF+jk3bvzl07cnIqyYflp3zhsuvnDtr6HtPaq6VclwdA9Kn/UCqvw80Mb9\nVY5q\r\n=3cCM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"c0171c7107895e4d751d7f048976aec49d14c69d","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.11.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.16.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"^5.1.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.8","mocha":"^6.2.1","eslint":"6.5.1","gitdown":"^3.1.1","@babel/cli":"^7.6.2","typescript":"^3.6.3","@babel/core":"^7.6.2","@babel/node":"^7.6.2","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.24","@babel/preset-env":"^7.6.2","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.3.2","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.4.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.9.10_1570234673065_0.7600583085699981","host":"s3://npm-registry-packages"}},"15.10.0":{"name":"eslint-plugin-jsdoc","version":"15.10.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.10.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"67ded2bf37aa14f80fd938527a38fd99b430be03","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.10.0.tgz","fileCount":73,"integrity":"sha512-3nxbAcppP880k9De+rXAs4jsZuhFjhjav/VZU62grwi7btiKPzPUsjYOyZaEBVJOjPxIo+BBhovZmhZ5UQv+AQ==","signatures":[{"sig":"MEYCIQCN4ny2FDWeJqxB1LRL7yweeg2bOtV8OknUkXUZClsmBQIhAP0u+GOWi6sIqpp2VtWetKuJLyn5epxCKxxXgXNy9l95","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":554726,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdndAyCRA9TVsSAnZWagAAoPsP/Rfg0aJM89vUSnbrWnro\n1ELKybW28iSuZ2TIgFH1vT/RqEy4fruJNcZfodrlMzXhkq/s8WjHyumrMv8O\nk5fvAah8eQnX1zit6zqwyMLbOd8OvTKNj0zbjj8YucUpra1iMSRnBW+wu7me\n+7aEUxw5xofhhjTlS8tC0FqoBw6tnX8mGpiXh4rAPAAd/eSgiMvDUlOsQH2M\nCUrUHRedwuK0GuXjC2lP+Ha+X+gkkVxjMscqqspiU+MI/vOySjPXz08c7eG4\n6KPhYKEz1VJx91OwhL8gdMu1zPgAZJx+oKI4MsEzcQT23xASW1Vfer2Oj9p/\nKnkuBtOjukAhU3NFJvk+gx5TgffW7jZTiQL58P1E+ye0JR6iUjRh1SKKlssQ\nsneW7yIL8fA/ZUf/BJMOGJyBijwW3evmpwSmn3QQ3aGXYMmmP0GbOdokCQ88\nXyPO8iWOw538Z08d/KW2rp1qefWPaXvifyB2gj2ww/1Ly5YZXEueuzhs+ddQ\nq1BsZJ0yaIt9CPDbbP/Z9oE1koTSVvzLlD/bAdRY/d3DgmZpWY59R/72+U6A\n91P4xISuwNk7RsM9mQbvMP6StvPIedCJpicrXHlxEzCPvzrxVd1t6KrgBbUo\nczbsZyrFpD3tfrVUNZOVn2T86uf5vmjQZL18ScnJeR56eX93u/XAeci6XbTt\nugQb\r\n=XCvE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"f5aa4765f258671bc96a6c58b45add4e9f65b804","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.11.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.11.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"^5.1.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.8","mocha":"^6.2.1","eslint":"6.5.1","gitdown":"^3.1.1","@babel/cli":"^7.6.3","typescript":"^3.6.3","@babel/core":"^7.6.3","@babel/node":"^7.6.3","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.24","@babel/preset-env":"^7.6.3","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.3.3","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.10.0_1570623537473_0.06757361822107621","host":"s3://npm-registry-packages"}},"15.10.1":{"name":"eslint-plugin-jsdoc","version":"15.10.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.10.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"55835f869c44584e430464183d0245c7626a55b1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.10.1.tgz","fileCount":73,"integrity":"sha512-M6/WLXOjPJcuL7vVG+kNkbMoz/BTCgtJgALEsztnBCiesWS7E8xGarw+4xt0TIsFxmlN1pDtsPY2BfFAM3TBCQ==","signatures":[{"sig":"MEUCIA/vsG5TJNFtkmmyLDDBmzpJCRayzRpaa9q3zLuDYr1mAiEAo22iWoSG+3hO3042XVZW5M7zh7W5B4TMUuyewnBJg9E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":556709,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdoZwvCRA9TVsSAnZWagAAY7YP/2wDSYdxaVIo7ucFdJjV\nnLI5rMDuUQ5yxhXOHi9pTaljLMeUvZtyeWI3EI+ONQ9vRNFTJAr3m6dM+Eft\nN6a+9ZKtc+tU6tg7gNoi45zKGqcSqwzIEPbH4uSAInGUAR3kiO2wlhBFX9hw\n0ZblrZ7aNU96ZTN+qIgGOzQeSrborCKZzL4lDx558ySiSZxtoHksAguWuFog\n6apOf1iviBJYNm6/MCLBdlK2P4Klfw6F4mqKeGbdsE1Mg0P5wbiMY2IdDFP4\nU8zx7HYzgH6/ys0R9xp7IP8VklJYp/wFd0UkmP5grZURS8aMCFYssH1KGyab\ngwWdCA7OERis9eOgbXPO/IROe27OTOP/NOHWeNGCiNW+dHXfxfZztAGuFdbt\nOA9bjPEc/euvJphnypnvbYJ/pkB1u2hKpqGg64wTvLXcdvI0LVL7cMziNhCq\nnHSYxhhrHTFJqjpil1O80tHSyGLmxXb/UPQ10xVMxHpAiHjTAUuuicC3n5qt\nhc8QaU9UzrSsfKeZABm2RyuqIoZdvpbzzRDjDLsqvEzAhmWfeFgoqDl4D915\nlKcxSIuC5Ic6UFxXqUv8/8LWsqKbrO2LPNaNpODCa1i7rwWokYmZuESxVU/j\nnXppIyIhKvNBLl+JD5dGpHQ1vNKLxwAvGZaOXPWxeH92xKCQIoB4IRzDA2E4\np9um\r\n=FJbt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"c0f449408dd56f77f98206df815803094e82cfee","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.11.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.16.2","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"^5.1.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.8","mocha":"^6.2.1","eslint":"6.5.1","gitdown":"^3.1.1","@babel/cli":"^7.6.3","typescript":"^3.6.3","@babel/core":"^7.6.3","@babel/node":"^7.6.3","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.24","@babel/preset-env":"^7.6.3","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.3.3","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.10.1_1570872366157_0.36288182052337126","host":"s3://npm-registry-packages"}},"15.11.0":{"name":"eslint-plugin-jsdoc","version":"15.11.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.11.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"0992a5d6943621895d1978ccaf60dbc6957831e7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.11.0.tgz","fileCount":73,"integrity":"sha512-O6JP0QD2Yd3mW2f/malhPm1NCJWD6OrmLmFs9dQO436l6w1HQB2cnZWi42j8c4ryl8GGTfIwHmO/hgv+kVBbmA==","signatures":[{"sig":"MEYCIQCqoTZS4EbopdYLjksGeug9sHJLJ2/KWDk/ZkTuqEWybwIhAM3w7T03z49ad591JbYgq5bmXCXk2HENKYbCP5ilIl+B","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":563147,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdoatSCRA9TVsSAnZWagAAbyUP/1kCvkea/xdRFowOa0xv\nqChu0fN1WNy2o/1nALZxQRuSO8mCakGbH896GFdrQdTFRNVnA+AjXJE2x+03\nT/vOVREIjcErDpa2tzgcHJDYZOosQihtsvRyh+oerzc0HX6c58clmUCiDNsc\nzL18rmB+hPm9NhNJet3tyNiSWH1fFKSmgtosqKtiet14VU18PWav4d4LTVPQ\nCqB4O579TQTFBb6irRu3jXH0bUGpZY7sWRl1h9biDlEnZmyMfdrvpgSQI14Q\nYxOoXqrHNi4KDFWM4NvpahNbYGgUDw29NYbGAG9OMps/deZQ2/PztYLQRGWA\nrgCZs1jFbOPPoka13U0jehd+0Ioe6rgy8gX8KuJk48tgtffTCe8VcSR83Waa\n55ABz3lUw+5Or71IMe7CbmPLSlcypATsby8UWt2gNIfIu+KWskiJXrqCQRvG\nMOjKTQXfxqh1feQzGbLq7TDcneSwBBeidCPRkiTCWsFT2PMiKwwMfyetjxeD\nim7EGyUixRUrRoBeR+7DffJlKljsW6m0pdcHTrEUTYry6jGJpu6tvC+ErCao\nd8viGVfVaWteI6zwhiq6tDekcdBVBR7NacOfG9hWfPfyeB6cwg/RQM3PHY4q\ndXrNnT4Wjl68b1ph0L4ywAzUTqNVWWMYrTkuTX+d8Dxl/FHPHUeLW6traxFx\n06qm\r\n=oBWF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"e791ec302052dd306021c10f360445ae0e3587f4","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.11.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.16.2","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"^5.1.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.8","mocha":"^6.2.1","eslint":"6.5.1","gitdown":"^3.1.1","@babel/cli":"^7.6.3","typescript":"^3.6.3","@babel/core":"^7.6.3","@babel/node":"^7.6.3","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.24","@babel/preset-env":"^7.6.3","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.3.3","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.11.0_1570876240909_0.31177654301725743","host":"s3://npm-registry-packages"}},"15.11.1":{"name":"eslint-plugin-jsdoc","version":"15.11.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.11.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"1ef804b36e5a4868e693efe9597a8a374bcaef5e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.11.1.tgz","fileCount":73,"integrity":"sha512-eozHqOjiYvtCKxYEZsblWlFIUnshXYfj6s3pa3VJ+I+ZFDzY0wwpSMkDyaM0tzNgqLvMAlJBSFlI5RrjhJ9TDg==","signatures":[{"sig":"MEUCIHJfRKLADxcIha3t3drJfvt5I+6oUIPL0lAPPXmdqaBzAiEA+s0OfrZvas9R393nAiQ4a4fEVCHLT766oZeqiOo1iNA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":567938,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdpUy4CRA9TVsSAnZWagAA2yAP/06TANFjbAzTZ4Um7ZGJ\nWBhy5ie/dkmeBE4gor0nIFDs4thoBAkg9LAQMyirdsVhlGlZZgg59ywqlLYk\n0WXTx/88DIqov2c2lBne8nSIZ58jgurOjoqNi/tzua3FXAGdtB9WF6KdFkIB\nWc88HU6RKEuKlA0AqvsG+Slmf0npcgX77/MjDjguxwK6AfhdFL7e0BpnbkYp\nMMZIV4+xB4xDE3NE3t7oYt0cS5quDswmTz1AkmhNz73lcw/TNnGU5LZM+zsy\nE0783qTQHFGECc8HXqNYDWD/4BSad1qqsUclDURj7ss8u6v1w4mGPmmNTWgG\nUvJMNLSncxpWsZNnQ0sG7f4Hkh2rMOhKjG5IUAkv6D5HeO9HDbqoL9l8/dHG\nYbbaeS6JZGcQy1q/G0mjD4LIxOql26mLGkh1Fbe4VV+m6dMB73G5HrqmZdoz\niPhGori2cbOkHtnng3kJOs6FxoIY8tNkvq1XBnxA/03SlI4waMLuo4JJUS4V\no3xkwlLJ5nlBd72/6AjB0/yLoB1IZyVMFEOi8sYQYPpMCN4SEgWIf5ZH6spy\nF/8viWVIrrogAeLtdB+MYRU7NHp9KPw+DnZ/QscN0ZuFHdZe0/D2PZZcASFi\n0b12qoyDZoy3+9mRZ55n9QPP8EP/GQpMg3855heB677XRkaWt2Iol3SIhjYq\nyzWj\r\n=iRHU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"474ecb0b068333bdb1aca61cbd953cc893367514","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.11.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.16.2","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"^5.1.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.8","mocha":"^6.2.1","eslint":"6.5.1","gitdown":"^3.1.1","@babel/cli":"^7.6.3","typescript":"^3.6.3","@babel/core":"^7.6.3","@babel/node":"^7.6.3","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.24","@babel/preset-env":"^7.6.3","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.3.3","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.11.1_1571114167664_0.7887417703859283","host":"s3://npm-registry-packages"}},"15.12.0":{"name":"eslint-plugin-jsdoc","version":"15.12.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.12.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"15c456f6532c7c88231f10a59e7a7a003e88404d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.12.0.tgz","fileCount":73,"integrity":"sha512-oP+rOqAf54QLbJM3ECqhg8VOrcMfqBSbGSYCWAVX8cy0ySWXK1Z7yg8QylY1bedrRBAvxyWBxdgzDP6Uy6WoTg==","signatures":[{"sig":"MEUCIGkEvr6rADSFqd3t36wBtwK5AZ1JP8mj/Cyt1lqBkloLAiEA0eLzSCivK4kv3zPu+rsU8qCSiVxIKlU7AA/x4eQiiDw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":570247,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdqQm6CRA9TVsSAnZWagAAZgoP/3U07ECFJ+Yzv5Z4SAmx\nvxPfeovd5SPEvFkitgs8EHqx+Z47cYHGfbVPz+ukrfwqKG3P5UHtWjNcD1Ck\nxfJoypTuqLDcwLJqzpT17UGMZcs3safwFAvpnbUzqI+fa/Lsw7I+R94+tksb\nSPI0lYVrvDib6da3yZ8AZaZ6TC0hhy71OgZpLKABEDV7/aKSDMs3Wcx1ZSmY\nb7V2sp1wOvXE5JQ0HNF3cGOb7MFaZB85pttBix/N30zs33hUxrgs1Tcjl5Vm\nSNUNIxJpJj9slWRuPIdrpu2gwhYtZ0OInEbmWGnR+YNqw75WT1U/tgZ7HytE\n0gHlUH6Ry9qR18H/wdJngK5IjqQADHFRnyyb03yFPNEbCVKAM37w3jfa5Lnw\nEmqw7eQzyazPI4wnt2sll9qrU23Zw0YGBN/9Vc5tr4a9EhDWlSeI+nNSSg+8\nXMaZf7N9R/CC/zJ8Ogfq+D1LE7RXaxFZLt5DZ3zb8RxXkZyzHmIhrHn3Xthr\n8uuoLIsDKPtIagQ4xeG2aEW+TRtDCHxb391j4BSVmu77/D4aINDOpUQKJrch\n8V342eQ7qw/VTa344LWUni+gJ7Y9XE37Po3E9HVcrPinJOIZlwYsZHFHQgKO\nd0eNJr7yBDrtbQUaFxk3Fa6Zx8tEXz/gpL/Glgk6gRVUQ+JxpQQIQrl2Tl32\ntdYW\r\n=kWGY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"a7bd9cd238ec931c13f495907e039ab70b4601c4","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.11.2","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.12.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"^5.1.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.4","husky":"^3.0.9","mocha":"^6.2.1","eslint":"6.5.1","gitdown":"^3.1.1","@babel/cli":"^7.6.4","typescript":"^3.6.4","@babel/core":"^7.6.4","@babel/node":"^7.6.3","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.24","@babel/preset-env":"^7.6.3","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.4.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.12.0_1571359160994_0.04028893506431985","host":"s3://npm-registry-packages"}},"15.12.1":{"name":"eslint-plugin-jsdoc","version":"15.12.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.12.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7cb141f5bc77faebaac6602f3dd283c83fa91a78","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.12.1.tgz","fileCount":73,"integrity":"sha512-kiE2dB/fxP4PQFVE9yBq1rJ9fooHlH3soZw1tNJoE0GOGmafM7lAxqMZCUceG0Lk8Fl1mxcjLNE8arCzzs4uFg==","signatures":[{"sig":"MEUCIQDEdAONlyR/qJMFEYnck55yEU35cZF4d3hT8D6zM0DzNwIgVIlCHqjvQNEFYmLFns2yhM5IvQV+8MZAxjwGC4gmCKk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":571058,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdsEvmCRA9TVsSAnZWagAAfJYP/jFPqQ1GpmsyV+xuTV+9\nSEYBS1LczN6k8qmSrgwO6CN7L0qZCY70Pnx40YWbd/MkNtD6tFaXPjK6uWdN\n2iTrh6THCrAhArBOE+gOq1SkWwUCvN9x7qmo9kIp11pQzM4ee/6ONM3QcrL+\ntYUkdobr6rPY9ATxlcJ+N1TeWrZENYUBHAAHDKE3nXJvaHQz6Ch5hTCAfIv0\nX57nJ5QtQRa5ha4dD5k4uqwjChmrbbAokEsgmD1uXPWZDrF8OjBuj1XBqHAq\nlDE3Gn9UFMPCvVlH2CsUG4KVxdKotqy+STXS6H4/nSZlPAJ/5sreSdoCpUUi\nJmK+PAVQ/TI4JZ/tcagYqpQG9+qUxYBx5lHIATIxcSetuRVHqJ9jAebzLvCQ\nJDEk6IQjFj1v04sYpc54PiXcfkXsVn3G2v4MX5B/VlFvw2F0LhydNmctZmUT\nGeTpOnh+tYXAFXNb9/tb0j7PAk6pJttPHkuZwlksm1lxYV0f2B26rJBJPOiY\nRVOYJHAdh0xivreOL40+3ZHvBXFqg/cMcqPBmQ6RuIqBBMPC8OOVJFHGroH2\nQH+b2a85jPGjdb/F2zhNZIGKvSfezmCVBJRKmhbKVPc1KsBptZKc4T3Yx6Xg\nZKVWr4rqSZduuYzhzpOMAbsFe/1TRWo4Sm1GOBJ1yC0bn81yGkH2055xcPsA\n1nF+\r\n=+qd6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"6ab617fe2cca1b277fc48831565d6e1a7f339b35","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.12.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"^5.1.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.5","husky":"^3.0.9","mocha":"^6.2.2","eslint":"6.5.1","gitdown":"^3.1.1","@babel/cli":"^7.6.4","typescript":"^3.6.4","@babel/core":"^7.6.4","@babel/node":"^7.6.3","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.27","@babel/preset-env":"^7.6.3","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.5.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.12.1_1571834853442_0.3873509915051008","host":"s3://npm-registry-packages"}},"15.12.2":{"name":"eslint-plugin-jsdoc","version":"15.12.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@15.12.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d8afb762921dbf841bad42d4b2b554de1ece9305","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.12.2.tgz","fileCount":73,"integrity":"sha512-QHzPc3VKTEbTn369/HpqDjl/czv3fCei/bZg5NA5tu9Od10MfpTH4kc1xnRDobhQoDs3AMz9wuaI4coHWRzMQw==","signatures":[{"sig":"MEUCIQDLY47y4aHPpPzHWN5Og6cVOuf8reFp/wp95zLcenpbkAIgLHQLlZRSY4i1sX37w0t5bH3/jydja00ylm0Ip5z43yw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":572380,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdt50sCRA9TVsSAnZWagAAsUwP/158asnXT4AiI4fndto7\nCWig1gbu0hrbOXwFjXGRuNUN9zkqp1SLRmiPqJ41ri4tE5rZRI7Jtd8EljVY\nwthnEsUIklUrYSTUPIlClBHkqhzMCQscFhZvubmS8/+otqsDRGVRk5CfQmtj\nvbfWNY42TKG1xFphseYVkycWrH+WSFFjGKLTPC4zfH6HRUK3pdc112wWYVOw\nZiGCkxhWzOP2NIgzhOsh84nPuDoWh2uQ/cI5gX2I27cQ+WerdkUBzk7OmVqP\nFDwWCkHmQBD3pOmxWCbIMT+IE/W0WQCDcdB4bOmOQXtriHF7iOhRnFBV8fP8\nK5ctPQyjQsfSt8EK4bGFKkXLeoAZdzJuGB46UhtFgaqGKULS56IAvkHnqLrX\n8RbLRAFCeGkP/gOkCSiahf8vffF1OplXBGReLF3cpTBcgulnugtxtx5wKZep\nTDg9TbtqIlia0mLtBXIFGHCQCf04h7sD7eYEU90c3+8mOscTJ5R3p4wXp1PT\nLf38EcOZ9WtFnmaTUE4NrBNX3lg7R/dDmd3ffB9+EB8UnuY3pm8n17Q/dsx2\n90ByYMFa+TBpSONlS/2nmBWYw472XL7g6uzuZAS5VwsFpnCBvGpVOolAMEYg\ndtYUj3yD0K5oT40ugT7e5Rc/vamBVubsAtxeY4umhiviZz+eczMa/uvwTIgV\nxhrd\r\n=wFAd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"fc46821ba45690b1e83d59f86c77a98db12a8e30","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.12.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.17.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"^5.1.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.5","husky":"^3.0.9","mocha":"^6.2.2","eslint":"6.6.0","gitdown":"^3.1.1","@babel/cli":"^7.6.4","typescript":"^3.6.4","@babel/core":"^7.6.4","@babel/node":"^7.6.3","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.28","@babel/preset-env":"^7.6.3","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.5.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_15.12.2_1572314411935_0.16807728662486787","host":"s3://npm-registry-packages"}},"16.0.0":{"name":"eslint-plugin-jsdoc","version":"16.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@16.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"bad3ab01716df2a3a27a1bd0fb7c2f52b066c035","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-16.0.0.tgz","fileCount":75,"integrity":"sha512-oLfH3+w8CIf65+8jgANLzn5KgF1gEpoOH9MBNuuIDveu3InEu9CQC2SJgZy1GgYtf6LccbsfhIZpwZLoAyMANg==","signatures":[{"sig":"MEUCIQDTQ9eVlWik7DVTwLo/g2UHsejARSC68niRXly3wndt3wIgJnmtO43j1bHN9eu+GfSrMtk5yHj2R6zjdngjNSBOBnI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":580408,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduDd3CRA9TVsSAnZWagAAGy8P/ApG1dE61BaqcLCj5pjv\n+Y6cPgUQWGz0x0bCK3sOwdvIO12L80aRy/2pLguklMs+zqnCydiwp6GGfbOh\nWdKyJ2HFJ5lcYGFe4GZyHHwB6Z33ktUbnOrvyChaMWDZLs92w8jN38cvhFJA\niEffl16NQs+fwGFCO1nRAc3+GlUpBAtcz5pKThP36K5Pyo41t/NTvWtrOraW\nr5/aqJXFfDxeIIazUZ2yfwpSYw9qKLzMApGlMPCzwbN9Mr176nY1qqPaVsGh\nvjwEwQhyTFoq+W0cgSZLawsaAjDeBciAHT6kFNtf/F6rm4wWrltjoaw3sc67\nDM1vnSAxKQPn1ISz8lM9B6U+bWeiB2KAnwX8XBfAxzb1+ClKw+rDJitzIhtg\ntNA73RoSrGezPA/riEXF71KCLcpVB52m9rdSNqkJ4Dqm/6yoH2TjGA3GBgpb\nZ43GH/aXqX/2MrC/TXhowGpk9uV8Byw0x4hjEUpurYQeQIxswZCplEelbZPI\n4jVXAzalUyHqULZ2e9vkPas4tqiCu9e1irLXVa8TmUEJER/TSoErOR+e45f3\nVnWeRoUn/gZHVNj42N3ABFohobrszMUAR9E/eET7RMSdNlwdjMSTzh1rOemj\naKNY/Dv4jh3E/iEvXLav5HlF7FHrjvsHj3aMrVor5AeotQ6GbKh5lv1Ch/+d\nAcBx\r\n=bJ6a\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"fd3627867fe57b14c424576b51bbffd102200e4d","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.12.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.17.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"^5.1.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.5","husky":"^3.0.9","mocha":"^6.2.2","eslint":"6.6.0","gitdown":"^3.1.2","@babel/cli":"^7.6.4","typescript":"^3.6.4","@babel/core":"^7.6.4","@babel/node":"^7.6.3","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.28","@babel/preset-env":"^7.6.3","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.6.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_16.0.0_1572353910492_0.11891971295463821","host":"s3://npm-registry-packages"}},"16.1.0":{"name":"eslint-plugin-jsdoc","version":"16.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@16.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"19ce3f6fa168108a90f07bb037364b144d9a7b08","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-16.1.0.tgz","fileCount":75,"integrity":"sha512-cHfJwYHQgnv/pN+ltWWWdlneOji4D8NDidVxhxP8OuhPMe5UT1kQwBVO0djz+NGkJrTHaTVOQh3sAZOeb/cWoA==","signatures":[{"sig":"MEUCIQDtAVG3KvQ5A3pXsc/k7Yu4Ox9PJkug1tidlcx4Et79qQIgDlH0SytY+3nWj/FWy+kwj9BIllW48dpsgC86GWSg+/w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":581498,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduDmxCRA9TVsSAnZWagAAuAgP/iFwaHoK7JydA32vtjjL\nBlyds3RxLxK4UIMvQY+BJAn4X0iKh5TOOIWV/ITa/Wl46M45YZcJNAZNUKpF\nLACSdraY7FR4GLJNqLTwVtutad+12wOIgQSG/TeswddycphZT0QDSvdWic+v\n3W5+BDgg331GbGpzzWgj31VAN/AVNiXKtgn1bcFFBDAlNN6M6dl+VqJkMoCc\nXuM/w8hfiQLCCJtn3/yf6veCPMxWTtfuLSYLXHxfIbSZfw/jyk8w5zAcmmvO\nPFhnqzru73e7ZVNUq7koCH9PJ1u3D4WCnMjREL20Ng9agrGqpAjSJL2oBjXt\nm+qwEv2C/LVxKm7XMVABswF6jZNRUj8mKk5rm6UlRRpK30NhylllU0P6ozPI\nzFD7O8dBLcMYadX3EwqswV8AZ3GtMvtfH1v5px3XqnOy5NAP1BtLk3JVfPyC\nJvTTbmpOAp49OoknlgwLGS6Xuj/t2JzGVhjrc+cK9aYmj3dncmaKhxkM1R22\nLzlgWTP06lLHis43fVwVaX0r9Gp1mU8+lJO55BhpZ6mSUGOe2eXmisSdiTSh\nvFBySy9xnqWp4UyG6cZYQd8sOlI+VsGfJEaqmlfDorvCqdppemQHMz2btiSf\ny44BEa8jSfGkZV94UpsOly67QklvW8Vfe+i5ysp1aa6kwfYqYm5jxiFhTsfT\nUGOI\r\n=tJhw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"42e8de2831e1182eac5580a7138189be5c792fcd","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.12.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"^5.1.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.5","husky":"^3.0.9","mocha":"^6.2.2","eslint":"6.6.0","gitdown":"^3.1.2","@babel/cli":"^7.6.4","typescript":"^3.6.4","@babel/core":"^7.6.4","@babel/node":"^7.6.3","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.28","@babel/preset-env":"^7.6.3","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.6.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_16.1.0_1572354480673_0.9045870517892547","host":"s3://npm-registry-packages"}},"16.1.1":{"name":"eslint-plugin-jsdoc","version":"16.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@16.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"fa9e66579575ebc5e68d86e0a2f3058fa6a53602","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-16.1.1.tgz","fileCount":75,"integrity":"sha512-GvnWWoctfpFG5knKZhR04arLcZrsRF4Ihxq48y0k1rJ6UrjiTExqExs21Gd+HNdPwrPZIty03UvIuEIzpFY+lw==","signatures":[{"sig":"MEUCIQCZe3Em3L0gcDhpULFzFEf3Eh4LKl8xI4V6W4v67lIJWgIgeMmtR6FrbLo/yuTLECodaoE4NoFfyLEOs8UwtShC+lE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":583740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduDxTCRA9TVsSAnZWagAAR9QP/1BfzksIdYWmMHMoJO06\nMQDR6FtnVtKa8eodrq9bj+WCQ9+ZMFMHxE+OgbvUoUY//IMEHZkRo3OsIz2m\nSYlink1eX3ZkEfr+pR2EGx9T/WX7pG7YKUMA6oaKs7tSvQEANfGtCJQtEE7N\n/3/jHaj0b+JtbvZmcaRghH82baJdrfvQPaWvQePjhpticKgBiBLFfGnuS38F\n4+aAPx0q+MDGYHkzsjNQgqo3je/ADBTIcG9GuFmF+VLLJJq8y+SrvZL0F8sA\nVqRaBjZc+YnJHss57+cLtYFfe/hYH+0TueLd8k0eDzxJkHI69HRN4uAzm64f\nSjigHBVkHH/s+9F4t1Feiw5dw3dSaDvOjLitl9iF+wAa8TLEKePlhV7SSu0B\nry8642GdpDqg++PQsE7oJfQhQj8KGMPppdYPGehFxSX54frbWl8bN/iHxseF\nxlm8NzBB+35WuYmFsPVnBZb/U3Mu/JDsOE+abTGpBpCe2l+tiB0lv3/ODrPR\nBLFJ8tT4lkBp77OnFNj/CINdn0heFRiT9Ji92N4Ey7q+Ggmbu56I4R+wkxo/\n16h2Fr1KCqP1Nzt59Xna8H1irK6WA1ELSxdbT6Ey5n6a4mKQ/fRVxqoBbUiq\nqwML0nK+YIyS2CHB4BAUX36lVDRLkrRNM6X+WxawGJnnsZRxz1cFi8PFXmaU\nFdlj\r\n=+5Is\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"42476b28ecc097bd31aa4911e371aa97fb08dc74","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.12.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"^5.1.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.5","husky":"^3.0.9","mocha":"^6.2.2","eslint":"6.6.0","gitdown":"^3.1.2","@babel/cli":"^7.6.4","typescript":"^3.6.4","@babel/core":"^7.6.4","@babel/node":"^7.6.3","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.28","@babel/preset-env":"^7.6.3","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.6.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_16.1.1_1572355155127_0.1576115267397089","host":"s3://npm-registry-packages"}},"17.0.0":{"name":"eslint-plugin-jsdoc","version":"17.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@17.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e440b13661bc39c0d9a7e45ddbf16390eac70703","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-17.0.0.tgz","fileCount":75,"integrity":"sha512-/eBXikzrGLXTzseEG4MqX28bO69LgFThM02Xa7OpeOeoZwZ/vQjh3Div2+u3RJ7Mtv00jFlXUpnl772ov9fdGQ==","signatures":[{"sig":"MEQCIFlqHH/Jb0S9T/kt3j+dA0RU4uSfKP+jZPjgf7bqe5cIAiBA9B/edH+g9/UmKkIJUxQXtADR7rlrzLTLkA0Z/JkbiQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":584444,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdu4UTCRA9TVsSAnZWagAAwZsP/isFJTr3XLZKZDNPjZ4J\npCQHARrQ+rGxD3qwK1y/Z/VkGGdY6qH7isXB/kNpAZK2T61VFIq3i0RPLwKe\n2lpyv8LbmxhZbh+Vvv82pD7GlYQIJCykwCUT9Zweu1+Nzj3zZ7SRVVrRe+68\nbLGSZKFG2ZQIZbeCO9SpyftNWUMxEZGdT+5UxKTenkjarZgkEfvvWJTTNk7K\nLH9Cyy0UPZX+yI8E3Gm5M3uux6NFIC/n7vpunL0HuVKbUQezHIYd53bzEwLp\nwHwipuVvIGwvPEibYZ+vShqHxdctptTIsRYXV2cfK/5Er9LvtKVK8Cc3lWPh\n7RnBhcaTrKqqv67rs4jB6M3royxe/5Qm6odTtcXEMKdhZAKuEeTzLuASc8Mn\nDCy05VlkAph5kij1RB1PDx3+Qax/+KAuZOuVzuvkoZPLF+EHc3SrGFK2S+iq\nitL02zYwhg9nP9e7K6cfW8eBbb9mOrFQ6VwBAS2IDo78Al8UT1kmQPFzcJGQ\nyigk9MIV72Mk9XQOc5AMrb37ALutPdSmdNsPSgEtP3NKTZ7w505YHK8LCJ6v\nK1qRD7wOFuk3rIaoxfkBM/rceoBFkIWRmte3aONX4hHbDJB97pUgbGRt1BMn\n9pvhLXtE3QiwslNIx8Alg6nzh3/sqX+dcZ+IW118B2qaiZtYMd7Gz0gWD/82\nFlcu\r\n=137K\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"7583f16496ac071c69b5d05c68d554f26d9cf36f","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.12.0","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.6.2","jsdoctypeparser":"^5.1.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.5","husky":"^3.0.9","mocha":"^6.2.2","eslint":"6.6.0","gitdown":"^3.1.2","@babel/cli":"^7.6.4","typescript":"^3.6.4","@babel/core":"^7.6.4","@babel/node":"^7.6.3","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.28","@babel/preset-env":"^7.6.3","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.7.0","@typescript-eslint/parser":"^2.6.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_17.0.0_1572570386649_0.12155972847590246","host":"s3://npm-registry-packages"}},"17.0.1":{"name":"eslint-plugin-jsdoc","version":"17.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@17.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"fd7c01b810184ebe3697374261605e1338476e22","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-17.0.1.tgz","fileCount":75,"integrity":"sha512-5L8nNpZmc3IWP2YXuMelSCGdsKBxaXPBYIs8ug7gHWqmFtGIUhPZfKTuFIT6K5Hbcsg/zXhjTEHpCMe2M7slJQ==","signatures":[{"sig":"MEUCIC8JaYCCONQ56KMt2rrVlfyH5Og0F8+JGup5q4XRES4iAiEAx8TWLCl4k5PV1KbPIUGE5R/shVnDoVPST8/6xPoTgoE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":584800,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdvlWDCRA9TVsSAnZWagAAQUIP/2f8pf2s6CKcQfCBklZZ\nl1peu7Rxxr7fdbTAskdqHu/uC13JpGrMVigd4nf9tqGv2woyFFCkIQO5rpkX\nt72UA+k+8HGfK9entLQuO7JBAMP12Jp4WhZ5KpyiWsukdxnqSNNQzyNtTb/i\n9JFBEiKZqPHo4KqdWUW3PEjFBDHI3/GBM7wm4mia6lztaitb6L9buf3aiur1\nLolEV1u/Krg9ulad2e4Od7sSAPPoNZUDe4Mf5ApuRXAvbZiDbNN9DVnX5rfO\nbtPG6arf8K6T79kW4dCfSKjqEh8fRBI4aHClJaxwYc9cvmkYW+eUl9GTuGjT\nZg25LpuJwnHFTEHOE3TyZpBQu9olaTr2QM6YXCKOFWFc0HxHdGK8i48m6Ere\n0yB60Ti1yKb9DQStoKTSadZAcmRZPKHF7bcsXzXh12TzW+FgBucNnBo/dP8w\nyQh8TvmZ1SXJlJzzqrvjljZmoiPEwHOw3ZueNAFodWTqqV3yB0/pGdfglR2R\nV+3gPqgxG4v7XaQrax4HMgZvAc6FUMhjLFN/pfBbQujKWEmBNf5fNZZYU1bh\nIFV9iaX4Xzb0fDaCbBFWDddZiKglF1m1mf4friiHn9x1JMIZGIl5nfzQupy4\n1bBvyYSXvqJO/APvl0YuDSdlocVzvhWpZ9/nsS2f/yXx6izWi8G+efPJweqQ\nHOWc\r\n=o+2g\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"bfa237b99b7bb56d5898bfd1b0c5ca92de29ad8f","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^5.1.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.5","husky":"^3.0.9","mocha":"^6.2.2","eslint":"6.6.0","gitdown":"^3.1.2","@babel/cli":"^7.6.4","typescript":"^3.6.4","@babel/core":"^7.6.4","@babel/node":"^7.6.3","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.30","@babel/preset-env":"^7.6.3","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.8.0","@typescript-eslint/parser":"^2.6.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_17.0.1_1572754818400_0.6707605149809304","host":"s3://npm-registry-packages"}},"17.1.0":{"name":"eslint-plugin-jsdoc","version":"17.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@17.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4367ed2ae4c9e04c909c068d661c09bae0e07f9a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-17.1.0.tgz","fileCount":75,"integrity":"sha512-nIsSjuJOa95O5ayhFDdtaa1y0t1CGAksemcqXGTkXE49xOzZSMUChixzCP6feL+hfRcDZHWoHk17lOlblGFkaw==","signatures":[{"sig":"MEYCIQDd6dGPAgyBS3EwkeQPiVKQ3JwTz6kGZ1SXmmVZq473PQIhAIDTKyOEH/4BJis9nN8Jka+e/kQ6MCMR0E+D2NH/NzCU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":585436,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdwIwCCRA9TVsSAnZWagAA90AP/A5WrEqQBIF4RSo8/K+O\nn9+ZS402znmEzd1nEEXVEPhSwzBXT0VXKXhTSSRK5CQNLh3CUL+WwgnQv8ic\nmDuB6YEGM5wYEf1ZVqmdCq8PYukBc+WSwI4Kz3RTCp5PGtACYn+cC40jqSvB\nlW3qsY+8K2Tx4x+9cIcb8Cm3axSuEdz53uAGA1WAt6D29O7k6F/fqnWlcnHe\nKya5VE+w49x6FCXV3poCFrL81n0Pdv0iTjWo61UK0E5d8hqOG0RGuikdQilf\nDvd1ytS5yr76Ov3/C4/hUx5Uk/ASAJFW2CLFDD2h4yq+n086v6lds2F4UYFv\n01Q+lUOg3F3d2nF2KuSlv27NztL9x5Bp9JU8ZDxrRvU3F5jN5P3w/T0ztZeV\npN3VYJGIwOrdKNfPQ2SGVRmXzLNxuEA0PKqXz25msna8N4Ls9hFRcfplMkHe\nkS1LfXehYJ08PiSGrr0ot/RD3pM5zyYtzb8lX3bAbBstIDaCBdNW7kM2WhF8\ntcAAEXgbuMEv8QIgO5YHKJ8mo4JwstC8JJ/5k8GOtvtn2eZipMEKdtx0b1d1\ny3qotyNkfh0RvkLWSyKwNOYuXSaIgjepBY2CAwm7l4/d2WQA2977ji97kpDd\nELYKmnDdy9Ss9iMqfuFlFDF0N9u7jp1shyU+IoBMhtnof9wvGJaZiSNZyeMI\nMAjJ\r\n=dPds\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"9d24b25209d0720df85e43a51436b53a29636a65","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^5.1.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.5","husky":"^3.0.9","mocha":"^6.2.2","eslint":"6.6.0","gitdown":"^3.1.2","@babel/cli":"^7.6.4","typescript":"^3.6.4","@babel/core":"^7.6.4","@babel/node":"^7.6.3","babel-eslint":"^10.0.3","@babel/register":"^7.6.2","semantic-release":"^15.13.30","@babel/preset-env":"^7.6.3","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.8.0","@typescript-eslint/parser":"^2.6.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_17.1.0_1572899841685_0.9152844408224661","host":"s3://npm-registry-packages"}},"17.1.1":{"name":"eslint-plugin-jsdoc","version":"17.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@17.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5bc84fcdde7c93165f3af9c7be0361d2e3bdb998","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-17.1.1.tgz","fileCount":75,"integrity":"sha512-astLOTsj87UIzvDyiuAKbkgQgtChutazTDVxdG254tAtcvIVlWnPmlN7/dLnMYld/aHBhB4SWiUalMuKwTaynQ==","signatures":[{"sig":"MEMCICuVESqQzvhyrV5ONt+z3aJwt5RVI7U+9sVyVNr3+2L8Ah86C1XW69k2aCweec6bPV/MiYU73gIpz/2IUEnQbill","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":587274,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdxSv4CRA9TVsSAnZWagAAG00P/0AbfBVqLg/wfBnRzvvx\nQtgi+EKeAWFF1RR1ELThrgqHu5tg0XG5d4UV1ehxHIh4RH2h2JrUuVYgZ+o7\n9OPDsGy54k6LntHRnf0+/pqnDD8Nqm0PAemUvV6/eaAl5VLECADTeYVn6C/D\nwBKowINzaLqTwfggaouaa5BmCiSkB3//0bKBqFFp9Y21d3vxSEdNv1qt0R3C\nT3ZCUm8WMZ9HdNEv9fhyMjayUM3B2Gb1yZmGMCjwI797aQ0QB0hvl8wD4K9/\nQhhS15kl/RA3kcFt8+DB6OdeniVs9TNqPC6kWXoqxBj+tQlAytavj00hTqPf\ni4eL6kVAUIyMddwCt1Ms5bla4G5rtvIaDOPTopthh1Gi1Qo52CKperkhIl1v\nUiaXf+N6UeFIEz0cZNJzSxLJFGXENyAB/n/Ns1jZbK6b3q5dAiZZ+jzCJmio\n350mmZsXWQN0cKfC35o3iT2gFiIQmCTH0FnVkMYa88mYOK8CzJCA5UFZcoTx\nZF7nuTM0THFGFR5+OGztPYJ5MwLgxzTQzJI8Y+X5FNRfkdP466So5RFhOKvZ\nhYaqDcMnGM3QnkHxIstn+ULWkfW/k/zrz3Nh3gQI9qkA/d/fI1Zflb4shpC7\nFns/TZ7MqM1cETyjr5QLWkbdgnzoUYDHOdZWOhy1BSqONyP7HJmvI3kI78f8\nfGxP\r\n=y8JL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"0fb07c15be495fbbf5ecc148cf496335d84dc2dc","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^5.1.1","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.0.9","mocha":"^6.2.2","eslint":"6.6.0","gitdown":"^3.1.2","@babel/cli":"^7.7.0","typescript":"^3.7.2","@babel/core":"^7.7.2","@babel/node":"^7.7.0","babel-eslint":"^10.0.3","@babel/register":"^7.7.0","semantic-release":"^15.13.30","@babel/preset-env":"^7.7.1","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.8.0","@typescript-eslint/parser":"^2.6.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_17.1.1_1573202935906_0.3547761987854221","host":"s3://npm-registry-packages"}},"17.1.2":{"name":"eslint-plugin-jsdoc","version":"17.1.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@17.1.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"1d2bcdd918c2665dfabe1d60714663f4afe4ae88","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-17.1.2.tgz","fileCount":75,"integrity":"sha512-x3XbsYUF8VFTMi+Ssdezh4g77PodQyFcZ0DPQOeSkvI5EyHGV31yH3ekcD69JChEb5BkmcUu07FtLFuaxE97PQ==","signatures":[{"sig":"MEUCIDBXvMtYJtSDU0tNxZ69Kghe/Wlnd1hFKdvfiQE+r7fEAiEAtSVBrLwHBAnhJV36ZI6F1BhDWqAtbI7DSb2t5eQOrEs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":587811,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdyteqCRA9TVsSAnZWagAAqisP/3eKKmIKZVJU2LQNEaR9\nw5tbPR6+Od20+q0BGo/RgEyS1Zh2patUfjhi7NrLRqFRjnOtaWg1VnfZeNe1\n+3kp6Y5h3Kv0qAhMRzKjuCbUz/U0GCL71UoRYvgLqVyRDVRfcq54L+n0GT4X\nvztNbbjyT3xXmANuXHORsamW1fBJxtT8c7VYSe1BifA5wAe5pT1TD1/C0gci\nenMpd1qwFD8NxMtBRr6nKTcsumXl5Cxb4PGkdVrUBhTCZk0pitrAbLmw1OvJ\nka+mb3yI2PTsXBLDHt18fL/XQ9RcksD33UIVCSEztT8uJh6Jr4PSuqGhFqMb\nB/y+a9FCpz/ApMyX137aplQSO8estGpT65O/6fpJfh41gSLdorICENBJ96ub\nzpWRotnwBH+9wwSRZJkzcCIe39TQlFVQA+dlDIcZIQqELXtAr+5WT+yn3Jpw\nerBbVJVc6N7xD0oZNhNFnnElkQqk3/iwBJWn9TicYrjz5zDRCqMjl1xyJl+Q\nD2KS4SUzq/iikNZsf9Q7aL7PRApa/t8zUwcqrH2pNhAsG1U/Pd4gaz9Kqx5g\neswUWWSkZ/fHeQGXB6PEDWOqaErg2h9huI63AAzGB/7mICb8ro7jBqZfx3AW\ny/69CPUPqNgXdQzNlYjqZPFedwe4Tx+vvqalpw49NjVwHWqM3EMEI2VZlvlD\nCPqy\r\n=vaD6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"9124b7bfe293103e95bec8d5743b4e10545a6dd5","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.16.2","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^6.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.0.9","mocha":"^6.2.2","eslint":"6.6.0","gitdown":"^3.1.2","@babel/cli":"^7.7.0","typescript":"^3.7.2","@babel/core":"^7.7.2","@babel/node":"^7.7.0","babel-eslint":"^10.0.3","@babel/register":"^7.7.0","semantic-release":"^15.13.30","@babel/preset-env":"^7.7.1","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.8.0","@typescript-eslint/parser":"^2.7.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_17.1.2_1573574570058_0.3389884478277112","host":"s3://npm-registry-packages"}},"18.0.0":{"name":"eslint-plugin-jsdoc","version":"18.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"3bfffc819795f019e819627cc21c440f531ecd63","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.0.0.tgz","fileCount":81,"integrity":"sha512-uRGHKFYWjyvpHz7AiYJwmzi0lrIAKGyO7qZfIyYNI5XYBTwEoxQKdR/upf4Pd3hXWumBGvp2dn7OuuxCB2dBtw==","signatures":[{"sig":"MEUCIArLkPkgQneSe0hXTJD7oN1P0US2Zw9RHbs+BNR1+/xXAiEArn1TOQBF9fUDzVbLmdZcmQMAYpzcGKKtv/Zygk4tgJA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":614887,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdy2ZmCRA9TVsSAnZWagAAr8AP+wQxv2YZNUuXYhZLznOi\nbM4Z0XPm2P3fMDDGuuLBkaH7WeWYrD5qqR1BaJ7qCPcVsZPwLTI9N/XMDLJ7\nAbwH1U6DOvMff6UyBWmFXHNd9EWmyp7ac3A8E1WsVyTcouj1tM+F0mBRUcoZ\n2RFbP2bB7pkxFXtQlIymRvJICGxjMkYjgEsOoPUPqcMo1fMP3KH8pNofRWu7\njEJ35y2H9m8OMnxG4jinpoe4g5JU745ZsebEB6+kbpzierDWRSoub0m2ymjk\nSlcREKlTh+6UuXewiNSs5kco4CDNU6wbI3SIsWhGJq28ynsE+/vIj5mmTpum\n34sQ+GYNFCl60eGGKyYWVLZ6MzhJVDzCYFxpTg6S8PbfkkzDhbr2QGeE5VaS\n2O1gErMU4IBs9usz6LMQGmr6unblEpuYBkbY9sWFwm9alwza4ej+MLRT2pp8\nRylilvGSCpT1X+UOWNOptxqYm+wTZAx+fZF40ZXl8s32P79KedVS4/+Xb0ju\n0Gef2sLCvRWYTQKigT98SkwX29UdX97VRKB/EmMAmNPjoZha44pGjNVfnYfJ\n89KAPoCUsLzrgRVzK5co7zviTJYmYGHaSaAYCAQwcxlqJJDQS+NTsiIOKSYP\nq28HNVBE9KNLSNcyZWGkM0hGpLf9aU5Re/fniojgBb5yzyV2n1BmFBInE5HT\nBOTP\r\n=C8UF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"ea1a6268979a659e0e86494d497942d33005ba9a","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.17.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^6.0.0","spdx-license-list":"^6.1.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.0.9","mocha":"^6.2.2","eslint":"6.6.0","gitdown":"^3.1.2","@babel/cli":"^7.7.0","typescript":"^3.7.2","@babel/core":"^7.7.2","@babel/node":"^7.7.0","babel-eslint":"^10.0.3","@babel/register":"^7.7.0","semantic-release":"^15.13.30","@babel/preset-env":"^7.7.1","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.8.0","@typescript-eslint/parser":"^2.7.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.0.0_1573611109159_0.934148753787766","host":"s3://npm-registry-packages"}},"18.0.1":{"name":"eslint-plugin-jsdoc","version":"18.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c437d5f6ffa98a67b0755c4a4273444b9039f425","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.0.1.tgz","fileCount":81,"integrity":"sha512-ofNW3JmuZD9Gqn+qp/M6vPUfyaWHtfiNdmuoYmjyBcf5Xh2SMe1dnFa+gTGpfZLrjvBCdIbjxryRiF2QdqlQ0g==","signatures":[{"sig":"MEUCIBXnmx/Jxez4kWhkJMe8UTVYS+azBXuhDRoo3ACUTUIAAiEA1FeXCKFjZT4k5MaUsGt4MQ2gNsgLxE8Bgp2oJN8LN5Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":615371,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdy5zNCRA9TVsSAnZWagAAIqQP/3BxHRjN96eAVoRjWtwK\nyQWvBa0HlyhLRDMfsljxsIrhc1oRWhfzo7gt7PELB1LtClKUdF6njNZc73TG\nBavwB1+9bnCrgw98D7YJE9bYVcLNyvYGVSqOAx2lRIRB/w3hLxtEwQo2PXOX\n8Dkmyct++76DE1dOAUmePLOyNg/ZX6uvVZbsbZhkDbJne71ydr+NmJ16tlPz\nZTOJ6nZRqRe8QcXSMQDS1+qhxpYB/UgfylBEnEHri8wOXL0SJpXzRaQeYw5Q\nG71K15LO7S/95BFlQXVUdxWxV+9fj/PJ+Suv7UcmrqNc3AUGk8hwynDMl7xO\nDv2n+DXFJbteBK1A4AdMxPlmVTiJSEydHAOrl3a+88kYwy2z+GQ/+iDUzxkk\nhDARSf+uKjLfsXEWI+twaF9i+abhK4e/BSlpb8bA4cxDxP/5rz7F/M2FYgWK\nF7+hGF3vkZ0MCXkrMpzzerlh+F+dcoy+u52IBNwOOqGrS8Ggz0NND4ZtHono\nWikBk7gtGXb4AWSp16VsDkXlhrCcccGEPceIoN/LwYMJcPAmgBfGm1k72RMn\nw3uqr3XLHSMMcbIu4B9dShOj8eCNpJ4uGg8USI2p7iKChDveRuqPaE1rbR0H\nVZlrgrh1wcTeDmaKgha0w5HaPmQMjzqJ1PlLFBSU1AcPDdXi89PeLWRdz5vL\nasR/\r\n=3APz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"e058efad9b07ada1826e58e84dd88eda3cbd577d","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^6.0.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.0.9","mocha":"^6.2.2","eslint":"6.6.0","gitdown":"^3.1.2","@babel/cli":"^7.7.0","typescript":"^3.7.2","@babel/core":"^7.7.2","@babel/node":"^7.7.0","babel-eslint":"^10.0.3","@babel/register":"^7.7.0","semantic-release":"^15.13.30","@babel/preset-env":"^7.7.1","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^17.8.0","@typescript-eslint/parser":"^2.7.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.0.1_1573625036430_0.9552721683221588","host":"s3://npm-registry-packages"}},"18.1.0":{"name":"eslint-plugin-jsdoc","version":"18.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d33e809e95d7300b473ba4efd614eaece14eb400","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.1.0.tgz","fileCount":81,"integrity":"sha512-mM7xxIh5kjZo+5aETpuWyj9522xW4V5WsGklitHk3V5WSltKCIbGmN8olLTVavVJt+8WbusLxxjMLzl+pQMqbg==","signatures":[{"sig":"MEUCIQCxrg+CbJbdNhjCW4xfqyi/8Ushwyl27Tl029TdCbgmBAIgf6SC6MbmP1lsqrQvTCyMsGKMD9ditdCx9Lw+hdjK8R4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":616622,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd0zHVCRA9TVsSAnZWagAAf8wP/0F6W7/lRi8IujERNI9S\n8ncgNWCk0/kFQXdfVvB0ku2zhbc5XOTpXv6hnfBdX7w5/S1KlFptZ6WJoBB3\nVDp6KbXPSTZe6pVw+ZLxEbOSxCLaVcOAOfpNcJEzJlHsa9RWiwtjrr4eK++W\nk5USwPLT2YLts/+BeEzy1+CFm6Hnw4N8XLb2qsbu2UrdRKSLW8ek2i9pC4Ex\n19DxVTw+aKbq4lLaqWpDQ0pL4KlUvRX9dhOaBxVywlbgg/9nnqvUEWX4Hjmb\nasgFOL29w9Jboz+pjujp6M+V461YbGkeHEgwmwdHaMJX006LwGExgox/3pvD\nHn9LkDNjK4JvGnubqdhLR1+wzUlswB42HlxEUoF/9bnv4W2y9Y1j9Ntb3m04\nMzfq/HoBE7qqdAIGqawhNpCIQQGps3re9aY6u/6heE9ScpnMJhhFliX1VeSC\n42QB0h4b8g7vYfeeyTFyL3nH/3JAnBekeaKxxkXhLLDOLbSnRZ0lGThKDH1V\nQZOaAhQNRsoyPviahqMB1NvhPMg1hXh7ybc9T8NMWcIpCvsQEeXB6wFbjb3K\nYiiuQ1wzrdlmnKJZ4qGrZiLawcYiKfY32YukmrUwd/qem8MdQyrm7gacpGaC\nwOf1P5KZP80wyfGBuvvwwJ3M/wfMcdWlojt17n34aekwWbhmN/eiin5Bc4ER\nSjrG\r\n=zCyr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"d3ca65bbfd6b7b69f61d929e85a96052ee9faf33","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^6.0.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.6.0","gitdown":"^3.1.2","@babel/cli":"^7.7.0","typescript":"^3.7.2","@babel/core":"^7.7.2","@babel/node":"^7.7.0","babel-eslint":"^10.0.3","@babel/register":"^7.7.0","semantic-release":"^15.13.31","@babel/preset-env":"^7.7.1","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.8.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.1.0_1574121941180_0.44889916902997307","host":"s3://npm-registry-packages"}},"18.1.1":{"name":"eslint-plugin-jsdoc","version":"18.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"772262f775b16d340100c00bbb215bdcd1b540d0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.1.1.tgz","fileCount":81,"integrity":"sha512-awTFj50imJ7Q/pyK5YjKlO9Z4m8Mfh00INgiJMWMKBo6HcNUB+fgBPZKCcdIG3mltjIzk8JMTuPrMHcn80tOSA==","signatures":[{"sig":"MEQCIA+9yqcMYZ1kkYv0RTgtCQZtz7T1sHmU9vuKmp+eddUPAiBatAREtcPvi4HZiQOpWKT8JbejvLIwhUAcU1rpa7T8Qw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":616859,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd00diCRA9TVsSAnZWagAAJ3oP/1B0/lUNS03KPgYBudyy\nMXV1QJID8lWreZ5sIXbo9S9ATEVjohA28ft4LtIh3klzXUWW074K3Q/Zqbr1\ngNDSmfq4JRmM9WGqq2msau1QhV++7CyyQDTzQ2sjOVG0PKgow5MZN7gx3j5B\nd+meNfrkMMP5Mg5tTB4gFY+eZZDnWp2o7n+P2xQaEmMU9KTQjH0PM9bvZTZZ\nGGS96OFN84Aafsh+nVnWqCrYD/zclw2xnB96DL1PB3rQJsmFiX5ingQizRS7\nOALT4aGmdGeK8NLJqa5rtZLT99U1mbeI34gfVkc+M/mW6zgR/4rpT8bY0+NB\nt0nSklSTvas0VOiBohh3xrXdt5+DhE3GUMYObCiyitiVAecvS7NbQLI3pQSg\n/whImHfqqqgOL0fCwkPhUZSGC/XKtODjDJGSjmoch3Rrl6VOQHtPY3qrnlkg\nPLDk99wwY8i/n/jY8uDvoZZ8QVkHoEeUVysgm/sxlgKN3L0AetleJgda/DfO\n2mKaASLltGgXzVCO7wxNvl5TfLNwRueKt7nl80UWivkBjvqUKuKXGSBeZYFm\nB4NVPlRUlaI8y8sCaHCIFr6XkleizloI7BKrAC2rN8vzTAITrrinuv1z79cp\noJSdcv/B10r5Bl/WUtgjdocUALKwsYbcWxgeb+oS5rZu9Obe0dts6KB79ReE\ncN6A\r\n=4nt8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"a38b28b0ecc336e05237d410e110566f2833ea89","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^6.0.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.6.0","gitdown":"^3.1.2","@babel/cli":"^7.7.0","typescript":"^3.7.2","@babel/core":"^7.7.2","@babel/node":"^7.7.0","babel-eslint":"^10.0.3","@babel/register":"^7.7.0","semantic-release":"^15.13.31","@babel/preset-env":"^7.7.1","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.8.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.1.1_1574127457957_0.5229538746353644","host":"s3://npm-registry-packages"}},"18.1.2":{"name":"eslint-plugin-jsdoc","version":"18.1.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.1.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2f65d95aa0e455e8624e92ff10bda17a7a86316c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.1.2.tgz","fileCount":81,"integrity":"sha512-bcMjTbnRwCv+cGHzyW4m50xhWb7mRSs+6cq9jNq23QjAXAYaFMQxklkF358rymit3Hkf7qSRSxSeERI9Zz5WiQ==","signatures":[{"sig":"MEUCIBtPxqVTTgCeT7/pymQ9rBwHaxx/H/PKXwwaD/TaEDqAAiEA58GmTxdRxAMuIKld8mVKBTNkWyoiRcur5/E47lSgXD4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":617324,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd06/3CRA9TVsSAnZWagAAIrgP/RU3B8oJHmXqAgQKvpXd\naU4ZaELV5e6orPoUUZOmnzrj2a9olw+G7o/t5aF8P3V1F5fhW76N3yadYRaX\nPQGJYCGQxMDzrvaKpmcWodpvsXcLpi5RY9VWotMVRJ82UZbCrEu3o5mnIxK7\ndrKl9iGnc8EZHFMqGDS9HzOJ+Uqm72xwmXUtJSVxyQw3iu8DAdieI4CWTDfV\ndhkrni2WGLgvLe92bkdeMyPW+kodaBVR09iw0MvA5LAzOv6F2HwdN0DIFi9n\n6Hd/VtLOD4w3fvODHsFEvajX5yKw/R/6gwy3P1E+oMeprMZo9N6o41i+aF/q\nOJEnL/cIQD4aRG2olo10EKum1vKIxm1ScGR2Ktg3qFcerD/SByesKaJozms/\n6qt0BZ6wsJNgJD/0O0ASrggtpELea9NA03ow/TDfWVlgLixClAQJg4ad1J+4\ndHDnTN/WQDNELyP7liWf+sAH66//rUEM7UlixVOgM/0MEGDVSYqtMSsSL5E9\nVQnfG9sCzHezTd9EZ+TNw7AjrdokTefLjBQZd5NubPzQx1/IX3b9Er+DSvCE\nev3mCL1advZeVyRqd8A1AO7l8H657jLl0HhWRKtfBmhkZ6Ve+ohSPD8jrt32\nIqvoZDGO+sZhy+PRYArq7sC/PCAxmLtX8KAAI/f3emctKdu6PT6eEllqXK22\newJm\r\n=aYMZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"e453b2d9f0bd197a3045151dc6ecc81e9fbddced","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^6.0.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.6.0","gitdown":"^3.1.2","@babel/cli":"^7.7.0","typescript":"^3.7.2","@babel/core":"^7.7.2","@babel/node":"^7.7.0","babel-eslint":"^10.0.3","@babel/register":"^7.7.0","semantic-release":"^15.13.31","@babel/preset-env":"^7.7.1","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.8.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.1.2_1574154230517_0.38058305403094606","host":"s3://npm-registry-packages"}},"18.1.3":{"name":"eslint-plugin-jsdoc","version":"18.1.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.1.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d5a8adfff8d76b6eedb05e06c26fa34aa686a8aa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.1.3.tgz","fileCount":81,"integrity":"sha512-QmdxsDzGG9eb20VD3V8hw4huehTnU6x1/we9tN56p8MOkJNEiHDFW59stcS2/sk+BSnsJy61qZ+6wCPya8B45w==","signatures":[{"sig":"MEUCIQCEE90c1JRUKISFKXcoF2ZvwgqGJNNITtbxgyR7Y9ULGQIgBhmt5LFp0OxqI9cfjsUyPoMndU4QbzVWlicqR6JQG44=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":617382,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd1JAXCRA9TVsSAnZWagAAwmwP/23kYEYsBuxfJLz/fA2m\nXwOpAtfuDtAdvpNMLk1IUdyiC49uERpfurJXwgzCuMrIWvzbrvb8L0DaPF4B\njk2OPkATbhYKpFC/jixNSIx9G1UxAcNLu8zpxvQUUuv0w0pXWhmgC7wBKZ/M\nUvXMIaeI3Fq1sQPWZyBPislkOW0yEJ+9VbXTQEBRRF5ylTwu5Crv0wXSn65u\n6MYb4nQ1Bsk9XTLlP9NWB/iq+1atrQUDGoDGUO2ZcB7sJbUWKNValxuKDKsp\nZQ9pUURsmj4Ue6Lus0W6GeYsnGUkCEl9uF9mtiE32jHOC/ihGOv8jt6MhI0u\nEvSkXYot0AwA+MBLb0O4zOStrMwu9iJrBOLQTKJiMn1wr0Dzr63dCPl0jIl1\niycPUok1Frl8gm1XdyNWQThSAevSVwWmTvxdXyk4TE88WTKhMX0vxNooJLXa\nsGxPwpt7AANdHcLmgAU0rdVdFJ+oT5pkCXgNno8ZimNEJVI28PIsJsebg13w\nCdU3Pb6Nh3sfXVM9rNnkBa7sWSHtewk1dVvw/xxu1dBUyJf/KR/oaajKKNOA\nrm6lhFcFmG/A3VaLDhcqoYz8WCu9hT2hH+wtAdJTPzZP9mE5wI2zvRWWAxmV\nHt3aFGTTIlp41eTzYxuPCv1KCbQO/0FFa4YHGeT1RudmfbbdLJp8hUGfDH6P\nAB3D\r\n=rsaA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"3d61126435f9473c3467cec69690144e4c39a784","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^6.0.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.6.0","gitdown":"^3.1.2","@babel/cli":"^7.7.0","typescript":"^3.7.2","@babel/core":"^7.7.2","@babel/node":"^7.7.0","babel-eslint":"^10.0.3","@babel/register":"^7.7.0","semantic-release":"^15.13.31","@babel/preset-env":"^7.7.1","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.8.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.1.3_1574211606737_0.4275528388229384","host":"s3://npm-registry-packages"}},"18.1.4":{"name":"eslint-plugin-jsdoc","version":"18.1.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.1.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"462b49f17acf3cc29b15c0eb124caaadf39be128","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.1.4.tgz","fileCount":81,"integrity":"sha512-X3jXbAZAFwr2xZXpz8cyozDuu9ea2eWf8qiIgmgUbAo3vs8xWL0g4hVmCo/Pwg5T2qL6/+iksY3m+xjmd8NAig==","signatures":[{"sig":"MEUCIQCSbRdFTvAoAEL3V90y0rvYPYzc8y2lc2WesDCie8ci0wIgfqvp2nViI7kGmlB1D/P2FCEgiElI530VGlkVuPcL+Ow=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":617384,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd1TcmCRA9TVsSAnZWagAAP24P/3oVAvTfVu4KopmX59+9\n0kX7WzpKtEnD4PZkXxU0sXZVfl04y1lXZXhkMSUov2zFT6/VZicwP3sRMnBC\nSFzFi+c9qfjLcmMISBV6SyOOmTiXVUwySmzxeFLHq01+6DkZLSqeY9g1WHRW\n/Zn4bXw3LS4qP58MpuBXZtnwvjzQObhmlefjJinVxt8nyF0gYqOPWTWLJl9i\naHaPXRQFVW2jaOpXlpQ8t8HPqzTl5Jvs75e/14QBsLMhcIfz8ljq/ytsoeTq\n4y6KUPE6dxHYveA+SNfbLTjUX91JRaZYAiytxu01A3r533fwewT21X5GH/21\nQlHW4mwRPtgfIS+tZH+aifiL5FRJVZXyE+R9uUACgfTsB5MPIWleuqs7H9ht\n/36qKIrOfCU1yPrbH2XGWynVR32xC8YWxn0W//V+DBJH9gsQepqyA4mnK4uW\nBgVIOTM1WSsYL4l6IqLH5gZMCTJPbExQc7VnPpq2WzeNifm2VCl/ns7+FOJ/\nGE/m2Ghnn5w0jANlgZl015EClUQ6Wcvh3ipHQp5d8HRl9VOCQMtCY45/nnQU\nRQlG2tCqecZjF5P7rT0GnDVxLHgP+IzSj6CpfH7fGiu+u9JA01jXrAXYaAe/\nWh8KmAvLhfsVFVpTGNsLuiHRkdregjqS8KerlfmAog3ZUXWqDXmB2Wl3TUBh\niWfp\r\n=UVD9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"eeab3d2553fe5d49ffc6ae39ea32c2ce190eaec9","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.16.2","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^6.0.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.6.0","gitdown":"^3.1.2","@babel/cli":"^7.7.0","typescript":"^3.7.2","@babel/core":"^7.7.2","@babel/node":"^7.7.0","babel-eslint":"^10.0.3","@babel/register":"^7.7.0","semantic-release":"^15.13.31","@babel/preset-env":"^7.7.1","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.8.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.6.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.1.4_1574254373160_0.491853691907028","host":"s3://npm-registry-packages"}},"18.1.5":{"name":"eslint-plugin-jsdoc","version":"18.1.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.1.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"bdab6f2ae1ee37b4acdb997d1ad24c3023881dd1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.1.5.tgz","fileCount":81,"integrity":"sha512-dfq1YA0z2WaosgbEX3QPf37TDUcrfcRRjJ0HBgJYuA4XIV2ICe7dFxhJ8halIlKL4VNhUZ5GMKO1r0CPRvBN0g==","signatures":[{"sig":"MEQCIFzBs4ff6L4e/uYap8hSSZQezUl162fEq/zPJkucqSWfAiB2ElcVImQW12unEcRN3Tkx39ogh+oHJk7vqBQOAzTUlQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":617499,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd2/ngCRA9TVsSAnZWagAAHHcQAIODvOqhFSY5K0p5wd/s\nOeGh17ocPCqMkqnl/x6E/rIp0UmDSKMPUkY1aTH49LYVoKWZRsMqGRbrPYR4\nnEB9TgoPX98hVL1tvp8B4p40uA04GyOTK2ZRWuhcX/R80HrZkGQ3b5Kjfy59\n8uy/iivc2gAODXaSckVCMb68+AHPHVTdGFVXKmmBTW4SPuVo/GjVT+jWygfY\n7++p9f32UAUfIOd2WEEVddwjPrnZXwfN4Q0VurFOUG6NYYNGGaooNflaba03\nuhzEojN9xrKnKTMRIhH6k2DwdP0nMiOOhSdjVJThhCRbV1jBt/fiUD+zjtjZ\nOX4eDliZpSZWSTO8qe0eQyNDiGaW5YAiS5U56ivF+GmO2P51K5sVJWacCGsY\nIhnEOdUDet4/WTjgNKpZc0qNbZz/r+Ynt36J/DmQ3Oh6qJeaofNT6IuzQYnH\nF8JdkfFEDm3d5gaOLnJSZxbfKHvQhCgxKItE0DQ4ygJp5vuZEvDDEKQ1SEQu\nFnPf2bxguhj9jf76VlYwatUOzDAIbcdmQjJp7zyRg3Gg4Rt8Q02PbCv5cmdC\nmRwuw6td6Rxq8acEKVfnkP24wFOT3MY/S1rGF414eGNI6VhMFyJjFi0Wb6Dx\nCGSLCgrA4XR6BGlGkprlCAoLqPd0j4FoR5Jh3WPTax9NsPeTkay6+1H7auvQ\nAEEb\r\n=ejO/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"242202fde53787850c78ef00498fc35d8b3d87c9","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^6.0.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.7.0","gitdown":"^3.1.2","@babel/cli":"^7.7.4","typescript":"^3.7.2","@babel/core":"^7.7.4","@babel/node":"^7.7.4","babel-eslint":"^10.0.3","@babel/register":"^7.7.4","semantic-release":"^15.13.31","@babel/preset-env":"^7.7.4","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.8.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.1.5_1574697439833_0.6801836305564679","host":"s3://npm-registry-packages"}},"18.1.6":{"name":"eslint-plugin-jsdoc","version":"18.1.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.1.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"656a170fb05570b6cbfe353510bd207ae7eaae2a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.1.6.tgz","fileCount":81,"integrity":"sha512-FBUprS2yPgdKSdIECkDikBvHjT2SF7qVbduIxYVXNNvRM1QLAdKDletnhDm3J24lIl7B2whupE1JTn+YWHKkcQ==","signatures":[{"sig":"MEUCIG4HI1xkkwLFhxnwgAn69MSLxWmAIHFYJ3QIpiVacc+0AiEAyzeCvqVMXN26fsO+/3j1aCU1+2hyG2LaYHUibWiovxE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":617533,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd4hNDCRA9TVsSAnZWagAAyPAP/j22mWxmPqXy8+lbkeW0\n3LCFalen7dd06oA/XPwIlhQmcpI+L8L8IeiD+RAV8ZLjBfJCTtlMsyNDcqsX\ng43UbO0DZJGxlttGXdj1CdQ69W600UOQERVvWYtmR00xd8akD8C38CVohOCf\ns24elCH2AwsdAy9NeTwodrAphDy01n1wNdnRHvKl0zzdA82tgWU8ikjkGq5+\nD/yfQFJJRNUSiBG3+hIRZrZ+VAmjA/QO5pUWl7xU6+rA4atrPnE+dxY0N1Jl\neMXqS5pimLNr2fLUvTuoPXz5NbAmq4W92+Y8fAgQ6sd/A0BWwmhPiSuY0Koe\nCwwVpH+Dtt+87IkWoq76Zw2o+/jzLBhvZnwWsL0TCcLmtebp3JIPztoawrdr\nYkqaTHUCHN21ZtbXHoZj6AdKBePrduSy2J7ryUAaeiIP+wMmK1KPkQjbuFqA\nhyFPW4FrkO7d+yw+s/HbXX5weRNA4NS8w46kaAO9KTiTsgZmYrWTEBszSODX\nFR+LCBOMKoq7IbFVFkDI6CIBh8QvZP7m0xztaN8sOkuLDmWNz4sipoTN3Dwc\n4sfPYDR4eNHuelrJ8eOkDJDvzGd8yiElNxzl4iVPCysxEaJ4NGZ9rirwBzS5\ndG9PDzpYliJ4G09aqzZYnwIAAcX862p9VtIGPyNNhTUiAGPEpFv/PKTrm/qW\nm4bH\r\n=HArA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"0e89cc886dce3ed17f11caf3a6f0336954082fc0","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^6.0.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.7.1","gitdown":"^3.1.2","@babel/cli":"^7.7.4","typescript":"^3.7.2","@babel/core":"^7.7.4","@babel/node":"^7.7.4","babel-eslint":"^10.0.3","@babel/register":"^7.7.4","semantic-release":"^15.13.31","@babel/preset-env":"^7.7.4","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.9.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.1.6_1575097154213_0.786430143731436","host":"s3://npm-registry-packages"}},"18.2.0":{"name":"eslint-plugin-jsdoc","version":"18.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7339c44f272ebb77b73fdff22a7c4802af90b58d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.2.0.tgz","fileCount":81,"integrity":"sha512-9M81JoMgl2acL8VgBxmT3eMILuBJ0yjX30sGgGhqReGhZ+U5rns7TyeJfnU4XNKGjTGYsJLidla5TOhZuJk7PQ==","signatures":[{"sig":"MEQCIHuUsKqhplPiBRBIL8cFOB1BJjIwemyoQThtu9Su6dFYAiANcNykxTCwNlje4LTXWZS06owrF1WuGYdXL8zMeXIR8A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":623703,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd4pHnCRA9TVsSAnZWagAAznwP/RYsbPYKT1ZOH/niYGK4\nUUQc1uOiokuaakDMhlhasaDt/a5TEYtt68l+X2tgjvCpq79iaRezjuddWD3S\nraMcvEeiBlBQQUY/5MMXk5MA9IQExGOXNy9YStDbL82PQG5M5oolXFXVoS7W\nep4elYVYR4r/bLkN94TftkLLa5f3jiVVtKxHy9ay3pWGMZxmhBYBFjJP18N7\nyDr6kMySXROYRDbG9cG98Nm6WHn8byx6OsBopUc6YMdqkGYbn2JqqVD3ZEaY\n1H0l12opydySjP5JBrrULTC1wLjaasihLZUNgfDo+u+6SE3hbiCBh6h1Dmqf\nsgHnj6BpdZxzuFOQmuX3hbff8ZpuBgudwKaovcWedl8CTA0WOSR1G7Wzkpft\nuZ17Ytkk/4M1wa5+LSKLMQoSnBcA7HvqwLKucbvc39OQEmgnIk1pur5L7/Hb\npGvYs3XONBvjKgQNVLTX9H1pnNdlFV+oEEtIVLW1Byji9dJxSWNXNcc4pgCK\nhExWTrRKzT43KQdiHx0orNjJg2+Aoe6nhpxvzXSxM3V4h9ayhw1qn20MdZ+8\n29r424WgS/5JX5IUIEj/9mI2gy+5CzDMPjXYCCHRpseXOK/4rOf2jKXFCoB0\nKXQrahIdiGi/2j5tI3zrcRJ/k2rCs5SDxkQWrmQnSVMHlRdzEhEUMbbz80MV\n/E/8\r\n=tYlr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"78f79923f7c14da148c97b0cf20066090db2812e","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.17.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^6.0.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.7.1","gitdown":"^3.1.2","@babel/cli":"^7.7.4","typescript":"^3.7.2","@babel/core":"^7.7.4","@babel/node":"^7.7.4","babel-eslint":"^10.0.3","@babel/register":"^7.7.4","semantic-release":"^15.13.31","@babel/preset-env":"^7.7.4","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.9.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.2.0_1575129574131_0.38960286875013717","host":"s3://npm-registry-packages"}},"18.2.1":{"name":"eslint-plugin-jsdoc","version":"18.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b99a1a3e60c01e163b16c482864c08e4deabbcec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.2.1.tgz","fileCount":81,"integrity":"sha512-EwdGqRmGsqZv0wNZmYDfOkxTrd4/wD8FJY8oJ7P7yza1v6L+0Cql8CqUQjOGvoUDnD7mxF1bQQ+hVquwpwU0cg==","signatures":[{"sig":"MEYCIQDlhnL1KUJoV3SrFFTiOFQY6eCNvUO6XrdtKt215F0/2AIhAPeMi4I/p1hCEx5srvpDbJp9/aWjCei9cG/wxFqKVRlK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":626325,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd4xtgCRA9TVsSAnZWagAA1R0P/0Y0WU0x86GcBcyyfv7E\n5z6lDYmXo0AXSj2cKoiRF4diQJoxffXttKkrQynPWnH5/voIWYmHcHS5+Yst\nxXJQKZF5TpQcSkK+sZsezB+aH+f1pv+IkI6cT7KtUyojgxMIdFK+p4sURwMD\nhJdYqG3pmWXzP6TWrs8cNhJYohfOc2he6AWROP27O2KunhReC+dCXPXJiCOk\n9oeD/y0yGXXjHKa6+alFF2lpwRP/3V6GdC4yQ+YRFqoLmtn3ZR+CSW0IlOmp\ntxUGFMFX3b8+Xy8ic3HaBFkO2hLfiBO1+L/xd4saHwahc9QTeLH/UPdgWCcf\npNqfRoh74LGyJVBalDHzsh7hEnRFEnX7k5fdYeQr8gM3lhddxuc4GZD1C7TB\n3pd59+PKJAWtO6TSA/XxRijTeKBTWqge2qlGQwU9bXrPDuiGPUB4tL02uet8\nucsMyBUZc9deJZaim/G+DQaLMosdum3quhFy/t/RdeMFRJd9O8ihFrhBQz7Y\nvFvzv35xDC0rOqH0sTkGcwJvxq2bJTju36HBtzlin6qN8yIdhdUpEVbbllJ5\nahVhnA90UTPAn9SHEuQiPsrk8mR8E+GeQOwjhcMKq/IBjfohYJHPPo70N6Gu\nBRkBkShLK8BFhzYVD9g2RbHE5l1aBZ2iq2wcoAL/ZGKFXUGjL5MiPd7xHrBh\nJcqp\r\n=QY2D\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"7022f658cdc894ee245f539ebcee47bc17ed14d0","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.17.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^6.0.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.7.1","gitdown":"^3.1.2","@babel/cli":"^7.7.4","typescript":"^3.7.2","@babel/core":"^7.7.4","@babel/node":"^7.7.4","babel-eslint":"^10.0.3","@babel/register":"^7.7.4","semantic-release":"^15.13.31","@babel/preset-env":"^7.7.4","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.9.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.2.1_1575164767318_0.4709594883260566","host":"s3://npm-registry-packages"}},"18.2.2":{"name":"eslint-plugin-jsdoc","version":"18.2.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.2.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"1e4fbedf6ead5740e1ed355b869b7babf7fa640c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.2.2.tgz","fileCount":81,"integrity":"sha512-051CBKMhrkfXsH9Igc89LnhydHdEJs3l4Ce3iXRHpVv4kHsAh7EJdKBDt9RApTu/aRv4BjeFBokoMprpamavhg==","signatures":[{"sig":"MEYCIQDYJS3LvbQ91ovQmMP3goxvN5s6N+87o/UCUop50cW1mwIhAK0PfNwn8ddX0lOLjTeBFPKm1cKJT6DPrymc3pBbcbop","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":627009,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd4yAiCRA9TVsSAnZWagAAqvcP/i3JQwZaYTwOlgPiNRiS\nJN+W4+xrMoUcSiRMliTwyUwNpUljSm+vBszTcJIazm3czdwEjBk4N93K7tVI\n3UFvFVY4wrmA0pm+hSi8OBkLM6JnAVbDnxFSM9s1Db0pnCSgY63doOWKXZXg\nmlF395P7EcU3W3aQ4y8QW/6qGeENyZdVakgl2x+vKdIZ5kxoMKhv4RjWtFF6\nIAldGhW6MCL+f2QExAOTijdl5L/jvOMMuWnWaxtrE4zDJo/d2b43pgCTbIOZ\nmg34yZxFZCr4WS5XRQPZInhImQMBU+KfYNd3VPnNuEwyUR2/MSvgFEOT8grJ\nEzOZ7bre1UZv/3+SNd2N1Qypn8S5P8j4iZxJl+XexnQLfRAPVJCT0bipBvKF\nq990rMAT7uinaGi/f8AsPdWhQzDVU+BU5+tVB7eH7lHNzghgMhFvQfRPZgSU\nxXt3vzauwMwn938zAvafL1+ukltYqb/qltZky975pNFz2o2LjUtVyHShpkms\n/okdZ4OlJfuwA5PVmrV4ML1k/SbOFoIw3Fekcnm4vwEJ4dmdLhA8o6rx+DLR\nQJxoC1HcmxGWNVb0mE4XawK8pbhGRx8+5WYDFZNe++kdvr3vVoSDXIxmT3p2\nXnsZRjt/vaQD1vYDodSMcZrBK3YxcKP9+jltZvvbDW6cwoG3N38SVkbO/HZv\nAqED\r\n=hXPO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"b36053ecc068ac5151e9fecdf42d86ee197a76d0","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.16.2","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^6.0.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.7.1","gitdown":"^3.1.2","@babel/cli":"^7.7.4","typescript":"^3.7.2","@babel/core":"^7.7.4","@babel/node":"^7.7.4","babel-eslint":"^10.0.3","@babel/register":"^7.7.4","semantic-release":"^15.13.31","@babel/preset-env":"^7.7.4","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.9.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.2.2_1575165985550_0.9204295060796204","host":"s3://npm-registry-packages"}},"18.3.0":{"name":"eslint-plugin-jsdoc","version":"18.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a7725e8c8c205e463126d81af007d888fa67dbcb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.3.0.tgz","fileCount":81,"integrity":"sha512-2wz35Xi5fLP9z2Du0PpcqnwmJDeJI/sJp6NBAOCmjhZmC/AuVLjt79HRdsYQwHzkxsxe/rpKoZiUwTbP4hN2Kg==","signatures":[{"sig":"MEUCIQC2GqQDh6lzAPdfZlpYFQgBIoWJUe86orBXXQ6tDi+q5AIgeLCxvzYIGunoB/2kfzztM/ZeUHlwFX0n/RmhrU/CeJI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":627189,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd4zmlCRA9TVsSAnZWagAAqcYP/AxIyFA8yJMl8apYUrai\n6VBlYhLn3EZX/hRYjnVsTcoTyLFYzB22ApVFMYYcryTjPxooeGgk8EiiKsS+\nmyYz9YTHDMhSzluNGqKySWwgkMCKOCRXrmG9B8LxOrtRTCnPoUtFzdoX5TPS\nQgz7GARWYlj4viu7e8v3iwhH+WUga8sAKpdrb8viBA7ujUuK00AV+5E0N4s5\nQKATwCNaNkKlONCLFTogS+apPCXTR0yRU2QEiYZYjeWio0LPEtfOtl0MZl9u\ny8WrZ6JqK3lHHcRkPNUhLg4zuwFBhDjHAGEpmObwcpgl8EVr9CaDiyDCFHKS\nZNhFnM83E8OcHE6VBI9MIrAQE9KM60L/j00NhD/BwN5cmuX+BqN3+sG2Ix5/\nnOb3DeElkt65fzRRP7O8Mjoa5DQY4TvO5k7IETbLzpWJEnRux1vFeYjt4FJF\n0XFM/Hmxf4iuMtfRGv0ruQOWFCfH5/o1TYC29X1BKx/he9QL8ug2PiK1Eq+X\nuqkflVgxfXXZMqgMOzBi398pHbEA63HYy25iqZkaITRcn5Mizvq2VvfCIoNN\nYcLDPBdVHwpruf847PWQtuEJRnXDd0MfrL2k8/JcMPXavoGuB7HscKDors5E\nWm9WCqkDks0yLFQn4IV6Mq6SNYL3QcqgcX5UPOHAPoIzijLZaDcodenXVTAU\nOPJd\r\n=SVtd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"3b5e301c12f26f44768d863082197b29823f4da2","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^6.0.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.7.1","gitdown":"^3.1.2","@babel/cli":"^7.7.4","typescript":"^3.7.2","@babel/core":"^7.7.4","@babel/node":"^7.7.4","babel-eslint":"^10.0.3","@babel/register":"^7.7.4","semantic-release":"^15.13.31","@babel/preset-env":"^7.7.4","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.9.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.3.0_1575172516483_0.7185767738963691","host":"s3://npm-registry-packages"}},"18.4.0":{"name":"eslint-plugin-jsdoc","version":"18.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"36c9ac7f42a248efe1fd5c45ffb99b10af3ea5ac","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.4.0.tgz","fileCount":81,"integrity":"sha512-K1CG9Acmp1OtAOqhf5axjuEOUFyLW7LZlTs5up6FWWZXSniGWmEhlD755/iQEA+KDL5xBVbue1gtlV52OZSNng==","signatures":[{"sig":"MEUCIF8naZ/EV7xYYtg9v4oVgnI5tjMSBH8kVYt1tRYauQx3AiEA8Q1iSunznAtF/RKgeSFdhIfzSJ87ZGxSANWGaNLxj6k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":627695,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5HsICRA9TVsSAnZWagAAWkwP/0vGZjsrrXyNvipLB5w3\nwjNjl9fBQP4dnD5cynpFydTGhQJWPIIQqzlbc9pFWB0m0QnG12ov8Y9vZ3QI\n0YvaGOU6TzyVDXieC1kBiqNk5muEgW/89ro3GwJKVXSF/5Y1CwKal895o0P9\nSJFKYNgcBm4GcmMP2acCZ1VNbETE3B8Y/JGHptyiiLhTfIk7GAJY7BczZUNr\n28ouz7+FInoQzJ0MtDkS/DOaOLbI0DaKUH4J4+aWAfjcJqWWCk2oV2Wv8EVU\nkBq6xkaviuBKRRgFGJqZxz4sHJVNI8fzGieu9h4Mx9M2ahdIY5mIVyDNx7jM\nAw+9v/tdlBr07JHajzxuimHKv6u3vuYlinykGsORudRDJmAAmj+VGb83baHD\n3hg9NjxZA+XjIpIQl/F1H1ZDfpCg827xZCpKvmGKymhqtObdt32S8YgA3ejv\np+IWOz3yQsuaMAIk5zQCdC/yiKAV8alunT0PIYd5XxyogkdlugBL2fNyyMAZ\ncmtY9G9Jtww19pn9EhBPg0kUk6znp5N2Wtvpp/WafziqFYaiVZDeXokbKAVF\nNlAMgQ4PS/g7Og96ETCXeLPTyBGCVjEK3jiW/QkuTqH8Od/yMz+R9Ls/ttHQ\nHeDu7b4kleUEM+MSoY/mMUJkcnlLgVamFcjRUIg6rOay1A1xl3M8xlDQy+ar\nvavA\r\n=R3fV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"67df3dd30be6621e5ed486dca8a88ee6a9437ee8","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.17.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^6.0.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.7.1","gitdown":"^3.1.2","@babel/cli":"^7.7.4","typescript":"^3.7.2","@babel/core":"^7.7.4","@babel/node":"^7.7.4","babel-eslint":"^10.0.3","@babel/register":"^7.7.4","semantic-release":"^15.13.31","@babel/preset-env":"^7.7.4","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.9.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.4.0_1575254792065_0.11305192447007717","host":"s3://npm-registry-packages"}},"18.4.1":{"name":"eslint-plugin-jsdoc","version":"18.4.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.4.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f59089394ca64cd1d932812c2c84e03b3f868524","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.4.1.tgz","fileCount":81,"integrity":"sha512-JyGUby6EPpyjfGBpTy3VRfG8yfJOjFc+l6GbusHVRludgrHsJpR105bm9IBv2s0mI6AxC8/r+Ec7kBubmDugTg==","signatures":[{"sig":"MEYCIQCWpw1hRj6iG9/pU8cHi2+PajwjwIqKqFJ65TSjmrUmQAIhAIAKh2LemC27djF0wxfEr6jPgV8FlIVRvHwrNKCMXmDX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":628074,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5MVxCRA9TVsSAnZWagAAOREP/1AgcD0zVH6w3Oq+IdYe\nGusOVcqQVzFxbWu6AFyHnPLGHeCXTgRu+TKCKvgfeR1rI1d9IxZI8UaSUmUN\nSibmg//Rl+3WY7xTftb1B8wnbIj/zIzkbAsaHXQ92AklqjagL5xtq7dZBjsv\nX1UCqppAZfxDQvx7CuWOkIt5WFJc8yM4ongtcaLphEcL5WuR3Haki3h1tvso\nZ/geEzd0RYJxsAaoAWqX+BLVhcZkyl9eLJQtEG0/ZeIKAAPlNYIOj5Bv8qsC\n6wtJGDE6NkbFBoBv3qUt8g1vY+Yd2G49SH5LO5sE36V+KQso5TbNUro3kjVz\ndg/v4lO6m1BRkuuklFG3QwHDLb/yuHcXB4dEM/lYxIv1TkPia7ymRboZz8ww\nswYppV5mqVoYRNr7Y80ny87lWa7gsu8VqY2x8hvvJpA6HshpFnug9pFWg8Oj\nJVZrgv/eXaBzPTXEun+7tpWM9y64vJAs55Izhxh/kMUf0OL1eA5i+aE7dlLp\nDnGNc16nEFJc7xWJHfPnwhV2jkASxQ5vC80BDIx3VLvtQxIms4eunh6qSYjw\nYk0EAwP4DUtHmjAOjswUxeCAr6Gp+SEhcC0LdXmsVwOddSftql8wqou/kJvl\nex1s3dE0JrKOfgpcxilqNRE4eCoDN17svBp3bFmcN1yicAq3inSuKYE1ay1z\n3VJn\r\n=5rhG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"c361ef6e8704683d0074d2476a9c07d8468addcc","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^6.0.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.7.1","gitdown":"^3.1.2","@babel/cli":"^7.7.4","typescript":"^3.7.2","@babel/core":"^7.7.4","@babel/node":"^7.7.4","babel-eslint":"^10.0.3","@babel/register":"^7.7.4","semantic-release":"^15.13.31","@babel/preset-env":"^7.7.4","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.9.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.4.1_1575273841023_0.30721661027534486","host":"s3://npm-registry-packages"}},"18.4.2":{"name":"eslint-plugin-jsdoc","version":"18.4.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.4.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"dc36a304c67787f461671d6f322a3060756db0c4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.4.2.tgz","fileCount":81,"integrity":"sha512-qggCrjf1cbPfEp5dxsUKwHhW3wtcKnSyxa/utXKGPp3rGJVwfncnpWZ8gnCyJo98d55gHqQH36HbGvrObpShgg==","signatures":[{"sig":"MEUCIQDTfMosQNJbJNVb/mttBq2ZDGLBl7yR+CVWdT0HrmUf4AIgGUie7eiN6z9/PIO8nxY/c8MyQqtcEF7Z6vQXJyqV2uc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":628111,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5vtkCRA9TVsSAnZWagAA1IYP/A7unA5c+n1pXJ15coMk\naIX5Mxw+y9L5DOkmKNMQ/PH5toJHH+lXKhyOsQE4VCS6hcKPSkKDV2odMhdN\nplRdBB2YraYXiIWznLW62zbwHBXRl3lsAQ8AMATMyu2Kk5veVaQVbZ4Daw4L\nX9hIFYMldZRFkl9j7eceJZiFoEl/WHPmUk0+++EjGelGzOysfRxPEDu22kKb\n31bxlOMGgcKBv7r0TS7clg2FG2mGrgcUoWuBKypJmZNmzgMGNZHLli56CjR3\nnF4/vn70mzt7mEHcUfzGKnyFChP6fHC1vHemjQbJwRzjHHDROxv0/s13fRM3\n81PrPStsTSsZ0GjGIIcMokax6ZLId1+2uZz3mktL5IXt0nbGM3fBJ7B6RrQ3\nHKLBTM+GFueI+H30bDUx1eftsKLB/tkyv7yWSa5fmnlXZ0ZC18//5APRQnLT\nX1CaAYqIDXSIGYwnwLGc0ABI12foSy55G9k47o9ywgj4HOx+6XDwZeA3rwwG\nlN6Fr9UDRy4DoSs1mCxicNTH6OLAGg2UJWH84wDjs4d4M7OsYckW0xrmfUVG\n5daH4VpyFQTaToeqOQkrycMz/OPt04sKjPoPVAdm1ZlwIMXdTUvd0Ojm2inA\n+eflWw0w3qu4aOSLpIa9hCoj3+zLlgeg2d7RppGWLNOc6gi0bhxhB+yRvitl\nqWp6\r\n=y3Vv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"373fb43bbb9d6a0a0107d82085e8c480a9edb9c0","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.6.1","comment-parser":"^0.7.0","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.7.2","gitdown":"^3.1.2","@babel/cli":"^7.7.4","typescript":"^3.7.2","@babel/core":"^7.7.4","@babel/node":"^7.7.4","babel-eslint":"^10.0.3","@babel/register":"^7.7.4","semantic-release":"^15.13.31","@babel/preset-env":"^7.7.4","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.10.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.4.2_1575418723784_0.9675207683898799","host":"s3://npm-registry-packages"}},"18.4.3":{"name":"eslint-plugin-jsdoc","version":"18.4.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.4.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"69d45213d5eb3e5e7a80abcbc979602c7cfcfa6b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.4.3.tgz","fileCount":81,"integrity":"sha512-RcavGWoxukmq7ZQHJ3zDYUHQugJ+uAaoLSCueQjWIHq8xLoIINRo4yKLd03DKWVuoGNY3R+3xpmNjOpwlkOtnQ==","signatures":[{"sig":"MEUCIQCs0PWNnKWqEUGYVXmRbon7tKKOF5ruRrEl27xyeCEWmQIgDJRqf9TUDwseQMzlLbhg1PCr7//S3C0aObAnwUjbmpM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":628615,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd51KKCRA9TVsSAnZWagAAa7YQAIlAqxxzq+s39rnYXYC+\nlFXU3pA0dovjGDOGmnMztL1672fDzYuTiH82RMer14z5mQuFOqwrS0ZSRgYs\nfa8G9SnFEzDyw7cgdoX3uXoLLDRCyyaId14dbtObu2CMhAyHlBaFzyOUVmkT\nPa0LFnLwGPW8SUIdDXib+H6jRj6eDBgKumq/wmJTcGhhJFUke4W4XqPa7upP\nNsGh5mxkso0ZSLH/9t2p2gwGxdVATd/uJaW4dHI6UPXPNWsPHbXdUj6BaJdO\nmAzrnJ1fpN7NQLHitL/DwSlktw9YMyNkTawmBmVzah0YOCQMGGXCFcSCiXD0\n8B1HuUzp/pfZqo0W8KhEB92hiokxqD1bWcqPPDkXin6337pzYoJoc+QNm4iS\ncDaNxeGFzxzLvPPrPJXwseEazh5lSOf4yNKQzRZyfV4C4Ehq26JUcactp1Eq\n5jRtOyzzKc9mFR7V9gotDmRyE7eF53llyR5WNn6lOpYWJYChQmh8n4awZhV4\nr+vBqtulqBll3gsYg05xngvMNPnuVfvHhouiLL+ZAvkr1/D2/re+s7XvtW2k\noAct9chqlAclwfDIV3BOj9RUljxM963joR/jyiJBxxkcothbf+mrY9bpaeJR\ne2INnoQmWghL99p5IswoNsnisYaGuF2Z7kpyC38wYT5lKycP8k5TaDEcQLuQ\nhCbx\r\n=rpdC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"dd5f015cbd2a87dc608a328aa324762ebdf0d832","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.13.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.6.1","comment-parser":"^0.7.1","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.7.2","gitdown":"^3.1.2","@babel/cli":"^7.7.4","typescript":"^3.7.2","@babel/core":"^7.7.4","@babel/node":"^7.7.4","babel-eslint":"^10.0.3","@babel/register":"^7.7.4","semantic-release":"^15.13.31","@babel/preset-env":"^7.7.4","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.10.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.4.3_1575441033474_0.20923049595151166","host":"s3://npm-registry-packages"}},"18.4.4":{"name":"eslint-plugin-jsdoc","version":"18.4.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.4.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"cd759acf5358d3be6ce676853ac1a4e56f1f4e51","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.4.4.tgz","fileCount":81,"integrity":"sha512-mD0EAPDqc3VDEQtOsOc1E2cekj6Lgl6OAH7DedNgHTTR2eHQwB4HooUlKstYKha/CCnkJpJ8/WwjmtOy6sUNtw==","signatures":[{"sig":"MEUCIGvYD/CJDRDJaPqDIpGiyes12IWq0ZKEjecX//7MmFrxAiEA67/pMQM9WX8ZmiUDn94eNJ9pUUWRekpn8b+CSA8rG2A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":629115,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeAKStCRA9TVsSAnZWagAAzZIP/jPvYVStM8dgiV3O6cEN\nyA/fezBHwc3s8a9SjqS8CkVfXCcOzwrhJgCVnP8t4BKIHOGwubgHLAWJw9zi\nZ1RkuhcmWp/zM1XR1xp4/tYffaQsP31VSTMX0QTHlmtTk0vbYrCWZ+QYcA6M\nQRHk701rutu4heBJ9dhc+KarVhg/wCQgIOMeS2CN2MOM6zufU4R94QZruaDs\nxiK1znPJHTOaeR1MpAbgBWmzUtVj1xNSVaI97CuMXMOi4tqJGDwly56C281S\nWv87TZy71V302t5XbSVIJDSNo6vAWkOLJN5+kaQr+TG0kEn+0PXyP0Kp2BOC\n2+UIdV330X+4y6nQjBsEbZfEBOCD3FvdLSdHbbzj7tuzS9bS9OzqJF3XeDcw\ntx5VTODaF44BoZEbc93qzIM8eq6BTsf7pH/5lYiDhaM9W2OS5kx7EvgCBbQR\nHFB9f6BRdaMY/mzf/gI9iBmoeAVOzSZDh6jYHZ+hLq+ev+xiLIyTKPYZZSrx\nLmetUB+SNBZ6yKxhSiXO8rzZYo+LA+gfXw2ZWFyh56oBd7ZfXf3uj6CZcAtZ\n8m2v0MOtKMVFF63WzBRiVx2yfdXsnGe4Ll6co+QRBDVTzwZaEFzI7n1VnHa8\nplWtx6kNv19X/NSnduBefuJVBS2264xQADugZKh9E6KP1hB6ziwhr++s8IrU\nyOST\r\n=y8Fv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"13f553368d53326aefe1960927090149075c109c","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.1","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.1","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.7.2","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.3","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.13.31","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^5.2.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.12.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.4.4_1577100460142_0.9756791617722433","host":"s3://npm-registry-packages"}},"18.5.0":{"name":"eslint-plugin-jsdoc","version":"18.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2c9a16dee19ca783f46708fe369c235d9af645ea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.5.0.tgz","fileCount":81,"integrity":"sha512-YW2S5BOuG3zf37bY5aEUNRkYX9MQGXlF7Vm88d8nJPdoGRoI2y835E9IEdNxHi04lcKSOhJNigRJuTpWXIeuWQ==","signatures":[{"sig":"MEUCIHYI2dbct0v5aTy1WvsiLlAvqWnadw8GEFZppPvyg4pQAiEAjB1SOdo710xw+ybNNJYCt+B1nmL+t19rmpo8RTuPFdw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":632517,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeBU1yCRA9TVsSAnZWagAAtUEQAKMFoY+1yp9YjjarBQKx\narUk9ui7811xCB5OZKy93lSBbMBh9E3KbMOP12xuN6aCfJrEXDesjZjNLhgJ\naW/9odXSdj4p8ngV/qygCpg36BoMkK8HNuEVoMsLKNKwlSnB/s6uaOIwO5NQ\nPZnR+qLykW6sJWZsO+VlvdUOaOVde+qE+eDH3nVgmUVetthpmNnG0cMaqFkN\nlhrlfYt+CyTZ4I9Dgy0I88Kpo2Jk6eGrc82VvX1qsqprcaNZ3ZB4HpBwoMnX\nQI4iYAVNg576s/bDt2FRtC8yZW0uj8yDyjUHPWcc5nT6ayLyaiKxnxS6Blpc\nvQpdxADJ6qaxAnvU+YKs3PcsM76S2/ZpRODqCy53q20t8lK76h5BzHmdXiJD\nr+JCMV1zHNK7kURM7CB4RLST4gRMDrgQ8UPXAyWodfrWq4y7/unkAcI/du4K\nABAMCu6KJONAhuwb3jzfTXPni8DC18QBPRfiC7w8dtkgU7kfQwP+P59HtqYX\n1tocSxTpIP7A6l9oUTcayp9w50bxB8+ymQUaHGi2bAXgSKh54GmY1cZ/0i8H\nrj8cmS9JHEWmfZKjN1B2LmRlMJS3Ro10uNx1nwoRhzSBb8TjmwCgXmihLeFu\niUPcPGg0ZV0oiA0nkbegiLeDcFxKT7Ir+NvjbiG/OgTxDionS0yNedxOPW1K\nkvoK\r\n=8S9M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"4532e663cfc060dd0d177c00492f631bb6699e39","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.13.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.5.0_1577405809447_0.1736326514186337","host":"s3://npm-registry-packages"}},"18.6.0":{"name":"eslint-plugin-jsdoc","version":"18.6.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.6.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a9577acce3ab9b52d9efa749eb4574b4b0952a4a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.6.0.tgz","fileCount":81,"integrity":"sha512-+wxuqNmmjmXKethdtaR5EgdnOnEHmNlGtqdHwct6RhCSWK26UsSjxJJRp3nZK6da4v6A/RR/9Ukj42cfOniuOQ==","signatures":[{"sig":"MEYCIQCMkk3AGCbk7/VUXckFO1SYMugd/kSPY+hr5St5v19hrgIhANYK9irjJYlHkbPv+rcFZWKhMzsp75l6q5pNMyr5yqYu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":634141,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeBU8iCRA9TVsSAnZWagAA0qQP/je8ZDlTRGgxgJNmJ/c5\nNXPz1YgHCDUPlV6E/l1ZxSWETxPGzwIsF1TYLfqchTXXJb8riL5lonJC7muX\njHiIZbDfCR8m/NJi15xT/4BzFW+s30g1mlnBFIlAEoab69MbW8iw1HiGHASV\nP3txMS5nH7U5rUIs9HBx1lUNNu/Ke0kp4zyxR5OF9+sv2WiWZ0DuZp2m16ut\nkcK2tAS+/Kmsp3kOfA8EjLJOHhVtY691RU49VfVrD7mgFCh3jc3pApI7amQQ\noD6kDBLSfn2iki6KLqPs0y+j0x2CBGRYSIUSNNRODYomBUTUHdy1Wtg3XW41\nouuerGZaxqMYNIMP7fLMQ20HNTg7vXjrrDBv4QYSK2UBB+gtYsKnhlEEfxzW\n5S6KUo1fAfpbBAJkHDXYOad99O6d7w7G6nJiiJR6RGCod0Kg9VxDKEDI7yeS\nIoGw9ASnrTz0Xzh7MoPXYA8eFltBR2MnZUkjPjsOXl9M3gjy09+3yflhCYM8\n2lhUwJ91XPaBvOMq6Xs3aLPbCKxpSsGzeOUdxv5/q7vmjaawvX7Tspe4Solz\n32LD0i3VJEDgT+RyuABg0WSZWZZfHGTP/YsAlBHthYZhKTi386WaCSvgNp8h\nWDUpKTtu4GFCJjeilFGy6aaSLG/6NI0qze9zCMr7Wvqkz9AiD6X2ciI76dYh\nSurW\r\n=wXT8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"641479b1d4fd0bbf81951ba21d9afe616a250c10","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.13.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.6.0_1577406241844_0.9749892786249328","host":"s3://npm-registry-packages"}},"18.6.1":{"name":"eslint-plugin-jsdoc","version":"18.6.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.6.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"42453fbd36baebd16765934b2754aa2baaff2b37","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.6.1.tgz","fileCount":81,"integrity":"sha512-i5hLOqKmZtIr4HPSKJLSclNLgEOsvYlEqiUEhhK/e2CxY1Bpw0UrXpm96gSg/ZBLoMo80MXoCFmq6R2bv9ZTWg==","signatures":[{"sig":"MEUCICwwFNKYiPHx7zLpwJlyeBzPwYugOpAPRIVDG/8s4XewAiEA8FMenMPWtaIyLtuN+lkTBK8Tg0VxULSy4SbqvLMwnxA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":633388,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeBt2nCRA9TVsSAnZWagAAodQP/1tbxkm3S+SAYuwMksUx\n/Oz47KUVh3P5jj94HX9N1U1x8bkch/JFWFW9sv/ApnkSiRduml45ez88n52q\nwyTk8sAqZnGb89um2h++rx9SlJsLb1oVZVUlLYsE2Zs/nILVrUz6JuWy1/hQ\nYNBdnQ3QcgloXFZloJ6D93UWHc8Bw9i+CgGKpZXwyW3h1TU3xMUbJxbDZfNc\nGlst7NDFzKVZhqRMCF5ebjcf2PQ7mUkhag9txuMxmK+/X9sxJ2/ZjgqlnJ86\narC2XY3EIjejmuWcDojuVbQINwq4oe0lpyp9Ds9PYI6AXfSLHTRzb8beqwtW\nTp8SurV0EeX+7zsioBTia84COwbI8sUKtkPFZ+mAZ8ZA6oRW2L/JTktLyJ5m\nNAxN+f4qwX/4dELPstJrzcLNw2vFDmxV6ay1KBoO79ssDlF38b5qwy05+/Gh\nUj0aWSzgQvZwOR9t3ZiryBPTt1BNSCB2hh+8Qu3PsV66PpxyAWenNqDM1ai3\n9WabFi+vOM4A7d6F7vPrY4wcZvumOTg2DCKTtbnkT1DhaRDarUyiwDD3V9yp\nYO0dl2KVOogQly0TUEMqDZKnXlbQumCNdflZCSGmbYdh/1610zv6DzRK3vtZ\n7V5nIpSq1ugMVVgcGn8yMFDpYNyMhRCKxAdEfcjHQt6DxYcjQIJaUY7TivW0\nXwfw\r\n=utY2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"9703aba3059ed2d80ec0d29b0b3d9c31bffc5999","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.13.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.6.1_1577508263214_0.09940897420128403","host":"s3://npm-registry-packages"}},"18.6.2":{"name":"eslint-plugin-jsdoc","version":"18.6.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.6.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a7c1fdf67b3ea374b769bb5f249f5763f0b86cb6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.6.2.tgz","fileCount":81,"integrity":"sha512-EGS6v0qLdaXyPeH2uCZ3i9U6AIanSpB7YOykefCApRRKKX+PsyfN41/uBXRrILPVU1PsC75LdanlNDi1KTP1eQ==","signatures":[{"sig":"MEUCIQCpqMR5mngIFCbaHnSYZhuX+HmC9cUE+45gNdUCfsDvTQIgUu6AUQXzrWM3P2DPCXW4wmYTBk56+EFoqPa2yxeCUSs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":634628,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeBv+WCRA9TVsSAnZWagAAYKIP/igdvt7xb+GXtIHkZ9Vv\njsWQSRmHToPUeUx0KOVETv9rusue2UDYD3DQzqsIx84UzPggTSwFFYiwdrw+\nEUfPm1rKRQAaFvzkzhegG46kKqFeV/mC9Xf5IrvcpBzm0j1z85HzCPKkX+Tr\ng/qs7KtT4eyKQMD+RFoXQKkcBGywlIymn5ftBznS5aJ8821IcdCKdSJE/B3X\nTwjMioCa9WHnKiw2RvoyG3d5Lm5YYrJSu6EeGM7ut7gJN/sQxUVSXUKdalzS\nKy51aUEhNyHCrfR5yCJXnPSW4/TnzQLFQjHoPX7CDg7UsNAv2nnBBZRpojG5\nKybs5Vb51iVE28Kiog5TOuNX9aSIwN5O7vwbBA2M/e8ofsDBQ89xsKPO+GWN\nt+aNyCRanMrI5R2FZwy1WJ/Rjlai7m76EhKdqybyZlmervlI4clIdTIcixse\nRC+KyJHF36aw62j+msLJfIb1izQkmzLYhdbrTD5Ic8McYQkbed+08wjxVhkw\n5x6s2gz9+fnVy9hm1tj4HAD1+KrCLjwy8k/+8NWTOJv+uA7m6BuGM3G6NkBn\nAvgpQUcZ5+RUA+WN03BfH+HU3+VEjxFUM7QqIwZSXWdXzp8Xv2UcGO65LKR5\nPGJYqTxyANNCS4fo6DWGzp9ISZ1k2k1Q+eRV8hbtmlERnX640HUuyWtOWaH5\nVoEs\r\n=udDK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"c5b8e09e17178e5ee3a8d111e77ad5fff97e0de1","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.13.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.6.2_1577516949733_0.8322034962646867","host":"s3://npm-registry-packages"}},"18.7.0":{"name":"eslint-plugin-jsdoc","version":"18.7.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.7.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"57ecbbce6aa8459be7f6ba4748c79308b2ad1824","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.7.0.tgz","fileCount":83,"integrity":"sha512-lFEn/tsPVokz0rv8dcHl5Li/8zsP/FYNNqFFa9J8ile5mS+RNeaRv2Lnq+q3WEqhYvjutbSqorfHXqQi5hmW9g==","signatures":[{"sig":"MEYCIQDpjlQgrKAdTOayaY2kv0vVosMKm4pHdRtrPNcRt5l1WgIhALpEOhj6Z1GQva9K9RjTYGzcsSAOUObQDalfeQ/MMi5x","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":646609,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeCq7uCRA9TVsSAnZWagAAuKEP/3JswT3b19XqnY9HiBu+\n3TEH9P/p8wV2zcoTvzR3m3uF3S7fiAsSFsNn+UxjSRjR0YnhNz8DLEc83+um\n+cYJirY0UCYuxRyielCdwXGJY8gTt1WTvZBiiacGSlR/l4A/uLTnZcKsxr9d\nowbx3aS1CuwMsBhgOBhfaPIvm5oQbVj06ML5nxBoEy/KZXw+Iui+VHjKqf2N\ncVq0cT2LO5QeYHn877n7wJIdUjvGgUbnCz0FfnueHaxhOxvkK664toGMAPvf\nhxPWFMFL06dfIKHhHOKTqlePTTJBZG0fPNKhyX9RZxqErkzaMIHyWrpKJk5n\n6baUoI6ibYhQHdNrOH9VGn3ql1bAbFEwTxKdOYuu5X/KPUQ+JiXM4u1VY08j\nDy9eEyN8e4fi6u+r7L4DNYA9akkGbzxXjHobK/Fm2i4ktag2h5xDFgIfd0TF\npljVvHoDbf/S/0+epfMRh9JWTn5O7yGW3N1+XUNeqs8I2nezMfB4tRwBWpZp\nig/Jz36rMGjYhonfud24Lw1eszFlS/Qu7DL1WAHM9ml+P7apvAfBfI4kw28b\nuFXyp0s0saeR/crPgGahKEjg4mDjwnj5v9vK4iUeM3YpQ1gQD4PX0Ri5MudE\nxvfHvcdSwiTH09RBAKhe5KVisUNImOKBwD0Sd6P67UTurlSTUCnbHGLuOekN\nlnEQ\r\n=RiFT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"3c78408a9741fafda260867347c195e1ac42e0fa","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.13.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.7.0_1577758445386_0.9009979793003653","host":"s3://npm-registry-packages"}},"18.8.0":{"name":"eslint-plugin-jsdoc","version":"18.8.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.8.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"675314812e94a928871e973cfe8aa2e2343f8bfc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.8.0.tgz","fileCount":83,"integrity":"sha512-JLY6a2PT/NuBB2nlFZDuMhXvKR/28m8qwzgHdey4kIzlv589LOLM9RtFojqR6rNPnr22HhVYqUavcRZLG0yh9A==","signatures":[{"sig":"MEYCIQD9i2KdX5AOqZlvT7UqtFNOHVoNVMrKO6S0tLJH9a+CogIhAP6Sd6OOMy2d7h3efqLV4zlWSDPnl13I8MPtmnuvTkwV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":652359,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeCrH8CRA9TVsSAnZWagAAelMP/2sw+9v0xTkGljuEKWL6\nHLooIjTFBsh808foTgHneWtUPXC/CsYGB7dW7KzIZwloU8PH9Ox5WBRWscT4\nXwGBSOKXAN0C3vleU8Qnk3vyILZUIv1dvF2KHlT+v3u3UDKPLbQEKCoBmbJC\nctGWMEXWmL+d5/0pDIJ7vj0TFe+07TzXGU38Np0tN3KkjhkhS2E2lzssD3Qm\nO+cFufu81v5SRXwblj+BPKTqSSG/ArB7D64yrxP8AK/iyGJ9h8e538wQerzH\nssK07DHoFmq8yYwQfSNkyNvmeK56P0y1ESPG4bN3sxdvbN9s0x+NCwo6RMZf\nIuVCFQ2PQoXSGpg6eUBW8ZrzdpDP0WrvTlYNlLFNb2BYkHdlZC7ZFO1Fu6Vb\ngwdBqxap5eltqF+JxhhEjTELvOEndc+IoB6lFXL8tQHLTS/SO+wxHahIDJdT\nXs9/1Xe5ihyDZ4ExJLPQCxDSH8EZ3sohmG5ONYpthjEN3m8INqj5tKnMiX54\nm05cc4Edpdsv+P7cTzFqxguzRiz3SmV9VAymMGHyOg8kXCrhUapadX+reB91\nZ87636fiE+zoLs4uZvkWQbvmHl/15+ctVqT0YkfnyKbT6DZRDv5hw9MH7XVb\nkGMT0V4MOdJAuRtdsuqrX5oJRoi05O0JzxicHyD3+fitjz183LHQZMOKIfPi\nbgRd\r\n=HtQA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"f70fd6c53d06c9d8f82233d945099d57e507a336","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.17.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.13.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.8.0_1577759227496_0.8589592179847851","host":"s3://npm-registry-packages"}},"18.9.0":{"name":"eslint-plugin-jsdoc","version":"18.9.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.9.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6f67a240b730fe496effd7b5ccc588146742efe3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.9.0.tgz","fileCount":83,"integrity":"sha512-2AXTuIvKEhkBIGwLq+f2yPMKA7ydMJjoSQ97EiCFo2DV1vqQk8csHbija22HDuAJdnWy203hSYYZ55dMYmzj/g==","signatures":[{"sig":"MEQCIBoY/9isMsBPX3DwfbGdIKWk1t0yctxGekZ9blk97kjzAiAW+X47LqJzfNxn90er+Omlm/vOLmoCzWTgLxxV6M7U3g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":656978,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeCrRsCRA9TVsSAnZWagAADJEP/3VwLItOs5c6UAIYdlwy\n15BPWZRwZll+2VEavfvX/1E7OlASLiCa0mKJtihO48tc03+UjIJVFP6u8TbP\nxKuxyL4BY7DBj6vmHOuGirU1xd+kT/zsEQupOa1nLziBN1Sq8cZaoGiaUKYO\nrSRujCmUPb99JSJJTSSu2pP3dFtMdviNfZsXBb7hKieyT9r4hUsQDBVJz1l0\npqsAajeCQXfp+lxzNp6pyus2q3XDLembFSx9JbT9wKwl0y/KYeTyF0WlQ1xW\nv8rFVK35pmOUu7bzuZFpncmtc+SjK9oPSQd9pydeTqqAPD4/z5/UrtigR1gP\nqYQ+wp//wjCCatMd+BkH6uLcDH+ET8u0DReKZOpggUadIWdNTKau+lvgygVD\nkYN7O5OS888hJtdzN7cvOEeRn5FIrExPwBRYDnIaTmloS4GEBj+Z+bPYwYE4\n3Lob1K+fX2ILJIvC1SbQ8/7e8uZSao5U2YM/UnYh9gqg+E9o/7aDX86erxEH\naoewQ1e7g9aog4lu5gwJTA6pGiQEComDOK8MiLTlO5ji3yb+5fkIqcfiS1mW\nOiy35dZFWMuqlpq2H357iEMWCS3VApbUd2H24qccTtxVy0Y93sWK3EwmQfLJ\n2F6U4VrmBwXiNyvy7slXzDXUyNX4hkOtI5lmhhTr5wFuQwk5gnGP9GVfxORY\nEVpo\r\n=GF5F\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"5d996636961cd44c13e2b89d84180909bd4706e9","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.13.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.9.0_1577759852113_0.07220300512377809","host":"s3://npm-registry-packages"}},"18.10.0":{"name":"eslint-plugin-jsdoc","version":"18.10.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.10.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"25e0401166921957250f0bd95433d3b909ede189","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.10.0.tgz","fileCount":83,"integrity":"sha512-ZwUvpCErEdCTA7BgWCvCiLY0h14dl+DZJzvffL2rTBF5O66Til2DsS/brYiJ0Pfv2llVzIpKnzLz5AksyC9kLw==","signatures":[{"sig":"MEUCIQCpAe8OPN7pwhqlukA8bU7htG1of2qvTGpM59L6pXa+sgIgb1iwj66H5HLQ0/GB5HqFsZiRW6/np2dPRi4lfEBzGFc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":657712,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeCrbcCRA9TVsSAnZWagAAl40QAJGtITxRknZeoUMTF92g\njrHchqxa7CEDKEXlLQuajEWOSmFHagihnOYwBs7XCxb2PD+hQWC+9UfTFUea\nAtyyF5YCYGmUi2RcK1qnNdctvgzRIQ6rhvF3WYqXBwW7h8g5KZzHxJO1Fubp\nkcNdFsCYtULDIBZWRYr5R8oqZ8T/eNIn0eYH2INgGWwvSAz7PKMGGQHxBY8A\nAezuN7MKn0q2edf6Md8AKLYjD7ljXjn3HOs39DwX0jVzNYQ2j6k+Y7WjLRzL\nmwLtw+PwaKgJ3GRdsLH5gH/limJVdqh28zLdmOfyFbCy8Sr5dOY/gBh7Aenk\nk9nexSjJ9teKtfQwd8qdppRuWUXMhY4zMijPlV+GaiovbdyI7r6G2k1rjkzG\ng4Bp19h4gV4r38nMKlitP55MAS2v4VHmCBae79Pk9j2X1AudWoZGrtSVj55V\navsH2hi+z/L6vxBl71yDbWFJMquZxs2jsXUfIUzhIJjC2MZaw9yv9V6ngUnp\nOhWL3j05fITTrAGY2KkOJzSn2WIowtwA9mBrctj+pnsPTg2VdKJMNcx1RzDh\nYE2Jxe68/vx4yrtSPkj8n3A8CBXv3Np92FmsfsfKTDogVVKiyLmlH/Ag2gCW\neGzNsjVL+vrmLGADgri0eWuUZB7+UdOPjYAYL0W54++KiqPPOL4G+zREB15R\nXbNR\r\n=IoFC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"cf37cc6248cbf123c14b8147981c9e20b3e933c1","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.18.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.13.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.10.0_1577760475476_0.6086029775090136","host":"s3://npm-registry-packages"}},"18.11.0":{"name":"eslint-plugin-jsdoc","version":"18.11.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@18.11.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"724e6aa35f01c7f80629b2e313b007422cc159af","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-18.11.0.tgz","fileCount":83,"integrity":"sha512-24J2+eK2ZHZ1KvpKcoOEir2k4xJKfPzZ1JC9PToi8y8Tn59T8TVVSNRTTRzsDdiaQeIbehApB3KxqIfJG8o7hg==","signatures":[{"sig":"MEUCIAsZDQ21B2ck3zFfJ+wZPyal13lAHtMCdaicApqHNQpAAiEA7hirQfJcfON0frT/Tq9B9txRdqroxHs/cd7fyQvf+Hs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":659084,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeCrm2CRA9TVsSAnZWagAAKfYP/1qoDV8erb7D2iK82P8e\nn9iA5d864DZjSx1hu6xR4I9syCI4c/lVDoVN/Q73MJSvN6bv4roINqUnBWlD\nqYjdvvwAMKV1xWVhRKQOfJidilk9H1T4OMG5Ftyzkzu+YXtbH+09syaoGQI5\nRz87y2RBog/cTOg/Li5pjt3JsRlblwqB+gefxYqShLIXzwxfSclpyPCMBqPa\nJulA0EAapS9U+AgPGBhCnhZGR0NS857XiGV+tMcsbVPPT0zZe2lTK0TpgkxA\nBSrXuDzYUWoR9hdp9a0fg71C5eiaKaPIR2ju+9eLpSnmGF5ZP3Y9LpCZ3te4\nuNpn/kfn4NByIoTu8qD+ZhqAtjWoBINLxaCU4OCzKu/UHEq5RU2jB6fDaMKU\nhA+yhVqhuR2xbl0WYQyvYo4BcbtfAOJbu5C1MFUBQNXx3tWvXPzIBTegHa0w\nqodq72HTo4e+wBZAWddlOrtg8d+SqtYQ0X3OMTEhbz9rqzptE/iVC3AoB2Sw\nVkij2YD87DUNQ3ZTKBqy4BILyxKaizdHZBw4/x4MR9X6CXWGnWA4CKTWljH+\nvW1bm+1g0GDZvczac6WvA95xHwL3Rfi+PG/uhltNjellJT1zyPi0FfE2J+Jt\ny36Xnr6FEqGNuBm4Xtzj0d24W7roDPrqlXcWfYZghGPy02LgHyLLtRNYz4TH\nsi8/\r\n=IAc8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"50d3b4db1b82a4792262de7601183fac7314abfe","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.13.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_18.11.0_1577761205658_0.8587756039304477","host":"s3://npm-registry-packages"}},"19.0.0":{"name":"eslint-plugin-jsdoc","version":"19.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@19.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"3ce0042edb860330759bdc7ff187e9e5d1ecae35","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-19.0.0.tgz","fileCount":93,"integrity":"sha512-Xe+mci5g48XIn/49zx0mfqmXziwHd91SdFYjR+FPqpkf/xbnkZW2IkGlmrCuxU5xMM5QZ0BEe0/eUoCeM9G9Lw==","signatures":[{"sig":"MEUCIQCoP+p91kTA4J2LIngOCTRKDoRilMH3EFpbkN9smww4EQIgObCYd8KWife4D9AQywwiWYjTdLWj4crp2bIpRdxBDbM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":686933,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeCr+jCRA9TVsSAnZWagAAoP0P/0jgSxBD1yIEJXvUiXwJ\nY4lPq8fKoOTlBCeXtz0+PfLg9vZxOv2yCwDxyHqBeJd1gkEg/ZIfuaHUkMde\ndXWXENy6DuKxZxUWoqko70YOKsgoDqgrkcHpFNt2vGWdzbsEXhqdsljllgQh\n9qFXygJMV80Epmbf3ksYV6vXq4M2q6nOcntKAymcegLfJkVfOfDZewCiSNGb\nTFJLx7UAI42BB7tfKjxsyLI5uUyaR50UgyeXdsI4sSzR9n39PkCepnYwX3TQ\nbhFI9BwEj7TrT/mba+OjGvoswjiDTTrJ1Kivrf/nVhCRuCFtg7cCjjn0ZH5o\njL3TQgNtkINOZ/STkfi+alwyC2veI9lNouPNccrDWTwtSgbTmbAk1E5VN0Sw\nWKX20z+1Nh+KqgXNCvz7Iofz+N6udZVfgEKfnO26Lv58YXeHRIElpYvpbLbm\ngdDfvrg7WJAnIaGthd4/+Xl5rAilrFqbWvhqYgqJ9qjsqqeRPru0T01vYWFb\nvwGGuVgRPKGVh/VIfOIt14+d7ziViGQ8hZ0wyPvK4GQqkPfwv//akBfr5zON\nJviJq6JLPW+Ibs7VwFeshp6WrfXlli5SrcOI/OjslZkO1CISQ7yLXbqKbHrv\ngVmkt9JxpIw/FA9GN76nGlQKoLyXwYH6uUK6ETQbpuTxThIxOVStJAv63i11\nkOfK\r\n=Fl9I\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"492b814f83413dc60349b455adb0228424805c13","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.13.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_19.0.0_1577762722410_0.1559903768026054","host":"s3://npm-registry-packages"}},"19.0.1":{"name":"eslint-plugin-jsdoc","version":"19.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@19.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"8b6246dc35676d27e4fb8376bdfbcf5b46ca3f4d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-19.0.1.tgz","fileCount":93,"integrity":"sha512-qWKsrj0aVKifxA0saCpPCv7OlrDkeQxZ3xSAy6fCOAiNfV/TXjYsJfEeyFuAZCqGI8bs8P7NDrfgCqohdvrT7Q==","signatures":[{"sig":"MEUCIQCLUN1buiUJAdRZhE8IzzEXKskbp1DoYUqMBQIYgph3swIgcUJ91s4TeStPV82r4HYdEkLMEt4KIPNBLPhzAiPj53E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":692828,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeCwugCRA9TVsSAnZWagAApPoQAJ6u31X9zQtjyN8tcZKQ\nV0Lh7Io12bR2FAxixiaadKovHGmXuJdV9dUZSDs1S6gkM/LxlceeUhXfIgBe\nlDCJqqaND10BsI6bcyqNMoC7T8wXNO4hTkPupPg++yS+QxpRmrjG6FlLV1Ie\ngs8DsljTkTKI7+d2Z5eBivcaIe/dy/2qfZg6fT8SEbtzYKp1ms6ymOlNT0+I\naJ0x5pprV1fdVGbfg1Hapr3JM2VBLWvmaztkrcEn6KR4wQJFtL9JvWwjF2XF\nmowz9PDcvyQ6XAjosVkbnmG7mc7RbzVr+wCBvOPQ/CKGFNvejhBWnMZqU4yC\nRuI9xNr+tdsHduf1AoP+G4XRdzvVi59dDqKFXXnrZdRL6mH9kEQfCucKJyOm\n3fnTFY7yfPORpXXoSzmkWnjCCs9mSJVMclDLkByvLMZwCsRs0gTzV0WuMgC6\n/Pu5NbfFqbyTAlODSpPe7ERsQ5mzvR1Nn6XdOKWmU/u+oHWiDGTVGZuWGha/\n9fHzcZa3Jf1eCvN+vhPXPXd0vMnLxtOfHXUYW2qqVBvOoS7s87ejd0/TUeQK\nuJQu/V3tn4zXLbtcIgDTH6M7Ibe6VxVNwxH4LW3egUBzzdpVGVZdUr7HyFmt\nyvDu8ER/VTr2Y3DUhwgIxmrGVFSmWMYJcDCaDsKIc3umPdlNB9dhAszyyvSB\nfb22\r\n=jGZo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"601e52ddce951be00fc4e00da9ba94bb0b5934a8","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.18.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.14.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_19.0.1_1577782175204_0.6899181934259713","host":"s3://npm-registry-packages"}},"19.1.0":{"name":"eslint-plugin-jsdoc","version":"19.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@19.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"fcc17f0378fdd6ee1c847a79b7211745cb05d014","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-19.1.0.tgz","fileCount":93,"integrity":"sha512-rw8ouveUzz41dgSCyjlZgh5cKuQIyBzsrJnKeGYoY74+9AXuOygAQMwvyN4bMRp0hJu0DYQptKyQiSBqOnXmTg==","signatures":[{"sig":"MEYCIQDbkYMHqikRFKXZLhE0FAiCwUe6HijPZoW1shSO/1XjsQIhAJ35EyXrQV5CQ+pl+VGiQqJEOqI4GUOFotAEKbaeC5Ig","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":713346,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeCxYBCRA9TVsSAnZWagAAvtkQAIvae5XRw8WSE3F9GYNS\nPYxQ5uoembK/Q92bJfW7fdzK6ftfchmJaFaK7GIhchTYrWBU+xwqAEA3BfMu\n4LUv0+b/byOmIFh7emuFPYqdbgGVmifa+VQ22KHPr+d+NE8LkLdIJsccab/F\nt0my0MPFEGEG0M0Tv4/P0qS/0uwoIR0GcwaoSA8PGlT/MF+R7J3VpCP3JN4g\nYpyH5KEP5lU6HIpg+eCkbr//Lb/QUddixBKCQ+dcL7yuIc8682q7YJQkNiyR\nl96GhHBIjG21lf5FWhADqDKg7ni70hRZnF3iY84OV0rHmL495Zx8Id6utWkU\npFnUWhx8vRKtK/M63G5QmpbLQdRTGqmTOIPB08InFuav+E6l+BUfazLVgtQF\n8ID4e8Yf+pCMkzznobRpkzx3M2ZjMAi0gkdFW11XF2b3toqxlrjNzaeNoCsR\n9I3bLueDFQAvEvucSJ1xn+BwvM3JQeYF6W+uh5XYA32WIhbJ0ATSY9T+M7oP\nCKHJWGYW+NIZU4HKYclWyd2SqX4Tnyy6d9A73r32wRoxCSggKv6ACMdxumLV\nJGq2kcbpbdgsZpqVtEi1SuYUQgGeZVMe0z/tOxbK6MJYpA0E7eAYRSkaai8k\ncWPlEhkr1++CCx2fFsUy8YU/LPZpbRO8pU7noVnMpw7/0Brbh4iAxaWjNO1q\n7Hib\r\n=FJKS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"c4079b8b17c6478ec85fbd659bc48b305156ef9f","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.14.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_19.1.0_1577784832617_0.3631502358833656","host":"s3://npm-registry-packages"}},"19.2.0":{"name":"eslint-plugin-jsdoc","version":"19.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@19.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f522b970878ae402b28ce62187305b33dfe2c834","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-19.2.0.tgz","fileCount":93,"integrity":"sha512-QdNifBFLXCDGdy+26RXxcrqzEZarFWNybCZQVqJQYEYPlxd6lm+LPkrs6mCOhaGc2wqC6zqpedBQFX8nQJuKSw==","signatures":[{"sig":"MEUCIAKMb9OkXzhdVSnq1AoHNZgVrQ1BZuQ0Dh78tS1n282kAiEAyym578ReyLqiZinWLv+8qzcw/caOKx1ryOBJFzpc7SA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":720413,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeC3/OCRA9TVsSAnZWagAANnwP/01xn1CNe2DiB/zaqxkK\nqNLdBpWrgpuUHIAhV2kLvDmlgcHkAxOhtbgEeaQG8GudiWnmc6AOt5+eBf9d\nW+VAXSDUo2yN9vdFGXlq0c2DL/3xUhbvBmoqAierMhKMfd/LnssbE8LE00yx\nO3NUeLAUbWS8byk1PlPBGDegWBbf6qodpb9COD7yqzWry8fRqv2yUx8w8BLB\n5NCcFSfe/IBF4YUo/nwFSPvLhz2wj/ispo8cl8N+q/ZEe7tZu/54dfDIBZZf\nPLc29fQVS2qtU+fyY1KSTFyNmclcoacb7cXI1DCB9sOxXrnGQJrAW6fUxv4t\naaE4FRkG7DfKtjgxTX/Q/WFBcP2yhRnh6Ux0w+l/4deRbi84touwM28Y/Mha\nXmqQRrx+T8NlQJg81crwzIu6cQioXppbzXzGCmVwyg87+X0JO/G97nva215H\nFZ0KuwvYnG3mmTNggTrZ6JVmc5Q1mz1lmETgVeUQJfe99DTZe35P8GjqIQAS\nZl7JFi3KyvgyaZgNkSedVu9Tk3DQrKhMyA/A1nwpHbtQ8aLI4mvSLnd7wocP\nc9HviS+ZTrDEseA0aSS+nv3nH00iKxbC7XaJmLgk0ux0vxdh4thvENxFDmOz\nTxbLdrXTrhrSfrwo8eJRXNqexqDFDGCgia/EWp9LNnNIPMiZgV0xDi/QYO7y\naZ13\r\n=I+bN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"f6e467e33716ad4ce6d4d0e131cd7e3d000c6ebd","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.18.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.14.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_19.2.0_1577811917650_0.3710381749375089","host":"s3://npm-registry-packages"}},"20.0.0":{"name":"eslint-plugin-jsdoc","version":"20.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@20.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"210726135117c97fcf302ca312cfeffe7e72e80f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-20.0.0.tgz","fileCount":93,"integrity":"sha512-JtQw5ctQmflpp3szNnAdyQkBKs4gfVC9Yjer9+g7e0F9l/hraQ4N2fBFUBSpWafpxz9TPV6aAUeYHjM6rHRxBw==","signatures":[{"sig":"MEUCIDaBkA5IL+EBybd51sGNbgJXD6PfBUTJiPDUIV8/TKSIAiEA9ynWS0pSAqkiDrkb0GhQ7IbAyvLQ+bQ18T/ifbeEWkM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":724235,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeDdamCRA9TVsSAnZWagAAZboP/A43h0HkygvWDyn6X7BF\noyrBYTpipZHbNHs2KM/KOO6sVVGbpL+e1gBjiDaWUI6aCimN/oi2yg35/A2k\nvRl2Gu3j/ID9jmhE/CA+VGy0HJGsWRRsIWg8wxdkAbm+mH+YBJeliPFDEnll\nHvra63jz835+VWVkfQ3t6k65BxXYb3hN+KvjgslSOplWPDQxnMSYuGyFyiEf\n8+hgHZhVpXq+QjPemGfe1Qi9pMzTVnxptLxzoVvk/HS5wOjLMccQ3vOF9VMu\nFt2G5R68ZFsTe69cI60Sc+i69ct9lFYfCloiPsNXeo/3WyWV6kHMgW2FBpmn\n1sFoJlg+kGN3dUEALeoZR128Z5/eyqCs5tYPbVwG6xWMo5HtAO613l62s1/h\nTLnmfGbAjFmIa6mTdxqzs0LRsDkubPHRaZrZg1GYy5/lq2O+XYCeZm+1w39e\nSyzfiFWWvN6DCllOcb5Ad0Bl2Jxm3RykReUQmufF8ZCjCyKlfHk8sboCR/Tf\n4vihCNQLo+eYTORypBnsuMKurRu08ZDTZ+DZwl4CYY7IFRiQoCYWkJiu0fvj\nbPtQ5kFqgdyRpE1EU27IDOtnmqhNr74QCtACnbYwzqoFyRHMfQN7ylVpjBQo\nB2mEiRdSpd4btJF6YahARj5PszNwbR3wuusgnINhIO7qv8B3qOfYGyTCq03g\ndBLW\r\n=J4Q6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"5a85f0f154565e4d43e101eed8f6f1cb04193550","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"8.17.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^6.2.2","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.14.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_20.0.0_1577965221688_0.8777688636480361","host":"s3://npm-registry-packages"}},"20.0.1":{"name":"eslint-plugin-jsdoc","version":"20.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@20.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"fd2da08901f3e253a8ce175f6c03f1529b73e6aa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-20.0.1.tgz","fileCount":93,"integrity":"sha512-03izXNlXgeHuSxvjRHdSlzptYU6Ik3rcUCSLVEYwKKs2Dx54Rz1aExVrjNXGuNkW6/IHLUo1nsY9XtPzlJ2jmA==","signatures":[{"sig":"MEYCIQCh0c7uKeIOk8LVFE//n0U7R6TysxDwzzNzQ4LbE/u0NgIhAKREAmTxeWf0J0mgt/7RBSxKtN7+e8H6sSPUcMnd22Pg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":724681,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeE93QCRA9TVsSAnZWagAAQ/4P/0Rsa8R4KZv2X2rE6+n9\nBR42qF4pyCSiM1t1eLTqlzNZHvR4ZdzTs6QdTlnbe7DNhQmR+NWivsQTIjZc\nvKrg5Lrwj8wgdGCqrlnhuytSny+eghxmclKDR/+62JMDK/r4/jAe8uED2gYe\nHE9+dtbUCotlYi8/AavfpEJS/LbbWykGRgXIznvGm8vo5J/Kw/BamRX9B/AV\nhK4MN00lFoKML+XG74NiBqbRQJFQ9kItbwwtHHlgiSjq7xrhuWCrKTnUDMpq\nP/okp+5Lj+Fv4+kpBW9AvgiiqNk3v1CcmPUegWNdJFADeFUvAQu4z40yXd4Q\nAK0+j51LQ408WvzruRuHhLVlKc2/J4lHbV9Nz992BXphEQpE7FYmj6ruZt1l\nZOzMbCHAkcojeFb5Stu09VgMDFgW91e11NbFj3rV4MzlB42qZ9q2kJi8QEWo\nCpSjEvzQxfpiB1FPrJRZaiHuD7QknDY9vjPkHJMNOvbZdedX2vMuK0/93cDH\n0XDZX+7hByOCyhxNOTbIpZeXJZL783pMWfw20YEo/sHUDq2iSGPLqtriiHh9\nDqc4CSZlJUJ20LMMfRRpPDHwIaX9SCKzpHrrmY4xlKAGzXsbKtK9V8u0YKLE\n2FejJKJQONA5uNUdxJ6p466pBIUjzj5H9rQmS/MfhBeg1cTmlwK7Wm/j0Vzc\nNAjH\r\n=/V57\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"3e8ea5992c1bb94c513bc8224fe8addf84092ab7","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^3.1.0","mocha":"^7.0.0","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.14.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_20.0.1_1578360271710_0.3664986196949096","host":"s3://npm-registry-packages"}},"20.0.2":{"name":"eslint-plugin-jsdoc","version":"20.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@20.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e573818a15077116b418f2828cb254bef60e3fac","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-20.0.2.tgz","fileCount":93,"integrity":"sha512-Acj6D4tUnmw4tfX0BhJlxRbjZbF8hPDY6RGSCIjPRUmayOi40NEHyGN6rSlGYkblBwD0Yd817mPdNKFhkdchiw==","signatures":[{"sig":"MEUCIQD9yxLWBcg5V5FkJ9lSDjYf4vN+fpRAiXsQUTH6/2rRawIgWlgseIlJH9GPS1HXJfEJFpKNQboiLKTJ/pXK7tKXK7g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":725787,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeFGFNCRA9TVsSAnZWagAAY10P/3q+3fnwm1Qv2fQ9Aj1F\n194/v8sUVh4uTVc8ecf9GNf0JutfW+O7q7kywoCTG0kqErgxjROqXrKsUrx6\nGQdxp7UgoRuvXN7QUOxmwtSnVopT3GKSHbno2c+makxKFLcNp3bllVlxhn/j\nWScz1u3E2U2FXqZqeQVhwWONur07q6v5vdJW00nP08gzxpIZw76uwou8xieG\norKfFJrFqm4vKHeRhySQixbMaGOHoV4Fz8qGWBcPxFD0pKBo+U4pN+Vk1L2u\npik4tcXsLdbEfG9s3gvrhG9nWHnsQuK+kF8N7RZMKKSWV1i7lYTChs9IwdUd\nFN1dqW+q+SCEePaZSD7yl9X+LZxEVlmWR+lXLrjBWHDDcA3KuV/qEE6dmr+I\n59Fcy3rCjEsRJGEySVILGocRZDdQmpvOSiqtWLfXcp7YeDDw4n2L+LrsEeQf\nquLSY8Evc1QlQTwn+2yVGlOp1pal6RNdk8fobAdHIcltbXiG8/wUg8Y+Gsd5\nOs4D/nGaO7UxmoMtyIScZ4p0Bp84OfuRnWyrwapnCV9ZQk5glXRE8cuIXw5w\nMjVw0Wru6KngtbR6n0j22TcFKDI41ddE2wcjfq1rlJJgNGm6XOhl6ET8dppI\nXR9LSWT/AVmIJ901HC3mLNOEeEh3+MX3n9yE7qDlvSVIUzv1qQQ9j+mM9PSd\nOtz+\r\n=337I\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"0f39a8e76ec9db6e3022db87f7de99f35f9da3d5","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.0.0","mocha":"^7.0.0","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.15.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_20.0.2_1578393932839_0.15171987097662187","host":"s3://npm-registry-packages"}},"20.0.3":{"name":"eslint-plugin-jsdoc","version":"20.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@20.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"29d9eba98e9872e4b4b6bce7e1013d8985fba089","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-20.0.3.tgz","fileCount":93,"integrity":"sha512-h/f9skf8oFmYg7jJfV2P43ciBV78q0dxkpnL++zPJrbuV4ZRCSlFmQWjjlNgNfYLGfAl166SNjGg7veEEVX9oA==","signatures":[{"sig":"MEYCIQDustzN6Lm/SAXRLfjax54CN32Zr7yjCzLAaV6MUa/WaAIhANjqKRyWoIqy+nqc/vA7+9noIgaeHHO8hw3fI6T617nw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":726484,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeFN+7CRA9TVsSAnZWagAAFM0P/15bj3aUu+rp0fFrniy9\njxW9Hz3+qEGsa0HL7wwztgPA6+tRm9pTnVyQRBFsD5WCCw/0OZg5el1JXHup\nScTUFShFqF8AUzueQxj3VxmnxXeotgAdHglRQM9gnSsb+no/44YvDZcLhLNs\nXQsSdRC0OY8ydzb9dY3eNIFP5L+mLBihv0YZ/3+8I/yolWBpefbtPvmi9ltU\nTcNN3U/i4dBz0kWK8/4BRrNToNtCJsIL/Gd944juOPU5n62rMrFjH7PT2iOG\nYYj31OnM/9qq5crpKWsLXHQwiE75xoS9fPY65hZRhqU/xVkTxP6a5wYvnM8y\nPrz1ygyxrTNAGbbmpV/uaAQI4knan53ZT0qzbprwvxS0kzbKD7jFl2F09XX+\nxEwJQvahn5JnU4WxfkzkIkFXFEWRsE2GdzR8sLQ/Ol5P/gD+H4YZsDDH8ktF\np4OHE3mPHkRBg0fkeVfGIiB7RcK6DBKiVJNFhbI7NCTr7221Dg3b3ZPiBNuN\nH82tYLQ6Ro+VG8mtfaX8Tlf6Rse005g2E1ATG2TRtcAq450z9ZjsJ5bEUYst\n6dAJwZRATkt5hYj2j3Hk8fH9JI/TUB3xma1u8+p+t8WQw/ZSXLtP+/I+i+Mu\nBG3JsI29j1UlRwBAoxYRGL7VCMCnLXj6wyOccX9IWCWPK4F1f64EmJA3NaPK\nSCqy\r\n=h/Vc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"1c31782d1c0410d550ba0f51f073212724506ce1","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.18.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.0.0","mocha":"^7.0.0","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.15.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_20.0.3_1578426298443_0.26552355711433995","host":"s3://npm-registry-packages"}},"20.0.4":{"name":"eslint-plugin-jsdoc","version":"20.0.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@20.0.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2d8055f1c5df0678997fbaeb64fbf621cc212221","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-20.0.4.tgz","fileCount":93,"integrity":"sha512-F6D/YYcZE7/5LPUNkvql1KS3m7O48LFx+EIOFMBGOjxfi7c7ofLHKHH8XQbWH3EoZv1Sayhkyd32CtfYeRnmIw==","signatures":[{"sig":"MEQCIFXvf515y2DmE6H2HXLgQCJ5eWCXyIWJg3ijiW0MyEehAiAbyQyGNUh9usWqABL3zO9b2grinVBhwQYB3nRayW63oA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":726411,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeFdK8CRA9TVsSAnZWagAA1GIQAJsbIeJf/wYSUSxAcgBC\nGVfPyqbjThGPIvArMbmFCUcTFS7JCNDJLn329Lq9xxWNeU5jsgRhmapMhNjW\nrlm0TYnpI49S7dO2rKXGn510zJ1BvtVgHNwlyLFrNb9JPxbiHwEt80Moqwtl\nbSb9CgoESQ8sIX48joCV8gOrO2t7M6LaR8c+vzhRKqnezFU5GkaI6eUayNEC\nQDJKsve/Vk1Pz1Hpovx/5fJbZeH0Zrzk6lUJ5B3cHnSYpzwsnTGSJnTVBzTs\nsqLBlUNAVKeV5arUp29aGuB2OAk2Q7dGrFDYpgtMU3Dt+etw9CUP1RfTZY8/\nTEPGV206JBetnr6MNbphyTHJb28doAeBvCqZaDZgSVb6BAHYLSze6HilKNfa\nSVVu2/WpRlqwSGSgS3LaJsTIn3ATYEPNaIV+msaFlNqnpxJx4vWCtHZXDQYj\ndjUT1bwfWvh3+LRtuHU7yIE8yNpsjIJBOjAyPenpKL+kSyDsWGcgL2R1CxD5\noEp1tB6i34tItfrtifwH8Y7vTQdk0dLuGzzp5X7EQX7yZoK1eIYlfBU/Wj3j\n/YT6sPyaqAEIgRhkfnLcOFysScD/PIUKyHyhX6MHBUOJtbBMu62uBi4PaZ1a\nQsOiD7pFflfk8tX9FzY18vz1vO8NHjFBG390EDJ6PK45j3nXV/10t28vnLhr\nr5yF\r\n=ogSg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"efddc1c0262f979b027735cabbe7ea1ae6583fe8","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.0.0","mocha":"^7.0.0","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.15.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_20.0.4_1578488508039_0.767073280275762","host":"s3://npm-registry-packages"}},"20.0.5":{"name":"eslint-plugin-jsdoc","version":"20.0.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@20.0.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c2bd35e92529aa22486a98472d61bca507d05bf4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-20.0.5.tgz","fileCount":93,"integrity":"sha512-hSGCKkrydrwfwlSo+6BEHZ8tUm4SwJ+96dINdDGn5jYwmiQOkAq+aYVOusVjVGWSJ/kKqDJCWVp99jt8K6Prkw==","signatures":[{"sig":"MEYCIQD1xWBUJJlWwM/X6CSyapuLoExp4m1whREUCB+FnBqwqQIhAKYpO5O2IO4S/sa0bCFRx/91xWTZeyTMalwF+4rFttQs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":726140,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeFfgcCRA9TVsSAnZWagAAFbcP/RWCwNb8mQNLGXJKPL6W\nbcPq3IDuSZ5CNDUE7WbSYFiBUbQTdyAymG6E7Y7sWiHaEm12+Hj+yPl4Rz9r\nGWSnyAzpwSnY166oKlfRWqeBev0R3PR8sTjbRD51Vn5/KifNVI04W7RedFlY\niCBHCvwQeR8ByybJU5nWze/8/ur/p6wKTBmDEsetg1CWesls664ue7YNAQDt\nRxcWAlQtIYxSrsonQ87JSmAzvxceDHhYiYspUbCZIQyHYxx7xu5NmRhZPlq9\nvFZm5rybl9YFN4RjXeEN37M8eFGNGgHK4PIj/uGjtHwGlnxkJf7WI+HjaNiH\nmd0UOV/ZpiAzpJBjcLWq1seoN+PglRz4YBJlD7OjtrXlIJhabgv2wKMx9zEW\nume0lVmxz5tk6YMkXlqcZSVHQm9YrKGLjoDyctgzUwyNW9LZIBTKdPEk9EUK\ns5leI1yw5lDUrvZQSw7cgM2J7BmnxaQZgsb4HzmrOkif8k411RtvE7J9y7iz\nozIbvJsiDW0u5tLsQ+T1h6MT+2dBN/TiNrlgh5JJrEtBRacdefmGsMiqsklP\nqEu2FM5FmYtWlxbpTLi9J2vwOeDVsaMFkr166PCGOWzQ/fOTiblyx7CqvmpV\nLh1SOOKZERVaLj+n/fuauOx6s6q/eSB0wUoBcK2gKcXujtFTJLZ2JBhqJEZG\nkFMo\r\n=+SEW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"6cbf2868119c42055a7879ed963ad02c2421387e","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.0.0","mocha":"^7.0.0","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^15.14.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.15.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_20.0.5_1578498075416_0.2726422119440117","host":"s3://npm-registry-packages"}},"20.1.0":{"name":"eslint-plugin-jsdoc","version":"20.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@20.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7f3f55cc77d87ab34b36a98b8ac2f47eb28e60e7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-20.1.0.tgz","fileCount":93,"integrity":"sha512-fvJm4LJ8PBkPH4S20oaG9SuTG+2tdWychu7lADQnURlhrGRNiC/aPum4k1a26V1AjwYg2EVjGyPf/NtDeM2DFw==","signatures":[{"sig":"MEQCICzYqbyung8oQhrHYlGl2/u7mfGp3QksEMbXHVUTzzQCAiBSpIqEGFpCZ4wSwZkhKc3GwqIF7fKxKs+DIE7huwjw+A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":729705,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeGbtoCRA9TVsSAnZWagAA0osP/3Cde5yWhw2ufIlycdlN\nP4H6rej1l9rCnkRomLHJ+6h61PkmGjpYSR5e+yJW98kmigrTGzrRJA3QkCe4\nqAzMvVUd4uG4MRyxhHQCLyfI9uG01XMvqGFDo/YPKuHJEDUuo8R7SwyxG6bc\nzjflJM+JnhTLbJwF4oQ3xw9+oTaQknIy9d+ujg71TLZtut0qmZuE/BGD1Rqb\nk8byc+/eNFH2LAhRpQrZwNcUq+F0raocwpeStZgToe6yDBQgATRa4GJASTfn\nQD9GEa86X6Sdi5rA73x4kz5wiYLd8a6CxwtV3DmV+GcdfJF8LWk7wDwLd7GT\nGNVWYw69tnnfID3xETic+e8TxQWXu7FfNIJgKXSE4IDBgZ/Noqkj0j+le4Fk\nibrO2zHj8TzVEoMZlqemiA0/E+DtHLVpimYZ+jxr4Qv+jHebNx4nLdOJ/La7\ndnHn3f+MizY5SElCQjlDzJ5C4Ugi+/kjInLX17BKkyjK9cmwylff90rdl757\n/cloXHhla1s2dsXcHRjAc0spvFkdoJOUP2p6KCOnRArIA3gqycP5440mofMb\nzxyAk4frTHLSyt0AVzRVP4cEj/9I4pGbpSw/b4BnoYeT26h8JJ+w/+hNNB/x\nwHnuo4otU4gzq/f1Tckc6SvF9FZkZI6n2ot+EBRTQ8ssgS7d+icZT4BtAMS2\nli2n\r\n=aPEh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"1383c0272bd28343072e6fd92abb98709070c96f","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.6","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.0.4","mocha":"^7.0.0","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^16.0.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.15.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_20.1.0_1578744679243_0.026798910597502834","host":"s3://npm-registry-packages"}},"20.2.0":{"name":"eslint-plugin-jsdoc","version":"20.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@20.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"fb2f0caaf55e8cd5d05328b6d07aff56b6080c7f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-20.2.0.tgz","fileCount":95,"integrity":"sha512-JBKSW3la93jQFjvDVqcOj++zhpBtUEgEEaWKPHWxD2OpYiTSE9ysJC/hpM2Fd/zf032TFVFbmfnSTdRpKjeVsA==","signatures":[{"sig":"MEUCIQD8wyHXlese/O2BEodApc4iYhkz0QxitnGnCjpKsn9GjgIgAcxon1NEiiOD4HrTbR59b3E+2neIwq4Xr6mXfZTiMX4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":735521,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeGdlnCRA9TVsSAnZWagAAqaYP/j94EBcPNcHNaSKb6Jm1\nM35gkoTjK8Sx5nw7iCeJXL8KLivR8eIMEQgopOOrv0GsoPRIppV323exV6FC\n1lrSAEMXLV/htiyV5sWYF5CerbUkSqFLqGRTKviJ/XNR6ryqaa3UkDzgqEQ4\nyQ6VzGpQ4ZKbiENINj/ttV3DQJREVCg4nBuy/pXbFCXkAu1Y4KmW7h4Wrmud\nxoLtkg4+XYUDMt3L++NzChSeM+eKuf8TuJbZusbuyFh0+F/VT6cTk5B0kc1D\nmh/BbSONDQ8O97VZAMPXaHUsXjejNnpR4/oUIxVt+m9s3D2auRZ3hTiov+ct\ngqxL6zzbaWGj8mCGvzkeX4yn2q8FAVdjK38lncFSs8dkEr2wQM1FGQZKY7OW\nGVKNXgt921S04P0rQ0bnmVTQvKK1kf0TrF+n9WUbSOIQkW2aKRmQWn3BJ9mk\nrKomfRekRUJoiXqqAnsU3kL9gnjA+cZOfHHt1rPDvE5w5u48Llxf5RKmq4id\ndqWBBGBSPoldwGfR+gG+7g/c5lKXbh7EdCGhf2AtJJbYj3TfGm+u6iMA+gpc\njtPMiKMZGQwMml87OM6v8HThumcYeG2urJyAFtbaxyxLVI7i5VzOp2vJ6LtJ\nnyAomPs0ureGAmpaKipnJXPuYACq8oL/wtao2zmbztUZenFPY5I7vrcSSvps\nwGoW\r\n=2GkS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"d7fec9af03eb48c780a2d4951da1438198033981","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.6","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.18.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.0.4","mocha":"^7.0.0","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^16.0.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.15.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_20.2.0_1578752358558_0.4113050015320192","host":"s3://npm-registry-packages"}},"20.3.0":{"name":"eslint-plugin-jsdoc","version":"20.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@20.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"1ec066b1719c22d336d06e98df41d4399dd6531c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-20.3.0.tgz","fileCount":97,"integrity":"sha512-7tBrLcN02smsQsl8hOKZZx6sGM9qlkN6AmAf7ggpZjsAD/Qi4RsPK+JFzQkA4RysyyDnPZfrJhV19vrQut2dLA==","signatures":[{"sig":"MEQCIF5EVYlvjmQRwkSUK1+WP9KqVjgXy0PmGUeDMQMfjxTyAiBYa50CKf07CY5tOUaMNeCloMlqN3Vbv8Yrckeib3Gpng==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":741413,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeGjA7CRA9TVsSAnZWagAA4yMP/A7Umx6oLxtCJBz7+l8O\nmXNjgWIYMabtjKY4unFXQGzQ8ts06PR7Fmb2W0FfF+1aIsO6W2QotNrEXw3B\nfWK4JhI6gtqRb+kLY8HkE2wp2uJC5GBjX6EtIwx3Ym/yMxdyEeNyZGV9mAY5\n2CsqkhvcREWTjZ/prKlBnRfx8q37SVxVMZ1pWBXvljnyVwGw7rIKZiuyzKh2\nzUQ3/UPqKBPGw0kTmun6TjmeMw+DAjZDCZNMkxM9PR+BaYktBRzUxDX3NVKc\nvXh9pWj0YZ0kG0u9Fb0JTE7AOditrhV5lYJiG1jX1ok9ELT8l9JatGGqyD6K\nBSGxMrgnxhXK/ojGrRL6Wg4wc8gGtAs4wa/MWABmQytbVqmxalrl4EQOK+6v\ncH8+nxXbZlzl0rOn1zER1qU8zpoGb9oVWLgu+5IRNmPrsOwOeZvyLhCZNzJ2\nzNGAjfAkK1z421hMiBLkz8GwU19ODsl/dBwZPjMzf37WzFg/upPyMkprXL3q\nWTsyy1HXoUHkaPcCMgwLH5jAizyaMpiBqgSF7BZ36C2rt3OHRF2kw1qQTPHb\nO03LKxXZiq2ut0If434J4CV1D+HMbupaCbqOfLRFGZRj9CBaYm6dauOi/LkD\nSu0R3f3hEbiaJCKRdyT6aGzKQOLQSo2MGIAbTU4zvfQN5cwUP7yRo0D2crYQ\nK/LQ\r\n=snnI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"4ce07d1e7d1e4050a88d0ba7f2d8311618c03e48","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.6","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.0.4","mocha":"^7.0.0","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.7.7","typescript":"^3.7.4","@babel/core":"^7.7.7","@babel/node":"^7.7.7","babel-eslint":"^10.0.3","@babel/register":"^7.7.7","semantic-release":"^16.0.0","@babel/preset-env":"^7.7.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.15.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.7.4"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_20.3.0_1578774586271_0.17484425622585809","host":"s3://npm-registry-packages"}},"20.3.1":{"name":"eslint-plugin-jsdoc","version":"20.3.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@20.3.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"919366d1ab3342f90321975249833db1ff751472","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-20.3.1.tgz","fileCount":97,"integrity":"sha512-JQ25OXvseVm84pX2mcVvKtGwrZDeAxgFUkq11f/pJpbGJMANYcLaMAUuW7U3cGhapWh+Gj04At/enAt26dpOeg==","signatures":[{"sig":"MEYCIQDrbZdnbDIQmniIFAlH5iJZuaAnnlr5e7yiH9Xcvbh7mwIhAMnXzyQiHG4iNjUcC7KKcXIaKWIH6Kq2iI3ZjbWaU/3H","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":743070,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeHv0XCRA9TVsSAnZWagAAKFgQAJ/6ZBXMmIk3f+j/u+Ua\njBKDyceKvyzGnxBwGtH5hH5FKqQCfcQDwHSaA+lLyLGEC5QxcCCXTk2YAM0h\nRRmILRTHXATVjdNfTa++jXK7NIOsOqoZzS5h2lG7R6pFWGfLFo5lsMrq88t7\nUJK0A2kHr/7IfLpmEOH8tJcptG7TbKpkkbsqg0NyDxnkzVesp8KE6Hh0InVF\n8nF+ldLhLD8SexH5drw/sj9sSm0FLGU0WYW0/1uSkKxcLm1MiZkCDu7oRESc\nJRIJzh1V6a83GD1Li3IPsmAdXnQr/rkrYvLVaQUKErQfvEq5sFFlgvDUbPu1\nb6hwnqW/sHGTKxPhqwZfxr38RjRHK+IiJrYN0WztHExnn3IJFu/snmp58tsl\nNJlpXgvyLbZwsXkehpSiYMXnBVrSOl1UnGaeGnrL7XEfNxqxHGOz//t3qx0M\nu7YOt/prbb4jW78GwldecYgZEZIqjFZstxquIQqOM3g+oYJoF1kmQZUVUCYq\no+KaMDRHOumYw3scc8AyWkbJvpysMePAeo1MwX7DgDTwc/ZLlzldLaFjp2dJ\n1KGqZNx33E+sQv7mSj61fEkwXDqXm9UhqfG5zD9v7SaW3FL6066nhppllU54\nQyty3WhS6oMa4TuaUij7kkNtg/kC1ACYFWKVMgleKMSDaCC+5x7TxnfxiAHw\nshwL\r\n=jzFM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"37466a81bf4d77165bd2e40211b3e3c2c9f3c65b","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.6","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.0.7","mocha":"^7.0.0","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.8.0","typescript":"^3.7.4","@babel/core":"^7.8.0","@babel/node":"^7.8.0","babel-eslint":"^10.0.3","@babel/register":"^7.8.0","semantic-release":"^16.0.1","@babel/preset-env":"^7.8.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.15.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.8.0"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_20.3.1_1579089174265_0.9627979910710212","host":"s3://npm-registry-packages"}},"20.4.0":{"name":"eslint-plugin-jsdoc","version":"20.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@20.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ea6725c3d1e68cd1ac0e633d935aa7e932b624c2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-20.4.0.tgz","fileCount":97,"integrity":"sha512-c/fnEpwWLFeQn+A7pb1qLOdyhovpqGCWCeUv1wtzFNL5G+xedl9wHUnXtp3b1sGHolVimi9DxKVTuhK/snXoOw==","signatures":[{"sig":"MEUCIGl0hQhp6Rb6EQnvLXH6JMM9FCQQVtQ6u0ZNeq/nrEo2AiEAkh7UDi+cz4cEtvNwV8VZ6XChx32p8ZPUZjSZA81X/gs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":745318,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeKbKlCRA9TVsSAnZWagAAHdUP/0ZDuudnLCBTuYg5SDD5\ne7HjiXg0IjKYeNi/m7wbsX7h7+VTJLi6Keg6CrAMoxPQiSJ9ZdGYfAaMMx5n\njL/K1SYQoOysuUYSl1v18Yu8mgygmMmL9MTBPPTEkpHiNwk9rB0baar1nxa4\nChaB9IY+xJ3alccTnFDq7oqUVje3o/4Su3WC5aWgMEmSHXPKPiq6t9a0MZws\nLwxfAglOjvWRQRdBtet/01Vf1tUmyNAAhz+1mA6D0ZydcnTCG1B6AGANENS1\nQDSq+lyAzfJ5pCLaX8Zl9qOaUgFtnsKjKs3N/Q/254qLcgPseo2ygP2ZLfhE\nj7Adb9mWz30RXKf/KRyfLhq8kLhGBEMI/NH3LganVLEgL51FAa5yHHkvsMXd\nhfviU6uIAssmAEToDErO+jtZQ3ILVQZ7nfuF/gkjDOEZCsLaqtDg/IqVomB2\n0wD3+7EhtHe86bGiKxOgW0cuNdftzuXL8cNo/jRjqOxswz/gVXbpdIcnWml3\n0JJprkuXuaX5RMJhsmcF0pqJ/9pAtl64USiCeGC0GmTGLmW3Ww7O2D4bPJz3\nniHvMIYokPhPEeGTDNh3DE2HSYVrcXUwn0p5MrFOzwpZeuY3I6Ra+CF1q4DM\np7iT7OYaR5NZu5iRsul6RYX0anmiSNR4A/HropY+qO97AHxSj5I46Y4pCzwO\nqfPF\r\n=+bv7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=6"},"gitHead":"20b6ae08fed91715a81ec5c1affd2222433a1e1d","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.6","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.18.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0","object.entries-ponyfill":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.0.10","mocha":"^7.0.0","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.8.3","typescript":"^3.7.4","@babel/core":"^7.8.3","@babel/node":"^7.8.3","babel-eslint":"^10.0.3","@babel/register":"^7.8.3","semantic-release":"^16.0.2","@babel/preset-env":"^7.8.3","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.16.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.8.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_20.4.0_1579791012728_0.6907420141143239","host":"s3://npm-registry-packages"}},"21.0.0":{"name":"eslint-plugin-jsdoc","version":"21.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@21.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"36bc215c5d22b320312a633dda6dfe81c34393af","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-21.0.0.tgz","fileCount":97,"integrity":"sha512-CdLGe2oyw5YAX9rxq9bVz7H2PK+r8PVwdGuvYGMBstpbVD/66yUAgRFQRsJwAsRKLmReo58Lw1jFdNcxdOc4eg==","signatures":[{"sig":"MEYCIQClKIbEK0Z+/D944FNqn+wzPn4YwwP/C/Kq1NOHZrZPgQIhAO9wXA1Gn8fIwo3ovetieGu2SPZNJOfD+yjFhqMg5mXy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":742651,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeK9+tCRA9TVsSAnZWagAAfiwP/ivwCEYoPhFsYHlxS4BH\n+HmkGy2/u2U+602vSZ6k2+xbMmZRrKMBRu/X+05ymJPZHLEYt5a8FaG2pP/+\nnBsE3UZk1aYexqaTGqbN0hK7E28OIA9PBytPG7fpry6iCFqVpq5fOTEFaxQX\nCPihYmUYZENPhsBYnj5vQRNEIwn4nf9del7j8j43T6kztrlCfnkH/m31Zmuw\nrdAjiAVOrYdf0LvzGvtJPIK41W6hZWvk+l4zUErKp7HYK4TYzmdsZy38HcK0\nouLRAr7ZGhjW8hClqwoiHlIH2kdKGhD3FiK0Fm9TruoRzyZRGVDvmC4/78TY\n4IMayLk4CXJ9F4IKAvkJSk8BZnTc9KO1cKouDfK4GvcSMyABwInUFdUvl6tH\nxn1mFbSbNNE7y0OM+qYIXQaJ9bjGFFX64iXnvQ/uTtTLcO22u4Pelv5qQqz1\ncIYs4SChR4axgm3OdboHemAjssdKMLnDSuS5YMQxYzRRxaRZO8MpuU7aK3uK\nc4fF8H9LSkX3Pe3YAjMBj00twGrBKvOZgdLV66EOOTmGL2XFuYDYpFb1JZCw\nCyAf1bqgrNcW797HHE9aYEB+wnvRgVw40Vp2EuRby7B1F/LjhxmkmSP2QePs\nYPUY7C4RGubyLF7PdZzhMPuwAea77iIaPTMWKDKEnog5pNjpUXOphAQ5maML\nDV1H\r\n=+u4e\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"4403fb0bfdff570e19a03d667afd002a27d8be14","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.6","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.14.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.1","mocha":"^7.0.0","eslint":"6.8.0","gitdown":"^3.1.2","@babel/cli":"^7.8.3","typescript":"^3.7.5","@babel/core":"^7.8.3","@babel/node":"^7.8.3","babel-eslint":"^10.0.3","@babel/register":"^7.8.3","semantic-release":"^16.0.3","@babel/preset-env":"^7.8.3","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^18.1.0","@typescript-eslint/parser":"^2.17.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.8.3"},"peerDependencies":{"eslint":"^5.0.0 || ^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_21.0.0_1579933610639_0.2947769835219203","host":"s3://npm-registry-packages"}},"22.0.0":{"name":"eslint-plugin-jsdoc","version":"22.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@22.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"371f1dbf4f61ee6e11c23fa1ea3275962f1bceaf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-22.0.0.tgz","fileCount":95,"integrity":"sha512-dLqUtIL6tvOoV+9IDdP3FqOnQ/sxklzs4hxZa91kt0TGI2o1fSqIuc6wa71oWtWKEyvaQj7m6CnzQxcBC9CEsg==","signatures":[{"sig":"MEYCIQDzNusfprCQnGGree1EF0VGwJssss3/m3fW6iXjM9B+rAIhAMOcsQ3AT44XHwdUAeYRx0l7L/JKMmCl5Lpn9UawhIB5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":725624,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeXEDeCRA9TVsSAnZWagAAZUAP/0pKCc1ddDSV5GDrd8SU\nO1t3rxeJVaVrtChk6KzwjptepoRBEfzgP9AaSqwEOn7CH3MOOoZYW5VuXFti\n9iNBIi+b8kOKc53YyIShh8Pnx3BbwRaNJdS0jkk1J1ZimU5xlZ7daHpjHDGf\n3KTaHTiyeaR9Ve9OOBNh6bwPrBjvpjrmBmdb6mFu4G8DmF/C1aSKqpUgjSip\n1fGXlM+z2OenCjvEcSgaERFn4uN1RA38/W6U3hT5kkf3y0aRPZWZwmqZrD/Q\n5WJBgvWYKmAeUeoItQFt0aHpZFYAtFNWQU5a58mAsEUn9SoBTCbsFdiW4bUS\n5ShLkkbETN+Fkh/oCW6K2+KJXT/z6gCe3jyLM8169Usz7ckHoFRZEJKKTxyv\nNU3vti/Bo3Su146xhCh+MLFvQcT0/qr21i3UvXdsr2ml/+kBznt4pnZfiVJt\nHxDDNpO5vZiMp78zkTXX2NqEmTfWqYOzPvLyLnrUu6uGw5WQHYriELM72zf4\nWZHULZv6Yj9ZwsdFadm+IyYuW1CuWJKYgQ95hLnUKzzAF2G/h8UOpiGUZFjh\nHMqx2LckgoSBE4urJDNbrLwtoHMv2XjhauQWWVtCHTrMsYCOdLV/pJAPrDld\nS/5hTe6hCpB1T06pip8zyklpYNuNvsv1NL7tczEAJPJqd3GT4EagwzhKSLlQ\nOKQO\r\n=huvr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"3c9d20fc98f286d68489ab456cc1a3325bd9622f","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.7","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.19.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.3","mocha":"^7.1.0","eslint":"6.8.0","gitdown":"^3.1.3","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.8.6","@babel/node":"^7.8.4","babel-eslint":"^10.1.0","@babel/register":"^7.8.6","semantic-release":"^17.0.4","@babel/preset-env":"^7.8.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.3","@typescript-eslint/parser":"^2.21.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.8.3"},"peerDependencies":{"eslint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_22.0.0_1583104221371_0.34956674565027135","host":"s3://npm-registry-packages"}},"22.0.1":{"name":"eslint-plugin-jsdoc","version":"22.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@22.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"1f36c41a8818c968e46def7423e0b627841d72b9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-22.0.1.tgz","fileCount":95,"integrity":"sha512-lqQgGtd+roOhd5lSdIK4P3mlDmTVmVdcehj/r8nY25CGB2yi4Tk6JVwETCPBGnRKd40JkllkchyZmt0tFN+5pw==","signatures":[{"sig":"MEQCIGN1i0kaYmTIAOmEwRQsk9ff9J+GB949GpqPKefhCZkqAiA/a7L0zPHS/8GjRymneszITHZDZ2/JnMNVeGlI5dVUvQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":726030,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeaZaxCRA9TVsSAnZWagAAP2YP/R/i9PbtVTLO93h9PUMp\nUee3VqeOS3xyr6q1ecLqKIEEs3duLkFhEQnRyY1+xk5Zcl9bNkWnZ4DjpTyH\nLaowhBqGf/idMWNj9GhscyNNbIfsMYXm1huASK5vL7kjg4dLLp8DA0NwDABR\nVPl64o7eR6mpJkcEdF2D3P0dd9z7qORgFIkueaD/dXN/AKJaTQBfBY89Aw+g\n3fz/lNswPkq8PbWJOf5YEj8SO7zL8N1Ygc0rWNnw9O/fgPoZQ3WqTeeL+nGe\nWkH1i4IsgtVbTQdId0Q1zjM85QpFTtfxJfPf5GTbDVBwvISMIIDaDqccyGiC\nHbLAdxKwEgt/7Hrx7bqI3JZ7vWR6yAZUuUUp59471zWD5urJn8YQmOtXiV1p\nFzjUkKZ8HnSL0UN53DivO7aR2Qhmmx+mWl9CZ6S9ieQghrB+K8/wkb9dIf1F\nfwl3rmQLTnMbzGYlSBTtmXAYwx9sCmWVElgo0sh6uUIBn/nd4lK6chiZ0fD2\nTppR5M7VOa1RycR8qik1FhW238wnHROyMQoM9fSF7ZbDdIjFU5HrgAIB0Hyy\nee/qvU0EaU0MK+iZPbGP8Bn+h4THvMsXUyn66s/aDXbNJRifeIaby9EF4E2M\nloWEsOdVLX5sk99XnjdyHd5wfy58amjjEF3i5mmq0Vxu+E9UQk1pg0+AsltV\nMBkC\r\n=N1Bd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"7daf9340bd45c866e65975339b9e861b376fc1fc","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.7","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.16.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.3","mocha":"^7.1.0","eslint":"6.8.0","gitdown":"^3.1.3","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.8.6","@babel/node":"^7.8.4","babel-eslint":"^10.1.0","@babel/register":"^7.8.6","semantic-release":"^17.0.4","@babel/preset-env":"^7.8.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.3","@typescript-eslint/parser":"^2.21.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.8.3"},"peerDependencies":{"eslint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_22.0.1_1583978160190_0.027104523701517946","host":"s3://npm-registry-packages"}},"22.1.0":{"name":"eslint-plugin-jsdoc","version":"22.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@22.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"dadfa62653fc0d87f900d810307f5ed07ef6ecd5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-22.1.0.tgz","fileCount":95,"integrity":"sha512-54NdbICM7KrxsGUqQsev9aIMqPXyvyBx2218Qcm0TQ16P9CtBI+YY4hayJR6adrxlq4Ej0JLpgfUXWaQVFqmQg==","signatures":[{"sig":"MEUCIQClwcCvPTxbPnQX2I8PtuIorFf1JTWupzqfd9J6906ObQIgEFrt5eVjuTQ9M2baTeUOxJIh5OQuzSPPX0KarpkYUTg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":727084,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecfTNCRA9TVsSAnZWagAA0uMP/3Ac5rNxqeJiU62Y1Lu8\nM9Y3JaH7vDuwCYl5FlIGIWq1iQ5YiXkKxGcjRYacsgg209n0uyNnaC0Hry4U\n1IiJJNiweNtLE4ZNsYxpdYKylusVctUse61FRY8t9N4rH2ilIBU7P9uY+AUf\ndpqQ43m2iI7HYaSWuYu/Y9i90kOUmLMnLeQMjACNelehX4nNiynFRmShso04\nj57pGnAsBPJFmj562FSrkC2cJ+DQeNDyS5yTDAzZUrhTt9N4nP1fInkMo0cu\nwThJzpyr4Pd445Cus9H5tbTJH17wLZiqttGQycRrgSH43+EfOt+KAfZevMkq\nKWB2IIZb0qN12fW/RTmILTnb77NRmRuWDhQg/ML4RuxQpw5vMCHeh6zFHAe5\n/E6ZBm6TvzXqHNuf9AmzQdawTFVjB/6y26zKcl647Uy5iJedSFucGlFlAgBT\n0FaAe2fLuzWQ/Gp4RIgaK0fBylmAwR2S0iZulcjjlEB2yM3AyVjCRz2HJHTY\n/KH8hL3k7l2Hxly2nOxzETavV4R41D2A88Dh+9qnRINvUzJXRuq03Dsz0WD/\n9z5qVIrCLxShAh04tNdvwHBf6dOCHtywkec1ZqV3tq9kMHee853CH+Xs5f4z\nmzDbBY9sznQHFZDOtbKXNRTr8V5+oS1wbudYXX6n9Tt2n31f3V10LbBlk0PV\nZoXI\r\n=Kob7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"0da0d49c52124b99039f577ce0af2082c72015cc","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.7","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.16.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.3","mocha":"^7.1.0","eslint":"6.8.0","gitdown":"^3.1.3","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.8.6","@babel/node":"^7.8.4","babel-eslint":"^10.1.0","@babel/register":"^7.8.6","semantic-release":"^17.0.4","@babel/preset-env":"^7.8.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.3","@typescript-eslint/parser":"^2.21.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.8.3"},"peerDependencies":{"eslint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_22.1.0_1584526540258_0.6840985447717389","host":"s3://npm-registry-packages"}},"22.2.0":{"name":"eslint-plugin-jsdoc","version":"22.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@22.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b89159e01ed8eeee4f6512101e96cac6a2999461","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-22.2.0.tgz","fileCount":95,"integrity":"sha512-r8yRB6jGay9tJkx1BherKFtOkpDud086VZenUqZiZe0F7cD4OABhte0xcj3/7mXPuJbaou8WF3JzEtTdDnCzhA==","signatures":[{"sig":"MEYCIQCt8HJYLsxKzt6XfK+gPC9WTYezcPjnMp1hAfI2MpFpoAIhAKTC3GfqVqKjbNvD85AhKvVxDw4tHCx9+eEq7uIjLezp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":735746,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJekeiBCRA9TVsSAnZWagAAyeAP/3hsJwHLmaBM9SFDYLR+\nf0HjYKwya3/d10hUGHvmx+pOb7d2AfmZJx3SXBSl0qzJNYToPK0yAlORQkXQ\n1qS/fEtIix3wlItEV+DnH6tKjEU6fLvkPBL9KIxw2zX6b1JmBQYmApV5Yoxf\nR+YMWOqIqvBR1N1fHLULxU39xy6lMxmjqTTUfJPspRURHEx54PQfVjnVT2/D\nOslsyJ2d+tbORO3K8LxIlzFfE55LdXKa0OzK7Ek2Ia150g5tSStA1vMcIF/k\nb5VaJUD6MuJNiaYXYTTM+1UYkM9FKouquivnfUupBPUPTpxJqAQMxVsHSsXm\nuCiJr/ewqP3dLQgX/tnz04uQ0YOnFDQQ8nCn3cYPteiKb0R+/uaxXTdqrQfI\n+mU0hh/RWRfXod2XghseonGxnzGf1VgziAtNEbRtB1Udzn9rlUQBVbficGqi\nVE+8toO8fPp6ASwKm/2ItRCYxAQMoNQnjKIFPmmIie4sHs6mdVxVhiVKl/k3\nEDsjg2wQt0xgP4A77AuaLYetURV8UZr1pVfKEzDVw7B6IggSeG1EJD/HOnYk\nghkjaKKFfs2lAoz1gAW+ZxUMZxow4jn0caFNsrTPVRXvVYlIv1JodBkOcyzw\nSc0I3uh3TzP54J8eRXXr9eJyvQsX5TyBFJArlP/PctsS73HJ4gJKR9bXSpuO\nMlTT\r\n=MXEt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"3aaba73ee6e7ff8145f4470a69d42be779148753","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.7","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.20.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.3","mocha":"^7.1.1","eslint":"6.8.0","gitdown":"^3.1.3","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.0","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.4","@babel/preset-env":"^7.9.0","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.3","@typescript-eslint/parser":"^2.24.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_22.2.0_1586620544793_0.377291211394837","host":"s3://npm-registry-packages"}},"23.0.0":{"name":"eslint-plugin-jsdoc","version":"23.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@23.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f80dca482fc9d93a9e30b3ead70b88dee261caa3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-23.0.0.tgz","fileCount":95,"integrity":"sha512-zj5ZephjKkFU/J9hEw3RcjwpuywChvwNMgHs2DTgOuKarpJ65SJU3JGgx/K4y9l8iFw0ysrk6NlAKDX88ZwZdw==","signatures":[{"sig":"MEQCIHahoGLIHz15jpXy0uQgMnNjDIWKw3D4d5pZSuPU/W00AiANf7kbpi9RUDpGnB385hPF1Ggmv3jRvzxeBiNaB3nkIg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":736215,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJekfJ+CRA9TVsSAnZWagAAd7UQAKN+9GY3c4wUpFsFiZKi\naktNROYhkFIoP3D5aKQAMmvSnTmyMhXmPqaiGRX02ZRrlOh4q0hjO5S47T2L\nuseA0VRK4IE8qk4Wb80W+jotFULoA1LHQ6H4A0hbp1lVUIKueKKWm/7ATu02\nI3c/+pwuxb4Dt78ROb2qMQtwZbm0VVM/pzAXOiXTE1CFiceMgoW+E/iJgo+d\n/1yLCIyzLgM0ixAjeY7sGKQoplHGGZZTL0rhdG69FJCzos/FJnGLbQqWoVcY\nt5EuEN+ngoxwqcTB530cgGZBmu90H+VZJhwzmhvYUj9GuKimmax2hc9XaNsj\nXn/9An/p/0GhAix9bi5q8kJR3R6yGZDESSKSeYxuQt9gUKHYMrzxocKwmE/N\nb2Zvs33drgmMXhzm5IOe4gUbDznNAaVJGcICcHhN896Qz1hEaQV2AkQU/PNp\nFdBcwx+9I7Xoe3B208YPjLSYZJQAt5w6Kl6n4S4BuUSvBXFDAAKBiI0+BjP+\nABtQDNDSKrcypJnewc3QkL+Y8lw7fopaLWWROKqjXaLVFQ3lIW2c8GXDd0Vq\nXdiLI6D6bP+oML70cvzZ5YPXTJryNtuoKP6FZGTWxR05BwCCC48h8muKup9Y\nT9fBXJXx3CMTqEQpiNnFWXt7AZhvmkq1XVhPWi1Ez51F0s4EwZza0K72GWqi\n9QLl\r\n=LoTZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"a4023308851719285383fa36ea7c40b66db4c8c9","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.7","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.16.2","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.3","mocha":"^7.1.1","eslint":"6.8.0","gitdown":"^3.1.3","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.0","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.4","@babel/preset-env":"^7.9.0","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.3","@typescript-eslint/parser":"^2.24.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_23.0.0_1586623102249_0.2281319176732557","host":"s3://npm-registry-packages"}},"23.0.1":{"name":"eslint-plugin-jsdoc","version":"23.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@23.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"be0288213158eb70d567ccd6bc209fab3600f55e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-23.0.1.tgz","fileCount":95,"integrity":"sha512-/iAeunAuqo32UUPvbfwP3P2QOhmeWEpkRrKi5t+sVImfGEji1qKRlPIuGyPtW0qGvWiAsyhpgHOr997yVcLxRw==","signatures":[{"sig":"MEYCIQDxqRlHSDvXzdXO/D9RfKDWsXZFaXJzkDymaSWs4o7NGAIhAIpxdigCWgQMy/9ETnLikQt/Gkl+tdPmiPp2eCRhmWjI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":737429,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJem7JsCRA9TVsSAnZWagAAeGkP/RcjrApa5xHz9ykLho/V\nzc27zmAuCDC6+2pVtIJ8yIPvskb4QtRcYhrSBCaAS5BajfErzmblSdYVW+Wk\nRTj3pBvr8teSEt3qqBgUNJis+ME31EltCb6Xj/lKFBK5ieGl3hb7x4y+4hWS\nCFuqGtCoQjQ6MQGCAjujD09m/oKuBObzuh2OKIlmwpK+bhkfoFSLaLjWVXwW\n2H4aeHa0W70rzL/oZqylBYWVcMTLwqnoaRuHU0ltdxPzZGc7jGeCMRWSJHAU\nBBUm4/4jMU9xiOi9jm8RUNMX5SP/y65V/z2Ad06/ETWgA//MF8Z7S4571bRS\nh4dSm1T8HzJY9mpjJru9SjidWK+c85BpWOSUD9/SedeeeisO7t5tq1Lv83Eg\ncpifhWeT2zLZ4dW2/DQKE3lCAft9no7jfYcBKZlnQlj2ebUu2Gqk9p/JsK07\nHqQo5MhZ77k0klWGmrgv+UIzKT0J2ZJ0xcjhU3GAwXVecZYD/fqwHKb1LO3L\npwMSrfJZ61vdWcnYGMiXqLuuLBHHuvJyz2f89sgLIY8xETjNXL1KtwqNI57O\nZwTxGwmBa0RRGpxg8sngRGCiht+sjESAmy4aHaYZVccRgFUigL0hyRds+I3l\ndBqYeo5DoQD740Eqky8f6T/J0Ubp9v+M79E4Oc1wK1cqwjhorLLkuVE1GRwq\n2CYY\r\n=gRjj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"7f34ca4b91806a6426a8faf2f280e3405af328c1","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.13.7","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.16.2","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.3","mocha":"^7.1.1","eslint":"6.8.0","gitdown":"^3.1.3","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.0","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.4","@babel/preset-env":"^7.9.0","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.3","@typescript-eslint/parser":"^2.24.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_23.0.1_1587262059870_0.8276400022633139","host":"s3://npm-registry-packages"}},"23.1.0":{"name":"eslint-plugin-jsdoc","version":"23.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@23.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"81843b60b6bc1761de9f98ebe14bfd0eff44b6dd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-23.1.0.tgz","fileCount":95,"integrity":"sha512-5cIL9M6/mCEQiEpJpvvjwpLPIMTpSKGjXr3i/gHEaJAUJLBkTZbQ/vTi0/Dzv6LKBoRCAzigWr91a3vor4gwLg==","signatures":[{"sig":"MEUCIC9zGYKKoGQnsEA8UjIb7Lo5NSUJOBXt1uXS8xMtgBmBAiEAtfGrGJk6TT3ymNDUCTTk3L9T4pXxtV7R6B2IycAuiVw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":743334,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJenTKkCRA9TVsSAnZWagAA2SMP/j80A30wm22/XPjQZ1J1\nsTaw3YoMLZQCBGEhZE36f62hAX5vsskvPwX1r1d3A26mPC6L0mYeEFAlCcyt\nJSBzbgytmG5trDK4i8N0Co5DMPhi118qp2lOoD2BTB0wZAKw4VN4Ldr772q5\nHhpA8tuw1DLEKyEv92tXto8lim4l/3rPN5cSVV8OjctfPN2zel6LyI0sEa9m\nmxhUmitcxtb10jHCe1TGM7E/YWBO4nLobOsewN0Z9oYy34rh6jF7qqLLlDQL\noetfaod0b85vIBdOuMcUlbpb75EcJF8rHzI8egwxpYJOOqUaAytZHIz5MMGQ\n6lDP/uDLulzpsxE4sagosGXmUwfY1M6tXKS56q0DSPcGjtniFw2wfhyJuPv9\nKBQw57Ab2IXNbKFoYLeZxieeWsFXtYMBq/52OBUH+gJ3dSRitl/cxKsXOtHB\nqQn65GUssbWjxCJhV4rgC14rGynefZCeS8IZph0AZCh21Tdxn/n+kd+drH06\nthgyyCefHMJ+FLAxVjiQJnxDGPz/t8UJEmI3CJkO3vivu7ZLENmhvm2o8ZOA\nGPuMQOCJScU9NXgZD0VKukDny9VVJqM7gvb9u8hRTlJQik4rUWtw7d5cr1Vh\nyqKz4+s6tzKUCtXu6nHS5pYrU6bwnzKj26s1DtzeECNGYlaIzpYYmQ+yPCbd\nd/Pa\r\n=EFrS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"6d0511ba967635e4c5e9b4973a69ce1274b629f6","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.16.2","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.1","eslint":"6.8.0","gitdown":"^3.1.3","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.0","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.6","@babel/preset-env":"^7.9.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.4","@typescript-eslint/parser":"^2.28.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_23.1.0_1587360419171_0.6505019337313518","host":"s3://npm-registry-packages"}},"24.0.0":{"name":"eslint-plugin-jsdoc","version":"24.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@24.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"41c7b06d33741e41e80a8f08c82aaa58ceef2e4b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-24.0.0.tgz","fileCount":95,"integrity":"sha512-AGAc9PYpramsJGVmqtxnXBYlq+AMh+hIZdbJ52OLvyJS3f+PaT/PzuckRFOLnth2uhCDv4IjgsB3r5jUFWqUnw==","signatures":[{"sig":"MEUCIQCFSj0bliVOARMvgDXePy6tMRGR0+00jymWtH0GBoD7JAIgMwaNZXUSeBHFSSmr4zeXlnQg6T5xdhd5lvKbxP+rIPw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":756857,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJenWFkCRA9TVsSAnZWagAAEMwQAIfAXxa7JvTbQglKTAJq\nVmOtLDy/y7RCnJc65FN5ylcL3v77CC3ujvTfDz5ddFeWoK6w1y4bzOCLk4FU\nmkG2Ukk7/9PjM3MPY6+tyR7xPIIjmHh424AeA3ftPGJQ895tMVkLBzEz3JB3\n0mcbCFqzQaD/3rB0JazCal5JsVOJMPh1ulEL4axO/fBWe/8zzxvLaCa3Ho69\nt7X6SUU7YSBj0H6Hub3scqs6CMCk3507inReIozfrVvDmeFLGspyx6orQMml\nP63M2xl8t83PUOvynIkfe81ulCxTa2IIIJAmJyqqW55qcJqUgfNSqkHu7L/F\nwrriJhtwbeB8kdkyRZgSViTkcLKQiq5Ph/nTfFNjPnJODPzh6ZX9CJdjUvEO\np98GvhO+h0AEYOzA12rH3/l2Ljd87zu2Ce8Y0nmR9OPciENeDhZPgG4Vh2KC\nk6jLLZ2xW3vVPr/BAiXEoZZRD2dvoCLsVvJSuqWOdfxw+2SVCrJOEbGWfBuD\nhdQEnfBnuss21ujCbOkkKfnbRiaqs3YoBrnw08hfCPvWGOewbUtGGm44+/ue\nIB+qHeq7tjZf+NO2E6IHyrH329K27baaKsuobmkuBRof1Wmv/VJhg9ZcM7yW\ns09KTHqf6iwDPSSK8JhFl+eYddeer+lSrJAkmje8fQfoj3Vj+RhQ+tvZu8kM\nuYTy\r\n=Gm8A\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"e5236a23a50aeebcb8902bd30c4315ce22519bcc","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.16.2","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.1","eslint":"6.8.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.0","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.6","@babel/preset-env":"^7.9.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.4","@typescript-eslint/parser":"^2.28.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_24.0.0_1587372387662_0.5447310801817435","host":"s3://npm-registry-packages"}},"24.0.1":{"name":"eslint-plugin-jsdoc","version":"24.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@24.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"1a5e61f48bbe7cbb6a0de2b9b82288ec1abfc3b2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-24.0.1.tgz","fileCount":95,"integrity":"sha512-lVTBsiufOO55Vo924WLa6UyxzQRB5qDifaCBafPzzO6NsTv44Y79Y9a6fkLiYeLg/77yiKAMJoyeYR7xddxgEw==","signatures":[{"sig":"MEQCIEO+f5SE/C+7jbKTjPccCB9bzgvuo3On0HHnPEJrbpgpAiAa8181V/t4c+J5rOUkJ7q5e1Wdw4mp89cmRa8D/LgXdQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":758143,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJerhOICRA9TVsSAnZWagAAESsQAKQ144UZNtz7MXNPh9wS\n9O904hyOo/Idw2pTxuv+lwMXK7R+NGry0olZvtn8iDkdNUs47AqYvFbEnfPD\ng8piEcXuq09TSHJwBMGiARtQWSeS681crl4GfqxLJJPfR8mBNpuiOZv+ikqV\nNEA+GC/GWqgXPFtqJpRaxyFCal9ODn4Sr/+4TgQZDsQ2lMk3JPFrVnbcKyg/\n3HLMitvLM1h8tZX1rTg1KPd8Vepz4eDPGnkGxs3B9UL3Kj+HWM8w3ZSTwoJF\nRHFq7ZJ22x48tT93GWjYRasLBzOEW7KjSKvMAM0oI5dqEDSv9Zc4ia3FEPow\nn+f/o6tJkLFuNmPmnWfBjd5qpuDvgisaINpXGBCMdK5kCEmAbHW/LeoRzCnl\nw6RASeEQK/3Ef52o8n0XqFz0LVSP9n8tpFDG5enjs349RGUU4qpC1hGekSRy\ntcrxZVfhWe+wqlM0mXNuoIaY6LYqjNFDqTYKJADTJJ6jVNdcpn086y3sl559\nuxVneDNIWg7WjXIXOjMUuNfOOOP1UGYZNzkNbKQi1uCQ2i6tF0PHIAkYVhZl\njWHT8gjxQqmQE4feQ0UyeFdhpNNPKWSdvMR80Kyfwtvq5oXzZB4tdXobFYkk\nKRpatMzSnn+IPEDliwsZbOnHMx6otcLTu3MQlFt14Qzn59qAWzjAc+PpFwSh\nlqWW\r\n=Fl7E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"c1b5b46781f2356405c601c835c636e7cfc33ee7","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.1.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.1","eslint":"6.8.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.0","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.6","@babel/preset-env":"^7.9.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.4","@typescript-eslint/parser":"^2.28.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_24.0.1_1588466567698_0.6567178354420717","host":"s3://npm-registry-packages"}},"24.0.2":{"name":"eslint-plugin-jsdoc","version":"24.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@24.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c679c7afac42cf872ffb1a6a246b5518b7b8eed4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-24.0.2.tgz","fileCount":95,"integrity":"sha512-tvk/jPpIP6MBVZETYnurKL/VGKzSinSbhpz1x+CzDOX20bmhRnCiexrgre4xF0WD/feg7ARKTVLCygVB3pfG5Q==","signatures":[{"sig":"MEQCIH3ZYsFPvH2syHEmBVM/BTxnQmtx11tLuiwMlfo1g7YMAiBjtNU5IU3db7kZpprirM2y3CrBnUc3He12RjbeCLXExQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":758555,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJerrHvCRA9TVsSAnZWagAAD0EP/37/8Xc43mGLh01Q1Fjw\nEFVCk8vINPtyYEpTGao2+mr4JMyOhCrR47cesOdtqRdkorjB5L5reKGsL9jA\nw9Z3yAxatGpDZNVLF5dWB8GtHO9KfuwDGC6S8X1CRCFeCI10GdaT/skPq9oI\nSoU1di91dvODZQTmg/ZgChBAMONYnjhRYeg3E9wP/CFDhIRmT2HDvdgRT/h2\npUz2So0ppnQ4jBa01HECeFAzjBGKF7vZm4s8Mhu8KFTBmWFla+3UrPKRqnTJ\nmBJfZJDCPZ+AIgEoNrlosXRXMDXlo9TaF5UZYUGBkNKGwpqoBXfSRU2Kx7PX\nDMwE+zv0LdmJ/wR6VeYgTN9cTbDb2LJTmib11BA+KmYGwKElZUb+Y3+sJBw3\na8LK248/z9kGAAYrLT5i/RSOlcArADhlqmGyE3MHlH+YknfD5tOnh/7gI3Ol\nKNcH0l9tBu9lePiQtZRI8BMuU7CIcQjw5MA1x8TVSgdyinog+AvA2LujnjJv\nLwE7US7aXDV2pVrWeu5ce1W8f9x71ba1YaHxwx8Ume4cvtghrTf8zENEhS18\nSuqWo1wntkCMKa1Ztgy80fi/ROV5X87gMi2SYozSeA1VNJ41M/iPtQ3odFlf\nOFMLpyiAPDdWapYpAiyZNvg5TzVtddGSkxJb7uwGDOTrSSx0StWSLk8gbvvR\noH5N\r\n=1TeA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"83a37a7ced2724248efd04ab36677d513ec369db","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.1.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.1","eslint":"6.8.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.0","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.6","@babel/preset-env":"^7.9.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.4","@typescript-eslint/parser":"^2.28.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_24.0.2_1588507119122_0.7464123498935962","host":"s3://npm-registry-packages"}},"24.0.3":{"name":"eslint-plugin-jsdoc","version":"24.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@24.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a2a73748a25886c64531f4dddd62ee25517aa982","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-24.0.3.tgz","fileCount":95,"integrity":"sha512-pn7S9Ax/bj4ZJo32ZfSjQel5ORSvCONgsCi+Sv0NKaTFLQrfdkDs9ukduzpjq4nadHh6ZPtmGp+z4s/lLEm87Q==","signatures":[{"sig":"MEUCIBtm4jDVfPEctjQFlwWmVTJAjaBWs6VWwel/N6ZUZC6sAiEAiMVcqISUudC/54eK5eg4YYscCFI6sFtB6CMtvcMHhFw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":758872,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeshu9CRA9TVsSAnZWagAAVDQP/An5C9T5GCrjsc84KtHm\nQ+gwdZCkEufMLlFzFwNDy7seDLJfb10DzhpLCMNulTR8gNroB3RVBx41L84O\nG8CYdl4hOLo7VrTJtCztwFEhjbMvBON1dc8XG5YLoWqlk5l0tWAixoD5v+sY\nfc1sVMrmaUeIXP6gh4Ky+0vUkir7aIJPl9INYDiQPlMjrFzrxrrNHelNdOdE\nvy7xcfH98hEYFVuJKMZyYlY57xBy8344BA6QpQNJV7rToqBHFqU+6PQ10Vxd\n6IyVLcojUiG/3ogGXqaksBGtTjL7p2fku5ugf04fLBTanZ0eqPUgDO50ENkA\nyP0Lyrv+hgpRglRRe97VjScMl/B0ZYbbckLzQFsfwmnfipPu4yjowrU4CWIa\nlwi9AS+96JozrIyVHbuw6Bg1yYD22OadZ9LLjulPVSIbUlqLYGXHAM4QLjz9\n8MTKSvwg3PA4IuXnTRenKnLjONOeph/rSTr+EfcOGqfuy50K/R+NhFPWYa4j\nBqGWSseIFB5LMWLL8+AXAHcbRiGOs30WETTJ+2vnCAAa7GeKaZIiwr3EKkEt\nop2puAx+p8A3AZ+IQrssyQQ4JvWE90ZAu6C7FiZQrc94AxjVGMqT2Ic0rLts\nwC4rHe6sfmF+pd1c3SjydWf42MqHurs97JIRIFl4N0RbgtEAOpyQz8aaJQvL\nwotP\r\n=1+Be\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"757d97af4b656bb8c3412b8457b86f4d6fc4a755","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.2.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.2","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.1","eslint":"6.8.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.0","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.6","@babel/preset-env":"^7.9.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.4","@typescript-eslint/parser":"^2.28.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_24.0.3_1588730812418_0.9003347425188106","host":"s3://npm-registry-packages"}},"24.0.4":{"name":"eslint-plugin-jsdoc","version":"24.0.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@24.0.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"84c67cae5f4c8126503224a293fcbad791bc26d2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-24.0.4.tgz","fileCount":95,"integrity":"sha512-FKjE8bHZkxKVq+SLUtNbLrJoy5epzS+p7Vh8i6tFzLm65htr+UgX/IR0ozaQ9tKoTfhIg04x3Ja5+4At9AZACw==","signatures":[{"sig":"MEQCIBTGNZ6SuNDPEIIGZMtvP9bKzujKIlgx24j7QCabIxklAiB/QxpcCwTNWp8x/95GXhljLfW20eGO/Vd716ASDDtxMQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":759654,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJesnafCRA9TVsSAnZWagAArOgP/AxxkpS2KaIzKAJZoGrF\nkxMlgdJ8+WVNGA4aCzn22Zo9i01CGHTCDOzT/HmDqhQ8dTt8UfCArtvV0cjb\nVqjxjNO4Ldr4Z05S2UUoJqZKShxD3vn9IFj8Gkgp+JxmufrxIEG6TL2EGQ8u\nXZV/5JYHDEmm/HfkjlS/8q042eBig4Rgs2KHBfHGgffruGp0wRph/iUAVfCs\nkA5DmCTRi4U0dBokYm/FjBsukJ4bhx8wpP2fa/cAYRf1PGi1I+2cG89fMCwD\n2sVx3MkqHbLSeNomGCDIGhnyj38m22mHO4DF9vYWY4qA13rPiUiZ1NvR4+rQ\neIENkCHjrc3NJFHYL8+xkjVDivEfZFcp0bi3Lpo2BxtKepV2p/T/s8qrNMI7\npM8axq4b8pRgMj3RD7/ijjtgp5BM/Q15o83lW/bFlaD6swLlFL4xrgg0l/fh\nQr6GL7iJ4zVX1Ds43Wa61iN/4xsDqQjKrKfLSHl6UKYI2pbVbuWm0j/CTPFn\nw3vlgvcv/scnn73tUOPzzfvJ8xLIaYOkkllTw5NWgO4vhaWPMarO/Y1Vw+xr\nBw8lByRgUTH7eT3AEauEX9lJn2IfdbvUNM7pDCpU5ZMPFnf9H+6V/nn0QnOS\ndieCruFHzAI1sP7AGN5PLEpNr5+GaQXGc6PjT2fd+EXxqMhdSLsbLGINMeS/\n5Prn\r\n=9msf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"fdf129bbb4c4badd5cad0d98f157c0bf46e8da34","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.2.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"6.8.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.4","@typescript-eslint/parser":"^2.31.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_24.0.4_1588754078522_0.9658040528153817","host":"s3://npm-registry-packages"}},"24.0.5":{"name":"eslint-plugin-jsdoc","version":"24.0.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@24.0.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"13fffd3e1fffecdb3c5b10e83fce5ed0cef59f98","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-24.0.5.tgz","fileCount":95,"integrity":"sha512-H//NC6Wsxt9J1RbV64nvD38mlT1NbGIpHclet5m//Belz5uLlqcE126E1Thnu87fVQSF8gElgQWUjGGtQSNyfQ==","signatures":[{"sig":"MEQCIDpnwAh44KRG3TzAcPR4f5pTveI735AIOgeypxpxIYClAiBecjesCCVbVvrYhwCMbkgytmw9Y3u5FxBvGWn5515e4A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":759746,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJesracCRA9TVsSAnZWagAA+kAP/RDZ+dfXf7P5KYua0hE6\nyc6W5aaLRHfodBOqv2uoGwVXwBI5wL8DORyIkJBQza0WVhSwX3Cn5TzpwbiT\nFW+gtmFLXTvAeA41OcQ7UBZH7UWGxxWMHNyLDNSYWDuYgCqGue0IiCHDB+Pr\nPniWpq35cO7ryFW105FhmQGSzVgJjAa7L6JIo3I7Dbd7SmYSCs+d+kgopVxH\nBXUDFvN1SP9O4Hkdzop2Yc1Lx18NWds/td70zxQCsoU4ytgdFYEp3s4m1yRI\nbEnrxdM2YRx/+xWzGtXZ122uB9kpOtI4Nf38sU5eqhKfRS2tr5DAE9WmtpCi\nqhOs0zBap/lKN5aZCOnxsQ1fR0WRror85jFpJ73T1os6HCgCncoZCGzjDQMT\nhG61hgzsPvYjeH4S/cPpHgScrqgh1+2G4u0zyGz7gmwAedWtpi7CVKqvW5Ob\nF4D5z0QvmPfF6ZrV1WaV+RsZm9z1V+ykvN8B2wCCOAttG2ZQeQGJv3YsDZXH\nJWmsvwY9/xmAg+UPO2AI9k3pqnEzPkCcASyX87MpVV1Xy0WLTN6NCDKpiPED\nj28Jx8QMA6VcNzNonFinU1IfKGAJNQfGpAZUMm6/96WFFtVaDgyE3q0qqw5S\nloiOBfQofom9QHOYKRj3rZlFv/oUQNtY8nfBzrLR2D30E7jkZdP0aNN8VTRS\ni06/\r\n=HmJW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"be8d9a3d2e2a3067e7b22cb8db1737ad7571583d","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.20.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"6.8.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.4","@typescript-eslint/parser":"^2.31.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_24.0.5_1588770458672_0.3468098938206883","host":"s3://npm-registry-packages"}},"24.0.6":{"name":"eslint-plugin-jsdoc","version":"24.0.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@24.0.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"360f75b7b79a64eb6f072de9f37322588578abf0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-24.0.6.tgz","fileCount":95,"integrity":"sha512-WDzUgShMK7Zg9N6s19LxUqy71At/PxCuMEXaKyBzybhABq6iU4DaZtWZ+4fkCMBvMzMwMAPa2oRD/+fQGORMhg==","signatures":[{"sig":"MEYCIQDmYdVi1K2eXgRMxL1rjOkCiWu5mNW1v0By+2dqRG53rgIhAJJ8Lwu1CsNeek+ROA0jK1LBZbX8BpNuUOE9RfbM+aq7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":760063,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJestITCRA9TVsSAnZWagAARfUP/j3UXAN0RkL/M2n0UUJP\nL5yqQT5qscRJEHtNLSmvmyt6Y9zbec9Net/Rz5RjzaeawfUMiaWdqOPKC2cb\nFck2iUGZnRx8Rp4g8aZ8GTmAhwY66/VA+tXkM5HC9O5gfRANVXThg1T7E9hW\nWs/Aa7c+MGJXeSZGRuvCqXZfCwc0V2miuIkRr/1u46V5ZtyqtPjBRU8NhFtr\nn5WK+OQYDiCWYcvxA76wLI3wjNQW/JfbQIJL5+XKWfOcqnQbOi8KRUKb9lyY\nHllCaijz8nsiD2N9scfmy0zhi7KXZGtS0YtY/7dW5oy6y7ZiwvHlLjVexUFk\n0JKRLbKDQqs8B5q1dcE4VjAatSqQJZvgY+YHjvZLDAwLp0eixyaz/Iujhosq\n5J0Pb+x6/O96ZQ/lu60oG1M4dfw/c0Nrf9u9AGZTKl/yk2I7nxCedmWK8HxN\ntFtz+4mLrXXFDa0Jp6CcwZ/piQSSp2zR2bETrrmq32BhC5ajoVkcSfcc1xBo\ndKCT4bVsb1zvyENMn7SPEUxowEHJwqCFzhc2vXdPzVD7UWBpCYEip18fWWEx\n+dQwFkqEXSVL3hPTdDNlEgEC+Ar/rs8Tz5Cw9yFbCmwl1QaY5tsgSSuVyRVj\nOgIYO0srkFW6l7sg4udt3LK7gBFLS74vvVsGev2D1jXCleXNJfDV4XMF3gYq\n0/1B\r\n=10WG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"e7720eca2eae6498080a3de1638c5319078e70b4","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.2.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"6.8.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.4","@typescript-eslint/parser":"^2.31.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_24.0.6_1588777490186_0.34238559521175094","host":"s3://npm-registry-packages"}},"25.0.0":{"name":"eslint-plugin-jsdoc","version":"25.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@25.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a59a1c8d718616603c6fa4efdbede03de9e268a8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-25.0.0.tgz","fileCount":95,"integrity":"sha512-VWdWD6IRDUIVKXybDDKDhSMGH/gUSEbcjrOcCkhp2Dz/AiTGqaOu4DLtCKMd3aMXTSdjFoaCtW2ATcrunac+Yw==","signatures":[{"sig":"MEYCIQDwMR45IuRhRPbvXak+klzGjYK6jYRpxY2jIwUbwozDEAIhAPQ2OeQhw+zSg7b3JDU2xVtq+MJljPS45L38m4mvNVTM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":820477,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeth3sCRA9TVsSAnZWagAAFlQP/3BiwdJnDNadSxY0cM7p\nUy5xz8htNd2y5yLi13uUvHeme5Bfhp5iqlVtud7SHZwVrqoLzZis+LjNzTpW\nhGHLfN8hTpRaGjEaKSJzFeyogYVV/qZghHfuDzLiPRfLE0kZvg++xSpksC4q\nM4SgABURs5YwutFuNn0IrSCr1S6mB3vDliev7e3u207cfnkQcnHocTDhPJkj\n6eMVmxzSJ38eMn6pmNIrnnHTO+Lh5Qe8iokYEenipZBHA5hQNZ/ayBiUqwYV\nf3CkCcF7lNNBsJhiv2wXnDUgU8XuChhWK9rQn7SyO0ilE60pXp3LWEgTswX7\nFd6V9IJYIC5eV6q1u41l5YFshf3lGU5IDzdrAlsFpP78Iw7UOEmde5RDJys3\n8wJOYGs8vQL7oXCS602zNDExtVYW7v3h4quhqDAfcYLhMYxYUqRqPBfkwwsQ\nufl1sEsu7s/hyLYHxYoW570Ce01g+vg+403AmXh9+Edv8XwBg6imkYQEj9ur\nCeoyptT90WpTERlqdMPYyB53XC9aHYHSG6begjbEzjEBdYHsfKXxIfRoVOZR\n+SQACc1jfy/9TlmzN2MfiFPPMzbRKtUSvGxZvUFDZoiVHWJe8g96VQ8q/OK3\n2fK+gnTjOpK92UXuZiaLER8Iuq6qi/hvKw0M0/LvnN5fg67h+obRcusbxoEC\n4qPh\r\n=caHf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"30835cd1760928d50e52da43285511dd60251039","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.16.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.4","@typescript-eslint/parser":"^2.31.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_25.0.0_1588993516103_0.5838166354209808","host":"s3://npm-registry-packages"}},"25.0.1":{"name":"eslint-plugin-jsdoc","version":"25.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@25.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"fa9079aaccde9483aa7149844bdcad4f281f1be4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-25.0.1.tgz","fileCount":95,"integrity":"sha512-lLazG3UDlAVZwXs8C+E8OnavzLxXpjx0UtlzhKcXZ5gnzGdxQ9hL3Tab98gJuh2QNZJPBk2jH/BZG2KXjSEkIw==","signatures":[{"sig":"MEYCIQC12/VsQKdqPI56/S3kFXPD1mQ37ikB/iRwSfRxEER2wQIhAOtPm+OHxjjEHh6BtoCKxzHzeb91TZNstbkVR98ECfqz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":821141,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJetlWGCRA9TVsSAnZWagAA7PMQAJnlrfzyTLshSIJUtwfN\n+OUXWUjNbI5a4RbWvbMQXQsZ3GECxnEHVQYWFbZWhQXY4eNucqKYzDEBKKED\nX6CFXFhEsRquZC2T6QX+pd0OSIvgTNgPIddiJkgnM/7PTBqBnrpbktrIR5Gs\nAuRQzk5UEgj1WJfJ01xKB5IkkV85rJVHKBE8BltprZ09iTjcW+Vsia9mtyEA\ndvhqn+3pIuF/kT6WgyEX1t5R3UzElW8Y74wMVfbzBurnyDO8K8Xv7KzIHuq/\n+7cUNa31ojsT0wMyePcG4qc4oUqyXkjn7tw2feLzZAsx463P5UhX3wMrSjou\nT+eRrcUexMPl8GaRWvad3rEEuIcbWK3rlS6GtCHCPCfc6G6JSRx9i0+h9R3v\nHSGv3f4SsCCV+NhAOPtCH0x+PpHjJ04w25inwCO4VxpM5GXJDK97S5u5Kk5a\nxBgbziliICOupY960ZeMsKkp1TsTeCa43VoqkW22VKU5fD8+Cc3js5OMiDEc\neztDh1Ozvzpht48MVwwSBctzD/WV7dK3BREFXFEmin4WdPi4QyTV6oQ9gHwb\nMVTxLzRaqGof108gEm5p/3cmKdJkSuv5xJropCKDLAqoL33lHoLSsl+pSnr7\nRzCEaQwaSRI20LZcH43k2T6/JB+A/qHHEMnsbVy3dSq73u2mTyKmHaYTplpg\nm8vB\r\n=gcn7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"3f76c7c9432928468a9764884cfddb5ecea86f4d","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.16.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.4","@typescript-eslint/parser":"^2.31.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_25.0.1_1589007749900_0.42725032950915076","host":"s3://npm-registry-packages"}},"25.1.0":{"name":"eslint-plugin-jsdoc","version":"25.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@25.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b5e42a7ce436973450d5ce72b25fb12013b69aa0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-25.1.0.tgz","fileCount":95,"integrity":"sha512-X/3SZfcGMZ1/7Bx3Eg9DFYEZhbk+K7ndQ2Vy0bBLN5KL9+ksHu9wyrM8+2TvMWhXFezjtsfvqGVsjkgsa8yt/g==","signatures":[{"sig":"MEUCIQC2TVXw7lneTD+n2af6fs0jLZc5lAAdPxu1NLqi4uyMEAIgDXTOhOQnrEHESGGCW3ehnuDZOVlF37aj4cDhPA/qORM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":824249,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeuOdtCRA9TVsSAnZWagAAVx8P/iAUiC4NB+ZGkmoJ/YJq\na7oP1JnfMco3i4FzoqoCVeWkNUkbO7UUuusi+MWx39WGNf3ORAUXfnyGUmrl\njT9wj7FbVVztO5gemQfNzAzfaSB2h6DMOsPKrpaNYFufbinByngXeGd89ONM\n8Ut8U1zRdzZnFS0Cs9IzZNT8ngL7DCOfW4WwRHE8Gc9ZRSrXkG3kvQ9nCeG0\nGeFQStCD6D0NukHyZ4wSP0eVjic/xWjp33QVn2oGby9G7Y14vsSFSXSNsUl+\n/WVoEhbqeoUlh4MEr5MJxk8wTpKif/AjqWub+5CsusoW4gXXoiHQAdQ8PgbU\nGn+H8sGnlofxZin2S3GKPn1F/5wyvgfBYFJ1jbf1UnfjjTD0xKTfwPddpBiJ\nwF7+cy+GeP+QJ+aeqwfxiAjHdMuO/+n9Kx10tLZm0dymW8gwSbeSs9cuMAcV\nijKcwIGRLIcpZTuwxN+lWir3/HX5binty1r8GoQYphRnP3sz3Pu133FMQxEo\nUqiRQz/vXYgsoPCYPvmWIiuue7I7qe/MEVbhJCEN6cS1qoARaePc7DzlIBs3\nBmlXL0vO2i/E7IG7ZGIPTdgLWXfoep/z3TzCqw86d/YAmFouStBWulOfXW/H\nGY+/+HKZdARZof8Ra3IIdEZ+kG3vMEyMsfl51joJd5QE9mQDESW7VberVwqo\nFmhx\r\n=Ac4g\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"548bd59744145fa9c9af4af84f37ecbac49e48b3","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.16.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.4","@typescript-eslint/parser":"^2.31.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_25.1.0_1589176172685_0.6327946861928406","host":"s3://npm-registry-packages"}},"25.2.0":{"name":"eslint-plugin-jsdoc","version":"25.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@25.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"dd90f0a11778888637ea3aaaae1a6d3bfa3f3132","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-25.2.0.tgz","fileCount":95,"integrity":"sha512-P+3zIyu5fSEZlAtoKI+pGxO8XWwWG7RlO7Zm25+sZTcWUb4jGteYSYLt04ChMauHjoDJSzhwfTXhAn2gVUijpQ==","signatures":[{"sig":"MEUCICqLwrVgxRhjy7ftrpoA+jfzNdk9FDhWbAg0Ds5IkD29AiEA46sw8vDlMJ5WXxdqeN33WVlXOG62j1gZ/X7DJqz1NCo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":824544,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeuO6zCRA9TVsSAnZWagAAkoMP/ia8vb+07yPkYDu3Ns4y\nGRTupZXnl70GraJaafK5HUP6AdsQpOjmRoLX7ghKdKRRCwVwBHt//rjitncQ\nqtBT+BCwANe4P/ZgO3ef3nucIlz1xYa1Vy30zYIDDPRrqN2JyJtLgOMDWQWA\nqQwvyuTqzvM72+IZzMP8+2xOhFVUOsBZjl/xZ9OWBYTKn8iivs7uCuKBQhn+\n7UtK3yxkyLfbV2k2ThmuDBjgT4Rw7hRA7lmv46Gq3vZ9qpuqEzin2PvcrzF6\npo9xquH7eY1DjgiwL383vjTLzCZm8fKvdZdyW0FNrfzuvBr38u2O9JUMdiDY\nq/meiuEwWaevIkC+EBXJfQgkfpW14XvLe6sYrQIfoTcK+11BO1h2PxPT3ouO\nZo0hB6YRRM2LVxALbCdEKdqjOSfE8hs5E0LAyi57iQKIaWwvWjWOqy2MeVNo\noFKDvDw6Fn1b4I3riA3PckLDIcCK9L/LJQBttKxriLfBs0nGG/LVntbIVeqm\nF3p25ouHhU8Y5m/pPScarhfXmfoN+F/sZrwaQV0TBu5QGnsvwvmvmNxgKHOz\nugK58TdWxfnHTWV+jj7/PSxZ/sSysdVLaofcoNrB2RTLY025SgwrOIZ1P28j\ncvlk7v56/wNoOkz0ooEjo2rbtWtSSR1lLetIVoUMutWPJUM59TosgvplQsT2\nL3Hy\r\n=wloL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"d855301923eee14b8b10a5348c4b4f6b9f7d163b","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.16.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.0","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.4","@typescript-eslint/parser":"^2.31.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_25.2.0_1589178034682_0.6108618669581529","host":"s3://npm-registry-packages"}},"25.2.1":{"name":"eslint-plugin-jsdoc","version":"25.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@25.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f4d1d6e3f4e78dc549ffd3bbb28dacdbd390bda9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-25.2.1.tgz","fileCount":95,"integrity":"sha512-xVf6asIk/Rp4NmX392K72002Dj8GdPW5dKWYu/tzT86H+Yi3Djeee0VF3Y94Wcj7xTH08C3hGpmtJJdtWnMiqQ==","signatures":[{"sig":"MEUCIQCrZnF3McRHwk0KdkkVybFmempcXVi8ajve253iOXQJbAIgDIJabVxK/EP/DGdrPSIjTSECAiqIkKTZLepxIPWeAT0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":824843,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeurQHCRA9TVsSAnZWagAA5GAP/314S2uqovgyieGevAoA\nynSrglX1NdbotB73JSkhLK2eB0UYcO2zaNh35lN2i07AyZsfuddfpw6uGTfs\nRK+MAj31wzMApmrHjOVlQv3fayXrNh1i4NyCkpjKTL/qXNRtl/mRh+gTpOVV\ndGn7x9m1iH98LmKlvZ4+WSZIA1JGhwXBF7e2xdKH6NzEJf2R8w/qa3xdE+ZH\ntA9/Oi50tyxUFodBMYPlOCw8gem26WLAL2eydMkKDkaCOqwhvqPHgS+tkIxv\nqSiBGYFeBFVbBlrbRqgQzpE7iyx5OsJGQQM7VevpRPMXgn/6jDYJxyKPvv/3\nOEU7ugr2qXLKhtGBTNgnAdVzblAa38t0e9gd2hNPtMwF0uo8Ntcy7qNTmMrT\nH4gFGhQN57QEM54zfSgU/GfyTEW5zjbl88t9E9/NPNfAdqjih97pHfLeAmJo\nYLgbxXDPcoaPnsNoKFjx0m4mb170NKku03cZehDT0RlRfHdGDqM/EqtkruCQ\n1sHwJDSVg4hfdp/jaac7Aim2vW8sIv3Yae1IwcWfrz7opm50x/uUZs2Kr3n2\nyySr+gCJOqVkEosotU/gHcTLUQHLVlXdPY8rMBeZX7GIzcFHM/8AJiiFY2jL\nSESoAs9pHVaWz7xSYPsiXqMrM345bQ5Rprkr7NXnO9Vi/z46IKxgSs+fXbzs\nbXNY\r\n=h1Mm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"d330391127e9ea11e8eb64bdf8ca5f120b55da74","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.2.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.4","@typescript-eslint/parser":"^2.31.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_25.2.1_1589294086497_0.7922356545766334","host":"s3://npm-registry-packages"}},"25.3.0":{"name":"eslint-plugin-jsdoc","version":"25.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@25.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6b244ddb7ea9c27cf3176d390aa65e70bcac9aec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-25.3.0.tgz","fileCount":95,"integrity":"sha512-dELwaOW+Fv+IwdTI3N+1fPLefB/+LBUIJbiZ/8H1bSBqjlyUj/48olVa8D9WEpBuBUOfeSlhEngvwq7crb+8YQ==","signatures":[{"sig":"MEYCIQC/45PQXfADEwKzWbEd+OAz1G5MeT5Cnylw9SiasukZVgIhAPAkuYfCd712xUf2RVx9VXfeAccXNr+e8LibBF+ZItlD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":827740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeuxHiCRA9TVsSAnZWagAAS5oP/0Pu78/DNNr9ugKCLWsj\nip+AbcO+ChBVdGdUTwv4r6O8V4vUrqB2Qa4CE3snouUUygcaPa2HuoxRpkRF\nwaJL/6OQfa74J9B9AJOGrlffNwKqxA8vnUpf5FVtKZmtQN6JzkAA2HahgjOE\nMiVCpjAI1SWnMguGAiDYzFI5CNmI0EBW1ocdsfY+8x0/4+dnLPsa36a9CRAN\nsMNeV+mtx76BhQUSbwExxCbK7Yrlag1wIiogW6E+vnogffrBmeAEoceKqkIp\nfDrEfAoKT+CMx5vdt8Ib1KgrVn9LXyEWOn6K0cIBYksodK2X5FHMco7uj1C/\npkhORxPyyO5XHe86/nl89SzA1I5zp4DYo6TRUh7uhAPNNSkG4J+S2XYRg4vR\nxABl+NFr8SKPjg1DNKjYCOJGVlMqtRa+Uasbx9TAEfzoxazfKS7+Ihj/+TWw\nPg4Qg9XJ6/ZrZxxZQfR9/a0UPbxP0SDXp1+5ba9R4YUP/w2OsRwoSQVdF1to\nLUx30s8VTmqQPa0XpiCEhoQhetv2Izv9gTVbJzZzuVaddxdNpshVxET/zZHp\nvR/0KLH0y74dpPsuYT6Hnuo8O6Tk/c19RGGYj3HKCjIZUNnYV/RnbNNSte+F\nY+z8dzy7XSNZ2H79dQjZkJBo2zaFDUP7GfgNtNTehwvqvSwwfsXR5w7ARWTI\nMzye\r\n=bdeV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"9901cd3ad5e8aca889cd64095794778b049d8cc7","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.20.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.4","@typescript-eslint/parser":"^2.31.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_25.3.0_1589318113472_0.6899832175082652","host":"s3://npm-registry-packages"}},"25.3.1":{"name":"eslint-plugin-jsdoc","version":"25.3.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@25.3.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5c572b5082e6787a661363609421b1d05940ace3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-25.3.1.tgz","fileCount":95,"integrity":"sha512-T9/5Q+JvOc3gYQrwqH2p/QH5zCXMvsQGOL+PvbR/x1tM4IGRYyHR49YScNSUJLZMzIyG0+h8sQTVl8PjWm03PQ==","signatures":[{"sig":"MEQCIFyG06OeTOYYmkDz9lltV6FPg2JvD4MwvA4/NKOsvGk0AiBZi9aeXLfmkv1skDP0QM0isr+9uy8O0ZllJRehUuMQkw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":830923,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeuy5ZCRA9TVsSAnZWagAA68YP/A56Bmlm3EUHC3UI3IMk\ns/NwrVr2D6WH5U3+bjgfeLjMFmEflhV4WFNygzToX5x5ieHrHGdu1hOxvy71\n875Gg7+ZvXrNS8D8s22ssAcD8ziDwIzXbxH9q9W4UtY+NOxn9FJeq8NiJlK7\nly/Fu6NywzGRNaI4Ani7egHb4OagfXWtlNrDaBB/mxGeWh86XM3m1pthyUA4\nUciS+eWEV+aIpNepd21ivL6asWJlmkBRmdXB00REDRzLw2gyroWKtodiUELy\n44YWgWcX9k+XPKx7pYoeihZ+uUX4TDPptX+qsaRwqolXDwxTfRB/DH2NywUA\nAOf16+RJZZtrTz4HDvp/j2ihQfeDqidAdF0Nklu1Wnr9TTjm5l/t7B+oNJF1\ngxvhfRhvqQakXceowzfyk8ZyyKSpbVnj2eOctTvST0CdFNbDgxcsNbkH9v4Z\nXTdZp5J8eHxr5m/U7LjwPcz8s2QknSwpq1/DyWeW18qvv7r+EKEcXnsRyPen\n4auVy/8pv32x0as7YT5p4Trdm8D/kaGApcZ1ZDKaAa5VGaED77e7CZyz1pjZ\nSluQZXvclmMkYEB1Wn5m2KLJOMhqdVB9YQffcHQzMsMFY0vihVnBgSnrOtEw\nzRABG/1lN4VwTy6l9e6qHMl4oP9GDJ3zr7NnZA4aKVopP508W5ITA2xND6PB\n5NCv\r\n=fFEu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"82fb8c937c1496c8a1ce61be301b8cb6c938843b","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.2.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.4","@typescript-eslint/parser":"^2.32.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_25.3.1_1589325400505_0.08459348003596201","host":"s3://npm-registry-packages"}},"25.4.0":{"name":"eslint-plugin-jsdoc","version":"25.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@25.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e5a7296eccbbf7d9bf0125936a26c7c3175238a2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-25.4.0.tgz","fileCount":95,"integrity":"sha512-FQgEALA8nmxyBORBinKJ7kM2fMcF6pXRdLgPfj0H3q5lalVAcgNxmeuLXownAGiS9Z3jU/fD2VX1gykR77qvfw==","signatures":[{"sig":"MEUCIQDYz3GKlEyV141dI3BOxTljWu9jhYmLv5k9NxngKDTBEgIgGL4J5W/JwZlR+mylMw7fwgmXlfBlcL7+5XC81QXVXew=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":831752,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeu01OCRA9TVsSAnZWagAA77cP+wVrStRY9PguTgWrsYQG\nZf4CWNFo8UHlsyI1xzkjjG3q/ioy3S+XcmDARjskhqoa0a9CUxnt7aDwtS5J\nFo2BcQCCaUcSX9sMuao6UZXAKeG279WgqBGKWXjhIQZ1WBj+yAsvTrCCcqdp\n22MkGyop91devCxIYCzns833S9wiOeq7Kz6NKxt3YfyYP88yWsOT5WlJ5/a/\nWlLhHjlUcQbjq6ea/mJ8VcjhkIMCPziW2QmW8xZWmddB180qnK5Q/Lq+gIS2\nOh1oWNNoMt7TAYgG+qGs2LtddUJ6PF75sfS/uxTWhCr5xzrfdYn0Dx1FYn/5\nZh52JALj+COHKOztSAXc+RZBxN0ghdlT66JJF+MsgZ/ffFvtGQUd5jIRz1Yk\nzcmc92+pMmihseigQ9pO+wpcJKdEs1mbfVrD3cbqJTGf4YkkRGEHHPnGM/1d\nWqHysUNegxIFALqNUd2Jf60qdZzJYjFExN0NPsrEIVfw1t5LlQ4qotZFaxx5\ni5F/XoqPTm4+MjO3PZKwpUT8x9R4E0JiGF0NBDAQzoAvCzD1D7MDDa8q9O4t\n4iebtklkl3sxwqRbUqsxjW75OylyxJ8hRQr9JUTpJRijhoCpso+7eUHPptqT\n/zqCCpfeVq0Ueo4XOS2sOz6gCg7QmxItAi3OMtUxD5+AJU9FuA2g0zi+YC4M\n4yr6\r\n=xo2i\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"4df57a84e04bc6d5dd66463dcc819c28df642128","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.16.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.4","@typescript-eslint/parser":"^2.32.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_25.4.0_1589333326254_0.47165562732410393","host":"s3://npm-registry-packages"}},"25.4.1":{"name":"eslint-plugin-jsdoc","version":"25.4.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@25.4.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d7fc913bb7c0a4668628e40b8525b3b409370bc4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-25.4.1.tgz","fileCount":95,"integrity":"sha512-EixCLTv36/etbr5GGC89n0GLDkU/5NmadPzI3x6gSzldqrZpyQVh6qqN3jarWdfTvJsimorP4KNCIwe5mk/7TA==","signatures":[{"sig":"MEUCIFJ2QKyQyBRcOf/P1ngCRqre+Hhy43KJVZKndGgMmg+8AiEA4mcy8J2+cMJqK4Is2un/DN9ZQN/fYad4RuM65uE2KNk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":837072,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJevJdGCRA9TVsSAnZWagAA4FEP/2rnqV5LxjXXKujiu+3K\n213XSObcCpEp2CDqShTMNLyHe/t5ngiXYsNtK5vvJmI/G33sY3N2zWH2rFjJ\nl9lTWy4NhOUMwxLR5hAq6+HB5zxRaDFkzcMNQmWuiyLFkedrtlgNf7GkfgD7\n3ryQ8AIF+iYihBfDCxesCMDLe5ovtwOjXaay3kZiD7Hp4ZCUhp7tq5MQLMFm\nF09sm29C6qaGvqoPhIvsoTTZSikv4KCuf4jeDmI/s1BZ+p4n6rZRjOVkS29k\n452hmPf1py7vOB/ELOSNNpQz6gazl8JkiOW1qmUWFzsmEPcw13NDhi1nS6V/\nNQDfck1M/Jpfh3z5VYY9juDLL7FhFbYgodU4eczLXCt3rsLyN/YoVaZOHIVs\nXv6NqTLl7s22USc2CksuE8nOPzUN3pfHkTkHZ64F6wmDkR0zlr89qv77hBUi\n15NS4OIHPRsMFoYi6pMba5yiPoERgAnGgosG4iLy8dsJu7Tmgv7jFa54x1bs\nGhc4nPviTPxef77CkZllpaIaE3FDod5p04IitGuHAzupSwhTljOWIMH1nW3v\n1hpcECQmAASKLTZwKimH3K4Q/VRrxuFXT+Uc33Di1bjYIoj99ue1D0T5v7PT\nrZhJoNottaJK6iIMy3Ggs+qwomRyI9cCEA7OehuQOYrweKRmfytrhY8Az8gY\nFvbZ\r\n=uSV0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"1b21b25fa9d872fc724b3c0a8ce60122e29484ca","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.16.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.8.3","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^19.0.4","@typescript-eslint/parser":"^2.32.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_25.4.1_1589417797567_0.443067450503299","host":"s3://npm-registry-packages"}},"25.4.2":{"name":"eslint-plugin-jsdoc","version":"25.4.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@25.4.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"1a8480e880c4d343ba9bc77caf6c91e4500d7a71","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-25.4.2.tgz","fileCount":95,"integrity":"sha512-IFZnxBBt2fGYZ9yaLt+KP/jHa6u8LQPwH9QzRlhbU+WKBq7ou6XTXoxG0EZVn9ohcbJ0sM8X70iRRX/J3Wu37w==","signatures":[{"sig":"MEQCIBNq8vNSp6xuM4ZssdNOIIoSHb1ijsR0+NosILbtNKw3AiBMPhXpxpkeUfz22M3RW+cYHAkGhqMeL2z3Kua3C1Vbpg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":810946,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewkrCCRA9TVsSAnZWagAAiFsP/j/afc8KtGscBOufSoUp\nM316K9917wretLEJ5mmqfemR5ZaHWb1kZOiaDTObqERj7z7d6DjX08HfSU5Q\n/iT4BGyJLPGeUWx+g+irjgDZuqtZ2sPWMeTskWM7CawmH7+BYSLkMpMWk8t/\ndQ3fh/tI+hpbZw5VKcv6qjNW5pUi2bKZUhXqMl8X5weTzIFxcKzckxPHea7K\navbiTBp8PhyfgLJrYOrYWE53S1VMO28C+tjDqO/Cd7VJlXZsCzMw4U+unlQ/\nrChlYEcPcjBXRVFNyFt/nfoQAeId9JcGS0nG6cyd3TS6N2Y+566vt9onaMCA\nWSdIuugaq3qn+boWr0P0TTFtPMLVTQjWErfnBOVpzdOdDDIRoondl/0RC7Dk\nr++xXfTe+UEf938MFPHVLen7iFjAZ7dLAAwS6ZmQ+Bfch6FFEKyAuH9bxT/s\ncFnZ7WHHhXSLdAyE2GmcALdJ6r72vNVs59lyVND8NBMPJIdpQ3IhJXrOJlWE\n42BS85irKlyP3x9vXBFObFvtv5GeDsr9xmxPpS76VaZWp8L2NPsiH2S7P4FQ\n9IzQo6iKJwYPaW6aoAl9Z4X34yk3DdNH6h+1pd/juFJfqf/FnKUHS1CeoKG+\nKROL0pfjyTgARFE7efZ1bUCDGNJrgVNhpJMu9OzMW/dXvDzSYPVEmxBKELTC\n4YIQ\r\n=3FsX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"99476af0314b2fb11084b4e18242c924fb4bb381","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.2.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.9.2","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.4","@typescript-eslint/parser":"^2.33.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_25.4.2_1589791425987_0.9556944731949111","host":"s3://npm-registry-packages"}},"25.4.3":{"name":"eslint-plugin-jsdoc","version":"25.4.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@25.4.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"83e0d8ac778b7866be0aca23cadb5ec3b0dc1910","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-25.4.3.tgz","fileCount":95,"integrity":"sha512-5FyIKcNoM+AMBf1sTHvs2DVyij2x6eCYO1hxOUWFLBZV6H5AIdXPT3fVc9H6hrxOYe9SRF+5SjY1hqimV3Q+gQ==","signatures":[{"sig":"MEQCIBWFVfAaYcDcbW0ve5n0nahHZtwx/53rxoRv0i24ZlgfAiBYHHZIXu74F7CAmBWmfHPI0X243CMTrZv1t2lgkhwMyA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":816654,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJezQOzCRA9TVsSAnZWagAASrQP/R4DxiFwNiLoc/i9sFyx\nDPCHiMedGx34kiqOj8PbWn4xMghGqw3Iw76/DeegKWA9Q6ktuq2/x2EVbGof\n3jI2ZC6nahP6zJ49v1WPe8azt2c+hGZh+K/WAHjW34EHJU9MZeaG4nXkIcOw\ngfzkRGAYts4ikdaetSFYH6Th5jKXOeAX1DB/PwRylml2Nrd4lq1heqoTRl9P\nwLP00nhFd5WFHx0/JaA7RFdyd8efx+dHHPaUkVop4Bz11oerwI1wW2+7oTbm\nTRPmvSflAuGXefvzEnn1vZmCo8knu9j3vEOMdSU2EUHl528sxn/2Yljg7s51\nqd+WdOn7EnX95PTcYbY2M8DeZzRcFgid131nOsUk3+E2UilkciWNX/cAtjKE\n0MUCLnnB9yy3cd9J6YIhLMmOSFar5KRDpDgYbAjy0N/3UynVtDN/2aUoBifS\nSUCE5ZP/1lp52EYz04MBLoEquih1mcvxOy1ZxuJwM4l7K9P3b5JPuDi2o03e\ncQbvnYJtbARLbGVip8PWv1Qdi2o24czOUF+zn+MZG4dy+cKxYbyWQDEXzV1Z\ns/zRt5YOnyafzr7kClJkWLO5gSHd0SRBK8VVV9qtsk8oPlA4GDayRgGE/Q2/\nv2sWMnSjdUIhN2GlYPgeHIhYQTitv4/sx3yh3UlHxeE7IArM30NP3g22IB05\nVhca\r\n=VjAa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"d8c4e87eb56c8ce2bbd0b971a2087afcd1daf4fa","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.3.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.9.2","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.4","@typescript-eslint/parser":"^2.33.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_25.4.3_1590494131104_0.6496082628562658","host":"s3://npm-registry-packages"}},"26.0.0":{"name":"eslint-plugin-jsdoc","version":"26.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@26.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"91d0d958eec1a2b8915a60462a7a57a665c58ef1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-26.0.0.tgz","fileCount":95,"integrity":"sha512-/oEywHPBn6eVDExTgDTwdwyQlVIuJziovXOPXBROW8yW93vk6/IGezW5jbzmA2pX4tVRCQc/jz5/mZea+FCmfw==","signatures":[{"sig":"MEUCIGJ8IWgGp4NAge1ZdbI/9bPsosVPyw7YKeHPT0Gl0UL/AiEAyQCtkm8keDkU0SclSY6fBaCptGsW6qY2Z5Af193ZTUs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":818069,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJez8JVCRA9TVsSAnZWagAA4NUP/jo7u5At5dndMU3qC+U8\nVmn/VkSRimfEg3xwfVf6IO1BXxFssVS3RIBtV+sE0ysObODJ8I6su+t0+fVq\nBj6yHoPtUGZqoR2dxMn/3scnRklAQvAfUPAw1T4f+ryU5dq2Oo4lEjsMwX+2\nwg3glDiVCoEOi7oeLTAIbbJN7E0RV5DXB9vLSFmv2RULYBxlRqj+szSHLU2d\n2ftqER/oMUmIEI/MiPDuqTP3q0qT3E6eCg/oie0syOtCMb6oL6g+3Zim5YNY\nciT+bS4RJ/zT2wrq2o9PxLYLVUUoVkkpYRft0U5Zo1Kr15Fb9GUv7c+HfkWa\nSA5WsAlluwN6pDqDmWvihKbn9GX8az6jBY5d/TEMQOIhmM6Qpz6K2zaMlJPH\n92vSJ9X0Yu8gQQzII0ZcsjrgCf3Awig5dVJQ1vv6VrblJyBecxx37o323HHb\n1dXqIXr4BQ5IPn1fbxnvRCsASLjhYufHUo8Ye91klIqtkYG7a5cUq1Ze5h9s\ngSslTGQRFRbNdcZYY+j9v3+UHvS9uI7JcEghItHvPau1snOMU3wLO9VA5tUW\n8aC3QywvGMcn+oZAGOkstiNtwzvamqgU3aMvZCWIbjt9DurFs6YKdYgSIAss\n6LwkgS61v+MSRZ4KiJuq2+HXWrm9vES2mwXhi6HN8/g343CT1PY/ecwvxll1\n3FSF\r\n=mL++\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"7d4c3994f9740bdf6a4c229c80deccf7a524abef","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.3.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.9.2","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.4","@typescript-eslint/parser":"^2.33.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_26.0.0_1590674004735_0.6631526202202118","host":"s3://npm-registry-packages"}},"26.0.1":{"name":"eslint-plugin-jsdoc","version":"26.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@26.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"738246f989f3e8ec15b70ac395087e6c115d2001","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-26.0.1.tgz","fileCount":93,"integrity":"sha512-LUPDxvASHY89zBfzswuL5GGb0KsUf25O+p5muqPYCguHPEhFI7JMeXfwdtcusMF6DmwKHAYn3CVRmC2y6gc/TA==","signatures":[{"sig":"MEYCIQCER1BiPgZzACAVUvgzizIB/RSewcNWwXXNP9l93fNbFQIhAJAfseQ6UCOUVgWEdL5ErEgIVGaxEfuZ2ONQBFRMzeQq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":810959,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe0x60CRA9TVsSAnZWagAAIrQP/RXVdj9OkG3m/f6lCCIs\n2aY6Y7QygYap/7dBXhWijhuffttYO1HEpr67HJMmhBvsak3MVC4o+RUXlSJH\nPszYekBkieTAMtt8iD1QHPmQ0ZrMS69iCEO1mN3eY2g8DNALU3Z2E6zZUt2x\nUG7HuquxYLlDw9v8U0akxZzpkgna8LRpcEpmrV+4+6Z1MdpCeSp+u1zZ1r7P\n+dc49d9zh/p9QEzg/qPKCKtd2Ta81toiYN6rMcqUNB8R23c6Db/oNpS7/ILg\nR6rZVEeGdU+jzESmvT2gKlkxThX0qQ+c2qUrrKoXgzVf/JO3CJBilVVuo1OX\nALTXtdD8nPPnUjM9w4W4xt/IHWCrBVSBl2U3YgBnTdsYNrjU03ii+wikGrpx\nAEjVVR6Xz0ooz4ziFJk51wABF/3vEiobCqSg4oU3DwzTKVDcR7Ds8A0q3/BB\nfKZFe+fSQF84BDjfc1lDCK7ZMQfldIM+467syYEJPERkiKi/ea5CdPAktX1L\nIak3VwyQNfUc2yOtjATe0JIuGpGkGGoNxc7B5yJOg2t0qpmw+Sn2H7AMQ4OS\nDc/pBrNbehIoDwWDEW10JoQuGbdGWr+rwOHwSU1ll9JMmZ+RRIPRVxhHO5+7\nJlflobtwnhNLyN3fOsHTu1HE17B5AVlPzwfpOfoFTcNet/o7BKuuul3qMKJ0\n/gOD\r\n=hoTP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"67f5cd8091fe5922377f440dc1cc7502be4288b2","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.17.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.9.2","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.4","@typescript-eslint/parser":"^2.33.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_26.0.1_1590894259978_0.8738510331054119","host":"s3://npm-registry-packages"}},"26.0.2":{"name":"eslint-plugin-jsdoc","version":"26.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@26.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f65f78f37cbd79c2f65ab9a338b43f92064e57bd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-26.0.2.tgz","fileCount":93,"integrity":"sha512-KtZjqtM3Z8x84vQBFKGUyBbZRGXYHVWSJ2XyYSUTc8KhfFrvzQ/GXPp6f1M1/YCNzP3ImD5RuDNcr+OVvIZcBA==","signatures":[{"sig":"MEUCIQDuBa0YNH+OEK78HQlgQY6w3JjBJkDUkXPL3rEoHkbBcgIgBWfR2LYNB0+9ZiI4eb5oUDBfTFIdR1XBBDcv4c2/d0I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":812595,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe1Z9XCRA9TVsSAnZWagAAsFEP/1ic1s6uypWuyN66AO8M\nWEJ+noyzFxcnqi3CNQjN03CulxrXfOKBibrMiXEpWbBZ8vKzl+cFwoaayx2n\nv9PkcD2w1wBG/TjiqHZuzrjwr9xAKPPPT7U10HVX11U7gFs0ItjRRE9LwRG3\n2LboOCZGPgfyk50R08A1U8ctjzbHsMj3YZ+O9yxWXaOTjVckrHDBiHfx7bev\n02aihNY5ldyNKWVeARcTl/otrct/dZHe6piFuqfIgBveZzzcd7M1lKxFpiO+\ncME8vKktHBHycvx51VXlOGUhtLytTqjj3pDZXVgQWUIWkBkkR1HpJOfkz1BY\ngDTTJD/ooswoQ+8twTZt8vQy0rPdht2tzv3HooPSnz+0UPBYOqQ/CNei7Py0\nMMSwgjMWyznAr00J+4Y4Jl0PwFPUon+4rwUux03C9j2rAD3r+gcRN2VgPr3f\net1uMrPAHik1fQ3xr7pVWUsPTPYW2wUbH2w02ZVyIhkwowlNvGbRrplnpMYC\nAEvp9EW5nOF1S50EeYqLDUtcJwC0DnpaUi3q7hPMvmdlIYhqqh32WfkxSJRg\nLUT0FosFwW22Yq3QVDpew0L2KRZeRZxZkczT/pQ3uhIhYX9OAZhBp07csW2A\nrUVbnJ8ngvqJPYa9uKO+D8AkgUxbYcKRNRori5o0sKHD/W0R8i1g8i0/zafO\nzUG+\r\n=/nIt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"ca97fcf26d88c2f014daf66ef6e8d41a6f3557ad","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.20.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.9.2","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.4","@typescript-eslint/parser":"^2.33.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_26.0.2_1591058262353_0.11771260630221825","host":"s3://npm-registry-packages"}},"27.0.0":{"name":"eslint-plugin-jsdoc","version":"27.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@27.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b9a2666131078148033693d000bac6848ad67094","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-27.0.0.tgz","fileCount":93,"integrity":"sha512-cgojh/+T8JNB3yBmLerFZz/md+h9rQgmz0qCbeezlPoS5eSMAzsTl3io4Ac4N9Z6o/6ilDKzmqwJHw0Z21RYKg==","signatures":[{"sig":"MEUCIQCT/0QrYMdNxJiRFjJd3DN0zqEwM/rFb4+TPOZlG0mXRQIgD5aq6Y9bG4D0nYRfFDjZ/h2LX0urYi2yEGdX/2llwHY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":817551,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe1ntqCRA9TVsSAnZWagAAJjwP/1ddl/5DDw4gudmHRhGA\nGaQ9cFLIIs3KXdGRPhzzolhRi2AfS2g3VyURK3wfRoGyeI6AwdpDpaXnXI3J\nCC4lxt+q4nuvQU/FONsxUXoDXT7DKi1CyDtIHAb0ZZzLK+Pk5t2lNpkeJrtR\nl6hZSISqz40wKonfzOYZ4SuVUUMTpNzv0NN3uz+XzBSOekQ0c7Voc5endXu0\nf10bCrT7SVH/GZpN6k9H13kR+0GS66gO77WvmUT1MSCQYoqvWCF/QY/AFmFT\nHoW99Tv2pilm9BxrfddAkrvh4xuvBZxLkeU65yGLyBDE4NXAISUl75Q8En8y\nLc6rPR/ho924X7Tcw2IakpIDmP710Ff//S8VFOhjZsN1n9ZHPXHsJuwjZXWX\nn++h27nRPuhXyuWQO6KNZnUObMXwtoI1hE/MlfcsayfhdjQhZmgKX3hHdgTX\nvd18GoGuU/McRa5czg8hh+9S8RDFsqDqUmk3He27VBw8pAr4amggWcZ1a31q\ndR9no67kjZBchfQ/0zFojjKfFKsYrv/1PdCL7wwJ7BtM1wIoTy0w7wtS9dUV\nJwgBh2l9FDiID1WXmmdrN65w5OZctmoE2ufbDTh5Bci2AXAZd8wMV4kjuT3u\n1VSEqtOFOkPMqzmyara4SN9gfyzRKhcea3sCfCcIMlvXviiJVhSwzH/Abg2Z\nc7T0\r\n=biHe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"a7648611df52cfe4dd186520daa6beb09e7352a8","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.4","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.3.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.9.2","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.4","@typescript-eslint/parser":"^2.33.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_27.0.0_1591114602007_0.6653186621685043","host":"s3://npm-registry-packages"}},"27.0.1":{"name":"eslint-plugin-jsdoc","version":"27.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@27.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"448e08b8aa614ad9c9f619c71a6f1b7b5d8bd2ca","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-27.0.1.tgz","fileCount":93,"integrity":"sha512-qhxbvfxAwUG3CkIF8mC/BaMn6HsZ6JhX58FOIEWopNE5S7XdMqSm9KEujQ2nGWQGJln5F2Bkvdeccc7GqyJ2Dg==","signatures":[{"sig":"MEQCIE93nXRj3uz/Oqzi9a7Adl/7vMn81HhpcmcLJ3egDKfEAiB/+zG0yePAWUJ7b9lG3JVwgmz1KwRxX6p89fiwxz8zpw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":819697,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe12arCRA9TVsSAnZWagAArGAP/iff2iCADtcOY1HYxz96\nx2wzOUl47CgDih2J0TY3aBs4lM5NftxKZ0iizEQNS6S46K1MAArEzABvhL3M\npTOb4TND+4uG7IFGqMsv+SRhvfDzLZ2v3gBX+kML14NVgmZdObudEVyNHQU0\nwpeyLue4Lo9N9bHInfyBE2C4EpwDBMTZXaj72t+4LCZScE7GLRXVQZr4pJIk\niCYWq2OfymEjAc5J2pBjL5Z3VkIE75bv/Xiqd2mQdgDz1zfD9rGb1/ZNfqUw\nfvKSIhDuFKWQhypa3ANPsdZH6n81x/PV1lr7Ip9YCKL6nvZ0AQo7KCKgmBbI\n5kCQ3rPs+xbBbdgt0WlmzgwD3HGYTUP+JQy+7GyPk/HknbyW/RCifcuEl+JP\nx7znK0V3lGBCclSBT677vMoEhIx023NhVh36hMJkdTKIuh+UxjprrOTKcQgV\nWQCr1g9HzX9tFRYBr0Abc557rEgTk5wh5gSVbpINJH8eM3sDe19Jy9OUZunH\nWvb0qVUvc7xM2zWrCcAqQc2H5ux3hQh67Z91b4MTZ1FsUzQOoCpFUYOIruRG\nGWeFuksmjDc8b8G43x1PlMAO82eVLR22C7MnPXANsA13IdanEuUGmxURtuNV\n8x0NaLiOOH5X+lItAkcyDlFcZeIXjFsK6Vga9lpKHB/Vx9ed1EVl42Cbe2rH\nNDVf\r\n=n/L1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"f4d69abba5e8e9bb86cc8dd330b8f26b6423af5d","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.18.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.9.2","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.4","@typescript-eslint/parser":"^2.33.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_27.0.1_1591174826252_0.22012485097086598","host":"s3://npm-registry-packages"}},"27.0.2":{"name":"eslint-plugin-jsdoc","version":"27.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@27.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5f518b23b1bd932e6ead55defa620a1999c138a2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-27.0.2.tgz","fileCount":93,"integrity":"sha512-Oa5khI+ZuokO4CW9TddcOLzd8IHn1LdHAM3XgmPiZ4FZX6gi/R4swySXPx5mRvBb4y4sSqB09li/qpjE7aHjHA==","signatures":[{"sig":"MEUCIHNMc9WSpq0G3Y4LGpjnOEwn5yZq+5mgz+0P745+QK0OAiEAzth5VSUZyTM76OK2Xxx3UUxqO5wIEwM1SRfqa9++6Dw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":819760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe13+cCRA9TVsSAnZWagAAE/IP/A7RDBgkO9fQ8cDy5jJB\nEd6ccCYiH5ra4FtN/8U2hWUqAOMqyM1B3SCO/iipJzGthZ1OvQw0Ae2MfFMG\nKMO0yRQ384X9J8H0QrgigLO5r3TcCqp9taRV1elZWkpqJR4sRYUVMKGGOUWp\ndvTZd1sNbBsgl6Ur1e8Ql6rKXMqRjRDwzMgYVJG1QlGMDJAvdB+w4/3Wd6P7\nxmKWYqKU2fr5u8Hxu2NDI842kOwV9UbcZzNEdpt3ayTdVsjwLa4OA02jG4Ig\n4ky5QBHecplPmkBBIHR0E/qLiMjc1p2OXWGr/sAuS1XeFUEWyjRbU07kPzkF\nKoZ5O085RhZj088VmG+QAGCC1LIOg1ywdROct2AZ3DX2sJy1XSmI2KT1Ay9Q\n+4ZciGqz8fwOUrE4p+8Bx8NPn/yaznTmBkj1Qv8G66FdYOLd7DX3o/whdte5\nB7QxklXEDsa8jPGdQ0a9Y6xqeWP+D2re6tuT8a0RRVX1qROEfCUb8IrbYcwc\nymArKIhGSN2wESsodHwGeInQJ5jrjnow8bjWTZPPaFs7UrsUlC4MCT+2ixCl\nMzRY+kbH4uNcOFqFoIDSHd8toQtx7mBcE0Znx9cd+BUsAt26055SpLjkFXCo\nYjOdvI5WoP72FOV/W3GRlu05yWgguQ72b+uvR4T0Ej5NHUt/ojQtKfKsV2Vn\nheQe\r\n=et+C\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"cf6290fc2ec046390a60ebdee76ddf382146fd60","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.18.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.9.2","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.4","@typescript-eslint/parser":"^2.33.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_27.0.2_1591181211909_0.5145713010814756","host":"s3://npm-registry-packages"}},"27.0.3":{"name":"eslint-plugin-jsdoc","version":"27.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@27.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"8dade43cc61cf220c72709477456c6437a7bcf8e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-27.0.3.tgz","fileCount":93,"integrity":"sha512-TWagiFwWFAq1rkl4cuoh6JHD7qAYCuYEinZe6Rxnfu7FvoxRnAMAu6zswADIzQXHoK2c+ueTDOKAQSHII0ttHg==","signatures":[{"sig":"MEYCIQCJ3wKOU1LiAn6bPCJq4xFupLU674qRJuATwgJ6wLsNdAIhALAcepz0x5vMI379ZdH2DL/JMQ0tJKop41Mp30fdiXQ7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":819953,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe2KzOCRA9TVsSAnZWagAAA40P/2kKDYleRt9sJx+/qwf4\nsdgONSX2CAKzHjoY5hALIh1Vuzmw1NBkvzQdvEXUEumAUNntWomYUZ5/dnKS\ngYP/mz1aIjwtS0YAbWByw2aPFbjDeKUwJkaWnss6j81gjXx3gd1jg3ih9cjk\npkarFz7P4oQYE5Ooj4s373iXgHDxGCQiLSTfAC85aigVbi4d7JsccWYg0/WB\n+ChZVFEqU9QU49rgc1RfzFQSQ49yKGtqfKZtnB5j+xWRPeMqZJHNeP/uN57I\nba7i41HWirHcDa45X5iscWe+akL5IHxP0xuQOLNBOcQLm6smwhf1chZox9bz\nCWXa/Jf5oSDR52R26SeWBYxle1uzc0pKELUzNOIiLtdllmR1KdDl1lnslVd8\nUP9eD8dKIDmVOSGzY2Tb1HK6tfus2Lk72tgJSvkcDnCXgz0kBgRYadNG3LGZ\nzBdhtMBYgCgM6FFEniJgcJW/upMRFaq8B3VHLODmmku1uBZc+9tWIQDyKtlr\nVjssXy68xxqTBHDapNElO3a79tfDYRek6Rt9yQv9MLkTjN5aZ4u4twLRy85N\nkY1QCRhdFdZV+0ARyYjaYC++gnGfubisrbimBCk4jqFNhBtydhiisyMwIga3\nbF3ItkRmyI6iB92niedrmC5WVa+HRdiRAcZAxUUjBoF6Q8FpJJAhuYs9O1oc\nid1M\r\n=yhUf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"0bc67fcb0b081a1303c52345fd229b0a034ee311","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.21.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.4","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.1.2","eslint":"7.0.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.8.4","typescript":"^3.9.2","@babel/core":"^7.9.6","@babel/node":"^7.8.7","babel-eslint":"^10.1.0","@babel/register":"^7.9.0","semantic-release":"^17.0.7","@babel/preset-env":"^7.9.6","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.4","@typescript-eslint/parser":"^2.33.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.9.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_27.0.3_1591258317771_0.17492633692934634","host":"s3://npm-registry-packages"}},"27.0.4":{"name":"eslint-plugin-jsdoc","version":"27.0.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@27.0.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"70bc0041ed170432b9ba46cc081b8eabfb5a2eb8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-27.0.4.tgz","fileCount":93,"integrity":"sha512-gRjtUngFu3j5fwHAi4HHECIT7sDyD0IS1K59+PAg1+Wn/aXCMV+fKkoy1r5ezwBU4hkHxuvq8tOaTTvFNFvjbA==","signatures":[{"sig":"MEUCIQCFk5/Hvfvc42nixnfrxRoni8JkmQS/SU3NZx7fiOijHwIgU8Gc52DBmwRx2eCIBALoRDdnqT82LuFl6jhgpSVewF8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":820768,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe2XxTCRA9TVsSAnZWagAAkokP/jwEX1+VGx/mHWSjvSwa\nBqwZvBBxKsjw+dKccsYIGFoA54iu4EQ16vnvbptyrEvN1gPof7/CgEOJfkMh\n5YBmVBZD2JGAvRWJRSAhtGQR4Jc2aK4DUyxrvaimiPaYZTti6S+qpB7y7J7O\npjuu0lSb4dE1edz4PFqXGlqwsKR9IQ5xpNWT25kzqZ16P3ak6aqtXXtlIdWy\nrLBztxCwNVZTrb0cPCkWETVrqLglt8g6omrIaJP/8AqeuyE1sYxuE9AWtJJ9\ndMHe5yVKH3YxV7EQH/UTGPg+gUlPgs7GXJ0DTYzxDquz8tWaiVBY6aij8/w9\noL+/JYwa1Xwrsb2U2mBkap2M3FKE1rwyQiW6xRrLDpM6aloWZ8EzsBUIo2cu\n1woIopFIBr18Vtx96aPEn2tcx1JPTNHAluCvO+wraf0yiArg+gET9mKWAnRD\nMGwcTMq7QaT8mnzWmqFt4CRiPboz1zFdBsBDfFpieDq3X0muOqZTMzqiVEgt\nGglQluB8agjm3WzpehPhWitDxlI0if8wND/SXsa5zejKO3N+FF0At0PF7voE\nbwDK2mrZEHvCPBjWpWXR0bZB4FnH9/htOsSK3DLNO1mgAfBC8ifq40RQneWQ\nnZNLmrk1F8lbNjUaQagQGm3ScqGx+evcqOUUiZgU5uirhnuZCjEmGLA4+NaX\nvfA/\r\n=Wjm9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"57144111125e9d283d160454d228e761a789de8f","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.2.0","eslint":"7.1.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.1","typescript":"^3.9.3","@babel/core":"^7.10.2","@babel/node":"^7.10.1","babel-eslint":"^10.1.0","@babel/register":"^7.10.1","semantic-release":"^17.0.8","@babel/preset-env":"^7.10.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.5","@typescript-eslint/parser":"^3.1.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_27.0.4_1591311440816_0.18569289948982237","host":"s3://npm-registry-packages"}},"27.0.5":{"name":"eslint-plugin-jsdoc","version":"27.0.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@27.0.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"065c1ae9fa4c1219d9f960da1bba11c4f358d9e6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-27.0.5.tgz","fileCount":93,"integrity":"sha512-LU2sclCdHe4ykYlb2Jb7Nk7L6xd8PfwANV1KRgwHV78kCo/D8aeTdinNZb8BpZQEmu4HbrY82SPZIvyYumHVTQ==","signatures":[{"sig":"MEUCIHbzvSg2WnHsit4DEwzLYMH4hmsuV7xMqzOrKBtPbjOvAiEA4GX7UXCSGxMtiPqg1jocKfoGUXsWlrn0dyXRYFX1dPg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":820932,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe3s2jCRA9TVsSAnZWagAAWK4P/01MYCeLrg3G10MMB/hL\nL+eRfEyAHdCjaszoSNVdhEJaw+GX+2JCNqOXg/OGV4HOitcGCTw3OYhQQLiL\nzn19pFZP4Btu30dH5ikEJRnkbMP1U7N5dVjlNmHc9fvzwKNHxxtE44vLFn3/\nNO+F2BRsBaFBQf4PDP8OPoTmChQm/g8WT3QQc4eg3h9CU1OhYurmnAI3MCJ8\nkfTeYd9kDDkFClUXg9brSPppXeYRTIy/+kroy69pyacS48mOxcfRabL79L5m\nIC6M5M7dRT/DuvzUOXE067Tk9PdM9g6xEQL35sfuyX0Cp/aG2xVJnwbnGzJm\nsrVhfRPW0qoOPkBoOBcU7lZlHSW8bPy/J9ueogbnkeiCDguxs8OioyJHrduc\n8JCFgIejxZmiEQwZGDo7rUkFTC1RlOZeX/87gEDFCWetk6MG4KsWKZF5MNJ4\nng2JrX+ubDpP9lDWSPsa9vItnWwXaRT/f35HpAtcfYYlt1MxWtz7/dbfUkX1\nSbKg+P2MnRYaSpCO8NCr20rB3GVmAhHpHL5sa0FPB2HJCw8vBVVDWRHhPj2N\nw/avf8CHp3AOvtkUzJG45A3wUXKaB6GCF25ALs1G2kOubwJmhmaW9scccn0R\nkmobg6INDlCpNVYklEaJuIyEGvfJgA6968ey1CkbzRyTgAXvHf9vIJNGMidb\nnJ75\r\n=TNsH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"5b814fc8e9bb774ddc688f579b9b02e075c81896","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.2.0","eslint":"7.2.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.1","typescript":"^3.9.5","@babel/core":"^7.10.2","@babel/node":"^7.10.1","babel-eslint":"^10.1.0","@babel/register":"^7.10.1","semantic-release":"^17.0.8","@babel/preset-env":"^7.10.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.5","@typescript-eslint/parser":"^3.2.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_27.0.5_1591659938986_0.8031882684377594","host":"s3://npm-registry-packages"}},"27.0.6":{"name":"eslint-plugin-jsdoc","version":"27.0.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@27.0.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"640d7c35bbd724636982ef1c639bd909a9cfe032","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-27.0.6.tgz","fileCount":93,"integrity":"sha512-Q94X5MMIDn/JqLl5erc5hWg+K4azMNNXdkCLkA7+F/L7CNo3ZV1sieb8j5zTMAEFvSWgD1YKHR675u16Wi8YSg==","signatures":[{"sig":"MEUCIQDRC+h4Bp4o4hGYgAACQlxhLyzpkV3Cv9zPeF4W2NkkHAIgDkt6MkRewOBzdIosdkdt7Xh7DF++qh/Txv79d5R/kmo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":821167,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe4ZhRCRA9TVsSAnZWagAAN4YP/AtUc8LHnoXKeM92OCOS\nTjdRZ3X4vAGN+9yC/9fbtGTx/dL76JeVHFkNqyxSnyg3eLQHsZfCrmhw3EQb\nsG/ynX2AXSoJHyaqiJ4n2GWj9ELaqNvRox0Gvutv4pICZY0N728nn2UF3Jz0\nTgJ4IUgVq11AAFdT92q1eM/F9PvyPgKftaLFfssvuzBWQOrSOebZrw+yfshD\nEQJtWtbQWsKXOMqz5maK4L6wISuPHsPq4iZym3L6zK3qEYGMaFPUq8JZIXRO\nPMYwyR3GIMfSJX9uRAfUSWnOYElE2krLyFw8GvX6FPvaCnoNM5JQ9E63Gnpu\niClH1mj84q+hTQb6nL+wx3afo2yYmCnrb71oDSm7GvZ+V65q6ihmTqYZ3uxu\nbA8G01VuZbVoZlsq0aNyCMvOkpgYV+0IODmwqVCIFr4GpWO5l9aYLKCSNRmR\nlirZVwbqlCQbOLATYkyy4MJbR/W5UA1gdiyRO6RmjkPxc+WtxVOnGFcjajA5\nNTYcEFPwnLux6djpvS4+77Nmeg3KIHQfhVwIvMyMktw2uQDvPkap8fDsG/Z8\nPU6QtsTtW6AeJq0kPsNW5J5pT9seukLHvONEDTmgseQ8i1OzBMOrTMnRVoCF\nJhLYHMIDmgkEhv4vL+HuBx9LejtP/TeaLyRii2BGeHAWKaBlQ8+W0zC8MksY\nu3pq\r\n=TGrk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"f29f9e23f58fbe856e2848bc98fc1fb1d10d0c24","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.18.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.2.0","eslint":"7.2.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.1","typescript":"^3.9.5","@babel/core":"^7.10.2","@babel/node":"^7.10.1","babel-eslint":"^10.1.0","@babel/register":"^7.10.1","semantic-release":"^17.0.8","@babel/preset-env":"^7.10.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.5","@typescript-eslint/parser":"^3.2.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_27.0.6_1591842896935_0.12560657300578937","host":"s3://npm-registry-packages"}},"27.0.7":{"name":"eslint-plugin-jsdoc","version":"27.0.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@27.0.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"de1211c0e5b915f9f2dc13bc58dc19acf5d05d1a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-27.0.7.tgz","fileCount":93,"integrity":"sha512-pJKQ8Nby/bQ4VjMtYF26cVU5/jckpHIN5VYij61Ie3ZQIURySh1ThOoZX7IVBYNakpRxsrCwbGmMelsxbjivVg==","signatures":[{"sig":"MEUCIDl8JazxHSjrd8x6OHF4/SUxANpy6T7aETJTlBP7Ajf1AiEA+vKMunb1uICGA5V4wmQkmpo49KLtYrhFATgF5A+f/eY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":821453,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe5ZHCCRA9TVsSAnZWagAAVpcP/jut618yGx5Nh6iiBBFh\nLiOHFjOGb3J6CjDLcPYKmMyp7wknSNenfUYJNzBszDKGQB/18b3IjtOAsyng\npFEGQ0rX7FJnvN8UHjBk39y49l2XapWhX2+x8SkEc8Fi0GNfvXoc3iMbveB4\n/uYlaEb6kM8YNNAcPYhFVGHFK8DC4yH1NhsXSwOZF+RQHRTXHXLE4sWJM5GH\nMYMkQzFBX42VvKsEm8dldh8WRjXFxHACvF6/E5wbJmlEJ1in1Uh3v6nK8dDF\nlCyRq5We3IU5Fpt7QVudQqHI34fwh7moBGkgrFqrpzJED/1n1dwpsgnIPtRq\nOK/c2nVD4Nykyc+FvVV9W1gz34UwnRJorwUImaiQ7SyxCHd4ztsgih3bllYf\n74gmQmR92SLNx/+NOAgD8BLn2hIdO60cq5azwFm6yTw19yolGkApMmwcUpV9\naOyaIJIa2ZFV4Jj/m9Yf8Ju/OIFI4HBCfAujJQD+Osf52zMGeYqIfmqDVVed\nmeGl6IBy97o67QDz1ZfESIgkbrvgDi5lrH/TFmv7qvgTtZwiAE2+Ptl4x+ox\niW5fVrSo3PNj43xvAe4YE5oWc/nyB6/nC/nhQTpWUAOH1N9BWOvmgratnU3v\nXBeufYXSj/XmdfS2uvIAWWfUWa6g1sWroS/k/ZX4KzyPPorsQa+NZYuk37pR\n8SYI\r\n=Aqs1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"bd11a73ef0e80f8c133f13de0119e5017e20a2ad","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.21.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.2.0","eslint":"7.2.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.1","typescript":"^3.9.5","@babel/core":"^7.10.2","@babel/node":"^7.10.1","babel-eslint":"^10.1.0","@babel/register":"^7.10.1","semantic-release":"^17.0.8","@babel/preset-env":"^7.10.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.5","@typescript-eslint/parser":"^3.2.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_27.0.7_1592103361008_0.9827875483251123","host":"s3://npm-registry-packages"}},"27.1.0":{"name":"eslint-plugin-jsdoc","version":"27.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@27.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b5582a969a95d5a34a6702d9f1b9500127ad2e94","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-27.1.0.tgz","fileCount":95,"integrity":"sha512-cjfyXZBibNAkGZOtBIGNetcc4EoQzUGXA4307WpQLxO/ZPY9OnveNcoyNXYO3zkSIk+WRjmNQovNjGAwCai6Lw==","signatures":[{"sig":"MEQCIAl+9ok+K+S+IFhkUfRuNXsCRDPvvLSpExSjTypl34JuAiAG7AUVAnJqIv0ssGIa7oHTOvsmutXlpiZymiJNo+3b3w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":831773,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe6a9lCRA9TVsSAnZWagAABpYP/iRx9Lhlu0rwhzFVDlD7\nn4YTCu6fifArQnQrrX7wWSQjCgzR363m8i0HprnT2lvpCIcIJcl5DFDdDOco\n9VxEXcVGbLcx53ysHEBFb94Gf/IkMQKUJDpF5wS79bsrl2/P4/01F4A+Ein5\n8DGRA9ue5YtQSYeaDXv686TcKDuT1gzVycBRwg6m/l4Saiz53qamBUeWEtYY\nFXXcTnQOT0YEDjqyd7hT4sY+s/JkoUGcicdFMh/0onsKyY4xuhU6kbeXJDZw\na2MXPEbxvT/Vy8KCd+8kii4OVOwVp8pYig2lrdWtOSU65dTejcsTBfCD9LGJ\nPl/7UBr+N7yulRiu1TZNxz4i1o3UwmG+yM1V4oV00/gExWsrBTqUD9QOTEeB\nRUI1b+rXSdiYOHPDVVw/aFTpNSPRrJDYwxibTtDbPvfH05gOaDsQT8GuiAAI\n9Q4GLxg6/B9ad9dtrvff74Az0li4b8oiVC6lLmi8SND1k+Xqv8sqAzXIe7Mg\n3Qy9v16jsrjib0RBcbxqt0qpnLX/LY/KTloLc1Z4a3Qu8Lwh0dk+DhoXfIRD\nUcwHhPTleeJPJEQM1+gr8XJzqhJfDO4EHlidEQIjhnKoAKEZu/nx8nCKiRwP\nk/A6VNg7lqkGtwxDyyAI9kxO5oAjzCUOGwrdR2FWiM9usJf2Ew73LJ0t0yU1\n581t\r\n=AJ+t\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"3d3c38b151dd2f29eb15eb1186c7459bc312d795","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.21.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.2.0","eslint":"7.2.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.1","typescript":"^3.9.5","@babel/core":"^7.10.2","@babel/node":"^7.10.1","babel-eslint":"^10.1.0","@babel/register":"^7.10.1","semantic-release":"^17.0.8","@babel/preset-env":"^7.10.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.5","@typescript-eslint/parser":"^3.2.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_27.1.0_1592373092373_0.6308338554777764","host":"s3://npm-registry-packages"}},"27.1.1":{"name":"eslint-plugin-jsdoc","version":"27.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@27.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"fe9786aaf6a2657648287ae74aaa67cda27a961b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-27.1.1.tgz","fileCount":95,"integrity":"sha512-4fBsb0mNlHg9AOTNsaJ6uCcQdQ/rHfvTFBf9f38TIM0Wtbg0eVE1C9grsdKbeCWc7IkY+QdrIq3d/Ad2QAlJ6Q==","signatures":[{"sig":"MEYCIQC6qzjkFgox0HaSDJxnG9BhRk7BG7gOmVFJZm4XUO2nnAIhALUlEcHU8c97O7SYArIga8WaZEnuAvhsuyPw9JyxcCIl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":843010,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe6cz2CRA9TVsSAnZWagAA+Q8P/ArT5U9IZjTlFPaXuzA8\nWI92kNs+9q7+PlrDQkqauybvtiLtPEgXD9qw5yY5nPtyTQM20KLsttTypJPd\nZbQiN9aGRWn3/7hRmCLIJd3KLYwZfUSMtywQHgjXB3XoZS+N2zAXsfvwZLTx\nJz6lCIeKYT2t5omvGq/RrA0Odl51sFQy3Snk5ouWaN8W5u0zE9Kf5eMw19+K\nar9Qbf/XUogo+BRV8MdYaUy0Qq5qrCD8by3jyws2FdKk/nUwOB/hW0N1MUrt\n8U8xX+ggnN3IDsoYxjEPZo/jeyCIxdxzJO1JG8nwT86ALVlmaI9ZSkvYqCvc\n47E9iZIRQPLyJCNGneH62CBTwYM96qCLjRW+SJYqwiLKKiJ2AATrPZIlwbkV\nZzeRWXU/PvGe9GdEywWsL33D/iBnQW6ucvOIji0/QV3e5pK6PUg390MZMFpT\n0FEyQLPQqMUMaxXxOFmNWsjH/B/pEW/59bW64gFlKS2/A8smb1fTNVmVUoFr\n8SVCG5DcYUaI4iS/rZjrabXQXMM9EQSb/AgurRmjz0agWwx+vgLHDLgzL8qj\nPLvxeRDob/dzia09kVwGnBnmaRaTqH2WjzhG6ra0LrGzhI/N7DD+3RtBvyzn\nhk7qFBz/KVuwALxdFYLoevlw5VH+JqXeatRSpDfSbT9cTceOpYZb85ibrdg5\nGgvr\r\n=vUaA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"fed75869bb227e16770e365be47b0d30a55ac755","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.21.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.2.0","eslint":"7.2.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.1","typescript":"^3.9.5","@babel/core":"^7.10.2","@babel/node":"^7.10.1","babel-eslint":"^10.1.0","@babel/register":"^7.10.1","semantic-release":"^17.0.8","@babel/preset-env":"^7.10.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.5","@typescript-eslint/parser":"^3.2.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_27.1.1_1592380661478_0.26855544027588896","host":"s3://npm-registry-packages"}},"27.1.2":{"name":"eslint-plugin-jsdoc","version":"27.1.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@27.1.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"76247ff14604b2170b3a959a6a0d4d0ceb3e65e7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-27.1.2.tgz","fileCount":95,"integrity":"sha512-iWrG2ZK4xrxamoMkoyzgkukdmfqWc5Ncd6K+CnwRgxrbwjQQpzmt5Kl8GB0l12R0oUK2AF+9tGFJKNGzuyz79Q==","signatures":[{"sig":"MEUCIFVarMzlo5NxvzGwvSbQus+KUIJ5ORbTgsjIUgN+OyVzAiEAjC+KB3GkHZjmK5sUw/CL2w8o2jwyWVq8GdYsRUqaRK4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":844190,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe6yoHCRA9TVsSAnZWagAAQ3cP+wRrUbRBv0omPEO6kGiC\nvdiUKQ51Z5RgqJDqyoVtDrxvnUKFHCYB2dfcDMOV7bzz6TjBOEMdNNj3OtZ+\nmX9WcXIvt3ZnvyP1WYA1tzMC+aLID//HBEYzo8X/fJAHUAHPJmorv6PJZmpU\npiSm6am0D9BaERIbq57mwOMMwcrQeNoPLC1fJ/n7/fIVnDFiPu139pbcMpt/\nFzldMYxuadUJOyAnfxV3tmCnzB+HTFLn2jY6V5UjJglUmwZtBQ0Qd5zh/XiH\nt8jutNB4eOSTsjEHHCvQDvLraaUQ9pz/WinTvCBjr1tZxJ4g530mlVfxo0Z0\n4MQyFBWj8Xa1SSBh3ZB+hCn4EAvzgvYxVuF+OLoPJbLWESnDZbAY9M7biD2d\n/luLOUWkH0c/sdLgS6uhIjq5PbIvehBcHCfmBZTluM5m+Xla9CNrPJIjgAiT\nOzOXCY8lpKJmZRRpNNDOh4XwTno5py0hSTKeh8k7HF77ctYzU6onx1MpewF+\no9gFR372m+mm4JOI8jfnMU/4w7kuPt1FSJBAqqSGbGH5nCnaPBBdCFQJuODO\n/eiKwVT07A4ZEZtRLnLdeWgHpNLLeVJyhbbeE8Hx5BSrnznLVHeLw1lv543r\n+9+n0XjBhoK0Q2vFVqkoRMIvkk6XWEs4cT1TZ2XZboifXhRh7AnVgP4xrv2R\nh2bn\r\n=CEGQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=8"},"gitHead":"d5f815912ef49e7b4654c43af7f5b4359fbf0af3","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^6.3.0","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^6.1.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^7.2.0","eslint":"7.2.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.1","typescript":"^3.9.5","@babel/core":"^7.10.2","@babel/node":"^7.10.1","babel-eslint":"^10.1.0","@babel/register":"^7.10.1","semantic-release":"^17.0.8","@babel/preset-env":"^7.10.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.5","@typescript-eslint/parser":"^3.2.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_27.1.2_1592470022484_0.3103551881388773","host":"s3://npm-registry-packages"}},"28.0.0":{"name":"eslint-plugin-jsdoc","version":"28.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@28.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e726a79b4a0e16e8602022d55e0e705e91dc0f50","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-28.0.0.tgz","fileCount":95,"integrity":"sha512-Etne7B8AQcgXrnDPXdfV4x+szHVEP+JVZ2cYNfZGn+HoaZigIOzxxJGU+QUhymz6vuz0fpzFM6fTt64XOvw69w==","signatures":[{"sig":"MEQCICbGzc4AQ2qppqxA8eAGI1kCDb0EvptnP3PKl3J6pPZiAiATSqNpQaocJB5Ho5TcX10SO8vQ8CGiFHmctZWVgl8ugw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":847441,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe7uv7CRA9TVsSAnZWagAAFWkQAJyVuQE299BCOzr8mzS8\n6dKOM8rbVyeWqBQCioQedxWWx9bKlOfxbhoAmkrlR6NTrb+lag/qQ+uZb+n7\ngeQT8E/kO9bIbhOQpABOdnSHEo4DNmKcauVtNltwdGlvvPXxbEscIxXP2uDi\nY7b/7ovPi5MKpF23hvtUHcrmllYcGfWSUP2OxP1j8dpInNfMD/NZPXFwRq+f\ng5RX2wif6MSmzR/307/ZWr8sLU3m2Wo9nZ7x64/GA1Fp/L1mdqSmIu2Lx0uC\n4xoSJEFY9Lt+UYgGNv1OjMfEkcXFHRKj0Kq6jllQAtJOtoFPj57eV5bQ4wgx\nL623YPHuvROMKJRdpbNIrWBrIRTsnXM6wh/6ZHQYJFQHe2TaFX7Kr+ElyEJ9\nzZC2XLjqfo1AK1S6rHzcxwyMNysEESS/iHQvdvoaH8ZNDeDBJY4Tz/3bowvu\ntZrb86W3o4i5mHcX7glhJvdoiz8WVIdhPCv+Wmkwe+qSXIBaujKPtVNqj8Iz\n3CRpkSDgt6451OUMCnIgTWbm25ZLCGCE1/yfNw3HRoz0g2m1QMh8yfIZMi5u\n/7ei/lOrsNXECnDws0nHud1hzfTOXu2yVkUWo8+dIEI/EPL27SQ3oSm5WCuP\nEA/4X6QAjT1lEqfVhzxqf2kA+X7MslMngfS40ttevCmpPLXtav8DiqwIEkor\nKDV5\r\n=2VnS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"f98a8e4915e0d1ef6887757670aa1d75c10a0fb2","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.18.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^7.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.3.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.3","typescript":"^3.9.5","@babel/core":"^7.10.3","@babel/node":"^7.10.3","babel-eslint":"^10.1.0","@babel/register":"^7.10.3","semantic-release":"^17.0.8","@babel/preset-env":"^7.10.3","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.6","@typescript-eslint/parser":"^3.3.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_28.0.0_1592716282459_0.42588166473691547","host":"s3://npm-registry-packages"}},"28.1.0":{"name":"eslint-plugin-jsdoc","version":"28.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@28.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c66600b0045813767e4f743058c403ee2e5917be","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-28.1.0.tgz","fileCount":95,"integrity":"sha512-jthe1Pg6s9ijsKPFbhKQucDAEOdBgCRrLQNpYakFBQtCbcPB6jqFCYI+TNsMJ3V/86W3iDdzTiqxDUCCGKi8IA==","signatures":[{"sig":"MEYCIQD5Ida+94fnC8Gvq2RwSS42gS3ZM1toATjgAB5uFI6cDgIhAIfbxRMVODqbKejkp3ogQFRhflOMttNyfmhkLJWjdwRg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":850331,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe8ZHYCRA9TVsSAnZWagAAUhYP/2NQAOK5vz1WK7ZbyueG\nU4IlaaXr1uFqB/R/s7nZaS+00R8tthwqDEsAewciLQytPTglAG2E3LIZQeTZ\no64BsH7NTSupVccMbLoItPgdPvz+rrxIAQbJXWh8xW+j44oFW+NT7CxGaOSz\n5ZYPZQcqAqwmPLMOrm6OATm8UcZpXwz/xye4YxjYQCFRyllmLN6DjeZgZTGv\nYSwgEFIE8lPxccqPHNNlcR5epAKDBBRdJKxApC3whsQslD/knOPYoF3WSsUw\nVl+3vPS4/4EVT0lXyyqcGTl/FbE84E8tD2VWEQB2jstlw5OQ+ST317+cvX2n\nGn6fjAOlrVYbCMJQlhHgBkgu89KD2cAUNKyjDQd9x8zk7eMDMG9q5pP61oGs\nGYG5yptF3yu0A0G4Ux4kQ+CVn+RlOW5pn2eTIMSRlbgFTaS88JCK0HDF9Jz5\nFk1E3n/kJMoUIQYd0Wh1v+H42jMIKUUD2sndxaZpborwfr7LuN0OmEcKfaVe\nkJLhqb/xcCyM4bjIA0FRmQE0jw3nSliNQ1a/EdLuVB+xfy+hQo27tu/ui1v9\npn0bF9h5ZdB+6yhAmL9DKihSO54oQpLTEb6HyOJNINzwF1zRJHc7QY2JTtmh\n+pIA7u0guVz10s3L7gLjecDhPzLTleOPMvTjyhihauq+AWP5M/+LIuWWBB4J\nedBj\r\n=muPA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"794aea8d30b1dd95168ccee818d720572063f2c0","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.18.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^7.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.3.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.3","typescript":"^3.9.5","@babel/core":"^7.10.3","@babel/node":"^7.10.3","babel-eslint":"^10.1.0","@babel/register":"^7.10.3","semantic-release":"^17.0.8","@babel/preset-env":"^7.10.3","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.6","@typescript-eslint/parser":"^3.3.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_28.1.0_1592889816017_0.09760123200329462","host":"s3://npm-registry-packages"}},"28.2.0":{"name":"eslint-plugin-jsdoc","version":"28.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@28.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ffd00b75757f9ad6959d421453321af94b4e9476","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-28.2.0.tgz","fileCount":95,"integrity":"sha512-ahUiIMa8oFC9lR4al3OmQMIvgc5kk7U+wJEme7F6qga9SOpcyVAsiiEo/TnM6uJm1Vz7Z2tbd5ofjuOr+LLNdA==","signatures":[{"sig":"MEUCIQD9lJqZdYgTDbBopJcbwOsEF/ZGyISa+bda5gi5Ncc02QIgFoNSw9zWfYryDeLDf6v1stfrnMHW5LbTpFdY/nabznA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":851209,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe8ZKuCRA9TVsSAnZWagAAgY4P/iLNPFNrIeHuHoguFGYz\nxt7ZKMsLEz9xZfj+wKwHGp/gkaeiEpLaHeou78qlUFus9wvFgVfzIDi92BUy\nfmEAZ92Xt9zhfkheNdTravPFgXIYWQU8pyJRRFRbCH2/CENWD9rVHRsS8YBt\nErSLi5KK83lE7j8SXc5IY+lr7CzjrBwI/Rauip0sohbRG1owj+XRpvR0gc5l\nFGdDH+VQZcbs4E8uq4BGBzgXrf8hrNflbW1YchqkE43HaAky00fs/zp93bcy\nEkDmQYxIHMWcmCFJV0gYGzeSik1W7T6j7FmmrHACQfK7FtLFis+g4XaU3WtH\ng/ALkqB80B8lC+uiRtrp7G7S9jwcrEfgPEBhyaLi+19wkqnwCFKYy4o5QaA1\nX8nhGIt3yFdeeS31WtziRnK8PLyeU7IsUxxtIMMVY0Q8UYndr19+WDIArHlK\nCjlSC2IkdbCWOwCPHCw6RMAMb3io3i3AhRm3ladfxn15CL2cbAjWeOIB15fH\nKvFQzPaoGOT3igb8T/X+BESb+NNuEbntI37qd+VnxjLvrUJEq+WDef509h4T\nJ55cGVRBat+3AnyhgQIZpy2iKj0XjPIOgHlDPa5K1FCWS7soV9p3wLcXAkLN\nEVHcwnH//POT8z1+kQUUGkhv8ONqhTvq/7grr15aPkox8xYCrrh6sy+8S6YP\nFwbk\r\n=cRqP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"fceb74cd95629dc058fe6b2387d922c0a579f830","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^7.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.3.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.3","typescript":"^3.9.5","@babel/core":"^7.10.3","@babel/node":"^7.10.3","babel-eslint":"^10.1.0","@babel/register":"^7.10.3","semantic-release":"^17.0.8","@babel/preset-env":"^7.10.3","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.6","@typescript-eslint/parser":"^3.3.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_28.2.0_1592890029492_0.626716561160297","host":"s3://npm-registry-packages"}},"28.3.0":{"name":"eslint-plugin-jsdoc","version":"28.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@28.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"83785daa8dc31eafcaa9466fa611495b618ce3a9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-28.3.0.tgz","fileCount":95,"integrity":"sha512-SmuQDYNdzyVyGC0ipuspFd+JvDCAwXE7GlqD8xqIKHPEFrJwmD4vPXbKeLv5cXgYhaicc7DDA4P4VSNnUB1Hfw==","signatures":[{"sig":"MEYCIQCsmWDPwLZxploicRWqTE3wjAH889TrU+93yrc8/mYwlgIhAKOlD72saJ19XcPazxkwmwtSwLT2BSlMlulpkW/Wg7ak","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":852429,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe8ZXaCRA9TVsSAnZWagAAO9gQAIo58FJb52iN+qUqCpat\nlKfo8SkbXWng2EikIop1S0xQ/ebjwV43HIr+L5MABS1YtN9sNE8itshkf7A+\nowreFoAAPG5rD0uPaqH2oykLKHpjIOP+oAFedmfGwxgQfk1nW54XfX9qMUEW\nPHQe/6XJV6X8Bk1OoNnjaCoMS7j/VCpyeM76tn8iyOESrswdpyb8wUz9//Qj\nEZqihkpMOT3+Xg8dbOnO71PSpru4t++Sjemr40PoPJJdTuc26Z4OQjQr58zv\nQXIrOVk3EYebFJi4V9DNPk633cadC42Z3mKC9qcSyEnVge0KyIMo8wZNLKJr\nJRnO2ONQG7Qn4rh553X6NiTQZ2zWKKN+5kKlUbyKrwbYLx7uSVXTcHBGSVvL\nZCGc+mdNp28bAzebm0tJc+HT+V5CNKAumdI4ZFL8CEIyLrxls+f7/Smzk6qm\nH1+tbsI+ahWtCA2iHr+A5xX/6MNfi1A8RqWOC9xB08TI8kbH5xMoemW65/1T\n0fzEj+yrSGmwCa8E/8NL3SmPj8qY+ySrvdnAE3aph7q5OSEin4R6Kfo4JW6l\nOWBZIxsiTNjY9ZA60SihuFL0s+85QP5p65b17QDgTs/EabZRr1kELQ2ZGBTG\nGTaM+C0PPZWlGCpBNzewvOyPpHCLO+oHo140kqtr7gZn/FD8IHkYNSHDvfAT\nLjxC\r\n=T+By\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"8dfdd0bdb2dc4c7051d45eb9cdb7ffbb43f38506","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.21.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^7.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.3.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.3","typescript":"^3.9.5","@babel/core":"^7.10.3","@babel/node":"^7.10.3","babel-eslint":"^10.1.0","@babel/register":"^7.10.3","semantic-release":"^17.0.8","@babel/preset-env":"^7.10.3","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.6","@typescript-eslint/parser":"^3.3.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_28.3.0_1592890842384_0.491249087673306","host":"s3://npm-registry-packages"}},"28.4.0":{"name":"eslint-plugin-jsdoc","version":"28.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@28.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b8a22e183559e523241da45835a5ad087065723d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-28.4.0.tgz","fileCount":95,"integrity":"sha512-VXCVbNK+Qhgo8jm3DDBtSpKn60d8+uP8tdTJ/Frk41epzJmDJBSajZb/QvBRi7wtg03Qi7v9vgg2TrmHPm4O3w==","signatures":[{"sig":"MEUCIQC0ZpAIvCIS69XgX8gFkaAW/DoJfMb66Vh/cMOH4H88wAIgf4AcxEcvgC2YmoZ8xczcwZRocEKp2fzDPjw2yjKLwD8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":853875,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe8ZfqCRA9TVsSAnZWagAAwWEP/RGHrcU8NbVbwkUXatTe\n7VySLjIt9IbKdLmYGLH7KJvPXqli+qIoGY4LEUp/pHLYeShYabduVEKOS47C\nLbQMnDK6keM1q3keq599NIci30F+OnQuthPTOHrTxjZdalHdX+v/COVUPCEn\nWBRYHzArK8K1TOLO3puGmtn6s7Zvx/42NQmixs3AYtg7mGYC7yuaCqRrkSYQ\n7OnOgp4gRlvEc+prvERDaZ+QNXio65B/z7BQgIZgliPmmG/EpJark9pV2yYE\niblnz8m/U3VOzk8+Mk2fjlcIc502azcBj5dePb0hV9UbF7zvD1gXAUhVrYeJ\nJr1vFX592VStLrGALln5+YSosDKlN8rYHW3WZLrPsaGdGU8tgk8xG12nIl+2\nPx8SMupb5DXPMFjVF54YYgoqWtJfELYOJIngmtgOdS9jHdD/uyktl7bYjP5s\nRtWTO24m+ln4rO8LbBP+heP4pZLcD32P5sUYgJvUkubRW1V3nUxiGoIjSIV7\nWb3UspGI+1Pl5kOMLKPtkYkqIWZrL6EaT7Vewnuz8eLcGH/W/0vP7Ieofqmw\nQiXgd6dVNwpxUjlQ0440UOBmY7hezaibMhhRL3Mj+8HCPtC2Li0KPJs8Ii2N\njWNtCYYIqp8wLDwvEXLN65qj8+YHBnaJlyxDmbhQ7bWihzmz6ZgMKfOLonio\nP2LX\r\n=Tvmb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"947836a51df2eee5bb0e1aa21042e44bc4f55465","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^7.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.3.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.3","typescript":"^3.9.5","@babel/core":"^7.10.3","@babel/node":"^7.10.3","babel-eslint":"^10.1.0","@babel/register":"^7.10.3","semantic-release":"^17.0.8","@babel/preset-env":"^7.10.3","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.6","@typescript-eslint/parser":"^3.3.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_28.4.0_1592891369499_0.28371561916243393","host":"s3://npm-registry-packages"}},"28.5.0":{"name":"eslint-plugin-jsdoc","version":"28.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@28.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5f4474d08370242a557578094ca168f4f513cc92","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-28.5.0.tgz","fileCount":95,"integrity":"sha512-3bhKsStYmezCvgnZzuXFYQANo7L7jxQdKrDB97dT8/EBrPrfsAPlpcmQy6gEfPkODdmoKbBwl8y7z2DbqM/noA==","signatures":[{"sig":"MEQCIBPDZHEmPHb3M7ONpBw8KbqfoU1UdIFmOIx2gm/yysQiAiAKlUZM3QunoolHNrRnFSk7u4txj9rR6Jd+xgYpjlUeKg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":856979,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe8ZuqCRA9TVsSAnZWagAATLwP/0qsqkv/9sXwbjxNkFms\nfVPBbOlFcnoM8woMHQvlWXjqBqnmMBrQvp+Ub4J7Lm2VQZxPxYgjjc6XOs1j\nx9I+SCnBkSYRNsjwGXaDMn34MLhQK9BroMAr24AK59nzppCdI6uMHO+7gSOx\nTL3gepOAx+kU4BOzzVCM0Wjt0gHH/3tj902ktHG84CkLEMym8/3FpoIofySD\nKv7iti/GKGnOZ///cZN4yRl6rj9uakAUqWDqvFdYUTGIxs+3mOIO1NZWXk2o\nyRpU0HFrHCuf+ypce7x5soo1tFFC0PX1QlJfb2zLSEnVWbCt2W0XX+0t/zQz\n2PfSxva7BYxEONEzblpOXBxFwq8s/zXxhLCx/F5UwnvP4RsM54WXaf0EoNes\n5FSQkIHa0PKuA5t0CLEPum1hZ9loWA1fadUfUMyuPQc5rheBFX9hlTgZC9RY\n24RBK7ie2Xb1eytq4OtU2/T2BK2oxgGICc1kRJYprHqTD/GXMIJFXjUuYqhg\nZQxQSOify+oDyC5AfmWuzlIl8O2lXOApAPdGo6SOglkO4tewJ9rzg80gAc/c\nNlNxf/2FJDggjWzVe30ql7oeHADXFo2uQ6RUC8McWGMlZNUAROhQF/IVTWmo\ncm6AftIEUXTsv7APOA9diC5VqanA1S6frQnLSCLR4eFS9TYhq+MKeHh/JuxB\nJ2ER\r\n=IpB3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"37cb092dad7e229c2b5437f9ebc3362ed68c8be5","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.18.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^7.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.3.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.3","typescript":"^3.9.5","@babel/core":"^7.10.3","@babel/node":"^7.10.3","babel-eslint":"^10.1.0","@babel/register":"^7.10.3","semantic-release":"^17.1.0","@babel/preset-env":"^7.10.3","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.6","@typescript-eslint/parser":"^3.4.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_28.5.0_1592892329770_0.10318489860899782","host":"s3://npm-registry-packages"}},"28.5.1":{"name":"eslint-plugin-jsdoc","version":"28.5.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@28.5.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5a95ee8705af389ba2062a1036be6077b5e62f3f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-28.5.1.tgz","fileCount":95,"integrity":"sha512-1XSWu8UnGwqO8mX3XKGofffL83VRt00ptq0m5OrTLFDN3At4x+/pJ8YHJONKhGC35TtjskcS9/RR6F9pjQ8c+w==","signatures":[{"sig":"MEYCIQDnAp99k/tNadki6H4Hu/Vj2ydNhTt4wrM7+G6Qeze7lgIhAOytYhXIsqWv6Y+WDowU+YgZNPYc39ULuZ9rRTv+IhMv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":858914,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe8dA4CRA9TVsSAnZWagAA7dcP/i6ijbMtV4dmyXJUlLQS\nDe7MNG/MbpUqUbQrmAmFR1D+1WcMG49nU33cGX0THi7DUjCZTBj3DPhFWvEY\nzSfD7Wn0pwYpeLuSAdzlyiDVFFK98qJsgTs921TYakY18Djgr+WWHKyBed2f\nNpZPPdfcEn03cVVOrkD6dhHAfRqmvimptLSBBXSVArPjoBajzHXc+flrOS+M\nv3u6Hdu5vrTL65dQ4gCfoyS/9wzLAjeRuL6SaqI1lE6YVKR9ZnxkemcdLH66\neXuaHSqOsOT812Unj6ttCzk5G42z0HQGuYrAAQt5FkFvEDi52hMqJjstQvmf\nlBG1jjxF18wg2v5xcOO+qzqAWAuMyybWxLYOu1L49p6T9H4my55EkZ14YqAt\n4d3X+BCAdJ8PBba2NH6/R35olkFP1XA7RoM68wE6J5pgMynTyEU95C++JZVZ\n+pE0GEJJqomLUYv3d9Ep8IchKoxhhDAhN6Rc1aISAU1fFwoSgzQx5ezqAq5Z\nSXmjQDCVJfbZwYHHUr6snm8gdbStNP0YGWNtEaU/HqX4CuPKfcKKGTEb2H+4\nJiLoUdWLJZtcfRsDwmRB7nFGY3e4TzVoUNWuN99DN6/+Nx/KBl65ONpAm85C\nmsCHmU+BK0Ldf6XNuVkEbHedNgdSv4L4pw33SvLDqjyUwGmoyJAEZ50yINEE\nbzKJ\r\n=e6CX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"efad408b044829a964150ddbc0858fcf97a0b3b3","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.4.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^7.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.3.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.3","typescript":"^3.9.5","@babel/core":"^7.10.3","@babel/node":"^7.10.3","babel-eslint":"^10.1.0","@babel/register":"^7.10.3","semantic-release":"^17.1.0","@babel/preset-env":"^7.10.3","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.6","@typescript-eslint/parser":"^3.4.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_28.5.1_1592905783598_0.7701310433560453","host":"s3://npm-registry-packages"}},"28.6.0":{"name":"eslint-plugin-jsdoc","version":"28.6.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@28.6.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4fc214a6e2a71e239a69104ff4bb1f8843a2fe49","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-28.6.0.tgz","fileCount":95,"integrity":"sha512-4BeFeu5l+1KWQ8Ghq/3JKP4xTB2geocgT7WT3lU/SV8k0p1Uh3qyg5Uu8AmmeVgwODvj5Dihq5NAzGU9Ir0Saw==","signatures":[{"sig":"MEQCICoPbqDAqDBT26Rj7frkKuvmQVln+RhIZ7j154BCxA+8AiB33hkW4nf0LE/C8VNHouerfobVssuG8RwlxyhrDCTyPQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":859661,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe+8pUCRA9TVsSAnZWagAAYY4P/jp8RrK2q5GaKHBGbmm8\n8705PJf1eiTALrKpHa65V6+MYMW7kxwy4hBPL1BQh/ayztBdc0Bb1JBBuo8p\nxb8ruIgwoJ/yzzgPMYrJM3nB+WrQfXL7E2EN2NxKFbN+AwOLF65tRZvZ7Kdj\n0tKBaYW2nQRcvwOahYD6fOMTAKVnDub6l4GdVHFeMpKuBevZzCivijftRtES\nEzO4p1/ZxjpnszUPb5coIYzGhlLjh3EJrpfjSV5PCg2l6TW7K4NEuIkZPJp1\nFfCL5fCh5Q+kTaftcevGAWPq7LhHdh43UIJsAaDef2xahnSghccPQFNp1GF0\nfnpjF15BZg5nLFnppPgAiY4QPA7xv+QKiG2IoGXKwpl+F191mXnHoL1fIxnB\nVbZWZ88EUvhtRIMUdXi/9Um7zUboR6310o6adluaOtEfEPqczbbnSVZx1orE\nBzg9ruIfB7zL10vyjdZoytjCKS3CvALKXT8c8nk8tSydQ3ozSG5mqDq/q3/D\ntuJ1RHYuKU19N3r461ZBvI9tnR4LzVFo5EX5nQcq7L+OnTFmJpRkNrL6zJfz\nD7lUg1+diAZ2iJkhelMzIiOO/fCnivW3wUhWPxgB3OKRQnn2DVXt8EbBW3O3\naPSBMcN0uhaGf2+fJGf3ugmpuLWa+kf0Ep1qZuy9hZX+XX848EzbrhIGc+ka\nbSOp\r\n=7LU4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"c39fd758fe5f4f557d5dac0b69c661ab583f0d18","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.18.2","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^7.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.3.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.3","typescript":"^3.9.5","@babel/core":"^7.10.3","@babel/node":"^7.10.3","babel-eslint":"^10.1.0","@babel/register":"^7.10.3","semantic-release":"^17.1.1","@babel/preset-env":"^7.10.3","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.6","@typescript-eslint/parser":"^3.4.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_28.6.0_1593559635615_0.6847400233089918","host":"s3://npm-registry-packages"}},"28.6.1":{"name":"eslint-plugin-jsdoc","version":"28.6.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@28.6.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c9e9da59d0d3cef4fb45ffb91c0acde43af4e418","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-28.6.1.tgz","fileCount":95,"integrity":"sha512-Z3y7hcNPDuhL339D1KOf9SY8pMAxYxhaG4QLtu3KVn20k/hNF1u6WQv44wvuSCb6OfPJ4say37RUlSNqIjR+mw==","signatures":[{"sig":"MEQCICB3/B6Rs0tCqZmSRX1wYvQ+64BB8XISH4Fpm4cshJ6+AiBL89b65UZuYFSWbqVrOGi9uzc2iCg5lwBf4kS+SjbQOg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":860125,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe/F5uCRA9TVsSAnZWagAAKrsP/if2zhtIJAhy02CcK/Gh\nwARboaNk3EqwijlemuyjZvbODNSEAzvWgJdrJ3IRnHYdptrWksEMFmbmKyA1\nCZo8kM4KApOiO9S0CP/ePU/qHtvTC+ukNVO9Au2b6IBu77sY8Yv6SpXRML9T\nx8cLmDrO0MKIwYo+s0wgONSnyqSLMI4OF8HZI//GwiGBWf3qv2CT3xtJ8h8L\nDwPKBVCiKD0kreJ4SVEBil6/wAuKUFYYDXJ2+NlOgQw9rB0JMuonLgG0i8sK\n8Q3FT0Rfzk1pI+iT1EtMS0u27I+Jh9GtB5OTwmFxZ1wtFhPWjOxLlvkO2WAB\nMG1jZDRzEv10384pgYLJsmHPBo4XOy1kZOEKQf0sT1MZbVPXwY2gQcApxWSx\ncjR2X5j/Wd9q2znYgkS6TSRCt55no7GCt4zSKd90bK1E768ktykdGqC/TxC0\nVwvad5zb1CDm39EWdOLEEqfJm5NyxCk3LBco/zyIYkBVWVEktS5Vn/JCGQGK\nb0ydkiyDFhDMuEXC8BCWxRV3pQV9ny1kwXCQ46DiyC3hQP/yPyVSMPpOoLBh\nOm4c6iqOYtRcF57LvZ0C0cnXPL62TXDJCF0lSF5CTTq4MiDgBr9744m6JTPV\nUPB7zgW8KcA5kwmvBk3Jwz3q+wRuxCbLI4I0Ucom+yz0zqGejZeDYSOHtjWv\nujfy\r\n=KFYr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"ef35f91da15ce97a3769ea2dcb7313f83a9bf78b","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.5.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^7.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.3.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.3","typescript":"^3.9.5","@babel/core":"^7.10.3","@babel/node":"^7.10.3","babel-eslint":"^10.1.0","@babel/register":"^7.10.3","semantic-release":"^17.1.1","@babel/preset-env":"^7.10.3","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.0.6","@typescript-eslint/parser":"^3.4.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_28.6.1_1593597549910_0.43204450905234726","host":"s3://npm-registry-packages"}},"28.7.0":{"name":"eslint-plugin-jsdoc","version":"28.7.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@28.7.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"94600cdd5462fc7d8c832a672bc7efed8324adb8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-28.7.0.tgz","fileCount":95,"integrity":"sha512-+iLTot3brWZCq7tm+YmMAHpZHgDPH8JMMETBSrsDXU+IxdkOvqlPoDj2dQOdcImUqaVVhvdIyvrHiuFGtz1cUA==","signatures":[{"sig":"MEYCIQCW1DR9QGXtjLG/0IFCNF1AIkCUeV/x9/0CSaHjWTIQmwIhAJL6Q27y9kqHtjOq/6mn1s3J5br9ecwOzv4toYS5k6Sg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":865916,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfBWnsCRA9TVsSAnZWagAASogP/jGzSe5y+xO2jWPXfyB6\nycT/sPv8hS6oAPFokrLuDg2Z6c+3hPGykFq9+k4qGh8SBjxVbe8lSA+U8Oda\nb82NnRz98T8P+P1talvYcwKHr40QZX8XMpPnVI5zYqKvADHi80wqCJisRiME\nt91e802pLD4J6qWR0c7y5HVPdU2kQhGM9+wkVXWGCp2w2aqguoOn8nRgWgEw\nZi2pOQWfEe+elmlz/aD+pTDoe0yjKhLzlVk1YKio9mDiEggGy3wiSavR5Ibh\n4g9zWzY0hB7lxxsXfCO3VE/JaHnl8SiaY1xp7bfuB+pt8MNrYq4pb1ryGGEs\n/PcTi4BQL1SbO3eouP/1KrNtnEkiy9NsqmVXkhFB5K3wi10F0+QoPHoE1Vps\nF26O004GU1gE0prpwYFDKyPZHGOd0jaeH83CjA1wBatHH178mKWn12fR9+yq\n+6pfOEOdVgB8tvts/acYHQqL1/KxVb0DN8UrR3tXk+Lw0BdUXXpDL54r8dQs\nQ8d+hLJDPQCY4qqVncG2+QjTSNZzI6NRhVwyvAQsPyw2PDmTCGC75+BbJ0V0\nl4t4oxDbQnIp6vATm2AfzUKKNBK5FOgVFpPdfwLA0R1zW6lb7XS6uODxTWcO\nX9ZneZ0/t1TGzWvoYuguAA2BSyMHKMfm6dnO0i3ws79eJORntYABckP3YIh/\nGgh3\r\n=wNpb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"5409f25a72134b77ae8fdb8772b59036a6de9970","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.5.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^7.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.4.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.4","typescript":"^3.9.6","@babel/core":"^7.10.4","@babel/node":"^7.10.4","babel-eslint":"^10.1.0","@babel/register":"^7.10.4","semantic-release":"^17.1.1","@babel/preset-env":"^7.10.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.1.0","@typescript-eslint/parser":"^3.5.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_28.7.0_1594190315995_0.6084765059639263","host":"s3://npm-registry-packages"}},"29.0.0":{"name":"eslint-plugin-jsdoc","version":"29.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@29.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9add3a589129073837226a817859b9d6971c521c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-29.0.0.tgz","fileCount":95,"integrity":"sha512-bfgV/fQF+66fFBrKHsAxcSK0bsJNBU9W4nVKOMGEzp8B4iZHvbUlxxjbEHPRZBn+iE5o04TR+ZY7AJtVQoLMIg==","signatures":[{"sig":"MEUCIQD0Tkr142K+DuTOrW8lrwpKUa5Ziprmpfem2nJJq3qJUwIgT09ePnqTn0t6G3iD2UanqvmgkaOz5hsqgQq1OBL14L0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":865940,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfBW1yCRA9TVsSAnZWagAALG4P/2brkYz/NZvXNKq2GFLZ\nNIjXnzN1zIWZaCFDmAZYzTJcqNzMihrXPjr6l43MlAOrE12sGmlAMGQ/Cq//\ni21dtFe8BHCMwSwiKYDm1ETZdSTHyHsQdjOwL35n/3RDzm6ptLIxOvCsXfua\nEvDpfmMel0i4btZmaegIobmuii032BLCJEmvR5J6tp0PacKwrgjiNsjf/Fh1\nPsD3+m1hYOpddJJOc/RLmw7pRYScU/u9e7CHT1aiUPPwgVhJsHC1Z9oqpVi3\n5AfaA6hZBDXFXbLP4w2O/PjfXiNZtUVyPx52BrdAEcM7SuPZtgeH9r9pFpei\nYkhFIZqi8QuMsA5qz5Juyg1GGNLHUcF51NZvhdoZ+SZy86LwT4y+Xxigh194\nNJU1b+85Ql82aTEkdXWop4/paTkXx8Jm53eih6ivjI/0WiOEQ+czZKuuZt19\nTY9BmNQfIrmCKKHJmTJZi4GDZmvYwqFvlHIsgnH7gWWHqDGqO5MPvwlRKLaP\nSIU0O9AvVmjsFe5nUtcYSc6QbcDaicpVYRlG72oLMsGPLeFlI8PdvzaEjBlr\nmWqJDo6NcpskWynfA8hAcz8xX1K20qEeKkyTzeiSXccdnNuIs5MAWzkenJKS\nZ0FiScYE1ttpLVZ+WmYd519eBxp9i93t5Rozzq3/4I0gPNNFPa4+dkmU0iSy\nI/GU\r\n=Do+L\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"96dcdced66c9a8cfab09387dd76b752cb79d0718","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.5.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^8.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.4.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.4","typescript":"^3.9.6","@babel/core":"^7.10.4","@babel/node":"^7.10.4","babel-eslint":"^10.1.0","@babel/register":"^7.10.4","semantic-release":"^17.1.1","@babel/preset-env":"^7.10.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.1.0","@typescript-eslint/parser":"^3.5.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_29.0.0_1594191218169_0.18503417201696992","host":"s3://npm-registry-packages"}},"29.1.0":{"name":"eslint-plugin-jsdoc","version":"29.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@29.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"0a9c2e77b9b839ddc912f205ef13b8baa556e2c8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-29.1.0.tgz","fileCount":95,"integrity":"sha512-9eWE/AXElLff8LQJqxDySWK4ptk5O3vAc2XMB3rkg3W7iNqq1l423lkL3jdOeUNlSEBQUZPvqZdEYIeqlYV6kQ==","signatures":[{"sig":"MEUCIFxwqab81eUvMqqLNMR67Hq0El+025ABVbHaM/L3eTiYAiEApsGDyB2sxBrdKEtGtXzrTNTJmAvK9viQ/o0GYhAWbyk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":867673,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfBW47CRA9TVsSAnZWagAAPowP/jgmMzwpF4DwFd01TEXU\nDxGKtXkL2Ww+kMz7vlETgfrnQ7MMmOZAFBY5wCoKPKdLQgkthzSWDKocvyrW\nb1bZgvU5TdwJzQZCwmFxmP9qZxSV5pYW0Rbvoswxd9FUBLTxQgXbPBlf6IEf\n5VAuMwJWn8syrdRZEvfCVs07+0T6HPr4HUxmIeG9BGQnsyCMczV3X2FUKpTG\n1Pdy89f91nBnLlQeEcWSzd+60beDpR8eUhsNfo7HJy6TJPqj4j+lZB6CLBEv\nAhu/E/O0MkrK9jCQzNHPxV5sbB3wO8UHxz2wuoZ8NFZ4t/+9FEeVu94iVEuX\nsNVHKXb7WwTBNLuImrmlxQ35uukOxXrJvGdUWzAgi1GZeIY8RoCiQPRupNo9\nuv7g+GcVtCRtdjcrhRZmK55AXapw52+TX0zbhnvCzhn2oJDIPWKpRBbwGaTo\ndcn3VNz8frP7SvIoiVRhGgKd+z6X9ne3uDq1Vol62eFgwtRYfpScqk41qdlH\nnEKxYEOn6yMIHJXfxXN8HBo0Zi0AxmrQ/0v2eXr6Z3qbeD20Pa4DUZ2uOnat\nCK892sBntSv5PAel00g1QTaGpPC55zw72qoVFtT45o++jMIYdXLkmLDgKCrD\nYCY8RptTWtsgoyF7WIsCxBxehPEOL3/20u97F7Fn6VI6bFnWn/V6Cq23ml0j\nTJry\r\n=3WO9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"82ca86899f1dd25e9ccc9814a676e6e249ca26c5","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.5.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^8.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.4.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.4","typescript":"^3.9.6","@babel/core":"^7.10.4","@babel/node":"^7.10.4","babel-eslint":"^10.1.0","@babel/register":"^7.10.4","semantic-release":"^17.1.1","@babel/preset-env":"^7.10.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.1.0","@typescript-eslint/parser":"^3.5.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_29.1.0_1594191418894_0.17487779758170796","host":"s3://npm-registry-packages"}},"29.1.1":{"name":"eslint-plugin-jsdoc","version":"29.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@29.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"cf106cf983fdafc226c4b18293fb850b306c92a7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-29.1.1.tgz","fileCount":95,"integrity":"sha512-FnngSVTAuh4sLLDEteKTLaLVwnbwjOvdWrguUHfzKDupf3RRvaRDP7K2I5wveG6Qxat+hAtc2lS/zKH6dWj2Pg==","signatures":[{"sig":"MEQCICnGEj9mGQ7MU4iJ8m6XYUU2UdE11h+ohnzmbSAIAdGjAiBTj9Kq0jIDcK76muF93LXG0GzXsuKTDPu/duEOJzRCxg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":870260,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfBrx0CRA9TVsSAnZWagAASuwP/RG1hNVvMVuvFAXWZxAo\nUKh3FV9HTDSxdj6zgFEP2zC/ibLqfjdhy7F7UATLijIp1ycnRcAdX3U8lS4E\nsdotfKv/6ERLkd8Fmt7jYdYp+nTrnPcXWL+IWEkTR4XtJ/rxQCt3d31fUeYN\nOYHhu1K+9POaAv+HdOtORn60rdE9CtYqi7u7ez0wVXzNDKQjldY07woU9+0k\nplgoEAgnnbNsvx4U6ZDavaY7+BALSPgxllx/ovhFxdhOKiH95LF6Nn3HAf8G\ncQ3SaMJrkgQHcwX4A6iWElCPQ7KHWaeZfyv7ONASd7YNiVpxlRnrZo7NQkhd\ncG9H9thzj1n7hhoHR3FdLUloH2CJvJvpOwy1hvyJ2ix0CyvYjhd32wVNKkTt\nLtyu5lSsR2BsLdtiq7Oxwkp2DP1kp6KZoO8qsjzorpMHnZkauPQq3tyr8C2H\n0jc5XKGDNWXMmzEKw0mRuaEFzpq2sQkCQ+q9QVIVv9Rwo/r2510HaeL1TW0S\nvcQGDt/3pDugfunadC8A6gKL1zOhFBPLCEmWWCRaD0L0rWEAA1Wfxb84+7hK\nRTXqQ0bbhf3yImbSr8NUkTGBs2K8RXIZ//2eCyuymUrhrvvFJwMEbDr8ViRF\nplywA5mjlApzW5FuCu/pT5QwhhZEbxi002u0+9cRybaKtQLaux1m02d5uqg4\nmd4P\r\n=YzD8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"64e1b64beb18867f6c6973c579756c2d20a84a74","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.5.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^8.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.4.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.4","typescript":"^3.9.6","@babel/core":"^7.10.4","@babel/node":"^7.10.4","babel-eslint":"^10.1.0","@babel/register":"^7.10.4","semantic-release":"^17.1.1","@babel/preset-env":"^7.10.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.1.0","@typescript-eslint/parser":"^3.5.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_29.1.1_1594276979273_0.8908175031696244","host":"s3://npm-registry-packages"}},"29.1.2":{"name":"eslint-plugin-jsdoc","version":"29.1.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@29.1.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"542beba99946cb8d184e5261ebc632b24673f825","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-29.1.2.tgz","fileCount":95,"integrity":"sha512-s1uJcPcjZQ4Z5i98T3zWkp/gzJ9AtHGXXg0zxd0wCnFzX8RQU6awdUokUlBFMoWZJZxdCAXDtEIQBRfr/Lrsjw==","signatures":[{"sig":"MEUCIDdHuXWfE5Hi1ebFAgvbSQjTBgUaFTN67v0dhZ5ysGsTAiEAlf7MmMdKTJBQA1zuCR7Q954e68zVKjlfdnh6JFDjiw4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":872576,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfBsbLCRA9TVsSAnZWagAACU4P/j0txi7CWQl5uWwr/pJU\n63VtWiezypHompn3bzdZL9Pg7JmegZfAGGoYnUW6xY6icgC4YyZWk7kIWuwj\n9a+pXJIEe3zAUYMPGZO5pSNoAVJO8V1B20YI8JDaMYYg/YcYu/T5uyCxpri6\nBOJsujaCrSBkyF30TKWSgAHyOteVOqTHFOC1Ka6ZV6l2B7eqnluqW5EJR6U7\nxL8JeP/a4r9ZWOdAOd2i34d8FPkJEoTjMvLNY7MNqb07Pio4F0N0CniT/YlN\n5CwYDaZlmzO2RkYvR3DMWzEUKqoIb9+1GxP2W3fmLFStpQDmihNcDV9yNzoY\naW7hfxUSs1x02VfPgJiDtSTS6rz3PvpxFOi234VgMQhjl+uoaRrFKCFgizzM\nuO/qNt0aNdxSKD+29X8BYtUA8dVF+PKPymDD39bD/hLrQrRqcrDsPQbqiz/y\ntAmu4NR7kio/Pn8HAwOY7YE0L0YN41lYCKo6nWb6n46HzLzhVyMfn4to9sV6\n2IEEqRRYMqGzSgk038J6NrMuJST01qEm9EgJ/CI4epSeQIqNgfeYFW6/3g3q\nouH+ppumC2KP5ZskSKlgzsF9JgPhvmG8JGFKPrSlSiKZRjLhzNnG2PUdjIZ5\nQ8X+TVJlHxbytfzSYBpfSr2veZnJyMlblRY1PfHRXc8O2zxV4m3NiNFRmmz4\n/C4l\r\n=/0gj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"1842fd2186a479477b00b542fd81b495cb0be726","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.21.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^8.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.4.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.4","typescript":"^3.9.6","@babel/core":"^7.10.4","@babel/node":"^7.10.4","babel-eslint":"^10.1.0","@babel/register":"^7.10.4","semantic-release":"^17.1.1","@babel/preset-env":"^7.10.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.1.0","@typescript-eslint/parser":"^3.5.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_29.1.2_1594279627114_0.7146124326914627","host":"s3://npm-registry-packages"}},"29.1.3":{"name":"eslint-plugin-jsdoc","version":"29.1.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@29.1.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"288c3faf142fbf78e6abff6a838db23af8d6749f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-29.1.3.tgz","fileCount":95,"integrity":"sha512-HEB8jPsWBGu++LffL4K8VZ7VXz0HELI1I3Qkv/+5oSekgrAo6I0AVgl5abecLbTQQZo0OaEcmTptiIspwDOu1w==","signatures":[{"sig":"MEYCIQDcBiT6IeklZtsPHEOqE9LKQ3ARHotSTlKu9KbVkMlDHQIhANx5dbDYfMtE7rd0lehC94xwcXVuP795KDfEJmdF6ZjQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":872647,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfB01zCRA9TVsSAnZWagAAMuYP/i7oPZg3vdhcaiZ455nU\ngl+W2jFj01SauSXgqZH1891AmRMqT/srDPW4zKB1trd2E6qOk25gm/cwuXPS\nxA379ZyHiSzIqL3mg/uSMtH0OGemBE/nKmVNLyqbO3+pgcX61sHBlE7Vskhk\njFey49iMAwpTSH2GUpGxfkQHpFrfEDm9d+ban2EkUB2e8YRHbwkGQx6dHuZj\n3D/gfiv/5Zx86UGx7b7WUy2vMOrRxDzngNEEzjnvIvmBjK7GMxthKs7HHmjr\n1BPYmT5fOmCCfjuKeecd2+4kp+eusXNuoqzRdSXTFeGtP2sUTG8Ue1jO0zyr\nJacvsQtQUJcNeg0xVFKi1Zj8SmXuKUNSp3sPv+PZeSSbY4PUJPs4OPkpbdyJ\nvQvhvvs12yUFDkNrahtGP6iq+6ST9neiwsVW3m9dJldbXEJ5lbi7UrbNZI3k\niibflnR4838BmhKDUDeoYYYae73b08T3N7foItVeoTlzIGIJN/cAOJKxm6Le\nayBin05d4PvvDWsHM3vjYW4Q0W3SOt5TNXu45n2UVhQEF+dNRyQ4mt9Pb9jl\n44hLa+hqTGequWk2nExNQSrqt5HPXFvQib6sLpN3hTX/nJK3WyLAUAPeVMiG\nh7e5eEgNnKv+jg+QIG6hEkhz2eK9HrIUb/e0GXBYEOvHmAdX8bzkP536Fjvn\nAQrk\r\n=Jknu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"4dfbc8df497013075028a3964bd546f45fa3abda","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.18.2","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^8.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.4.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.4","typescript":"^3.9.6","@babel/core":"^7.10.4","@babel/node":"^7.10.4","babel-eslint":"^10.1.0","@babel/register":"^7.10.4","semantic-release":"^17.1.1","@babel/preset-env":"^7.10.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.1.0","@typescript-eslint/parser":"^3.5.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_29.1.3_1594314098803_0.34363211491302215","host":"s3://npm-registry-packages"}},"29.1.4":{"name":"eslint-plugin-jsdoc","version":"29.1.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@29.1.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ca5b6e1952ecc1efb743c1ec572d3db15edc3859","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-29.1.4.tgz","fileCount":95,"integrity":"sha512-pKpD8/R4FysNclNFUEVWRherkyZt9Rt6iwYPIQa1CeHzHQiLazqCvEYhQtohd5GSrhGWgigvtlCAeOcdgxNByw==","signatures":[{"sig":"MEUCIGgtrACwfGqZ0fLOMze21GuK2fFOp7ZjlkeBFkzW0C6WAiEA//7yfkGvpuoogazrAYdyY4H6srM4fPa8jWA2A8xCRKk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":879087,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfCtTqCRA9TVsSAnZWagAA+SYP/1seSllPplzOwyKfxGcW\nQjx0E2RAbGgAmdhnHsDHZBr7Fzf2+111zTIiBC7oJNzXDjCUgJR9XUC29JPY\nY6WxcrfYLXPMTkyURtv84KCSNWdNnas0CplfSO0w/pALgl2FiqTUdHW9cnwl\nwhUJFLG18cfhI5ztzPaX87mG6gkB8JqWEFMskmCJuz4VTXf8pJlvJY9kgaNp\nV9AA2pRxalwZK4BAkT8dZYph7Vm6RtOndjhAJjJSGnHR+8lJQMYBz4hRooFX\najd2XKkJMpQ8zuQQDXAlLHyFaP8mxqrT/ZgbNdp+wzwac32k4NxhUqg6B/aj\ni2jT2MPZzDFIq++/iLlhulZpBmc4t8kwP/I7xPW/2onZEvobzoMdcGPtRShX\noJgcWmoLjsFO0HpcoajXwx2kbPiV1KPQXRs3xPmfN9jLje9+EeDdyZtXSVdr\nCwVk6xlNikaABMARXE7lfvUTZrgtpD98XDadfaARur66KnxOXPknUnZvsVzS\nylhxeT439UwA4jhd+AcebNmTZ6ZEOrHQQE7654Zs0tg2RMhUf0S36X7HCEWl\niZ7CjnxoTE0uZtedqO8tQfpHVtnwxMiBqwJp5vWmbMEjRcjP+aJSXAflN4Dt\nyM410jWDFxv2VDUtUznx8M3D3Y2I2/kJbT+WiSdJBvz5qOeChn/4eyrU8wZT\n1/LI\r\n=Ging\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"ef7b29451277e06a79bc24510bf27a6e90b8a176","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.21.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^8.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.4.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.4","typescript":"^3.9.6","@babel/core":"^7.10.4","@babel/node":"^7.10.4","babel-eslint":"^10.1.0","@babel/register":"^7.10.4","semantic-release":"^17.1.1","@babel/preset-env":"^7.10.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.1.0","@typescript-eslint/parser":"^3.5.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_29.1.4_1594545385691_0.3841476698060804","host":"s3://npm-registry-packages"}},"29.2.0":{"name":"eslint-plugin-jsdoc","version":"29.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@29.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"40b1da463847750fe5aafea7182145c4108e0ab7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-29.2.0.tgz","fileCount":95,"integrity":"sha512-B1a8LWPkkxyxIp4y3pnRQR18j03Wp+V9gDE7IjQG/MvWAzp5gqXM0q71gXRAZMvWUjujAsNg8B9v1csl+/zkvw==","signatures":[{"sig":"MEYCIQC2Bzvno+WSvQBeUTRC071/YKyMCD6oyy9zuUBuS0tL4QIhAKZ8gu0y2ZyX19nsZuVVfutHwpywtYwGZCilIlNJBb55","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":880543,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfDEXXCRA9TVsSAnZWagAAYbAP/2a8No8b0D5FLCdeFVqL\nP+gol6JnWGcuOBJD24YSHswML73ybsj4sh1Zzt7QytqcyJgLs9UeGzsUUirb\ndV2SX0HfaVEBiXP0LHUwR4j5VT7zKk6pFeBEDoNqSvdOfFZtbh6roocJLvYT\nRWUInmwqs+NNA514FjeZvsS2phzkPPxaoB1Z7kJtTQJCFKm4mLLiSCFu3nXz\nmDLCAkEkNYatwuwEKIUi7eUsP7PwSj7RnHg5UrWqis7u3DNrI31E1jMr8Qok\nSI/rH+E/dhF3jWVOF0lg5C4GcwlhBMyEt9Aa1FjOGYn0TccWA5VccLeTbYWr\n0fANIYuKk5yw4uWjB5UBoGYJF5ptSulB01K8rbeIid0qIViiPlHjxnOJIt3d\nqDeF8+At1hDJzPQn0aMi+uK5rwCGM4dSwATPJ4rk2mkgZ3LcC6F2chF9zUCU\n3lqFn6cYmbLuABwP/cFLREXbaF3Gs/jtSTNjgY5pchYszksoSNY1bE1Xiq5r\nv8mi4zmZEVcfnH3OnRsl/2M6mnsu6AxnCaRmRb+ISdcqG0XT5XZwU8faRaCe\nF52RoMFrog/qtVhJXKDaY4+8MeJQi+aGI/54x2jBL5qFBq5O4i8P+AS09/so\nqlBcEkGAUApntDrY/M5edjxnC1u+Umlbjd/2noTNJ9bm2yTwF7pVRz30Xshf\nTQH0\r\n=gzjY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"69fd79d85c70278d7a199efe7e3d2578fd331346","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.21.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^8.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.4.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.4","typescript":"^3.9.6","@babel/core":"^7.10.4","@babel/node":"^7.10.4","babel-eslint":"^10.1.0","@babel/register":"^7.10.4","semantic-release":"^17.1.1","@babel/preset-env":"^7.10.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.1.0","@typescript-eslint/parser":"^3.5.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_29.2.0_1594639830560_0.734724244401292","host":"s3://npm-registry-packages"}},"30.0.0":{"name":"eslint-plugin-jsdoc","version":"30.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"87f9e7c0ee9f2ef73144894456616ce6322dc2ee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.0.0.tgz","fileCount":97,"integrity":"sha512-7IRS4rRWeKUyWJopl5hCUPcFVQAD0cjmQgpm+NPz55igOM6giThiIAtXUL5DbkCQUp+hngsxf8/qv513laKmBQ==","signatures":[{"sig":"MEQCIDwi7XrlB2DDJtzH/gqoVxkwmJ60hQ2izyrcYvSTLO33AiBOfV7bQgr+HiatFgKG/sfhE1D+KUCxN0dvW94PmFX6MA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":919054,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfE7dZCRA9TVsSAnZWagAAL3MP/i4cHGWmgpUKkgwoIy3C\nB3e0kKRWzPtlmCFLdXzxmqn08nU7g75ntGT9n+moZ15GX2RMuk6nZNxH7N4c\n6zhzKVS/CgaNWg5NU6Cei73v0DRThQPgrhT9PXTqIVbCYm13UFLP+7GRIVFA\nduHAOk5njK+8mcBlbQz0A+TPgBB5Q7p5pJ0aubxmcsomL3Qxd5I0Lycwn/qE\nVcaz4hq80/+8FCktJYinDw0qCK4QZ3hx8nDSpEcbbt7mtVnuFO1a+zBIeB6n\n7E/6SpGeRaDBGIVjwxNWMMff1DXeQzomzM04zC6FgLJ6kNqcl1kbnpB1gCx1\nwr8umkVVHQB8RfZTAPDA0lCRJhV2tMXj9AUQjcSYOBtpKOYaXM5q6dERggGZ\n4gpqtn0Njkll9tVs+Dx9ox5ChyKCnH+iOTpuKv/48T18y5RdATfdMHuUEZ02\nk15Zq6gBrMV5324XR2R+ZZvJU0zut76ogNyLWfei0MnUSHcGexPC4zh1L3Ld\ny2IwxqSMJi7gVaS5QWz/1X3dBWLbtmDfsEUs1uL7ZqDEN9zydqfDrnN2zTj/\na6qB7U5Xu6lEsi+wu0VVlMlB7tqC1iIz3e/RtgSPVEAs8YMObRJRetjQ+Gnp\naf/1n3KJfV7FboCFrz7o7HBTxHiBE7KredgQwM7CebWK0/q5fkzJJf0Donmj\n0kf5\r\n=3fqh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"842381a84b5c93594672c105c75538669eb1f732","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.21.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^8.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.4.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.4","typescript":"^3.9.6","@babel/core":"^7.10.4","@babel/node":"^7.10.4","babel-eslint":"^10.1.0","@babel/register":"^7.10.4","semantic-release":"^17.1.1","@babel/preset-env":"^7.10.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.1.0","@typescript-eslint/parser":"^3.5.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.0.0_1595127640153_0.550943645472463","host":"s3://npm-registry-packages"}},"30.0.1":{"name":"eslint-plugin-jsdoc","version":"30.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2a6ea630d343d395af3838b060714ff7d157fae3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.0.1.tgz","fileCount":97,"integrity":"sha512-DD6vNpOo48yzvF0GZ31ZgULFuQGzgx0ajnVHtTw3AglkHNV1/K3KCRVHITU2neXOGk9ls3WnVDG1TyCSLr2VwQ==","signatures":[{"sig":"MEUCICrXCvfl1uxDIdpYIlb4fYjv5To4P7++9m1t5Au+FmLBAiEA495sLrmD/Oo/T+yR7MKp3aiP3Zln5/06mg98uzDTD/4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":919383,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFax3CRA9TVsSAnZWagAAaIoP/iQvOrYS4abJCSfL+l7c\na7z9PEOvszSkEsqUvWyKMgFjS8MKzZpPUe2zbO1nZVOjx2MwVFbATlENRq+Z\nZnHXy+xdwFnP6OtEaYplIiU9TLn3eF+rUYya/TVv3TDO0S0w1XuktRX3eU46\nkhlMdDxBqkLUQAU58bxjYFLA886cbwcU3+soFCw/zVFFr/IvCyRT7J4aAkj7\noFdQoGdofgEi+ILwu6DgnddKVRtcgeqr2ZzqXJAxYp5Pdi2l1IU0wK8QeNnT\nxU9jTb9idQlmdLCOnKfaEf4sg/pEWXmWhH58RzlWKZSe6sVpmOrtRmod1/l8\nrM8LT45aHQpCZ9hrKuNALhtmLMiFcsI29VU+4uhRfzRWVd4DQ6pEKfs1338d\nZExMPOH8sJHZFAg+sF+lgvby2NVNqshO5/JJtSO8Rf7Dv6ULnF9+5eFPvd3S\nkkzWMDOWDBuRTjDnWLF/MCMiIrt1DW3BiM6A1XcsFn25yibW4CO2Xi6qFtZ2\nQAYz0tSGBDt9w9yeqbIv0p3XACCPj42r+x4uj+hpQflPNGbk9JuG3vnk6wlz\ns8ODiYzFMqTdhiHrcD1TYenxeWw0SJfl5toiiMSeiKSRpdqwyTRcROJTEnar\nuEcE/eoHaJ2pe5FMY4+tSibcTpPX1ydgnIVxFYwp5KO1r0E2/UKu0aVuW2vz\nUxKt\r\n=Er0g\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"854fb244be890d5ca5af98bd678580256ca7b984","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.21.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^8.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.4.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.4","typescript":"^3.9.6","@babel/core":"^7.10.4","@babel/node":"^7.10.4","babel-eslint":"^10.1.0","@babel/register":"^7.10.4","semantic-release":"^17.1.1","@babel/preset-env":"^7.10.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.1.0","@typescript-eslint/parser":"^3.5.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.0.1_1595255926962_0.4938923345621513","host":"s3://npm-registry-packages"}},"30.0.2":{"name":"eslint-plugin-jsdoc","version":"30.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4dd21f9ffb2b3d7016176043b6358fe341b23d03","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.0.2.tgz","fileCount":97,"integrity":"sha512-vqrVShEIe8np/2tSJhkZethJpgZAzZ5ZcV4pfH6785jEVtfcChy3X2DP73qoe9/6sbf6naIGfsoRFyqjBTgypg==","signatures":[{"sig":"MEUCIQCbCq+N0XPKih1DmKJBRKLa2kXs5W8hey0WnjVkLA60nQIgBZvgq+mZ0dxZmhRDh1CZAccYUFhNxMGA1ayRK23EFp4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":920453,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFbxxCRA9TVsSAnZWagAA/LMP/jJCjRLA7cSwAOUskXr6\nM4ABKtRmexBgd0wq7wS3Fxk7A8Zc1pX0ygNun/b6FD/F9mB/cPgAaW2Xx3WO\nOC0XkEm86zrccpuCIgaz5SO1tU6R2FHjcowBaWuhPJ4BSvlsOWbJwpbPp++b\nXxTdDTRr152LzKMS9MR3ttGFzNYXGlSbyVbb8z+YbGQSyX8Rn1IUBJVY6gs5\nx2ynE5krNS36mONOhHIy9K0y62IddHpvfCnrqrgEGc/XBFyUVtd36P/VXaRY\nldRlIEytejvJtJd91S5XzciIFnFmcHIANyWwG6Kdzav/87PFgVK83yNP+vwE\nD3CqDO3f4S0MGyH8zD1Onu4gEIrohVP4GcGMUgeKbW2MnbuxIffNDk4xJAb5\nSIlMTV1DsEamSDqWNk4wd5b53ggN1hQm5GtYytfkGEndfoIzUBJEk59WXfpP\na8ovIOHmcDts+kEB8YGsLGFjcKfpmNiOcQIYim7ukolNJl17OQLE+KcvOskF\ndqpQgcKTXHyaCEunOgi82j1d1YutRVrLUDvswEfra+lB9onMnWbCeL+ebOYz\n817kXyRKA8pmp/MOH71GVR5zv9AA6p0K81t9aqBP6QfCTceu636WLOdmEbEw\nH8Rcv3SDvMMQf2z5jKwziLvSGoMw90Huh5cg4mPp5gb8ZQmb2gsiKsgsyMLP\nCOfd\r\n=ErSc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"eac8357c0ea7d82a1def12eb914ef5d71faab1c9","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.21.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^8.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.4.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.4","typescript":"^3.9.6","@babel/core":"^7.10.4","@babel/node":"^7.10.4","babel-eslint":"^10.1.0","@babel/register":"^7.10.4","semantic-release":"^17.1.1","@babel/preset-env":"^7.10.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.1.0","@typescript-eslint/parser":"^3.5.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.0.2_1595260017001_0.4346526662514698","host":"s3://npm-registry-packages"}},"30.0.3":{"name":"eslint-plugin-jsdoc","version":"30.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"358896c8114ccbee765774b16f64fd7c952309b1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.0.3.tgz","fileCount":97,"integrity":"sha512-EviSu0Hgc9Bhz00WhA6829KYC9BaP6JWoycOTA1xFxjQ/2XguRlB3r6nGNA/jkmMDQp5dTQ22s1kAJIaC+dE8Q==","signatures":[{"sig":"MEUCIQC7LRRbcjxEJ3+++qHLqOUZSHgAzHJ7rj70kmILkhkVWQIgIk4RbQcS6jFrlsXf7cED8Yp8zvpo/9JC8PrAev1GIPo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":920675,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFg0gCRA9TVsSAnZWagAAH+UQAJ3Nc1dSqlhoTJeqbXH3\n3Iyfuwf/Jx8aZqGViFybrt6/bk8lylFxOlqE11KEEVHQTWAAXJ6MwkRuGsjU\nCWXCUqDoXh5lKxQA/a/oXtBVW/2NXB/jwaK8XYkUzvqGJz0bLEf3QXdBnIBk\njr+9NlJVRlUqbmF9hBhpk6SnRO5dR6FkgeNeHrYvf2EUeVD3eLQdb2Ex/Go9\nZB9HqXzvPnFVBMcrvQAcnVg4yG7AZwEZ8zN0zJTICCEFMVdGCTuhirA6gp62\nnLzdXoWUjCjrd8lCmn1/oUeNxqfxEMrYVOJIWWgEuql97xCyLBSuZflXjWAX\n1C/waoa708OsXBm/kiIV7it87NGFjr2IBbFfpRgiULy75m4oQ3AI94OCIFvT\nC5qHDC2CS76cUrdwfs9e2mnq/MhrstP/vIIdiyVMPhtmyes5F7vyb/6oXQf2\nnQ18kJu2AUwx8gSE+fN27SkzeeVFopqyRzSpBHh+I3kz3BBdgdpjcu3hySuU\n0kDrBOAjTp1UZg8+m71JsZLv/AUSt6OglXmnIQSgl1RyV7mXxeUB/fy0HSHs\nC/QtT6rop+CwGmiQAPJKSPElkEV+YTlSh5hILPwgSFJwI440q0j7FgwxBoo7\nH76bJ3uuyaoqHYh366n9qz2bpHps+c/3QBCaAm3gMc96b0UBhDoFZKY+NvOF\nwlcn\r\n=n63n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"08b5820cb9e27307123828785883a50f12a1b3b6","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.18.2","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^8.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.4.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.4","typescript":"^3.9.6","@babel/core":"^7.10.4","@babel/node":"^7.10.4","babel-eslint":"^10.1.0","@babel/register":"^7.10.4","semantic-release":"^17.1.1","@babel/preset-env":"^7.10.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.1.0","@typescript-eslint/parser":"^3.5.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.0.3_1595280671586_0.792282644175085","host":"s3://npm-registry-packages"}},"30.1.0":{"name":"eslint-plugin-jsdoc","version":"30.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9d74854850ee16754dc6b549de26fcd5b48b8886","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.1.0.tgz","fileCount":97,"integrity":"sha512-eMsX+TMW6ycgXwxqU9xqfts2/e7cWCSGzk+gHgDvqaITyMJr8AcHTdd4pAMjpnOh0cd16lPZv+/R5LbQ4uVHQA==","signatures":[{"sig":"MEQCIHVgcJHf5rhQmAUA0gChmZ/wMRjspfwgVOn1neJMHkbWAiBFxCwoffD4NPPpB29YcK/jcxI2KydxCdH7x0vBHJW7SA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":922661,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfI4p6CRA9TVsSAnZWagAAEZsP/jZ1vHAWzF1Y6Vu6qd2q\nnE9shXej2hq2q3gK42AnFD332gjTSStRikRaZNpevXAm/jNlBxYwUp82gauX\nuatSQy9Km3FU/FaNQNrnmoEvfYtqCPng5wmryJOmvfbYuuMZhTE9XOpovg9B\n6xwPAepkp//TGTmz8+VFkbjFT12Q5IzljxvAM6I71BvH/8DBJpimg0RN321Y\nzs4sB3/sTUdQqyhu4XHox9c4wWOO3oFSSzoAUajoxHOEFg1EPepCYg4NpXIa\nGUMcwz797jiboRim28OOXn19Tb/orKZfUzyiByRfT88kVM9BcAIcPjaNXUJn\nw6izU5d3xzveZY9PdTTjqwrdJHRBdLtJwZ2ySFmEbcrgLgfSWAbJ1caFkciB\na2fND6MWEdKyA/51/v+a3UfnYkrUqiH+GpuLJGDM39VKbii+A8iatzaWXvut\nuKre69lQ0fylOV6TqcWzGhewiRPbJaBeDK3kkUm0fH8fRp81PHkPDeMYVmfM\nQGq1nNh6bkN6v/zEvea/C8cDFCYlsM5i3Jv6LO/PNkhNEVtUIBrsWRatFHSC\nrhdY2E2mr4PcE0/jghIGozfUai4/7rBlqSWmtgZOztDUqwWUj7BotfSCpEVj\nvkw9b61D6G7NAy0SfLp36uyWyNf8GOwo93R5l34aIH758xeI9opYmQgV9ppg\n+npT\r\n=+5s8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"fbe767b4d8a455845f7e3f9eda2be2946a15ce93","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.18.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^8.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.4.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.4","typescript":"^3.9.6","@babel/core":"^7.10.4","@babel/node":"^7.10.4","babel-eslint":"^10.1.0","@babel/register":"^7.10.4","semantic-release":"^17.1.1","@babel/preset-env":"^7.10.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.1.0","@typescript-eslint/parser":"^3.5.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.1.0_1596164729288_0.006720234476963904","host":"s3://npm-registry-packages"}},"30.2.0":{"name":"eslint-plugin-jsdoc","version":"30.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b6407a33410112e6bc12de3486ecdbbd488735a2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.2.0.tgz","fileCount":97,"integrity":"sha512-gBC5Wp7vSgMBRiGtCfjCgRQ9Wzdus6Hc8WuDNetYxuJoJ5rDHQMkJzBZ0/Qdg3fFh2eIpM7EcJD0pbrYKPxKLw==","signatures":[{"sig":"MEQCIAnyhEQ6FK2loORsazG6PjXfTcHgcZCbntHwTdru/pRuAiAlrZ1UseWNIzfrRQdOgojrFgd6CMRKPruScpOTDpV2wg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":924285,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfKP4YCRA9TVsSAnZWagAAqDkP/3ErxMSG+e/U8q4GgbAy\nE+iN5pFPWMHOCjFmpB8IzTikryOsxteOW0Qv31l95idfijdiNtFKYZNYmLtG\nnrGNNMqtc/+puIc63z6cNjrtAp5WAERZUNCvOImU0i5var2Wec8X+oK9kEAy\nEeTKrm6Y08zbWAVq4UdogcX0GdcQWMuiiGQeyyLd+1YoZZbkcpelXJwQbte2\neWMax7dt2EyAn6TqGApNRjTiKj5qm0Febj6dwfWXNZk3/iZbtSx+4fDshlr0\nFERRqbULI3B7Za0e+BAzGHIN+zMM33y1obwmp6Hid2/OeFP/AU3fT/dZ01cN\n25EaH9tQZTHds4V7Bb89+eBis1go3b5vwITsJguVg4Lv27oIsS5pYb731WyD\nEf6NYI8vIUqRP80UDe+rOQTJYylpBYYu/6SGxEDHIIgyDLOBCxVNwrwGVtKv\nj4dm4w/4AC3TpqdyX3T2SMbV1diQfX4Y79zS4GkNZa+3+jmXhSa3z+aQcbkc\nygMqp8MyqAp63LyBCGG7phICiMCjLBCRlbsoNy4S+2h28/w5uV5V4LObwslk\nlPX7y2zMb3XvJQd5BlOS0izN4ps4tmIoqSafez2zR3ap7eHHHGl1+WAW6cQj\n3vsqqH7LP0Lg8I9r5vMzgvhvQ2RTA7/jFmssRoCXOpU2NyfbeOn+MWk+VvzK\nqwwI\r\n=ufaK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"3c06f0967ac62aee8f6d281a153d36ddbe02e99d","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"12.18.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.15","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^8.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.0.1","eslint":"7.4.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.4","typescript":"^3.9.6","@babel/core":"^7.10.4","@babel/node":"^7.10.4","babel-eslint":"^10.1.0","@babel/register":"^7.10.4","semantic-release":"^17.1.1","@babel/preset-env":"^7.10.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^20.1.0","@typescript-eslint/parser":"^3.5.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.2.0_1596522007034_0.6788408032705506","host":"s3://npm-registry-packages"}},"30.2.1":{"name":"eslint-plugin-jsdoc","version":"30.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6cac1a70ec239b4672888193d8a4e084a7e2d7bf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.2.1.tgz","fileCount":97,"integrity":"sha512-9Nx+BKMBoCTDRIbVpMV4MYfw+lvfnfsWTWYX9vwRRZrkXBpZkKtE3dsFcG6MhF7N/vW1cwpjEnoAIAtn0+a6gw==","signatures":[{"sig":"MEYCIQDl67em7Ztqab7rRREAMmp2XGchSTBhqdgmg/jCMQPL5wIhAP0HPwFRNlvJVjTYMp98k/pKTxLBqH73U2unWneaqjXh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":924576,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfKgeuCRA9TVsSAnZWagAAi/AP/jRsd1qEqsTyXWzisRVM\nEy0SeujtAUsDuac2CVsWcyNBluOidQVWxYc6e7WO2FLclxrI6LlBpjPaJgSb\nyXe+zkm+uSwfE62F/hpkU6Re1GxFHxhgLW7KRSK7lt5PrumuNeo23RpDq27M\ncYD1wTkc3TDHtBwjxF4fj3dYni7q5Xr9r7GzURnlazHI6lUM8M5iBqvGWbUu\n54C/jED4Kw4fIy7LvOe6CLUQmjW8JJ51msLoaFOapeyVszoZiV9CoRregxLU\n/S91/Oh9kSw/INBtUHW9oSua6hA08Odm5VE0X6TomvTYSs0W6bn4Yf7VmEJm\nh0zh1HAiGcM+0vWXq1HCZvv8pxEfVS9uxoiI9xNVtKCJOtD1+wmhVYa7etzl\nmp1fA2anMecvVoeC9IpfP2elKDu6oxV++xXcdamQg0RRs3vP/eqzWiTFXEyX\n4UMhdVmbNfneDcWHcI4EikuDM2HGOcDyc17UNmCPwAVYNspvAIU5s/43dwX7\nDCHUY62JXNUnHCPDGB1r2UPj368O3tt76uWb1WEq2mTTw1gIjgc9fUIIEgAC\nGHz8VLx0IYBNjMYKcJ3kPTy64hFYeWU1W4viQwz3D9vw+8t5VNRDUUnKH1T4\nw2VQAttoRSw2ghE1jvdN7bptVrqjzpZLeDs4pJHKO++AAXhDmixaMsOg08J9\nn38L\r\n=GlAf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"88c93bb81841aed1e80a1b2f5fe6601ddf66df2d","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.7.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.19","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.1.1","eslint":"7.6.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.5","typescript":"^3.9.7","@babel/core":"^7.11.1","@babel/node":"^7.10.5","babel-eslint":"^10.1.0","@babel/register":"^7.10.5","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.0","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^22.0.0","@typescript-eslint/parser":"^3.8.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.2.1_1596589997266_0.563590723829418","host":"s3://npm-registry-packages"}},"30.2.2":{"name":"eslint-plugin-jsdoc","version":"30.2.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.2.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f554a172c54b0e5514af03f1300af495670bea16","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.2.2.tgz","fileCount":97,"integrity":"sha512-588zVyRy+g7s8VU3D0AL75r7xBYN0UX6tZEwP5EQ4JvpVavwu2iPJRaBxwuG3QAj99WZkUBlrLU16p4qST6vSw==","signatures":[{"sig":"MEYCIQDIc37bQkOWwzBLkJ4GGCONKk3BBnHqeu8IedP4OPhgIQIhAP2ezknTzOFe0XuLNyEOLqhdyOlwDAfr9zgF4eERfg9U","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":935823,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfNPvHCRA9TVsSAnZWagAAmz8P/RqLQx0MpR+Zq9DK9tSN\n4TQUn0b2RV7tmyMgOegCpG+0t8r4QzoJIxwYFgOZw49qmY6Oin6QNoU2iEC7\nqv1JWRS5QrvfA1LWG08KqZvtbpViuGuRJgtJrhBsKChjksO09Vfr38vWpsmj\nxmw2+6ta/fDKLG80gRnT/+p7zJK8Eakbwy3zQQyM1fVjd394FOIKEhw3d+GF\nan3tKDTd0eREy7jA7a0dr+r3QZBf32B2Cl3YunYQ1Tz94S//vEYxqJzZrx6D\nLGJM+b+zUIyXObX/eykra6h9It7JipWXChDM9pP2SO/J3eQhowUX+U4wN8GF\nKS38sDWFfbUE5j4P6Zs8DXOckv9W10MUpS8EuouFRK59MCjPRsswPMhDWOYi\nNx+0BqioLs3Ho6ItH5CfyC95oIf6WUHTennHcOavbAyuo2S7xy57QlJHxalZ\n3vkf5HdQ4G5eZqcuF4Dprw0BFw1W0Q0FS9emaYnL+73zSk+t4I9/LzhR+ZLw\ndt/Q4zuKh+/O+vU286+M/zoOoIVx1z22i0W8XMv0s3A7fuauWFSyZUTPLvP7\n4yq3xa3j4FUlTRcXuDZPMiTBISa3WE4kApwkPj17nEoICqyIPzM+qXyrAgv/\np+ZtG8sZULtraWwmx0i5+tQcIhMfnYWD0uue0nWwAqfN+FM54QymJMjw3NXq\nTAz0\r\n=zjkW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"3b643de7775f1d7f77c87bb60df8ff5757e3db51","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"10.22.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.19","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.5","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.1.1","eslint":"7.6.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.5","typescript":"^3.9.7","@babel/core":"^7.11.1","@babel/node":"^7.10.5","babel-eslint":"^10.1.0","@babel/register":"^7.10.5","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.0","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^23.0.0","@typescript-eslint/parser":"^3.9.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.2.2_1597307846204_0.8459729971000058","host":"s3://npm-registry-packages"}},"30.2.3":{"name":"eslint-plugin-jsdoc","version":"30.2.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.2.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5cdfac270144eec9a5fac60061923204082266fe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.2.3.tgz","fileCount":97,"integrity":"sha512-yj3EEjukab/PuspQRHKJuxFK6WP4RiZDklikQz5t4PJdwUo0I7hUA9GtcS8aY+IP5jvXs6HMlnjBwvVit8aG/A==","signatures":[{"sig":"MEUCIHe2Ar9REeNnbl3oEA8wcvwOdRcB5YBisPbjdedTt2WFAiEAnuo2/7XVgsUaQh4s6dNQApaRysaJn5bZcSgVx6wFYaQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":935985,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfOJhuCRA9TVsSAnZWagAAaCMP/159MLWv3qNB7Isq4hhb\n7Q2J5R48igAn+T06q+3LLL2UghFRwXVGW8QVwU205SlgyzsVoSX6/eHWwZVX\nk+4X8Gzr5fd+K7KrsX6XZJQX7OOsW97+bhgYUlQo+E/sbNBAGQ6lK1vQdKH0\nOctVgNRDvjMWB+lQQXcVYSIECPDh3dJNUJBTQQ6UugKTdYXDjjcVmqXG3eDN\nXZhdAJU8HuxOT51J4K7PgQTcxr5J4DIzB+FAnq0VOaSXuaQFeepCKMCcznY6\n4VhZKO5LnuFlay19bVXzL4g3n2IpdQeRV9uVwohVSm2uDdlDaUpwqr7Ht7Fl\nJ5u77Y0CRJd3ELuj8nOn8MSM95NspugVlRETK6CzAb09y4dnaVjbF/qPyqsg\n93Rv3zLlj8b7ZPaP9sLd9OgvlCZeR//x8uhtJuRIouQxdwSBW0X/FngvJNE7\nebVGitfgO5CrpoYiYHTXwlsVMnF6qgGB5daoUzLYy0F3P0mhcc9/qCLZUJ+u\nfz4SKczMkoD/9vPUfjqEXNk9tBvvFl46oJ0To0aIYHcVqpbU+uHeKxrvUh/C\nb6hgXW5086dpA6f8FcJ9tmE/5QwkVN8R4O6OwwDLvDQCBW37h//Fz5VOVDOt\ngmDCGCrwMBBZIpc/7CxSIWu+klAgmX9JtWXC45omK120NdD0A0C4IPCDY+Ed\n2GdF\r\n=4Gvb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm run lint && npm run test && npm run build && npm run check-readme"}},"engines":{"node":">=10"},"gitHead":"5cbc8231d83dd6c30f398c7e994e3b3fc9f88573","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"_nodeVersion":"14.8.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.1.1","eslint":"7.7.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.5","typescript":"^3.9.7","@babel/core":"^7.11.1","@babel/node":"^7.10.5","babel-eslint":"^10.1.0","@babel/register":"^7.10.5","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.0","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^23.0.0","@typescript-eslint/parser":"^3.9.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.2.3_1597544557406_0.7545885681877358","host":"s3://npm-registry-packages"}},"30.2.4":{"name":"eslint-plugin-jsdoc","version":"30.2.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.2.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"fab63c612d10f7f622ed6ebdd6d9919fc6cc4e0e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.2.4.tgz","fileCount":97,"integrity":"sha512-7TLp+1EK/ufnzlBUuzgDiPz5k2UUIa01cFkZTvvbJr8PE0iWVDqENg0yLhqGUYaZfYRFhHpqCML8SQR94omfrg==","signatures":[{"sig":"MEYCIQCYIajE6QY0BZZ1AWRYMgdma1LCcfI5DprdF+wnk8aJrQIhAJINDYqS6Con4w7Gsgt5J0ii45xggsz0dkv3kKPOt3LZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":937092,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfOqLmCRA9TVsSAnZWagAAUU8P/A6MYeqOioGD4Nhtq0ZZ\nU1lrjxEr2VoxYRfNECb/Kjb/gDixqvcB/fIqW+I/zfHYWJFc9WBuwGSq9iBA\nbbVFeDJO99qPloO7jF2pIkuhAecYxbtBfdHJ9TN3+a+X3j/50nR5GouLEk2g\nwcKjk9vxgpfEHVthrGkmDLnRQsU3yka07yePsGnMfZNaBO3LCuA+xCm+LcHf\nx6cEsK0Pk40P6JuegIfYa8o6LCRG2J7QAnZdRVcP6e7nNF75yz5nPGpwES8t\nC/by2rmQcwz7wxPI2UGbVPUvT+JW3CO+Jg2od2NT/Cwf41rVEjgPkR2MYiir\nv+SOuaTgQ/zhYbI+wjx8g+GG5CKb4C57qngCxRSQf9NenmdRCwfW+uxT1YVr\nEJz15QRNCJi9rCYBEbWqWOAht8vsJPQMlbSBd0wI6YklggMtZGX9BEKCGCBC\nkxjM03kn6+fY/vAVb+zIiMrisGqYuNPZksCrfrkOZQSDu5sCwW5eWjTlSpxQ\nmR028hRHGkgIFhBZkFRYPZ/5wC8e2KnBvkHQHW0ud9X6zuyMKQiFZiNGgbza\nODeA610i6HuW9T9lJ33Z3x9OXGIel3aiYAyPpAlTM9rXvBx5Kojhmv+5oj56\nSL+yYAf99SoT2dWbMe6UP2IwbGIySyUowBDJ/Z56GIPM7sC3nWbTbJ8YoutE\nrXq7\r\n=Ak4c\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"ae2f76a49dbcb1860884fc82ab18d1be6747efe4","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint",".eslintrc.json":"npm run lint"},"_nodeVersion":"14.8.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.1.1","eslint":"7.7.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.5","typescript":"^3.9.7","@babel/core":"^7.11.1","@babel/node":"^7.10.5","lint-staged":"^10.2.11","babel-eslint":"^10.1.0","@babel/register":"^7.10.5","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.0","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^23.0.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^3.9.0","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.2.4_1597678310063_0.24107388368215688","host":"s3://npm-registry-packages"}},"30.3.0":{"name":"eslint-plugin-jsdoc","version":"30.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"11f169d6ab52c56c77aa68d1458f268655e16db4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.3.0.tgz","fileCount":97,"integrity":"sha512-RvDLH26ILwX2J60P7tlNdz5IlTFeC52TEFgAC12+nz/lOx4a7n3/hP8fBPFZrQP07WA1t9ZOO8H/i7cEs2BTnA==","signatures":[{"sig":"MEUCIE8x8dwlOIJM874dxcUNyfURT/V9VApYJb08J9R6XMfrAiEAl9vWo+xc8x8qC63a21cobFxJPiyT/32N0XCcTmdMrlc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":944993,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRa9GCRA9TVsSAnZWagAAre4P/jyzC9hBQOnRcB7tY6NB\npxtZvVVBmYDNud2eBQAgxCD4CRKAXRjUFXaQTZRWl9SOCYJsKqS5W9glD6Hu\nLdEEpNZT+8s7DzVL7lP/5RETn1UIN1temp6/+5im9trkIVYGsYtYsPj88AdX\n4zxhwi5ZvRxnlHPQu85RguEy0c2pmBSoKIBdBVY6qII31ufyopWzJZJiWoZU\new+/9ki/CncYa1svG1efFxPhC/NyRFaddObtnR6+xntXPN+Ttqvhq0LS1jfa\n+pWRqFfXUj7xuNtcs+uME+AxNAZI0EBTcttmR40h+mLrn8V7eOZZxN/NRehU\ny4cMBSDrUuM7WT2icWIGD02hRNtpS76l9zrv9UnRELPgDIR+55Oa1mQVdXAf\nhuB+m/YBufSOh0ghV7Mz2FsRstpCa1eKsFxK/iIAwjcFufsz5acbwxh870Vt\n9R0EGYf1sYYbWIOiklnYYkD+tzOuNbOTCGrbj2RIs3+mkgCm3lioxlD4f3QD\nIO0BeG/VZUNx3zIqUYUcgXhQmOOBbVfKk4U063z2TZMDGmGNA1i0/6D0vyfw\nm4Xi947YaAazQi3Ioq2xFyOVBL386+BVrE2QGoX+KAkuLTfdkr1EfEZaZLwu\nqiTD128CphqV4uKsS6yc3tlbJwZ+lXOGa0W7jGXhUz7/ELRvcpS0BPNH0D4R\nVHUw\r\n=1cR4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"4b67bf85fe10ea1b7f614e7bfc5a9daf9e874830","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"12.18.3","dependencies":{"debug":"^4.1.1","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.1.1","eslint":"7.7.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.10.5","typescript":"^3.9.7","@babel/core":"^7.11.4","@babel/node":"^7.10.5","lint-staged":"^10.2.11","babel-eslint":"^10.1.0","@babel/register":"^7.10.5","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.0","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^23.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^3.9.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.3.0_1598402373550_0.5487424722332488","host":"s3://npm-registry-packages"}},"30.3.1":{"name":"eslint-plugin-jsdoc","version":"30.3.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.3.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"be38fec54ccd07011b19a9dfee040e166c1414f0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.3.1.tgz","fileCount":97,"integrity":"sha512-185ARou6Wj/68DP0g9kLLBnvmVwgg6/E/7Z8Z7Dz7Z63WgvRNaSvOLQiXkzIOEwstQfwI9PCuFPh4qBJov907A==","signatures":[{"sig":"MEQCIBRGIUHDNZiG+xDIfM/zLpaUmAuVJOlRKbkhjBRzexeMAiB5Uae3IC7RpPpTHtQ5My39x5EQ44uA0vpXb9MfSr2frA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":945421,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfTxzKCRA9TVsSAnZWagAA1swP/1kZPff7D3H1464si+8o\nc/zlkBT+Pz+xdUtFv1cJMe8NnksWZt1nWuUwhV8/TYK1LbXynyivfBfMLJAT\nDSaJxa6HEFMuchxqy1KTSXza4UDqY/HgAk168gsfYH25KVJIgq+eeddtPst5\n8vJhKxRGxAHWefXWxfvMrptT4hY/PFtssq27tzTgPa1J0H9qUSJVW3pNhtPO\ndhHJCJZfRtAWxTc0g4y25M1HfhKHDS17AzIiypNFrgzjVlOJhR+iPBSEKMf+\nJNidA+Rl1CZL0s9GfrtoPBWFOU96J4YIBwc3aaAdbgg/hjLlZgVTFMDvDB44\n/BeMSn5WuS1njbZzADT9z2XkN393R9Qa7hS7z0/c5gCSzKoGTcpJb82CPLwu\nFKoFC6+ylDLMrmtmyX2pEQcdfAQsCrsOB/AC7SqXdknM7MGdr0Iyu0uqoXZm\nC1JZ9/G3AIZLWrSkP5ebBlGI6uSBJhlGSzLI7Sx5dj4QIWQdEGKZB71nuS3X\nSdSL6tt7H4ygklVf1h2TGequ6E8VI7/v0YT6jThOtufi31mQgCUwcg0FmurT\nRFY66p7V/NPKA5E0CxDD/UEoTlc5Mf5szqzPw67rGqXQZVsUj8jMkBeLhW9a\nz+5Lc5x7AuPNEMM2n3KPWoRWWfCWvuGgZwbrhEewazefZj0fdpDL2uS9s+Lg\n+R6X\r\n=5HVR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"d900a70fd5cc71c0373644dfaab53f9a0a6b08b9","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.9.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.1.3","eslint":"7.8.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.5","typescript":"^4.0.2","@babel/core":"^7.11.5","@babel/node":"^7.10.5","lint-staged":"^10.2.13","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^23.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.0.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.3.1_1599020233878_0.7123219278557733","host":"s3://npm-registry-packages"}},"30.3.2":{"name":"eslint-plugin-jsdoc","version":"30.3.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.3.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"208b05a9700a1449cb5f562c4ffb97827b34e778","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.3.2.tgz","fileCount":97,"integrity":"sha512-52p1xlKNm2Rodo51jUPIQ1ytKXH6Uj88mDJgmZ1znRKjynDQOO4ZS9cx5FqFoRXk/iqHv15QxHkQCBVeWViIog==","signatures":[{"sig":"MEUCIDMpfYKcgGXhN9tEH12fx0dzQwG6L67gM+tzNf3rjirEAiEAoCsLLguu+xuNvHmd/PiPA7giaJeCoeWv5G+oeEW4bRY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":945904,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfVEVTCRA9TVsSAnZWagAAbWwP/iFu2htZW5fae4LuYmC3\noB6iaqQm5ulmPBt5sZowrv1ZFy0ySD3sS7ivPbso1EYXqhp7/KW9F6rufVOJ\nvbS4OjjEeu4acbZOig01vqNaHhkau89ObI1C+Ch63ax8DIrbmCLct4+8Zv1V\n94UeL8kyzs9fgq8PV45/bufZtixixhny06M41R3zvPuGR8o1MXHh9vasP7NK\nOIvZhql+/qftIhEr35HWyzMISh/EqgmynvTeOci5Z2V8EPT1RFPRUDF1kVih\nnNXzYRAzPVAK+Y1BdxVDie3sX8qrB3vJR+M4ctb4UQrzlyaYcOS9wv+wOeUK\nnW0fgc7aZMl33+oP/42cnEfweifEt8hyphRPlA67bljXIHb9TyLarcNmnNnS\n2Zz07V3ZWD0plFGC0h5sHdg8bzsIuZK1iijNl2V3sfn9R9M8p8itnT9fHAG4\nJ2fz4qb1IH5V9Q27LzhEhZ5iOo2Ikr0trOAU1k3iCJecFMBM4xxnQkysK7Yl\ncLYvoCjHEKKRKnCdFilqoCZM0hfRTum17ZMuYxXE79sPGxJuXjcsE2bxlmCr\naP4nd7QI8bGdrmdrV7QiQmKZUfKhGINI0bT+Gz34EIBtasQ4DJP7GoExn7eC\nUM+BgWMcdQxnu8FTQ7Ku2fULGSAhaf62EEMMVycCjbm0gpbb2Txhu52d2lHG\nhXng\r\n=ZvNZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"dd4a985bd92a1239a07f328511a01c72db4442d4","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.9.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.1.3","eslint":"7.8.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.5","typescript":"^4.0.2","@babel/core":"^7.11.5","@babel/node":"^7.10.5","lint-staged":"^10.2.13","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^23.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.0.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.3.2_1599358289829_0.25743319597344394","host":"s3://npm-registry-packages"}},"30.3.3":{"name":"eslint-plugin-jsdoc","version":"30.3.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.3.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"25ddf2e59164a6182c5a9e12e6560d69e252013d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.3.3.tgz","fileCount":97,"integrity":"sha512-u2z0LUTm00KLrWB2h7y+hkzYcTIDIi87efXRnv36cFvs23hIOuT77FdZNDBxbB4dxquHBNsyxLpyEuERYUVNEA==","signatures":[{"sig":"MEUCIQC9w8NL/AMTyPhQI0hBaSgRmgjjT6nheIFTdt6t1TEY/QIgHhrndflx6bz4QeGENThLK5UC+fZWu75htCpl6LMjBn4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":951644,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfVhs9CRA9TVsSAnZWagAAzQgP/1tsbUx2hCfeh1Rzslh2\nGE4758BODgl8JBZbwlX6r7D9hDwY8E9q5J0+Ul8cc5a/4/DcYkizpQD3rnkw\nUlqcMk8/vSE8YOhG6kwBmSbroWQI3DJB250uyyBFSo1AM1zn9uTLcFpPZn/J\nFOtwou0N3+K2XZPicimF1TWvzODQiY0432JSoNr3XtS3Goys1jGXu6Xkjv4A\nNH8GqnRw9qYKAiKIn9ntx1HcBLJIeuFmgJWMbRHNZv7v1NdLal1gGGvnBMLO\nG4qIUzjtq/i9sPOS/EFbzYaw0fVgHNb5MXsiZIpvihWREQeZyZEhijRC6Kz2\nT4XAdFYYllpYYsmECvfTa0uzAlSU66uGabvvZ18qwP8F9tyg2nG6DPWZn1rj\nYODUsKiBSDSVPZ5clyNRZmhdXgvNjRCfGp3EvG6NawO3Ejlzfh1S2bFt2RNS\nm9GKXz6MiZf6pNHI1UmD58papR/YN+nTcDjeHlIAWIQfkhTyd4pBghmavq56\nvZMSlLuEjSlkBVBGWOxA3YncnLGe0vB8eWQHjaUt4co5Kbyyu1+mOGx/WQad\nemP0zktWG8oN/HDWiJGvLdM8ALZ362Xl3qpijk4cVSnaH9a7WtOqpzHRJ8bD\ny/8Xd8ZDoG1WG253MgDW6Ts6L3ausO+ig/9z+zNdWu/lW3HPwka3s7miR6Ql\nlf9R\r\n=a5YZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"428174d4cc4fe07747a08094dc060a9ca46ed27b","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.9.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.1.3","eslint":"7.8.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.5","typescript":"^4.0.2","@babel/core":"^7.11.5","@babel/node":"^7.10.5","lint-staged":"^10.2.13","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^23.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.0.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.3.3_1599478588276_0.9784641450784368","host":"s3://npm-registry-packages"}},"30.4.0":{"name":"eslint-plugin-jsdoc","version":"30.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"3c84f59b6a04eaef2b636f75eeee905d16b7f2f9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.4.0.tgz","fileCount":97,"integrity":"sha512-eb22QADWcISPQJwFJ+rUAl1NXdyOq3qy0Cp0+MZzpwlqFgJ+eJ7Fd/jYTfwDuN8QyFWumuyzSpwQBnF4PfM9Wg==","signatures":[{"sig":"MEUCIQD9LMkzm+URAm6Y+Gpfb9OzNtIvjLKaadWdToQqdkFIJwIgZSOk5kBUobPw8PtfFr6+lC/UuOWYLXZxItoSyeVzjBw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":953824,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfWCUJCRA9TVsSAnZWagAAtJwP/RITqV3oR5KhAUO5Cn0A\nerOYGW/9ZFS6pMUFg4OtVtD7NAd0YtLJpUrZCmIZC/qb324I6LYI1k3ZRved\na2fkAYunwQ8g/Px+Bb0fh8NEUzbVTwZs923m+1GhpOQv+Qb5xj14gkCPcA6l\nUe2HHLM07p9MsrYv91EHzbnfFHfOqFXD12EmMkS41LTIC7ImDtJ18+ZeJZ5W\nUqQ2kj44q7f+mcWDcFUHJRXQPxGLN2ewaqV0qEV1fRnaGyJhzJbD3M5LOP1V\nc+UKJLv/m76wnhSeuKmb8yngaXv44zN8HlJ/DnWtVLKYkUEtxXYe/zE2sHrr\nr2BJZ3tQOSWT4UZRuTBDoPG/F+KdtSr5KSuug3E5/ebDDAGu1I51OhSqFIam\nzWXHoz6llGcJuo9J5mfn5vy5+CwVG6Qf91Ecb0ZLZ+zObOm/AgbbBmDWDoGk\neNLRtTDq6cLcZWhmxs2Oz5vBGif++cTl+OxV1/J5yJenSwXED/AbYIoMPwcz\nrYw1lNGdn2HbQWWXqjipjGQRYLVqxCkg1y16NCBCl1+wwKsySUaJGyk19UBh\nE0MvVWvUkuIaM/tRgqGUjkMqh/ev6zwTsSvt5q/mWvWcm/XhijmWSl+HP7GI\n59EMD8PKvUsPgdgdhk78eCyMImoP6l0GPTD6y+v7OH8PlVJ0LAHr7UQdrbRk\nUyab\r\n=SSLz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"c750c862670b3fa2c74e79551f4231348328e1eb","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"10.22.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.1.3","eslint":"7.8.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.5","typescript":"^4.0.2","@babel/core":"^7.11.5","@babel/node":"^7.10.5","lint-staged":"^10.2.13","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^23.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.0.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.4.0_1599612168391_0.18222115888408386","host":"s3://npm-registry-packages"}},"30.4.1":{"name":"eslint-plugin-jsdoc","version":"30.4.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.4.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"316b7c1963c7e51d244aeabca0878f3f95749b40","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.4.1.tgz","fileCount":97,"integrity":"sha512-dVdqenn9uHoXFEUIDnVdaHsel1ZZZMoelYZ1T46XSZvDkdsOl7NpssG0LxqzZ0rG3gpCTHBQdqpL6GlC3TgBAA==","signatures":[{"sig":"MEUCIQDGbVBkaYhVZvUXy1xW6nKNBRAXTWw7o1QghLc0lMRwewIgNtI3uaBFKf9SMb/PIV3moRUaBAO3b6vMVYxbjNHS7+w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":954899,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfW8FGCRA9TVsSAnZWagAAjmsP/A46DfBZDxLJZpNvWnL4\nyoOyztWhd0q4WOo+ZnbWrB5TeLyS0iEddbx0AXQN5vo6PiEyF55JThMX5/er\nW0D79pGZVhijPbHXoarXVNwFJGh6bUIZpa5wBHt6gJttdYCMNlsGm7fJQ7Vp\nEhhzkVVdyLs6K/wssc3MF2UY3cGZw3ij4YwAC0NAlvVqlMM+9fX6OQTWA+nP\nyfC9U7kCHBfaKnzgCtpr61wC0zR3lzqIlK0yEt6tPHPNSoJSW9RBc65loxsF\nH9vkBxLK2ZknJbBblQnRnjTdC6eo7lLLbUoDDoXkoPYTScCCfoDMHIbhwFO0\nyYf4bmcvVWRj0bJ7jdcYQrnZmuH8u6Wi291pino00lKnONAvdBIiRoTNxhsR\n82GxTl1T2RpCYgH46VgYg2qZPHdMEkxxrMgGgpHvHB63PqcqKxI01Ep1VmTG\nZmCt0oD/+3CIpOEWCJyLD8Q4e7GBukNtZMw4/JQjDujf1IAHfAin83nALiQj\nzuJkqc+KzYvDtqltr+I9kMqApJchEeOKcEM4KSfPPuucnRQpPvAntHDR/MHj\nwv9J9i+6ckGovJPoE+VYt5XP5HYp0Uw5w1QM/MlIzMD8ULqDkyaI1aD50itw\ny+vECe69PeKxfrZSrKvpvmku77lllDjs8ulDsgOld5dvfhshA0n2Chndb9B3\nbSum\r\n=OKkU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"7fc84e9ddaa76984340ea64cc6ee6541ee1c64ba","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"10.22.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.1.3","eslint":"7.8.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.5","typescript":"^4.0.2","@babel/core":"^7.11.5","@babel/node":"^7.10.5","lint-staged":"^10.2.13","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^23.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.0.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.4.1_1599848773257_0.4484476229007106","host":"s3://npm-registry-packages"}},"30.4.2":{"name":"eslint-plugin-jsdoc","version":"30.4.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.4.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d3113442a2b285e902903d91b987e2d6d4409006","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.4.2.tgz","fileCount":97,"integrity":"sha512-Czm3gXyP1Ztibyh+J3t7osQ+AUrXhJp9CQfpo6cME8LwrlDpl2newDL18UO1Yk+TngcLKUyMt0byfpHjwhqNBg==","signatures":[{"sig":"MEUCIQD+ZHRQDm/JfnQ7twQKlC+XQukTeeeRxttXQDrJ2XAIPAIgKrd/KcUO5J1/W2X27UtGdQ4of2XE6dqCnS6WymI3D4Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":957219,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfXK4BCRA9TVsSAnZWagAAeTUP/2g+APio4DkUMRTiHdgP\nHfo5wGD3MqU1uWzFXK0/sAUSac3FG1ViAY/9+gtPKsoSktEA/OZsv2yNu2cv\nFGzG2v0qd2THb4fyS/Wpqp/280eiwuvZPGH1Hm976Z+HSacG9Kj2ucuuAGUS\nNVG+NrJDLGqOkuSd64T0nhklnsk0HJpkNliPYXR8Bf0d4r4rK8rt/FmNzMwk\nBt2ntcB2N+XfngTY3R0WbkQVPgmk1lNz7cxtLh2Bch3/ctwT4auUDaCbCv0P\nFSWprmweUYlym2gXBLCBGnVs0SqIBKadw87gX29uAfe5CGP3OrB1t5grXrwG\nGn7WwB/5DHH+S5SBOKGr5Ie32Loy4RvKQ7Hk3XYsTTWSGIIqz37dACN5q3MB\nqFEr5Uc7i4U6E/47RwDavRnY87ehfpN7oxeRV1c73Mu4DVS4U5D/+Zr7OEec\nioE6hCtUJx0OD/pKp3ylBsdZBgAr338QzoUV9OcdNZCQGJXnrg1CkvooL+aw\nNtVoov5qtaP4x1aWf8fA903aCh/AOEHPoEnwfSY6VA4YVsJKhlE3rWOTfhji\nerrlK0U9cv3r+DBu38uDPjED7peGhkVphSOVBm20GhenP8dgwxMXDx3GFcot\nfntkc116ndjIjG/qO0IIh3rnvoGGTCR/hv17liEtgplkmrDml9IpY0aORrRD\nqXoE\r\n=bInU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"4f73e9c0807c38a91f7b0f9c6c8ddbbcc0c931e8","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.10.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.1.3","eslint":"7.8.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.5","typescript":"^4.0.2","@babel/core":"^7.11.5","@babel/node":"^7.10.5","lint-staged":"^10.2.13","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^23.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.0.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.4.2_1599909376468_0.8135871109568116","host":"s3://npm-registry-packages"}},"30.5.0":{"name":"eslint-plugin-jsdoc","version":"30.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6952708856b13e2e762a0bdbe23effc158e75dc4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.5.0.tgz","fileCount":99,"integrity":"sha512-Q7PTNTsfcz7VitVzigj0dcoVO9NQoYv8rEEIal0d2JKmUR2ltxzmL5y8jDlYWivzQ/wGDqmHV4FszgIKooGROg==","signatures":[{"sig":"MEUCIQDlxSB4M0JrDprTYeulRWNxje+tDoGNBgyipxAUgRYJPwIgRPK3zMeB2WZnxL6zczbJGcwkIOPYMcULVDjfIU2SgDg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":974113,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfXyOyCRA9TVsSAnZWagAAmhYP/2T1uCsC0NryEpAphU+Q\nEiY8l1CpD4Nbs4pJ6CNX4tOvEjYfwNQvf/t+9b6NRd0F/lxk3HigjtOZQSlH\nKCCwrJ3NA2Mb13ake1zDph8+22A31ElbCdkFpc0ca6GFboT9zcJsZYkTzi2j\n3Z7TGsc7enSehvOBk8bINp3tf0PteKNp/DSuwr+uYtDojaEI07kb7wFLttcp\nL2cV3VGhmjOWSh/cnk87nr2AcBpUcZi/+/dY1TcueMAzr6aWB5SvtP9B69Q6\nq0rxcpi9OGHOxEh5s5A5G7oS/4Bs2cOZe1OVKJwE1vSEw5Vu1k4Xn9J3l65F\nquyvD0V3FM5S7Gbag7k/KlMdKZXJ+oorV1n50KrWVIypXMYSq212/R5RIQbx\nb6FYGCzXvxD/sI++XRF2cabioSxetEjOWnWm8wuq+SxkWbLA+CvprDuNHkq+\nXr/vDIbttERUtrvJjByuPbYCfpNjqp4i7cOrHdcldH68mfXbck/k6naZL1Uy\nhGGhK4HPkJwTBD/OxnY4sv2ZHP3+zDRw6xfE4+P05nCz2XnDsKz3NAzy1eTm\ntRqU/nu8rbn+SgKEy4MqpW/mMLyRbPbKcCZNfclsOPPnFOBf9oEMj/Vu4q0H\nvly4R2UiP8Of7ohdQ1t1JlO+kRmsTVmUBpuzgN6mFgS4H3RS8UyCmQslxD8X\nPXns\r\n=qpcd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"6e2b99da1a0e3e65bfa6eefb7b127b3d30c6e44f","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"10.22.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.1.3","eslint":"7.8.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.5","typescript":"^4.0.2","@babel/core":"^7.11.5","@babel/node":"^7.10.5","lint-staged":"^10.2.13","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^23.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.0.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.5.0_1600070577856_0.24496451447329237","host":"s3://npm-registry-packages"}},"30.5.1":{"name":"eslint-plugin-jsdoc","version":"30.5.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.5.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b024295db3ce3b258909419d9bcf747b8e65e2a7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.5.1.tgz","fileCount":99,"integrity":"sha512-cY3YNxdhFcQVkcQLnZw/iZGsTPMuWa9yWZclorMWkjdHprBQX0TMWMEcmJYM3IjHp1HJr7aD0Z0sCRifEBhnzg==","signatures":[{"sig":"MEQCIGm7f2ZYq7qdqpnNuS9LHpxBuiihsnoU6NZlecX+Kju4AiABMwvrmav3JfFvtrDet+j79NBu09+hqK5HEyZQWv844w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":975038,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfXydBCRA9TVsSAnZWagAA8cIQAJKomulqdVN/b5G7h5pM\nOQAdBWtPuaSsYTj3H4EGvEkooCPMfTVVIxQxd+yZmhZJ02Y8mvPW+/Yk1Rez\nFOg1yr5qwfYv2VxSqx3M+N1Nlkx3bHNZZ917no4QlzB+MUuuLOaenfox88MU\nO1xxDkt+rvMHr8KbicJzSJK/jzMpmJ0HhllrM9X0kVISDs2PFpEq5NJRTKYI\nzt7LtcSAZ4PCESinUiWp4Rbyu6UdXVrAEULZ4IATRouewSchvDqvtPsFUag2\n0ESp6gTmIBca62eWNjyKDBaORXwRaA/Oq3/HU9s+JJmqtfM1PQtRs9uOeFyI\nLSqNUPxpp7Lv6OSuEvDyT/LY2FTh9TNGs0nBRjIxvY6N30FSkjW8sgC88Lzv\nC3Gst3cZJ5ZV0fZyTeximQJ8zt2Tq3cK29Kb94nhM7nnp0TCnFbL8PE4A1bN\nnq0H/LkkUTN+Ub0omu6btNp6P1Q+gxbvYu6GrOae/fEkLtUzMg0pbfjpVR/b\nZO9Tlp5L4PYNQp7Agnxvr3SaJqGKMCZLQrSyG06+RvyoC1i/hKRunnppwNX6\nb6U7WbrfxMre5JmSyHZUvDR6KZdJgbcXR0zGXMOoMf72XC2Ryk1OiXL/7NK3\nnqUMzp+dgXQndkIUpm3pyIR+fJgIXTKCvWOEyvlx/twNcv6lrhH/7ewRbfz8\nAXzx\r\n=gXU/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"ec71632eba1e43fd13cd7c4f50b6c0a8392ad778","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.10.1","dependencies":{"debug":"^4.1.1","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.1.3","eslint":"7.8.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.5","typescript":"^4.0.2","@babel/core":"^7.11.5","@babel/node":"^7.10.5","lint-staged":"^10.2.13","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^23.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.0.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.5.1_1600071488479_0.3655850714916766","host":"s3://npm-registry-packages"}},"30.5.2":{"name":"eslint-plugin-jsdoc","version":"30.5.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.5.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a2002c52d5fb4a9d42b9fa3a3136a9dbdcb7f69e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.5.2.tgz","fileCount":99,"integrity":"sha512-LJfjqVGYrPUZv4Gt+1OB5NHhySVPeX4Sdd1qUUjTPnBSwbezry7j3NdPVIeU67VwCVJU2rmqd6jhZ7VYec37Cw==","signatures":[{"sig":"MEUCIQDTVkigI/Zg13Vd9jz/CpPYteZ30BzSgdO4Wd77NYzRygIgGOYHzbcfGCw/TlwTbDWZ55JewqjX7g0xIbHQ23kuuNo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":981528,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfbdgSCRA9TVsSAnZWagAAK6wP/273SoW0W2sG1cO+AmSH\nR6F7Gi1G9jUYkKKjTgAgm9mE9J11MvcXtL0neFaNB9llM8v1mQ1dPiGD0hB0\nhbf0owXfq31TONTG51CyHfPT0L8+4TI8qSgiRFhaYm23WZQbUcajcICCNx5Q\nTRze0y519Pdw+xablM1X49Za5fh+BE9otugZ+gIIO8C7RP2SPKvb8Whz5Xt4\n/xYxexZhiLSXgQ0Hm0TtRL1x8xc+mcS2nKOTbY44jteCQ28wbbLNSgQBNPEp\nR6OaGY0C/WJf3ouhQ61aJB9pwxIC9pxie+Vnt/1AyZ/WLRFG4mGYSmMu3j0k\nEqkZFJnkNpLz+93J7r11/nnCJintda3JC3Q9MUvfGubsQ/VKFgm2Qwq5kIJ4\n3s/+50HFyJ0Q0GofkURRJISWrLqrEOCkt/NY5mYNG2yXEETUpKXsJA0z46tr\nbfnHfDJbYbcaNBXZtsuK2NfPL4AEWKcsJzKfib+SkHSkKmoaf81+E1O47Shq\nEPB3bjIKp9pIZSeCIiHTziOkdAhFOAzHqz/tHQ6o1S1aSu1gdB+PwisuQdZS\nycjnlcazhcasyHYnMBj26RT7pkEGW2Wn5jQEEWPWBmqbwwdF1LLyqjewJJUf\nPsParVi4TCGyGXbywJB8AzdXtj0aW9AJC6U2m1ckf0pevit+gcgfY/MnY5bg\n9QIW\r\n=T0jY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"63ef3bcd16558663abc7dada4f7abc0e9bd668ba","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"12.18.4","dependencies":{"debug":"^4.1.1","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.1.3","eslint":"7.8.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.5","typescript":"^4.0.2","@babel/core":"^7.11.5","@babel/node":"^7.10.5","lint-staged":"^10.2.13","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^23.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.0.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.5.2_1601034257297_0.5895427805432094","host":"s3://npm-registry-packages"}},"30.5.3":{"name":"eslint-plugin-jsdoc","version":"30.5.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.5.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9dacab0c0b674ca65627f8d5a4f538c9c383b82a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.5.3.tgz","fileCount":99,"integrity":"sha512-J3VgE9cnjjNYEjAzetzR3UYAY4M1nlu6Nljanaxfe2snQ59d0XTK4d6vMQ0xiDjdwVLWEigQTCa4qxNc9eIrGw==","signatures":[{"sig":"MEUCIGrnbwGOWEMNuIA+NRc1Snnv7Pr11AgMuKlIYjt1p6qbAiEApv+jdv7tFQnsDUP6KmqRS8x8fNgSrcM3DhaNA8HU1eI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":982468,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfcACpCRA9TVsSAnZWagAAWocP/3VmFlHS/jgLsng2zyqx\nuzpU8Uw5DJO2DsH9/w3zYxeF9Z81SluVGO/ghidcqSTf3iA0nJMJ6Ju6vTDX\ns/crn/MiwEF3FOLIVeaxHsm1NspvMWohwkGMppC3q9E1mg7Kw/83lE7X+nUj\nQUhkE6M6aGT0UxxD2B90GIraPYAbNKWj4BEGKsEzXQSnZFIvrBk4vxqJIIzC\nYFEo4KAI1uG5BqanKUMfDXKcjZmCpUO/9yonNI4Z8J09Nbc+oh4JjZXHU7Oo\nrqIE3FK9HDa+Hu6GLs0Eyt7MzmCiVe4pfZVWoinLzeuU3EG2XCEiFU9IljZ5\nEFgdWIZNn98ZORulkNYvuzHY0ZOj8vdCVYJscZX9xOold4ab+2iq/OvBsNT3\n5DNiAcw/PYATHa+GK6XCwlqcw8OzjcHmMrZpWVzGkvdxOvBHjsXwBbMQRq5T\n548cbwIJ4GiEjp6FqixtT86xnYvoECvGZmLTTOQGuJT8f/aZbvt3GSplX8zj\nyJ5jUG02iDCDMrxcqjheK3lCAits8UeYYff2YnXO5wKskHWOx3WJyy4yr40j\nPgJLWA08PPREH6vuyTwXU+WbVgtksJF3oGKtBG8f2LkaIE/Yk6sKvkSmqfsu\nbX9YNefaaAatGfZcO5BCA6+NaoCEdS9R243dQt/mBaPMMXedGR9ax54X4urc\nnx/K\r\n=Ns2n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"9a568638f59960c8008fc2d03e4d83252a1e3072","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.12.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.1.3","eslint":"7.8.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.5","typescript":"^4.0.2","@babel/core":"^7.11.5","@babel/node":"^7.10.5","lint-staged":"^10.2.13","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^23.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.0.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.5.3_1601175720718_0.2315672829905724","host":"s3://npm-registry-packages"}},"30.6.0":{"name":"eslint-plugin-jsdoc","version":"30.6.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.6.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"72c7e679fcdbdcdb75ca1ae77ce2670ade596a15","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.6.0.tgz","fileCount":99,"integrity":"sha512-vKZflcqdsFT7QzkHacnUP31ctyHdXNkeNrTaHjVTDf5TNTSzaN34NGGOXPJRZeqqa0jWOpf6m4WtRlfZw4WDqg==","signatures":[{"sig":"MEQCIEyVOd+p4/abMAd5SEFZcl8rpkNnqFP9tekGs5PFiL78AiBtKsRCm8S8ewIsX4Z2stMMmgwNULYhVKc8kEm0N+D58g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":984168,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfcHl1CRA9TVsSAnZWagAA2hoQAI/wnTV7B8AKh8MWOc+l\nrjNSBYPkHMyODcq+P0iytrL//EMZdCA/m/gtruol9/s+8I9K5VFD6hV+dVe+\n3OcDAnkvC1H82leVUTaODUXKix9mbnRtSIPHca0ybMzqKWTfDCfiEYFnKWUW\nPseBbvhtop9ef1Dp1yNqGw7vM296UY/RdaOlsfGJDXyanZS5JLLGS0K3oxfb\naNb+8DJFeFum1/rZ1YYzXHNU1d8RAtsoQ4frQjx9KPt6Ur22sOpn8R4B53rE\nvLKPMA+ggYF0g7GePbrKTHmnHhcU4NPK1SiwUvfqnyl11z6COK6mxrZWXmHy\noC8vAnqmxuLQMv3PgNuGxgdnwWJw/zqE99esAa9vd2QJbnSFBGVUMFKdl2cD\nv4VDLqSptUxW6O3C62WBMY8sk+CyqvJsDr8E0hLBS1Gyq7Jbp2KVb1maRkVl\nI5tNZ7xCdGmM9KdsaN2UGiJsKBjWpJfDRWg+HgYyL43EbAGkBSNuzhTCb7og\n3w1RNTnKkp4y5U9IFk2BK6j+aU0yRCmX1YEamKhRrB+1bW1/AzmBXgPdZ/em\n816qISkmYLbwufbeHklkd5WNwfBe4EVNMpwo4axmSCCAoJi+Y32/hKMbUvUx\nxBIHUMW85z0n5iya6mNVlgA1QjBenZNtTZkBNqq7NQ14hQcTHZ36Nnp5W6A8\nIE1Y\r\n=gOzQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"80e16d0f9bd024e5e77b78af1ba91a700f7919f2","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.12.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.2.5","mocha":"^8.1.3","eslint":"7.8.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.5","typescript":"^4.0.2","@babel/core":"^7.11.5","@babel/node":"^7.10.5","lint-staged":"^10.2.13","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.1","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^23.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.0.1","babel-plugin-add-module-exports":"^1.0.2","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.6.0_1601206644851_0.5090385838834308","host":"s3://npm-registry-packages"}},"30.6.1":{"name":"eslint-plugin-jsdoc","version":"30.6.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.6.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"eb4124511efb9109eb58bfdcec420eb28a894d31","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.6.1.tgz","fileCount":99,"integrity":"sha512-qUinrghaxyzcg+FDSt9msv6d898PsI92idiNRZ334qbruhkS6NwVmzSbfpmaij6Xo3czYK42Q2JClvnIiPWpTg==","signatures":[{"sig":"MEQCICNeJH7fV7K56jWBjSCm2m4eHJ1+opIn5wZupbMzj3R5AiATHXX6x3TU5LbOeMEivuVTtFTZoCZBiCkQmfZrpiD9bw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":984508,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfcd2/CRA9TVsSAnZWagAAbWMQAIPJvlTQ46POgiexwIoF\n3TrTOPE9IowRceoy4NkT04jOGpzlri5FSI6WN13tcGMSq+Bx+rLyFPag4b/a\neW4xOPXKsbBM/a9o6YGnYFT57gsQ7Y2YS6E63uZqF7vnBN7tpJEXl+wrGvX/\n/FG5LG4qukXkuhrQQEHJAUTJqOMN4ooWdrc/uDM97+bSng/tv7EEzfSQ9K70\nnLhUpx9tEGYgw5tEr97zVBcyEiP/pEWiKZOpWEBLCOm+wwDoiWaIqf2ReBXL\n893A7f85Y4Gqbek3cAf9SbvGfAc4B3cxLKGnp3VvyubDRm/DLYDGLCyXTXgX\nv6hCFNw967cz304cNtY6dwGyraFleGNNh1ZoxAT6gCmOD0z2y1n6MKa34h5N\nAIvc38GIgUTp1324tCNivukAOALSO4itcs3tgEOu2Mn9Xkr3GqTmanG1iXko\nfzbriAfDhN/ibu2VeEJdEN+sbdxyiXgDIBBZnbKot4QLR6zQqnNk9zfmUWSz\njNyVg2GxmhcQIwAmsX8D0X4tacvfKjmFxLymWwxVz7kfHD+szOniod61fGLg\npOJCDwRh3KpETwYtS42u8xgpkadk7KviupFvpBeqMLMjs7F+kuvTzsgQNLIx\njttkwb9bqiHyn0hIJvo4Hn6PHX1vSW5N67vKbhsC1nmaTHq4SXKsvDh2xiiH\nLdAg\r\n=jW61\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"3cca564f658ba62595096c783c4d8be1f61b141a","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.8","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.12.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.0","mocha":"^8.1.3","eslint":"7.10.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.6","typescript":"^4.0.3","@babel/core":"^7.11.6","@babel/node":"^7.10.5","lint-staged":"^10.4.0","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.2","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^24.1.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.2.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.6.1_1601297854256_0.8913014336878928","host":"s3://npm-registry-packages"}},"30.6.2":{"name":"eslint-plugin-jsdoc","version":"30.6.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.6.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"46f1f449dbf53445da2e8231e6954e4484ab5e04","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.6.2.tgz","fileCount":99,"integrity":"sha512-LlRdsSQBSPsI3MvhWoGc+Ev3PfFRBk41wwkmbOgC7KP7WQlbeWPpASF5Vdv17XEZ7J+xvPB3KCMyR//6Dbjnnw==","signatures":[{"sig":"MEQCIHM2qPNQ6F9f7WzFV8sBcO9SVTLk4KnBp3HHswXAclFeAiAM+4eVVrkm7YYB+7n3b1AAiw0juL8y3c3WsvqqC1b0Rg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":984826,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfc0hxCRA9TVsSAnZWagAAsS0P/A9U+jxD5wbVXbua0DIB\nUTgFtF9tjmxKyopaNafs7mMy1+uNPVt0U2NkjsHP2CuDoj+O0BuW+q2F6alq\nwtLMdBcL3kk4gMrXknmXV0QlVx6W0MYuJhKKsAPxjBHGkrD/k16KP43nDmLi\nJSLcp1hYgR4ap7mhqUmzBWRYUepKoG9r8ncYg5eDxeKEK8aYdYIzeWlGQN7Q\nPb7NPAGpBu0h4hX9coNp3ZzRoi9Qaq5LFUy6hjLXPANPOrtP3fTNSUf4BzH0\nkCDinNtRJsxaHRfVoQGcoCoU9UrNtua6RnZV+WCnDq+eG4h5Dlh+aVdx1BRt\n/wWgQkMa0twQ5joER4sANL2H8a/UHnlGc/G62IMSFrKM2+5xr5QR5siQMwou\nDfrbQ2Y5ZO+w29ewHT62VNyFYKinMh7VaSuQkxYbUvPz3D7sm/TcLjTkwcUx\nM8RoQdo/YYKuKMP9huPT31ffChl1I+iwL8kMvWrW7dqwdQY+mB3BTSWrlk8D\no7lM6/kcy/1XDAXJLsIHA6XBREIMEX/ZSVHCOWbSt0N8WaS0lFJMemDFJ5SD\njOeEY+icB0SlNHHKo2pWmBh4DM9/cXaMQsAvZnV0MHhzxxsJCX84MOjIc23t\nNzMKYRHEq/VHb9HdV+VUgIsoetKDrU5F1EdIRfYZd9AZ4nKCz2qc5kcqZ8A3\nDZ9h\r\n=eHIW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"42a9b3575b57d0692c54a0e77f023d7531d89c68","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.8","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.12.0","dependencies":{"debug":"^4.1.1","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.0","mocha":"^8.1.3","eslint":"7.10.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.6","typescript":"^4.0.3","@babel/core":"^7.11.6","@babel/node":"^7.10.5","lint-staged":"^10.4.0","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.2","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^24.1.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.2.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.6.2_1601390704194_0.7169126554383958","host":"s3://npm-registry-packages"}},"30.6.3":{"name":"eslint-plugin-jsdoc","version":"30.6.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.6.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5d946f7a27bd9ee851c67838f607d85ea0492bfa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.6.3.tgz","fileCount":99,"integrity":"sha512-RnyM+a3SKRfPs/jqO2qOGAEZnOJT2dOhiwhBlYVp8/yRUUBNPlvkwZm0arrnyFKvfZX6WqSwlK5OcNnM5W1Etg==","signatures":[{"sig":"MEUCIQCwgQnE4r7epJVN0NoJKX/q9HB3699DffpAEir/OELjegIgLNnenJQyS8jt9ySw01bfyfUWJmXha5JiPKYpYVn3rLM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":985058,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfd12SCRA9TVsSAnZWagAAGdgP/RlLiA4MjF0pQ+hPitZ/\nl9RxFuyWFP92INIw7WeohWgMZPxFiUNWDSa/8r6YxHAvG4v2Q3A6SwSS7y6s\nVOu7DEOY87uny4ixF6wWwx0bT5gmAJKa5T38m+9E7bHerWmk4FE/9n823Kwd\nF2FKMYEyEKy+1TLgditxGVLWqyjfPBREIl/dD7JiVEMYv7U2y2gGrjr57++C\nKk/GZ039h1KKPdp5U8f7EhyXyETZEEFY2Hm/EUGPFCtm3NYgm1XEs1VO2/Kd\nnNQ0snTM52kL8uEaMFsgBzyMDNdidQJbn9bZQjlCMoLRAXxoZwz9DVkzd0yu\nZK30Gn4rltzfOR5oiejOyPzm456cwgt8WBoh+OtWpfn2Zs/dGlNQQARLQDv/\nA7ND+ZtIJK23jp/n4rs15xHaOiR2kYuISvvwNAGcKOvQChemo50arERJ2RGl\n+1Kl1M0swTM52QfvLeiaVjAJGco1jXApG/q/pp/iF0APCw+8DBKBaH5Qt7sa\n1W5R/6sTRkz1SrB0koZ8z8RhPvuM1nrANYuBNSh1yINtQuwa8sk2K/72BpmR\n8e58R7wPiKPr7z1qbeJnJQ+4ep+hBN5V9P/Gc1dwI3B5KckMwCVh+EY81KzF\nKnBfZKz3XK4oPFiPLndnXcRCiedh/mFlzcHRdnG17crxKkOq72j3gZSFEnHX\nMo4/\r\n=NF0Q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"0b95ba5d497c8a91a40d2a5cb73dae3ccb0d6d60","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.8","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"12.18.4","dependencies":{"debug":"^4.1.1","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.0","mocha":"^8.1.3","eslint":"7.10.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.6","typescript":"^4.0.3","@babel/core":"^7.11.6","@babel/node":"^7.10.5","lint-staged":"^10.4.0","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.2","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^24.1.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.2.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.6.3_1601658258056_0.8233565948931143","host":"s3://npm-registry-packages"}},"30.6.4":{"name":"eslint-plugin-jsdoc","version":"30.6.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.6.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ae7dab1ff24dff2c75fab7bb96a6b5f12621c212","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.6.4.tgz","fileCount":99,"integrity":"sha512-aDTsAkKwyMsIYtytjH5zPtv+LkbCORN6oy/T4L40ssU5pgXWRSs0ULyJb6e4p2jT8y5nmG3IgpawYarL4tKunw==","signatures":[{"sig":"MEUCIQDiS6PS9wu8UI41Onhr9RvWhSBIGM5JgSVcS5b7G8p34AIgBXJndirXb5JjJ6HlSrnY1mABPhZy42Xl5JN2UGgAekQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":986680,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJff8LLCRA9TVsSAnZWagAAO9AP/AojXcRD4fRuOMSrwsQp\n1EvzA/TeGoK9lkeTFJTrq7flFLwXVQpQk52YZcwiSpzW7Vp1+cTmbqpV/qlw\nTeYGoK0y84zj1y0CE/n6xSOvmJkr2sLOgsja6N90GeSdli+LkhjjoHzsCSrz\nTx5jbEuQrzpCqBgruxyg3Axu8Rfm8jyzRhIgHIrwEQgvvdP2Wdzs3HAMrvq2\n/PUI3Y4Lb7S06zFhEIDxDqQ6yvi5a39cVt984FzrJsSXq1TqDDHqDWt7zWNp\nnW/Uiiga8v7tJuczn1ugdRDhAIJfS6nsipyqlkJfAyVUzauuQmmSA3TbPiQ3\n2jhntmFvQowZ8CulsH9ZvKBGYFv8Ybt2WMBAPrg9FhMDe9cc4f+BwMWJUZ7U\nlO5Rbp9ZzCgqqp8uiWoqIBxm1U+e1W5yxdgvQNALG1/XG7jzxC+m6Tg2VJ1g\nptLOhHoLygA4C0Ylcpbev0/+nUfrSWNZXlz3ARMGrFisjh7gMRDFck822hSw\nNKEqxpJDiNMnsTQpgquN0vwErQHwWLrZL2h+6AdbZega+0mrnT+hmhd0ikds\ndwxBjo8Q9t88P0vL1aLxZuwDbqFxvPNJZ+/bOqGSW5KkAVXN9GNFu0NPGH5/\nnMVCEJihP6YmVnae5q9X+MB4/8iFSvEDCZniBnPxmrf+w4b5QV1CF+eq1wZE\ndhqz\r\n=OQB3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"5aeee6a41bbe9571bbe39b689d24effa74a55be1","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.8","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.13.1","dependencies":{"debug":"^4.2.0","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.0","mocha":"^8.1.3","eslint":"7.10.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.6","typescript":"^4.0.3","@babel/core":"^7.11.6","@babel/node":"^7.10.5","lint-staged":"^10.4.0","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.2","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^24.1.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.4.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.6.4_1602208458641_0.2882462233877463","host":"s3://npm-registry-packages"}},"30.6.5":{"name":"eslint-plugin-jsdoc","version":"30.6.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.6.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4d6c794430afe1593459e56ecc65a2df0230b8d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.6.5.tgz","fileCount":99,"integrity":"sha512-obC3wi1/b5hsPLXa3ZDs571QXGqkVsphndMsIsVQzWRdZOaRbxdvGiKhLzzZytbRZAL1M1Bkdc/3Af7eNxJ/Hg==","signatures":[{"sig":"MEUCIFjxT/AclwPtELcIEzOsV8o5rjYoyfHdZstggttdGfaWAiEAqWITk48p+5vzOJpF8VPKllbRmJCUe+yIhHur3DIJ0RY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":987261,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfhkY7CRA9TVsSAnZWagAAMmsP/i1R4/GbeuvFQ+l0Xc72\nZn2N2lkAd+aMJiZhUYr4AgzcrAr1UE0k43aAMT3nmL2q7R+bySTauPuXPdQL\n/L/xymthUu5NsJp6Fjy/ARL3gznrNoUoZzGZSdJjSZBDQ72iRVITnnGH2eVB\nzvgmiKfPAbivnjPR8SDjP6sdJacBgeULLg5KdhRONbFJSQP6UD7ng4f+lHDJ\n2726mNnureWLoN/zwg2PRIqs+XAqzbKjAVqDnmc+YFTxG/psudrzg7BooswQ\nfVUQ7LttYENQNDr20LYOBV7wqWpAJ7YRBffvAOpGPHzvzEG+/iJcVEXSi09h\nYhYmdl6hK+B+putKYsvIiJMqW1vDXpTl/af+9kjSgDfLYoHyvcvh56i0AUYP\nke6t8j/TEgApTvklUNilGLDM3col7aQtmDAB6Ut5VYa2oLhboYJGUrF0u2Y+\nSjX9IsoRUW/DFbTZHq7l/FvPEc1V66Ah9Kmiim4T1F+yQnVGcmfO02ajc4R1\nviAlMpbumCq62yVMMVlHYDOa0kZHlFakRlElh9VheOOaVwiyiZWC2jDBt0L8\ncg77ponV3XPkeEfDTWiuj895pQVYRAOITI9lVOia7O3+YhY4eVQ8Dz/YLIz3\n8ODKT84lDtT86xOE+hCbXBWKab4KBi2XPgroRzZUJzxU2HdfcBa/6nmPp4A4\np8rT\r\n=2zZS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"2e0f2a620f1e57cd3a69d33e4421b9d482bd8148","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.8","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.13.1","dependencies":{"debug":"^4.2.0","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.0","mocha":"^8.1.3","eslint":"7.10.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.6","typescript":"^4.0.3","@babel/core":"^7.11.6","@babel/node":"^7.10.5","lint-staged":"^10.4.0","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.2","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^24.1.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.4.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.6.5_1602635323205_0.7495737617432989","host":"s3://npm-registry-packages"}},"30.7.0":{"name":"eslint-plugin-jsdoc","version":"30.7.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.7.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b5efcd23e12038a918a855b162fb94e2529c35bc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.7.0.tgz","fileCount":99,"integrity":"sha512-hP6pigNXwy5sRRcsY355rj6bet4stqUQJtt//nmAtT/EdbJ+m8eX/2DBc/pdBWx0rYeTsFS5fmqnaOEHTTnuaQ==","signatures":[{"sig":"MEUCIDNyL1sRlVhjR+eFyLvXqiKox+18v9eBoLXmzbja9bfTAiEAoEbR2tVRwzdIdwfycPYYi2ZICIwd2TiX/OBhiq9FACA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":996463,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfjZcaCRA9TVsSAnZWagAAjJQQAJalMKkL+ZuxletF0VwO\nod46IRwcrzbjojmY09eM6pOo4e+qU2Pqz+pA8nktHP+cMk43s0ei/yEWmhQ/\niZq/dfzX368i7dnXllbBGpieprYWnvKWJnQAQ/D8y3LFt4p9vyaRTKgn3Mvs\nk78jRGrriA5KZ3t9kNzU2e9XCHEp+ZBnJYBgx63tiuYqaI2o8V15iTZU3CmV\nS0pyPu7FsPECxlepInlmb1y8n/+adqoV9prpzKumFuklU3KmjV4v5Q9rhSUn\nKfBqljegBsnICBnrUC21afmmA+4Wlp3u04Big32AmClL3d10Ua7G2hpRAJJQ\nuKJdAR0/oVSE4yqi34bXV9rpUr/HplzxgwWupxLMpOp5GeYTr9p70NxfYVdR\nmMWuYrjK6mpCLRA7aTyF67puNOnR5rZYq0k1N5nG3GDtpJ1HJpBIuF9NPKTR\ncbGvHhy7aYT4Ex25MttlyHdJgcc/IMaCM1I/7yJkRyFNzzMIEfWrK8XXhHX1\n3DFtugnLazqz1SmqcQNEd4B0PLEDiEjJbHEE1ko30FQgrTHzHiW3eeElqjB+\n69w/iZTrOEtmsJzEWJmHraGnmOMnR552zaMyFJWJDpp8ude6bR41YRqM7a+W\nk/TrTmLhjOFWR0gk4zOiqNjl0e+gPsgHiK4lvO1k2/nr7rMC7K3Rm3biveUn\nbkmq\r\n=woX+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"865cd651f0e9ed58f24ef4f06b1d0df9a4f37d9e","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.8","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.14.0","dependencies":{"debug":"^4.2.0","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.0","mocha":"^8.1.3","eslint":"7.10.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.6","typescript":"^4.0.3","@babel/core":"^7.11.6","@babel/node":"^7.10.5","lint-staged":"^10.4.0","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.2","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^24.1.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.4.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.7.0_1603114778127_0.14733860778278562","host":"s3://npm-registry-packages"}},"30.7.1":{"name":"eslint-plugin-jsdoc","version":"30.7.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.7.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2a782e5e713d9422f545608118489aec63b7d6aa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.7.1.tgz","fileCount":99,"integrity":"sha512-DddNo09JarYHkdI+xOT6v7Zi/Ip+rw/qlBC0B4LSqzTsf0whTizCfOMRBbKvFwsOp4joj4vlYgSA8Ijqbnw8Kg==","signatures":[{"sig":"MEYCIQDssQXMxJ785+a62C2Oo/cAx4i3DfVZx6HPxrlQ0NQVVgIhAKZh530iLVatwLI6Z+y+FFwbrt9rs7xd2JkanfZAzgJQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":997069,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfjaRWCRA9TVsSAnZWagAAoFwP/imdnQ2HvCe6RfdSoqD+\nhjCoPNzzt0T+Bi9T/OUfdKpgru5T8LQs3uGu9jTYgOuRvE7DT4rXexPj59DE\nzUcLqhNHR3E/zH0JxhuoEl229VEJaRpzc5fmkrnnN3kzyHo+CXZ/YQnzkrVA\nKLdrSu9MYVmEdUNXJPjOUEWDMm4xXonlyP7AZddNajK6Kvi+Kbz0PyfROkbS\nfY5w/Feno7BS859QxNQSRb4TpIwcYabf67aZ+8dLgnCUDPSA3ifZrSBvyoa8\nJp7GLg9evema4ycLQ3TEBBiM7lOqfwPmcsvTOPuU8uHIekH8cCILArrkfAUG\nMMe1oy2Sfab4CYHJ8fMgkIDfh0ImnoT6PAVPUYrZzd1UsdeZzzTafP/1ekDE\n8z6oyclee0/MjCp1oZhkUmLv7u9DSVaw5fseq4oGGWlzY0vKFnnHK1gZp4Tw\npVJbYH9Ie107i2TzTZdbJVX2oc8MkMnkJXNihI9pHBEYdeyG8cfBuHMHyHYH\nHdbSFd89n7BQL0nHAMIpAd7QCYa/yFfrVDQjVTKIlvsgVLz9lWtv3C0Oyy6g\nKxNJ+9FP4ghQQDMMP8jI/51Xg8V7q65k+4+WwpHD+RFrGdz8wdSGPO4zqfh/\nYu18Vw4vJw3tn4+Qw+Dr0cu0UjQN1kKoHEpKNuiY8nOVRnIrfROXlPe/Ks69\nZK9D\r\n=lixK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"2de1011a60fdac8fab619a313395947819566c2c","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.8","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"12.19.0","dependencies":{"debug":"^4.2.0","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.0","mocha":"^8.1.3","eslint":"7.10.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.6","typescript":"^4.0.3","@babel/core":"^7.11.6","@babel/node":"^7.10.5","lint-staged":"^10.4.0","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.2","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^24.1.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.4.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.7.1_1603118165776_0.7357332024327632","host":"s3://npm-registry-packages"}},"30.7.2":{"name":"eslint-plugin-jsdoc","version":"30.7.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.7.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"81525e096247875891bbe3424d05cc762ef2041c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.7.2.tgz","fileCount":99,"integrity":"sha512-FQQRNavuy/SnSDq+AqEJwUEHmu47aQkCG2NlPyBTIUm98yOydL1HlYD1k7tcmPVj4Vwu++uLFsasNq9JlVndXg==","signatures":[{"sig":"MEQCIFX6Ea7oQd4ovjdXr268wn7gXlEjnbzRBUnGwhCgsHofAiBwot1rr90TLE2K3dRxARDmlW7labWZY9zElwjcCLTBLA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":997471,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfjanxCRA9TVsSAnZWagAA4OEP/RBTxvlVIBzrvgBwqTyt\nJBPOcEJjL53BO8IiEY+nMqAj+sSAWSvDqpGhJYBPKwb9UN9R3W+kYd+B3ew+\nVjDrZuijUzFKBt7c8yGD+yock2cfLIcmPoTu3c5TORgvbOvU7BNkoUYCS9A7\ndyHum6bO3QPFaJyZZzx6QRC1Bx6rQSILvcqd0ElYiiDiW1a8Avzakmnhjc4b\nK1vPmVWDNFz2naCrm1dIX7h7rwCh9/6w+XX5YTG+tV2ijxYfNlAQWvxq42jM\n8Fx2YM14TvswkjVhD5pEbabitkBrS9XmAawzO8NzfeTSis+Y8O0CzrISKisg\nEPZwPre431Bi7pk6JMzLlPAV2Sq+eHB5cRs/A0P7OAsQ9LKpaRKxc/O29J11\nqRdjf4k60cZnem9ddCxVgsLptDse7v/YuKkfzV4/SX73iJW6LfN0+KUhj+vt\n2L/cGXF4uC3x0wq24pGx2QvgbNmmmVPWbt9qnE0R7ItFUuejLJZ0sOiltBal\nTTgAm7O76onMFRxLozf/w3SRyDdW8U/aDMDoq7cr0mi8dPxFQ5G9F6PKLaMg\nHf6lBtZc92x87C66tpHoVt9/1BGDk+42T642ZpcuMscqvgfKVhsBnX11jO5P\nAAfg+HUL3dAg3+yOE8EF2fsWEpsaXepU7CMJgm1lVOVmjXMdgWLGsdQM8tr0\n+IvG\r\n=dHU1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"39fb1cbaba7d119685d04f37301c0eae9c08fe0e","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.8","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.14.0","dependencies":{"debug":"^4.2.0","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.0","mocha":"^8.1.3","eslint":"7.10.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.6","typescript":"^4.0.3","@babel/core":"^7.11.6","@babel/node":"^7.10.5","lint-staged":"^10.4.0","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.2","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^24.1.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.4.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.7.2_1603119600957_0.14936829233933513","host":"s3://npm-registry-packages"}},"30.7.3":{"name":"eslint-plugin-jsdoc","version":"30.7.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.7.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"1087642d7c4aba13b97dd7c1fdbcec49cd7dcc72","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.7.3.tgz","fileCount":99,"integrity":"sha512-slzJeKrm3vXabRYcFBpbUgWgdnATN9rNOFAr7IhmkxmR9Vk/6qN1c/IdvTqVSEctDRQ08chR+Lvk8fRayXgYZg==","signatures":[{"sig":"MEQCIGGGOqJrz6wj1jgR0ubNZ7XGRQqikQVpnWoRWXi0sxE8AiBagBwkFDWCoeuwM7jBtG4dqHQwr+Uu0M3MfXySWfwrAQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":999135,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfjbgLCRA9TVsSAnZWagAA8GoQAI+4yC8H6soYYvgE5D9R\nzwiqLM30/dVYBYByLcs69jdogYLr3xdFx5REFkAWEYaoinoAQa+2I1en2FWu\nWXIyUa2583HAKvXGLx646P0p0sYkmqKFQq/iU0puC7o3MrEykXxzbjqZkpTg\nnDgkN2HOAzCi9emHLCV3GIvmC2UxlbS+gFH+ZzBtt0vCyMiE73qSTwmQhy1h\nLwOCA50PDHj+7epi8KQmjTLAF0ZVTFZ5xcu6AlD/PsDm/BIcAG/5M3O7HXVi\nwDCbZaNPODYrlnJ5A1ZKRLDERp5korrCb7OxjzEIYZXlqg5uZ/LDlD3Snzbq\nA5UdEJY+niawq7/1bdr0c7Jhjhug2DCb5kB/gX0LG5numxHf98zq+LhIACYv\nCzcMIYUuQZx4CeHu9REp63R4OvUZ0I80aDaX5kHgEHQs7dduVLl0EjjDp4Hq\n5iy0mOfI/KA68NOp04bKc0sXrjDzHGvS40zeza5xKow3FnlSKu/eYBKr7h2x\naB27Y7j5a51kWbXtzmLTFDmIM64Fcdup58DmxFcfVo6JY/OTaO/pOgJcxVSI\nZYd8BjrtF1H2GsekEmP62kwE6nw33jFdiSpzvOuGnMFFWCNSuWD9n6nXsG5w\n0VkV5C+swhTtmta/rff1Z/u0o4x65PjaHiM6hdYZecfdDEkGLfYYjvels+jq\niK8I\r\n=nVsK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"6163f3c7f8ae8a9ddffcf8736846632d86e566d6","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.8","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.14.0","dependencies":{"debug":"^4.2.0","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.0","mocha":"^8.1.3","eslint":"7.10.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.11.6","typescript":"^4.0.3","@babel/core":"^7.11.6","@babel/node":"^7.10.5","lint-staged":"^10.4.0","babel-eslint":"^10.1.0","@babel/register":"^7.11.5","semantic-release":"^17.1.2","@babel/preset-env":"^7.11.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^24.1.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.4.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.10.4"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.7.3_1603123211023_0.3309208201511171","host":"s3://npm-registry-packages"}},"30.7.4":{"name":"eslint-plugin-jsdoc","version":"30.7.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.7.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b7509b54eaeaba4f09969399c17b50dce7cd586a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.7.4.tgz","fileCount":99,"integrity":"sha512-/pWAma12zltWcieSU7Z1n2D9Odnmai62+D+glG6GPl/98c9VA+NiOCg/ODSXlUkN2SvaN0oQUbJnlCRyuTJWrA==","signatures":[{"sig":"MEUCIQCh0JmCX3kdGGd5pmGOP6KBhXnmAyCVwsbgXNpE9WlSngIgBabnnDigEv0M01HH+D6K4qqVm7E6s+2HAo6HgPp1iEo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1004004,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfnQDwCRA9TVsSAnZWagAA9ygP/i9m8KmW6hR6+Ey82dFO\ndP3SaSzT0JvdDuN4IUYVP0uLjKMfL4dRS748gcdn+0S5tRZmzx7Xdj8P8i9r\nLDt4k+6X/MHY4d/JZ7MwhAsH0ZYwqQneqOFwGM/BkQ3ZpbYq46KAJqsZDxQI\nV7rSZiYeBV605YQ+wTDiYUvIVdrBmGrGvenfn8MNL7cC2JOLBqLGlFIHSXDA\nDw9quLnsHl/gZKjWBDF0k17Tyf5dSpa0y3Cb30axIqz+S6xRXiylLdk22/+6\nI4ErvTsdVeMtD7Rwz4Dk1kZ/Sx6y38u6Ra15CWo75KEaxqn5e+ximsSVNiNs\nDJSCfshgJVPJDDRV1iafna8a9TV4teMjtoaMS43CtoqskVZvUW8V5YeZ3HDn\nbHfDq1/Vm6uCE4jPRErh9aZlCs8cJrJe64RAsjYSnvey4Zuhgjj9yjTNn1qo\n+jxI/KHlfr7FghXM0beR3Scgm8VpeCwMekxTN8EOqYbg+1Os5VqbbF0I/V9g\n0jm9fWM6623Caq5O8t/nK1K4/GXxGqEF/RIqKMuBaDkgKT2W17amszuKmh3w\nQYsKxU1pjFlW2tSvtJXJSprOohLHGYAQ25TnzyrNTyovnBGcMgZPoJteJ1ex\nwpEVA6Eika9YL4vnCC8FBa4fgTPv1+N/ZVWvL+fuHuf3hseDYz5KT3jinPia\nqj1V\r\n=Qy1D\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"122a9b54f8bd93652edf451d014060ef39379dc1","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.8","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.0","dependencies":{"debug":"^4.2.0","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.0","mocha":"^8.2.0","eslint":"7.12.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.12.1","typescript":"^4.0.5","@babel/core":"^7.12.3","@babel/node":"^7.12.1","lint-staged":"^10.5.0","babel-eslint":"^10.1.0","@babel/register":"^7.12.1","semantic-release":"^17.2.2","@babel/preset-env":"^7.12.1","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^24.2.2","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.6.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.7.4_1604124911258_0.16027233010781083","host":"s3://npm-registry-packages"}},"30.7.5":{"name":"eslint-plugin-jsdoc","version":"30.7.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.7.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"cfabed98f3d23e32fa0617452a1ec9df57010e45","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.7.5.tgz","fileCount":99,"integrity":"sha512-Fue8NQruLtniEuQSv3LO1rzQ+wOTX+nGaKPSiiNtkfJTUuYYXu255IvJBtMzV6bCfWe/AfPvPNHOV36l40hqjw==","signatures":[{"sig":"MEQCIH8h7LNbOlNyaS+AnsbQGD9ZSifULfM/OyYWy2j5oI+SAiBtvBGb6qOM8tk4JSOGHUEHUkMdjJr6NZ6d/HWpZzKLkw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1005340,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfnQVOCRA9TVsSAnZWagAAsdEQAKRAFScn+F7YhqEsOFrP\nENZ533eVlW+OxidFj8Yyh/PYGKJ4SuDI34nK0Vvw985YQQvmv9VjkOHkLBXi\nkSKDbp5vk0KooYxGzJ4X1rN3MQ//usH/2vVSgMVtZfppTmGILX45HZ+qTnOS\nPgsBD51wKUJphRfGLu0Mt5BhwLsO/A3NBRSvjPHXdC4pUgE1nZFxkHDICUP0\nI33TGFbD5gXqTSBQBvav0F2XO+P3Cl80jwv+zw38qsimZL4Lum8bsgU6kn6k\nrZ1SL+sPva4UFlAumBT6sanFgtZTOEQCKd3D3o0v7mCOepipdno1UATpcRse\nNhdxmnVH9vlh3xHrAzBfBvcIYC+eEE2HadETURFivrpzKCKfCr0TDxfY+sov\nzgCzHn1u/AgSOSYxARdzoiYCAQJRX7kAtdpeKPSeHVjFYxLA9BDhosB0MWao\nooPpHRhzF3zepdVC2+ZuOQR8wzeQDqxS28PsW9Q09oRzw5c2dTxYZA+cRlx6\nVuLcJ+1RhIax8TK5cJUYHAu92bppJAi1rRUlGYHLgWqIs0MZppPVBkjEGHSo\nbkAhWJ8GNTvtPwScrFaLlj9Qd1fDHSMvmI1sW8vuJmH+b8+VqsnTF5+Kqp8K\nM5O84c6EjOX26SboRY63dwtpy+jtG8CtWjnlcEmS4rS5ndqWca0XJSm+QBRM\nQgBb\r\n=SYjb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"4e699c4d2b36fd27cd70905fbc178ce7fe9c2448","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.8","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.0","dependencies":{"debug":"^4.2.0","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.0","mocha":"^8.2.0","eslint":"7.12.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.12.1","typescript":"^4.0.5","@babel/core":"^7.12.3","@babel/node":"^7.12.1","lint-staged":"^10.5.0","babel-eslint":"^10.1.0","@babel/register":"^7.12.1","semantic-release":"^17.2.2","@babel/preset-env":"^7.12.1","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^24.2.2","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.6.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.7.5_1604126029408_0.49830407667819143","host":"s3://npm-registry-packages"}},"30.7.6":{"name":"eslint-plugin-jsdoc","version":"30.7.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.7.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"050ee54014dd301d9d53eb0e9aa740293861cc47","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.7.6.tgz","fileCount":99,"integrity":"sha512-w18IOiS/9ahKgRfQOuHbce+EQYx3fwIkZhUZDEK+augNlhJkzgTSZkrBkzaflSbFNZ9/Tk4xzUABEaTbsBSzew==","signatures":[{"sig":"MEYCIQCADRoahzWRVmkXblFBZ1ln83Cl54dsoRGDtQa5lC+IJgIhAKkywKxvm1kuLOZ1AbFq4b+cTp7QyyhYiwWq9c9+cvZJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1005436,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfnkYECRA9TVsSAnZWagAA9IcQAIyOu6UqfbGi55vbfJV7\nIMD6AY60WeMshAl8ejgQ2tvhJ29PwUyCHz7357yt6PxO4oWjqgcv4lnXZajC\nFsO1rAHvu7fnRH4UIN/cKTj+DP1RBygscp2gsvyZrsRcqodMFOLOB/mXT5mX\nP/onN/k2Tgi37urhYgHglz125Kd6w+cQo6HkfT10r5Fl9oo6r1E4KXD9Ttqm\niTKxQx1eTqZKJzdyE7SDG9UhL45CjXHVt9sz9uW1ALscONIgR/yG6rXLX9nJ\n1WZoB693TlRfzmcQQYYo/SkN3ZLUPxnIearnDE1yQ79MAuOm5CtZidMLWogr\nJOTrIJLOj42u4OFiUSP+oT9XKYK0j8Pa0R/Lfgq4pm0aBj+EbG9UYsm64ogO\nQUIxyaNouXCoRKL8bnRkLFNl9RlZZnK/dRtoW8tr146FP0QEnEJ5acLztAQo\nQmZg1xkTvTkrUKaYurZQWbCUT1nN6PoOdvTQ8v1TEcorCbTe/QNT3NRYi1fz\nnRr/GavcmEn2h+tx8/cztJc+OkSTlsb2OoBWEgyPhIa9m4/krX8QK4BwPEf3\nvffO7Hvx7/MrtDCSJ3Ow3XXoosSL3dDiDPZkGl3BLI1neo1dCVzq2T+crOWD\nKwZDLWEy2j+oS8TvlLs2wWOxE2oNS5v2U5Tud0hBhUuAh7qWOxx6oWf70G+L\nGt2+\r\n=b1AA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"245e4a7bcba900ccd971175be91324df1b9c0236","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.8","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.0","dependencies":{"debug":"^4.2.0","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.0","mocha":"^8.2.0","eslint":"7.12.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.12.1","typescript":"^4.0.5","@babel/core":"^7.12.3","@babel/node":"^7.12.1","lint-staged":"^10.5.0","babel-eslint":"^10.1.0","@babel/register":"^7.12.1","semantic-release":"^17.2.2","@babel/preset-env":"^7.12.1","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^24.2.2","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.6.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.7.6_1604208131752_0.4033597027612903","host":"s3://npm-registry-packages"}},"30.7.7":{"name":"eslint-plugin-jsdoc","version":"30.7.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.7.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2af2c68e5adaf8a59fc3c72081a4b137098268bb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.7.7.tgz","fileCount":99,"integrity":"sha512-DmVMJC2AbpYX7X1KhnVT1a9ex1AUvG+q9G8i6hzjp3cpjW8vmKQTUmZnRS0//W+7HvMqeb+eXPANdCOzGVVZBQ==","signatures":[{"sig":"MEYCIQC2FkQm5pjBKhac4Xzu/5qqiSaAtlrrCbLtfy3HUXSOYgIhALbdgy6D2yQfhYonzmYLW8zd+tQAr3tyPtUafTlA9zea","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1006323,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfo3lkCRA9TVsSAnZWagAAGd4P/jnUB1kf1JC7Htj/92g5\n1VGIIjYmgmpQxXPJSqL0SvLGTnVn0HsWK71izlrMW06LetKBbrdv03VMjvUq\nf6tRKXXYiedM2IC4Wo9hxcBPI0iwrh60ok/Ar9XOVWGXfevn+K8oJ9oHgbhw\nGWOtuqPXvbTNfTGJ6wftbz6tCoiqTm4Y3vs9f3SNyDS0uLLg/mnUo+01Wmcy\nXyhbaEDDjSp85DFAdgo6vssPXwVL2mg3qHYGFCGGf7jeCMDWPFlgL+t8w46I\nqteEkV3LjneXGGPycMHqIONksJ6VZqLyiE5ZGyqcJYuG7uCZpz/qnXf/uJ0j\n/S9TBg2+GY0W8f4f+tuoKLX7Lr1sjxLEOq46lMMRJUevGUq5Nd9bNXNd55bN\nlwDse3o/hu0Nq8iUaNMyEff9xBu8twKVbB8rMeABlfn+8ZJu/RA6zGwKHRog\n8YXG1xlwFFvnV2c4HZTMf6mZpm67moZa9+oB2ivz6Dk63mrYX8huXulP0wHk\ncfmNo513ryN55433TrCq4ptpA3eSl/Nvj8kON7PvuRXB4h1t1G58np75TSLQ\nlVueqi6kG4puZ7P+Rb+hqoNSOUNQdXy4THTPX8jpRUgF9THesWQx3D9uJPRe\nFeyNi78zbqdvBeIMD4Ezvci2KqivYnbKxsHYqx+emXJaFjJqN0sLSsP/b4zJ\nmS7S\r\n=VuEQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"bcd465f5e1e501865a29827655032984c926abf1","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.8","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"12.19.0","dependencies":{"debug":"^4.2.0","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.0","mocha":"^8.2.0","eslint":"7.12.1","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.12.1","typescript":"^4.0.5","@babel/core":"^7.12.3","@babel/node":"^7.12.1","lint-staged":"^10.5.0","babel-eslint":"^10.1.0","@babel/register":"^7.12.1","semantic-release":"^17.2.2","@babel/preset-env":"^7.12.1","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^24.2.2","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.6.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.7.7_1604548963649_0.21826711864276205","host":"s3://npm-registry-packages"}},"30.7.8":{"name":"eslint-plugin-jsdoc","version":"30.7.8","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.7.8","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4a678c25ddb2c5732163f0258bb1d05edf34f61c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.7.8.tgz","fileCount":99,"integrity":"sha512-OWm2AYvXjCl7nRbpcw5xisfSVkpVAyp4lGqL9T+DeK4kaPm6ecnmTc/G5s1PtcRrwbaI8bIWGzwScqv5CdGyxA==","signatures":[{"sig":"MEUCIC8oSjXSLWhev1KXC5b+dZeOov0PfRTOMYeuxarhsygdAiEAwdtWu2d/HgpfiH6sLwlK/+pUvJGvwOPAlnV2qV5FaH0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1008300,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfr8VTCRA9TVsSAnZWagAAczwP/066zVjwy6VYV2lIWgWY\nIk+t0pDklhIj2+FYiqEXuB3r0U0nY7mF4hXeYhdSODK+Eag5bKzTf3qIkwD4\nz+M1T52Plm9VDKHN1Ywqh//injL2xxVITX+CerjJrRq719H0B82ro2s+sAy3\nO9qClRF/MBQe6gLt9qMvH4jZSolMJ+Ocu40aBATHkmvoM5V+yt5UBf3g9Z3z\nnQWutY9H1X3v6W/eu9qqLSGNkXkdzOB4cHWuK8jH5e9H5lidibGOqEV1DuAv\n/71+XPEWdTDI27rjrLalyXugLz9NxwXo4Vb1wSArzXefeeIcyvDu4L/jjIQj\nD2W7bM9t+7+sSAbLzkWccEFPkESZUmULPwxpcarJ+cnGXLZub9+FytP3s1Dk\nl87zqQEdaZFoygmwr/DHUgPm2re6ZcaJccjZjiC53xUrPt9N7gB3gY0bAwrz\nsOJ6yYeV+3oTtoDvXwKIHzVoBa0nmEujk61Ky8EZtQ6p1jR1W6QauRNN4L7+\nDzCgArY6mnmukvx9MelmH2YTCGUXG4bYxYf7ch/V/oJTtepzgNxzQiiA9Wn/\nh1lVEIVDYwIVpQ7vUfSH7rRA+cYN4Tqn+ZHESu1cMWfZiuZpYP4h5yY2WJ3g\nJovWn+VUzqHJs+uM2My4uSctscymRs09Ae8HTM+IKuJcwsNjvhGgoIhi/Jeh\nfqYp\r\n=xMNY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"ecf4978accd092acad3c2540bd2722c00e7a964d","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.8","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"12.19.0","dependencies":{"debug":"^4.2.0","lodash":"^4.17.20","semver":"^7.3.2","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.0","mocha":"^8.2.1","eslint":"7.13.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.2","@babel/cli":"^7.12.1","typescript":"^4.0.5","@babel/core":"^7.12.3","@babel/node":"^7.12.6","lint-staged":"^10.5.1","babel-eslint":"^10.1.0","@babel/register":"^7.12.1","semantic-release":"^17.2.2","@babel/preset-env":"^7.12.1","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^24.4.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.7.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.1"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.7.8_1605354834397_0.26595061676449316","host":"s3://npm-registry-packages"}},"30.7.9":{"name":"eslint-plugin-jsdoc","version":"30.7.9","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.7.9","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b0a9881990edc1bc8a635467bad9edfae9ecbaaf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.7.9.tgz","fileCount":99,"integrity":"sha512-qMM0fNx7/6OCnIh3jRpIrEBAhTG1THNXXbr3yfJ8yqLrDbzJR98xsstX25xt9GCPlrjNc/bBpTHfJQOvn7nVMA==","signatures":[{"sig":"MEQCIBokB4lcjr0ICWmw3T7AmiiY9KvFnxHcBWaqE9zm3wzSAiAPhu90sDFpAbO29lUlWtkLEoTQT08tSxGALpclWa1pAA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1008660,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf3VcdCRA9TVsSAnZWagAAGJ8P/1rYjJ4r9eYIOmbzPaXU\nInkg7ziDgdaCZPBx/Vyv+EJzszVwErJYZBIjw8zXCst2XtNuOQWab4YISQmK\ncjRwscDDsJXnhMy1+hZP5OSoqrnZ2kkgHKpg5/ro1aDwyFv2iom0RnRc0hMN\n7IhbFCixS4xztQKfUvQgmp6GPJe4D/XVRQQiZfV+aT+N+s1B1veNRSBzbVIg\n/DMEvZQ5jtHkvhJQzVpzGQQ4t9Tz9t+eSyvVOapGKWk1UQfTdybOoz05FEOW\nYADhD4f9p5//G0v+uq1nV1cjILi6S6aUyMYpExWLeeYwpGGTxZkn/2wFHvpq\nkkHcIoEobnNgPkqnItXdvFyI9eO+yAcXYAGP798kX5xhl/vaeSuKrhee9deB\nxMunH3UE0U517NfrsMzMdjGgQyKbzBeShby7XxG4dfFRwyLm3nb8BINcJ4yd\nUJDQJnrs7KpdYB8c8zqs6HRAaiNV0/3dph00HlkHJr+gU7F/ACDPdS2ox+N8\nRH+tfCuSmtFddDIDwdiWueqwSHH02ai3MjYWaVMv8a2Gzavswpgqsw4Jub0c\nwPUe2JZkRsgwqLrqM5gjgNS0SIcJZ2iwqBkaFTXA0Zdc0pVzuDmu+KAzxrUq\n404aQY140PDMIpzmS7v6Hxi2+FC85onv5y5OMXSt+jf0HgoD5HTubN3h38LA\n+3Li\r\n=Lm5S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"eef2a272b270e5a31bfa6ba078ba830c0bd611aa","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.10","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"12.20.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.6","mocha":"^8.2.1","eslint":"7.16.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.0","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^24.4.4","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.10.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.7.9_1608341276813_0.906947892171371","host":"s3://npm-registry-packages"}},"30.7.10":{"name":"eslint-plugin-jsdoc","version":"30.7.10","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.7.10","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"940d0dea96680c2bbb3366807806d5cfd88b005d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.7.10.tgz","fileCount":99,"integrity":"sha512-4ksmbfZ4nIG5xFahmyqBhoCzlOIw6/KU+Ld1zxGXWW4quXMcaZQE6L7WL74c0bpU9Iz/Ms8gbPaPZdW3sk1kSg==","signatures":[{"sig":"MEUCIQCJunFTrCCBP5A221wMPELR7Fr81a9aj3XWrRBQ4Xy9/gIgc1HeSk56iBvAZL6Z94Ivo2l1apTUjm/6mSBMfVb4Fmk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1008737,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf8Rj6CRA9TVsSAnZWagAAAbwQAKTx/m4Dgwason25NXud\nzbryFu1yCTMvkkIcHnTBmAjih8wOfzErJGvuH4BkRoGcefF5Bo1avcgfxtsP\nrgJJPVxZD6P4yhDklKioY5wuv5FW82XQc9MQpGK/1e+n4tlci8aOhX1x1fRR\nZu++2/wdTv9hqW6qIy0T4qQBo8exIml1N1zVecOZ451usmSifi4CqeOIdYcF\nCb8ahh1NbcRU1JQayjfOyDLLqAeHY82KsNqemhsp/7blYcULumUcB3p5rZ4P\nRjlzhs+jH8ypLQz3itOdeHQMRyTKpuz7Vs3Nl6RphiD8xim1VXznhQ36UF45\nGQrORBNntb3eXoCfxuqd9onVrvPPXJqdO2lEoqLyJtLcug6I+C2YMg332ztu\n2sOXPoHTqgKKdk/758GsZFiS1QvTzXnCVx9Y+8yZAPxRkuHyTW0xrpv02GeV\nDovebjXC6k4K54oBnhAasUT+ZpvtJzSNIH2/W40I6Gdb4KoCgKk8+LTqfjMb\nhwQMS+0aeY0lUVGDIugwEqWmrhkvn0h9zI9jF7cjyuPnvn3KlmM4xqXUmyqL\nDD5SBAsTOSDtTuU1r75zd/iC4klIvLAJb/tbmhwFoeB9x3g6JzhdWZSogZej\nsxfbkP6byPuGijHvhAaSlmq7FRU9LoA7edFF0LbQME5x0WNrJc5k7MFCiLai\nMefB\r\n=AWK4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"fb906ded845afb73cbe0047a5ab4b0f7bb96b666","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.10","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.3","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.6","mocha":"^8.2.1","eslint":"7.17.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.1","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.0.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.11.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.7.10_1609636089091_0.3386469317824443","host":"s3://npm-registry-packages"}},"30.7.11":{"name":"eslint-plugin-jsdoc","version":"30.7.11","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.7.11","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"595788c6024205b0ada06b9ef72d893ce007cc76","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.7.11.tgz","fileCount":99,"integrity":"sha512-K+WgChLdaUHGFepzLTvzTYPZORxSDz12s1Xmy0ZYGkbdSczBoldSCIV4fD0Mex7m9HiA53DF/T5uvyZ+5CznLg==","signatures":[{"sig":"MEUCICaVAoWL0FNcDler4WxiBxGrX/5g4WVYDeRX3OKMGIHGAiEAu1rgR+qxk1T5d12iH6+DwZwgGovcsT5ZcrFQx2NUgtk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1008780,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf8TwJCRA9TVsSAnZWagAAwCoP/32hoQ9J2UISg4+k+aA8\nnJryAI7+MyNp4aZjkdHMDnB6di6lvkuwmV0dFfr8mDn5xDmQArYogY1KxSnL\nPkDS1HGWYldKnAvjP8CdRcEaqKi3uqjFVhLrXNpmRIoKJiUU3kzANUG9wtwX\nsmXmGmhLrHzvBzZuj7sWYsQPE11VS+gAvk1g+Luw1hBzfJal6LJ/j0hSt2ee\nuZoHqpYOv5JBagDs+AhPevAzrvp7VIvbhAd7R0nCFr1b7C5bm1e41WnIp6kF\nLzLaSc2GLhO+hxNNOjurKSIr1uU3Go5pHY+evFMq3kC27z3gAl/CiNxxkSRj\n7l1rHGtYHWh2PlauKFRzByi5+C19JbWScDv2H6qKwYN6ujhtq3aSNwoE4pR7\nq9EzZJ/+Ejdv/LyVQsRrkcMZ1cT9VrMTq4qzd73BDQNttQTBfjb10QOkAwNg\n17OWmPDlKisiLAHnAWNNEH0y+ZCweH7XQUGWuN3qKXVhpKtob+RmNCbUeyOW\nDyZnVrgKtswpF+pCQPGfLLqHCw6Pt2XbXbgGrnQ2j69ewgwQCFcSUsqDVHJR\nCIFC3zJXCe7rNWs2Mr9o9pS0SmXT9vt2EZecE0ogQZJjbZpnzGqpyrntNLMs\nbsuP+MPyuu7TDkITtqycu8uF/HHuczasS6szrHbuCnK/a3VShaitdyc7kdjT\nQeO1\r\n=bgRH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"4e6c73d87204d0caf24fd210b352fb76172eb2ce","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.10","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.3","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.6","mocha":"^8.2.1","eslint":"7.17.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.1","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.0.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.11.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.7.11_1609645064347_0.8744544919279948","host":"s3://npm-registry-packages"}},"30.7.12":{"name":"eslint-plugin-jsdoc","version":"30.7.12","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.7.12","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"445a01ec2b615b35894a9fd0af3544bdf5beb3bc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.7.12.tgz","fileCount":99,"integrity":"sha512-uKqAj5ENAQgRh/WZUVf2Fke1b/f3aZBdWCAnYMYr2HmBKL75U2zaD9CxhXud/GM2K1N0TAtiYDJVY9No5WA/tw==","signatures":[{"sig":"MEQCIBS+xzuDP1umwiZuTk6IxucXweztmZ5LR9J6QlzfRtdaAiBebZZBPCGeRmZ0+eXxkBdqxj1xhBpj6T47IJUArbY12Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1009992,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf8d0vCRA9TVsSAnZWagAAdMMP/i3ypEvP3Zby6WjTKpvn\nZM3RgHjFACzqtc5dOgFe8uxDoJxVuqQmnYgR2PoN4qQ1u8lyFOiE/Q+xL5XO\nV9uhk2tjWSWfSXZZP5eOC/ExjGFUodXDq+KFkO33WvNhlD8RWE/wwKHrkImD\nv65xlYlLRmtua0iQEXuTCwiR1gId83xQpA1raU08+E6VR9cuY/JCX6tpCwMi\nZ7sQ99yozfX0/BAL8cwfgLpOC6S9/fyhUHHBp1tSsVuMK3jjEXHYkKG/97rH\nIQc0iq2h5pT2G4rrZKKgCKscXjtWxEJMZGNeDEJbZ6SblxyjczQbHC6nhi3z\npv58ZNMxwHn29BU+IBOsiTIVQ5CBgm25wFVF3R74smQRzRj2INEZ6rQAlkYd\nSI3FsNCdOEANbICItS0QCBxyKNzderjIbd+RFJZ/ZqxvaegkS2CUag4vnNZb\nrFz5IX+rbL8zIoGVg0ODzfp1XgNG8ZK6tXr+oTy35YZHYkJs0wKg7BXjphpG\nUcMJgZMS2wqXq9Fwo5tKBWcklYitcbwsFRePuDteTOz64uDDmBuar+6eefQQ\nr8ETflK7fDdOTezQtBftdT7WppHZn3iCBUtjlCPpnKiitxl7//AgURrodZhI\nxcnITbvELGZ49tMVFthk9wvWFp0POrDfWtUSexXQTB/4xZY4syvHMSMnkPoV\n/UiH\r\n=naUn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"62abd1102fc1b953106f03690766f5b84ccdf39b","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.10","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.3","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.6","mocha":"^8.2.1","eslint":"7.17.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.1","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.0.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.11.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.7.12_1609686318661_0.3435077985531221","host":"s3://npm-registry-packages"}},"30.7.13":{"name":"eslint-plugin-jsdoc","version":"30.7.13","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@30.7.13","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"52e5c74fb806d3bbeb51d04a0c829508c3c6b563","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.7.13.tgz","fileCount":99,"integrity":"sha512-YM4WIsmurrp0rHX6XiXQppqKB8Ne5ATiZLJe2+/fkp9l9ExXFr43BbAbjZaVrpCT+tuPYOZ8k1MICARHnURUNQ==","signatures":[{"sig":"MEYCIQCruw54X0JowZBZSX+SYqtFvjGT8iEwplV2MgXgR47qHQIhAInnXFSE532+eMgNqkH0hCs3w8WDyjLmtX9AroAeH52a","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1010143,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf8eKnCRA9TVsSAnZWagAARhEP/A8XsjQR41NnbOCXSN/O\nKF6USrVsMQAFrWhQv2xySMN7xwEmZ3j1z0VV/w0XiQSJctZGj6/egzNcsFeU\nSaZorkgTQ4Q5ohrLlxGxAEMX01/1huMOCTAqCOfyBqtSXcqs+QR51rbGdnEL\nW1fv+Pu+cacYBY+F3MjuVsI6/89yjo5pv5akCmNFyhWOZU/lHXCudV47kmng\nX2lec+VNBLjAXUFCLTDXxf2gypjlr05QgCdv1HQ9ZOLoDaQZ3ZJ8HQqM6njQ\nvCBi5yaV+MGNAApNSrVv42AEpMTEWUevbNZ4pct4LnLfhVV+X7uuw0LOl3QM\n12dQnKA0YuWHNJ/y9o7LKV4s74Mopx8Zy3VRRBddLB6GkqKvFWj8UnJuKqgw\n690VNT6eIlogsHwEU+c3TY4UorLcJ9elRgpjCr9cS6VPMPW0wgGsKIcfpe4c\noMB3mYLd6XNCEAFMOe2AR+e9/7IcweLEUU0ISf9Hq/hX/TGlvXHO1tWFCS72\n43lvvWoNi0YPNyhDWmpBeGvwTZ2yqJYeGtmXgT/DxM8nmqun1wTuHPLMpbWE\nmNB229Oh49ZeVjIzrmDcnS7NNGYFtTp4oMTe53voLrLKPwAHbVO2Z1yCODHY\noEBX80+4h2VxBaZQuxMmPdiYElWqgGQIh2a93jpqx/AxfdZuFW3eGjsnGLft\nNzCK\r\n=gA0r\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"acc3fc1c577527ade66f2fa0f4001ea717bfb03a","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.10","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.3","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"^0.7.6","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.6","mocha":"^8.2.1","eslint":"7.17.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.1","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.0.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.11.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_30.7.13_1609687718356_0.39916182900378994","host":"s3://npm-registry-packages"}},"31.0.0":{"name":"eslint-plugin-jsdoc","version":"31.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6ec565ca9106753fd401f24b14c10cdc42b7cf45","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.0.0.tgz","fileCount":99,"integrity":"sha512-nE7+HNqdghDGgYO60lv8+qdZ76YT/EKY88sK3CP+YO0Qudlxqit/2KRDgMS8It5aRarD3YCRJPwskuFcRe9KDw==","signatures":[{"sig":"MEYCIQDfQY9P/eqRWFM9kQePL1I1DYNKTRk31DYXxt5tgpEAgQIhALtK7CvEnfAVclzCRWzM0hjEhPTrvMoXs7g+YkrqkfTu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1017982,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf/Cf8CRA9TVsSAnZWagAAA94P/2q1JEZo+X6l3I4WoJlQ\nf96vWzIEdJwwZrnTVGOhqcZk+EiWFR3Zb9UneOg0/1TdEA2KJcqL+GyYxjor\n9AhN+IqVljvGmnkE2KQ2RZ53IZJZlrgFn85LP6RbMGF+xWr0aCljKha6DXpE\nGVjqwPqhY8Bq8hezTbD0yU+/ZZXELM+/g6aGTUjBkkzgzc6epZsT50yBvJAb\nTSdkf1jV3SGUYVsOCkwqlU2fXnw8XkmU7fobg9Qv4JY0AsgAfrABaU5ORLnn\nZocvZMdqN1x2sMzqaIgCNRshuObc4gbS9kLo2/c6Wqpp0AX06Zie3114Z6dN\nd4nI8Z7+Vw0EvalHvjI8i58xqSncYIhrWjWzHyDAZiqpUvsQdvzf1UqmcBwO\nLEOcTvKH2z0IJ6W3LC6RGXtA9vIibrmQ/810i+4wTvRRET1DxwEAUPC8PC16\naOROSKKIsg3tSGviX+XWdlltletI0fKaXKQsREbiQFZzvf4xCkVNr2rRlv3V\ngusjB8TWqu6bsZySV06puSOc4Hq4yyBJ6t9wjvQzu7z490XPQzvTbe04aMMl\n0axTEaToYy8LSjGVKlQHJarkHYp2BYCE+Drpds/hlAfqXB4kFxBjVbjN2xQO\nukNzE2+we3mPsVhvBmOjCnZckRUmG3UQJjGcqqWTzx+oX/vhmu0mBE4kx6tH\nNo2u\r\n=5T6g\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"095ff3670c5a1332ec6a6d251d8355c16a41627e","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.10","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.0.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.7","mocha":"^8.2.1","eslint":"7.17.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.1","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.0.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.12.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.0.0_1610360827304_0.7603981913958431","host":"s3://npm-registry-packages"}},"31.0.1":{"name":"eslint-plugin-jsdoc","version":"31.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"62ebc7910bff93d67a15ccd4230b40426f779257","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.0.1.tgz","fileCount":99,"integrity":"sha512-Hg2P8b0mnQ4bjZ0Tj/KQeMu7zrwd7A2tjuG1h8Eb0o1fi94KxQM6XGe9s/0hHIpLgxsGR3VYEMZmOSnxOTtxRA==","signatures":[{"sig":"MEUCIQDmUXp8npkx4EzJliLgjLcwKeV4OEjSasIXH6/4BMdakgIgFy5GEbfy54j3lqGYjIH1dSjRIuTygboIUZUweF0m6/4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1019181,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf/C2PCRA9TVsSAnZWagAAtm8QAJefdVrffP3HKMIaFumS\nSNdWVQA5R5Q4e1x/cpcJkfwXrL0R7oNzUrsaVW6NUvBcy2373z97kB15NMw/\n1acT+vH0mdPqgAI5TVg8Mn8HRmKDhCgPYM9jfCiZ1dTp6yIwWKK6W88F6h+w\nmMmh50skAvhsTb3nEFtz8Ji/OgklKQYEOysXzgkGCmEoRsNc6n8+1tzPAwT8\nh3S+iC/gv7yEcGSeUe/rKLgPJrwF7lQNpt+jBeOGl6vRshX4EqT1rNg76OyI\nL+9XSgwmrkV5dIH4tjxELMqRJSm+TigQK4s5f6B/fa6cjWweQI7cZ9QW8G0x\n+/5Y8NyGf9YVx+5y2kPu3r2ON7TQ+xXQifrsYLD9AHl/MZi7Qxd3XE2Gfkc2\nNSV8TePDJXuJG6fx48k3ZoYIp+OYKWsRP2AVPeruHqU5sni8WF9nU55OE49T\ne+KHw00BIGvkNQb1McU7xgzrUgyDKTnEBUJken1zd3kjuPEHUPlS1/ZJm7fs\nyM30fWC/JczFY7oHsVPu5BvBUaEfApAcVVxg4QEbBzlRU+Fnj+ICI1k7M6SX\nyrGlOfUtvBEFhOXGXIWOaZI1T2MRvNaFVsDiBbQYuyeRXnBgOiGN8LK3Xzlw\njj7jqkqCd4635/+olu+aIPKzWWBkGrF3dAq0/qZ1vspAushJRWZxe6aTGrZw\nkm4+\r\n=vCRF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"577863bbb2bbceaa8daa9bf83b7b0c26a6836e33","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.10","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.0.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.7","mocha":"^8.2.1","eslint":"7.17.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.1","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.0.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.12.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.0.1_1610362254748_0.6494196867877642","host":"s3://npm-registry-packages"}},"31.0.2":{"name":"eslint-plugin-jsdoc","version":"31.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"87663e2491c6eec7ea84842865217c4b084cdbaf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.0.2.tgz","fileCount":99,"integrity":"sha512-RNWxr23FOtZL8EqIWdw2av4yZsByrnWOZlf3PUvmpZLQzf3sSKPY5pVFNDs+pvhqlj+0dnJCDMUKQYuXzgjkfg==","signatures":[{"sig":"MEUCID8DRs7Rakx5fYQM3I/ezKScaUwHiItvrsEH1X02UbCAAiEAk3ioV8CRzvzdIH3xZJIXlw6NYBpAsvhdbeiiLgub1ck=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1023545,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf/EbMCRA9TVsSAnZWagAAcfIP/0sPdKBg1mU66pIhP1QR\n8RtjDyc09T+pfguewCvrVHzHRRse/QS3jOVm3800AMcFYmFtrN7M/Hluc1SS\nZMK0tC3aQdkizZiyfiIPTehMSdBRgUn+ug5wLMh1yiBa1QUQbC6mg8yXC380\ncYxg8d7RBSPAzMWxE2RcLZalHeFHztq94q5nn6QR5iQmzuWKPb9AfVWtdzvv\nsTkNVD0Z345Zi+gFt8smoF15IJJCJ3z+MenIcmk0MD/p/9ygd6T21KdpLhyo\nj+vLXb9pNr/VNw6M6H0ECNK9oPytnKlwc3O9Bh4KYATWvER/e0IvSSWI8xZa\nUjPCl9Gz6H0093kSuFDpo4T5LY75Q7cQjdA3OPLElQAvNLC7yMaBuxos84c5\nVE5qxf337LjFy4IFXzNZp+g9tZE2UO8wk8zSte33IGt/l403SbGXRJ1fNtca\nzlwW4R6ngl+mBDET/xGzSEMd8Rh2aAylfl5VSx9JhMJDtla9w5nY3zW0AQEF\nw7zyOfrquKbRldyC7suyn1R29VRyH4uConwrmuUdyMUIkG8hz91PEQ4Ij4Kr\nuYBWJ4xPfgz7thekrVNGhI4NtcMUT8dsRtaP6ldy49+ePUB/n99OT1KLCrP+\nOSLw+xXN2vtc46h+ZxCB9uvbFpXLgBCyeIlq52qY4oqFgX3gRA+K0DD1lJnU\nY6ZO\r\n=mBGs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"b2db2266c15510ab0f8155831a0fbc1128e717bd","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.10","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.0.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.7","mocha":"^8.2.1","eslint":"7.17.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.1","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.0.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.12.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.0.2_1610368715497_0.24161727802391675","host":"s3://npm-registry-packages"}},"31.0.3":{"name":"eslint-plugin-jsdoc","version":"31.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"23dd8bee22421af1dab0a00a91dfc3d47f644a76","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.0.3.tgz","fileCount":99,"integrity":"sha512-O2HXyXyw2FYXWngFGeuCxhmClb4M1Y/w+bPcahO31P/Tw+vHZUU9wkPkSML2izznJ1dp3dnTG4on9bXDZDWfyQ==","signatures":[{"sig":"MEQCIEHgggcgeZXbNX+fYUBwmwEgAfFe63YFeIF2YOE9y3ySAiAuxdMzpResUcAecO7IZzxgVhXyo0Op4t71GLhuzuB3HA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1024562,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf/Hx5CRA9TVsSAnZWagAA5LkP/iAyzFPK4auIAyeqAsPq\nqMlhk86gP/AAWmsr7LYbR07L+ZUmihMu8di3Alo1dszsv2ZLenDfqdWI6at5\npmb+yVIXszw4ISswlp8+eHg4gTbkmnADtvYg4xxzo3KvnO+xlHc0ZAZFc+ra\nr30SqrOBxSZQhcwdf9RVOyWlb3gM4+Dqb5Q39zxpjNLF7hzjhbYRxd8cpVmD\n+Gt5T98Y8DICQbsq6F7MAEqBI1aXAbvvWmm33PFBXVf9rOCdj2JFdz1wW2E/\nx3TCeUoWILmAdKqRif6Brw6Koc+3Eg80H3V8VRQbLPbAm+/XDWjguw6j2fhx\nv4G0eDxeMhMKVCDpV2789PyoGhuEAsOrbPrmj882eiZ3hcXxC96W8K6i5YQ6\nnE7zOQa3rtWVqWq8qtzYbmvOGYgh/dlwltK5OvFGYkN0SijV2L1NXbwP4ogf\nnyI7OJwIqChYdg4fDbQn/I/XM4VPr9HjlWHpP4+ooOjBqa90qNvKynoOOQfB\nRSF6mXqVlH2AFptRnWNWV28VkdKHS94dCJev+TJjFO2DP01JKLdk5FQeRMAa\nEXtFPqOsfXhTMkAi7BLP8EJNM5Y1cr0ph1akbLZksGkkes35pdjdNV65xEKH\nHkivRXw4PrBAzdJMaKCVdkXXWhtXH3FbbCj9CRJHVm7Lxl9oL70zW9Q4nM/6\nxH3s\r\n=bLnP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"040d1773983aef155f40b63fe9af3a2689eec0ed","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.10","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.0.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.7","mocha":"^8.2.1","eslint":"7.17.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.1","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.0.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.12.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.0.3_1610382456637_0.6680032075288402","host":"s3://npm-registry-packages"}},"31.0.4":{"name":"eslint-plugin-jsdoc","version":"31.0.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.0.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a0daf907933e4a3f312d2f27987a75ff016545e4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.0.4.tgz","fileCount":99,"integrity":"sha512-jZDKbvIYNqZgS+MB+8EmO/dm5aRbAdXqbmV++uyJDjxUUevWmtbnbzJ6aSFBYteUeyL72WD34eAPOe6vuiiyCg==","signatures":[{"sig":"MEQCIFvKbx3lBOuIFtpjCetrJkNdAIp6WUcc7DucqfEhDyYiAiAGj+CyeIzyL/1iwZi2VvPnZOFUa0YZdrdEDKhpoN1I0A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1025049,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgAF9UCRA9TVsSAnZWagAAREkP/ieNb3lIj+yG2ByAiUjC\n+kMDJnM+vnGN4/8SN+imjX+W5ODfN+rog5TWuBAp3fmQQTgbH05T7wypdCyO\nKnf/CNG0rdrnMr0jzE4EY4Zv5ELJRPxeI09WvzKyTFHEKSoD00zvOmHF/MSo\nrV7eAYtNB+jIeostGSokmUBXcMyJRq0C6f4MFNVpA6ral4vXkoZI3yGyDuFY\nnOA/LKN9WuFPOvcbZjCV2/V1W1wf867S/R3C959eOSzcFnNOBEk+kBShN7jM\nkmFD1OXOyaytGs2UalRoQnQVG5ipCFPlHT8vUMef9Jdk6XTxuiok0liBp3ZO\ncRgEaM28ExN8XLUIsoyamjU0sBmvTmiMqg7tZPM/z7lT8KjiuzRRA9XLwXT7\nJNOe20a2LenCrro6+OUoa0Ey6V8gfh+rJEGr+7P4QLhIAyMpkQHjuE4v7+Cr\n32+HMJ50ooFmezJoMJ9eCgWCcGGb1o3P7drH074Yc79mwSNsPR2G4Ra+5Abb\nhk1QeVt45EMlacXN3ss9xvok1Uo4F7tz2yRweg/8NUMRdyQ0KBiyUSzEsNet\nadmVS1MVkFdPGmxrBpU4gMsG1w+T42dsWuxFOc1F57VtP2NAu0u2HaN69XE8\nG9DJYwiytA/AOi498SSsRtMq2UTOJS3a6JY76wFii+zc+sI7duqwli1zC8Aa\nnZON\r\n=UmSj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"9f69c366e3da081c27b93b7954d7c5e4d15932e4","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.10","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.0.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.7","mocha":"^8.2.1","eslint":"7.17.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.1","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.0.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.12.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.0.4_1610637138835_0.027773879066298246","host":"s3://npm-registry-packages"}},"31.0.5":{"name":"eslint-plugin-jsdoc","version":"31.0.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.0.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f190d1b81989e9febb01356618b721cdc23675c4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.0.5.tgz","fileCount":99,"integrity":"sha512-TiBVItHnBAtSAY4YfYq0PBIfcCqmInYpK7ziCgCQgBUdRT30JtIqZ6TLrH5kF237fpfSdFUFYCVkdlc+MZPd0g==","signatures":[{"sig":"MEYCIQC3fmM9m+aLYHDsjNGWdS7Z0NUg9mTxcnuvcPbFApgw2AIhAO6Ilra0XA+kFUz4fdy+ElLPRJ7Xb7Q1nUYwj4BVkiq1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1025176,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgANKRCRA9TVsSAnZWagAAaI8P/A8w5tVPNSJD6VJjh53M\n+YFhM22vx0HvozFT4tpwHGScQ1f1bB/d8LemKNFIHjIuEhU0VnLmW7glvr4z\nWTuFUULxSaoxQHq5f2ETQn+wTg7e7VKS+9/NBvJ+spNFCenKsoSZUAfAl2vX\n9XUB5H1Gx+OGz35ld0HosPUrBYGpJP41N6WVMlg+IhwIy/1qlvJ2Eci0kWnX\nvwkB+p60miIAf2/iWR48FXjLUKwgxooZDItAJ2uJi9MG5kxdxFq6Pw0yKydF\nJJmNYgg3PYVEbienXoiu7bmSpu5/EadeDqN6tV9hgxTR6uTn3re0PUwpKpee\nJXo6cO0NEQ2ockULPTiV9CWX3+EEWGTO2sXn3Sv0haSnyBsfvpOTp3wCjt27\nGWpuFW2TokSDUHSvRNAhqupF7vpkp5AhYnnZkRAMHvE6V404C6ZoJ/hs4Ocv\nT78rwCf1wD4ch+yHg2IDSu5fSvL+VvMs3IhYbIXGOOsKIlD+d/7wQ1abj0wz\n2s5qDDjSMrfMIYY2HyMMNfYdnoCzA9oAi572rFeQm3spHKy3XEwHPeb4ezD6\nKzoScZ3fmNsUc4TEnNGxRYUF2hYl8YP61l0BOtCpRpHeA3RqYbqc8yVAKcUz\nZS8MmutDh/4P+jwTcrfkGm+w1Bjq9VQQU8+stgZgg8H7eApYg/MxHEqPn9RW\nSe5r\r\n=PyK1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"d81caa2ee88610e4c7c015bc84ad712e3f57d3cd","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.10","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.0.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.7","mocha":"^8.2.1","eslint":"7.17.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.1","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.0.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.12.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.0.5_1610666640514_0.21134152603032863","host":"s3://npm-registry-packages"}},"31.0.6":{"name":"eslint-plugin-jsdoc","version":"31.0.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.0.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"8e6b57ea74b2ac262b9d78b18ae472866571303c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.0.6.tgz","fileCount":99,"integrity":"sha512-wGd83EcR+M0HHBgVx3f4gf78z5gMyEil6fqebpAFPeG9fgbUcP1XiWikTWSW3rJrjj7rQvCud6A/IRFMFzanLQ==","signatures":[{"sig":"MEUCICoio1ukLnfC526mtVc1orMbmpLj0AYb3neet28fUgERAiEA69yb9pGgl9hZqAO3TAxG+QWe/48dTe49HVrQAsB1Usc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1026774,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgBCBFCRA9TVsSAnZWagAAe/sP/i7TBPh97YFm9XfPp8hR\nrpMAUAYoCLUplUlN14jixT3QZJXQ74tgNqCYETiqL4Qw1/Y/VRH2p50EQV+V\nfrNQpsMosuS2nsHMhwiFam+quvAJQI03wqrxk68o53pEm3ivCOcBK8r9dviA\nHy8E12IfEfkTqS+lNBJhRnesGv139fMpLaG2/SWHMR+erDW2yPI1ZjYOO7Jm\nxEWUP/AWLQJmgJvmqX809iHQcjyMC997Wuqql3L2NdgzcEZCxAxEKLOiyfi9\nL9VHhXN6hxVEbt4KiwbWA9d0KiTLVSazHVg1yj8TQ3n2yWe9cxZUHF8H3kYG\ngK+cdlxOx6EIwMgsEDeQliLhYYma46PiYCNUBY6TOS2IipkuIlFlhlKLqrNL\n8SmQiK+gdWZes1we/RodEEW54ZzswQmLDDLpENEgjc0nzfL2TKjW3fIkeEI/\nWpXLQOgoW5mfNB84ZlgvKONRrmnID+/4rRsRUWml+SlR/9GJ7bSfvj060cLM\nEIJuDRsocwNwNOnaJp3OfO1Q8N3odgLgmIZUhjG/hHE4CAdZDcGwfh6YC/6t\nGnWJVhDoeRHffndaKA8vbC30S2NwrayUyLbXF+5diZEJ62N7rX7a4Y0sysnP\n3vqFJbR8QPKWy699wSCEUGz7sg5aEP8L5jWl6c/zt/xKkZDxnE5IDyNFzmOF\nlLvU\r\n=1ryv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"081d7eb63eb5b1022f2ce6a93760ab82f13a8307","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.0","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.2.1","eslint":"7.18.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.3","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.9","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.13.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.0.6_1610883140963_0.10657210188587585","host":"s3://npm-registry-packages"}},"31.0.7":{"name":"eslint-plugin-jsdoc","version":"31.0.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.0.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a3ed0c1060521374f5c413e5a4bb90ef2ab9a60a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.0.7.tgz","fileCount":99,"integrity":"sha512-aAfVrXxgS+x9nW97DYZ1hEdKvobSqfT6S9xIU+pZYZ9mQW03B4l6s79CcAz6Q/RqYJj/nq+IOQO5ZFA8v7e0Og==","signatures":[{"sig":"MEUCIQCblumn+cpq8bXPNaCSHaIzVHdvrTq55NdUjaeVeS8zzAIgOCFKpLxgSS4qVV/1X1ihkZ59VClN78gXv5ktChD7sNs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1027012,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgBTrTCRA9TVsSAnZWagAAKTwP/0vZa+z7kjHbSDH4uTE9\nMxOi9UVOLSNVfFam2rFAfDIcOoYLJ7GT7Ll1tlc+ORTdbeSij/NxGHyK0aay\nsP1HblRbtHW3ElYgwv+musC4hYEQ0MC58Bt8wpmV3ViDv36lTx4Ir7R5kdIC\nth+7SZpc7/eAnZ1ojrlVvP0yQgOpcbFBC0/6rbP6SvUFmK7GOFX4tqSRZqqC\nTTVqbvBNyHXVuMKVvBAgN1c83Nqbx5iSEfcjM58LsGWwq4b/OVsIHwcK+PQP\nw7SbUdYruh3EQkh1A7NeKLlnP4N6bLWnVQWiacCJm1PTsUyiG5PJ7xgaC6v5\nv8Csgh+v8Pr0ARG29fnfafqss6B20HTv2cPtDyFUzP0i18d6aeRfbQIsg4K0\nv5KRvxcP8y1OrNta8mN+YhrGQpqNsvvHkx5rwWwSChBQ/lcoa/wxmoHrM+mD\nVe7WFOGIm8wpZKh7OAy9OPEzNr3H18CSJ+6yc2p2IAvfQteNiMoJZE44L70r\n69IYQBGUcW0qkykv47XCggimROPW6JcjB7E9LXrp/fURDRpsmbpcCXwBrLWP\nyOv6DQC6VsARa7yWStzRHStBK4j/45v1R+uJVAfeBfMcXu0JWiSI/qyjzthR\ngBMreeBVsXV8enKv1po56iHpdeonlyXw475d1pQM5q+6ddpzwsz53h9nPgBh\nKYZt\r\n=wmSd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"7b9c1bd8766b60df55dc324ec4848dbb9020eb7c","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.2.1","eslint":"7.18.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.3","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.9","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.13.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.0.7_1610955475124_0.8940416207960704","host":"s3://npm-registry-packages"}},"31.0.8":{"name":"eslint-plugin-jsdoc","version":"31.0.8","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.0.8","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"403d925f401e4b6dd689666f6225376b6af74103","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.0.8.tgz","fileCount":99,"integrity":"sha512-tB/+QfKXbV1CUqIwpRdZACt7dv1xDjqEjoJpc07EGqLgydJokT43fsZWPfj2mPbiMXYhZQiJXaKhk1x8lgUDQg==","signatures":[{"sig":"MEYCIQCP12JWhOEcBsX+bLKweYfcCk6kffz+hQXnEShfq954zgIhAPwdvfLDUr8ETPH7A6iWA/JAhqnlaOue2Pv2GFJfmrK7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1027522,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgB75TCRA9TVsSAnZWagAAp2IP/0jJS0xB2xL3wkdZSmcq\nxFfOQdSorSQsRoLFqTfYKHfWQStpULAj2IvyG0arbuNiXWFpUpxQaP9Pi5dG\nOX2MUtDp9Tsu1IaTCPKZKJzaaN5fncbdKRuTUyQIvb6v5gEz5q7aMmko3tI3\nLBQNOd1+juzvjlWBJdZjQ1sgzbgKq/k7+ENQUO65fGIirFgCSBmzIrIRERc4\nRD2+qZlZM2tR6yc2x31k9ZfkZLBaXPm6uV/sArcSrPToJXbsmTXmozWijm/2\n7iiZJSjEZFtrqz1bIeRizplfXLWbWuL+y/wDQerpXRGQm4w6jCLgKvPYRT2A\nptDstySbhrYBJea8eCEauabzoY1kb0rTcgTyvO5jsGRNQpYKEBJ40Jglk0S3\nOymLjf4JcIBu2VrEchUO7FIAsAcb5WtsPW29qiKOvS8K6EVbaQElsbOoES42\nd39mcL2k74CYM1ykKZET2V7ezfJ92Cl+Bo914fSrdAmKq5KDBX9GgsBNpdH0\ngz+OiTIIQYjFKm3qF8/uDwBGmMg95w8wnAh8vhXE/rWR/qUT+opZAiCRjzMM\nmqJKtcpV5bDRr7LZxKewt5sVppAFZ7PPMr93rvibrRbdmwg+p+Jtuat+ZAJw\nuDL7xRV9VCl6Igh64iJ2Bcqvl14EDI/JMf8oO03hG9tXNCF/gjXPgAyuyqd2\n/9vX\r\n=VlqK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"b8cb394876af03512791a44c9efad10d46e43703","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.2.1","eslint":"7.18.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.3","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.9","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.13.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.0.8_1611120210741_0.7515460162521528","host":"s3://npm-registry-packages"}},"31.1.0":{"name":"eslint-plugin-jsdoc","version":"31.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4b3ec798dfbacbfdde2ce83dafa117b3ed53d59a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.1.0.tgz","fileCount":101,"integrity":"sha512-lQgjXTaCRx0/yu3YJxEH5ALPf8ynQj7GqqdBOxSud+GPcSqnxgWX4dMGAHH/vm5KToPh9GZw2wn/Ti5lAd8gQw==","signatures":[{"sig":"MEQCICy5LLaTYYwirNhiECUe+SDqQT2GMBeYkQIY0bqdzuXJAiAjd/atOHEls4U40y5cADWHYX29t3YjXH6J5bF8DkNvcA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1063014,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgC5cTCRA9TVsSAnZWagAA3CcP/RmGgXF9lkk8qGxImKD2\n1qmIQdjZC1ug0a7E5wWICyR8/lAlpvWsIHaCpQzV0jpeltGViEdf4r5r2Sem\nuKm7wgs/m1oi4LOu0CcXHJ05EPFhFFxDgrMW/icVYOwWAu2Q+szpds4cHg2K\nzhd7eUFlUaqdfQU12mtLIUNFAgdXkVxOF7aJJ5Cgjy7GrbAYy/ppJuPK8o2b\nhb1MM3BrH+iZVaAcT7knJaC6Z+d5Nti4ZM8OScyjAqCbnupYOFOCLDtwZ6V2\n7u8WsrJjrQeDBW/CM9NuYcPFz4oh4QZF/0wSKcP69KVBW4Ti5YXKy6FW4so+\nBcY1EuzsfqAaL+jK7yDDc/wtm9iGIObhPyItacY3HCOsuExUE69lCUOULJAx\nJzts4527VnZtIST3+xQufNn9p8I70IspD6NjN6MJuzvkXfKLjuPRY8LP/u/Y\n8rSaJVi/NKz8T9MalTwHGopnssO/+RkmSis+Zpegjy6gVw4KNd3VuOAPIIKB\ngnn7aO1wGQ/lJj9POtsS3uqChra9i5lxzGY+/k+2Ir1AVsxO2jE446+eNeqS\ndzWlv8Fa22jsl6pzP10HEE/7L2q+XKUdAL+Z805vHoyRcclpW1089BhENlCX\nk8V500y87S3YoCJm9ZI8A7NLldhabwXsGl4cKqPTpu+VxdYW0PEBn1vQa8Kc\n8F/M\r\n=tcNN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"15daa12ef23ee4f51d6dbe8385cccdaf868668df","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.2.1","eslint":"7.18.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.3","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.9","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.13.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.1.0_1611372306521_0.6538077870943952","host":"s3://npm-registry-packages"}},"31.2.0":{"name":"eslint-plugin-jsdoc","version":"31.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"8cb2dfa2f16cda0ac9b6a5579006bf2c33278bfa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.2.0.tgz","fileCount":103,"integrity":"sha512-X1YZq+JdRxEVytQKRrvR0TViITJimv3aB/IJie2PIr44yK6TaAD0fTl3fqWmJJZParIxyNWDK4RyeWPJlIDTrw==","signatures":[{"sig":"MEYCIQDABmw+CjQyuYGVLEb9mjLkV2tZtmdOniiu2GVfbfHIZgIhAME32yUL5XXztIP3nnHcTtF+O28lBP1URgwpjg2XAZYi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1081996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgC6/mCRA9TVsSAnZWagAAReQP/3J1hMZjNthBMmu18Xtc\nQQ3pr1fdelzpqN1lNvTxxqOrm5Dtqkr9ZPuEaoZ4qBiGTqSOlHz+EQG3rl5y\nXLLJ7zAXj4l89l++KRwvlNzgrbDlc/BBmRZduii5mNPfv/WINHNCehHZney9\nw8szRLEpDuAjnSjBKbLqU+r+y0Cdpi5vym8GcPuDQ4P1ENAvMBU0nhVQ8xLG\niHl9OSSkl4FavW2UpwcFCK1bVbBHa3nqwhTpgHpwm9NHDEx8GKFEqDLXuCjy\nJsjVEbHJqxpjcW1Tl3ZlH7PmqbH71C3NxUkGcTPxfvTO7PWOSppK8b8qdFug\nxr78pYCpBzGuqLJyeE6hAxd1ITG1s5tbqs/hLyE7kKRuhU+GmbK7mB6mPKfS\nczhC6DrHDQq4Sv4pp1dkOjRYA+hWE4gCKs0Klqnem2xboVJlcUmZCbIg6fbI\n5uJR8CXR7qxQTxNz2hdD0+LFRsrx+tgHb0dyVY8ANdakWj/pnDDAW1x0mxlT\nx8w3gcVKI7moBon/DTvrVLU8nKVxB81lWK6DxfL0ccgsJxinBFSwdI+h4C29\njc2MZjwJgIS0kQbLMA7YAV/bJXzS7NWJ3x4VkaR8Z782gAkds0RsdYPK/Mkf\nNzhyQkGsYxEo0L45cr45wrjjNZVjrV+amWBQUxyv6wDz35mgB2VrOFCiLaOz\nmE9F\r\n=1aRF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"acf95295b62bfb3a88af93df36c350204604d439","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.2.1","eslint":"7.18.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.3","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.9","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.13.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.2.0_1611378661630_0.6509325665969166","host":"s3://npm-registry-packages"}},"31.2.1":{"name":"eslint-plugin-jsdoc","version":"31.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"98aa672e348156276d2cd552b5cdf64176020fd0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.2.1.tgz","fileCount":103,"integrity":"sha512-OKgU5ZGTyMumrV9ddJQf3omXTqlMB3/GJfHiSQnskSpznUrC+BPYt5StTmroZaSERa52ZFRK8trJLLsVBpK49w==","signatures":[{"sig":"MEUCIGofPRfNEfPqQnVnaf1i5JqkYPDhiweX/WSptKLqvfJ5AiEAg1W7g1HapbqAI903lb597WMHoJgdj0jDkpu13mX6mII=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1081996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgC7+sCRA9TVsSAnZWagAAlP4P+gINUNSrO/dAM354juW3\ndqZ30+CtXqwGekzv94KCr2fozcvyFoX1+OIokEQ+E/Q3PiHDUwVIM/e6oeCD\nCrVHckqYaRFdLPODqlYmxGo7z/km1RoqvvJxtwvqZ5x69D1SveU/whtqHL2p\nNSS54ODn2CxPlfz5m3MTrA+Nq8t+ix7JnxRreUXnZFV5db1F1iLmxBuhXvsQ\nw/BMsSPtbdLC0KyjhZGdwmxbkXmxoA0GrhsLoL0myotO3VeBaR87/LNGjS+s\nkAG0Hq4VlrBKGoRNL8mjAnDicpzDuLZWaOLDmHqY2+h3chlPu0X/1H8zlbLq\nmskO+eaKiLKN5AEq4jVYOFwNF7UQ5hpucjsfYWI3B0ySabhs8kLw95Y+ldlV\n29nGb4k98qXi496UIusrfitPFBR9gESuoeDX/I8hanEPRi74MQZiPWrAzizz\nqE7ajMkw57tC0hSbOZX3Iaa8m6zLid13zdHgXoiZ64HTDo+RRxRr7UWQWV8i\nrPdeL54EP5uVQ+rYml2/AYCvtUANrIxmS7dwuZ5hex+3C7CnvMh78cdAvoIQ\nbld/scdz8zdR/EJqwL3JRl7ZPOq0cvyW3C5kQxsXdNKFSy8IdbMYP/zMgv9Q\ndp5VhF99t5F804EUarb82mctZcpQ5t3k1B2vj98PtubFClIGnLk7IofLRKTr\nciPR\r\n=MLWq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"6b8d0d826f08655393eacc29d8d90470fa014571","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.2.1","eslint":"7.18.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.3","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.9","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.13.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.2.1_1611382699544_0.09338612507812072","host":"s3://npm-registry-packages"}},"31.2.2":{"name":"eslint-plugin-jsdoc","version":"31.2.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.2.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"288dab3be497a0eefaee7a8cb6babec217e2a83a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.2.2.tgz","fileCount":103,"integrity":"sha512-sz3pumCHWebKcUjWEFlVVDJ5N7OChjXU7y9E/ddJiAiAsxPedOwg93/b9Xu4mP98Y1OyYgq/eKcfZnyy6UupsQ==","signatures":[{"sig":"MEUCIQDScjwXvGvDwJQKLrzOq5OViv6Eu8K+GknrOCn0Jt6dCwIgLQn5zcMgd5/XB7m8jnJmqFlQvmdDKafZsETFsKQeSww=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1082923,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgDDzXCRA9TVsSAnZWagAAk+YP/jZZxrBuwKjAGp2eR6dU\nAH69vYj76pLjkLJGURTCb/tJxUBGON1FB1jkeOF9QFOnE4t4DRylrFpgSELN\nGWjk1xGST3Lh1FGPfugfKNSH0fTW2usHsj4LTYHPrdak3ii2ZYZXFUYtu9VO\nUdFa+kd3kvJ68nH0cyvD7dZpGJW961fo0y0DzQ/2EydVI5UIfnC6gebE5sAr\nGmkp0amU6hBU30YDtnd9Z7/LEYU18vFjdYVrFXWEEvqRlj2pVXtedUyU8Zd3\nqhVK9BxqdJ7ZwrSOHr/MMawALrdUMlFuEzL6ccDE9d0VIBjMHMjzoecay8DP\nvzAi/Ump7Mdj4Y7CbUsjm4tgaDtaPz/GDrA3tggYB33o3colnh3QzaCja9Nv\nOBfPwpOzhxyRfEWrAGIGa7M2uZ1bua/fOUB83ZHpcOFln4FdiypjSuaIRRSs\nQ8K5+LXLkgI5d6T9b979IyycRJFwBifDLApy2Dv4SbqBLQG3UnayNciHI7OH\nNDN1yQNXRGvDcWlTYkBAfgBc+vWbWJo66FjpH0xPI/MWxwer/1t6MM8exQkM\naVvjBucJ0vS+Mb5Z4umQZ2yJ243G0O5ihctmGRtRPG6Dmskj1Se8rqS7/UCM\nWOgZ7v97zuIsFGYPrhQp384ASaq82/elIfKug3EC+HjGQv6GDe8RQxrWVSya\noJqB\r\n=SHfT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"5f586fdc10d4619ea98242900ae1444d2babe018","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.2.1","eslint":"7.18.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.7","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.9","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.14.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.2.2_1611414742426_0.848415842743286","host":"s3://npm-registry-packages"}},"31.2.3":{"name":"eslint-plugin-jsdoc","version":"31.2.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.2.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"67bae2ec0b2b1e2ad6c4bba7240ca453a511142d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.2.3.tgz","fileCount":103,"integrity":"sha512-5M9DVI7RtBavBmBL8uorpcdrEFrpyAikmERTuFvWbRomwJPJFLGweVgh7OhfUEY0jGX6F7Vh2C6NBoOQsqlI1g==","signatures":[{"sig":"MEUCIQCiq/fnFt1JH2bXLte0YDqJOAWlt4j5p4WEjWLUMh1qSAIgUsUm+KAmDpQAXTFulMwVnwZKEjz446FTpXp0wuMWBXg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1086554,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgDXNbCRA9TVsSAnZWagAAcQcP/1TsX9E4CTPGejc8iHGa\nuLm0VMElLd0DUI8w1hnjDcEgnhukPxmzVFZ+kLd6iuNRhOqtAi/143erj6e9\nmaDEeAsECiCPvxX6g+PmHpj+ooht4B1P7p2Jyon6qc4nB2Zcgp9JSYZryfrg\nz/ZQQKdz47KkAGnLss6Ki0WlVuFMYMDH8iANr8MnlCdQGk2clf7E0oL9R+Az\nMtHsB622cpcTscR6jeyWZb/fk67iqt5bRLHEhYunV+Nu1dx1SAu8Yo26P+gT\nfwARRB9hoDn9esAxuwhP3EQ445Vdi06blsgOLyIHN2gwJltmFZPK1bU5HXCg\nVS9Bd/np4IMfTqBYLo6H9oR3i7FMm6YWWc4gcild2+b5rKJ6OsSCpmr4/Ogx\nm/YqgYe+fuogTPLMENUARTKbt1/oSRpnbDSlGDWtoNT5IHclg1lYfeqeHJjA\nPUFVzaDYZzNdXlsqmVp6I9gA8Mvru1GZBOUL6yQ8qW4d0Ghg5XhIm2mv5tGi\n2PUvIemHR6lX48BMSNuzJ18w8x2z71r914/0t0YKk0/3Z1ZZyFtQQDx1smDB\nfP6/wgkYGcAMcaAZ9epgu86Yyb+NR/LOEpFm3Q3e+el8fBRg/zSbpA3PmjVo\n7YXamknWxWQL35KG31zEErfOUxOK/Kp1aFlsy+OKEllaiSRf232KF8MCUuR2\nuhy/\r\n=wS7x\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"a36faf24005346e0d07cb43c1128ba4ced658b0a","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.2.1","eslint":"7.18.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.7","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.9","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.14.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.2.3_1611494234541_0.6807233317995949","host":"s3://npm-registry-packages"}},"31.3.0":{"name":"eslint-plugin-jsdoc","version":"31.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d6eb5c7c0bf49721c288c9205c2ff168c86dd365","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.3.0.tgz","fileCount":103,"integrity":"sha512-R/AviI/8+ByMkiJSOeB6WTvRLToZgnuMeCFUExO9w8sz2S65FtlsGD9LhLFTIVRiXQfvAVJ7weeQJfagJFvfEw==","signatures":[{"sig":"MEUCIQDPeEc8lUaaoq2L04Nn93E8tusN3ckcJ6+k+UYQfgTe7AIgMEe9EHlfh7Hn08UikreFJ+I/5rtYrgv7dMczTGvq4AA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1089942,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgDX6aCRA9TVsSAnZWagAAAREP/04j64C/lQIj73Dvgx0O\nOBBW+c2/ZRRy+ATb1Ln1JejR+6Zbw5mBU8Q8rBaChmWPKXRbAH4KfwFfI/at\naZupHcvzharFHMVYA9Shc2aKIR3rTjAq29TJZY1+3lvuQZaYNih7vM2mFCg9\nzZZ36AqtgT9i3RmYKvXpkFHkna1q9pj9xaG417fXbiuva/Jwcjjq1vVg6Ch0\nnGMa6uIArB75m8Ke38pVjrk4YIOAcyFeVP+Zx9gicNLJNEdW3e+EjpOYdJqz\nB0+Pn9GhmYwwHsSRRoeaub/smvo4obgRpsfaaMIeiJ6iEGfwtS9AGzXNFq3Q\n/jHGz+vH66pbo262rSvg/wt5B7qe90SiAqNBh1Hbp1A7W80dffZSSxbMGpPm\n6NFM9rDVhJroXk97Ifir3Ajr+pLupqTtk1yr/aunNvu7KNlEmQEgjt2SPo50\nBsnr6fypw92egzNGAAo/tfWgtNbxWwdcdj1w2+48Wkc2ZpKPmtG03RlQgUyZ\n/TQD9MFPRwOTf/WHV7+SZMHZaNiZ8l7dFKqgX4Feh+AfCsb/pjc1H7SsdgxO\n9BhPy1fcl9Em9IC59Z1xiPHvcHoNptXVoBPLZ/CjpZqvyZHKMoQUo4+CowQM\nDOOOAX0APFpMEorYP+CY51ph3OpY/ASu/lTDxADWwkRZRtrFRq4tM89iYmz9\nKDk+\r\n=X6PE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"8b2d143e6201fe271b45debbc6c43bcabc03f6a1","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.2.1","eslint":"7.18.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.7","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.9","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.14.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.3.0_1611497113185_0.21841754812645342","host":"s3://npm-registry-packages"}},"31.3.1":{"name":"eslint-plugin-jsdoc","version":"31.3.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.3.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7520ad062c7b5cf441cab4ad4c715d51bd5a43ec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.3.1.tgz","fileCount":103,"integrity":"sha512-DG/EROlR0BNZkE/uOgCcHtbAXiTkzR0QV9KANellK1hLYKSBlg+lR0cWDHaP3XQj9PzLQts1iimwS7aM4CEqKA==","signatures":[{"sig":"MEUCIF8rbtVYhikHMEenufao6/UOv4++dLEUM8QiJk6IxQEGAiEAx6vp0qHfoPsXN6JiWVnWe69Xvexudh6+dOlrG0hrVO4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1093764,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgDYQ9CRA9TVsSAnZWagAAi94P/0XZFD+t1mv4pDa+gQuj\nHzpQMKrcGtpCaRgULnPQNkcLUTcTA0nEdnHwDrev7a/XO1UfkonCw7fqodD3\nHCuHueA0mhmCi1Z9JCS8tmegcDttNQSAZev6mP8HbB/tErgu66eORVOOFdMt\n0X0PXQhgMzU36bYmX9YpzjPOE++Auj53uANYu8PYsR65m83jzNlkugrFvOkd\nKbAuygjfv3L2Hauk0RORjTuzLWdmQBAgDAW8lSmZ7jukIa9HlWGolEl5Lt6F\n5lTjjpWkxvvVkE7BDBh/fzcsbb2Z3+CzvKxJksVMlxxVuQDQ6t8J5aSgH2RY\n5CVlwHgJQNbd/SDfCatI6B8RBrkKQTethCAG6zJw9C1X45JC0mkGl5TW+pM/\nS9fb9uZ8dQTdi1r15rqF01xdsbzvw7zeT9tVNrpw1MvwI63TJNCrXKs99N/0\noytYMOwURJIpgh4zbc47jJOOUVOuXzXgFSZ2GYN1usHLHcyFo0yVVQRVHpDu\nVaJ2lG/Becbk22B0nIKDhitpF5AmtAHHYnLurSkDCzvDlkV1NXraIf79/lO7\ndB7YzywXzaTaSv/sv2Z8t8rd1RPaqocVTwh1uGX8cBR7TfnIxE2InYk+asKr\nCnnGXaT6cYppoUGPNWQJFfyjWFfkT4VhCaHnjOtg5m49FjHJK80k5MZktNHr\n9Fkr\r\n=ZmLZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"e13a03abd317355f7dfbcd217d3e39907a85e037","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.2.1","eslint":"7.18.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.7","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.9","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.14.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.3.1_1611498556436_0.07894668191157317","host":"s3://npm-registry-packages"}},"31.3.2":{"name":"eslint-plugin-jsdoc","version":"31.3.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.3.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ca8e31bf97fc9a4c0038a39cdd1fb921b9e640a2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.3.2.tgz","fileCount":103,"integrity":"sha512-MsrQ5+ah4dMez6Z2cLeg9HrUkdeDWzmaebmTKozlHue7o+mANQxSKhn52KclrFz7EkNa/pUIPi4VE3TnseRxuA==","signatures":[{"sig":"MEYCIQDcKtWPAsZ0s69lJkSkQGkD5axJOXdFvBb5yGVC5FkXFAIhAMp4s8a3MCWv6iCW80m5CSxZPI5SLcVAfpm7IfxHWCJy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1089942,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgDYoeCRA9TVsSAnZWagAAvxoQAIKFRbjRAr/1EftMWEr1\nHNZJE9qtsLNJn0m2uo1+pNxlVxUPlNwIfb+xoi6MmN7Orgd00SckKQX5cECU\ntb5bD8NYNHYwqScFl39xYY62iaJt0LMtUPvyCbvibw0Vmpc4k4dwRvFvyoeD\nDlrlw3/LA1TlcaujNwbwo8G+nFSBzzUFqrBKwzOB6EpdaMaoGpIREsRvqMUa\nz0z49gRVDPCvCIXmhEIjnOEgrGYWPM0xDT+8dRtpXM79KzXKapQnrfbhyiDs\nnCdbQ+sdE9bovv/U/MHv+ig3yWJhKiuoBuNq9AhU4wqY9kCxT4J5kPltpQ+1\nSxUwMYtRKcu5L7L63CSUDJWrnedc0MpTS9fp9DJSxMX23TKjEPECgPrAbskc\nBlgMRYC95eq/00Gdn1bQ/OH50OqqSn0fZvnHxTvw96MJg3G2kFocnAQg/ArZ\nTN/Om2AG+5aDwyUBWcc5RjeNmzAxxnj7I4DIGiASbWNmC+YiiNMH+MthcPcO\nXMJfInmBAQXXp5uddVIVeZgQmsbSTwCzKGL3UniIPzYQuZtboAl1kn9+CwBn\nBaIKJvESjaPqEbaHc3mghwiRl5pvSrh96WcKV9OStVuRcda/PGJTjHJ3MCs8\np7jBWBgL8POhlx8Kl09RkNefngBF/cKK7jzgUyNcL4bJ1uYWQF+59+mJCUx1\nKU9r\r\n=LS8+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"e08d8891ffbfe15b78830ea6b10230e12df13906","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.2.1","eslint":"7.18.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.7","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.9","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.14.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.3.2_1611500062002_0.9095740870141729","host":"s3://npm-registry-packages"}},"31.3.3":{"name":"eslint-plugin-jsdoc","version":"31.3.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.3.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e4ca6d37162f91b0430e4fe036dc096513dba99c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.3.3.tgz","fileCount":103,"integrity":"sha512-7kmYu7qQpwe4gCLTBGSpwkiCzmsDlQui7HNlEArUE6Jbqb6ddWpn4Q4X26bOpcByRsyAwm+0xwZtWmJVSue+kw==","signatures":[{"sig":"MEUCIQDcIRtHJjJJs+2ectATUUw5lIgwDhgpUVX/bv4vMQLQNQIgKdo9UlYLFVePC/kActWkehRVqYrpD55uaIIWEuPs64E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1095299,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgDnnhCRA9TVsSAnZWagAAwUcP/iTWh6YUgNmTOvNvJTMz\n4O8PSKmPr6wBdpYbSSlDhjtUBrNg8+ncRXidF+/peUD+cqAvNWsXkHn21ecK\nqeOWUMSYDc0E8mVrBgEJXhZpzATQS8zTxY+T8xchljLFSUrm1U1upx1QzvpR\neBs8IgztYhk8YJnZjTbe72K6Q01yhDxcHz1m+bnVpuotvnHNe7C2vE2FqEhD\naYw9Z41jvMGXAvioTQpvuhsSfV4xs5n+XBU+JS3FBOuVgURAWa2DBlcl2Ha6\nYaOyApKZAzOq5emj3kDcYptwX8IRzmDsvTLSW9EDbWk2fiN+irOgloTI4qez\nE/KAzErP9ycmZ7TceuzXIDyUlO+QKe+cA4z3CMiuujl3z9P+DmhUoqMqg1zJ\nDmYCencqu3VbTU8rPADSp0Lv9YF7/kgDgQmKwZtM0QYwjM82oGR3qc+2pb86\nwTFHOvb6Xu1Z8ckJFcnXSpHinnnAS3Uam5zsnKIGt0cqtmfyUucgcVYrvaYu\nAPTf0qkVDdl97Y32wlGF7KDljjlhxQL0ZmrPiDZnksVQ7ZarG/tNvf7BnhKO\nwd1jdEMbDAAaUMJ4njkUznUP1FKxbYxvkg5ZWZOSQuZpdQSjApNd1wpnOJ3O\n91TNQhEWglc+4ptKs5GecfuDi1X9VEXX/Ce8ZC9yqxc5MZ4+5ts2g+x3d1Lo\nH6aR\r\n=q7Gp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"bcb92096af3fa53ee77c5690d3b2bcd95ce969df","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.2.1","eslint":"7.18.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.7","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.9","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.14.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.3.3_1611561441273_0.41135156067161427","host":"s3://npm-registry-packages"}},"31.4.0":{"name":"eslint-plugin-jsdoc","version":"31.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"70e00f5f8f7cc695de36319d0e761e1a784ae10e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.4.0.tgz","fileCount":103,"integrity":"sha512-NX387IVQrA/ZE9F1tpeEFzZDsXb/BJS4HdT1ZH0RME3O/4DJF8GNQnjMSia8O3gFx/kjfASsdmK5LglVs+xGLA==","signatures":[{"sig":"MEUCIQDHSMKec6pf2SnkD18t1hJMM2qrG7t1BTAaNRovg4/+VAIgNQ1I/81L7mUFiAuHTKrQBpOOz7CEuFmkm2Crc7vZbcg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1097664,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgET/UCRA9TVsSAnZWagAAsuMP/0+kAHSFb/cEVAZCUUDn\nMcS4NygYVvUkiWqdSLAYzK0EUaeYhgqiLVR/WxhYNJKhVXkzPj4STmI5P76v\nTM1+GakksaVsUds5QEjfsrR3KKipqKG5zTofgxGUBTmcxwuT+wCnRJE5tBKd\nzVt2XDLkTZQy9yeDQom70naCgI9ziWRoF9X05DU4bwwyAMJ1kmT5qOBMPxCX\ngYbnh0Vj2CkeO8KaSMNPLgZ5HSPWfQroParT1LDLQ5KmrFxloEJr53+Qh2GG\nAygzSH/vh7yxSIhoq0QFZep3AO6BHJwkgIi9u5fi0ynz8gFo7AeAFFQrG7qE\n18/sF9oi+klPG+ieRZ6X7qPdH3S5R7b/94S763g9Fr8v4FtR59sSiQ3iGl+T\na2v+n7tVT1gCGtupwrjbe/xbDB2D7TRXK4FK4EZfJI4U9C4Voy/DjR1v6DP2\nYuBDa03JeSoMo9+5Asm/XW/1ph6aezx8ss+GWFVdtoW2Tk1S6U9LjHDlhsEN\nB78xcb7JHn3k6zsjzlFCMWrqknqRfM4fAfOhZeY6b1CmCfPm/4OYNMo4206A\n+Kov8ktL1oQf0bYFSF+/1IJdX0rlYUKLCk1E5R3G5Ylvy99lushrFik6rxth\nYllXX+D4rCeXpHnravQXlasZPXcB5tXIpVh5z1LO39amfllmiAxuNqbK6ySW\nSQch\r\n=pSA0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"c0ae4cb193f643b321329d008d4eff80d4ea485a","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.2.1","eslint":"7.18.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.7","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.9","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.14.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.4.0_1611743183570_0.029955144964176172","host":"s3://npm-registry-packages"}},"31.5.0":{"name":"eslint-plugin-jsdoc","version":"31.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"53b38f81f9ed57aeacd9ea1ebd5beac2bcf05b21","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.5.0.tgz","fileCount":103,"integrity":"sha512-168SrL9KIHov9V8M6fss6ai3ozZmx8e28HLg3D+sXsCC2bk1pqNf3my6KzbqWdt6v7aqbYYWXdkEA4dr/N4dKg==","signatures":[{"sig":"MEYCIQD+Z+Wq9f0buoGSmxWdnWcYJBx62UjA0gO3+/vjMhZkoAIhANZrp8vSDhwdjSNbdoSGhrenMGbTz4RhABttbp+o4/3x","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1121355,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgFn3ICRA9TVsSAnZWagAAasoQAIt6lM4p2Wt7OiupAS+9\nT4Fghz85xxwMb7SS5nNJvLwR8JZoCKSSu+bGPSlwEGBQI6PAs2ROMXBRUrVQ\nlnZQvLs7w9K1mY76oFjy1eo7T4GBneBPHylWrcpKLB2qPcI/vgxf+TbygKsT\nG0ZEjelxA3v3Cs0tUkYvcmGNxadgxXpt+6+ZwZ1Cn3ECAZkNP1EFuXpbZNV1\nUOtSRHJOFPgmT6tFSGzBPl+goQ73g8AowC3fO2Qk23nevu+gv9WsEpX1oFaE\n+6sVJSb1+TTCtcfSpuXuijtr5nY7icwLdVx8zeUCKH14temKwbSh9b8ZwN2b\neNG913yEFQZ8MHBxT5sZFh9Di78tAdNGk9prO9gFweMyMhsijf2efFXOD8JQ\nVcekwYTPaTEwHbAilR54UlBZuR02BTGKJBfO5VWQuigqG1X/MfXuMNd3ieCO\n/dvHhVdnXJIGr54ss8A+Sy7KAnaDXdnVCjXvkhCFLh6iiuIBqhYbSuShIn+I\nPtCiudd6LHLjYAkF5HLmZqbw/+sVzNi4+u4W4SKwQaLjCsnCWREaU+tiTntX\npfKdxBivTx6TKN85pZgEF/Kd8qQKEb4Y9san/nL4/L8e8SHBDzw35hl1QROd\n6l835VSyR3hXg0HbEjPFwI9GEOMjyDzEp3jw7+xV81qKHVVT4JFH+UIif3FS\nzqpQ\r\n=YsFd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"445b020804eecdc4d26b2200dd2da8756c61d11f","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.2.1","eslint":"7.18.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","babel-eslint":"^10.1.0","@babel/register":"^7.12.10","semantic-release":"^17.3.7","@babel/preset-env":"^7.12.11","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.9","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.14.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.5.0_1612086728024_0.0416175421605538","host":"s3://npm-registry-packages"}},"31.6.0":{"name":"eslint-plugin-jsdoc","version":"31.6.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.6.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c91f8cb4e4f8a94a27aafdc41c58eb8c35c9ce9a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.6.0.tgz","fileCount":103,"integrity":"sha512-kYhdW+BXHij9n12oHvAC27oDHKEFITz1YJP/C0NPtb+gsGJWxejh5B6dEmmj6oLYOsmNvuCVkdIcqYOyabP2QA==","signatures":[{"sig":"MEUCIQDZ+BlAuKNKiqXd/v2e17QDB3jmxiqLxa8FvS0Z7Uzp+wIgYUc5vVvUNSZ0ku186TOhHU0nwJkNsW1V8xkZhnTxLa8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1139219,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgFtYmCRA9TVsSAnZWagAAO3wP/2wo5PU5i8ellUIovzV/\nFUYmPGMRUVke/0Hi0naKLcLOQgNc4Sw3BQp1Xf8g0vfBNaKg+SUAlK1t5agh\nxMZmmB/fzqFCx5HMnsDpNUnokvkGxHyt0Stht/q4hSYXiGhxOBKdnEFK+hm0\nbDbLM9LIfMF05eiRT+dDtu6BF6kG25G8FHESfY8cHCz7M22qroQ+TslqW4nh\n9i0kvfjxRTluGNhNdMEXXDPKkRbs2Yv43E0w8AjJrR5MMs2OHbnXhb9/CzvR\ndD2qmkrrgm3YtFlVdUTZViX69mTPx6TU8pEXEleoJLpbMQdBvgMWHq15UEnw\neQ+UQ08AtAjAr5qC+F9EWwR+bUx4566fa5tYA7P6DVDssJznZ6FlaOuCheQ4\nTp3iStekLmB7Bs5fOTHehmqjtif6iYXxjJbwmJXEn80Dz554cMq4XvHU6+S7\nAfWe/i6m5Fo5OLGoPGx6crkm5aANSES/KXIq915DkIVfqz04gkwUz4wxvCqr\n+HjJzZGPBPsZ4ZoM0s8EYkTwkGN0528VPovDsBXDeDJw8e1EC/XE4ZxoPkha\nyL5Q5VQVbpLQWTDinVN7AJRRf0ZA6ndo7yNxfuWBx2TO8vYZ7ArxZ6C6TR76\nWQwzyRyYoSuSTJAnuzNunNcBboB1H3Xcvgf4SF3fKy7q6nmG6aLObZYtAehP\ngyLB\r\n=W3+R\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"4e768aaed4c9fd28496af910e147183a950ce6a1","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.1","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.2.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.2.1","eslint":"7.18.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.10","typescript":"^4.1.3","@babel/core":"^7.12.10","@babel/node":"^7.12.10","lint-staged":"^10.5.3","@babel/register":"^7.12.10","semantic-release":"^17.3.7","@babel/preset-env":"^7.12.11","@babel/eslint-parser":"^7.12.1","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.9","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.14.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.1","@babel/plugin-transform-flow-strip-types":"^7.12.10"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.6.0_1612109349185_0.03682856172016402","host":"s3://npm-registry-packages"}},"31.6.1":{"name":"eslint-plugin-jsdoc","version":"31.6.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@31.6.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"98040c801500572fff71c984a097d89946f1e450","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.6.1.tgz","fileCount":103,"integrity":"sha512-5hCV3u+1VSEUMyfdTl+dpWsioD7tqQr2ILQw+KbXrF42AVxCLO8gnNLR6zDCDjqGGpt79V1sgY0RRchCWuCigg==","signatures":[{"sig":"MEUCIQDe9JcI/AIztkKST8VDzHlCYDTWyAlvYu2snxDRGEbWNAIgKOcT0h1vgggDjaoww/AkMmVK8GEqoRXYuFEP+3F4a78=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1133998,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgH76OCRA9TVsSAnZWagAAkHEP/13ulNQ7WQehKC/P2a+B\nGs5I4NAuuDQamdNvoY+yXsXDRIc8gbYCQ2Bka6ObuzRQZB2fSx5xsMAk1Enb\nANbaoK7cWBCdWsQDyzyvddsuA+Y/LfBXfqqB5xuXIY+3S/yGIDcS3/6Rvscf\nsmYRqTeBjII1y3ecWVrXPLZoMllxMJB3nJgazAFH/wyr6AuKGMNOQqJcoO0r\ncWf63mBwwHFt+m+5GBuV5CL9hkAlzUVxdOHFyE/BLmvzIFOqENNhbUVfF5mB\nCIaJ3ARlsU7b4Gg87kb+E04T+i8Ha5GGqPppKOIrSSsfEifZrBQ0CBoXUlz/\n37AMvjLfR7XQ/v6FceaS4vNQ2SssbSU8CT6VjmcjA+fhleJp4eJBmrFrPpAR\ng9oi3owIdbRb+SLpcfDReG9MIaW6pMCibWpHxaN5l48Kae7h0c/6BG9Ogtpv\nZTkG5pqy3WnQxzgbN1L1odl8Hi8LIDm9BK9EZRE3ORnyoMzg/0ocW/F0IAVy\nj34OyNlnGts/7W8/wu7gXlTwy8sAqdwR6aFMtQqjNoqRQguFNCVfyqyzrSe9\nIH1J5kEpxih6zA3tFCZVRquzEwqOkdxRLd6iBrpbfoBna+kXVsXQ9LzWq0h4\nkZQxbTEjOYlTe2zIPe3s2ORb4SuWZeXHbmHLafBbPmV3JNlgIxbozgWHmdTE\nkPx6\r\n=4RAL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"7e0bbbe82eb4a1d0b0c603ed0c78bd6e685dee20","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.4","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.2","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.2.1","eslint":"7.19.0","rimraf":"^3.0.2","gitdown":"^3.1.3","cross-env":"^7.0.3","@babel/cli":"^7.12.13","typescript":"^4.1.3","@babel/core":"^7.12.13","@babel/node":"^7.12.13","lint-staged":"^10.5.4","@babel/register":"^7.12.13","semantic-release":"^17.3.7","@babel/preset-env":"^7.12.13","@babel/eslint-parser":"^7.12.13","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.14","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.14.2","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.12.13"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_31.6.1_1612693133948_0.5634822316700401","host":"s3://npm-registry-packages"}},"32.0.0":{"name":"eslint-plugin-jsdoc","version":"32.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@32.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"3e7b0dd452232845e9311442607c07c8787b933a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-32.0.0.tgz","fileCount":103,"integrity":"sha512-AfGe3gqJlcxyRKUjhLzPTUnEMlVVlWJCAh2N0leJndpMflyh0W7zP09+b6NQHBHk7GyR/JY0bXiSswN3QX9Lhg==","signatures":[{"sig":"MEUCIHe9uu9e/yAnXHj+QK4PxF2zreKRjoUkeTxyHn4Vr3AnAiEAvZh2yqcjKKyQOU8leC9Tc4yeqsPd1ySTmN2j2gQLL4c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1134317,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgKfPCCRA9TVsSAnZWagAAseQQAJqEsyrmVCvGcAbwoxzc\nysNBkdCAQyuS5PgUu78iZxCs0jzlZQo/kaj4yW07z765TAaH6VGvRCplasAx\n6mIKgdFnmNP5i936nMc0m4N7ae2Iv3cQ2G5zDguJ+JgTW8zClSt6NbA+sBYR\nTSFB4tMxvh9wJoyly7Tx7pTbE7vWTRNlpVlds4abxwloAlWvBU5pksWYrzOT\noYb819iwQTL+hQCAPRghgca+HKQA5mo/x+wHYw+iD6ELAFL0+k47aJ1ArFbx\n+hnw5ObztVS7PPe+233T+WcDe60Vu1QrMsVjPOrTnCZu9GGFZpNx5sO45WrK\n+MDy+81eNMj7t6ez7YeNZ8q846vc9HWBveK0sFpRtjJifY5Rtc1uP3Do0O0A\npVllm7NDo22QFib6mxH8/OnnegRiWep3Rdr3eHyJy7XAovoIhBF83PN98zFh\nB6QPB/N17i037+ByMkm0579x8TBRKwqqWMGiUE7MHlmLiHS6rMKZcEwUL8Bv\nSgQKKU0krUseR+Aq4U+3diifR7v9YEqZvyqlBMtV2TullwRAqnftAdB/rOFI\nK22BW2FTU2HOyeFmgAjXC2Eg2xSYKfVZjwoWToNU/YNCnB1RSew4QEOCrNAu\nCrOtDSQCcbFLbAbFftKbMZKktf6/xAoxQ2Fl7ZjjBcT69+bwgwpm6AeMM9oq\nqFD0\r\n=7IOa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"2cc12279f35f0136e6b3a68c7d19ae8719e7a061","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.5","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.2","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.3.0","eslint":"7.20.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.12.16","typescript":"^4.1.5","@babel/core":"^7.12.16","@babel/node":"^7.12.16","lint-staged":"^10.5.4","@babel/register":"^7.12.13","semantic-release":"^17.3.9","@babel/preset-env":"^7.12.16","@babel/eslint-parser":"^7.12.16","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.17","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.12.13"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_32.0.0_1613362113637_0.7135133569741243","host":"s3://npm-registry-packages"}},"32.0.1":{"name":"eslint-plugin-jsdoc","version":"32.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@32.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a3ab1a64a4e6ff550605706aa3fd0d092073da56","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-32.0.1.tgz","fileCount":103,"integrity":"sha512-7T6cKNGJsJ1SxhG4vbEBi2fRmUL3DHzRNsiQZri4vkgIQjCoBb40ZNxSNwBqiVz16C7tW3qLncPoNXsiIFdzcg==","signatures":[{"sig":"MEUCIDOFwNogbWJVkrPjdgQss831AgSYsdAsbZkcAKmtFBpJAiEArG4yajP1AxcOzG2v7WGmMlwMyG20IbhSgeMVWliFrQc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1157996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgK0I5CRA9TVsSAnZWagAAtTgP/3nSz7xlUX1SkQJpiPdW\nXNkCBHlgLXdA3RFqaubtYvgWgCX+P8T/vjzbTkHlXQGZPvUE0Am9FS4KgPzu\nlrz0KIuhfDD2zAQDfsELE/eOSmut92f3nor2FebSNodJBsIUIEVyr2JFIMzJ\nx+Pfk4n+DNm9i8r8dYF35BYkWlGMHTFHiHmtk5Ligma5erRcJNLNdyUvBUGf\n1yCcCb2vddFejVbH3lg75M8YUkZJtFUhfz8akGdbax6XPWxiPsw0TW6iqLI7\nH2SY0Ihxz8UGmMMJEXIjmWAMv2O63r4iqxWQVmlyd4sEp9P8HWsn/HjD1nPk\n45SYA+S1u00we1lbOyv+cmTe/zvpvhYXFWgQNGoLujgIoHNqV8ATISJfh+fk\n+wIaqkbK2AhOekcQiOvMD+VE13rHyNlNoWekza5fDRS/RBkkBvFI1UYL0EIo\nSx8TeD1csU9OuFMBgaSxS4zXSw+bNp0J27ake2uUCM1cNGQxzsBw4LmRCznY\nhTcPhU7PlVHC3qqlUz8yiP7G+M8Un5+SgjiRVkcQKKEl4HzQv0maUyAH2aeK\n6naa09pxer769wsEmwLC4U9xRp/lf598lX+iHMQ3H7owTeMkd1gQwW27x0hV\npIkDvKi7Q0p+AFbJoM/dXAzSNq7h8ZhvyrwLxtUrf3lvwGFExNy10UbRtg/g\nEKLv\r\n=XHeU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"4f0dc8ee7d50860050eccf7b0484d409315c006b","scripts":{"lint":"eslint --report-unused-disable-directives ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 9000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 9000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 9000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.5","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.2","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.3.0","eslint":"7.20.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.12.16","typescript":"^4.1.5","@babel/core":"^7.12.16","@babel/node":"^7.12.16","lint-staged":"^10.5.4","@babel/register":"^7.12.13","semantic-release":"^17.3.9","@babel/preset-env":"^7.12.16","@babel/eslint-parser":"^7.12.16","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.17","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.12.13"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_32.0.1_1613447736841_0.42877175829434666","host":"s3://npm-registry-packages"}},"32.0.2":{"name":"eslint-plugin-jsdoc","version":"32.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@32.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ad1dd61d6c5be1cf947a1c290b1a5c6287be4164","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-32.0.2.tgz","fileCount":103,"integrity":"sha512-zMAJAsq02uWVGrmr6TVlJ2nue0wM/94loWb+0Z/aJcX+oELIet+Z1vtSU9xoSkPaOJE1tpI6CkHgUZfVLKTaJg==","signatures":[{"sig":"MEUCIFipI5ikpas/M4DHk25lmlPaLhfAn7qqYci+hwOuB4MwAiEAySlGCw9tLCEZDrEo7Deh0CJy6bDPpy6OMPAIhq4mHQg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1159381,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgLE8jCRA9TVsSAnZWagAAUpAQAJ4/or8HLqp3j7qdbjW5\nIsvdygZTBShjTyWRGwYVg+JhcD34mh0DdgXTDW37ncOvOXQudHFH6AS2lg7i\njNwR/Sc5lGB07LgxL95HpXFzG/9W2v8phcehpTva9XBRTZ2Cag8iFvPaM0sk\nj5LdAm8ZdAjdFk2oOTuqSCRQBPGsumBMbCjq7YHdV85sE7Xo7gm74NA5qyUn\nlv/zAk1BBEDaR3R1bSPDUrALyaa6/y+ncR34xMvK08X2sfEtoN5qDLnEi47H\nTM7evDw8kUN8fMKaT50Mf9iRQ25vkzBSQNpwPglembv59o/d59NId0dwiGKx\nsA+VeelJIulFbZ0XGAFHKFhiudZIFbVFNmec7HDJAFFZ95h2ZmWiyV9qGlUT\nDhnJt8GP3jA10lNBWNlAYJNigV1Kcv+NkfIOxBNlaTJEXyxULgwuBpcJIxAv\nKTyVbF97QDF5oIEQGZah9AU3AHtbNIlol8CQb/DE+stc07FP2KPQM7x2h3Ei\njO6XJrYi1PVsWTxPS4wH7n3OcBP5x2klpldhHuEG4IwNPeWNOIVp0Ak9p+EQ\nhs6cnLR9SiIiEC1uKmORPUXvvljG/FGp0AixfovCoA7n2y9JM13V5ciTNy1u\n5GerkbRdNlccmmKnUGConDreWoNg+MyQsptJjtSQsETnXk1sslDZAWh97Gsb\nM3/5\r\n=s6sE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"27b95b35a37916a69f9ea1dd75285e2f18a5f278","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.5","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.2","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.3.0","eslint":"7.20.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.12.16","typescript":"^4.1.5","@babel/core":"^7.12.16","@babel/node":"^7.12.16","lint-staged":"^10.5.4","@babel/register":"^7.12.13","semantic-release":"^17.3.9","@babel/preset-env":"^7.12.16","@babel/eslint-parser":"^7.12.16","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.17","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.12.13"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_32.0.2_1613516578364_0.648956325987265","host":"s3://npm-registry-packages"}},"32.0.3":{"name":"eslint-plugin-jsdoc","version":"32.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@32.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"52eb93961c11f0b739dcb855faa2465e59cafa10","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-32.0.3.tgz","fileCount":103,"integrity":"sha512-7hewFaaF42FSlRgxXicchVX1Zg8emxi4GYmdOfGNlDmKY13xv8JjmVmQHrZ/htka6SUUSEkRQEThJcKcd6bB6A==","signatures":[{"sig":"MEYCIQDrnK8P2vOYwIGBsuhx/lQlrLxO9hH78YVd5l/hQkvizAIhAPc/GEVqFmWLTyJVaiJgcO3eWWqg89ZKsS/7JjMx4hhk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1156736,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgMciGCRA9TVsSAnZWagAAz3EP/jXarrXNjccyGvO3e7hS\n3B4ScCdHmEzkRdHaIe0w25CGpm4Yqup9x6EBhd19kNktm8HEQyQNr7b0y9WY\nVcEZ+p1BGn63ah/i9ivnMLSOpJaBG3IKoLVejBPDYnJwZYQd/fFHPil0ZpBf\nboy3kwBZOlmKKpYk7Iju7r2n3wnRqKdsm6azCbiTGF7um/aDdDecP4P3KOzs\nr725gyQCdyqlXGeuT7SKOvL4EVBzYctNU9/aO+ZWvcL3J1H7rDOVTz25vUn/\ncuyp5jMj1r9VLs073qYeqjaewZdMx/1DdUlV9S/8lWxg5HmmtdPr/uJwRZtW\nU7FznAdhW0kGYHcmf771Y4I2gt8YsK2nClVQW0Td82Dl6SYLMMrUQObwjvgr\neNri9zQa3zcX+TT+9j0Z1QIW3kV4lPLQ9bVzHfgAmQASFuEBHrJzvVstbAnY\nsxSo+JOARCyxiiHENfdyYsARnrFSiB5W1adMs67WAGz3ebTYbL45PJIi1YEN\nw1FoyLmYeOJj1SF/5Hd6hYOZsKz3tgojPmNEHUwI+UgRYoNAZ3JZE5pmiiB4\nipy1brZmAV0KxQ2EsoNep5hAyM1xpzuiSlPRTfaQuzq1gMRj8yKRTzw6K0n0\nRHlq+kefLUxaNwp2x/conl0AOl+aPNYYIcv4Qe1dThfcTTPVcTVkxiNrOnkA\nHnAM\r\n=BpIV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"88655b32a68718f4d010843dba2d5aa683afe638","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.5","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.2","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.3.0","eslint":"7.20.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.12.16","typescript":"^4.1.5","@babel/core":"^7.12.16","@babel/node":"^7.12.16","lint-staged":"^10.5.4","@babel/register":"^7.12.13","semantic-release":"^17.3.9","@babel/preset-env":"^7.12.16","@babel/eslint-parser":"^7.12.16","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.17","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.12.13"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_32.0.3_1613875333783_0.7074625321331498","host":"s3://npm-registry-packages"}},"32.1.0":{"name":"eslint-plugin-jsdoc","version":"32.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@32.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"30ba4d7b7e5fa00ebb3b980c66d6478f68ccc226","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-32.1.0.tgz","fileCount":103,"integrity":"sha512-nCdKF8QQvAZ6RsnNoEK4kPF0aD9E6XURdjLx88oIqF+txmPNXAo2rNvu2WwV77R78vnhAGJkeOgmxmYdRRpgaQ==","signatures":[{"sig":"MEYCIQD5AkSTXKbRyeq80MrDxBhswMUTswEdzI+Nsx9ymRtBlQIhANMVZ4V7y5Ql8jxslNluCYKVHszoRPe+bA7zlCs6kFhe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1161778,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgMdFbCRA9TVsSAnZWagAA3HkP/iRBaDddcDXHHhpCteiq\nrA3kSMGyTFkqLXQ7iq26sQCcbGAyci5ImN1wQE7O0IXulw/5KT2z4SZmtHpA\nhlD99Ez11cO/3n7KWtxK1DYjQ9IApIiKGL/F81qOjElOCikjehkAWFs5+804\nj1CBTenyZ7T1SNaod9+AM32qujS4DDB++eTlIuOjLSnTI+qqH0fgY9Ie5TiE\nOt9o3mairZlmwg0aygVmXto4HVPCbOzAc3MqowV//zporm0MxurKHTSJh9IW\nk8O1Ct9Rx/VpDDddbUPem6v6x9DWnHRTmBg05x9ImlGobIaetwwwWZEEIKfx\nUM4W9PZBsNq+nI0jzm4vEd4GPargJU6E6dDj0vsFU22jCAgcvDNsQVv3/ynf\nPhxO7lbh1h6EgS/f9tI5oc0HmZEKtPOieM6YtvHP2zvIFFeweGi61yojbLCW\nRZcunyZAcVys0nWS4XSTDV1lkCSf0zaJ4xnJ6ozHGA8EckZn+F5iUOmJQQa4\n1JLITzLn+N0CGpuGlB4IUEW5SceAG0WAKsQxexzENk8YM8qhKhPELvEnn1mC\n3ep4f+Fsv0mxDZcJkPuKsQGSmC9Yyk02dPPjU5LIM1ggVyAyeSvY1nsJZ64B\nUZbIQMfkeUv2j30V9b1URjLJw6wJiHCMKAD4hn64bwJSarcqYq6c1SKxhfyS\nnNcO\r\n=R0nx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"937d65ed6c0a8e0d34985de25072f988c1fe28e5","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.5","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.2","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.3.0","eslint":"7.20.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.12.16","typescript":"^4.1.5","@babel/core":"^7.12.16","@babel/node":"^7.12.16","lint-staged":"^10.5.4","@babel/register":"^7.12.13","semantic-release":"^17.3.9","@babel/preset-env":"^7.12.16","@babel/eslint-parser":"^7.12.16","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.17","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.12.13"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_32.1.0_1613877595088_0.48564985583920395","host":"s3://npm-registry-packages"}},"32.1.1":{"name":"eslint-plugin-jsdoc","version":"32.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@32.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9eeda91c40ef1e328a4f82be5f5a46307a3426c3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-32.1.1.tgz","fileCount":103,"integrity":"sha512-HiVe7cWfEMkkpj9+SYpRVIEIC80bETpt8dXOmbVtZHkgobOcxxVORiS2iOuH9gj7TO+rwXIni15WuOr2wnrt9w==","signatures":[{"sig":"MEUCIQD/qfpXZIKbcRRvOEs/pvpC6q2lbib/59AR8ADtw4rEwAIgC7EanYDD43h38xrWsGm4Br/Z9FkLN95PX/e+sNOivks=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1162306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgNFYFCRA9TVsSAnZWagAAgv8P/2gAvsWVNfqqGSedy3Dq\nv5cjUTtAC8yTfIKc007Vg04cmSg8vYIZ1AkJbORjH553vHK8Iu+x0evxt1HY\nqm9E5AgsMvcz7wlXqrjlIXGJBc0dtPZYarbjvYmuIvQbqeJLMrfXV54ooBAG\n0n5VFli0I1pDAPUhu7Ug/lpM/i3s2nIjG8WyggCR3JHQa+jPfyWON8AUsAjl\nG2MF63WdTkznIG8TFwd9lq9W/d/pvafFyWkNJjEY4m9DL+t5cQS/UPHFDo2t\nkHvHTFezoIvkGbAfBnoSqn2ndvzPeze/jZ1Ad+kPs/MsEv50acN44cbh/N0W\ngxW76Y1A6OBOXSinSH3LoBsAA2gKEgfSWk8u8snAbyN2f7o/W6Hj87ldhIzn\nC/OE9mHxq/euQ4+3hntOwECAs94JPBZOgJsrrbaQX2bJ0C1C/+KIXYMt90x9\nSFIc/xgjL0fOqOdEe9WI5hhgRaiJcAW4SywuwS8tXx6gy9z80EIWSLvbF6A2\nqlfdXKc/UOIcrHPv/9czd+PNp3hdvCsPElH1WJqctS9h6jeFFoYVcdYgohoK\nVMQ1eN29yAc8an/bdaLNtbvuhk5XjKzqROU/Ap6YapBYBwLoOWm6gpF94XuR\nvEkMpmGtpbDn7vizlsSmDEhcdiEBfqJDUrw3ZcBh0iRahejYBVczYNhsn486\nvspB\r\n=BJuv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"1cfdeb4446a47848db5eb039342da9d9ff187626","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.5","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.2","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.3.0","eslint":"7.20.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.12.16","typescript":"^4.1.5","@babel/core":"^7.12.16","@babel/node":"^7.12.16","lint-staged":"^10.5.4","@babel/register":"^7.12.13","semantic-release":"^17.3.9","@babel/preset-env":"^7.12.16","@babel/eslint-parser":"^7.12.16","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.17","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.12.13"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_32.1.1_1614042628836_0.07903445639894424","host":"s3://npm-registry-packages"}},"32.2.0":{"name":"eslint-plugin-jsdoc","version":"32.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@32.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d848ea8475a9be63d8d261bd7fa01cf2a2bb32d5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-32.2.0.tgz","fileCount":103,"integrity":"sha512-ikeVeF3JVmzjcmGd04OZK0rXjgiw46TWtNX+OhyF2jQlw3w1CAU1vyAyLv8PZcIjp7WxP4N20Vg1CI9bp/52dw==","signatures":[{"sig":"MEQCIDOpcx4Kp8mrlEVXTGYe29EtOlhFaF8q3HVawWn4C/R7AiAz1zmv/ufzuTealFnjJZ8G7WHEkE7uQdaV4mN9AJQogw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1165242,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgNM9rCRA9TVsSAnZWagAAe2wP/3+4Tyccv/Oqyne4+i6b\nPBmQ4uK3B4Nvp9uXFC9XoXagltucTSXZknpo4iAgLKyh3JhaUFtccADnFwUS\n8kjAlmTQuKpRqXzarjgGAy0bwQiK+bWcHHZ9tWUpM64n2uApdzWn+GHSXnOj\ntqLm7K3WzDKCtEbbwb9bj48WiNhsaeRJE3fU2khUQ9uympZGNC7TSq2rC/ty\nYWP1DO9Fm8wFXTEI8mdoj2hatn8/HjMoJUEtji2nnuU5nGyBA+D7d/2vQuIt\n/2eEm6IDJuEdrTkPczLwETJGEdwgdkgxIi5EAbTNMWxHOZe7C2iwMJIbqbkx\n7o9IRS+e5OvtoqhUk4Qep60CPL6NEGAcef+eKvrFM8F4gncDRWx6Q87AprNw\nRJ0TxH5ao3rnv1scmSguhonLs9waoje+jN8rl5GRBJM4fejIES1EGAOjS8BD\niW3xMC7Z6ygqAdghstVJJHrBhZ6r1tBo9b3PQ2swHXXsEcLJVEh1iPzsHeNB\nF78hc7OeZxq9yYnuAtOuN7qqjHKzWd+wBrV7cl1So2r8O9kyDFIlJzKmr++r\npeWZuFS0vmfQFaUFJYjIE5EKxBaZHE4nsvJwLa944mk/BNH4gTlNvxA6CA+Q\np8bLaV0hE+kQ/G5sRV7quIbTEKkTgF+YI0eMULaUBHvbGTMT7rTSpJW52olo\n3Sx2\r\n=TKET\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"b7198e47b79d1a9936e032f43c66b4af730bfeb4","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.15.5","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.2","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.3.0","eslint":"7.20.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.12.16","typescript":"^4.1.5","@babel/core":"^7.12.16","@babel/node":"^7.12.16","lint-staged":"^10.5.4","@babel/register":"^7.12.13","semantic-release":"^17.3.9","@babel/preset-env":"^7.12.16","@babel/eslint-parser":"^7.12.16","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.17","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.12.13"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_32.2.0_1614073707034_0.8158976735798247","host":"s3://npm-registry-packages"}},"32.3.0":{"name":"eslint-plugin-jsdoc","version":"32.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@32.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7c9fa5da8c72bd6ad7d97bbf8dee8bc29bec3f9e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-32.3.0.tgz","fileCount":103,"integrity":"sha512-zyx7kajDK+tqS1bHuY5sapkad8P8KT0vdd/lE55j47VPG2MeenSYuIY/M/Pvmzq5g0+3JB+P3BJGUXmHxtuKPQ==","signatures":[{"sig":"MEYCIQCZzULv1nNM6fkA1qFRgdUjx7nGk5d0VMzloBQN+c/F+QIhAIP5vfpgL/8hIHjz+FfjUC77y6xlWm0h/ZHCOSm8aLsk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1166781,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgTzf+CRA9TVsSAnZWagAA6T4P/14h5P+FSw1fOdkR+2JP\nT2/tbuqq2huRcCGDhfFI6FBl+XipteMzFpEem+Di5L5xenlr1UNadZWploFe\nXEuzdnJh1Is89mRyvSEoJF3ScRanCIp8SzIfodYuSTaGON59KsR+TajIgFsc\nOseyXe9plA2TVKneMFgUkcrUZVuaaOTs4QjkVNod4Ue0y4P0X6+GhnaMyL2o\n4HbF063oiq/OaOkD26d2PgPUSGRmG1k64/8D3xTVgrLLphBuexDlEgnM8KyD\n9mm1joj2CXc9VhJX75WZQiAKXswfhVWVC5DVMW0UQOlXp35lE/z6ZmcJrONh\npCZ/4m8xhWrHRU7tSfAqGRTjRsrGSxf4mWzTsDkd4bNXy3Tg+Cuqk4RPs2qy\n0/zsmZQMtDQ3u3tHa9Tghc9M6IqvvXhrk6Gsd6HMjfthRdSYGAN3kdlCj7SP\n8iwD27SDV+bihXpRQtRvTFVDlpDtWovQLGDVcPIQ+FTn62jqKprzxF+HqVPE\nty0ZMuvn7pO3Yvex3ccOvklUVrCgmaMNkhzOmpqwwZF2GLL8INCdzFKore9A\n8Zh9j1dOzEVT4789LRnTAilgZIszjpJcdtji9WkmJvftcIllRMxQrd2ScVeH\n3O03nRgwLJtiVB8oT0iV9oQ78W8dKdGnI3X5XU3o9ZExHaDFxq5Tuf/4iapC\nNVYn\r\n=2Hb2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"8afb9fc75d203d278d21f5d4ca0d8437aad21668","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.16.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.2","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.3.0","eslint":"7.20.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.12.16","typescript":"^4.1.5","@babel/core":"^7.12.16","@babel/node":"^7.12.16","lint-staged":"^10.5.4","@babel/register":"^7.12.13","semantic-release":"^17.3.9","@babel/preset-env":"^7.12.16","@babel/eslint-parser":"^7.12.16","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.17","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.12.13"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_32.3.0_1615804413203_0.7982890623233603","host":"s3://npm-registry-packages"}},"32.3.1":{"name":"eslint-plugin-jsdoc","version":"32.3.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@32.3.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"1c50b82b12f903bdb4117f7b68e97fb2f65a5f73","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-32.3.1.tgz","fileCount":103,"integrity":"sha512-Xcbc8Cr79QveH+MndVwtZ3uafDdXyrsIkS8lP71Fhn5Qi1Lr8TU2QZNkMYIJSvmuLqDB5Jj/VVULMCvaBZBkvg==","signatures":[{"sig":"MEQCIDiXi9kJ+hcoTnEx4yKDBXPydkFGBx36BplKEkfsXbU5AiBL1KXT05yVGK1P5P9ipXY4j0RarY4EHeNsFZ2+HjOsYw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1166896,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJggh6iCRA9TVsSAnZWagAAkmQQAJ/aS5IpNmGz6lRVM2dz\ncp2e6pyACYsuLrBIIouON+hv3vDL58jq1ZndKl1yOekZyGMaavAr2VuWWUTJ\nS/zB4SG+L190OY/oNVREzxSIh9MFehisgYT8hUHbqhD0/K/S4P8kicuRQOZ7\nr7gQ0tsD8Mnh5BiBjHMIyOwpOBY7ZztMVbmIjDORuWnRVbzm3S0F77JRz4ku\nli2rUWKSthw544axZpUdwatcF7iRxH4l2cQbKhVAwgs9iB8iXiXh/c2gINDk\nrdra4TF4d/POPki3Lb34M38rKK+VQ56khm7h3eDSiyVJmJe1w3f2F/VkGgAl\nDVSLCkOLs/rMOZhUh1OtDWvaH9MxGA5QWAmqimuKOpwwzJr+w+ixlWyoqAbu\nDSAwu4gUbZKHq6q5KW/qNe3nOKRuwnmW/q3r4ETBmXSQHxNQP/EokwSshZzt\nSpVeZoW5w85Fp74GGRmn3mJdluDy6EnDmNXFNMnKIniqHYDZk5yqdHHG2FUQ\ncrNDXL2pCpw6y5kNjcXnFp5TvKl1rNC5DCS1BFQEtaCK+2KF5+wHBbljs+cD\nA1T3k59eAL7kiTEMkyAjkajaLI0whnHeVojzB9R7VLkSP9GMdbQrNPgN58/v\noKP4FP0ZsAipyflgNiwtn05mPiuyVpjc281WPYNRCtuOq6v8F9lSjnCahgbh\n3AYM\r\n=rJC5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"06f0112f76f0eb55b9e1b92703a270be8797d146","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"6.14.11","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.16.1","dependencies":{"debug":"^4.3.1","lodash":"^4.17.20","semver":"^7.3.4","regextras":"^0.7.1","comment-parser":"1.1.2","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.0","glob":"^7.1.6","husky":"^4.3.8","mocha":"^8.3.0","eslint":"7.20.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.12.16","typescript":"^4.1.5","@babel/core":"^7.12.16","@babel/node":"^7.12.16","lint-staged":"^10.5.4","@babel/register":"^7.12.13","semantic-release":"^17.3.9","@babel/preset-env":"^7.12.16","@babel/eslint-parser":"^7.12.16","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^25.8.17","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.12.13"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_32.3.1_1619140258057_0.23926042599167507","host":"s3://npm-registry-packages"}},"32.3.2":{"name":"eslint-plugin-jsdoc","version":"32.3.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@32.3.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"69cf9ad42bcb0cf265890e7477207392fbfa541d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-32.3.2.tgz","fileCount":103,"integrity":"sha512-kcdg0OvhI466KgMYXwxGvP6+m9J/sIBg0Jkn9eDU5lnM6RSVM27M9zKZim2XY6AUbbdqmkBPEP4ixvtBXRHktQ==","signatures":[{"sig":"MEQCIGcN7wyoHP5sBs4TXYNMBw7H0yqam/kP56wZYdr+rhzhAiAZJ0z3Nuz/RTo2tycIf+MlVWslCXvY+zgsJzWOQN9AWA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1167327,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJghtKVCRA9TVsSAnZWagAA1rkP/3J52HMs1nhhpFd3bB7R\nSA7+zrgdw1AFyHsArQ/VTmcC6UYfCcxSxt4M8MWOPLhxt6JdNLM9wGZKZ9QV\ny4I8AYmoVQZZHwIsxpSdsYNX4sSJmJoKD96v36+Kv17X2By5YbFKhpuRNiIk\ndLTYSVvxKsO5tnkenebuCka/Gc+a68r4lbFtGe8YQUw8E50SGdCTiwMxMLhu\n+C0HGiYTIhRkN5OUU7yGNlJm4n5G5MmCzZSkDe5lePxe8/D+o+rXmPLS+UTL\nyUINi8CBPPXexycU4ipCb2MPrYyWX+vqPRwXF60Wa59l+hOOaVbnFvkx+UGe\nwi/8YXKN82fal3QkWO4lsRftF1dbjL/sh3ToaUcMKFm6GEnabqcqehMPsFPC\nhi7XTfsG3fn+corgI2DoNcrLQhyLvaeYUZWYlhzYWzEYt0i9cEen3kWZo4db\noPL4ct4aVk9L7ZWlpKLVc2TS5AV+MjvLweDtmlHgYCYgSfHMDKAlR7mqsfwT\n26tQcnEIXXWydVmPFSFERTXlORjabKI7HfT4hKpY/mFK2GR4r+p3K6jTmD0g\n3xKChzW2r/9UQDlp1t9OZI87zwjFjAUNjVwK6Bd6PbtsDWU4cNV/xRZKyVfT\n3hh3rvM9RqLhR0RKs2YDcQeU3ROOu0yx/xlK/fodmbsGRopIRisyDNJtqZky\nXEEX\r\n=Tfn2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"8bea627e8c9a30e1eb3dcc32c783a764ceda3975","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.11.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.16.1","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.6","husky":"^6.0.0","mocha":"^8.3.2","eslint":"7.25.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.13.16","@babel/node":"^7.13.13","lint-staged":"^10.5.4","@babel/register":"^7.13.16","semantic-release":"^17.4.2","@babel/preset-env":"^7.13.15","@babel/eslint-parser":"^7.13.14","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.2","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.22.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_32.3.2_1619448468385_0.13648841067178652","host":"s3://npm-registry-packages"}},"32.3.3":{"name":"eslint-plugin-jsdoc","version":"32.3.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@32.3.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c430f5d289b6251cb1bf49585858b2335890dab3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-32.3.3.tgz","fileCount":103,"integrity":"sha512-WxXohbMYlZvCt3r7MepwT++nTLsO4CPegWcm5toM4IGq3MBmYkG+Uf5yDa+n1MwPXLg+KbJqAsI19hmkVD7MPg==","signatures":[{"sig":"MEUCIQDKgTgvpwOsOfwojmJv0hGvLDzcLRianxBz2pRg++FHzgIgK/7QeU6gAx1p/85huY3wK5gBQdInZ1r/PHQH6hm14Ls=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1167589,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgiLAQCRA9TVsSAnZWagAAE+UP/Rm732wb5nsQqO22rr+z\ntXvoUj/UjcWUkmDcT9LrtDWQJ1z3d0h4RvnLZoHuPl4wybUDZpllvbxcmjtw\n7okaoQlkZh8gU8o/X6Ixyjsbq5YwOoNMrA5QZbE2lp2PCW164gdae2d/UKDx\ncrPaxEyfmaCWbjVHV+EzKaoHLdhFJL20khMdHmoAZpQmW4UsA42AQ6FuSxPL\nztDP1fZe8JHg/15ly8clSNoK3MKloOxNHyzSHCgxY5PjiN3cACxdlvL2ni5u\ny7hvisMXgyDkV1hmkuKaijGNiIsMpig19WbAqCoDPIVpZgydPeHXlK6Wf0bT\nnevxtiKkhKNT3vZNGT45xYRTK8Qll/XZsKY12Y4ke7IkEFljqlndI7K37K+x\nqSU9RLSbUhYj/3NTWwUwdMnx+8VwtkQYUT0itKddjtnDkUGHNSPmO4tnz4hb\n9r+EAKimpR8C78p3L6hRCHyAWZeYAVnvszvUTwDFuMMPqqaWKGzQQH61uFaK\ntmaQiVUFJthaOczRRxbD2kRCG75gHlmcqHJjD1Qm9fH2CEEkVTSUnENHKIxP\nQ9jd/GN04IV//MGUSOyoRTx3qdCGHcZRI0FEYb2pC6UcD52nrdo8U2yPA0+o\nC33pgx6I6sV4quJs5AHhcpy7Q+bYV7/sqjj8KH+qaqpQ8jxhM+O+8LJylpIH\nAqZZ\r\n=F8YN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"f19e70618c962b855402fc1cef4911ba38357a87","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.11.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.16.1","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.6","husky":"^6.0.0","mocha":"^8.3.2","eslint":"7.25.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.13.16","@babel/node":"^7.13.13","lint-staged":"^10.5.4","@babel/register":"^7.13.16","semantic-release":"^17.4.2","@babel/preset-env":"^7.13.15","@babel/eslint-parser":"^7.13.14","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.2","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.22.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_32.3.3_1619570704103_0.6252108974797839","host":"s3://npm-registry-packages"}},"32.3.4":{"name":"eslint-plugin-jsdoc","version":"32.3.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@32.3.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6888f3b2dbb9f73fb551458c639a4e8c84fe9ddc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-32.3.4.tgz","fileCount":103,"integrity":"sha512-xSWfsYvffXnN0OkwLnB7MoDDDDjqcp46W7YlY1j7JyfAQBQ+WnGCfLov3gVNZjUGtK9Otj8mEhTZTqJu4QtIGA==","signatures":[{"sig":"MEUCIQClZXzzX36QLYct2e3ajbkz2kfZ4pv8ZMtX96UNEDTVoQIgDPxvU9Og3Mx8Ul5rqsgKJsDpoAGzYlSC1x/Liq0jb50=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1170940,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgi1xcCRA9TVsSAnZWagAAPWcP/iZVEl0dYACa69wFXI1b\nfKjOZ9qSj3PxEEMxx4bNBaj9TOwwK+ZRHzZgIcZNFsTU0Gkyss2YUayf8b8b\nlSNTIh1KyryUJcXu9unw6e17eoWbQs63o14GMSOU6SwEzgDFjwmSemRh3l9T\njNc/8l+i69u2tGDfXvw1jlbvJzqH8pDBP/U6EXEEdfzf8d+qmhCzDbVKnZTf\ngGBRi+oIhfZRSz8rUIF+lGHXN+knD1dLvoikXAsDbeYU928fyv1fe3CA3xvi\nNq9Q9M07W+f7rlua5noDnFlCa8vs/Ii6nH9grnYW/93bOelKzOw7kdokBjql\nRraXaHEcm0eIyUPw5ONbqeEWl6r2SEgM0eEsPmNlaMOigMYc0JtlU1DHepm7\nD2KketP1rBm97RGEpib50as3TUjVrKAsKRkDm8kxncPE0TmAb57ZncmcCymx\nWHwiRu4HwJGNvfi5+v6Qwf9W3+iYC1I7yb+GyTab9uW2f/D48lsQFfLPLL3i\nZQXUqW5/xECARidBwebzhcOfIlw9MjdvySch7d1BJg+mrCnmMga6F6OpEfP2\nF4HXf/ZchPMFuB6bAEqThMeKE39w/MvCp/0H1/2Y225EIvRgaL59F5ZXkQ+M\npdRKcrmdNYjGKMt/iE9BVgFcSeIaZvV4lskhxm3dX25Vv3PsRkdJ9zmGy0O0\ngYX6\r\n=C5b9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"aece5e60dad93adb8bc19e5721c6cdc35b7dbc16","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.11.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.16.1","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.6","husky":"^6.0.0","mocha":"^8.3.2","eslint":"7.25.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.13.16","@babel/node":"^7.13.13","lint-staged":"^10.5.4","@babel/register":"^7.13.16","semantic-release":"^17.4.2","@babel/preset-env":"^7.13.15","@babel/eslint-parser":"^7.13.14","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.2","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.22.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_32.3.4_1619745883389_0.19342138944955534","host":"s3://npm-registry-packages"}},"33.0.0":{"name":"eslint-plugin-jsdoc","version":"33.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@33.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"0aefe92706176b8c02c5a8ae721bf3b4705936a5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-33.0.0.tgz","fileCount":100,"integrity":"sha512-bkopnnuDdT04abKWPfDdD6XcAp2yX6UDpDViyvIdYmxbZYbpHXCRzQzLqCTo+SzWSTS0KFWz/V3shmmMr+x4EA==","signatures":[{"sig":"MEYCIQChe+26Gn5Na3eLx/8z7GKZ1RdppL3RAPyaB0XZxzBQFwIhAK0veh2kBBDCxQELtu2b5nkHj8q4Jeb48X1dxyz06Kqe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1150850,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgi20tCRA9TVsSAnZWagAASHEP/inzfxjV7ahaoUzhCQ+b\nyq842xySDn6iHCXLAouzbdIn4lUOr7hBZUsuJVrwFzGkKP0LoIHiW7qS+N5B\nhHKuBikZm2exatfOlDU062H4Gnoaa9iHrVfVIMO7khcJXn4TNIFTWb4sPjbE\nF49tDkONOxNfmBujlT1GDOSR7zdYGERJ64B4nDPiol81SeYS5RlvtvFrHZxv\nF5srBUjJLmIOg96Qi+BZDdfk/Sz9+b6qnZrUL03qZxoN61aT4xVIUzXKLIPc\n/v6+5/gcjY+Iy6M4Snticiy3rfrplW3sNWKg9aegwU5CUaG8o9BKT8Qj4hxY\nPvXmZh0J7mwhWaNMH05VmvFgwdxXPm6SxG9Qj0psJj2bPfy9yacaoIZc44sO\nk/zGZ05+hRZRHPi5qJe0GsWV8bu2Ba7OV8c+abu0ajKjoaPexzA04gkTlAP6\nA4xQ/BHMKHM4ttmLp9S/4PuEgB9u130ZwLHHVcYqQ7Y9H26uovSvmq6tgkXa\nHY+PizAA/1fe2gMqAVLcD82tJqbBLN5KSzgbIOnf6tdtbCbOBhCFWIQQd/F1\ntkOgKYu0Sq2C6q5vY7IhZAVAnUyY6Z0mCjvUgzezm9afT81oRfy9ktSydbf1\nbfgJUNYgAIYjiOR1oRIHT/la77ZgzwByhErqr1fnAuleDETUfyxZEB8dNBmr\nSNUJ\r\n=MfzI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"aa77e3bdbcf3d5c1642f78825bbcd3e6b6edae85","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.11.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.16.1","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.1.1","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.6","husky":"^6.0.0","mocha":"^8.3.2","eslint":"7.25.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.0","@babel/node":"^7.13.13","lint-staged":"^10.5.4","@babel/register":"^7.13.16","semantic-release":"^17.4.2","@babel/preset-env":"^7.14.0","@babel/eslint-parser":"^7.13.14","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.2","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.22.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_33.0.0_1619750189109_0.3501942862028322","host":"s3://npm-registry-packages"}},"33.1.0":{"name":"eslint-plugin-jsdoc","version":"33.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@33.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9aa52d0eb0126ea42528aa352265007dce320565","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-33.1.0.tgz","fileCount":104,"integrity":"sha512-nyH1qAj5f4uDnDpg4aiAS65wJSfxfBDf0lIgNfxtew31z3VRaM8WsVmpe4UhI2u27oOD/ChRuye6KAzzuHn6Jw==","signatures":[{"sig":"MEUCIDLFnYO+OegWMHus53TJ7Y2dT4oDUAQOE+2C/qFhN5VCAiEAsAyytTtE2M5ilJ23IOHsIjmvl2wx3mLAr85slBXyj24=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1194923,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgkmMiCRA9TVsSAnZWagAAh7oP/jTmxqVV1+oF05uBhhuB\nmvUGTEkQiuzoQ7Bku/cP8gQ3BjQ9MSuozYHKJMiHSnendQn2SYiugEWFl85E\nQRtLwz7MWEZRZ5dz6+LIodq+dy0vDy/FfZJ9p6vnH1lftnDQ+468QzQP2zWx\nU7ghuPEJoImWP3w+O6JaaZEMoMr307XZFNN49xIK4AVbr1V89k2o7eXiURm7\nQQ20ManL/SmiXRbz8n5DTUU/PJl2CDxc5QPwWJROOH/WuXgUFoMUi2qKVDvl\ni81l7g6V06nmahkCmWryPJN9ERweZkHCwj76tpf0NEtzvWhneNIkj2/WWtfe\ncFB9fsB/owaQhQh3rwoTiXWIRqE8ffbjMoLcLyxH0IgjTTUGv5oiCm5URvBJ\ngCbDnNsh53S/bFWC+kG+L8dtu8CwwksH93aDWZDqS7t2NvS5+voqhGvteOfc\n337BDTsQhtLtxFDeRu2ZqDQvY9JFHG+PHAqu/T0P0amG9VDgcETdb/IZt0D1\n78+XFXHz0VZ+stn1xG/TZTAUbBRXZNATkH09Kh0QKgLPB0XZxTtaRNslHGvT\nvXoAdLwQ9/w9EQtv+cYwA4ldw+ubz9vLR2HDjBD5A+V8PsL/p4VHUNWh7pc+\nZ2lMZRDmRKali1EES+K2JA5zgFnsW+72YYksZXnuzHkrzw3EhfEDmCta6yXg\nqmik\r\n=LpVk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"6b6d90889163658e45f5e3c5c1dc4a0a0d50f2b7","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.11.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.16.1","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.4.3","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.6","husky":"^6.0.0","mocha":"^8.3.2","eslint":"7.25.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.0","@babel/node":"^7.13.13","lint-staged":"^10.5.4","@babel/register":"^7.13.16","semantic-release":"^17.4.2","@babel/preset-env":"^7.14.1","@babel/eslint-parser":"^7.13.14","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.2","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.22.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_33.1.0_1620206369906_0.564310916653463","host":"s3://npm-registry-packages"}},"33.1.1":{"name":"eslint-plugin-jsdoc","version":"33.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@33.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f3e6d74a6a3bd9624d54e1a9ccbd83a30ddb0824","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-33.1.1.tgz","fileCount":104,"integrity":"sha512-6Avc2czg/mh0zmuU3H4v2xTXOALl9OiMGpn55nBDydhU684cVgvn2VtXm1JgH+2TW5SxEDnX3o/FUgda7LgVYA==","signatures":[{"sig":"MEYCIQDnXlH/Wf9CISYoRt1bOQ92SLrnj5KZjzOqwtwgSFsBTgIhAPJklZwea9PvmDKShXYl2oAQ+teWVDDp/N/EzJntrGyZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1195061,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgl+/5CRA9TVsSAnZWagAAyaQP/Av0LoaD+ejYKdhEIZ47\nri94p5ZZBd+PBjnAeL9m4aeACazVgnuchNgXgMv7RByiG87pBm25UYci0xDY\nkGw3h7vWXJ2/wMqQnC0jo40coymfiVK9V1iChb6nL6jOBUsNICOQS6Wfg2Ts\nN9IU0DLO3ajK+AhvA70irSdn9mgu8tjxlq36rOr5kzld9tLUe8Siv73qKOto\nbbs6K7qI2A+TuApvbdu73kb+CpDcNdhK7gRwV3ORyrkVRX16cmop67l/0IR4\noX5eRcd0xjREawoksi7yM27yFiJ8FnL6v49RdKr9W4QXUBewNmtmMTfr4rLW\niDx7+PIB96Nw3YpM8sj+BW6jPRVnunJd/CtbEAdi54vrvjhoG25uNuRAdNfA\n9/LxnIN15gSwlKLT4sOj/ylpPpZhdvaYBdj3QBP+WsTe+gZMqQGtnxIdFF+9\n05nEO2yWcsuoQnC4WORjWQ04Pfqjp5RUcZ+XYiMy2Sm91kzsdcMvfIXyh6SO\nqaZj8UMnYlP8BNZYjAYTyo9eP86aoCrSikd1cR/zP9MpdobDixneWlc/vm2B\ncXHzucZGwZPqOOGxWFrSBDKGCq/R3HYfQMlzjxz4XaRvSRV/dUUA9LxWwVEW\ndv/TQhmn1EO8rR1EOkUxJ++NhlXlFC9nmUs2fEP6xnC/NzeIZilCOHH2+99k\nqgcT\r\n=Q2eG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"7de397b91e221b44221ed631cc15c83fe1d8e8ae","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.11.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.16.1","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.4.4","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.0","@babel/node":"^7.13.13","lint-staged":"^10.5.4","@babel/register":"^7.13.16","semantic-release":"^17.4.2","@babel/preset-env":"^7.14.1","@babel/eslint-parser":"^7.13.14","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.2","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.22.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_33.1.1_1620570104262_0.27599448781624836","host":"s3://npm-registry-packages"}},"33.2.0":{"name":"eslint-plugin-jsdoc","version":"33.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@33.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c8bb20168f783b8c985ed157fdef632ac436a369","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-33.2.0.tgz","fileCount":106,"integrity":"sha512-f3nSgwBBklgN7KrGY6CF951u2f213JWrCL7uepF6i5mgcw133aY8GEKR0oQrkDcgd0k0qE4KvijyVpO9OpPtkw==","signatures":[{"sig":"MEUCIGjMKTcwTzhoEEwo1ogiVeJBA3zX2xFF6j4s3/6qGJRFAiEAnarxEQJpQ+pdecG+ZFFhr1NcQ3zrngrM+uJhtON2tsY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1211931,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmSsBCRA9TVsSAnZWagAA2IcP/RrrZbHG6ddi/JH63Ull\neS2WikhTwwb2rCyMG+/CwmbD+gDxUtlIHbvVMsQLWzjica7AqXQHtwFTwnQM\nzeNk9qOra870Ym34XRIR40L1334sCKDs3KPSR5SN8i+1Et9CpxXdE1U2ixd/\nD24XgwuMO2Snn7bEymvdkN+KmTuDJ4g4LrVa4A1VEqDeP2zwNvgbFWd5EJ10\nZxXv/pW0MUBuwhCqpkuokVO8/wBJuJmm/JbaI2apDaa9sogynrchFKMy5qic\nbCkycseQD7LGruLgu3rHq2W79+JbJ+rGZq7gMrwtmbnD/LGCazLF4bWtzjhM\nTNYcu1Wfr1ivlo2vs94z/Fg1tbG9DI1tJiMoymN5EuGHb0Oa44F0zfPfUITV\nFWpCmASvKgybn90PjXT/+/6MCeA/NTIteRivIup3rU0Q50G1IoL+2ucgqVtf\n1trMGWp7zVLXlFqRbp8LWtvfno3ntKBK8AIazkJ5LLiEpn8gkR1Fz56bgHBP\n5/wuSfGKGO7Bgz3k6v7yIrIvd6g2/rLA5AEMKtpO4QKfbsIkaQ7uDf6soDqJ\nitVlaVLHiDqXgcBTcJz4ADgqxHRUnpGq6aUze4X4PVpDfNnXBZ/HMiD5NP7F\nh4x1wseKhcKDUCPmX5cpCxVc6l6wNvDeAAm9q1ckSjWXogswGf6LG9Tdq3G4\nr7xM\r\n=6A9V\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"f8923387b25f9140ccfde52fa35b5fc345c4437f","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.11.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.16.1","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.4.4","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.0","@babel/node":"^7.13.13","lint-staged":"^10.5.4","@babel/register":"^7.13.16","semantic-release":"^17.4.2","@babel/preset-env":"^7.14.1","@babel/eslint-parser":"^7.13.14","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.2","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.22.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_33.2.0_1620650752182_0.0529243279727627","host":"s3://npm-registry-packages"}},"33.3.0":{"name":"eslint-plugin-jsdoc","version":"33.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@33.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a287db838d2cac4b36b76d99213901be6a31e9f5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-33.3.0.tgz","fileCount":108,"integrity":"sha512-wt6I9X8JoOyUtnsafM7AWBEfLCD3BI1wR5/vTu0hti4CoZc37bB4ZX9A7DsWKbEC/xROAAcBV2VAT638w9VKyQ==","signatures":[{"sig":"MEUCIQDp34OrvjOEBrS79p88zqpbTM2Rqak9Bh3uWJvqnF5mCgIgJVnSYHNNtM4dufcDQE4r4TxcqT9wX0eQHY9RLIWhdBM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1228181,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmUhiCRA9TVsSAnZWagAAyN4QAKPgvTh1CutIvdvfHF+7\nTPefOwE0p4/pGbNMRXQe6xxQUgPXnIQlVGGhWYsRO256zBYVQEFmEW3Rerhf\npXHBfRzSMzMAo+4ImtbI8XCgjfFYIhuMXXlBnuXzGLWVjkdsTUmNnOlxtG7U\nhABDvWMSZsPt+4dtPiDdnwMYWGOSg6e8hJtqoenSt2Woi27yq16zoRjALVk0\nJcPf6dpjenqRdDtBgAHVpMtLtIAqKHMjkROaHYGzEH2/IjXg9OjBx05Y+p0v\nDRCQPH9CgyLn51V16yKkcMIC/U3uOlS0ipkw6xNZWDbCXIb+z10xDe5fDW4Q\nt4sFpPJwtWcT4GBaruxnvT6J75Tcmb8VF1PBfJR4terPpQSckHgaUd+M4LSD\nqbsZ7xmLk3wEgBvkcagu2kqguTkRel+X0JS1RNB6FQyOcVk03ILPUtBT9SsH\nohXjAbecS//EMIcNE+1IaH2pK12M5eSUYxk13Qs99ZLw7EmKnhGpHkIGLxlP\nPyMRzJYQAQxOnpKj9nrHTQGDO4GrkHhQGDMeH8jdNeLMzISQGjdeZG9VS9/f\nFiIOnWATlUwH1egtnXUzKs48o2i4QTM63exkltO/nBFGrrH48rqt7EvUSswV\nKIOHvGal4szSIRp+QWV95PFv2iJr6pdVR20yuaS2MjpypRwjFGQCha8AIWBZ\nQOf/\r\n=OQeC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=10"},"gitHead":"4421e4eac3328c7d1b0c9d8684c1d655c3560aa7","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.11.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"14.16.1","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.4.4","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.0","@babel/node":"^7.13.13","lint-staged":"^10.5.4","@babel/register":"^7.13.16","semantic-release":"^17.4.2","@babel/preset-env":"^7.14.1","@babel/eslint-parser":"^7.13.14","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.2","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.22.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_33.3.0_1620658274174_0.5726507318258522","host":"s3://npm-registry-packages"}},"34.0.0":{"name":"eslint-plugin-jsdoc","version":"34.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"aa62e7550fe6761a373e640974e2d685965168b7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.0.0.tgz","fileCount":108,"integrity":"sha512-xosfhLEQgy8fFzwI/qcDn/YdCkOMPcYUrZsAICz3JBoTp+kjmbTmSJjqz7xPvErLcBETEy94Mrjn64iHzdAqkw==","signatures":[{"sig":"MEUCIQC6KwtuwnH+cseIRZzc8oBPB7Qq0+bEcy2wjlN9eaUV3AIgFUK/idfcHOUmfq6ibKAJ0/QsJUkc5sEk92eE7yAJrSg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1227875,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmc6PCRA9TVsSAnZWagAA7lcP/RV+wRIjGwpatwagcuQ7\nW6oT37pQfLBxLm9XQUpWxQ58SR0KKk+bdRaWFlGmDhJLUt6Hj/nTELilQ59q\nGQvOqBYP/iKVWf3WrGl7pf/MWfNDCZcSKKdt5DvmMKnvR56CdVdzBGGPxl7h\nGvyAyteJcJzt/ExJ8kWeA886uOKxI5v59gFO8s7pB2/r/GS2xgmeJOpw+qGQ\nmRVqpbNVO5EBv0c1TSrdAnJsFYogHU9MnHy3sIAxwoij7f8JlM54l6rG/OhJ\nHvyXPVfwLvanjHKeN3mLonlbu6KFSvdKxnt8kcz295w84bsxK/Xu8+6uKc1x\nHB5OunJ8VDA+INS4uqe40KNRRR9dxL3Q1wFdohzZW3NoQxF7eTZG7Vtk5jGc\nD00IV+I9jG9AZIH/GT6v10r6Jm6Acwhhvr3D5VJYn0uxQbJe7zX10ROgDFNG\n0ADKMhhrwo5w+35M03pCBPBtNlr5ZD/3iYjdX5lgjB3Ax2NGOplryU9qMsg9\nisFJ5Nxl94Fci64pTQkVe4i0Or+Wq1Vo6HyEL9WmkoJ0hWZnbXgMLU6PQ+zn\nLyw2AcZtRus3Plpq0BcGKm0BTRqtD/5atyBc/wtWC2ddqqX+MpiLkffKs5Af\nGcmAjBuxtA1iphth2fXfvJi5ctuGmpdoUceULMNmeSjR/+dlxdAGQ1AcP9W4\n7MuI\r\n=PryY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=12"},"gitHead":"a0ee0a66dcffd49dc4e1d2b6315795151ee19aa1","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.1.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.4.4","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.0","@babel/node":"^7.13.13","lint-staged":"^11.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.2","@babel/preset-env":"^7.14.1","@babel/eslint-parser":"^7.13.14","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.2","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.22.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.0.0_1620692622049_0.389952912427586","host":"s3://npm-registry-packages"}},"34.0.1":{"name":"eslint-plugin-jsdoc","version":"34.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d1ec714e8ea6ab13416f22ce9423bc9e6dca3640","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.0.1.tgz","fileCount":112,"integrity":"sha512-fXFyhM571aW1Eg5Z9INobK1VeMIcfflY4cnqDYFf5KRUwcR5R+TQIC6pU2C+4xA84s7lML3zi7UIbPOWBjU1YQ==","signatures":[{"sig":"MEQCIGrsZuUyEXwICEIv8qyyX8uT4A7zTKAiui44M1dndmj2AiAJOWkkvsdRtSgT15RQ72s1ElwRle6Exb1v6AyaWUoe7Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1263779,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmnewCRA9TVsSAnZWagAAuAQP/2qUrQDulk2aiHbErIDt\nfQUmfFU0ht4RXoG9869gTDVfB5H7EyHPXZYEQBXemRZkKpwz0LTPn3hvRgsZ\nr/XUGUyuW7smD+BgYq51hWc+n7zlAK/asxXDriaCmhaLsn0nGP7p7sBHtyzl\n05sMzLeoLaLSB+PQWjSPv3d1vsAPcpkU6vRgS5xtaCHuqyrMNRWD3sx29Tno\n3h0WAXLaPVOlrkYUYOpG7ZndbzqFASD5urg66or/swpPNFgLwLUA2F/+KGO8\nrAS8U3D7lnLfVikX71bAOIrP6+8sZ0Qz7DscpDmPKJvu8zZmtOQMP7kDenWk\nni/RCh5XW7+/SemIveVMWx6EQgC/gxcv69O3acVw7nhRuk9sxS9mlSBKCOMH\n4hl74DK8ja2lxtDBnYQnO8ZlnQ1RqTCg3ruMgIt5ZWxMpfVrjvtshKL/gnpF\nQHzEJFhSztw4MPGo/9cmVnleVb92pExY0ibmUdC/GJOPdRBqi4tHsrOvwp91\nd4X1ssjz9C5UcyaDchz68+mohbpYWdB8sux34rx02HD0Qx8pCWLBgW6AOR6r\nw7ntfsatXQAJR3MkDKXgvgKoOqFfSVQN6ScaIkkNSQ0cZ0BoYpMWgTAajrLW\nErnMH00m73GkxEkL72PfgYCw5uU6MwF1nTgrCFteTz9BfliOTpNFCKolwhLp\npwQn\r\n=VBYA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=12"},"gitHead":"8fa7f9bba4b2704f776eabc0463b6719bb0dfcdf","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.1.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.4.4","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.0","@babel/node":"^7.13.13","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.2","@babel/preset-env":"^7.14.1","@babel/eslint-parser":"^7.13.14","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.2","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.22.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.0.1_1620735919660_0.24138546536455174","host":"s3://npm-registry-packages"}},"34.0.2":{"name":"eslint-plugin-jsdoc","version":"34.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9e7ec1a9dedd4ea4b04b7a0fa785f3f3cad9d4e1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.0.2.tgz","fileCount":112,"integrity":"sha512-QquvZgL/p8eIoMjOQ/G3xuEEfq+GJZn71D+1N8cM4VxZBJcjTN0J3MM+lQDN7zaiuYtLKwt1jeJbEt2C2HhXkg==","signatures":[{"sig":"MEUCIEL/vuNXGUZTynoLhx7i0IVRhfIeSngQ7OeWwoww6bqmAiEAoVoGngRUipaOKS1x91FJ72jOIMmtuKo8ibJgZ2ke8z4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1265363,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmyyHCRA9TVsSAnZWagAAwMQQAKR0NBqyFKQwkp0Zwyj6\n7B89XVqgsWA3MCfJT/Eg7sKHaf8eaXS4TbmdumiQ+aC/RCN7MOTSMUjeSbId\nQDZ5MXW6lEnlwfa/uHYVEwI1yMut6wBKbyiJQEOOp9toy1s9ssxZ/1MpwTwC\nVb2qEPMiTfXp10YQRNheksIL4N/QZ4WkUNT0Rli1vlNibaozmhaW7jEeOurD\nUYsIcqY4CHhRCuiKhRlx5zzeULe7PukOaojUtGuz2P+O8++64w7GQXOdaSpi\noqqsNHFdjTXbyVlqSZPz/xx21lOH2XRwrImHOTgT2T0jTDF9P0QIbN9uOppa\nCmOsx5np4LsWph/rSqGDcDMEBIlWx1COrNm0AF35R2quVzKuQ6XNB39pEmyr\nOhfMc7dG0e4XFv4W7xSBWuxfyvN5uv3FOPwoWaso1vpaDAz6wEu/hUxXFPYJ\nJ79fwM8CbCJQ+pirqLvBgY/WLYh460rIb49wiDOazL2HAijAIyxMZz5VRBEF\n6mogA3gT1pGpcvtjRpamC6rIGyZ8sHXGgjHRgOkMmnxpt3e0GOz5J4KDFrtp\nGTsFjxc30Kok2LCOuBcJ9tPfPlNRuFWVIUeyqM/zKDZh4oo+kh/uRoDG8Vmq\nUPLKXgxIG4OwPJTmJ29E6AaWlzqFWTaBsoamfoyDBTyxdM6jLsdkfvSWSELZ\nqApT\r\n=jx2a\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","husky":{"hooks":{"pre-push":"npm test && npm run build && npm run check-readme","post-merge":"run-if-changed","pre-commit":"lint-staged","post-commit":"run-if-changed","post-rewrite":"run-if-changed","post-checkout":"run-if-changed"}},"engines":{"node":">=12"},"gitHead":"28397c7ed54b34a320a9d3961131da2dbf87c534","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.1.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.4.4","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.0","@babel/node":"^7.13.13","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.2","@babel/preset-env":"^7.14.1","@babel/eslint-parser":"^7.13.14","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.2","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.22.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.0.2_1620782214768_0.5833479088754345","host":"s3://npm-registry-packages"}},"34.1.0":{"name":"eslint-plugin-jsdoc","version":"34.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b153670a679fb5ce39286f770446f0a2e02ecbf6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.1.0.tgz","fileCount":112,"integrity":"sha512-7uk6vD92LCGBLwl7imvf7YzZrMbLmHZVSULBJClZpYTNdTpPXOtuPNKDi8nLcXYtZf3UopNs5qR7coapBSaUtw==","signatures":[{"sig":"MEYCIQCjLndP738BrND0/A8KDBAJrAZ5aKftEFuGgwkfa9ed2gIhAMg8wqDBZ2ENBK5DtIMzhDP1cEt8kUF6z7Kc21v8wqZb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1267169,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnaTJCRA9TVsSAnZWagAAZZ4P/2FxFWbdu/fnVtATEp+n\napS8pKAbxZxfR5HaH3LmY3th+7hiDtqL89CpHGyFI0Usm3JM+1ynUoVglE74\n06TGw2RXrx3UAUHeuQs3WWGitp/Sqs/31g+hXz8KaclWjlxY1iVab/0rWejg\ndDk8gDpG1NTBuOYaCranGVA941x3rrdOnLJDHli4Q4DzEnk/17pqJI9Q7vn/\n9UlSiYy3bT/CSQDcmpGoGktu93XDp4qsD89oD5D1MphAwfh6b5t1EISbPEHR\nKUtU/EQ5rXuC8Xm6gf+QTLOPAv396LdGNBn11WUcpsK8/6vofV2Btpvuy6V/\nbCKep/B1m5d/AP7rZGgsEvPcWYeTFrMLG179fRRUw31eBmE733U+3lWC0oH+\nCS5dX1PkH+erPpk4+O0tkp+S08fzUBJto3vUwFjUcPrUCT3V8LJfNJej18lN\niLG4nPjYUfcaiIFYzC6iqKgYPnepW8YRefq8vYrii0YM4S1lxb/0i+hCpT7D\nw1coCUQfsR5574/7aA7lbxLc/Nay4KkdSb2xSuYgc71KtwMI/V1MkzrD7jA4\n67OjS66wiyLy7HduJWDZzg3zzZ43wTY0TyVpl4S2G9SJKEt89j/lUVWAZ3SS\noDVfwClL5yhdr6UfYE47kUwuXE6tUIS/0b/5fJHejHZC92bC36kSmRHdbrlD\nBhYC\r\n=4XIN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"54dac3493d76461065c461e039433e51e2816d21","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.1.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.4.4","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.2","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.2","@babel/eslint-parser":"^7.14.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.23.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.1.0_1620944072752_0.9423579028390698","host":"s3://npm-registry-packages"}},"34.2.0":{"name":"eslint-plugin-jsdoc","version":"34.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"673e05e198d3f18ff69864eaa9aea5530259a531","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.2.0.tgz","fileCount":112,"integrity":"sha512-RiFVyJ+2kjoEXR6xslcgEq6uxojIjdwG7KHyJzEGRXh90f98gD/JwWoHfxH1Bw4YOAVJcEI3DgLEtbb7Cb4DWg==","signatures":[{"sig":"MEQCIF7sXEJ1pR8DjmxhlBY+Xo/6ffDO5d8F9Z+r7dgLK26gAiBnl209UMj/oBihXb0fHeLTf8mJn9Br07TNpNyHTBCvOw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1268295,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgndSiCRA9TVsSAnZWagAAcqAP/1UZxJ3SPdEoHyZp7haH\ntuugMSpxIGJ2UlZGEIAy+qZqUsfT6ZbMTYd7Pv9sZXoDZyhgsch5QWJH+jJZ\n4+qEcoNZ92loHM0wPuOIWNxkpGOxhuSPV2FsYm24k2P9QvzYHS1rJFuzHGoN\nqnOPB31GyUb3chUPD6gwJB8pL3JMzjvrr6MW6uqzKindCfrAWYNx7+Fkdt3R\nwzcqgyhqdaTfHGeeSJsk+ONQrzQKhKzYmFkvBilVmCE1TpBvSazK3db9k3AF\nkH9pSY+osmnGb9F6Zx1vcygy0HyisnVJPuLx04jdQSRISo0IzVzDPwHRd8W5\nXgf/rrA3ln06efuKROdKhK/BTgVPCcBd8shps115/rxqGPxo0Yvhxr+yrjso\nnZc1Rgq3pVR904R9czqzTI9+IX0d1lhLgfWYjBMVcQH09ij6Ot9Np01kvF0C\nltIQqOZkFCHwz65cmZNgTbfYn6SJl+eL/DLS9sVfzZsVEI2/8aHSRJk4MQ9G\nypPedgvDfmL82QwdKUzS2F72SxIzqXjUBdNFqjbTYb5RE/4aa0jugi2wtx8o\n0VFqsCHcCJKACfveASgZL37NN+MK35JfXBIXuHeowXOUfd0xvFnSWLVwkx7L\nAPkFwojJD6SJdrCWHOFhfN6eG9n1vLmaFM/2GzxZwdfo/WgwneiN5Umf7C1O\n+mWg\r\n=fcXu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"9669fc331bcd9cb7324301de58661b9a372bc7ee","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.1.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.4.4","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.2","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.2","@babel/eslint-parser":"^7.14.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.23.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.2.0_1620956321554_0.518978336128664","host":"s3://npm-registry-packages"}},"34.2.1":{"name":"eslint-plugin-jsdoc","version":"34.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c344b70749775185872666a1907fae0fb27c7446","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.2.1.tgz","fileCount":112,"integrity":"sha512-UXoA9g+CpECJzwDomJ5Dv9FSGblz7k9Bcn7M9/p6BWNTA9mShSAzCRvRmpVfY9z6SrdEc6ibiWUiJjvFgxIqTA==","signatures":[{"sig":"MEYCIQD5KwBeWcf29Bg7+t272c8OwYyv4lYL98xsuaZSRixN8QIhAOfGUDU4PGjILT3kk3JuGyfwAaP1Q3TbJtI9OBJwogtq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1268558,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnfxVCRA9TVsSAnZWagAAWs8P/j/IkOgQ0J8Sn7SRnwXM\nkWknjBS3rr8HAkC0Fm5eB7aDY0sAJeBJf4/9KbrdQ0UyTnNGLpQ05JzsraCz\npNch2GrQyRIrhMHHtxPr90riKnDIcOx4rrwGv57ydD+kpDmCNjvOay5Bvm4H\nfaMcpDLXKxVhUFG/Wt7XTujgQZ24zHonMIm3sJIscsZ7h5qMEDmDAcbs+hjM\nKtPvTv4siNR8zHMJAkvQ9ViBfmEh3K/tfXEnxvngtI5evQ2UTxn90WBU58/G\n3bkth2nik91LWYQk5xWWI7UYT9VytcZXODwhGrFkJrKd92VM+g05YimFZdFs\nEDmZlCc9GM3HmiByakhC7G3LCmC2VwOWrapy48/XvDaMeqbXyobqC2vdJpiv\nv7TBZ8nA2lL0GeoCTfLd6LvPbjYArAqeXp/vpqLjMn6pnBHY2kkGV/Q65I3J\nfcIXm2lNluP4sR3aw0EEts1fye5/MwmSaFD4UNs5kfGUaovZOB1illiFVCl7\nQ0l9wOFh1NYSNV3aX1RXgip9ZbJoNWUG/22CfdYlFtLkaNQkLK8NF6OOM2A/\nc6qgzVXX0UDuXbZT3pVcGouV9YlWvP3fKUpQO9AobwRtiAyKuRs/szBMjHzb\nO1VIPB5CEbEsIFnTSGJAJx4tl6bD4dUvrkyftrlr46J6+G2VA7tWeWljlUgl\nssO+\r\n=zeAO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"310ea7506cbb0a991447dad63a133518a0c0a8e8","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.1.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.4.4","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.2","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.2","@babel/eslint-parser":"^7.14.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.23.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.2.1_1620966484177_0.6317441514461526","host":"s3://npm-registry-packages"}},"34.2.2":{"name":"eslint-plugin-jsdoc","version":"34.2.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.2.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"32df7c4a800fe6540563a3f10644bbb1fbfc1047","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.2.2.tgz","fileCount":112,"integrity":"sha512-9JCeUUZ2MefGd/Pl3blx9/EDjCd7/Z2+fcVBuJdNdvSLApRqZ8CwjGjLHf5s4uVikqF968A0CfnID0WK9B/H/w==","signatures":[{"sig":"MEYCIQDhgc8mfmfdvrPMYTrnQFADuaTf8lDzJgdzgEKNZkDbYwIhAOB8+AO2MlDzExe9gPhsL41Ct9ttPTrF52jQOfPRFXSN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1271325,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgniO0CRA9TVsSAnZWagAAX4cP/3zMWrbVD6O6EgxUSNJB\nKGb4XM9Hs4BY8CFnn/sKOvnVKDJMLzUNz+JS9FZKs5HfIhMHNnCDaj/24zsI\nGlnObVAdiQ7myQeKTTxb3nLrqwUPK8g9RxwgKpxDMzGQCmqjzCvaBJycyvtU\nByhnMTgBFDGrKBM5bC+SsVq/4o98M1pUCaloQYiDSWkBkIM4lmG1cL76Wk7x\nWe/F/I+ss7yFMUvKk4Zs81qxP7QHHEXyqzpiFHWdJDtZ1n2V1PjgdqNlLvbs\nAHlPeT6BcVcqmUk/rrAZrN4azbxVJKfntpciPBuCw+FtM/7aRpXXbwgfEPv2\nv8gchAHMR/rzqpkyCqRNgyxC/B6W8iF8KCmb5uEZvRVlp1vree7/xJs5L1HO\nTHXnKyjGcKbLA+pdWSRIn/sDSpm7/3qel/khAJ5XtrIXf/uy1vqt0am5CqRa\nbGO+Cp3ajblZpw6fldZ32ITPJrRPsn9fWh07FrJmXqrCyhxijgrRAnH+xhtL\nEYwn0D+jSaHidY/BYcR47Vk0RYKweL17j7Bw1UD7gIXC1Il8NaZGrIV9nje3\neESPaBj+nJ/ntXHz8xNdNEZzMXxGlTahXdq/SbA+aAT2TOAPKt+5UZtD/heF\n5LmmeO++QW5y9VG1rpafl9/spUrip9kWWpXbOfB9MSURjTHMldS53dEzGAHz\nGBu9\r\n=luVe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"e6c9ab27f41347475263a946c4ad3a0319aa89af","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.1.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.4.4","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.2","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.2","@babel/eslint-parser":"^7.14.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.23.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.2.2_1620976563396_0.6674097631292037","host":"s3://npm-registry-packages"}},"34.3.0":{"name":"eslint-plugin-jsdoc","version":"34.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7994745d216ae8b9e6d6084655a24955aefadc05","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.3.0.tgz","fileCount":112,"integrity":"sha512-PKQpT76jK/eAX92Jj0Z+W7Ug4cgrxNgnEAHY5aSJJn5EkYdLy85zREzSMmmp5LoEnjPMYPp6H5c0WFFhWrZdPQ==","signatures":[{"sig":"MEYCIQCRC17iRs1Gc9SUVgzzm0RYZ0ord2k/2VRehPea+Uic9AIhAOX4XKjLtHt9Rb6XXLb6UswQd9daISqYLhnAhS4x3dU7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1275033,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgn+27CRA9TVsSAnZWagAAJlUP/03ymC3KU22oB3eS+Sy3\nJ8pGq0WWy7ayGvkeJhD3Z0qG+eISv8EB2DDPtbL2aNu5Vljp0wstPpKNkf+t\nsS+POArIvcEvqOhpgrfuqkmyGDg5kVwecVz/2GmmNvHKMwTqgypTBCvefL8/\nP/1DztHsUZdSbl4JT8euUaeKRHLZfpE3hsRH16eg0/fV5uASGgagKuhb9Ca+\nK7Pd1/u+fhpL4zL0BJmtqjalpcml0pgxrwEnIilniTtdX7qcCiyixVFnIjl9\nR6vEDGe7kSDpZZKgxQuGWmHvQuLIZG46wDtSS4Zssex62bJ10UF1k3nxolfA\n87Ml8z+F7lFgXjM+LUKkw04vW0lTxoXwxE5CvE//nOAYdXCO5vS/939Td61X\ngNa/PmiQ40jnx6MQb7g0GUC2eFIrgpm28yC6cjswcbbFtVMF9fUA0BsHy5uw\npYgo+gDnrrNFhjPbx2w9CpKXtIj16xYpEY1pXKDT203HV5M0h5Vn9icooxbF\nZMrhBbQTMEiVhPGmYLj4itnGLhvoqKCq4/SGUcyU2WyrK0nge6Y/bFmUJ5kg\nymItG3pieOvJowRWEgyYXNWfDGlSk78nEeKjWVTuowPa5pdlkVgH55YV3iQO\nXdCZWtKUJ5BBVtLPBXz53yc2g1sm+FGHCFl/ZmlQCDV0WQousbD0unMQp988\nyly6\r\n=7kfa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"0e3970618a54e3d0b7ae4dedcaf43a162be4ae08","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.1.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.6.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.2","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.2","@babel/eslint-parser":"^7.14.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.23.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.3.0_1621093818788_0.04232481350243189","host":"s3://npm-registry-packages"}},"34.4.0":{"name":"eslint-plugin-jsdoc","version":"34.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2f0d6c92f20fd1312e4628f118f1f44a99cdc09c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.4.0.tgz","fileCount":114,"integrity":"sha512-eyvnicgSb/Kj/fcg+Uu01Ij8g5epJS1TlLMpz3mpSOetNiItKVWI5b4OqHqQYvE6VTwKT02p+uzb9IpynDxvSQ==","signatures":[{"sig":"MEQCICRVkInT7e0l4T2Pw97LvYaunzWdFQeYFozA5MPhgucXAiApLfaeY7RZrmFR+wWBlvgh3JXOHArCkY71oBTqFHwD+w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1291135,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgn/LyCRA9TVsSAnZWagAAhkkQAJSB6Khr2V3BgxuMdOoA\nSnn+CPuIdvTeB2BKSowwT2SbBwHpbdELUd/Gib5XJMNeDQmuov4R3GmxOI2I\ncWx8+lAR+y0x0n9ijMRN6+4DpdayCErigL9+1vytVOvoViaAtnXvjDlvNY1C\n+ZUZOyBVVyb2JsZhZCXUkJ/zcrUnlo8/W8wvlZFAXw79r7U81oD2QmcXsJHY\n2NHAgYPDyRhfG1Ks9Kn1idsRs1zUamc+0FxkHEoz1cC4agsCnunE8AH+DKuW\neL0ZSsJckGskTwbvNkKEL4asWWGEYF/EWFDDmYVevM+o4CfJOFWMTmhheCOL\nug4d6eRXkPC5c7f0UWuop/ZcuG5V9qb+wm3BPOSc9vib9Za/syGuBd5Mqc+0\nCSX1x1q4vJhD/f8Y7mNFV3i5UGUd5Rb25Z/VpoUT2cjEGld/gJsqD+kl5ev/\nRY0sZLX52XWCF2H2BLjteuiwMNUyEiFSL2yYLtXDXt3s5KDzLbap+vUDS9Yk\nbJCjjWl8mIq+U+JVOwLaMTI62yJBGVRPAUoJmvXdHz39Sqz2SRyB8Jl6Ag/Z\nlZ1O/aefKHLS22nkry+V0nKprQa8PWvEpTjfzRcbgU5LkisACcWGIEiOrcRc\n5iG9gnhAYIAAebGNmAb/jjFppt86oYUBcrmHcACfnSu7hWZQKIJUsEh6+kgi\nNlG4\r\n=ZzjJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"1b305f0d4322a70c1ffee69d5975b94db199fd8c","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.1.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.6.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.2","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.2","@babel/eslint-parser":"^7.14.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.23.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.4.0_1621095153856_0.5756272732511198","host":"s3://npm-registry-packages"}},"34.5.0":{"name":"eslint-plugin-jsdoc","version":"34.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"69b645f934b0e47f7b1d6767243416e91015023f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.5.0.tgz","fileCount":116,"integrity":"sha512-aH+zvpGKHWYpcNCo5xX+ecU9EmCsnnsAQP/lgx3b9fcjwck/luQpm5Og/681o3DH1Cl0DA6EbHya7o1Duk5H3g==","signatures":[{"sig":"MEYCIQCpLbjftF9D4aXgOZ8tD81eNFg39mzIOwkTrWy5khNUkwIhALAKEgzZtKG2T7geS2Q/Gy+yg0yCoNOkkbdpP5HNrKCf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1325387,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgn/1DCRA9TVsSAnZWagAAx5YP/jO722CZdkdEOStQnZs3\n+wBbwKIqRZRUoTqUt+OAtEGR6S4eJeJlqVoopaDACmvQybOpdFnFMYgxiFXh\nA6ug8Tj5MDdamybxb5VMsp+YW4PBIQnN78Yqw/4OCyzZteQd6BvSrjAROqhE\n1mN6EQMt1UtVEVhOVZ4vYHaMzXs24TKDLCnByGq3gt1n6zmSnPDqiF9touNO\nlbebS7gJl9gPKD7r/zIHflJry3hM1X9CqI4nH2pQzxoVCB95gJjCMmDog8AL\nEsGhSV1ySvHDX0HOwpi34SO8TkShj6W2rviYyaM+1XKjYUCKTqKVbxvrZrJu\nhtB+eoVCbQKipSJ09mfGSGGDMst6gpWqUrSwhxJtQ/L3lGq0X0I4IUK3mrmD\n81w+NY+ko+M/9cGRXOLv6stG4ghaGbxm7/+PItL0A2HVBNFSh2NEk28Mfw9E\nwT4F/E6tVTcsl8giTXWCGmHDNdMX0ChZJ5FU986iJpxcr1hqr7qWGj+yAbyi\npSVcK830vcT/8hxIKLrrddbDKZkosg5Y4WHL8qdEys1ubBXV2XkBn9/cF7vH\n+hzT2BbFJsxRLGlIqnjZ8aK/ZRkB4dgK2neYNbtdNcAfuZz4uvKfL9hBwRWP\n8thcQGVEfthco+17RpJMpl1KXi2X+Tb1DaSx/ngFLKSprX8bZFnasoE4CSwA\nFH7Z\r\n=8aPd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"06bbf37183fb33bf2e6610a01d841008f2b5bd2b","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.1.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.6.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.2","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.2","@babel/eslint-parser":"^7.14.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.23.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.5.0_1621097795059_0.012862040270654296","host":"s3://npm-registry-packages"}},"34.6.0":{"name":"eslint-plugin-jsdoc","version":"34.6.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.6.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f798796a711722957be7f8b798814993a71ceffa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.6.0.tgz","fileCount":118,"integrity":"sha512-6zAMBvSbZ34klKCEy3lDYKF0brb2s8oua+10mt+mA6bXwuaQoxBonwn8cxzQ+N8FcKm+rrkEDRFHM/7kCFqgBA==","signatures":[{"sig":"MEYCIQCr5YKO6pih87blbbLxMda/z26EidWc2mEH8E8fBlPW7wIhAJc1zYY75UE60hgwJMLHJLBYedkR2OIax63HNHunkkND","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1335359,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgoAUDCRA9TVsSAnZWagAAr4AP/2CFh8wC1JDuDZPXBlwg\n16AcCHIUaYgFaw8a8OK2LQQZgH5pTJTue7crLCbUIfLpv1OAmSTGSjcXvAMm\n6JCW4i1QJ2beizJqcOhL1q5zAc+uTwUIfSuocDMRXhtR+oA3kgTVfh/1f+lf\njUAdRca83rgO4oohQy8TUuHPALwSczQ2GhRr3ud9Q+5NWLBNnLZSF++6OxzR\nhev2z1Mnxtvm1sVP0RJMBf0drgOYh/fphLqBiIpyDuT2IDPGsAU71evEq3+D\nZ599EJYYxvj7YnxsdT+epG3hOcGYXQqtsOiKw1Xalsk0fE7doSnemtCVvBqi\nIvQYQf2KG9pDNkopwxgmT4R/WFUtdzxILldZinlupfPyAxKRr/RZerNkYhyG\n6nBEHRtFKehkr/yhnoAXNotnxqwQLS8Gg/hd4ihHNjuWkRfR04iQJWZ7wBwu\nhZT5wWd8WFGl26IpWGzJqFLyT+EQ4qnTYgNq6rFIddihAUZ61q65v+u1T2u7\nGGPvuN5za2aK3lo8nPDgibA/tUZDtVZITaNjiw+5MQY+Z1BVZ90rA4NWLraj\nppLSX2ZXW4fp715G3rsIxKaH33mMcUto+SM2dVdAuKYFvUCzQSnRtM974n0L\n14GuTCX5U4HgUSlI8kaNOcd+kFcLfr1s2hEqBwzS1pVCsZyeswE3WhxJe4/p\nbZVh\r\n=OjCM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"8848246d2475184f98c3e0ccde85955cef75ee94","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.1.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.6.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.2","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.2","@babel/eslint-parser":"^7.14.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.23.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.6.0_1621099778989_0.38438423539524114","host":"s3://npm-registry-packages"}},"34.6.1":{"name":"eslint-plugin-jsdoc","version":"34.6.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.6.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"328a72bb450083dc6c0a46e802f72580bcc737c0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.6.1.tgz","fileCount":118,"integrity":"sha512-9FPCKDRBNv4akNIc+XNWR+zaiPBEumhH2Wce9TTQA7X3UBNiPbDTAiqfM9jHslMQBTsdI64S0AaKa0XY1AIUVg==","signatures":[{"sig":"MEUCIQDfuhvtpxxVz2qyTGw5QUu4GzwqzOeI/e8BZ1RNpr9ubgIgMqt9qtA/oVlnqaiyJzYI9QZQaTTCccnnK2n/DjSubN0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1336372,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgoFNJCRA9TVsSAnZWagAAv1wP/2qg1I1USOibG9CeEU4W\naXnBDK1QhUhM3kNRJ5vGJn3vtJIOq32eq5NKOs3ZiIM2+1/NAsBQT+Ea7NJ0\nxufAUrglgIb21K5gnz5BjDrKi+yEBfkoyxVjTYP0We9u2WyGcDPiRMfCNv0S\nitBOSnNAtIAXsjJ2H652ux4DA/6CtYGedlyzAbbBAaeCYXU22M1cWXmrfPio\n09pomt0ZBjzmJZRU7vjrEyChV6QPHEy9E8OLBz6Ws3LYeFcH2vMrKi/nFWhS\nBHDYhP8Bv7575c73DTyBXsA0WoRL3C9fufCyfbH0w4yKQU4Cj2dOXWYtXU/6\nlSKLWwl1TlrI9ii2AvV1ddZkmWjs4+CQ1DuL9N4fU5RRcyuanjwj9oDPB0sc\n0JNB2baR47todRkwaKZJtJMXmBOtcXqVeSVwX/ib4emrxsB1S6119Kyj2wvE\nrKu47wY0GRyl/Ye7q3pUsCk9Zmgi8N+Kh0awhm2MPMOOuGaEBMiXHYrhMvvu\n719C3YFq+5gPSkX0EB4z4TeNmaYkO9yEyL+Y1Q0DiqG/4Ng6fHSBjI5ZiLna\nb84UHYEZAOTulxnz/4tPZ+0dvhwKUxTiVaD6R4OVmgJ8y5oP6IAY+gDZBBTD\nwzhJm+HFLQngRUMV8XIdEySJtjUCFHqEVcc2egkZvyIDctNlYPOk24DI2CmL\n25FL\r\n=ZBBR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"355da58e86fc1127ca86a556bdd74966f694b802","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.1.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.6.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.2","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.2","@babel/eslint-parser":"^7.14.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.23.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.6.1_1621119816878_0.3173010927869808","host":"s3://npm-registry-packages"}},"34.6.2":{"name":"eslint-plugin-jsdoc","version":"34.6.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.6.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7523d0e835fd6b70d0c7d5937ce90277e73f5a91","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.6.2.tgz","fileCount":118,"integrity":"sha512-BYERhNypu4RzVTXhVcxBQ07FyqEhxaGm0BVVhFAFx1yDTnXeQ3Ij/Zm05s4ZCt6ijY30IRN08Yj4nZLL8RQkOg==","signatures":[{"sig":"MEUCIFmsmTfo/QL8t9qjJ0inMmhdQM2/MFzRgOQmZYcnEQcfAiEAtFRvwF0yc8G1JCE/wNZRtnRsylz8hmumFigOG2FRD78=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1337147,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgoUOfCRA9TVsSAnZWagAAfhEQAIqKhUtQ734gqCU+s+VY\n5B/iKOuims8ScWKHAF9Bc0toHtgRjNFGuFE9W1pyONNbPZCirz3hbRITGVhy\n6g0meoH/ulRMV1C4m3/XGSe9tTOE8jE2M8GEEsvCJqYIfkAvsHbYyWvsPnRx\nCHFt5W/2/18NidMvohxH8f+/Jsr3pRNjBVYX+qAQf4IAy+ApTdYhLp09XYwL\nYItwjRQOhRSmsqyremxVbUXMUBvMdOyocNlO2kgnmuzu5p7+0nN0vhy7ShnA\n9qdbLGG6CrhB3N1Q3RQCIKhpN7ZZ2H07bqMNmyvgxuphvSNILtzaKtWnua57\nMANN/bkKdCcOc8Sp/KP3M/4I1fRms5rx1ubuN0a/Sc3L7TD4ndCu0mmUnbsu\ntc905oHzwKQeLOfEoLUBcQCkTu/XyOY8E0oAU02Ol0mwNTFORiV2j7uKHoGb\nT1FmtSkpgsivBegU2d4LSDEpIgj4Rn2NP8YS+zn+vrcWHlWbj7fqRWURD7i5\nrMIMNGEF5y7j+BWU5eDh76y5oPWs7f4TuqB3j/1V5XI0mW7yVlL3rFK7FIU+\ndoa3AoVtWEVWUsS9pmUf+qjWjhMClGpnyptwwDS7dLtIxex0sq5Ms0q/xa+S\nxINwa4unbSE10nLlWaFJeFLlSWrDq+qh20ytQrcNm+2Wa85NO64hoxIDKDvp\nR68C\r\n=cWlD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"19f60acf7be67f9abb12307157ab122ccf2c29ac","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.1.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.6.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.2","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.2","@babel/eslint-parser":"^7.14.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.23.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.6.2_1621181342661_0.29787043788420475","host":"s3://npm-registry-packages"}},"34.6.3":{"name":"eslint-plugin-jsdoc","version":"34.6.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.6.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5a4770ae33fa429785936d6a3b61576d088b8c39","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.6.3.tgz","fileCount":118,"integrity":"sha512-ixty4/Zl7cZ0fcvqQAWKuTzQ5hnWIirZOuJrzLtWV0RwF4E70/WG5vLXyppxDFbLCiwmYXjSkiqBfcKfm4VA3Q==","signatures":[{"sig":"MEUCIQDlJCBaNNXNSvqj2RaIFpigr5sxRJfLQ2YrMuf0gNd6PQIgCKyJTRf0JRc6wp6DT0EeOr8vmdvW6byugZ/YY7qILrk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1337544,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgoV5RCRA9TVsSAnZWagAANvgP/A2jbrghCyZkLsgjGJzo\nseNbWPGV9YTUFLNM/9d6pRNgJA2XNneYTuVqkiL/+SPWStwtxtYyIM5Ajky4\nxPTes6eur9ewH473Q8TjRlhhq3YLZzrrrn161IIABVvtiW282pi1AObJQhV/\nSXpLbZr080w8y0u+nzn7jY32AZsheQIWHHRiMsyJZT/6u5PBGUvhLLdvJzZ2\n3TeH+Opa/2OsbfMUKRfAOCZnW7GdVUyWrq3Q5+31TALdwp3en88h/3Sxfd1K\n4IiIIPPi6oz+442M2Uwwy9zZL6LdIqN+T/eYlortHSQpSDmxDZxSC59xqAW8\nF6yFQu8Lk7eC5P71YG3XWFab7pza67d7FqZ5zcH/ifkP7Msug03zVWybdkFD\nY4MdwwZ2pjcXDBn3/ua0dhvLBEeTk7LtJoWXRX7uCZWa8oCOtnvbqpjJ6xzu\nRt1c3Vyn3vFIBauQCXeF66KGALldnFooeb4zluZ1g2SvIYmmmkbj3/LeelMm\nVcu7GSHEQtlh3GV85MZcv7yB5nETuxIQiWceSCjTkFQtaTormKaQG5bxaenl\nWrd2bOGBIsJXpipV03mDuyyTl7VJbkj6av8D94/UI7m3IjieFDTAKelfr35g\nC32zEy8OSndtlqTMlIZslkbdrAqyGU0dfH00c1y19VTRaltG+8F+aT8i6dWU\n3XuK\r\n=DBbA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"9af6e3615f318f92d2e108fe5d7a03b837d89ed7","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.1.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.6.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.2","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.2","@babel/eslint-parser":"^7.14.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.23.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.6.3_1621188176321_0.7205051379391663","host":"s3://npm-registry-packages"}},"34.7.0":{"name":"eslint-plugin-jsdoc","version":"34.7.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.7.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f970318d5004104f035d322794113a1a9a22e3d5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.7.0.tgz","fileCount":118,"integrity":"sha512-H2zrJorJfocd//PNNYsrPxWNAQjHONzIHGZ9CFYISyfZCOTXYUzH8CyA95LHYpZqGf5UEueHiwl+0bzWreqAjQ==","signatures":[{"sig":"MEUCIQDjMRTAdkEmnT4IUYhmxOm+t8p4zAPGqQ/deLRF3KmJqgIgPipOWyK3xMPnIGJWg6l28oPZA5sFq/fnnT/TBMsweQk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1348328,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgoptfCRA9TVsSAnZWagAAWFcP/3cJN6QVNdb5YHXCHuYO\nceoU+bTmbi5DK5rD/10xYq8BINXHt3i3hE8bAPHY5Ns4c8aF+g7fNwQ/gMsm\nmI3Zy/pUrAkS+IEM2ba2XjPr6Pj/TigFpDE4WvVgaM8UWB3lPoCfr4xPcWjK\ns3TwKbzvczFGujDgYdu0CDtUXwj43e5T6ZZh1mwqwNiqpyLbOEv4SHB9lFGk\nIhxXBrV6jwaRGLlcnppqdvpXpDmH5DGHgqFsXqBYkeCxqOZoN5JycpbbqS1F\n0y/VQ7kEG3HgxoKK2Ki/mbdu4eXt4OuaGDCs4P2gJkSG9AjFX8KLM2WdbooM\nKHoBkOJk7dH32XD+pD58dvqm1BVVN+6cqLtEGFuh7pod16dXAe2/qkFem1T4\ndHiQInQbfd6Duf8wbTlafNhzDGEboQTYqdNzvweNUyJyDbf8/JicrvOltF0V\np/ILA6QUhA0PMPAC0AHJUJ6sI4rYhWR04eAw9AS7BlXJEKrwZQakuRDAr9Jj\nl24YlguTZmDwo7fN/PvZksnh5FJuvtaC4l281A0MBW8YKhGUkdzLJgYceHjr\nHFl1vy0wMMQAp2P0gzgXUhdmTP7foUztfxZ2T0EL+5rgyf45c7R4GbcVDP+5\nuEMv6AaKqNEAGbFphNEyB3coll66rTlVLnRbZqcEOyN+YFkJZEUQhKB9Xvff\nmE2+\r\n=3ffH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"03d3f40551bfb7cc13f00677e38baff83d13c9f4","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.1.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.6.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.2","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.2","@babel/eslint-parser":"^7.14.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.23.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.7.0_1621269343169_0.007574944393871519","host":"s3://npm-registry-packages"}},"34.8.0":{"name":"eslint-plugin-jsdoc","version":"34.8.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.8.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a343d240724b78a86bf1e8da8b5de8b68a87b4c0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.8.0.tgz","fileCount":118,"integrity":"sha512-hM4pFLqb+lnGvOxZyo2sQSt7S+gs9qD6Ah0x3qmxH+NyhdemTj/OR/L3sjnkNn2AgFVgl9YR7BjJpaDgDaX3iQ==","signatures":[{"sig":"MEQCIATMnOShRJMuKiRGGbQdyA/yTAgqspKDS9XcXu2wY9T9AiASG0vvvToGkm1GOfV0UWM1TLIaUU/E7IbndN+g79+tJg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1355816,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgpHzCCRA9TVsSAnZWagAAcYcP/RoAXHcJ0KRN9xU4gDPa\ngPebZk6o0jWLIpYMB2xGapUGhJqIX5RuLXGEMn/NhA9/CKYLg8H+MczBjQZ1\nkBRU9aliOSX7X0/lOkBN+fQgExzDopjYQ1RALXRQyQj9o5VzVF+lsIbpuCTZ\nUKanNLKKgxCqQ1iIazO4FomgeEtD2B3u/xC2p7o7KRheuyVd8aBLC5gqdBgm\n4wcL9lSO6g8TFsAdq1cq/zgZYkNwWd0vFv0XaWPSmcAJdhZ6YxLgd3+EVyGK\nukf6OPmd7cAv7ihN+EUG7c3KH6K8Jd8ej39lcO89MEZmgduoKxRB0OJsXKFu\neMHAXsyEpDFVUwOZeMmYgy22pPKxA0WAFyLme8hAhVvZx4lG/PSYm9LRadib\nKD7LWuPbEA9dtwS05Lye8fUEgcEM3rEZWbjD479KnYfKIPyDx7zfoSvwXCHh\nPxAmNpoFBTya6KB337XT8/OQklMZ28A3DTtw4bMInKXrDKK2kIHnttKclYhB\nJk8LK5+nwUsmWB+RNz1dmtsnj2U0HcKU8YwBfK1GPFdIZQAy1jXzR1XuX4d8\nqWjMvAc2F1cuy9M6ctEjHRTZfCnvIzTanguNjldVJMOLNjPr5k8QejFwuKEW\n0X9XuV2o6RcfXNY5Oa5ZXScsAbmCiQ4wUL21aVdfnJ3XpHrpr+pgsVPZnLTi\nuCpn\r\n=vHRa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"6e5e76d05253d4ce2b097fd9c4d8fb27840c585e","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.1.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.6.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.13.16","typescript":"^4.2.4","@babel/core":"^7.14.2","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.2","@babel/eslint-parser":"^7.14.2","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.23.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.8.0_1621392577338_0.29585973961205636","host":"s3://npm-registry-packages"}},"34.8.1":{"name":"eslint-plugin-jsdoc","version":"34.8.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.8.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d617663136d65cccbbd398be4bb87dc22f584d25","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.8.1.tgz","fileCount":118,"integrity":"sha512-OLLq1UfzHr4Z+Y07R/t8x4eF5FS5yxWeUwaLaRv6DgX7pJEEl/3PzwDZfnYWFy2HQSanGmZnBhUQoHe6kPxN4g==","signatures":[{"sig":"MEQCIDvK6RXoW1HmlnTrJ422N0xq03f36O0TmuhLYkcw2zTHAiBNYFqtTkTzOHfjYI/eJ6CUpWgu/NSUDbG29cuPMTkusA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1358111,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgpJC8CRA9TVsSAnZWagAAB8YP/jU9JKgrmHNDb4mpEQme\nLIV1WEj+tANp1C2+CuzvgAzUiKiqRlBKOlXup8/R/tWhc95n1zB21s6jutZH\nklBevNfqn6k1EprUZnan9QGjLTMm4PLnEPAWL6u3DGOK/yjji5YthPcvGKbe\n2kU7p7AxgVeGXw++l3WEfIofcwbUm/+VFPkxzi83uut/DLoxpPlZmCInNne2\nKgkQjcYI0JEWzot4y0lKC2ypgJ/McJhiHOMOWW845ezh3rCCLm6b3f2aEZa2\nwKrbhDqERQPxUwuCFmfPXm2WP4MULugplp1l5/daBXe0ACsOUXx+DmH6jd/u\nheCyBGVgHMmmow6P74cyZUutiQSnFh6egD+zzZrQlcrIi2mqpfkHNXQKWfFD\nHQmpCSkc1leRBqNIWkrPOTVU2Cd1wk/LIhVGtzpia1gx1muZFgE9z0tBht/2\nVn75odlZ87yB3PvuCNCgIHN4ugc1RSQqa2e27QJyGp8YM/1iUXONm2nHuFOY\nUCod8JRmirdint6UYiKIfOGVdEOGuLgpV3QsLoTrYRbkpq8GKF9SZhbY3+NY\nO+8t1tkAH04rsa2HGYRjWRVhfdRLEZR0AV0v2tt/V2IlyjdXTx2iiMxuAHKQ\nzC4QgLNivpKWbcf8TeGi/Io+dbeAyWpegG8Ly0FjO1d52GET1irM1ghKNSfF\nD0n8\r\n=Hd7o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"d39292f06322100c542a5dcf9286797260a7d6aa","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.1.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.6.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.3","typescript":"^4.2.4","@babel/core":"^7.14.3","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.2","@babel/eslint-parser":"^7.14.3","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.24.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.8.1_1621397690681_0.6820532931142129","host":"s3://npm-registry-packages"}},"34.8.2":{"name":"eslint-plugin-jsdoc","version":"34.8.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@34.8.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"94708429667e165f722aa50b98e863920f9ba14e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-34.8.2.tgz","fileCount":118,"integrity":"sha512-UOU9A40Cl806JMtla2vF+RM6sNqfLPbhLv9FZqhcC7+LmChD3DVaWqM7ADxpF0kMyZNWe1QKUnqGnXaA3NTn+w==","signatures":[{"sig":"MEYCIQDIIU6b0kI9JYo8YJMjN1DW2GIDsmRTLYt6g55ufo0ZGwIhALWPK9mEsKAzMb5DXqLFwT24QqA4XzjFTUtTAhF7I6nR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1358485,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgpTkXCRA9TVsSAnZWagAAy4EP/iT9WMJQnOgVHHcQ+Gli\n3LEsHfg8W6cDktxqYC2nm9yG4+6sqkjR+bDDvGg/T0U7kwQ4JeVZeuOrcfU0\nod04Me3YNYq7/5/VOIzOCkDdBuVQ8CGM3yee1cCj3ra4gvIYNMctQi7cF5lW\nM97OeIkfu1gMh2WLyUFsi5WU3zArSghgG9+dN92lsZ6InX14a4GQa5HlCWp1\nyTFAiJLlolUQRrRtRvds7nRXjJYt4YXCwqw84Vv2Mpb8Oomb+3LXZj5OHHw9\nFaj+Y6ULYhM2Ju3v4dhlBWTrZTnyKFQhBXRFXGzGy/dNkcUNfPN5vsik/jvS\nn6a6UQYjg8I5j9T8I4dxaD9W8Qmz6tEBoDp6HmPMyi7VEZsbYw4J/NDAKPv2\n8WEZtCT1aePImlr6AydRh8kv6EGWwZdu62Eh0xqEbmZrJ9n990fY26Qj9KQG\nxjTuOEv4th+b60FpoU3sQfJjEBfJgiUtBbDg/8tBUCrxjTZq4Vuxa2rJC7z7\nKgP9HBCeoUdnTO7DGKuIM+y0s4IBy0MkFS5nXSi0ajYXbSl/x9yYZmETWdL/\nJdnDt8gfWdvTr1gRxxGHGRj7fxB/uNDmDsqCUZIurRseHE/+eI5+nvqOUzcA\nbQJkD4oLSOqI0R6JUz2C3kxgc4CIv7B9K8t6qjjUSw2RRtJWBsip/srbJCmr\nHTBQ\r\n=ornU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"9928298301a7cec0dfef0dcb786c065b5e08dfcd","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.2.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.6.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.26.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.3","typescript":"^4.2.4","@babel/core":"^7.14.3","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.2","@babel/eslint-parser":"^7.14.3","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.24.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_34.8.2_1621440790387_0.3082323715395576","host":"s3://npm-registry-packages"}},"35.0.0":{"name":"eslint-plugin-jsdoc","version":"35.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"12634f12d1882a4f77b49aba2c4a17a7bc88cfcd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.0.0.tgz","fileCount":118,"integrity":"sha512-n92EO6g84qzjF4Lyvg+hDouMQTRHCKvW0hRobGRza0aqbG9fmmlS4p1x8cvPPAc0P87TmahMZnrP0F7hPOcAoQ==","signatures":[{"sig":"MEQCIFfc5gaUmCKWEDFy5hTi0OfXR8LaXLS82iJlPWAx1rvbAiB9jFIN/DqG0JjnuHt3ZJLjbZnjlzL80yBu/7AjcrA0xQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1359449,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgq2hPCRA9TVsSAnZWagAAhFEP/iNuXFGLxAyDsXv7Vggq\nGeJZVkJBDaO+l2XY1AVVbx9msJ/q4bwN5zcRMKF4dLndDNsNPvvra1nVjnKp\nElVqHiL+kJXOE/7NL1x18viEG2Gv4VaCUld04eyAeDbE5oYNzYr7xZwnzBIc\neAbS2TshVhN36nnctVZRNQvND8zeiNJwdm3swKiync1YWKivrKx2kD2cuQ/T\ngt14N6bJAFoaY15sOxM1iGqIMoQq/Sw+LWwHtzKeevFShXviSjnG6EIjr6JJ\nwdHkdjqcT9qmAtVGeg/r1wQipzVz4ITTkJID1vva/+9d2sxJ+f1xAUlWWPB0\nxRsHcfe2ZDCBXw3ZXjmdpZreVLxWkbs7iuMi1BtDjW9W2sNzrQ8gT51HV+GT\nRBB2fWkidNa235N7VALbMXO3sIZbgqV+SKpV0Ki/lNMIsJvWtUb4SbxngpON\naHBUmKxQfBOReIvlAeMiTVKbZe3uChtVy3hj6c3B98xcRbGJ6687SashyE/r\nZq+0it4T1wSngxbf9gF9pNR9ba6O957ffgvdFdhedUiPLChcep45XGyqr3oI\nYeSnRiEWZdpy2EHSfx40cKRyB0mlWnCQKifT9CeMZ471gTeNgus7NXKLcIB2\naWofBQNkw0EJKvPZ6y2DZl/yW0EBaO4BV0ZWlmy7aaNgmjTRA3I65QyVCPwk\nPqyB\r\n=1U0i\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"b81e25d14d05c5c65992c9e6f34386fdf14e8d8d","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.2.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.7.1","comment-parser":"1.1.5","jsdoctypeparser":"^9.0.0","@es-joy/jsdoccomment":"^0.7.2","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.27.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.3","typescript":"^4.2.4","@babel/core":"^7.14.3","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.2","@babel/eslint-parser":"^7.14.3","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.24.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.0.0_1621846094767_0.1967793681877974","host":"s3://npm-registry-packages"}},"35.1.0":{"name":"eslint-plugin-jsdoc","version":"35.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7a28bd53b2dfec2ab0e6eb8ee59dfabf40449f04","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.1.0.tgz","fileCount":118,"integrity":"sha512-XfLaI9kzXW1mihqmeTWH+fn5Zw+sbX48Jcmwp9dftwqegj6yT/3FNnuIxmM5VyLX3AdoBNDc8p4fje7/ZxVQyg==","signatures":[{"sig":"MEUCIQDiItP8z91DJYnXbvzVURyy5qoiZUjdlN6lmfPngBa+ygIgZF24RSdPrBA9nWO67zmhNkP6XK9VCL24tCHau2TJGMA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1367426,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgs5pJCRA9TVsSAnZWagAACPkP/3dGhTHmkQGxNpi/prmx\nUCiGDcg87mN5Tn5J7UIzGno6kfJ6dV+ADg7PKgjfnTrWtC4lC6dEiC5EejKk\nOuKg2aWfmjVLuzCER6wKaOGO1zhmiE85ymTa9KuVGOvp6bfV1pyICqsrWXUR\ncZowWLyD87ThTmeRPKANsdQmNXwgAOnHJpD761544TtF0aRcZtUMn3KhX+k/\ne9DYMgsZBiANZPR1HpUgiO1wHHpcn+llDI22oPPLGzZIw+j3bhMlKKMbzw5t\nw9F3YRmzCroDW7M2S/b4rPDx+hUs4hLhV+G+DkDXVzyHMUsW2xypedJz46CG\nvPl8AIDibp6/nXIZWGAtv/iKXQzDJPke63Ji20+oioAyfh+e54hougCoymBb\nl7b0TNA2mgt4O9D/yChKSbSvKuXkORfXNOCehHjKFBXM90z94mbjBTSfDUNt\n5Nso1ZpMkIQyiRBea0xO4g5TbCxaTB3P2jWPtnIgrWa59EgWfj9wqoekfyzt\nacJIkuxgc72xjnm3N4ANpa6CGFkCqsN3g9sZdwfefrKhJPURCVVJdhi/u6eX\nTDP/s3LBab7MAU1NkZAqzHqR0q25Q72+ii9HEP2nn3QvFEDgSgxJ9g6RA0qY\n7j3vBGub5n89RL8QMa0aiwfakwYHfwRoDnzNlXMDwdwUnDoGVyjTG7kvngw2\nPTuJ\r\n=INWK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"dc641cc129d3964488e30b45388dc3351060cad4","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.2.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.5","@es-joy/jsdoccomment":"^0.8.0-alpha.2","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.27.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.3","typescript":"^4.3.2","@babel/core":"^7.14.3","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.4","@babel/eslint-parser":"^7.14.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.25.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.1.0_1622383176797_0.33416470742207127","host":"s3://npm-registry-packages"}},"35.1.1":{"name":"eslint-plugin-jsdoc","version":"35.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"651d83e3abe4ec823830590195078714ec7a34ab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.1.1.tgz","fileCount":118,"integrity":"sha512-pmhv0uNluRfFNAcy1rMI5Y0uw5i7EMo8dm7BV7hBUzHdHFlHdH/ZDGhmPh11QVvAEX9Gc0pCNjon4oUw5v0ovg==","signatures":[{"sig":"MEYCIQD3vFv0cfB0svbRQiYdxj3QoSehQzzClEIL1m7ylElp7AIhAOMsScJSGUP0WMvkMgkK+3OvFr/WUYkZmGqXcMxJhY+e","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1368243,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgtLCyCRA9TVsSAnZWagAAJB0QAJKysmXYQ0jU6cww6f5P\npTZp1D3exhlw8E1i2pBfqFku0vYKuZhsxhYLo/rK8KSNY4y2zLLR99XgAP+b\nLevTk8tuBofrI9hvBy8dsPjGVO/bprw/BB1MzDCFH+mjbOnWA3OapekaAEBa\nCtgv8PHrE9V2wNNVbIQSzAfFUTZ5OBGkK95CBYcQN1Gc800VHWp5gwrCACLd\nYjrz+gw2KUVq7SVXiERJKTFIjbekmn1sOoPymMTgcid1lPoH/J4AQ+DTDfi9\nv29+W3LRSHlYAdtNfQDhZRwSMIUQ/fDZNBENNT29UYrqGi20jNXAu6JzWqiN\n4IWgNFEUyRTTgnbsB+4B8Sn7rgVXHnvkXEFvz7uGc8aNYDfTDrVQNnEpAJYc\nHdHr897HOuIcVkKES66memIpwmRo+hS8w7DSsqOZKcg5CCip+CKFeeE+kHMh\nksXsrBTrv5xY3RnKefzY6gpbp+EEpSsAoasR5xziT7iEcHlmM68N/4noZglV\nB+NOU5Sh9BlzNqi9C4J66GSQ7W/dqsIpZJMlqSXlcNyWNALJIPLUscbjXTZk\nTvRmnQGXxtBwc9se5FMG3u++CJAt+yT0TaSzlpce7ChD5Y1DDDjijzJCmfmP\nMlibC06AdkgqinCBkH5if7OPfc2Ht9EuLCHtw9obN/q7y1pjvOJBdX/8lTeT\n0B2i\r\n=ROO5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"1a6de5ed9a2aa64f8b095953de38635d3459e0e2","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.2.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.5","@es-joy/jsdoccomment":"^0.8.0-alpha.2","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.27.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.3","typescript":"^4.3.2","@babel/core":"^7.14.3","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.4","@babel/eslint-parser":"^7.14.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.25.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.1.1_1622454449973_0.5431813738283273","host":"s3://npm-registry-packages"}},"35.1.2":{"name":"eslint-plugin-jsdoc","version":"35.1.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.1.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"dbd447f61e9baa6c369eb85d6cd8c2df0e1f63c9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.1.2.tgz","fileCount":118,"integrity":"sha512-IPChTbaL9rWe6DCinKOpUdqsBV7r2dKEId1nweSKsjJqZp1VAQyzQJ5N6ogji2AWmrPU1jdjfHA5HIG2RaiRBA==","signatures":[{"sig":"MEQCID+v/ydR8uiCXBYR/82b1Mc7al903cgYXq61Lg9Wp3erAiAeCMSIp+x5HD0KhjS+H9eUqklF7S+L1IUtPIW4VGNW3w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1368243,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgtYi6CRA9TVsSAnZWagAAZGEP/RwU776V8uJ1SQ/FlpEw\nmbdKsrVR9B9xv5sg/x/qqa8xxFeCbq9KFUsmShBF6WmpETMVqmTjs/AP6bS/\nH+6fFxjtqFfUX9doOH6hIvz8OzMM7zIPm/XJkryM/kVoz0vuJ7Y9bV2j8BBC\nExL6sNaCy/ThnoJQkoERBYdbGK0+lB3SLjLV3kw1KC7/aW3IxZn8PKlp9wpE\nwjWBxcG+cf4QkAoAF9p9hFivRph/W/OO+HoiTC2wgohgrJQF2nnFy1ODEYf6\nLc9tfZiorCli6XweF9MFn/EOFSZwZGm+z7/0c37iZuRWMxhhVJjgh8pGfcWv\nBwCagjJMjHjpqtUsc+Wq3G04aeWXGCwGHIB8XtD584roOAEyfMr9TaL7fVHS\ngpp+f+UhjgBkB8yJt2znlLzTVUY8R2smfOSqO/xSqr9cV6UvRtjKWaJYTf0q\nb+ZUZgMgu9sSYd7Ti+677MRWlOcTl2p+wXS58xW3840cUOYayxZTCcNI29Cz\n4HH0XNNq5TzxbwlXEuVkPfWjjEqv6+oo72oW/yMGZZSrwlOH3aWAhVwQKwMF\n3+KwbNKWKzHbplhF7hvXUEcClCnHPipEaUCw/7oB/Sm1xrOfRhAPYocADIF+\nCt/L3Eaoh6eVMstmZbt1gRfFYK/vK/FK8TagoKMYBez7zSKsa3zSMKysu1AT\nDuVs\r\n=agUZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"1745fcaa960dbd97086f2c83f508a5f085acf9ec","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.2.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.5","@es-joy/jsdoccomment":"^0.8.0-alpha.2","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.2"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.27.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.3","typescript":"^4.3.2","@babel/core":"^7.14.3","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.4","@babel/eslint-parser":"^7.14.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.26.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.1.2_1622509753539_0.5880970660453186","host":"s3://npm-registry-packages"}},"35.1.3":{"name":"eslint-plugin-jsdoc","version":"35.1.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.1.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ee9f8566eeb87a0e96fc52ec55897a2cb93ceea5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.1.3.tgz","fileCount":118,"integrity":"sha512-9AVpCssb7+cfEx3GJtnhJ8yLOVsHDKGMgngcfvwFBxdcOVPFhLENReL5aX1R2gNiG3psqIWFVBpSPnPQTrMZUA==","signatures":[{"sig":"MEUCIQDjii4yvTK7D8bBpzh69w9l/+5rYZAyohBQu2gX4AsTjAIgMXSWOsVktR3IPYcxJG83npw5LPynTSVzGdTuwRwAw/0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1368486,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgvJhOCRA9TVsSAnZWagAAApkP/0eggOB8WoEcHwO6pqpn\n6/r5M7QfZ8dy2RrBM+UKzXLgGFIernDJvwCMigJLX001IgSgXIUfkEzqGBRx\n+jwHiEpk0RtLxDHnKRnZNLiFn26F058kcvGfoK3DyssLOlnPVgSCu0zdQvNl\nL2/5+nti6vkmApvOtmMgOPEw1r9fM2U5M7BmL5hV5sPrjlPaZrptii6CIQzV\nokWc9zfsQd6wS2bn+OWryeQM0UEHVbT6uJcUrXf/vKBPYpjsdlwKawdy+G6B\nqkDfo45LXrGkfAZS9AyI58Wzhb00bJOtfhe5uh/UcJa2MVJRq2OKM2qMIZEC\niwLUpWKtS1boZw1KmbW+pam7V4IaXP5k5rHk7CTPNEnajymTb+hEJfSO7qUS\nb7vUrPWa+Lcx46bQ7DvONguCTGVAWHsaFoWWMHGlCTerpI11Hgs6MXLuoXA4\nDLRWkd3nUQ6qktw4C+L9N5Q87RiefwwwTUTDTjXtlwsj+lnME9eGhSEF8gN7\nn2PgbbmUNbSNrf7g1wCPraeRkrEKFRgtem0Sz4Che5m1GX4+BUaBFzSjLfiO\nWwtIN0xSx5t3K7pVfYWUY4tCRmigls2RSYQTF9rqXnNBCN02qCwKB60GbcZp\n/wk+dV9ieLjH6LMjtjGLUgSe8bMnM4GmE0caNd+B2COOe4onLozvCBhKIPUT\nIzm7\r\n=7z3+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"f8700250e986a9dba66e0b69f4862fc4da6ab366","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.3.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.5","@es-joy/jsdoccomment":"^0.8.0-alpha.2","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.28.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.3","typescript":"^4.3.2","@babel/core":"^7.14.3","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.4","@babel/eslint-parser":"^7.14.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.26.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.1.3_1622972493799_0.04124812282968482","host":"s3://npm-registry-packages"}},"35.2.0":{"name":"eslint-plugin-jsdoc","version":"35.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ee5fc4def4f3fda7546f0c06ac4bada6a7444a3a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.2.0.tgz","fileCount":118,"integrity":"sha512-kMka7QWeQkgenwfazdgmdiYojS2QMI+pWtv/+3gjQJBdCWGPNXPmPQr+WO5slhiTRA+3MO3b2ZnBflXtUmq7wA==","signatures":[{"sig":"MEUCIHsAOxOFRJ8XxtyyeLCSDGwAcuKnXvk4nKXg7eZEt50fAiEAgQnvp97lkHJvfKtPguBfOX93IWSUc+LsiHrW11WG1Aw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1370575,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgxWhTCRA9TVsSAnZWagAAemQQAISr3Z7PUeWT2X+IXBUO\nUUBQN3x3zkvk3uSlDZ+X9S5sFeUobmImtRNRzIiRk6JqMTzK+lWzPQ1EeFHV\ncVJ3Es9oHCwYpl/hMAE9uTwBo0o9/8nsDIrOGCtDwmG3UyYXIRbEeaNkI3w8\nlrU3zv/cmNvyBMbH7/X/OLMZprFtDNEJWrVn5ihEJ3Dph8lhBpOosGRqn5Xr\nESfZ8JabvdX4bKKOqc9aWmV40Ab5kC18RliUd+R2zMMaQtkshs6qVkK7xLDt\nFz+b0ZAPR/bSeYFMEodMsYWQ1hShEYdWcSE6IgmT7rXHU2mYlpJwAEe6/CQG\nXFwDQsyqFSc5bEtJ//VTf01om8EUvf8qZJs9XD9Of/kXEz+Mr9YwcipG1FZM\nWrBE/XN3CJ/0H2qPEFELauekRqMKUKv7b4qgQNwnKosh3tWfBMXe9ZnxoYDr\nCGdXQvye8mRON2zdu8xNxJ6rLe4VO5to7li5aDynrgXigdPaSrIQxNILgnIP\n6nqxFcpbg+EYoaF84RBKV6zwHE+FY1m8pdajiq3VsjOmXJ/QfnK/jss3X27M\nI/lxRfkqz3Zmc+ceML6Sl38y3rO3QGQc3/D61tBMkiB2MmSyQ01DXpLKoJ+l\nuwgELCbzT1dlh+Y8Fl+D5rhrqVWl7Z19T4g5y/Fvcvo+K0K9zw6A43z8bqAF\nQx45\r\n=fZEr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"2dcd9ad062b825c06b1e694c97ed802db50e071f","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.3.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.5","@es-joy/jsdoccomment":"^0.8.0-alpha.2","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^8.4.0","eslint":"7.28.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.3","typescript":"^4.3.2","@babel/core":"^7.14.3","@babel/node":"^7.14.2","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.13.16","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.4","@babel/eslint-parser":"^7.14.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.26.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.13.0"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.2.0_1623550035512_0.2081202447822017","host":"s3://npm-registry-packages"}},"35.3.0":{"name":"eslint-plugin-jsdoc","version":"35.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"375410bc990b54d1a394b545b9faa92d8e05a065","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.3.0.tgz","fileCount":120,"integrity":"sha512-caPF26GcTqU8e83kj6Zp5RLCNgf9ya8rGNxtk1aDAiUCF5KMqTKmOt28sjcejL99b0py3EC0ds8dOXsoFDVahA==","signatures":[{"sig":"MEYCIQDgIlXowkUqr4RJnSRpQpmWlmu47G6gdp7bHfMMvniqUwIhAMrxupwpnJuMCfInRAqNA3fk1uxJPi65GGML89RIHPEM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1391367,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgyXIyCRA9TVsSAnZWagAAzTUP+wegWb/gDmH31xOz/tOJ\n/0jLg/i8WNMgAUzesZ0+unS64warUkDUiQXIF8cX8KbXKYD0bkkAUBLXtErF\nfCfpp75rzoAM/D/VBX3TbGT06fjzdcBIUH3qt8JyaSXIId7KJFO2Nt/lEuj3\nDG8xWf7q8YBTbTpVoacTSWxvhihUpjtRivdp9+l7fBvh35H0A61bnKf3+2Ly\nnegeQUxwJqbxLEUdp3TDSFfBKJsjgyZw0D3Ucl2KDJjuF9F2OLPqriK0vVBM\nTsIhvttQg3cQPqVkNktJ0T3kwHx62W48oE6Fz8uvntmzEMngNDZa9G+oSC4G\nQfba2JEKl7rTD1ToYH8PLLTBwcjeKO7flmjpWe8lmy6It5WL0YwwiRz4S/Gz\n0VM58VyHDlgEVeQUgSPwL8o1dX9jAwbTTOuQzSM8WOZvDhDa/BOycRaigy3+\nnGqw5+ooNxIBXKy4XwBFfpKv8t8/JBsaqR6wMWjHkB1w6WJjGhEBsWTKVLCs\nH1rE/86E5vAc32X6xPKoBqNQZoEkyd12J3vChmG9857tbuv2cOUcM4eEACPu\nnu5jj+pKGqEjbc4XHv5dLjfqsNzLEZgAk1pXQdSh3cbJtoHCC1MFAs8z6MFV\nQIRNMsJV6e1TBOtgTgYIlVBsoEn3ttQQebbGw8lbL+Pp4lVxMUWhJaQYjLYr\nDXoD\r\n=L/kv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"eff90bd37a243e5a9ec3e26290eef4da844069ce","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.3.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.5","@es-joy/jsdoccomment":"^0.8.0-alpha.2","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^9.0.0","eslint":"7.28.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.5","typescript":"^4.3.2","@babel/core":"^7.14.5","@babel/node":"^7.14.5","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.3","@babel/preset-env":"^7.14.5","@babel/eslint-parser":"^7.14.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.26.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.3.0_1623814706050_0.8149621744149327","host":"s3://npm-registry-packages"}},"35.3.1":{"name":"eslint-plugin-jsdoc","version":"35.3.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.3.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"82e678d0ab5b2336e08fe5a6aa29b7449bfe1475","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.3.1.tgz","fileCount":120,"integrity":"sha512-/eJ6BjBRZ/dCqbh4C7UdK4UqFzw3Is22Zp1/AN1xxTtnNrrxd/oGkYmnebeXmsS1PKqZpuDczW63DUYHmZdNYA==","signatures":[{"sig":"MEQCIEiKKyPMBdX7S2EJoWQF3trP8aYLbXuezylB1892dklOAiBhVnStRIXuogIBFgL6LhD93yjjYbKdlNwTGGTGo3IAqA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1391123,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgzWgrCRA9TVsSAnZWagAAYcsP/1fFZ09qRUNwQKzPeVb6\nutN31GgtWbN0CYgn0arNwjhpMai3k1IXIF39zalf2fltUM4gtW59BZLfALmS\nchrE61OLnon7EcH3pPhRNQOpN8ybYOmGu7QO6W6sqfbBtrV3HYWn/lw9VRbB\nUbBtiSH1P0iibLOCpofIRU96y1n1OLH1PtM751Fcg2F7BAfkKW6Gug98KyxU\nBRwxaNrCRCErwJnTmyHg87pTXY++mzoIt1myWSkdB1+XmY1MmRfeZIeO+b1l\n8yeCc0lXStkr41ij073pkU56HxoM8T2UDil23FVRz/hPxRIoKA1jTrQCqwoy\n3XQ7j3L50KabVgLTWlRYHXkJTfjMb8w6Z2sn6sJbLksEwgiNZvCEhZdlbvhp\ni9VLfHmc2+1hlA68el9PZSuQQDQ9jzCjxknG0KLPFb3hai3VRX7FgPnJ6j4T\nrxV45X45SvtIp3oEx3A5gkR3XC9Q2wEBqNRR0t6mUWpdLzO6Rh3VCeycW8C+\nbIaCdAoQLx1g42XmuN30eg8HNx2XByPbcQsSS4nDTLhhGDTiifGmMerzLqM2\nIUnZYzsfn6onLRhOWizDRRIR8MM5NEZTpUupgTFQ8u3IpWjnyDN+OQzwcL+x\nbVRquoozZjCDbxEDhq1qSrmue/9pprzAad9yfH2Hl6vR5SOsSId2rkDwF9QK\nXVaq\r\n=zVbh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"478b248914e00e6e7854c946ec6a253523f46bac","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.3.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.5","@es-joy/jsdoccomment":"^0.8.0-alpha.2","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^9.0.1","eslint":"7.29.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.5","typescript":"^4.3.4","@babel/core":"^7.14.6","@babel/node":"^7.14.5","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.5","@babel/eslint-parser":"^7.14.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.27.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.3.1_1624074282764_0.9104914713127195","host":"s3://npm-registry-packages"}},"35.3.2":{"name":"eslint-plugin-jsdoc","version":"35.3.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.3.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b4115c5c2505e2c7e1e94f1cdf0b698b7dc70f68","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.3.2.tgz","fileCount":120,"integrity":"sha512-r3qfbByMZ4O5Y8O6aHxo1AdgdpwTQSD72anIZuhjNI6ZkMtjhpSkkPN3cY/tsZtmWeMH+1pB/nblWIAr3F0lxA==","signatures":[{"sig":"MEUCIHsOqJc3pt9wUiNBqJgQQaBApI+9BTUnMkInm+B0mcAkAiEA2bizhwYHgbJinTIg48/EJp6v4PRaojbxQLVy+z4d4dg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1391248,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgzYl5CRA9TVsSAnZWagAAw9UP/iScZDfFz5+db86src+J\n7OR8EVc0JDWVBAYZnED3EqA9K17kUMMIh9hWw8Ac/v2FcS3EKTuaH9XURJpz\nUG9L+hlWlPDwqVFcBLfwGkSoUacK1l3ftDQOofPTrY8gsqtdu3P2+IvXi0J4\nvK+U1vj0pvZLCACiYFQhyTFai2fU3AXcqB2uhKvG49K38D8AUhJ+1OTgA5+T\nIjayl0Vnnr2KyT7cRqwUG+eOtzHB86QLP0QHvAkrv45PZiiIz3ELLHyizHqp\nUQHe1L5EVPBoThKNHb24Y0fppysoGkpJZ11dgWY60xrYLcaQ2ypnRrCfMfIG\nvxffKFA5nRfkZeHl5KfwB2p8Le14m14wWqjk1Tj5EBuU/N4Td+Tybkkuq4LA\n1dj/KO8PblkNaYkGjjOQyrp+GZ5KparFKIX/fYzWfupiubR4LfIgJ23LDXKJ\nXVyhzClNzG6bMR6XDmQGqQGhD4UsGNq2tonarNyPTnmiywVolyeTQYit+/Ec\nHNJt/qAAmC4n1kNTugl8Q+ibTxJv1x2ODCCfL8l/wQ1jZnn/Zg8qbCBm6QpZ\nfgAjrkeEir03egxpX6MnMiM0NCc0cYKgF+E3/Lcq+5ACx/3/3ePIQqTq9PmC\nUD2JhIIYLlEJwdGlFmtowZkikM7Ch5ihm6229IxEpWH0+ToHtCKn0qJKL0TK\ntG0c\r\n=8dXw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"f7c8038ec6e2af25577b524be0cd33fa7a6101ba","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.3.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.5","@es-joy/jsdoccomment":"^0.8.0-alpha.2","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^9.0.1","eslint":"7.29.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.5","typescript":"^4.3.4","@babel/core":"^7.14.6","@babel/node":"^7.14.5","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.5","@babel/eslint-parser":"^7.14.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.27.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.3.2_1624082809053_0.17481315765575522","host":"s3://npm-registry-packages"}},"35.4.0":{"name":"eslint-plugin-jsdoc","version":"35.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4f4809ffa9430070aed10087fe691b9ededa2b05","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.4.0.tgz","fileCount":120,"integrity":"sha512-0cr+NkPTxpTiMCtYOd8W5fd2IyC/CmaTHKb+0bzkpP9p8HfmJ3B2/M6FWj97rQJOLwLMkx+g2MIEZsrttpbFmQ==","signatures":[{"sig":"MEQCICb5Ge75OIctOJkhEekYzP5fuqwK08OJDZmFI7ZxxoSMAiBcGQWdTgK5sqS0RYg8LDN5n7JwdLc2QeIPPs3Jq3BfMg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1398092,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg0H1zCRA9TVsSAnZWagAAIc4P/0vtpFnkjd8Ydpi/g3FZ\n0Z7Yv9ltK/tdH1sLvdjFotDnF/APgRcDyF5858bci5yhRm77f1UC4SYx2CHd\nr0R7Wc7XauLjcTaPkB8jjCwjcLFyByal+UlKP4dmBwUvwWK8M7VTF9qeIeaL\nZZezHTmmagWWEbhPltpGdo2iqKVZkFPGFLxNj3Dyy6IejsEaNiIid+NaJgOC\nUrHgrMP57FzqhEP8D0ufkMDpC9pO7wkiLD5fK72KNFyRQt7tr5Pry4yjwtgW\n4fNDzMkB/b/5SHgxyeM+ggL4axCrvPrlWydyONuszxeYlfo119lugWdeQXy4\nbV5QPHv1XkrMB3pDbSb8o/rQf166qXkwfQH2YiSLgYfFHYr++/UiElbq9/VA\nVoxcEQYMBcQUX+njobImCQVPGaTnrZuygYjcFiVUMJALTaTv80UXWXVut4wb\n8qKnW9bfghAl7+2a8cZPyO8qJG0Bou9K5KT34oPG1LftqRkqi/d2+AF07+op\nAzKJUknmiC8/Amkdb4xrsB1tfl6J6lNlK+/sMhagZO7+tmMUy9XUP9DiNaIV\nocAgODh3x3WWfQNHM/eMPq9f1vun6l2Wnw9GTwnPIEvgoIlfWIOaxrWJlYb2\nI4QU7a5UvYQprLzkOGH9NUMawQo7FYt5zqx01TZUeIXx+CiiTfxbWVt+MYP7\nEvxI\r\n=tNIt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"7257e44bdf70c4cfc07bb6d0e426e6820744eead","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.3.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.5","@es-joy/jsdoccomment":"^0.8.0-alpha.2","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^9.0.1","eslint":"7.29.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.5","typescript":"^4.3.4","@babel/core":"^7.14.6","@babel/node":"^7.14.5","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.5","@babel/eslint-parser":"^7.14.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.27.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.4.0_1624276339006_0.171155408237871","host":"s3://npm-registry-packages"}},"35.4.1":{"name":"eslint-plugin-jsdoc","version":"35.4.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.4.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7fb2a8c9bd8e304ab1feee48aa34544df5f79839","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.4.1.tgz","fileCount":120,"integrity":"sha512-lnpu2Bj+ta2eAqwCWnb6f3Xjc78TWKo/oMCpDH5NfpPhYnePNtGZJzoAMgU5uo9BQqmXJ8pql8aiodOhg82ofw==","signatures":[{"sig":"MEQCIBKYMZ2i/PeDX/+9M1tCXEXlTggnM2pCcnKwE2JoAeJCAiBF34tgSPnFPSDgk/l3+evIzk0hwKA2ouhPqx6RfZHDqQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1398343,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg2mt6CRA9TVsSAnZWagAAhcAP/3dpVOABsFyF7NJJS6wn\n8yB17ni9Jt5jBUdMw3EOFGhry8hfBvV3Xw+yZbEaAvLGWQJIX/1imnlSQREK\nU0563kTSTTVRIsEDTE2jUehU0iCYXKfO/uKGj4kFAruP8wW9+2opNVANvL4n\nl2GO/+BcUjWks8X0fGvWffR29ARKLZMhBZLr3/PowUsiMZS1kkUY3jq11K6w\nYJOEmEnsxnuXsXs4u4QAIgBq25FrrtVqFxKrxKjd5A5BFlwSooNauAFNcN8T\nYpvU5o0dIIn3szTJFC3VHqN7Q3yjIGcenYrGFBjxu//dq0bRekz3QqhDCtIz\nSLBSkzc8xrKl5k7QGLyIMTwqdO9lCt4RCsTVDhJf9huOk0hhyxIt3eG7Y7Tk\n1ky9NrCicH8oT/NupY/wQUSIc84ISGJ23P2lL7KwaG5whOFnWomZWMNHUrU0\nRkIX5dmd85p8UJqxsm/HjEnLEg2IWVD4YBtCQLZsGWEjRu6iDJvIG178ZUt/\nOK5EkL2EduM2LJ+ndBzCKvS+IGNWOxBKTdinTONLU2YRF7ptTHKif3lmn9eW\nCA0HW0FORHa/CW8dkvSMnpfCRwNFIR/1iealiNdaOev+kUDQYuCr0ActsCdv\n9aKkiy1/Jm9yWK1iKL4ZAETpMy7RIu1iLlYz+S8vG669J8rG2wo3LoIf5sR9\n1qKh\r\n=qzHz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"317674c8f300b2bd0a6e833582ce7310f9b9c350","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.4.0","dependencies":{"debug":"^4.3.1","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.5","@es-joy/jsdoccomment":"^0.8.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^6.0.0","mocha":"^9.0.1","eslint":"7.29.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.5","typescript":"^4.3.4","@babel/core":"^7.14.6","@babel/node":"^7.14.5","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.5","@babel/eslint-parser":"^7.14.5","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.27.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.4.1_1624927097952_0.13219194442467685","host":"s3://npm-registry-packages"}},"35.4.2":{"name":"eslint-plugin-jsdoc","version":"35.4.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.4.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d368de130c52f1d04c6a7d08b527522f41c92af9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.4.2.tgz","fileCount":120,"integrity":"sha512-Ls6a1DDWS0XHx0ZH9iMaHNy/HltQseG2kO0S0xlaS1vataPSPjGpv2vSdQUAHnvwpH75VfNad6OvlLCfKalL+w==","signatures":[{"sig":"MEUCIGvuqXYYxqGZYzB0lf5H+/kQkRW2cmq/IZl9S6S+K4/4AiEAtWAyQPK/lQhAaJFu7CG2KMstbO1uF3BNEoJajVos7so=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1398542,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg58KeCRA9TVsSAnZWagAAiakP/0sMe/hdArikL39j0+Kd\natXQNZszUme14AviCuNblIGXGwsRxMQ4Mtpx9irLqCIVzrQHTajbVHt0TRla\nND0q2QL0I3VRfmx1UyOwBJGlP/j95pD6R2rn0oudJoXNOldODwQl5LPyAKKa\ntByKWsMgQbza3s9Y/osrphFtPZtXol/nXxDZ+WxkZMriym/vDI5A+ga91pcS\nP+YzcLGSr1JmwPJv7jDtghoVHzFeFqoqwlqAlVxxTRs6MAA7247poLm5AD8Y\ndltLoHhdbVUmamb4iFYp9SiXZm1+9d6+uLjrnnL8ZDzo8EJBKqgQF4RpQmTQ\nG5+ZGJuQYFqFpYUggiqmL6E2iO+88l2D+BSHm2p2+7lg/rAoGnrhaPs7Ng4V\nrVL9kKHngca8AJ19JbjzswWJdXPA2b+19I6G66r8lwJXgKs+kEN6/VT/yfCZ\nv62ZZ0oaXhmsgH9YGpD6TxnDeMxqgiEsq0GKjx/Z45GZ78DUXUSroLttNPtF\nkRHvyrP6vJevv4Waa/359i7RWmCWCtZ4nIGX33bkuHoRX0BCRn/ceHdc8ngd\nbVmsgHFESouFD9YfP+YCv5ZyexIqLwctcIyw1fJiXYt+sWx53onTBBXQzNHC\n0InNqHMuuQpa7Y02rOBnmX2v8WlLt+xDTkoFh4PPC0QbeknSomRIh/oWXvar\nqAjO\r\n=cWZU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"5a928db6e158a4c889058be8353da5417d42fedb","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.4.2","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.5","@es-joy/jsdoccomment":"^0.8.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.0","mocha":"^9.0.2","eslint":"7.30.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.5","typescript":"^4.3.5","@babel/core":"^7.14.6","@babel/node":"^7.14.7","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.7","@babel/eslint-parser":"^7.14.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.28.2","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.4.2_1625801374156_0.5565252539891175","host":"s3://npm-registry-packages"}},"35.4.3":{"name":"eslint-plugin-jsdoc","version":"35.4.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.4.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"54deb74b0f53bda4bda5ee1ccfd0deace71c8943","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.4.3.tgz","fileCount":120,"integrity":"sha512-hBEn+VNjVX0IKoZ2OdZs0Z1fU8CqZkBSzLqD8ZpwZEamrdi2TUgKvujvETe8gXYQ/67hpRtbR5iPFTgmWpRevw==","signatures":[{"sig":"MEYCIQD0uqrhV1dV/Nq8ljEBnSgFp1wpP6B+f4NwB8KJYbqKUQIhAJCA0P9OW3n4bqZWqaQGzB+iUvVIEfHZk3KzOcK1No5l","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1399461,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg6N30CRA9TVsSAnZWagAAE8IP/21AwHU3cE1GkomEVXcX\nN8gtBC2+467ci4ctjtls0yI3uUA7QuuAXmSH+Prk0bCoFeUsdXV3a7gb75dt\n+fa4ylFS305EpAbzNOadZCCmf722fr9I+Ca6iM6ALYAzp9EdwWbmUlEJB4Ei\n5UQDZQJYZAGuGUWCYml/+YryNriX/QyeKKbXEeA8I/FLxJKztAAA6AOxGBPV\nFUEiF1Yr9WdpXvOuhi99WEba9rW/zYAqcHTeD/DJtnt8jUeeizv9ewTL4ss0\nAbHUlUjL42P+5rv6oXBPuztFynkXVj1oAd8vX4m9VxCv/omDNRow8V/Ev/HE\nJ6qIb/e3Yq+nADalYpkjgfYSHvXCfd2FEDQ0yrtJSMp/b2KdVAO5+iG6gEsD\nh4NL5+Kws8ZVCkSScSx+Dq2jT5kyTAeFjotCOfGxgO9AsvELNCAf3IEnJp9b\nRM9B9ovUQL9VqvsYz5cXdCjJ1W7UnVHaawn63s482VAJPgW3H435VYhlhJxy\nvn4ktdtIywLG0GOcrxL3xsqpviGgO9DQ9DKzhCnofU9MaO0l6AXt0I4wm8GN\n2Ziuvsk2Xr+gnvTVHqwATYfID0L5N3TawX8cm5Vr+Abk8wLppVXrJxKOvVVf\na7SEP50hqqJv8tqDYPs1nMQmDB1YDlyEpyMQmOaB9KWLfG8eYG4FC3yEmIeL\ngQdh\r\n=83vi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"3fccc8afb126e59afe737c51f505b6b67dc27afc","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.4.2","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.6-beta.0","@es-joy/jsdoccomment":"^0.9.0-alpha.1","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.0","mocha":"^9.0.2","eslint":"7.30.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.5","typescript":"^4.3.5","@babel/core":"^7.14.6","@babel/node":"^7.14.7","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.7","@babel/eslint-parser":"^7.14.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.28.2","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.4.3_1625873907454_0.9943443248084851","host":"s3://npm-registry-packages"}},"35.4.4":{"name":"eslint-plugin-jsdoc","version":"35.4.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.4.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2f94d1d94579a5e38ab560a94e50fde5def6d2b4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.4.4.tgz","fileCount":120,"integrity":"sha512-bJJw04dzTMSqKc66v4S+mY00bNbeZdU4mSDUYb/FRgqPis7OphDJj1oncePzJmg4m20tzi9MRlGEvkpcWl8pKw==","signatures":[{"sig":"MEQCIBQBpqteKJYvwOadfHsUv2qO97IJ9uv/yfx3yxb9DosuAiBe5Y3T+cPoEIXBpK1r5SJiJCAZgEjkP814m37I/kIpxg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1399884,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg87kUCRA9TVsSAnZWagAAy4IP/2CdzmthK35qrRAGk3X2\nCayQtDHGDNGt/WfMUZZF2iMNsRelG7Z+R+CXQEM5IXvHn3Yl2EraDGrHH/Cu\n+vQTvH+WG2oNHM7ZY1ejcdj6Ljl9xR4HDzxmTRFQWCWHCc4Ewrxtdd11I5X9\nkSzpIrJD0hI9udU8BMhLDnY6MPBmY6PZ91MDUfuMJFeW5c6enGDCJyirqQIu\npJ5rWIa2wTn3EOxI2atJrhBELL8kgZsGvvzOeJT+OovCPPR1LjRB2lBgFq5k\n8LF71HSYuch6m3or4vPWBdDQzcjg5hODbDYxgHh1wIWClqRuqKdmN1R72HZh\nXqmbgY8PbqagkA8UkjJYXAwR84zAAC3HQmyi8M0Fb8gecJJHhptNx0bhZds9\nMF/Q7hldtLJbn4iDKX7FxawTJeAwiNVdVnguEtPv4fGSy2mxQpxneD1jOCPH\nDCHvwGmDH8H+PtE8ncBAqIRZNEjWwUS0osktcIfg0yYULoXJiOyZGHSdMPiG\nI3vIYVUPmTsQjn19T5lG2M/XbVfXsIiYEPtkJXni1aY3HNl9MGu1lIS4uNoV\ngOiY8H0QthAQfryDOxqnEbvLvOawWDk86WOKe1rfQDQyRaFG9h2p8Xd5CjbC\n6iwrBqN4sAJ1AlBvag6ukKBdPwMAX0MvfpPBCsKRDfqK9eKsIS10xWgH7j0v\nROq9\r\n=xOMM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"52d7eff53820f2a0d22b3c80a1930a3a023b5cef","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.5.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.6-beta.0","@es-joy/jsdoccomment":"^0.9.0-alpha.1","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.0","mocha":"^9.0.2","eslint":"7.30.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.5","typescript":"^4.3.5","@babel/core":"^7.14.6","@babel/node":"^7.14.7","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.7","@babel/eslint-parser":"^7.14.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.28.2","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.4.4_1626585363981_0.01005459016447463","host":"s3://npm-registry-packages"}},"35.4.5":{"name":"eslint-plugin-jsdoc","version":"35.4.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.4.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"20e9e52328b0e3dea1a70a965877dfe9d2b66edc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.4.5.tgz","fileCount":120,"integrity":"sha512-CguI9uhIJoihCsW5WTUY9xX2w9EpovmmHCz/JzAevC7Fcop+wyJLDjzaBnTh2LlSJvG9qVfkr7OJ+9i4cv1Kzg==","signatures":[{"sig":"MEUCIQC25ku3TBtI/ZKY3/NrD60wz42wScJ2m9zpKynWy2W94AIgGk6v/XSk+U6gjEUZ3yA7guQe9Bth9s4rVM2PXaqBRAM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1400038,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg892QCRA9TVsSAnZWagAAHPcQAKAf9ylJZM4JZ34EAO1f\nBF98S/BuUm4DeUU0/HVhwhv9FBC332uS8HoLK3U3SP3FLpSbLu/svYD/CavJ\nzEKcEIgAJJmR9A7KS7+UbqXcmguCfc9QVDSj+xSCQTAOYGdp/e+YIJglKAZ5\nVEC6QiluIrsm1mH5dqdDdA0eSUlPBRgPZj59SjIMQfngC88dVwRDAiycAhGB\ng+tZ1E4sB+HHZm4pYI5fgzjVpGmBqZIwXoZSEQgVbo6FUHSrRMV4boDoJCD5\nkGJH4v+llUPkgtl36q9w2Jjevmt7m7NmntnuX9GoZUCbnvU9LOKa2Gj9ApIY\nb817ISOckXqtdthUCWE7v8M0gCb4h+9IgueRxy6RDtBbIxRbxSe16qq+MzmE\nykWMed99uiWLyEif9mMg48zjBjoCgBEGN65wduFS/5TuFAgcRaRa589M55Rt\nHp2n+51+VrseHEQ1TvEaN/My6ZgAh3PhqlkKYQ/zLDSbyvH2f4B1cC16ZF9V\nYfSbf8RPTPNxP7S+mHMP5A8ooXba+/lo3jhJtUxLVZoK8aTvG5Jj3TEuoPox\n2Etqrz5VmT1A7wq1C8PEDoIXF/Jmf3pv+VaFc8qyY+UEldE6iGMSnmhVLus/\nHCiszg+EH6RZ2nC/Nfc6fAI/Xk3CVK3Cv65eIjDO7uwcALwcHmsGN1IQ4txm\nFDRU\r\n=jGM/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"6989699d4305809eca3ada704ad7329e3d178c81","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.5.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.6-beta.0","@es-joy/jsdoccomment":"^0.9.0-alpha.1","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.0","mocha":"^9.0.2","eslint":"7.30.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.5","typescript":"^4.3.5","@babel/core":"^7.14.6","@babel/node":"^7.14.7","lint-staged":"^11.0.0","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.7","@babel/eslint-parser":"^7.14.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.28.2","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.4.5_1626594704597_0.3993021307866442","host":"s3://npm-registry-packages"}},"35.4.6":{"name":"eslint-plugin-jsdoc","version":"35.4.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.4.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c694cc95f6e19e66ce0423bef82b7dc34f444bf8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.4.6.tgz","fileCount":120,"integrity":"sha512-Hiw2Bmm4XOL7RW51WypyzB5NeIkyxIHba+0ucVkkE/xbdvSXRXvvZyZYme4dvompbui4JmE0DovzHDbN9YAm8Q==","signatures":[{"sig":"MEYCIQCPk3tagZq5SjigAsOAwrIqOVm5AzKBBs2wwYQR0ExWIAIhALsyH9Ggmzg9J8myy7UeDkgdfc+lhdA59QbdFHn0ZZWO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1402139,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg9kn3CRA9TVsSAnZWagAANcgP/3469kHk3QwXD2NaKomZ\nt7ICoBNiB+vF7+WdTWj/2GE9Ii/gLRBF0zdn7wfcq71aKHoHI0WfVU/qSQq2\nxFS4oujr1sKl2XUMKxDA/kYHze5GnuT3YCqDtUMj6EbrmFed1LQiWYvaMV2C\nJ5goDwvYHFLFIZmDHtKlJBKfhp9T8bcJ2Bc/cSRbPsRTE6c7k2bSgg8pfUgc\nuIp8uBrkxhXi8gVzYv1LhwrfAMGpN6vauAyqvrAm96G2uX34Yq2nSr6wOLCO\nYcZTw9JJSyvEFyAFl1KIDVWvjRxeaqNOCadX0HuST757pFUf1phNPRIw0CYw\nMw8ZSs2R41PQ04tZqwwZXk8EhQNwRevFg/pGE7F4FD63/IhKQBGdgr8ZnMZN\nFdvJ1UlH3vm9bxNSl0Kbkwi8Ckz7KYH/pG7Uh1BUq5Zk/KjTjIhrttEcLh8N\nr5CZBRWyR9k07VtKcnnmlaDXKlhUNNmOYJO5uQ7iRO9Wx0k2hzttQfVgMQ1k\nEAeZMMceyCPVNrQoO8d/9YFl7dY9HjHrB6TACGMC2MPPF7ygPURtoTFkh6lw\nI8j3Mf6jmz41eGDMHFtogYKbBeqt6K6pQ0QMJCaKAUlMfS9oEjHgDnSZ6wyN\nqKz23xHI1fBRGRz0nE207FOphwvRD84ATjOPy3DrJGR1sqaOrAhdCV4GGMAX\njqGC\r\n=OiPw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"641cdeeefb4e0a2e11c6a1087f284974b26954fc","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.5.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.6-beta.0","@es-joy/jsdoccomment":"^0.9.0-alpha.1","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.1","mocha":"^9.0.2","eslint":"7.31.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.5","typescript":"^4.3.5","@babel/core":"^7.14.6","@babel/node":"^7.14.7","lint-staged":"^11.0.1","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.7","@babel/eslint-parser":"^7.14.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.28.3","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.4.6_1626753527092_0.7426018043997062","host":"s3://npm-registry-packages"}},"35.4.7":{"name":"eslint-plugin-jsdoc","version":"35.4.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.4.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"83874a9341128fca0aec7a2a1ad5569b5f7c8ff0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.4.7.tgz","fileCount":120,"integrity":"sha512-1EfFQ9qsAXYOr3ev6Q5OboVWmP8Wm2ed30Y9Ag/CLcrA6csNs2qzE4zJnxKA3574dguU9N7S3+NvIhRrYVgw7w==","signatures":[{"sig":"MEUCIFU5etYNHo+VqCqxcPAL7fgVZmh1zueLQwZlaIWmRPrXAiEAisGqaL+iZXecXYtyYI7LHmqlg3225TWrgJgEAHJhI0M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1403843,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg9lY0CRA9TVsSAnZWagAANxEP/0df3lZReUyBasZor9Eu\n04I8G4bmub22NJvoAmZnB2f59NccEGIGXW6ki7W1N2my/UBxHd4lxIBS2aQe\n2sWbZzOg6HclpnD0jcXU+ahggeQgrgwzyh11HBMOtS7aFaRJn1g5bHGyH372\nAb5KjlcQcJFOo3m5Ut52xfB6JxA7H/WKlFrw/e3tc6iDqvzOOGCm0X3KElHt\nh3+8q54lkfiIZz6x/6G+EQvte+DmFL6s/ZCLA28PTiRCEq0Qes1ctLx89PUD\nIR/ShYwXgv+InoC8V3agFF86kA8whR6ZSUUNMQzeJFDheL9zIDV/2yHE6s9z\nds81UXRXCPgoB1dd8/YHLDTUJD9oP+ybeXV7zzgSW+XL/CcWTC0w+HNApn4S\ncZJcQHdhb8hCTohpQc/9ZZF/LHGQzR//V6e4OPlFZWBSC1zZYTRNuiSqK8ez\nOqja1YUX4vdZxW1fqkitHM9s1DiRLEVXSOys3ecAPgr9wWxZr/FpHAZFi8zI\n5ePyLiEddD1N0jBFS+UB/MVI1/S4gr/atpTT9rKYTQNc6LUSeL21By4AELrL\nyM3pEzsLX+zCYFzk4ASIbZekPwM3OfkqBvr+/L4j5VzCVhqulfEN343vk85q\nUznXLa/WUKjLmrNVsLCMRY0vBgQ/UHdysERGcYYyzAx+u9+50Rn9/dlf8Y0l\nYQ5g\r\n=FVaF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"fdca2275a08b55825ec3b65bde8377b83814328f","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.5.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.6-beta.0","@es-joy/jsdoccomment":"^0.9.0-alpha.1","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.1","mocha":"^9.0.2","eslint":"7.31.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.5","typescript":"^4.3.5","@babel/core":"^7.14.6","@babel/node":"^7.14.7","lint-staged":"^11.0.1","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.7","@babel/eslint-parser":"^7.14.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.28.3","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.4.7_1626756660379_0.45520437461191565","host":"s3://npm-registry-packages"}},"35.5.0":{"name":"eslint-plugin-jsdoc","version":"35.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5be39a44c0165ec0fbbe87bd905c7ad2fa1fec21","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.5.0.tgz","fileCount":120,"integrity":"sha512-QBtfGeKvSFjbMLl28fRVyk/V7NhdSy+/4a6nOUXNsJ+Ya4G88YwbBiHIZgU4COeMKPb+OGGnrLwxYO0tZiw+kg==","signatures":[{"sig":"MEUCIBtdVgIrhXhiIrrwHp1UaDli6gGglNsk1umHo2Hl8dPJAiEA8/cgoKzl0E5zQo4HsanpdukZCrJsDIlmsX1EY4BCZfg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1405724,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg9n2sCRA9TVsSAnZWagAAL5cP/RLXom/t7P+pnl3KoS5S\n2/H0PhjOQ+mRFmZCROoD9aDdq9AyzDzsDL4XsJCzINxfS/G0bUp34qEMz8O3\nbRqE9FC4qUx05ZufHYj1xxze0ExChirbXi8T7JD1/ymTiawsXM0Gagbzx2Il\ngkgfHz9ngMy4auPElKAORuHJmrKZdYtbXhDVrCEigqU8n6f5Ct7sRNdG2c3O\nfbaEfYrRML7lVnuG7JJNbsJIwVUuuDHunbOZ8ZuL+Tz63a7imq3lOm9RnvAw\nh3pLVT9ofTGhTsYrTEgSbTCSFtHHaU3xEemKwgTiveVzfaTp1bgDqkJjuqYg\nyfm7YsAMxWEcdD84Vwc+cnWCrX/TlPw174Qx7yF6ebL1Bk46wc5w19IHjlGm\noLcnLJjiaaX1dbixtkEnu7YbSvmQpBrtqJm05kPQaHQltnr5cLSEBZXI3ML0\nTv9T35Pc/8RdepB8pcsEXLzJ5sOj8am1uLy57+oj1b0ACMRU80fscqhkT6hs\nU6iN4qpzhrXb3xtRLdPs4CzNpBoFbutK125/Z1YMhdx0EcveSAMwMNZcTtOq\nez+zr7WHcyLmDMsNsiGAIxjFlbd+RFDrrIEhrhITd7i7W5mVjpbgliCCjfKJ\nirm/K4xTNN+qhswFtj4FbiQ0AVGGLBNlSWffJ3MDJ53oB96a/4wcSlVFg5Gp\ncqcn\r\n=73CN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"8ef41a1e1d4d2627a65f70545de9c6c22e3ef162","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.5.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.6-beta.0","@es-joy/jsdoccomment":"^0.9.0-alpha.1","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.1","mocha":"^9.0.2","eslint":"7.31.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.5","typescript":"^4.3.5","@babel/core":"^7.14.6","@babel/node":"^7.14.7","lint-staged":"^11.0.1","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.7","@babel/eslint-parser":"^7.14.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.28.3","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.5.0_1626766764400_0.14989476723004103","host":"s3://npm-registry-packages"}},"35.5.1":{"name":"eslint-plugin-jsdoc","version":"35.5.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@35.5.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"45932ee22669bbe06c97b82b936d56361efad370","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-35.5.1.tgz","fileCount":120,"integrity":"sha512-pPYPWtsykwVEue1tYEyoppBj4dgF7XicF67tLLLraY6RQYBq7qMKjUHji19+hfiTtYKKBD0YfeK8hgjPAE5viw==","signatures":[{"sig":"MEUCIQDaZc+ME2K6A0kYymsBAdXIeEm9s1yAxCWoTCDo1TPtDAIgIcGIqcJLJFVmFtOFXG5r0dQHgO40AWEt2LQEVsvuSU4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1405723,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg+StXCRA9TVsSAnZWagAAV6sQAJ/FM29koRY6I7u0Hpit\nFHwXJA0GmekbvbcEqDmyfPBg2CV2bau6ETQX06es6Z7gtFeapUUupHrk9dVf\n1Kq5WfmrScDxYSOpvHEDV4v4AckuFNwjPnkHJhWcDkPk7xpV+OaL6K3uzvPP\nChEF4UntpMIe6olUu8tG28II5SGaFkMZ5nGU+wyj7M6x03j7rxrbgbm5Ujc5\nGsph+96HDMAuI7odAcHyVOiLB+TbML0K1KQWp8hPfj6tg/4nBIryiWIPmE2W\nv3Ua0JgQMmVWuEdSVwJEjCJ5xNOhOy7MgqApy4oE08YN3PHaitbOlLl9Fow4\nQWFgnvn7DQGdGvs0Tx54GTHKFZgy0+LWNBy8OMT2Gbdyo6zOPc1GEeppl6Lo\n9Yomb+PMF9IAY3oQNME/nX5bZ/RNKWNJm50nnOPuBGm3x6w7XobxDWn8iHif\n/0tpub+nLLDbUoDYK1H7xWNYaMQKNpT2gci/EE1qvdf0SJN6DKZKJFa2qQec\nJYzcxRqly89CNGPcn05V9zhkgnUU/muSihubl6cYyAKqGh5uRRzYtCAzQ0qO\nQwbtNmj3/Oz9x1Ifl8s5+LWamRuRaVG8PZ57mjE2l6hD8x7inXnXpcL9o2og\n6qEoQR6wXEECLkaLAaa6HiuNmh85lLAMwKPpM480I15YgHN2Txu+HhTykWOt\nQxz1\r\n=r+Vt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":">=12"},"gitHead":"c9b854bf1e71c2f2a58df094efe8061e1505ac96","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.5.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.6-beta.0","@es-joy/jsdoccomment":"0.9.0-alpha.1","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.1","mocha":"^9.0.2","eslint":"7.31.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.5","typescript":"^4.3.5","@babel/core":"^7.14.6","@babel/node":"^7.14.7","lint-staged":"^11.0.1","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.7","@babel/eslint-parser":"^7.14.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.28.3","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_35.5.1_1626942295650_0.37802982631676985","host":"s3://npm-registry-packages"}},"36.0.0":{"name":"eslint-plugin-jsdoc","version":"36.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@36.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"57732aa7746c91ffc583e32da246a27afd0be64f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-36.0.0.tgz","fileCount":120,"integrity":"sha512-MoSod34gXhaVluHXJI6S3Z6AcJADhGts6fBHUH3N+/b+zEQ546bhO0kAPoSS+IfcV8hixxjpaYqbw840r10UmQ==","signatures":[{"sig":"MEUCIGZ7Yz5Dkx7oxkhgqGcFhpwQwOFa90MVPdkf4e5jQpWZAiEA4pv7SfPRlKiBA++Cvpyt5KLyWFel26RaZvhK6W98uI0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1406089,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg/MsHCRA9TVsSAnZWagAA8VQP/j2ykNWbfGgIZN8y9Eev\ndxqh91h+XVgpB4ar+HUx8pGEU3AogP+s0N1gZx3kKaz6zq5+fZTNv/Ym2l/y\n4yfsjLdmY4RrqXh7A91tDfKCVnxqOo+RKxFqrv7Y8qXEILric4AD144md0RS\n/awmTN8T240wzB+sOkQrUhFfkXoZVyWuXlecdXz7n8XiUO6YJLoYdDnsXl7K\nJNCwdD4SrchgvURHNwO7XGdMfFHi2lId0AFuHaUJhw4BVi38BU5UDD4/jZL3\naFOLQEc4zcaQm+y0YD4B13t6qa0BkpCTuj7ROHb8Hph6gz+PghbkrJAp/yeh\nJJKGIKsVnI+vH7wHHmNcYJwjF0ptpQJJUJYaXFccju+SU8duWXjH5zxHyu9q\nDD5C6qFCuMOnc0hj5db54i7K5hYIFqaJuUnK9Rs9g81KuaER9FO3p5aawA2Q\nRmYrkyiBu7fGsuOaGUbO8blwkNA4q7ud8mIj/tSQQaZQHxdRXPUfxvqQKoek\nFl95rrvVe6fbqIPMOkOKrttjl0wOenNjH7ceWNo2KDs8VHfXx0PBSq3HJgVM\ntzI9poTE2//3vPyb90C2HOylHEWc3imjVdBhAiNN6UaXG4GJxoPGotHTk5u9\n25S/CYIloyzp4humgUnJeIi09x0wiyG/iQbjFs5774wXCeKAPdsaC8oWgvcl\nlcwH\r\n=Yhv9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12.20 || ^14.13.0 || ^16"},"gitHead":"9eed57e7290c20b66ecd72b367b9db938686c6ce","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.5.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.6-beta.3","@es-joy/jsdoccomment":"0.9.0-alpha.6","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.1","mocha":"^9.0.2","eslint":"7.31.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.8","typescript":"^4.3.5","@babel/core":"^7.14.8","@babel/node":"^7.14.7","lint-staged":"^11.1.1","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.8","@babel/eslint-parser":"^7.14.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.28.4","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_36.0.0_1627179783021_0.4575946791251151","host":"s3://npm-registry-packages"}},"36.0.1":{"name":"eslint-plugin-jsdoc","version":"36.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@36.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"901dafd6eefb3473c6aa0287b196e365aa015336","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-36.0.1.tgz","fileCount":120,"integrity":"sha512-uls9ebdavDMrrjmfAc1Fvk8DOqDrQNTCQvsSmjm9/UEiD/TfJbZfkuadwOgbiPVPOGHjkVE4Yh8WyNUHn1xNFA==","signatures":[{"sig":"MEUCICRL235ozO/DCZp9eOpajcgWgBnTgjha1U4p5O9gZg6dAiEA9QCGEtinsPKyWVIM4BkK+/bmlfFM/zVt6387S0VqGQk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1406089,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg/NNdCRA9TVsSAnZWagAAFcEP/RZMBkWE2Bcm2m2FhaL+\na6AcIEbQfRNnfJDFAiyvmosXwAAMVNi1ikui6mX+xCZlP9oMiNeWFVFGXwpS\n7aIm/c+eavKstNTjMRTNX59qICGFpt9HcrqhQwgaHApBT/kjsnLvF6CA7Wcx\nsRGr3UHqj2WvxGobPcqkgr09hY9Cr8ywIdNwtiuh+StHLtILgETIo3LVPtS5\n40S0QmLflV9I/nGVIqktUQodbLrPpYp+Rdcqid8Xx4OZJ4Ud5TG3aqZBCZlQ\nmHtAtu/xhDN/P+9LoBKdmbUZVoHSipD1rwc44CfCjpjZTPz+X1PJFtNDTy+C\nYtu7+ZrE3i4oSAI4XnIkRx4bdyntSPbbS2qhLUDDJkimg26cx5kRhfUIY26l\nPPymW/LZD03y3uKoeILEsnRsnD3aTKE4dVmF5fhQfuhSAzciOWVQqsbEA0wt\n+b/eNa8WoEqYAvG3ZM22UMNXVLrJVZg6OjeS8vliu9cWB/bOktbkM6CTlkr+\nxRqEXTaKVBZxa4jvPdAHvlfc8wkjcZVWOttLWU4VQcVO/CAK833zi7vNY79G\ngjIYmhwhmN/HVNtSZKvE83NHHwH3C9p4cs6W+TRLvBRDxp4hFzVI1PWDyuFi\nmb2y8CdG+QsYCUXMaP7UKfj0JhBT+KmbtTDZAG9CdxHOp/oeEPvwOCWgrZIY\n8jvL\r\n=OXyo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12.20 || ^14.14.0 || ^16"},"gitHead":"a469b832841c01758bb1ecee806c0e6cc3b8a2a9","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.5.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.6-beta.3","@es-joy/jsdoccomment":"0.9.0-alpha.6","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.1","mocha":"^9.0.2","eslint":"7.31.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.8","typescript":"^4.3.5","@babel/core":"^7.14.8","@babel/node":"^7.14.7","lint-staged":"^11.1.1","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.8","@babel/eslint-parser":"^7.14.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.28.4","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_36.0.1_1627181916907_0.6142466071666439","host":"s3://npm-registry-packages"}},"36.0.2":{"name":"eslint-plugin-jsdoc","version":"36.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@36.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6348b0bca5f5c8baebdad31ad40e435d8cfad45d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-36.0.2.tgz","fileCount":120,"integrity":"sha512-cpb8IVYSrBqanUVeIO3Gfk5KD6PwM/7muZBgklCJP8q7ry1HuT4kriB+0EENkUFnVq0OCFmoo9F+edAnvTQvSw==","signatures":[{"sig":"MEYCIQCOVhWxV9Mfi3ELochAQti8kVW4Xuci4XGy8zF4AE9hwQIhAJ5ZRuGva7h3YfwN1wPiHxNM1mMXimgVffpaIoEFYfDl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1406507,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg/NkTCRA9TVsSAnZWagAAYMEQAIS3ph8pLknCPN4gEVVA\nvVwWLyGcO/4QFArxFQbUxpXZGYlx1YQWLWjBRh7Xmla5r21gSxn5xDBzh3H/\nEk5Q5oPIv/I2p1l0CgH4biC3qTUpZqzpNH88tufE9RPe5ppPuyrcCAnMgzS3\n9nFIofjhR+z/468hVU3eZ1tSYaW0+BMOtjSQiFCw6OKy6EIH+w0O+DjpiSni\nTeQVr1F9n04pHbnSjwzyWOI82e5SwuKeTy9m9jderLmecN7vGuLy/GNgguZ2\nAZ52C2Foe5gwjagwHxM+fKZ/ehL2M0T6NuT5iWEXfAn4h5Lkn82N7JyM9tfc\nhG+3iXXxomDOLgXJJ1Aq+IwoeQFWto5+gKFvrkOj+x1pRQEgsLmSShE7WFzt\nte4XtIDGRrMxooqGTwEGzRIRVd856U4kvCISyOlppWnvN1phTkcLXgBJnZJG\nfE6XTq8TJv/LC5MBi/WrLrIG7HnA7MhKeWRxS2pNKBLbgvOBWsD7j9TKHxjC\nAaz4S0KuX1HpKQonhD5vtAW7q4W1qEh//OthP/08+oRUYzB5dyevVIw9Tfdo\ncrTEaFni4LmCMCss8MW2UxR5fVEQTAEiXc0rYtOxCBCKCvzHc3VNVna4yEtc\nn28ywsewwQnkcAF7T7zCJnd9gwHsZ7EkJ3tOkiygQdzREYRV9sdxoH62LHdF\nn9PK\r\n=Xwsy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12.20 || ^14.14.0 || ^16"},"gitHead":"f9a27e385a81c7c07272b9bd1be9e3b415b27fc0","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --recursive --require @babel/register --reporter progress --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --recursive --require @babel/register --reporter progress --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.5.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.1.6-beta.3","@es-joy/jsdoccomment":"0.9.0-alpha.6","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.1","mocha":"^9.0.2","eslint":"7.31.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.8","typescript":"^4.3.5","@babel/core":"^7.14.8","@babel/node":"^7.14.7","lint-staged":"^11.1.1","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.8","@babel/eslint-parser":"^7.14.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.28.4","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_36.0.2_1627183379526_0.07168006564526874","host":"s3://npm-registry-packages"}},"36.0.3":{"name":"eslint-plugin-jsdoc","version":"36.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@36.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6aaddd7b44f1f82469d4099d9bba44dda718d373","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-36.0.3.tgz","fileCount":120,"integrity":"sha512-auLdPxoXXXchPj+XUKofGZaal0HLG0GrddY3pw81SkGy9F6SgPEu/28rVMHzzy/IVWPIYzKwZk2uZM0VgwDdAw==","signatures":[{"sig":"MEUCIEynoKJPHSLpyrsR6Fwv2+vmHJuZMdljhuZ3+9IBqgl5AiEAmS/JonaaDoKM69uN2cmRoHaCqi3ayId03yxIVPYxS14=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1405933,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg/2SlCRA9TVsSAnZWagAAI50P/RUhNKs0Eaufde1aWH93\nmjWkn9ThfsAEaWnqG0MrzHQ+ONknxIHH0+TnVv0NSAreTKsVUXpssLiNYBCl\n/dXXHrH3IX+aafcgKluwIQMFCfTgitnrEkHc6lexJQQVyVZhQ5ve/P3HrWJR\ndyBfeMq0/j4bb6qUSWoPX/0r5o3aBZMRn1129ol8xrqdJPdOuKimzfwnH4Pf\nxavJeRGjDPzh6pi/50H8OKVQHv80SNOg7je4NAzCiYvyDSa2Yhj5usUXsAJA\neXLL0ZNVE1E0ohGHWO3cVYaDGeJ1zGEgADswkZP74pGbSnrIv+hO6IKd684D\nr8k7c0O/J+GBeKBaRSh+n/FrhsYkuZ6sIouINEzuIXTIpls3lzCfXhWoOz8q\nu1FInVkGQnqF3QAGT7I4tTjXUUHiBwLhMnX2IEz6lE4gOyFb/UeDt7RPAjgq\n6vZXUqJK66L4lQuxbjH1C/i4S5Tm+zkKMrPJuDx2RqeboD7yhPEayY3NFmdH\n37n/YCtsTJedvZsjxlHDItca1hejMX+f98i8qE+qNSR9yn/Q5L5xO9pDIdL+\nlbI9/CmqCz1anFMAwsRpBOkcVpnBD13FPA0r0GPM3WLA7n8bxHvm7WivS7Ub\nRGA5g1YxaZmNmeloWcjRsCKMSZ/Yk8neLXIh51Whl6qFLpgVOO0M7Ygdj+br\nVOPt\r\n=8x8n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12.20 || ^14.14.0 || ^16"},"gitHead":"c8eee8f197a924b4f461046f975c34d728ab03cc","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.5.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.2.1","@es-joy/jsdoccomment":"0.10.2","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.1","mocha":"^9.0.3","eslint":"7.31.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.8","typescript":"^4.3.5","@babel/core":"^7.14.8","@babel/node":"^7.14.7","lint-staged":"^11.1.1","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.8","@babel/eslint-parser":"^7.14.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.28.5","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_36.0.3_1627350181060_0.2503715891950751","host":"s3://npm-registry-packages"}},"36.0.4":{"name":"eslint-plugin-jsdoc","version":"36.0.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@36.0.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"811f1c30a9c6eee3d62f4ceedd6b15717a5817c9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-36.0.4.tgz","fileCount":120,"integrity":"sha512-Ajq0NYohZNXol9UBdXWiQBAFcsYs/+HIiVsoiFAMpW3F0ln4Kis2BK9QZABLzfb1Yb+J0bCcaMOlO6SizX3G2w==","signatures":[{"sig":"MEUCIAhPZ9k5XTUHKPxNgbzyzep2l1rLLntNBws6Q3dmwsq9AiEAi/LkRsfWJrnYavcCEqPEqNBwd1sp3cEuVfDJZ61el60=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1405933,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhABN/CRA9TVsSAnZWagAAp4IP/26eXlvBwQI6rOAuu+hA\nXTyyGDUIoYlrJvK/Gj0AAiv58E2LQ3pEsepLiRuMT96Oa0u+3XP2P03nT8+i\nGPzz2lwhbcsroKuyk0XXRgVdFGmFj1WciHzA8DPFp3TgthqrnKl4/DBWqmDF\nUptrNPe4+taeL0mpl3YJgJTqZ9w79dwPTTOVu3Ztu58DNropDGlV4+FSJMLo\ndFLFGsI9uNd8lRdbUhws9SBkcw7DtANiSURIz4Hb7YMqp306qvWBtCJ/3SVA\nkZrB0UjWLTg/VNbV/Z6+r577CjG7TVxK3CiJnDKGesBnYsSGbhdBgHdmlFDF\nfuOK6a7njQIk1Kf6yGroMeNBT1TTPjTPHLz2bocOxVurM2rTnrQuXHHwi9PO\nW2QUya+m7xD82Per5rFZ8QS8/jZ1GuGRlq8F9XRKzln1tmTtJiVAtaC84x1F\ni3LPxQgUz+du4zSGnb238C376t6Ze5V8F84kV88K6+2DyhgJFLzA+1968dkn\n7WNtb+2DH1FgZz0nR/IPQLPOkQhFoyeQDxSTsoXNFLl6QrGOXI7e8YjBW6x6\nJ91I3eNrx6MECxB0/6Y3Q7Ras9qDVVgqsdQzB8utnNWnM9SwOZ5Tb0Joqo71\n1MciCLzYblmmqFdLo1gJrQwxA9RC9AEDdq3pDxUIASsyLz5tIPRGftc4KriO\nYf8/\r\n=s39E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12.20 || ^14.14.0 || ^16"},"gitHead":"508bf18946fd04ea65b11c1a6258296e36beeda1","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.5.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.2.1","@es-joy/jsdoccomment":"0.10.3","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.0.4"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.1","mocha":"^9.0.3","eslint":"7.31.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.8","typescript":"^4.3.5","@babel/core":"^7.14.8","@babel/node":"^7.14.7","lint-staged":"^11.1.1","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.8","@babel/eslint-parser":"^7.14.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.28.5","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_36.0.4_1627394943587_0.1266383925261858","host":"s3://npm-registry-packages"}},"36.0.5":{"name":"eslint-plugin-jsdoc","version":"36.0.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@36.0.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"74aa66101239717ecaa0a35838b21a54d20eb984","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-36.0.5.tgz","fileCount":120,"integrity":"sha512-WEWTLDzs0CAZv07dbJ4Ie78ASLlKzbCEH/knoyumBUKC0Pm2ndm65f/mfi0jqseHO6IiMiDRhTx08RPedWXqHA==","signatures":[{"sig":"MEUCIQC3+Kq68II0zLsGfdlLvGLs2BJVwzhZNSfL0/K/UMPezwIgSMn2JY/5v+OFyF8AKJawsSJtV1z04b1Suur6aaTDHrA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1406025,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhAIs0CRA9TVsSAnZWagAAGcoP/i2lBJGIhFQYY3pdNfqy\nRRcoJy99Ufe6p2q+QHt3kR+IinxxECsy36IEDzbwZ1nWMifgvT9sdrrr2NZS\nm06PW09r0rdXZV9EghMUKILfD6/MLpLKBJiMIIl59XTeipArPX+UQ8/Ij3Ng\np/3xho0bHPcqe+xKk/8hxJvTnpbRBOX3OKH+zFEPp2nOPFw1bW6rKKP77PTr\nuwtjwjohblWx743Au/tSr6+618n+4pjBXdJGINSUUkJ/yA0ifJ2pqaNp4Udu\n7OTfp33MSab/mWvy7rOORPzxAI6iaU3ZlzV4l7hwDF8OLgJIxxhkeuKT8obP\n4LVcwv0/TOpN/CHEezHrF9h+KaSag5EcISuxR0ce3+QRsdqHIKpI3STPOeBC\nE6agrRH9pK4mEto7eOwSrOn0+cyHOUaN0i4pn9qz+Vmoait3hdJX5gzjtPIk\n45b/jTV3wwbDR5wHRdMerlYgtJz8Jcuae91dDZMp4U3b73xT5gpGDI2GXXeo\n45gTsGXNSUX1FRSD6qf2K9fMcjIGu4A1+gu8Pah15fHVq2X5UqRq8PvJJpJb\nHPxlWxHXiJQ2Nf6Mt5NNv1UjDhXf965u0ZKBsLjMyL5qhs3eafDKDeMDsoqc\nZyRfY7KKfs/FWO0ilpr+GnWdutgPsRF032QvW4f5bn6VsJZsfVNTIvPlUTEw\n1qqR\r\n=KbT0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12.20 || ^14.14.0 || ^16"},"gitHead":"80334d847909530999309be54994d9eb7482ce75","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.5.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.2.1","@es-joy/jsdoccomment":"0.10.6","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.1.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.1","mocha":"^9.0.3","eslint":"7.31.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.8","typescript":"^4.3.5","@babel/core":"^7.14.8","@babel/node":"^7.14.7","lint-staged":"^11.1.1","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.8","@babel/eslint-parser":"^7.14.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.28.5","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_36.0.5_1627425588034_0.6605892640128783","host":"s3://npm-registry-packages"}},"36.0.6":{"name":"eslint-plugin-jsdoc","version":"36.0.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@36.0.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b42af59fe92b57f86e789a7dff661b0cb4d41e61","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-36.0.6.tgz","fileCount":120,"integrity":"sha512-vOm27rI2SMfi1bOAYmzzGkanMCD/boquKwvN5ECi8EF9ASsXJwlnCzYtiOYpsDpbC2+6JXEHAmWMkqYNA3BWRw==","signatures":[{"sig":"MEUCIQDEQgVZ4rpRdWYt+pAiME1ZdqJeAgMzax0j4SLOzRPwgwIgZFsjye3wO3Bt6KYjTVO7muQ4glq/HxRzZYn1GikX8ZA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1406053,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhAPwnCRA9TVsSAnZWagAA0fAP/0aNX4BsTilkF2Sc+LU2\nPakc+QC3c1VwjeCErQG25TKFL81OG3JGMbbi4EFWNG2erNSQ/dW11Ksr3N5e\n3E3UW/tqFR6Vg5LPbdbUjB9FaJ7ZeJfVFnx9XUPD05xB2LBe0izeBoRNPLiK\nM3ZXPNBY355grOyf07E5bWNVlxgaVC1GntP2dL8XjczCvYK13eHr7ULL1Fh9\n5EEQvXVVVl/UwelmXtrM3nPDArAj233Uu0qM1se9+5lVMzY4DHkFiFI8aun1\na1/5k0iLme826/XaN/cxZHmZHLqj1f74+CNqUYiDBFs+csQ7zg//nDedWn1r\nrFpIpcaehXxwak9af6ISBhnN3aFKR4W95GoVSWBfutWUy704by6nkgctKihQ\n/4fq4IyYJ/BI96fyKifywiOc1/q7UADl+ZMNrNHMKyT5ccZbcPJqYbZvw3Xq\nCaPEd/orcD//tICUPG8r6ixoMQXc7tgMNC0allZZinYp+SA51lO6YUDQrti9\n7HrmF2j4mGmy3H4iyz4av0Y1qhRMA8gB7cP/F8eP9DhFVas1//eXm2S6sb+R\n5w7BALcDJ+16BKnK7KyKiiE5pVuDKymqbNKqk/TuXsqcnb1y7fUD/f6qWUHf\nekQbXgWTuHuPgdQdC7gn3cKRd7OlVlee25cGXFejn7nj5bfvyFlR4WoQT61y\nBaOq\r\n=PCkr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12.20 || ^14.14.0 || ^16"},"gitHead":"0ace59d0032525c831b3a31e7f63165c59f3ab60","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.5.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.2.3","@es-joy/jsdoccomment":"0.10.7","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.1.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.1","mocha":"^9.0.3","eslint":"7.31.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.8","typescript":"^4.3.5","@babel/core":"^7.14.8","@babel/node":"^7.14.7","lint-staged":"^11.1.1","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.8","@babel/eslint-parser":"^7.14.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.28.5","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_36.0.6_1627454503642_0.9992801349672729","host":"s3://npm-registry-packages"}},"36.0.7":{"name":"eslint-plugin-jsdoc","version":"36.0.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@36.0.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6e6f9897fc2ff3b3934b09c2748b998bc03d2bf6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-36.0.7.tgz","fileCount":120,"integrity":"sha512-x73l/WCRQ1qCjLq46Ca7csuGd5o3y3vbJIa3cktg11tdf3UZleBdIXKN9Cf0xjs3tXYPEy2SoNXowT8ydnjNDQ==","signatures":[{"sig":"MEQCIEbJC2+aquBMzTW5KxMfUkBlPFB4xEBAg682CFeLiuFXAiBBGgN/DOzJsGOpCqu526H96TTY6/u6SqhshX8ggN+lfw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1405887,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhE5hWCRA9TVsSAnZWagAAqo4P/RvbyAnO1dbKf4IqX8aJ\nOsQGodjzUau/84wxIgmY9GoAnG7swKMoSS/zmV5ewAzuZX45sxpabVKdyTC7\n2f72Lyx/b1kgXnCNB5bCQTjLH1n918hKmZnwj9D7upI6n/QB5xZDEuSjcdiC\nGgoLZcMdW7JJs1mcs5Ck4xDi7RzvIn/aQvTJzjHq3eo+cIf/TX/nblFqXNNA\nGox5sW73+JdabA6hJwYolMsiH5zGV8YBPszm3pSLcIzNqrYl/AiaS+gOTZ7l\nYR6UYEWrfvteHuE9cLdnIftFyAl0huumdgm39n+ahDYvcXfJ/BZOt7rFYauD\nN+elZJg8LMQ/6JSRLBVhwAgQ6oyAE/wAcdRy0iP+Vg0hIU5debozQLZtMgHh\n6+o/u3s3dhxLbYLQdQEe4M9IzXOOhdc9Ww0gXdcSGDnrzJpxpl/0x1AcFV0+\nQjS8+Y5lg0cRuykW2X9wq0GA13DOkq6ehlFf0Z2VN20jf8iXnWeInaDxwHZw\nu+TctUvD1j7h7JFd/MDs0T3qzF7InFzPwoJ68WYAYn9W54iU3ztVKu8jHapb\nyuQb7AR4/mnYNNk/+RGNr9PQYhcbLzUIIVaKAwVrszwHdvyw9C9xke7f04lJ\nOX/fPZCsj26FyXd7855yencd+02lyfjIjRRPGRa5JLPi6KqGZ34Rsvw4676L\nZFWS\r\n=xqsF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12.20 || ^14.14.0 || ^16"},"gitHead":"135a356e9aecf7b019a5b5c5bf600e8453576c07","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.6.1","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.2.3","@es-joy/jsdoccomment":"0.10.7","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.1.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.1","mocha":"^9.0.3","eslint":"7.31.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.8","typescript":"^4.3.5","@babel/core":"^7.14.8","@babel/node":"^7.14.7","lint-staged":"^11.1.1","open-editor":"^3.0.0","@babel/register":"^7.14.5","semantic-release":"^17.4.4","@babel/preset-env":"^7.14.8","@babel/eslint-parser":"^7.14.7","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.28.5","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_36.0.7_1628674134602_0.012881479036159105","host":"s3://npm-registry-packages"}},"36.0.8":{"name":"eslint-plugin-jsdoc","version":"36.0.8","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@36.0.8","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"cd72f76593c8fb3362374b0052d4d49b2711408a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-36.0.8.tgz","fileCount":120,"integrity":"sha512-brNjHvRuBy5CaV01mSp6WljrO/T8fHNj0DXG38odOGDnhI7HdcbLKX7DpSvg2Rfcifwh8GlnNFzx13sI05t3bg==","signatures":[{"sig":"MEQCIGufBGO4jd/X4TxHVQjazhleQZE2jew52KMmwIOxYrDEAiA4HcJ5u1u66P6ps2BRa20dZ7vImMnQ/0bFyDThVnxu9Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1405886,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJbL5CRA9TVsSAnZWagAA8o0P/Rzyd4jGVNxZH1YVvG/u\nyAu6qZVHwQIOETssGtsJvS4rnSu1/DMNFmRN5a7dE3t43dQF+O3j4HTnSiuR\n4wlWMBaGXCPd55RwglLghdGRCRNbd8ih6dO5pVyBTUY3ZshK4aIrkGE/79iB\nqUsP6GWEVUODZi5bWPQNFEpHddqS9baKmOyHMn1SXflP2o5J67LAjTRcnPqX\nswdADp6JOZffhA0HMKxHaTl3hdUN757vStaOCbz2B8FjHzs/bDSiwSoJ1kJe\nYVzDj1PwvQjxxD1EQrmYLxgV5dnm/oaOnwNeAE2qTOrQnMH+x5HdfTzbxvM4\nlX7+w03HK/xksHYFa46IeaaMLT5+dgqEYXcBhXwfQAdNPHe+aaQZzT+5NyBj\n9iM+4Cjo49DZrqIk1gcSCa6KjCQqMzwLkdalwIEARiHynycRmlYNileopJfF\nw4gNVRZYzSz3rUYrp2g6THMKLJe1/qHHsq4kOSAxAEENeo6hZSgZcfXH4MhK\n3S+ogf+w8KA3UY8T7Q69z3yVsbvaV6/GLmNQsqz4sCamIBY2hB3WUsgAPyOg\nN5DTZvBsqPqpWGsSkxrV9WYD62kn32HJHbh7UeIccvNTqpeEuIxzTwX8HIHN\nLshSoZZXU10fs65wXLM+CBTYff6z62q3g/YKZMvahMHhyJiJYJprc5u6gAui\nOjSI\r\n=RqlT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16"},"gitHead":"63640e068a57b61e5c1ecc11712dd7885360af86","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.7.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.2.4","@es-joy/jsdoccomment":"0.10.8","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.1.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.2","mocha":"^9.1.0","eslint":"7.32.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.14.8","typescript":"^4.3.5","@babel/core":"^7.15.0","@babel/node":"^7.14.9","lint-staged":"^11.1.2","open-editor":"^3.0.0","@babel/register":"^7.15.3","semantic-release":"^17.4.6","@babel/preset-env":"^7.15.0","@babel/eslint-parser":"^7.15.0","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^26.2.3","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.29.3","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_36.0.8_1629860601124_0.2035129219191789","host":"s3://npm-registry-packages"}},"36.1.0":{"name":"eslint-plugin-jsdoc","version":"36.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@36.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"8dfe5f27edfb6aa3812e6d86ccaea849ddc86b03","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-36.1.0.tgz","fileCount":120,"integrity":"sha512-Qpied2AJCQcScxfzTObLKRiP5QgLXjMU/ITjBagEV5p2Q/HpumD1EQtazdRYdjDSwPmXhwOl2yquwOGQ4HOJNw==","signatures":[{"sig":"MEQCIG9hvBsVzfePJ0RUhqf0705AinhC7FpS07T2ufgrJHDfAiB57dFIPtlV/O6DaHrAlnr54OCIUnyK60FvK2uEs56bMg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1407733,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhN3d8CRA9TVsSAnZWagAA/VsQAIA/BZmroJzLc1A5nXa6\nxsAd2Vo6M19eSyrWZeIwK09VQD7hyGjq7gzep2bEc6wlyvIvRzDc0BqTqc+4\n+GriQIE4f58mZ0m+grbF2ZMz7BJ8Xenzm2Ly6lKC4Zhsn5+t3pHPvda7JowH\nivdqVMHy5XKLobbM7kPwSPtGBB/tU1OGIHrcVRd7K7dDWpiwCtLETpaZLsqh\niDFeteVzdSaXl53904jaZ9RU0DE8UVgZEXm6gs795vs7JeXk9OCKXY58pYJF\nZ6h1w5iqKVwLt4LIGXYilK/n/b6fpjKfWQFF3dMXNocIaw6WmY0V88s0BIsw\nt9JCEd9EuK4+4i9+jFkbwLydj6Gh3JeVAKfXIT2srcXIlBpMFod0XR4MtFlT\n9eneATOJQbjVrHaOWZWoNBq+SiAZGRlfkykHms2yeNMCnCEcReziC8VJV0bZ\nkzU3P6W+MV7rT7NW1cFQYplvQp4gkuKJKsB/XOkTCeChfM/iYbx8TmMII/rT\nO5O3m6YGLeG7MfKOVIX6tmjESiLtWuooHqKKw/xgoSt4gPRMd6gAtdYoaosO\nA28MBv0VxGVshn1h48iDC/+LUYMNw0z1slwXgyBjapKvwvV4kV3dg325QClu\npvz9wO7JC3qHpCGwSWlpjUvnhgjf3AfZ6Nd6g6vFtHzuS1CMG9evl2m9pEOG\n2W2q\r\n=XzZ5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16"},"gitHead":"f8297aa43df3011c496e12b0986cb6bd9b7bcb02","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.9.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.2.4","@es-joy/jsdoccomment":"0.10.8","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.1.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.2","mocha":"^9.1.1","eslint":"7.32.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.15.4","typescript":"^4.4.2","@babel/core":"^7.15.5","@babel/node":"^7.15.4","lint-staged":"^11.1.2","open-editor":"^3.0.0","@babel/register":"^7.15.3","semantic-release":"^17.4.7","@babel/preset-env":"^7.15.4","@babel/eslint-parser":"^7.15.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^27.0.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.31.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_36.1.0_1631025019946_0.5638264046546844","host":"s3://npm-registry-packages"}},"36.1.1":{"name":"eslint-plugin-jsdoc","version":"36.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@36.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"124cd0e53a5d07f01ebde916a96dd1a6009625d6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-36.1.1.tgz","fileCount":120,"integrity":"sha512-nuLDvH1EJaKx0PCa9oeQIxH6pACIhZd1gkalTUxZbaxxwokjs7TplqY0Q8Ew3CoZaf5aowm0g/Z3JGHCatt+gQ==","signatures":[{"sig":"MEUCIAG/YFlLQClULRcCtlzzloHxRJNpYWjZ+joeuvZ/DZBmAiEAs+33zUW5BJWM/6bjZOLEF3Go4Yn5+FWSzG1iKAYWmxM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1407920},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16"},"gitHead":"0f4d8e0af8d17872ed0919077572b9fa4a6f4ec2","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --parallel --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.12.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.11.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.2.4","@es-joy/jsdoccomment":"0.10.8","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^1.1.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.1.7","husky":"^7.0.2","mocha":"^9.1.1","eslint":"7.32.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.15.4","typescript":"^4.4.2","@babel/core":"^7.15.5","@babel/node":"^7.15.4","lint-staged":"^11.1.2","open-editor":"^3.0.0","@babel/register":"^7.15.3","semantic-release":"^17.4.7","@babel/preset-env":"^7.15.4","@babel/eslint-parser":"^7.15.4","babel-plugin-istanbul":"^6.0.0","eslint-config-canonical":"^27.0.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^4.31.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^6.0.0 || ^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_36.1.1_1633747435296_0.01851611799521158","host":"s3://npm-registry-packages"}},"37.0.0":{"name":"eslint-plugin-jsdoc","version":"37.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b7094c7a7dfaf48c037cd781fe7cef53ff26b2d4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.0.0.tgz","fileCount":120,"integrity":"sha512-Pv5/Y9stNPHJEoF9GM+pcB9nOT4sNToVxv9v5vsyr8tbam0tM4DUKFShtJBZ+fZFdwhFaQU1hGcPQqsjy+dKCQ==","signatures":[{"sig":"MEYCIQD6qTjOsJeJgIt2Tt+D7fq9YIot1jZM+5Tz+UWM3uxHDwIhAOpBtVWuIv1+relnhpUDVvnyFmoXwHyCRfS54wC1ufi8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1410302},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"14d7832c6e4dd3608a80e22eb333ffcb15bf9e07","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"17.0.1","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.2.4","@es-joy/jsdoccomment":"0.12.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.1.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.15.7","typescript":"^4.4.4","@babel/core":"^7.15.8","@babel/node":"^7.15.8","lint-staged":"^11.2.3","open-editor":"^3.0.0","@babel/register":"^7.15.3","semantic-release":"^18.0.0","@babel/preset-env":"^7.15.8","@babel/eslint-parser":"^7.15.8","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^30.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.1.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.0.0_1634958958028_0.7385439772883531","host":"s3://npm-registry-packages"}},"37.0.1":{"name":"eslint-plugin-jsdoc","version":"37.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"38a9ce43d44137f0c904b48a34b24f6d3712d0cd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.0.1.tgz","fileCount":120,"integrity":"sha512-J2ji6SkW7hmpLuMo3HeFIlLUN0XrAaS4ezz0UM7EA4aUITwSlb1hzb63RBmYctP9Tx1YX0Xy0MSMGOI170w7Dg==","signatures":[{"sig":"MEQCIE+R8k7Y+ZRDU9uLwqN5E557TsyJN67wVimyTZCCAXcKAiBrHee7uDHEGHwW2u1YUSM/fUxJlQAkYtnFVNE7fi30+Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1410579},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"b44d0adedf28512656fcd3005d66d98d4dbba498","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"17.0.1","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.2.4","@es-joy/jsdoccomment":"0.12.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.1.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.15.7","typescript":"^4.4.4","@babel/core":"^7.15.8","@babel/node":"^7.15.8","lint-staged":"^11.2.4","open-editor":"^3.0.0","@babel/register":"^7.15.3","semantic-release":"^18.0.0","@babel/preset-env":"^7.15.8","@babel/eslint-parser":"^7.15.8","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^32.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.2.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.0.1_1635211754443_0.4847540263909904","host":"s3://npm-registry-packages"}},"37.0.2":{"name":"eslint-plugin-jsdoc","version":"37.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"c08cf45a770d8195ccd5fdba9d1d7ed157d92d33","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.0.2.tgz","fileCount":120,"integrity":"sha512-ZWc8X2fpyHtTrjZta57Orhug5NJwAS3r92iw6ioSpIYk0PV8uoutVMKZoNBXUSe0lRu0/Wg8QMz55PXm1VcM1Q==","signatures":[{"sig":"MEUCIQDVGj6vRGiP82jjeyTgBOLX0hptalZT8AYJjdBf+6pK3wIgMeq0Yggb6gLSA8GqgZ8/RK8QOJ4YA4zWqaM+ZV4NUEU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1413221},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"23578a964d461ff0b60063c7636c0bfa2c4d6eaf","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.12.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.2.4","@es-joy/jsdoccomment":"0.12.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.1.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.15.7","typescript":"^4.4.4","@babel/core":"^7.15.8","@babel/node":"^7.15.8","lint-staged":"^11.2.4","open-editor":"^3.0.0","@babel/register":"^7.15.3","semantic-release":"^18.0.0","@babel/preset-env":"^7.15.8","@babel/eslint-parser":"^7.15.8","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^32.10.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.2.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.0.2_1635228760665_0.5448489487019312","host":"s3://npm-registry-packages"}},"37.0.3":{"name":"eslint-plugin-jsdoc","version":"37.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"42ddd0393c166c2724a7fdee808b94ab1d9dfb00","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.0.3.tgz","fileCount":120,"integrity":"sha512-Qg/gIZAfcrM4Qu/JzcnxPGD45Je6wPLFzMZQboeqit/CL4aY6wuzBTkgUMiWXfw/PaPl+sb0GF1XdBlV23ReDA==","signatures":[{"sig":"MEYCIQDCD8zX2w5E8uW8jl2C7kLmgBwopplCvnGfj0LcjL9eFAIhAOFUcsNM3OYlbxpzGZT2PUlsWBEZpDtDHapYnuvugW3f","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1413529},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"a876af848af2fe31d7f00b3d19c14833eb7b72b0","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.12.0","dependencies":{"debug":"^4.3.2","lodash":"^4.17.21","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.2.4","@es-joy/jsdoccomment":"0.12.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.1.0","rimraf":"^3.0.2","gitdown":"^3.1.4","cross-env":"^7.0.3","@babel/cli":"^7.15.7","typescript":"^4.4.4","@babel/core":"^7.15.8","@babel/node":"^7.15.8","lint-staged":"^11.2.4","open-editor":"^3.0.0","@babel/register":"^7.15.3","semantic-release":"^18.0.0","@babel/preset-env":"^7.15.8","@babel/eslint-parser":"^7.15.8","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^32.12.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.2.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.14.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.0.3_1635239759973_0.5387683164687218","host":"s3://npm-registry-packages"}},"37.1.0":{"name":"eslint-plugin-jsdoc","version":"37.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"88ccd4a70453f0660f0e14e9a67b91a324c32cfd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.1.0.tgz","fileCount":120,"integrity":"sha512-DpkFzX5Sqkqzy4MCgowhDXmusWcF1Gn7wYnphdGfWmIkoQr6SwL0jEtltGAVyF5Rj6ACi6ydw0oCCI5hF3yz6w==","signatures":[{"sig":"MEUCIG1wuUG0KMscS9ZyNVqssa/XsXDqCwfnJInUD9ZXhoFxAiEA97JWwOijJF9MAlyKi0gq+1FOYvgBtTQxN3Hl9a2A/i0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1413515,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhpxhNCRA9TVsSAnZWagAARhUP/3Mr3c10sRqWZNMCvDxA\nAB/7srArbOkX7Xvxmrc/vdJutL96RI64cuYtZV2rPa72Xf3EGh/4/Kulz3ip\nHL+WzO56ckfIM7wX2Q2BxgBnCemJMUbyaBud7qS1No7w6DVa6h5EW40MXAF4\nv0bLPduu+0AsLqCxyMdzzq7y0TLXiJX9C/crU2Vlu43ap7gg/V7VM3d+QPH9\nh2H1V5GVy4Hjh/UyAnAx57gRE5/RJj1jFxfU250t7SI/UB2jn4RbRCPMS9Xm\njmtQa+AYz4FWH9CbXl5lig3oOqVMLcJdBu3A5BEw74coF6HUBIAYW16fcZxN\nbZ0P/mK+gMLIvWk294nHq+/na8PSf/+eDRfer6tQ8pzKBFXFSfp7FbynKtty\nHEFbkd51VzexiAS+FFeFzI5B0bmDZ6gcYnyo90VsO1kQij8qMA31MRrbqwp+\nV+KLSZBEtqQuR0EptuDmMOV0SyLe4hBSMH4RUuZVBkzJ1L8gLCyCvLw0Dqmv\n9SvAnzaCEyVQ0OYbp/bzywiltEOFnB6VxoKRWQvddsB2KMjLF0f8CoGLmcOg\nUV253gjF8Gj+wdEgOcRzo+0G5s+wZJ59SxpNfnksUPGn0LCD1a18UNhxBxf6\naa+ZNJtWrKAX1OvllwENAjXhg35CKYXNVt61bfmnNtOnV1xSRzRtdCoabcky\nV8M8\r\n=vXj9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"ecd1c72b6bef69fe47876dd77ce1b0095bce1e1d","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.13.0","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.12.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.3.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.2.1","cross-env":"^7.0.3","@babel/cli":"^7.16.0","decamelize":"^5.0.1","typescript":"^4.5.2","@babel/core":"^7.16.0","@babel/node":"^7.16.0","lint-staged":"^12.1.2","open-editor":"^3.0.0","@babel/register":"^7.16.0","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^32.43.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.5.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.1.0_1638340685454_0.6264283970109912","host":"s3://npm-registry-packages"}},"37.2.0":{"name":"eslint-plugin-jsdoc","version":"37.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"233690a37fa2e2abbe1f4f28ab676641dc8b3710","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.2.0.tgz","fileCount":120,"integrity":"sha512-ca7s/DD1mMObZQ2Y0n0DO/KnFV+FqCX6ztir8pcSuylg3GGCREIisn36P/0cRySuWW/7Y7MNCuUDqtKdgLPU7Q==","signatures":[{"sig":"MEQCIFND1HBrTxj6kcKXMn9wHJuliPk4TnLRM+DeQfFvlwgtAiADYv20fVqaZDoOueXWQgDM01u3aEHJ4xhtlPEQ99OZQA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1413811,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhsfv4CRA9TVsSAnZWagAAt2cP/R+ogIk4G/xnC6gFWGmJ\n3FtzIfK3rWtktvafv7mUdubvzAvGgXoAG/ilRHFKkZgJ8AsHZBXpYwQOvwgU\n9uKKX7Ami4XZmn2tPCT2W4x5ZXUpetJqRtLdO8ZF/juFAYeX1vh59AnW5h81\nBLz6/PWCNqFeYy1ZraEJYpjiFioBMG11puWQxJaGdVGoMmhiu1P87a/Cux7H\nPgVJEB8MD9ChpGqAogr2Xz8xK4Y+ek+GvKdX4OsrfEGg9aJM7uUMk7BhULb1\ni5nE5c01IeT8bNEEYegnRm91JDxQfzX0irv23egFS5v07OMkUdIXEm/xFD3h\nFkaI/Jh0Exve4J3LhwJ1Zkw1raqFRcgFrc++J0kPGpgo+6SenWZ4pWJHV86L\nvXbHVioi7Y8rd/QelWvCpSHMXBPMG+Qt0zSwZnWj2nuJ88kzXjNnSjSnDO/U\nHl8KmRPkBETjPlR3vA14bLTx13mEl1G5xRU4ofhyY2tlkWmpXz13CmbPJDhe\nqZmHCTw4Kd2W0LdSHjFU9kM2Xb+k6WPzSvzoZrlQhL3qVGnkl53qgSPl75eX\nx43LgFw4nbRl2+KuZODdgny+phk9U/2YOqAWTghrXm0jZcJM7+vRo1qmE+r0\n/pl6GwwJAYZaEKEUl/G3oxOLh6gv2BwkGhPOtRxLJaW9vc0LZtG/O37VcoEu\ngVlh\r\n=IlBn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"f04a4449d4062650a1f68f232153eb9bfc9485f4","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.13.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.4.1","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.2.1","cross-env":"^7.0.3","@babel/cli":"^7.16.0","decamelize":"^5.0.1","typescript":"^4.5.2","@babel/core":"^7.16.0","@babel/node":"^7.16.0","lint-staged":"^12.1.2","open-editor":"^3.0.0","@babel/register":"^7.16.0","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^32.46.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.6.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.2.0_1639054327923_0.2734113495352848","host":"s3://npm-registry-packages"}},"37.2.1":{"name":"eslint-plugin-jsdoc","version":"37.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"838c508bad5208471b7912a7363975cb9ff49fc9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.2.1.tgz","fileCount":120,"integrity":"sha512-bM79xBYYxmWz50gTBKu3m1ttHHnTFx2EMcAlle60HW1dUFUHssJ0Qt8jB4TPkeqbXp120hOvzJWakW2KNUAO0g==","signatures":[{"sig":"MEYCIQC5Cg4d9QruqLKi8qJmFq+tMTwTU3gfSvT/HZ6+SAQZQgIhALYfCCMary/XW2oLzHrPvpkghe6yHj2cd9M0/jW5WNmy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1414696,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhuTpaCRA9TVsSAnZWagAAzEwP/jcDs+ASB++8+dRYmKvB\nmAGmjYrO/c29fhuFBXFB8NrwFECR2WC6Dop7+K0VIJCP0XabXz2ekOFh8lFx\nrgpKwTaUbslMe1juoPyXR+GrnFRbcCypnUqbFDJaZ0uQWGO+sKJzCYlOueE0\nZSihSIwAFQTLa/r3KKKyXv4MX5gvd9vZStz+E38pBqLkDC1K96XmiX/IlCg8\nURU1XM705scSuNlg4OLNDLrgiw0ODNSt4mie3GDc2swC4iKTdLdgVmqzd5cF\nV6XcuBANI2TIbJPsYjXiBHqo8ejoWZzWZ2I8hvKLzaIVm3o7X2dMsLMQ9mtk\nbqGg5c1oMg5D+1oIrZiNBnS1gGBGx0ZklMZCauz3Z44wlNTVJgl/Th5+uS5Q\n3xC0xho3vVFgtB1+qqo+hYy1lp/I7JW6un7oKMUDVcJzyLtID+B2gmCGQJvq\naGReAZpdF78ezEBLtEJ2HsiXIWlBHSa4hob7v43BjoE1X0ThtizLqzIFVmU+\nbSogGqhgeSh/tkLF4cc2ou7iHetKKUlDG16K/dVliExk/lV/bBtSvTexWNj3\nGmossYwxJMG9Xg4kKP6d4R8Iaf9BlzfXuM/yV1JGYNBL9dt4hUPIdyG2GmPt\nhHPL93VsvIpXCKmbUD+7jliNZO5y/zeNXf4eL0mIcDfR1XZvTZsC326cREW9\ncxNl\r\n=uEIq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"d62a2a7e74ac1b051c1eed1ce8576a7ee7876d96","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.13.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.4.1","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.2.1","cross-env":"^7.0.3","@babel/cli":"^7.16.0","decamelize":"^5.0.1","typescript":"^4.5.2","@babel/core":"^7.16.0","@babel/node":"^7.16.0","lint-staged":"^12.1.2","open-editor":"^3.0.0","@babel/register":"^7.16.0","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^32.46.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.6.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.2.1_1639529050287_0.19509584645483802","host":"s3://npm-registry-packages"}},"37.2.2":{"name":"eslint-plugin-jsdoc","version":"37.2.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.2.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"70b487f281ec2d8b25bf5a0a739cf3e708e393fc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.2.2.tgz","fileCount":120,"integrity":"sha512-ChNYa4JBfEgyx7Fuy3obZM0w1jxd1DFdkMDk9QVrLfdZubtXCVK5Lvx+GKExeCxKLU33wLnOOBoImUL2/16JWQ==","signatures":[{"sig":"MEUCIBd5PefakspACiSdaIFpkDBcg9RrPEYaHOPiHPkxezYyAiEA0o60PQx7N8Kt1CR8N9grpzFzS47GeB6wBAtopfY6oT0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1415632,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhueoHCRA9TVsSAnZWagAACtgP+gLtxHAlHDzttPixKYQR\nlBol5ikLBjXcHI+ujLE95eyJ1K2lDZ2kaaSrGBRZCPJnITzgFU2vAt6IFX8f\ntGwcD1NqxhURR+MgzjJJ3SLp1xTNeukXwGPFP9reXgkscUfsCpIE7ygO/N6H\nD0uUTROwY9b5XS0r2MkIo6DF7z1yVlOIeCumxvFJoMhjeNStzQoLqG+aoscO\nYXXCg3ruXhgt3vQuawn1YWlBzL6fAjHgGEBmIl9libYEFx087L4lCGj/L20P\nKO5y0HBe6ogUemk0jfy1tYLQJvr7KwogTkmX4eC86+KVH3cPXIWTW6fd+OWg\nsH5uEDl1rDgKg7/c73FB2RYyPEQRrhaoHsAmIceDFmVH/WWPsm09Gxnzm5we\nhPRyM5Ct8tgmnNoBCQMzg/G4floMnyaJWolzTm6ZNVazp0FpFJAsvQfSNmjp\nKrTgjHR+8NRx92sivqiS3L13TdvxSf1vjMxuji1K0Hgp1RhR0dChZRl9ScFB\nhr3+5ChD7oN21brEzEsHac3uFMzESoDXOk6qlolyJjAjeyjOT4pmJiLDPsn4\n9Vt1hJGqnmtbXqaKgYvbAKgl395V7rMGXVaDCIZ95cmC/+UDM7kZ+oLvvvW0\n1lcJyumsOZFNRtqneu+OXimFK7JpjX1l+zABodIa62K0knRIKrWMyyDv17Gm\nVhe8\r\n=HgMe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"f4800151abfc21dbca338cd53df6405c6041851b","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.13.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.4.1","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.2.1","cross-env":"^7.0.3","@babel/cli":"^7.16.0","decamelize":"^5.0.1","typescript":"^4.5.2","@babel/core":"^7.16.0","@babel/node":"^7.16.0","lint-staged":"^12.1.2","open-editor":"^3.0.0","@babel/register":"^7.16.0","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^32.46.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.6.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.2.2_1639574023299_0.19651158005961067","host":"s3://npm-registry-packages"}},"37.2.3":{"name":"eslint-plugin-jsdoc","version":"37.2.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.2.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"d8a89173d99c952075ce2965ea5ed99a89e9973b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.2.3.tgz","fileCount":120,"integrity":"sha512-YXBonC2F78wQuzKpq8J0kqT4xlxDPkqZS9zrcZwsKAsrz2g81dAsOq4WfmnKRsMVh9TjKFXJANqswyQMMq913g==","signatures":[{"sig":"MEUCIEj9AUG7veisH1SwJzfi94Wgyzx3iEydDfdTBzSi9+0FAiEAp7+M2BGj8r9ip/6JOQXRxjvbMXeCiAkK/btemakBDNo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1416041,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhvB1JCRA9TVsSAnZWagAAbZcP/3EWInK2bKH23P9dipVO\nMUrqgFje0DW80cvvEc0/Z1tZCpD55SVvEMesj+5L3QHTB2Bjq5x4RxQOEQiE\n88ROwjkIW9ANJUs0LSjof3m1/tEirn+eMutnACAk3VhzfyCqxFsV4mxyNShY\nJIdUjw5J6hPvhFO+xumav99uJot8LsWZSTebamHq9xp34NoQU213oBVUXvxL\n3jG92d7GuQx/WhQ/kfqy6vWXa9A45ZQhPme0os1TBxgIAKCp6QYSxYwn5vcA\n6tp5JUioP+PzL3zOamqDIxAlXZOC+TEqFi1cFutBiEcG4bEPkUHqACMYcUII\nOKi2WwYwHe8SJJPAG/+nMdF+59UF8gG1gQmatpVZngKMRMjeO9nIKAyMlHWt\napBVbxXjiQxWwqH86ld/8I46ATNSW/bzRrI8lZhduceT078cq5PhbJob3Fsd\nKBN8acdjTCouiRmTOIkHIjY52yC244ioy4QbKK214KdyDRO3GW/hypEs9nU6\nmXUU8Lc4V9f1senNSMrnbJ+dCaL67EMJyhinAhcom3RgpRHf02IMzyitXCgO\nZxxw60AJJvCwT2EAUganz2gLusXd7WklxGLgqi4NLYkD2gQMqR7HYcXvdQC2\n2js8lI3ETS5zZhlde59n9vTQTaFEMk+g5EmKmk4unvzw1lvCZnsqxDxOiWWW\nVIJL\r\n=T520\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"fac3f20740ce0a76a2848553d536ea3ee04c599a","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.13.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.4.1","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.2.1","cross-env":"^7.0.3","@babel/cli":"^7.16.0","decamelize":"^5.0.1","typescript":"^4.5.4","@babel/core":"^7.16.5","@babel/node":"^7.16.5","lint-staged":"^12.1.2","open-editor":"^3.0.0","@babel/register":"^7.16.5","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^32.46.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.7.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.2.3_1639718216754_0.30978145264132184","host":"s3://npm-registry-packages"}},"37.2.4":{"name":"eslint-plugin-jsdoc","version":"37.2.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.2.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"7d6f2a2675cc7de48611d1e9aaa8c1dab1ec5b1e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.2.4.tgz","fileCount":120,"integrity":"sha512-TkB6LMdWlqB/4aeanUVoh2bOl43BMibzokd6+dYQ5yumc1aMx0kJyCgQmc+wbJnc6vahfCJELpfjxXRT3Ay6xA==","signatures":[{"sig":"MEUCIQDzk5z2uN5i2VnPlBJHpKOQuWIi5II2UCTj6IGUQwBl0AIgRpibG93/fnmcgF9YOnJT83HLo2OUWpx7lqBy245je1U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1416069,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhvLtSCRA9TVsSAnZWagAAC94P/2BQzgqwApNv14xJWSyO\nutInMnaaV34UJ6Q0r+uUXgw59DvwG6ul7VvU//DEXUJvRNdL9fFDp8qRIi46\nA7Dls5SeVU8t/AlQ8qth67N/TR9jc02mwEwrW6p0GKTxyp5Ox/qks/Fq6Rk3\n0YsbOiRHh/DFekXpS2+g/00atFrPx9mqft2seRKH7lpxOGkMJuJC5409Ec2E\nKV7vfYNis+Msm+vyX22cYY14ZUSeiBHZ8Wz5ow0SDYn5yVOjhULBgtDMHDY+\nDFUH+aSg/9FgCvFDVUBS6s35IuETg01XAv2CXXRrgPoYuxbRnVIQ+TDY6mYP\nB6cIuZklk2AHKE+u+4s2ts/juI8eRiXxqtbaeayZuxqhLHCmdcVO5Fu1L2SC\nK52CM6yCpzlAv8kOxUJvnfvfcx99gqts/xAesS24cexIj/ImjDqycQt/hYKG\nyqiZnpwCpnVwEusHjAFvkAG1h20Bw2TDpy4M97mYcVhVuKVz4kqakOdCC9O4\nO3k5p/uL6uvOX0fOWHz79n8ktt7U0/EjBFT/0eblADkOZfEke5Dg/XhC/9dz\n8k3AAfeWvNjSEAAajOZs+Bi4Jm1cjaydLR3BTkDjyEov2ksgHUkMkco62nKd\nWBLtDPhzfQk2PhNBNlIU1aL4JI4GDCWsxfbym2UMUNXfKjH8jtDxBbDQFNiq\nihM0\r\n=sBsm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"6af811b5c45ab0532f22ba6f3d43eb6fb1c0792b","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.13.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.4.1","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.2.1","cross-env":"^7.0.3","@babel/cli":"^7.16.0","decamelize":"^5.0.1","typescript":"^4.5.4","@babel/core":"^7.16.5","@babel/node":"^7.16.5","lint-staged":"^12.1.2","open-editor":"^3.0.0","@babel/register":"^7.16.5","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^32.46.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.7.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.2.4_1639758674196_0.13076956896980851","host":"s3://npm-registry-packages"}},"37.2.5":{"name":"eslint-plugin-jsdoc","version":"37.2.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.2.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"b631103a3fdc0de0b7d87d6250899c11d294ab2a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.2.5.tgz","fileCount":120,"integrity":"sha512-Z7XVVMZKbU7163V8bZXswY+2s4jNLf1e2qV2ig6BpHDrzjOCORXVXSZIqwjT7Hj0zw2FJcMIzcYQ9wKOlP1spA==","signatures":[{"sig":"MEUCIQDbp14P+VzCo000zIvrqzfmeOW1eZYubJ0zVMNs1FZGMgIgBJH9YilJlXY/f52MZ8/vl3IdpTGU59bwjT0MlZJHpx8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1418708,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhvTSNCRA9TVsSAnZWagAAogoP/3VAsSM//uSM7bzllCe1\nRrxopuw/fOFlKOZBYOEcGxI6fAve/6aGpIaS+jzPEgwUTdScI8ysGhZUvhRG\n9wAPWd0RNxvSsybQFDBK2CBsKC5hsMbCeROVxRfTJMQ3k+JQMYD2kUaN7IZ/\ngxVGPsxWPB+E9YG2wrQkQ4B6BE0GD3PeegVq+dvDUGSze8n4iFWcSX4OEMBK\nRqrNMqulkV4P9YYGQqEwfcFY9ajBWo73RRX+yEEllnODY7bR8DBfxJQqXdDT\nMrRoJlx256gpu47DA3sGQ7Cd19+UQ4c3eUQLB+HBakshlwJtPr7vlqNaksHe\na2+VEqhHZfDU26ft1TuWhGJ2y0Fh7fM2bi09Gy8vJZnuF4kKV6T8FhkXH8v7\ny+4alSrgmo4hDwMSkLTqf6Z7vUrF2LV4ZtsUcG5CewSpVVgH7+S0j4XnuyWG\nRTbOq9GvscEaobpDNbNOZOlVNXWYDO8GFO1smn/LvQmKi9UnbEQH8ZNuNFp3\n7G3obpzwbkee3cTUlyhtxa23hyMyNcBqElXuUmm0xY8nKMLO87x7tAsXBb3C\n+KEdbgoz0c30oi9v08RHCrYXwM8OmVk0zhsRytNyz6+ne/qIBex6hWDwxtBi\nd4HsqIkpCe2O05TVRDgsBSsR7Ai5wpk0zcW5IgrgqAEQrMU36sgwexLYSUWu\nfvrm\r\n=/3L+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"c91f54a7b059e3526ae30b9ae88c91a70ad4d12f","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.13.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.4.1","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.2.1","cross-env":"^7.0.3","@babel/cli":"^7.16.0","decamelize":"^5.0.1","typescript":"^4.5.4","@babel/core":"^7.16.5","@babel/node":"^7.16.5","lint-staged":"^12.1.2","open-editor":"^3.0.0","@babel/register":"^7.16.5","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^32.46.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.7.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.2.5_1639789709098_0.5420234298300408","host":"s3://npm-registry-packages"}},"37.2.6":{"name":"eslint-plugin-jsdoc","version":"37.2.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.2.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"6f155f3d003e372bbebf5bb9d0681913941da317","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.2.6.tgz","fileCount":120,"integrity":"sha512-YBQCFTGI/lUn6UWxxWrL0q783Gzm2kT/So7o0Yswg9v0gyE2eZV9Q3/mg+ftGTEt1zj7TSkS4K9NeXIrEPd7Lg==","signatures":[{"sig":"MEYCIQC3rBvQWrb4ZR6A4jd62IcrZOlUV5zz6zUDqW0xuPwBBAIhAI9GSUpDZowquMowfDBbch7cg3NLnLEikfrch5gmB19o","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1423513,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhvVXFCRA9TVsSAnZWagAAEkoP/AmS9ID3W5sDQovFbTD3\nSEgRGyLtq0IDnoev19ibWDkYYnh5kFnF1o8CnlLuVfUA0pS8o3W9PPuu+eAW\nz+yop9jk2SIgqDIJrz3XIbzWlfR7vKAzTJOGCWXMfuSI55KAadSAaa7B6qiF\naJAzCUHv2YUBi5b3P1klFAbCYlERkfL1ZmiYFi3oR8e1sQDn9lPQSnezX97h\n2tVKc8LRIKwHLhLnOvXXP7uMXdDXcD3rIv1aHr3N9V/E4KMW+MlwTL0cMjMP\nMcIDZoYEHIpbYfBVtST6LylgcqwA5cauYVgS+iaLEB+Gm65c4fqVW/slthzX\nTJ65nfaNrAGV1OnJVj8slEOThdVtIDBZrSC+uIlz5rYilkgImpNfDZlfe5On\nH++2uxLn64bnyiedxDW/vzVxzDFH40sucRajSXYrlR5Pt4q9yJiK93zoaWKy\nVGTM2OqSClMw2cduJWThgxX9TrRnUzHvXlVe++HtAE2v1Zs2QRA+r7Wh/n7c\nl9mjvJLMw0fY0bNjhDiTEpS/87J097+PLjKN+ikzxZUeQ6cWUSb54xesdD9Y\ndaZfx3OkJCSorzt1kQIOYdAEt2XMyi93/9wjG0P7iCfqTVhH9mIladGrZSMV\nzVDYm/ZAjh8fKBK0tZgt0ouefL3p3IiiXdRYJ+8pS1pd+nMEImsi8smdbguK\nU0w5\r\n=fYG2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"36e01150bf7082471724e9bf7d6946963990939f","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.13.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.4.1","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.2.1","cross-env":"^7.0.3","@babel/cli":"^7.16.0","decamelize":"^5.0.1","typescript":"^4.5.4","@babel/core":"^7.16.5","@babel/node":"^7.16.5","lint-staged":"^12.1.2","open-editor":"^3.0.0","@babel/register":"^7.16.5","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^32.46.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.7.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.2.6_1639798213314_0.18980011697672095","host":"s3://npm-registry-packages"}},"37.2.7":{"name":"eslint-plugin-jsdoc","version":"37.2.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.2.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"7bcc893f112f597007a56b6e467e75107a044824","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.2.7.tgz","fileCount":120,"integrity":"sha512-gEjUbJyfoI95JlHehjyTTM8Imralsz0TeAOj6LcADFXSp85O4A9KreKM+by7Xse2aTiTnXs74ncQJOtOv7l1Xw==","signatures":[{"sig":"MEUCIG9ji+OwfCI9fwHA1p9fn9lkNrw8dh/bHOo9M677xm/NAiEApU1vITTx7D6rASvqhe3M9/L/n6E5iipf2JqvEKBCNjg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1423641,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhvWU/CRA9TVsSAnZWagAAMaIP/2WHnBOCKT8ZDQW8dmOk\nPfwRqPGPARRmRKIvE+3LKMTlnMPdH3wr21tOrVG0qFUfebDXcPkAEmO9u++V\nygehtzBVZA9U+L9Nrrasqo2BK/FwYYUyyqkanSIRPEgd4X09KoA3jSefvsCR\n8fKKfeoItKiesQ/9dhF7qMLoBfpfw1KjhRTjvc6Jiomq7N+oOPknTCnpSMXW\nwn/G1H4heRr35ikm3cYCqs43o8HRNy5LR91beDArjfufWrWkoOV6C/AhUkP4\njT82suCjZN9WMDgyitkr9OKfD7vYouy6okyc/ldZ2BKxqAfWKmJhjN3hCIBs\nfQVd5/N2mnUIu/E73Pq1aVgj8JcW0As+bZI4dxsmIkfLrv/V/QNyRZ6p83rF\n3Juq/04c4jCiuaV5FpgSmpI4BXjA0xY+4sXHDchboeQAjqdZGxvXu9AwH29p\nJSY0P1KshhSRRoUvVxUbCkxo6dfI/gge+tR2bNKZWlKy32Lyb5YC16qAB1jY\nR4R2wdek248aLJEHeF8Eyxtj8RNQcklYhLvG+XzlYstg3bfED3YctmfF566W\n18M8W0eAuyhA4KZhXoFhqm/H9SByJyqNTCaPlsrfzyW3sba+xSqsXIzpj9dN\npaWxJnayi3Ad1vgLfKyoutG0+RI3eV0FZygxSkmFCM7aSPgxr9JVoYPw4PsT\nmLfq\r\n=Y17j\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"4433d7e3fb3d8c9d329711d350d787c58472d1b6","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.13.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.4.1","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.2.1","cross-env":"^7.0.3","@babel/cli":"^7.16.0","decamelize":"^5.0.1","typescript":"^4.5.4","@babel/core":"^7.16.5","@babel/node":"^7.16.5","lint-staged":"^12.1.2","open-editor":"^3.0.0","@babel/register":"^7.16.5","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^32.46.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.7.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.2.7_1639802175748_0.4025178470419326","host":"s3://npm-registry-packages"}},"37.2.8":{"name":"eslint-plugin-jsdoc","version":"37.2.8","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.2.8","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"7c0447920e3d7152eafab6c2533e18bba3eb2753","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.2.8.tgz","fileCount":120,"integrity":"sha512-XyIj639UGbHzCv0alpVhMoRr64eBE3ZLp4+DuBVceuG8lOthXxo62p50yPd3gOlCOdgR9pqvFCJ+PH8vF32d0A==","signatures":[{"sig":"MEQCIA3ECddH8ZlfTxHPpzjafLVxQ9//yYDaUJPoAxfNEs9YAiAGDXbOpQupjuKiTTTiFGJdTSMgnTiTftq0GdPJUQe6zQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1424648,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhvWqrCRA9TVsSAnZWagAAT9EQAIJtssEvy/dHsmsvwR7R\niWvD9KLmx27aPFpGx/GB/B0GXO/98BuO46YU+AIRKVVYd6YOCTNG8Op6Cw39\n/sJxqmaE85nlm2RxFEtvMpMq49H0A4m0DTae/5XXNFXDt4CL90K+yXWQNnid\nJ0+QNPtlF4u4YGwlprAA83M6KgTNQ0NWYk9nSsBXASVK3vGTUHb80k5GUbYx\nGEnZyMaRzqUIUM8i0lBlnXshMGYLXrQWfYZN0FF+DFHfdZ94zsC+DdcyPIHz\neWX0C9k4yu7uKdu1qbkKFZKzBlmwpqTovbCr5pDNX0BFmYB3rrpBuLDQtIwH\n406vJ7OLHLPYYvZT2zhQMKDmW0JNdWdZ0lt/N8q3LpOJigH+vqEj3hKXxb46\nbQXmc9RTPOY7uUMp1C/BNCgLPYvnPGwIkJgTXrHC480wzqBId0M1daAbpM1S\nd9AGFwP5uELXn6w3xmi1MF3ZdcAq6QPBVeuxR2WGI9R4UJXzlH7ANz1McxTS\nqqC8XeYSsQB689T4j7s0y6e68nbr8173rvk6fPpmJ5ovD5GyC5Fj8eWt5L9d\nvhgdJDMJtLRHcTCdMu30qOn0IqzVIVFPMZtiYZjmNMvVPntnimAjYnHOO2KP\ncKPsFgfYIi2o+4WmGt2QA2CQmALXT8GlaFvp5lsqbo/uzcc+N0cF3re8fpi1\n7ALC\r\n=aTGU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"3a27c39a0449b3f9b12f441717f540cbd5c0f5d0","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.13.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.4.1","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.2.1","cross-env":"^7.0.3","@babel/cli":"^7.16.0","decamelize":"^5.0.1","typescript":"^4.5.4","@babel/core":"^7.16.5","@babel/node":"^7.16.5","lint-staged":"^12.1.2","open-editor":"^3.0.0","@babel/register":"^7.16.5","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^32.46.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.7.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.2.8_1639803562646_0.42542214990731453","host":"s3://npm-registry-packages"}},"37.3.0":{"name":"eslint-plugin-jsdoc","version":"37.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"37b7eeda4210ed7dea35e2308d65374d5b21b2e0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.3.0.tgz","fileCount":120,"integrity":"sha512-76fXAjqrfcqLpa3JjnDIXYHM8zlrNJYEXv6xvTyMcgbQ/gl0OmoEmPAGV9HxbhbJ9hhcW5fTVemRIwhGUwqJcw==","signatures":[{"sig":"MEQCIF92pde8VC/n8eU7+MaTjhBOnTJyzxdlkXbYwzNJEVzvAiA/rGqNcvk2V4gCJQSOTJj2kEhDwN0aOgMHDtZDGzsTig==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1430441,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhvv2KCRA9TVsSAnZWagAAnxcQAKUiHCTpy6aYj4l6iwDW\nn89Uzu7iMEzfDYHZzzMcK+jJ+hqHZ4VJE+pCdF7POXUE+sKBiU8YFlquzdF0\nWt8kt+0Hyi0EGosYeBQVF+xRthysmaOttc7cIOStO9v3iSzcV3f/b110w7v1\n9DnCg/F8slRV5DWFcxlNzAHoVszSLblr3kOk9hOYYtFPz/dQnGuzUAp1/aUI\n+9LIUGIT9uBmDKhnQYp3yHfVqNayAMojZA4Nfeknq8CfENq0IscXMMM/d471\nrrci/VyTfoZrAn7g9PTecZS/XRu4pWtJLaE2w0SUfERwis9ey3sIJ3K/6PPz\n7D4RRuBIy0OZ8bW4AgUY/67u/YjaEaWzltUgPvNtqzYwBlCraTJK0XezxHiO\nICz2rUoAsjW8rqqrgnzcQ6lmmZ3dVBFMsGh0/K46pzIjmJxM7rVD0jZjnJeC\nsNFpy1uVOs8HsX8f5SvOGMEKpYvKRSHGDZ2f50x4uGTAliX+AyZqMrRQ41YJ\n95rinOD+Oh7bCdYFsLtTzR4ZYmm06AL3X4S9G7XwDs4+EiJ2kiOPgDBmk6Go\nTzM3jnd4jPowdicxdirlMA49wexdfSvkC12sZJiwy4lhvAcUo6T//pmIdrkd\nb6M9yE6uCUsA4E/Yx6y6q7XKzTtZbu35UICl4ihRYryLpg5b5XJWTH+sw7Dm\niy67\r\n=MnAT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"c91e49cdd4431f9ac1c600769bbc59caf3a7a889","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.13.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.4.1","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.2.1","cross-env":"^7.0.3","@babel/cli":"^7.16.0","decamelize":"^5.0.1","typescript":"^4.5.4","@babel/core":"^7.16.5","@babel/node":"^7.16.5","lint-staged":"^12.1.2","open-editor":"^3.0.0","@babel/register":"^7.16.5","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^32.46.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.7.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.3.0_1639906697889_0.132032638506419","host":"s3://npm-registry-packages"}},"37.4.0":{"name":"eslint-plugin-jsdoc","version":"37.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"6e6eade5494150a392365f63bbd2fb88caeb8d0c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.4.0.tgz","fileCount":120,"integrity":"sha512-XWKMMHFq7eUdC8XMzuQSskevJvlHTDSAJm/2qtEZ7+qhZTZ0YjeqWaUn7KGdrmxLNqtWwtJ67LdIPgrYUZ5EoA==","signatures":[{"sig":"MEUCIByGPcflqVjn923Eam9tW41ewv6wg+W8y15QHrQAXolcAiEApf5gxqVv4TBPmp/ZDBndHNYTEqVqImgkjdpmySmqE1c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1433571,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhwDAXCRA9TVsSAnZWagAApAoP/3K4llUY+SnSOBPWFvpV\neGEInV5R/BKfMCicZ0lprwCWQaxAzJtVt5DttAFwYT+H/e0FMpVWIHt2dx5j\n7DMSomdvfykV6mzLYvZwTi+S2WKgSNEilWVwTxtb3XaDK3x6+x98jGRWxGqm\nf1pX/uqcn8DiHDPhbTDhVxP39aOOlUy9V0FYeaQVz2I+YAl04FCK9HIDirrF\nFMKl4/wE6KH9cHXWDsM2xl4iaFCizULgx682UsHWEsOKL0XlFJIIkWw30uHq\nbdEZXa/nOFFDoIhHiWDa0U8Kc8GcTJ+E1tPN+o3GM3lS7Gf8KI5sTeWzdnv8\nyP0i92RUo0F06ajsr+Kv0MH/s8LMWMRhMHpjo2q/XANU3GNAPdxASA3mimhR\n08XWyCt6tpLDuBGJ7c9yI0BI5Uccv3/q+c6LPG6bD/S0VNgeMleyR7eP9Qu3\nrLUS+8RRDun6IIYIYHz2TcjWfkPnbIbgTesnL45xItXkJx3Kvsegc79/tf6L\nc7R2C7N9kSNd4r4yOKJQIyHrDvaWrp5YIY4QWh8U6+5QAglC9zxnt5EXLiSf\n54IJRofFaXSkPRrVKh0u/oqVa4RO+G4NHvFVd9grpjYJS420qN43hpyvyVeC\nuaK+/RTRLTbmuiVRDOOinC/HeqE1j/7WwDIK0voghcbWg8ZfKd4VivTide3w\nMrOi\r\n=ecNQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"508ea516f3f754e0580d7ca8a85146fb56cfbb73","scripts":{"lint":"eslint --report-unused-disable-directives --ignore-pattern '!.ncurc.js' ./src ./test .ncurc.js","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"eslint --report-unused-disable-directives --fix ./src ./test","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"./*.js":"npm run lint-arg --","src/**/*.js":"npm run lint-arg --","test/**/*.js":"npm run lint-arg --",".eslintignore":"npm run lint"},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.13.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.4.1","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.2.1","cross-env":"^7.0.3","@babel/cli":"^7.16.0","decamelize":"^5.0.1","typescript":"^4.5.4","@babel/core":"^7.16.5","@babel/node":"^7.16.5","lint-staged":"^12.1.2","open-editor":"^3.0.0","@babel/register":"^7.16.5","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^32.46.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.7.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.4.0_1639985175802_0.030029606309424306","host":"s3://npm-registry-packages"}},"37.4.1":{"name":"eslint-plugin-jsdoc","version":"37.4.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.4.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"2c855f1c8b0d12c7b311ad6ab0cc65557e141a99","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.4.1.tgz","fileCount":120,"integrity":"sha512-SAi5BRXOMhHrb+zYWAZXbWOAI8f17WbN/3Nl5RG696tpZFjid+OHDHYtRTYtEHYXC12jgi/SZWDA5URgOVK3WA==","signatures":[{"sig":"MEUCIQCQ4ukihwoto2NDR6H1WV5yOD6XCr0h/J5rjLjOfw7niQIgVMW23r0aMHkjsVWHvLIq/32ae16k++Roh5Rm0jJoRqM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1444466,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhyx9cCRA9TVsSAnZWagAAkn8P/iRq2I3V3KSy5RH6U6GV\nHcboiemCJGJ0G+rYFGlJG8bJoLR5mv41KRbLFKQRjzKORW/pd7ohS6H4+02a\nfFtdzqVLcyRB2klVzQ2uhETQolE17PD1nSWnnCfpNlatTLbxBjWjVTosZHHx\n3/ZpfEn9AhkAKBGx4UzZLL3CtVe5RKLMTTLMIhAo0mcU2cAIzsJAnTztKBV9\nxHxft8B74QCBiTJQl0kFP7vG1eS67nCEmDDsMiLhW4nSaD/C4kX1S/RqHmUo\n4DXLBURWtYOWF/o0C6qiHZZ3eqonmeZ8al+nDM1GrKqSR4N/TKLXU3yateCc\nvPXTVG6ImTxkBsV+kzDYu0XPgDXCIAdc0xRU6b3jwZWrVxF/aRpML39nVScG\nArvDc3cKrH5LRlXt9bmgvDYCWu3+7x3dv5i5H4fQHlVSHvKL1SOfc7KpDIyr\nTdjybwKONxoPXrG8waUGt0ToDc9gIuNU/HFiP5Rt4dd+8uTao4kViXlEx7/L\n5/fzPhJAyY19DdWnWgZn+v8dAOhbCyaZTvw5a7tgN0tiErBg8OjvCEECwhHt\nsTWy0K0P92wBaDj4/4TG2h7rhTPx5UmOkYjDwvwoCiPBmryXBqwlTLfIeie0\nSVJwFwaL8ZU6aGkT2C1cczcwodgxkZaFTDF3s3+BKGNodQXg/rCaanPfU6dm\nBccP\r\n=0nEH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"a7f3039f3a8c684cab4535d45915f49cf7a2f256","scripts":{"lint":"npm run lint-arg -- .","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.14.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.5.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.2.1","cross-env":"^7.0.3","@babel/cli":"^7.16.0","decamelize":"^5.0.1","typescript":"^4.5.4","@babel/core":"^7.16.5","@babel/node":"^7.16.5","lint-staged":"^12.1.4","open-editor":"^3.0.0","@babel/register":"^7.16.5","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.8.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.4.1_1640701787774_0.468727027103532","host":"s3://npm-registry-packages"}},"37.4.2":{"name":"eslint-plugin-jsdoc","version":"37.4.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.4.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"971ed6118722e00b60652dbb804e7eb78edd88a9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.4.2.tgz","fileCount":120,"integrity":"sha512-hKTIu5m0PxD21ZXdFVFpknEyp9aMvDMzamR+1bkcRHK9MDIYgroRGBQCeHupvcZ5TyGU0EfE+ed0FhLhkbekfQ==","signatures":[{"sig":"MEUCIBaWc/PW9DSD2FnLcDkTSFXMPHAcgi8kMWiqTTuLuu8BAiEAsBS06wGoIIWrOsMCuq+bXcL/oZes748LhjTc6vtK4Lk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1444890,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhyy11CRA9TVsSAnZWagAAnysP/2cl4bsV2KB0pn2mCdMK\nPk7TFlFl9xvgZb3NT3Hw8Nxf9lVbFguEblJf3ppebhDdyyINrSq/u9nBTeft\nLC3zNuw7wWbw6ZYSfms8EmdVNjZte+uuJ/2bwon7NdelNF9AyNu8Rbx7A09n\nOh/5dBr9uQRXSoWTRkexTJRmejjJRDL+Z2JIQ7G5kSK9BHs0Hr2VNQ1iyUYp\nXSvcqn2PfB55ZgGtcZFF59Edr7w4aHyiw5mcUcj7m+Jes8EyOvHujp3VU+J6\ndFT88ufSKJNI3b/NNcGvRnADNvZZBlNVGX7GcdhUV3ZhjL/2L27gxmIfadvi\nyIp2xyYKMpyBy4Lmj7FOAAJX9ISe/V1n9bW5AN0Lgz19UpTTn5LQa4+qDf+/\nWp6FfL+TYEJda181QliaVx1uJh07TkVMBTrno6flcXhhocqNc5ByY8WDL1qW\nDzvQOjFCXE9MBGYnr9p7yWIPLwmZgpFnEsLiScgP23SIybNUVwZcUleuTBuR\nwTWwyhc6URIHHMeNu1NQJ2HqEnfx5tMsqwpyMW9WBq3orv0l9NhqF2JgDzNZ\nKqAASHId/Ax9oYqZltPJEvJkYHQM8xxvea7OoX8p3p6s3aT7J4FMtvAm/kLz\nobRNY985s9sVFQC9oXew5CjF/ZmpoGHq6yI9kXWXdOXOHQQ/lw8Gc9C2C1uQ\nCxEq\r\n=WfzA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"e793c66a14a900610bb152bd491e104eb5d61ca4","scripts":{"lint":"npm run lint-arg -- .","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.14.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.2"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.5.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.2.1","cross-env":"^7.0.3","@babel/cli":"^7.16.0","decamelize":"^5.0.1","typescript":"^4.5.4","@babel/core":"^7.16.5","@babel/node":"^7.16.5","lint-staged":"^12.1.4","open-editor":"^3.0.0","@babel/register":"^7.16.5","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.8.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.4.2_1640705397419_0.7914520823887683","host":"s3://npm-registry-packages"}},"37.5.0":{"name":"eslint-plugin-jsdoc","version":"37.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"f94a96cebbc24e5e7d206ae611521b06211e261b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.5.0.tgz","fileCount":120,"integrity":"sha512-7PGMEXIwsnFww0KHxDcKZV5fPDS3vVOe5kJWQ7ES8r9RuEfcBTChQGbCOoGAR0zZ/POwmuFEEBakfoScvou/Rw==","signatures":[{"sig":"MEUCIGdPGYXWO3k4Glf6ubo7BZ10XYHdDY5zuZyYRUOE0MNGAiEApfj/d9/deh6dVe23mi5dC1jw5XukZMYtMo4VS6ERf+w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1448944,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhzuArCRA9TVsSAnZWagAA//0P/3ufIHdzmj+NZG73KlAf\nJ7pssSfoekwpYIO0vVz2hgrWZUmYyf404fjWNWfA/DDA+WDM6eYwlwxDq37R\n1JZl0CMbVCHX3krmLgyYPgvQwvOn1M/RkY91l918fhhrAHbQ0inQtV5dMsRc\n2eriryf5b8vgH4lwE/C15TQe2GDeVa/dXJlstfFiJgOk6eYrVx4oBBPz1l6s\n6p1rKqSZrC2ZHKHCypUNn88xMLNv05Hxc+eNNeF+5UTygmSM2CMN9wvUYafh\n5CUyk7hiU7I6L1HXL2advYuXyRLLnSO6mDvDmOe6gdoYj+uD6cDQZr546BEt\n3uyAXcrFg3Sai6f91MjK+eGnxX2R0GcjMMKwqlrc7Uzj8KzFvOB0fGDjtvbK\nnch+wQOVBMxXK61Bz6dYmkSUP523CGIZ8rptYjY2ei2UFmTxsQ6NxnkCpe1f\n4ZEBE4Z3DCE7hM6DPOjkJcqZJtwmPaiBivqy2GcN13he6SCKvWOZTieIkqdO\n4RbQpq4G0LFZm3wUvjAXepSioCFiXuKKh4bXJuZ8r1WuhiRQSQDzLLbo+Px8\nfYiIBGqQ6uiQrBo4fk2xPJWU4pK7nBUB2L1yGOU0ulJH7YGMlNd/WdNX+Yrp\n1tLd0Dty4Y7XrfpMt23WYzuFbDjqE4imBD8XkrIJ9jVieEYUw4cXNIbKb7Y3\n1A2s\r\n=yBy7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"6ddc79cbd8cb119c293afa13cee05051f338651a","scripts":{"lint":"npm run lint-arg -- .","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.14.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.2"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.5.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.2.1","cross-env":"^7.0.3","@babel/cli":"^7.16.0","decamelize":"^5.0.1","typescript":"^4.5.4","@babel/core":"^7.16.5","@babel/node":"^7.16.5","lint-staged":"^12.1.4","open-editor":"^3.0.0","@babel/register":"^7.16.5","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.8.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.5.0_1640947755696_0.8284729937017721","host":"s3://npm-registry-packages"}},"37.5.1":{"name":"eslint-plugin-jsdoc","version":"37.5.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.5.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"9ac0c8c4528112a3d1800796326e7f859f6ef1d9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.5.1.tgz","fileCount":120,"integrity":"sha512-WMv/Na5QdpMQao1MR3SgYpGFi2PSrhh/JljlErQru9ZYXf1j9oQVIVCELQV7jcyqKQ/svPqCyU8eMhet9dzP+w==","signatures":[{"sig":"MEUCIQCdzrcFVeSGZ/ivHvsWnglpP2gmTq8+zcK3dYdkYWuEuQIgRJ8TmS9r0Gw1yvOruFWJ+BCHfrfTdPCR8xc6DShgKPw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1449255,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0vdRCRA9TVsSAnZWagAABI8P/A0dXoVbGSXqfYXZsQNi\noNicoWXHjihjhT2Ioo7VaflMLcgQaoP+ONga8lPNUCKk2TBCFq1pLZhqjlyu\nY6ZArrenfCOYxGtm54mJ1MmSnqypry0qYZLhv8Ag6ZvtTovOo+BFvQuVGsfb\n3bBspZExQgfCdYAu1MHaUEg001PcD1nfSduNMJ4OHvlljBW7/TiHkAk3V40N\ntuycKGEM+KVDPdA5IoHt6Go01csuffScQtL9gkrOjJGLnVpqhdMVBiXQ59tE\nlNWmAMEXZ1NyLexhBQADr1H0f7ATId/MBYSzwbD0jv/Mahzf0QZbkbEnEOni\nyVZ/aFNUPx7Zs62mxSXCFLzYEL9LhVR48QiDB1q0wsatw/7krl2HpwMDtb3D\n8vqmvI4QgPCr51K1b05VQIJ93uobzwjKQS8Bhb2OUXh/XzJk/tHRgCuzlrGI\nkoHwRYvgzvAPXxlDPb95FcH0Sry6/tEaEn3kPb8IowLw5Me3IqhqWhXNusBV\nHhgpqYT2qAD3Baiym4+hxzdCR6Hhe0b8FVOO/DKQr/g6nOWrDcOIWXdGhVKA\nHXfFEtmIFuL1cO1/yMnPBWY1uOzG0AuPUZ+DLzdD6BNxgi5dGEoAFhsCLnOK\n2Lq/3FiuXl7mwm91p8l62Znt2ZThKJM6jTwlwmS1za0II9h43kpdPgZu2YFF\nkk0A\r\n=XW1/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"88dc5e7af296bca3618190e95cd386f9d23793dd","scripts":{"lint":"npm run lint-arg -- .","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env BABEL_ENV=test TIMING=1 nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.14.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.0.2"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.6.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.16.7","decamelize":"^5.0.1","typescript":"^4.5.4","@babel/core":"^7.16.7","@babel/node":"^7.16.7","lint-staged":"^12.1.5","open-editor":"^3.0.0","@babel/register":"^7.16.7","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.7","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.8.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.5.1_1641215825058_0.873323332146783","host":"s3://npm-registry-packages"}},"37.5.2":{"name":"eslint-plugin-jsdoc","version":"37.5.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.5.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"7124e0a40aa8be83c2ce672f9b3c1196ff278def","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.5.2.tgz","fileCount":120,"integrity":"sha512-BkWsJqaEg+kUKudhwm6k7OIUgYcrYeDsTJXVs6rs7M7RjzOZBKzDDVTqo99EhxZsAVp/4Ut9IFeZpZpGwWV2vQ==","signatures":[{"sig":"MEYCIQD1T/wKIDyNQA/JOkgEDa3vZa3HH/NwZ8efbJI5RdHYjwIhAKapSBRVpxsoP4DtrGqqqyJg7KgliUVH1b45WF7Z8bzU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1449255,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2Xq7CRA9TVsSAnZWagAA4OAP/RalQWvhnQTJgEtohmfG\nUYtKixy0Jq3AlB9Kv5oNtD0XYrwMTO2t9MIuuROBw0lu4p2W7wBW1rtjuNgE\nct98khQl8BBoGv0Y/unXeosRSszAh4R1QaQlyT8s4A0rJ8MzR4MDZockMRFY\ndItyv4/4wKyeNevDiDPCBM15F0G/btHfHeCxsXdV4chbTgRzMTNqH0nt4/uZ\nI+HAhHKPTHjXBeC2dKL5rOxqt1P25+tSo+pJmPW1KmeZpfDtzXYZTd5AF5XI\nv5gcL9uCQbvvvDMSNLwWebZsjQK3UCQ0piwYKTIGwRxYMnKs19RKV3fDY0q+\n0hqba+B6UGgbQ2qmJL0uhSsv7nNfTZ5vdfbRQKqb6D361D2cEpWg7Y1Q2Npe\n+NxWGHjN1f06+tSeFQWR/+0ok0nrLhvRTahkt3/KcS8+4+cTcjovuDj2XZsT\neX5dSE5r1oMXWqlJip8ZH3xBg0U1PUWeYLTioG4mrp/Sv/Z5RvifPnNIFRL+\nNuCs2gLf79XZq2ixf+629yn8sXN60TKrBhwj34nx7ay1TTaQydVTFxqmOHgY\nJBkhHYRUqDWhrX7xMDl/+dNEEsb204gorZPNRwInGCO0y1V+W37RQL+p//fh\nyy86/ox144s51wiqA1eJ1HFt0RN7EUssHfWgjuMYzXwR2aUtUxyvYKjlbkkJ\n2w85\r\n=nGz5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"7d8afd8b16d918c2007fea3a772134f0f557058a","scripts":{"lint":"npm run lint-arg -- .","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env BABEL_ENV=test TIMING=1 nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.15.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.1.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.6.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.16.7","decamelize":"^5.0.1","typescript":"^4.5.4","@babel/core":"^7.16.7","@babel/node":"^7.16.7","lint-staged":"^12.1.7","open-editor":"^3.0.0","@babel/register":"^7.16.7","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.7","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.9.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.5.2_1641642683453_0.5129745607410094","host":"s3://npm-registry-packages"}},"37.6.0":{"name":"eslint-plugin-jsdoc","version":"37.6.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.6.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"e01697bee7187225e3d2562b88b282b37aa969fa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.6.0.tgz","fileCount":120,"integrity":"sha512-vMzTx+kpgxeg925xMHb51E59ROlMMzNy+KtZTPUhqM9jX00hfkAY5H0tQw0R1BitkEaWk7x7ZV0kFQ43wgU3sw==","signatures":[{"sig":"MEUCIGTGrb6nhf2bKEop/QbkkXlV9wlZ5pCPydl+xAQ4faFhAiEA58R/BfHAIAXNv2kJr3oiqUrKGpcgjnTZB6xmxPOvuCQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1449255,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2sshCRA9TVsSAnZWagAAX3AP/33k8UydlDXPQWoTAuqW\nIe5c2g8COl1PThf4X77OJLDh+SMhh35ZFo0CB4v++u31QCkyqx960iwHKrxD\nzgPtsVO+/Brt7XIbtk0jnZ+XhJa9lCZ/DPWiu2dyspouGI1zH/u7IpBIAHZD\nm/WIbZQI0+v5zNhDAu/nT/fh19vY2TWCTEzzk2kty2YlWp4hI4G5BYwAOTwS\nL/1Zk8xgI+HCDEMZLXZPPSxJRcL/dTfyVoP7a0iUHBeC4Uley5mRKJaTwYL4\nKDl525PbNLMSGZZ54mkCNuKwVnkK0R7v3HULYIK3n3/rBRB69vOEIPMy63HO\nrrd/z2o2lsOjJ/4XVw6NQn/lA8gEVoauoKIiFLFJAlwDjR43kBr0WAI1ZJHV\ndjsxoI43e7nCy/itjBG7r/OZoTwYxtSGwJtGer2F34GbsALGURx62v4+bUmI\nDLwTGNcaATAL01vQz2UNXhhNDLV6pKz/L4GUhoSkwHjvbNOSnLEh4jJ0ZuwV\nfbZ1BwO5U8sjwNH40MwuU9jea7JIG+15hn9N4AH+yMjg7IJq7nQQcJKpG8t0\nevoHhHzhFdU2IoHO3Sth3EczLfFiWT/nHWOmWhWDax6VE7D793h1tKp6H91/\nIb2rc0ymwGYYweM5KBj5ZPTJbQyfc96RUv1jADkTdmnUIG/TqEG/nvQtQvmh\nPhfH\r\n=KkcG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"a0093507b5ab9a618c71c0269875281f52cfdc0f","scripts":{"lint":"npm run lint-arg -- .","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env BABEL_ENV=test TIMING=1 nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"0.16.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1","jsdoc-type-pratt-parser":"^2.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.6.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.16.7","decamelize":"^5.0.1","typescript":"^4.5.4","@babel/core":"^7.16.7","@babel/node":"^7.16.7","lint-staged":"^12.1.7","open-editor":"^3.0.0","@babel/register":"^7.16.7","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.7","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.9.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.6.0_1641728801006_0.4018437390775291","host":"s3://npm-registry-packages"}},"37.6.1":{"name":"eslint-plugin-jsdoc","version":"37.6.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.6.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"3d2a18d2535618d3f9d26c3c7eccfb15b6db20d4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.6.1.tgz","fileCount":120,"integrity":"sha512-Y9UhH9BQD40A9P1NOxj59KrSLZb9qzsqYkLCZv30bNeJ7C9eaumTWhh9beiGqvK7m821Hj1dTsZ5LOaFIUTeTg==","signatures":[{"sig":"MEUCIEhndnGmmtJWiWq0qWHRqvI/p72k+g2xY0iK8sgaIArXAiEAi+j3XAxIfsQIals8dgzuhEbzmQXIBFKKDiC6geH7oK4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1448977,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2vPCCRA9TVsSAnZWagAAv3MP/jsDZEu3s642eSAYGd/q\njHfyPuxQ3xOSEGyUuuQtwB/CD/MA7OYhAeRfm2RVTFjDvIUEzvVQ68opy9+c\nkzu5oP0ZKvAqXKIUGUKZBNExhmNkZwO2vr73+ztmRwJSF/jEoQlTZweIxg8Y\n30ytqkNkgLosBY8eCSnPFwSzLWB6xZ90XTfGIqBr3jIM4cyDXYvsp4wO3WJM\nlp++qTaHIUnM45jnQxZ4Fq7FWhKyP9Q8MNxtrJp+/rnQo0LeOBriIs25vTYT\nh3OgUCefEUvlef0BLgmjRsZUb+t+jRjSTrfvBBIXHUv0lSeNz+OwwTz6jzIJ\nDJl+vw86krSlWJGQIgDHTAL/Os6PWQUKXMJ60c2W70PtXkCQPVIxQbalw0ca\naS2868DNHxJYO74DbygNTf+2qOyB7UFj6JOvEslTQGGhYctVfh50hparZK+F\nSvdIuGQGyFRusRxPIFpU8YaMiuvs+H6Jrbd0/b4Xml9Piww83W6anAXBCRkX\nbsWLjUkIyLV9+otzxqLawukexL9wlmULqYnd91ZyfSW/D8vRbhuFjAtezWTL\nuCCzBY1B6iVliiEMo62fcMXTXxPyAFpnWrPVfCrlx2rhTIiedassd0Vpp2ZJ\nmV5wMlYB95XepPvDyQNW418eCsWCRXzJLdTKe0xImiaxh2rt96kGHh3GShLc\n8pIh\r\n=RiJ/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"f48766e3fba8b1e0a5b332d163eb3dc696e541d1","scripts":{"lint":"npm run lint-arg -- .","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env BABEL_ENV=test TIMING=1 nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"7.24.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"16.13.1","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.17.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.3","eslint":"^8.6.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.16.7","decamelize":"^5.0.1","typescript":"^4.5.4","@babel/core":"^7.16.7","@babel/node":"^7.16.7","lint-staged":"^12.1.7","open-editor":"^3.0.0","@babel/register":"^7.16.7","semantic-release":"^18.0.1","@babel/preset-env":"^7.16.7","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.9.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.6.1_1641739202337_0.8543433816244808","host":"s3://npm-registry-packages"}},"37.6.2":{"name":"eslint-plugin-jsdoc","version":"37.6.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.6.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"6e34c8c3cb9337964af8af68f5bc5c3823fc5655","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.6.2.tgz","fileCount":120,"integrity":"sha512-yYvCkaq+7A+kWBi2fxJFgWErdGOth5W+h1XqVnJg4qWonWo99K8i7Hmow6HWaiixHShNobtvq66f9HG/dJZ+WA==","signatures":[{"sig":"MEYCIQDY5xkXiGvO/cRhINBThNJ36iZnmg1wBplohOvr40iSFwIhAJU3UQ41d2jIzTDi7cAZWINznn74/ZMRVNKTMIcOZfs9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1449216,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6fc9CRA9TVsSAnZWagAAE+EQAJTjM7eFcrYCrkR66ImG\nT88e5eZLKTIbFNkkezwcxPeXnrNXTnfis4X0hJhqnpX0Loxzxd3c9Bludi39\nQEIGO8QYqN7yny36J9kKDcEIymRrLiocFk1Lec5G7JEynzgngX3N0F+RAHyz\nKfzUrw5y7wborbDSuOOBXdESApYpbLy3iYcpJhEMWj2nh710WVqiPbuGi9Up\nqM4HH6AGb/dhR0SWjKgswRMyPBkFv3ep5Gq1T1ohtXi2KdSEPhQrcNcZzJ+K\nL2gKP8rRhbL+zX/P3Zv9seJZ0riP43boy51Hj6kHGAuxyLHJIA7L92qct7e5\nnRf4q20xJtTmXjONdq+QOscY1cxxo4uErnjTENJn2y7gmlCWRjZH26uTvGQg\nhRL9wLQX+9VhsFky/TNujy4Tw5xJaRBJOC1L39Pi7UyAVt+YStWDQMKvSPKF\nI7hHtSXn50RE+GkOW5xnwG54wDXNJ3T9EdZ4vOV/++5BkN5u3RKCtyUNqYPi\nbDiamzTXlWqWjAfCMSYtmtcdIUej1UDtNLTX/+luH08GUDbdllrek1bjHcYK\n7I58JK5SV51RhZRdGR0y3QdAtguDgtZ0/FXAR6Zmqro+D/rQTabCIFQZrVVA\nqBAwqQ+Sj/jxXPCHQ2qOEyUeqfNeo9/WKcylFmHCivRz5mleFwM9fkik4SMQ\ni9R/\r\n=IfTw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"873228a05d064e35d6eecf0cc1e62bacdab039d9","scripts":{"lint":"npm run lint-arg -- .","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env BABEL_ENV=test TIMING=1 nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.3.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"16.13.2","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.17.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.4","eslint":"^8.7.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.16.8","decamelize":"^5.0.1","typescript":"^4.5.5","@babel/core":"^7.16.10","@babel/node":"^7.16.8","lint-staged":"^12.2.2","open-editor":"^3.0.0","@babel/register":"^7.16.9","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.10.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.6.2_1642723133477_0.42410625666884183","host":"s3://npm-registry-packages"}},"37.6.3":{"name":"eslint-plugin-jsdoc","version":"37.6.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.6.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"d80e831af3de928274df913c5c9e5a3d7b0889d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.6.3.tgz","fileCount":120,"integrity":"sha512-Ysd1ZK4kL7DjjRJtWzb6Z7YANu7ndalu5PQBhOn07SlpKQ/+8JXvdtQ6yyADOO8w9xW5ZEEzuGY3KWhtk4CRYA==","signatures":[{"sig":"MEYCIQCswHiGY2ZKvetCuhJh7A+KD8AX23yc1fEzIBL1vi+DtwIhAKRqyGNXriuSH6CALM9SGk5j7wc0PIWgPa6qF66ELntE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1449609,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6shxCRA9TVsSAnZWagAAIPIQAJgNLuxYicw2WoKzUD3F\nAaJr3glu9pxszoH2B8NaO9Z2Hb4O7WPQXp2/9C44Z0qmAfmYvkrNf8lmiCV+\n1Ktcf04DcGIkVrHbNMgoNx3/K30pHU0rN0/MpBxrHnJdrNmlm2l8CQ1VuYEz\nXu4DdKwPoFbRnx+1ItJm4v7HFkhvaii2fqNzLZzv3ml3v7N8V1sgBdU2PoEG\ntuN+0wSeNLF9DuQqP1axM9dnfT42W91GFmJQkc/bvcS7Mh+91Ko7yNKEJXNe\nS+CZ0twvfCRPdcPrG5QqZIZxpODXivR6fT2HD8a9AO7zs1gj2Xd71ut/ucCl\ntSVzBe2D2n+nBItbqfTvibiOrPviwOuAOHJNiBYRqgIWn54xNoki6OuMaFSi\nI+SygZ5R3mrQF5PTyjKbiqA9n6cMbs7Pf+NTMyAi3WCrTgPB8ProaRpI6Pb2\nIeMqsQMW1T8FS2Uc3l61WXx6myc3O6ikYvLBpKCxz5+6QAvds9DEa0rjHwsD\nWDxjJmMX9t53CjyCMX9mkzVxp1PKf8Nj+8rbF/Cw0NixRZUsqxSlZVyh9vkl\nKdPPBe54AGBktPC0NTUCZMkhb2xVO1LVgmZ381tTgncEmhPFYIkdU3bonQcD\nbbilkdDl5zrFZFhAU0K+qtqwN/DxJCI1riGURzr3Zfo7OeS4iWdezY5tD+Ql\nTRcX\r\n=p2oH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"6524c312efa77bec149641ea00bcf8ed7bb93fb4","scripts":{"lint":"npm run lint-arg -- .","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env BABEL_ENV=test TIMING=1 nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.3.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"16.13.2","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.17.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.4","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.1.4","eslint":"^8.7.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.16.8","decamelize":"^5.0.1","typescript":"^4.5.5","@babel/core":"^7.16.10","@babel/node":"^7.16.8","lint-staged":"^12.2.2","open-editor":"^3.0.0","@babel/register":"^7.16.9","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.10.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.6.3_1642776689297_0.7260918664331848","host":"s3://npm-registry-packages"}},"37.7.0":{"name":"eslint-plugin-jsdoc","version":"37.7.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.7.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"975d9f18cb0520dde7a2b0db5f4421dfee3fdd17","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.7.0.tgz","fileCount":120,"integrity":"sha512-vzy3/ltXoGtabRnjLogaEmhGxxIv5B8HK5MJLIrdxFJUvhBppZjuVuLr71DjIBi0jg6bFomwkYKjojt29cN8PA==","signatures":[{"sig":"MEYCIQDlttQBuNudHPfDfNLEcbWsi+mf882tYe4upAgTyl8iRQIhAN2tCIHuTd6loA0hvYTMqlSL8CQm3/gXOqXufLvXxmPp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1450407,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh8KmPCRA9TVsSAnZWagAASLMP/RYFB231fCI6Z6rxwKTm\nzASz58CAKr4URU+4pDShy/ErUHfdxzuwJ7/I52xs2cWCpYcnUguk78Hk32Mz\nBa4f+AKeI+9DQq1CYOgcCWqZ7Z2zWFYyZ1CActgABLde8SqtbILjb/cviz+p\n4Uv05CO+2mJY+r1+maKl1A5NP1Jd5fmZ5XcgGyh0Oddpcm9X/Ezdv7nc1x1A\nYLqVWCYSB2MGDmAcEZgbG7q7qhGdIYGfjulkqeshS9gUmYlvcGvGt/LSgqEP\nsYAJwSJ/Oo1mHDwPeiPPGzEz6KnAdf2Een3/wyhgnRsv073RRLovN1LBKw4p\nFjkkI0IvpK+lVGxcprE4e4Z5w+ppbgHaaWwdudQJ7ctt/w0K6D7qePyoY+XC\ncU11bTu0PK3dsojdIx8pFlJOu+muBlW6BQ/acRK4+hh0n05MjmDlmTPi7U1J\nn9kqIOltLkNeUQg3jivQr/JguuWC79uvxSkaqVeVfONT2nJUK4NwQOB7jxrG\nD5WEGrKgHuGW+7WhWeI2S8pM48sdX9/nWiCcrYbgqBv82Kn8YrY3QwVX70em\n6loU9A1K+sVzck6eYwwFIWfmEBhHrUQ27QiH/rJh6F+VYEQoMb1yzn+dZkvO\neCTh6qYoyfVG55vjW+b1v7swdHjKKkJ/dcSzF9HU+rM9uXZXq9ZJIC0Z3YU0\nLcKG\r\n=9RmP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"5530e075354329fc95706d9950e76a465662caf1","scripts":{"lint":"npm run lint-arg -- .","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env BABEL_ENV=test TIMING=1 nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.3.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"16.13.2","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.18.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.5","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.0","eslint":"^8.7.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.16.8","decamelize":"^5.0.1","typescript":"^4.5.5","@babel/core":"^7.16.12","@babel/node":"^7.16.8","lint-staged":"^12.3.1","open-editor":"^3.0.0","@babel/register":"^7.16.9","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.16.5","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.10.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.7.0_1643161999190_0.10839254682529176","host":"s3://npm-registry-packages"}},"37.7.1":{"name":"eslint-plugin-jsdoc","version":"37.7.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.7.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"faf2cd2c56df11f77063aef3abbe4a1932af308f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.7.1.tgz","fileCount":120,"integrity":"sha512-ySxDTedl6qKXT/VeTwcZlhsRtvNQZGPklyVnaL5+ge20vowzFA9CKvrY0NXRqvdIz6JBVMFpxX9DSmS3OyAUOQ==","signatures":[{"sig":"MEUCICp5yH6pDInjCEa3vNaQTvzMnrN3585CUEqTIgTbjBbIAiEA8IEI/7El9wbi7r0cixk/9XysxrIQAU8AxuJJIMgRJkA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1454551,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+71LCRA9TVsSAnZWagAAZJkP+wcDdKwbBVxummtmW98F\nsCkGQ4Tm+HLAQ9pQ6W17/88bHbD4MHdimTkQSzvYIXGUZQatPp5JCZdUpahM\n1EcpaUy7wrkQwCCJMS2DeUKQ7T2e9v9KT6+bUqbQr4fwXXo5ln6YJbBwtXtN\n34k6t0P9FxuTqcrOt6PRrMiTp+zY3bDaZm53iFOiBrncehH865I077uDW2nf\nh9hmVF3mJ46rV3NHrXthARuc59NcjH1OufT/pSu4IsktHfWEXFsTqtQE6aVj\nTmbsHW542W8A1nRDyfYAiEbWCXnny5oOD2zsqFOJgGjPqVBrg3wiKRAIGFl7\nIZAmHrb3JxJ54dABbwJnRFmh3K0IvfG3q3sBlvTzLPdk0198F4UHdhBgM5mg\nxXTbHm5rNiq2pIe1WqogS162HVASB4nD9dJUW8XPl+eUOuK3yh/S+1oTtPSR\noJ4+cP5ADkcFImYLIgV4CqYGf0n8iI9QrDhOlytDDJO3lR0PoaOpxXWibvZl\n5A8QboIwSg9GZugoX6nKLsen6xYM8fyJaOkgak5sLsi+EZKVkvMd9haEFqDA\nwwgmTq/Uizdj3gh8BHwx01CW6av7uLFYaOXTtTDfxU60nU/GqOqaZFvtqYmV\neoVs6nrpAuSOGs8QhNa5BXNZLVZtI75afuC05vWVx01EnGdqSCKvn0Jr28f2\n6x0R\r\n=Yf6U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"9d0a75d454cb0d33cf71e99e9a439711865876b6","scripts":{"lint":"npm run lint-arg -- .","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env BABEL_ENV=test TIMING=1 nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.4.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"16.13.2","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.18.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.0","eslint":"^8.8.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.0","decamelize":"^5.0.1","typescript":"^4.5.5","@babel/core":"^7.17.0","@babel/node":"^7.16.8","lint-staged":"^12.3.3","open-editor":"^3.0.0","@babel/register":"^7.17.0","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.10.2","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.7.1_1643887946951_0.2717664482609825","host":"s3://npm-registry-packages"}},"37.8.0":{"name":"eslint-plugin-jsdoc","version":"37.8.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.8.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"965f67d2762076fcc5a7a848349d005d5aca27a3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.8.0.tgz","fileCount":124,"integrity":"sha512-0HvNH9nyKhp06u5vi8lPB97j/luBrkk+6JrcKVBjLQZuVkyzLYfKOYoc9cFHxMKvJMgYVa2F3g+msV2T8IM3jQ==","signatures":[{"sig":"MEQCIBBjN2vXYrbIrGUaJWam5+x+UnfSIEcAc4tf/h8xCibAAiB7jjupSNo8UrQRbUfteZX5BTRzMikeK6JdWZHLyE8Rfw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1493191,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAWrgCRA9TVsSAnZWagAAnmoQAJw0ntzPTaL9ePKErEg+\nXnMAjRj7WjAUcLgqurkUn5i9VXF06CPr2SDIlZfEQEsDBfiRwiAN/OlsPjhZ\nsKjeu+ytPYUWKd+XmLiEWvhbC7F3uBpC+eMT4P99A2U25YwW6qrSK3s7IfVR\nVCqTeA3INbgprD6xP/mquchaxAjx+6F/Gs0iDSjuh/LPjWl8CYhp0Xj5mkF7\nJfQ6VB50f3RGMbKVkAhu7NDc84Qrjed2yfXgofxvrroweDnk1TVgExGSGuPV\n3hmYn8pXSRWl719AmgDY/Hv9Kqj+1uOx4rRAKqNHwlTbTlMNDi+dVYKFdMkO\nQehabs28kLt9VF+sl6wAWTb9eG4YUGev95HBxUvD5TcGOeuBvgXPrzIb3Mym\n46PC1RjKkzt5L7q3oT9toyA4xlsQ810aPEjFTmNBhCM87gujOzQyCvH7+Vpl\nok+aeNaGvuwEdLpKY9b+ps2SjIrdH5CWKp0vUeAgIg42TsDeHXMPO1KR7Mmx\nACJMv7OrmDNpjYhu4Kp8fxIdIgTeYHnlJwUmAnNIazOe52j2RGcw22paa95c\nus9+6ZPqYweg0MHWOotIBZeHUbuoBZV37Dbg6DTrUg4r5EZPrdwq1B0l9zM6\nVIojj5bU0fAp3X7CUBK68VxDb7RvY8i89Ggl27sdI0fozp7P+YtLJYj6oBQQ\n0ea+\r\n=dR1k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"38d51ff9d45f1e9aefd87d4feab2aeadec1dc3fa","scripts":{"lint":"npm run lint-arg -- .","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env BABEL_ENV=test TIMING=1 nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.4.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"16.13.2","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.18.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.0","eslint":"^8.8.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.0","decamelize":"^5.0.1","typescript":"^4.5.5","@babel/core":"^7.17.0","@babel/node":"^7.16.8","lint-staged":"^12.3.3","open-editor":"^3.0.0","@babel/register":"^7.17.0","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.10.2","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.8.0_1644260064667_0.8466767407283105","host":"s3://npm-registry-packages"}},"37.8.1":{"name":"eslint-plugin-jsdoc","version":"37.8.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.8.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"f96b4e78c021e18a7e1bbd04ede107dbd954d4b1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.8.1.tgz","fileCount":124,"integrity":"sha512-whNGcSej5AVUd9+NbUV+bEMu+fKAKlDKuDzLy8nzN0dCyxGnxwwmCVQ9gzfKTq6QKowQd+eSA2COzlsK6g3a6g==","signatures":[{"sig":"MEYCIQDqds1EIMuNtOrKIIIj9Dg4aZzADZSIYjs3YOJ4dQnJnQIhAIkuHYkkm2do0sYo6698ezcrXq/YPj+zdjnhJi/q2kEN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1494192,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiA8hwCRA9TVsSAnZWagAAk0oP/2t7JRbl0yg1uKLYqkfT\nZ67W3uo9Sz+eMSM4u8CDQAmgaeC7UUgy9LfMiNmCgVh2Us3mLR3V24JtFO8+\nKnMCJP9FIcA6R0PH+9oj9S46mhd3i7Lp88X3HCU3ne6VSMQO1M/+3iCbAj5A\nm8QOdrl5jDU9VvH/gmJOVlL7JBUsn3uH1uLkrCo8YDfgwmWvl6pYFhV66Tp/\nbEtT8hsq34N5YRvylTXB2UPcPrq2cUtB0ri+R+JtCdd+wFPWxMC4J8Ls1YSh\npDuFY6P4g6KR6rF44aC0JlWPofRS+H0q/XENQrXwg245283bluoyT46OJBWO\nViq7Zjh8WzEVMpP0vkvr6coibWDhcXlm5xxABlqw3z3cSloHMv6Hh3Mwbpms\nwUsjvwwhqdzrNug74IDezVhHbFKaNOSraUwifE08oczKmKmS1l0+kkOdq7XS\n76OJE7hx2a17PtcVfvOeLR9BWn7nZY14lsRI9qn0vnXF9LX/gt1+4g1BYQQ2\nS/lVM7+ajpyOotcmhazSIlXuNrbjW9ijKfbt2k/exYhGrzFZ5tR1F0qIr9Ry\nbyzQCpzoIbY0i3j6YTWzb2t+xfaBdfV2o1ylnLKD4OedPE9qagkNPvQJowtx\nUYg7JR4HS4wSxuO3+GiMkVVfkirFecw6Xfx3f9B0IkBFWiaTpkk4NJa0CyI1\nTy9H\r\n=MzJJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"8847608bdd470ca690c6dd0141237bc0dac975e2","scripts":{"lint":"npm run lint-arg -- .","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env BABEL_ENV=test TIMING=1 nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.4.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"16.14.0","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.18.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.0","eslint":"^8.8.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.0","decamelize":"^5.0.1","typescript":"^4.5.5","@babel/core":"^7.17.0","@babel/node":"^7.16.8","lint-staged":"^12.3.3","open-editor":"^3.0.0","@babel/register":"^7.17.0","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.10.2","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.8.1_1644415087845_0.890561750873974","host":"s3://npm-registry-packages"}},"37.8.2":{"name":"eslint-plugin-jsdoc","version":"37.8.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.8.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"503b03f732b26ecfc61e344dc2df0f00d0fe8590","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.8.2.tgz","fileCount":124,"integrity":"sha512-YsCdhrfdipGAy1NBdPOR5yiFzsyKv7lPDKlPn5aZGsQX+0KAw4fHV4uTdW9zsXJ8MxLgaF2cOC9e7JPwfJpYJw==","signatures":[{"sig":"MEQCIAC6egPOdiDSlKwaPdaIVl1UGv6T7JnHHjk7haOQfQhbAiA9zpfQdWjzyY9m5bZnC9qVehLdHUlNH/+13WmvOcC9hA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1495056,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiA/E1CRA9TVsSAnZWagAAiVkP/R123hGkfES29Hwj8x3C\nohqjNdLs9u7OvGJv9rSKwfHoRlk35yodEkhFQLDMDbsvPScxZUL9lkeX/vYl\ng5FcxvEf91SpSupxZJMIekLt/w7oDAylYIhESMzHZquh5i8ng6UVUni5V9aK\nD+j29zrmo2vrFU/hLnEL/DmGovbH1ss9Q4tYExABqeSF2uDpl/yGzmq3UFS6\n5TJ+1Di/hWzcgYGuL9U8LFFwS0wtG07joxiX34VMXhsgaXBdayGd4baryafE\nqFxjbSal6mXlDE8KBkkxKGydA92wnyUMlX+Hb2SjV7uJlX04nQzxGvQ0frr7\n5Tnyeaux1yM1Fgjto9lu0TMfaLnBWWkIR4cqXrBAsEMV1htobZD1MSFrO7kU\n/dQNKOHSNwR8XM6ubsJKp9WtB8nAIXbXGa2aBNevS/2uFdefQqGGfhEKkrfU\nQuLY9iNI77WEvomHC2A6IOI1DnUTMnvFUFqhLLy7A/DalmdqBqJMD47Uvn/E\nVwfH6phq2O6zmA9lcR847KbRtj0H4Ss+TS3snuEsN/oSPqrzh6Np3raH7yem\nIjmP9/C14gpFKmcUkSSGTmc4J+MX+N8GcF+TI//zoyw/lQdYCYrVmF71juHs\nxcxhNe5KaAbJndei8G5srK5Wn2on9KpIGZj4DCjb7x5nW80cd5vaEi9TIQSA\nEt6K\r\n=xEe8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"1b3212f0cb7b23ed4466a202f154a86a5919519c","scripts":{"lint":"npm run lint-arg -- .","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env BABEL_ENV=test TIMING=1 nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.4.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"16.14.0","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.18.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.0","eslint":"^8.8.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.0","decamelize":"^5.0.1","typescript":"^4.5.5","@babel/core":"^7.17.0","@babel/node":"^7.16.8","lint-staged":"^12.3.3","open-editor":"^3.0.0","@babel/register":"^7.17.0","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.10.2","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.8.2_1644425525063_0.7142542138840746","host":"s3://npm-registry-packages"}},"37.9.0":{"name":"eslint-plugin-jsdoc","version":"37.9.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.9.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"65a39970c6e97800b4101cde1dddb1cc73f09f74","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.9.0.tgz","fileCount":124,"integrity":"sha512-2OXC+bI5Ypjkj+cZWPOfq9Bidx+q9GqUKfAix9SaX4qsSLx3AVfSqOhn/FFW4eoofQ95ZeF1Jwarwa/Z4dJ4mA==","signatures":[{"sig":"MEUCIA6i4tXoOOfvnMUVApr9PqMdtj4alGz9P+6DqI0Ad+FKAiEA87mwWNc0oz1i9K2AN9CjKf9CR89OFweioWH3qhz3bHc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1497672,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiBqCpCRA9TVsSAnZWagAAnvoQAIrLwD22QZPF3f8c2jw1\nT4XsVMK9FxRrs3Z7fIbh6ZLfycJszNIhcJSNB+5fsIN+kNZQP6teEK9P/XM1\niv462mIb8EJ1sdT2fJ5JHmgG+R9YOOHhsPnNe3h63ZShwPUxmLHj6qNvqKtt\nJcoPbsKXmua5/N+KJ+FzPPTLz4teIHrNW+hjy1rcTyo22gGY/8f4zOgvNx+c\nda0jfVQ4m3kjnQxFPZjd9nyV903m2LoheAVvDQEphgO1utJxoWodJJ9YoDle\nw747xVIIlNvrMgm8QfcVguxqDuYWYkp9mp+k+oWGBFdR2gEblL1c1pvs0GKq\nWrWMfJuJ5Rz8n7yIm8IPM9o/pwS2OvoP+FL6qZQVK7fV7dlo/YcNaqWS3cJE\n7o9Wzb+j2FZD9qFNQqW8VNWTBVdTTDDPYnAz5HUWxzWwdmcM2e3+Au3FgNyN\nCJdULsuGbgplYC6r/utLWZs1QIU1xxpY33nx2A4eFEgaXjFmqWScFtyIRVpd\nEfnmHkAukAax7VSmZ2pPj2rGe8Fvv6rlfbhEiZpT3EeLfzXeiD8PveZ9VtMX\nag+OAgzaRLgBULj4BZaVlBDSeLv22+JTXwhfXojZNXCPSIJR1axeXmBwaBUF\nZt0VS21GLiOnuUpvJDuQ6K7qL9tEYeHZKZ/KHM0QyxVZJN0HMRO+UoZws/Gl\n9s2k\r\n=Y3TF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"eb92080fe36f434e5cf1ccb5884e72d1bb8a8a1f","scripts":{"lint":"npm run lint-arg -- .","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env BABEL_ENV=test TIMING=1 nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.19.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.0","eslint":"^8.8.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.0","decamelize":"^5.0.1","typescript":"^4.5.5","@babel/core":"^7.17.2","@babel/node":"^7.16.8","lint-staged":"^12.3.3","open-editor":"^3.0.0","@babel/register":"^7.17.0","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.11.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.9.0_1644601513459_0.43972028406003894","host":"s3://npm-registry-packages"}},"37.9.1":{"name":"eslint-plugin-jsdoc","version":"37.9.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.9.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"c5c3233cec46aab3745e9d12359ca0318b0a4da0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.9.1.tgz","fileCount":124,"integrity":"sha512-ynIsYL+rOtIKWOttAYWCgOJawPwYKexcX3cuoYHwifvz4+uY+MZ2un5nMHBULigdSITnQ5/ZSHpO/O1nwv/uJA==","signatures":[{"sig":"MEUCIQD8irUNLxrrh8wzBmN2phH+mNG2iWWbEW+pQu6xbvozfQIgLd2v29pIScOb061gFxBLWqw/U3o/3Z5/MBF7yHMpj2k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1501653,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiB8iGCRA9TVsSAnZWagAAMSYP/A+XEJW/BINru8/oc5CQ\nufYtYzP00o0RPxBiW28/he7O+npu14tW3vQ7AxTPiz6N438K7aR274gjUGWZ\n1JFUAEa9ZH81VEbyPOGwzuUaKnv7HNN4qpPAgQjkz/0HWDsK96lQbpn9AT5M\njx9jU4sVGviv3+FesUkYWs3R5qjbCsLUqeCKR2Vbfbx/QgB5wrkpCXYt8kjJ\nIIXJuTxDQxvMXd5h/OKsodt+97n8n2tsAh3pgX6X3cWNZNqHPH/i2XNH6eEL\nRRAr54X3fyj4KBGmCn8GuyjvEImH7T9ajEYW3rSEqm5C5usJuOzRgfAKeH/B\nwYmIyw9+SQIGq9i2Pr0lWxm5ldvR4eRjjWVgmfZxX0gwsaH5LsaGy4yhcruq\nPnQ3zhP0Q48cy50GfqZ8h9XNj1+e5D00earph7wUmWHWPNxir1Ulb9462RWm\nkmXvC2KH7LVBU5Us5sU3ujbyW5+5LJqxIoXYIXxQtDmsJeJyGriKfkogZvG8\ntxOk4Z3HS1vcAdTwxXtmiYbmnZ34EP2HuQRAM663hiICCRbE1nLa40mQD3OG\nyhil+oxwYHzCoE4YSJuNYCRHTxwSOH/e2o0NGw9qGP+KiGr8DHvzP8lLEFxn\nI1BjNDdzhwXRLA3sbBEFfJ2HkwLEnuZMJ1sP5l8nVKGoWK1CcTkrZDoGQUJk\nl3zV\r\n=KAG9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"32447f0daab6052cc4b581b626819d72301342a6","scripts":{"lint":"npm run lint-arg -- .","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env BABEL_ENV=test TIMING=1 nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.19.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.0","eslint":"^8.8.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.0","decamelize":"^5.0.1","typescript":"^4.5.5","@babel/core":"^7.17.2","@babel/node":"^7.16.8","lint-staged":"^12.3.3","open-editor":"^3.0.0","@babel/register":"^7.17.0","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.11.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.9.1_1644677253791_0.3109855959085739","host":"s3://npm-registry-packages"}},"37.9.2":{"name":"eslint-plugin-jsdoc","version":"37.9.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.9.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":false},"dist":{"shasum":"bbd3b091f92d0c751183f09eccedf86fc85b920d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.9.2.tgz","fileCount":124,"integrity":"sha512-2VnY8fzFX2BsP3sHDeF1V6hacEUjt/tpq1JBo4PYeYyIJWTy3KsmCqDgs5Yqrfw0cbtFRyHTHN8ELbH7X4ctmg==","signatures":[{"sig":"MEQCICvzZ8FjpUDKalotRrKPjQ5NqSkbDALRhLpjqpp/Q1aTAiBn1yZS2nw8XonHEvgq9jkGRCYysk6X5/JpBTOw4M333Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1508695,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiDhIGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmreRQ//eVijzRjR52JypL79SypIt6nBGTfutyT8rYmvLApsHliF0Uz8\r\nHzuRTV2oMEVqTja9C430uFb15YcR5bLIOEUb5o2IuzPBWxyyJkVcCoM87Izc\r\nF+5zXVHKYs7igV/xIlhXEE/SDTaKefAEeUzpewEtds4iVm/eALtFP1dvvoze\r\nLBJfn2xPGoLfU7Fx4ynbWcXKTYnRLVv3hAv+iktWI4TxlOUdXKeGC6sdf5+d\r\nuUyE5zqnUcXkqiCK1+o+cIykVp4rEECtAWK+frmqCjcIrEkOQ8V8zSnQgTI3\r\nCL5glVl3gedhCKJhtCNxdDVgMt42Ol4LEzOMOuhbWoz5SC3loSzSbqZ/fMXH\r\nlT2Qj9uI8xAEcI02fWLRQcme8AbEgXl3m/CFCWcWBLvHvjp6RsuzaqApNngq\r\nooP+1xjhaV1IsqcUBw2xAa5QYtrrCj+O2qHkKG/b68p5G8YydOyKaWmyvfca\r\nwlva9tSnrvUMJzVX0GPcZDN3//ccdE50EUGZ8yh+o023NNDsIr0rwnVf0tSx\r\ns7YCo7RIQr7s+uROOR2954BRFVBU/it3P7POTURI4myNvxreB7pcZ2klHLxP\r\n1zelhFcETgxBl7qk1pTLC47FUVHfAqmgmIsLCP35hu7YdyvJB8q28pSDuJZ7\r\nbnr6OS0lMeJShGgW+KQlAZYECjHuddLI4j8=\r\n=UI41\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"0cfdfd7f6a2352787a0ff0d13fa15721c42c62bc","scripts":{"lint":"npm run lint-arg -- .","test":"cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env BABEL_ENV=test TIMING=1 nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000","test-index":"cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.20.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.0","eslint":"^8.9.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.3","decamelize":"^5.0.1","typescript":"^4.5.5","@babel/core":"^7.17.4","@babel/node":"^7.16.8","lint-staged":"^12.3.4","open-editor":"^3.0.0","@babel/register":"^7.17.0","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.12.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.9.2_1645089286678_0.9802886893397624","host":"s3://npm-registry-packages"}},"37.9.3":{"name":"eslint-plugin-jsdoc","version":"37.9.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.9.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7492de0251a2b0fa55460bfb8f94fcdba0633469","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.9.3.tgz","fileCount":124,"integrity":"sha512-q8hAUB1pGx/LFi/SjJI/BfSmOA1YwUqmiTtt/Sc6mbSG6Er+7Je1GQr1KSiKDjYD55C1U7lTtdKKqAQg7279YA==","signatures":[{"sig":"MEUCIAIwvM16jX7Xu7N8JBFp8v9PQA0hFFSdaCmjHrpVnBNBAiEAoVxgk7FvtaLkAfCZA2jOYOJ+wFz0aYMX0Whhq0ZWRY4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1508886,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiDv/gACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoCDA//cp6iUwN2RY6WB0F/avbPeagVFE4+nBa0ZLp/HKmK8ciGgd8I\r\nu1mYLGG4xG2jKz+GSYTOrrovv6D1OL+6O+bD1+YA2KYjpSWy2CCuWbXjj74D\r\njgSnBUKUI1nxt2W9tzk4078Ep+IaPp8ZRCxtvejRqy0QqlKzOIYf31wZYLAK\r\nOuYjrGKiv0DS2a1S4ng4om9nGTgdt+BTVanxptBt958SMfXAr88i85YONrfy\r\nBwBBpVHjf9bbew6jvB4G40LIONv1ZODSvxYKIxn3ahUKCvLMB7F7C7tpL3aA\r\npamHJ0I8QyVf4txTraYoM94/77GbBtvUEBBBKIj6nADq+pbsLO1OD9U5XaVA\r\ns+9X+aQl8O4LtoUTSN/UkfPKRpa38q8PYKLMESGpDl7MWHBVCREIfCRzoZ7Y\r\ny2ilzMIBzCAmnN/EqRedLjdIoERsWL0txnPP7OKEnonM7z6vpIPmBikI7laC\r\nMF3FLmTiM8qgjqXzdO/f5QsMfC3OjcZvFqu94Zyb6kLYu9TvvSJOJs/k3GoC\r\n8ClCLJCdGLrzfJV+hdrowl3I0m0YnfinvEecdHNIu4Rg74L3Njc7GlAoXmN6\r\nf119Yx1GLvUQtIUNKwrJv3EFObWeadhZTcjFM0ZmMElkNrk6zazEyjIq1q07\r\nRlKydRcSP1HRbk0jj8EDCLI/oWNCO/2Trg4=\r\n=EpVP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"06c3163767af98c729fbdb2ff1b0847149900123","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.20.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.0","eslint":"^8.9.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.3","decamelize":"^5.0.1","typescript":"^4.5.5","@babel/core":"^7.17.5","@babel/node":"^7.16.8","lint-staged":"^12.3.4","open-editor":"^3.0.0","@babel/register":"^7.17.0","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.12.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.9.3_1645150176583_0.8471169280841697","host":"s3://npm-registry-packages"}},"37.9.4":{"name":"eslint-plugin-jsdoc","version":"37.9.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.9.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"dc645724d544be910d6554467b93a5836fa0fa06","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.9.4.tgz","fileCount":124,"integrity":"sha512-VxCyGgUNNnj2T4bb1OqltkbsPp3ehRzR5onIfh6zGrAvISmvgX/sbxUlh3YyGqWtjOTSBCURdKdmelSXEIHnlA==","signatures":[{"sig":"MEUCIQC+NKUEpdECPe6dUSk/k/rCA59cLKBa24GEImXOmfvpoQIgEGxkXR/zIaQ2dh7ZImbjZ9op2X1q0hO2CYpVv3CQf7A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1509504,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiD14WACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqN8w//Y1CWTuSiMFKlwMKk4c322U9+4fzcV+PABYNtZ/XiY/yN3KGw\r\nwDfsgf74lq3ViZLroTF6iFqsq6xleLQAB0LV9qG/8d8ANVdL3sFMyvs/Vfq7\r\n3fbpOO6/D1lMHzgJN4dOUcjTVOT9wS2TNtRcB7DmN7VxxOFRPdKBPXyWeXLg\r\n4xWlWdeuNY5YRYCjkTnAZ+Bkl8bvQhSSebrzIVqFMqb1uV/C1y/B35Yb0L0s\r\n2jKt2Z5JOsq3C1baSSbGJBYl+PNQpVc2m7+zLFr+OB0I3e1vZ5S645TEB2OJ\r\n/uItMFnrfyT7qJsh4upLKXYlHfpbX/Djer6CtGxOH1H47IZjpX+CavzL60vz\r\nNAo60vye67KTFEIHU/t267jrLZzGRw5K5e18B2iW/zds1dpme44SPNWyp39b\r\nzKDNNfsh0k9QXfqB+tHwR8iuECD5jpxanTY8Hl0hp6uqMgXD8ZoDjxJAZY0K\r\nfcN9hBC+5f7a8RlT9xLEgtoa7Tjn8pQWd13KJBCVa5FLLYXaFMTpyZ3sX7xJ\r\nCfs35ezg9dvczwdzdAxt4HhvMgQGN+G5uGrsi6FVTKm48nG4HxtQPCKAdywi\r\nZANhsOjDrSo7qejMcfU4da78ed6+kmvD43Pud38TnNsjg4CcyNnITP3G3QQU\r\nLUuk+g9hEsrcIoEkIxe2wD57OZelbD0npMk=\r\n=UAJz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"ef68427b1ad2d502f60caa24966c43ac4edfa1c3","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.20.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.0","eslint":"^8.9.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.3","decamelize":"^5.0.1","typescript":"^4.5.5","@babel/core":"^7.17.5","@babel/node":"^7.16.8","lint-staged":"^12.3.4","open-editor":"^3.0.0","@babel/register":"^7.17.0","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.12.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.9.4_1645174294147_0.7664017448771572","host":"s3://npm-registry-packages"}},"37.9.5":{"name":"eslint-plugin-jsdoc","version":"37.9.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.9.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"3c229c787688ee5ccb2f315c1d310a23af44e11c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.9.5.tgz","fileCount":124,"integrity":"sha512-g2NHlLauufgQIlJBOxtg8afY+JAFG8lPjq/PGcU+IBpEXvaDs2MLoXJ6uDuv+N85nIt4kYaoZrkce0MANEXLZA==","signatures":[{"sig":"MEYCIQD9fW1HM8/1xoqk0HH5rsj/s9o60MVRGCno/T9TH3kCKgIhAP22C2ae7lzGyIJPWJvgcwiolAbcUZ/hcjHhvpUcogJT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1511381,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiHNLyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoEKg//eII+T4cPmhYTC3pM5NGFGMXcjMnlOkQvJcHLqIOG3N5e4uJv\r\nGdBKYhQwPxPrXoX0+a2+x8N2heBr+k1LrzuFI+VMyNtYvXF2aKYogLzAGDCN\r\nXBidgEhvNE75xvQ+IV2v2aguvB7UygcVygcmUl8kzJ8vmjMEFiE26lKP+ihG\r\nkM+GCqcl0SsiHmf7rkgZ+P/356lZLdkRzYOD6ZpVQHP97qNcxZDFwIUb5JnZ\r\nCgs2lpMiFAMXigw6Zr41Y5WR/lYKjG9qfgdsRR+HwpFag50upek5xqfP8a9c\r\nLvxU0mQaJtctauZBgdaqTNJXIbdqEPUkbCP6isTfVpESKt0VgKkN8VZWgQR6\r\nLtmidm33D881580qKTWKEDnuyg+c5OvGi8UnU+NT5Ayek7LfNTr5yO30vJbF\r\n6VsWfA8/Tko7B02YClj0jcKtsibCpuW0+ezDuQWS+M4asVfSa5LERiCDA8O3\r\nfTT+/prqvaozKYFgueY7IpKdSSdDAOhT157exUftbMgUdkh5O+DBdQNDFpMP\r\nxksLdvNSdj1OUiiMtVNsRDCPeMxChrjeFnnZ60jW/8gDhqy4qrHtErQThsDN\r\nMj0rF38WUK1Y2IvRWXqsAN6rLfq2dDrrtBkHpxm8adssDkcE0v8YfAEjy9Gq\r\ne+L1UdzdctYzAGamGHxOnC8KogzPp+8+Ac0=\r\n=ykz9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"509baf9fa35337508624867e922a892324b0571c","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.20.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.0","eslint":"^8.9.0","rimraf":"^3.0.2","gitdown":"^3.1.4","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.3","decamelize":"^5.0.1","typescript":"^4.5.5","@babel/core":"^7.17.5","@babel/node":"^7.16.8","lint-staged":"^12.3.4","open-editor":"^3.0.0","@babel/register":"^7.17.0","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.12.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.9.5_1646056177980_0.6603784342490522","host":"s3://npm-registry-packages"}},"37.9.6":{"name":"eslint-plugin-jsdoc","version":"37.9.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.9.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4ac0b6f171d818856a6e52987413f54d66a50800","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.9.6.tgz","fileCount":124,"integrity":"sha512-GDCB0nEwKVaeIzam+t/yB8XG/6tgvc9XgrSwuxqCXVlKRWUqTuTqntZoqAKZAIbWIgYsrnrvrWAyIX/QvhwBcw==","signatures":[{"sig":"MEUCIA0cmy5imD5lqVgYInh8bAIQSWw7TluzNx1nnWMrh8NFAiEAyw3SlZjAxb5AX9SqTVfWskqVo9NslDWydVj3Tx81YhE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1531865,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiHrh8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmplIhAAn2d3OcgvclBlI4ihA+ihwpciwEVfvbzrqI+tqy/truJibNl/\r\n6RGXRWjNLMDF/fmxuKDj9gkbOB7Gk3S26dI9KPaAoiuoG4OIPRwgTVCLv6hL\r\na91U5V5zZEx5r5f/qyGygpcPpFFkkYpUVbt3cBQQiDzkSUKRPwU+4Ut56Y09\r\nBOQyIqPQ2fi6NwL26miPOULuxEfQY5NRcEuSeMA1XHYBm+ump0mi+XRbmiSG\r\n7uByG9mAmJIbmfotUrxGXM+mWr45yxX5e2BZbOHnAlSIFDt0/sQpbfvXXRLN\r\nQh6+thyObxlIpo6pWdPn4qMFk8ZvDZy15mE5ZZ1avKl9vLJyokd+0Q+7JI8u\r\nx8P0CfaJdMkHWZhZ9marOXBg9ZsJwzoodCHpNNOSIbfqLr4UHQBPe//X3ARk\r\ncTpZwE9bZkpjO1rEZ70wq3lvBFoi+b3uB3NSZEpvsc7q0Aorpz+reYCQO8Aq\r\nVdhACENM5LsLq342WlLb05yOYWDHdxMPdfCBf985sW6SEQu/mrSu5sK35i5Z\r\n9uV41EFvwhTHeu7WEDRAMechZgTGMS/gnIQ2NuSBxWQRLK62s2Sv9UZBe8lN\r\nJZGYAgbSbhnJwt6GoX+Oa/Ye+j2QhrCPl0i1+jDBlNC44upGkh7yCh+nU+0R\r\nksEHVHXG1TH68JQWAaBOz/4mRJCHkuTSPCk=\r\n=+slV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"2d69c7008105f23833596dedebd992f586adf5af","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.20.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.1","eslint":"^8.10.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.2","@babel/core":"^7.17.5","@babel/node":"^7.16.8","lint-staged":"^12.3.4","open-editor":"^3.0.0","@babel/register":"^7.17.0","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.13.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.9.6_1646180476296_0.7840579639993166","host":"s3://npm-registry-packages"}},"37.9.7":{"name":"eslint-plugin-jsdoc","version":"37.9.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@37.9.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ef46141aa2e5fcbb89adfa658eef8126435e9eac","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.9.7.tgz","fileCount":124,"integrity":"sha512-8alON8yYcStY94o0HycU2zkLKQdcS+qhhOUNQpfONHHwvI99afbmfpYuPqf6PbLz5pLZldG3Te5I0RbAiTN42g==","signatures":[{"sig":"MEUCIQDuY8TiWga3oOy5HDM5PoX3aT/ByPS/wWEgtaxL9Cq+igIgJiWFZ+/KWOe8uZ9O8h+XyqjCKGDIzUKMzmwenGvIyUs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1531964,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiJMnZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpt7Q//dEw9OZlu/pf4C4/IPwHTzrj5Niz+orLuHhiaqDdbayg1Qcdm\r\nSiNzz8ae6WNTSJuCWexLz0tc02qb2iW04ENpUEyS3tnJ4YDboHplY3qUkvol\r\n4zv1nisVuwU00OkTisWSaKYrMh8ukH+4T/MvAsVpne15PnhBJ7z/nKpchGPy\r\nsWtMP4ZnmChSzW04s/wup46hngwQw9mJr8paVt1WK24A2TOQNQZKDbm2Z/t6\r\nbQz9okAgVE1t5YFzWWkrfSMrkJrqPIwpIaqHRk7aOSs4QZaZRcHm/eQ0JHSF\r\nAcpebbbdPYGOjOMQc6Au//YPkTGPyZu3d+QXdUFAZsBwp6r2WCqEp8XRk1/n\r\nmkd6UKPbYE8QEUMRsA8ZQ9QiwQemxCHRCLSAIe55E3SQ1Sg/K9oDiM6oyhx5\r\nWUsWHmHh0LIDRE/7HUGUDwkIce1GcecJO1+jpIFYF470XERfQBoWdd4kNO1x\r\nTxoVNmqNrNE4/ObTNAN0zqq9TvNVVqHJ02zt2189lOYLifdddN5xtOe3zwIm\r\nFHNpZDP9VyLRCfPLrHwZDqaTf+4IjohymnKeTKLpTNJ7gp8yloQ+QRHw4eon\r\noYyt4wrTB4/o+eAC46rfvXxxvDkTHPwrarQkGATwD+H9SdVLEdODPoybglUv\r\nWMTSy4w718HiCtMRKn+0hHBNr5sHcW1tGdY=\r\n=YiJr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"b5b3e17a97e009cebe0a4dbe7550a44476166109","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.20.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.1","eslint":"^8.10.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.2","@babel/core":"^7.17.5","@babel/node":"^7.16.8","lint-staged":"^12.3.4","open-editor":"^3.0.0","@babel/register":"^7.17.0","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.13.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_37.9.7_1646578137046_0.06679006074383897","host":"s3://npm-registry-packages"}},"38.0.0":{"name":"eslint-plugin-jsdoc","version":"38.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@38.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e58ffd0d9188bd74ba9d3d3f07206ff2e2662bda","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-38.0.0.tgz","fileCount":124,"integrity":"sha512-4ZWTq9Jjpr+aezCn/gjRq45C3wFpY16S+umce8q/s2kMmD6oJ/8u8jhPFGoOHUnkZzFNDzYiIUxF9+OmoayLbA==","signatures":[{"sig":"MEUCIAwC8w8zgBPpj+GoxE9YENxnPDB1xFNsJKrJgbx0meewAiEAykHNDyzWCfdkoR5t9QIIeENmcHkpL4eADrh2bcTuQag=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1534664,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiK2ZWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrPDBAAkquIyyaNLg4TX0OKsJCdiRM+D2ZqGmJWryBqwco7eKpIWB1U\r\npRgyBJsngeNftkEU18CzGTgHpyEbSXXdtzR3r5cZH5ei6OpuPPIpNZvWbDGi\r\nEwscubcbvGFMzgr5cXpueXuAUTndJy8cAHRxAAii1SgwpNQsTbxSz/qKZjji\r\nLXg6n5Rw99DiCqUiVJk+LoqsVwlk7PRqbuGlyAs4rWvswsehYaKKtzQ7Anzx\r\nntu31aKTWjQizGq9Z8QbiQx18ZCXV1eM9hjmvk6QXwEygkbFC3jHYkZ9T+K+\r\ntqmCcS02l6G2YKHNOYl+5FNLJ5shGRm6l7D93zAQCRuC70EXS3rkv+U3pmL5\r\nwwkS6SH2OktCC3ZgU+rFfLGxqlywzPbDDOPppRL7ZiXgrZ4xazQ9UpHPRfp+\r\nvtPP/KYRTxFP64+6mcLjdP4iWfFaJOyDdS1pfhvhmbi8WNOzjLq4hye07MT3\r\nCkE8MwrRQ0XODOAtzS7l6QOlgsiYuZBezvIwqKXx+kMXnbvpSYSywZRuP8ey\r\nPqp76eRtkdQBAlw3yA2iPRWgZst2njrG5NSn/FQifmNwBgp23kOMl0FYm4bo\r\nQZZvHlUrE5y4nCO+MKx+E/0BrpzQuG11scmALFGIVlBiO/n1CuKFrjaw4sKC\r\nhKZB0vVSwBKb5QMzsGs/jbu5+QotP16KW+Q=\r\n=D5db\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"a31a8fda9304cbf697b7c2254cf9b4e523172ab8","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.20.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.1","eslint":"^8.10.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.2","@babel/core":"^7.17.5","@babel/node":"^7.16.8","lint-staged":"^12.3.5","open-editor":"^3.0.0","@babel/register":"^7.17.0","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.14.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_38.0.0_1647011413810_0.730021439634821","host":"s3://npm-registry-packages"}},"38.0.1":{"name":"eslint-plugin-jsdoc","version":"38.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@38.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"02f47c05f241436eef5fac141001642e1b47f798","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-38.0.1.tgz","fileCount":124,"integrity":"sha512-SJ3LWoSgT4LZwUgTC9n2WbCImCvEAGaNK1OUFwPHmAhsGNT5VU41YbPpLcDfk0MLuY3XorrAwieBL6wHV96QGg==","signatures":[{"sig":"MEQCICrB0oVUcvwmTa3gX9Fwj3sYNKVjlmnoj/y0wMoruQPmAiAJ0x47fttFGCfZ2CRP9wbtBp3RwCywhp39l/B9O8zo2g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1535373,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiK+mdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqCIBAAkzViyxx5ei0BukYSV+2dPRiULkOaPiwQ4oxhAOiJ3D7nMM8Y\r\n8xZnD4srGqeaSZC/dAb8DLyTZXfCD/6JqMEnetc/Cd/b4rb2TXPgXOPaQ/R+\r\nPHHisz4OKB01xfdm0pnNEoa480tSwMgDBTspOyFoFbAWAdbpnoyocz2Iv/NN\r\nB0RzdVwiZ/MZ4PIRSv5Tx3fHWL84bBIs0D9KjhpVLtqVkS0z6xbylVctnKvK\r\nXbnCO2w/YNNa1mxuFsZ0oEZrq53CC73FWpH9cMVQuTi62002Jmpn/FyDvINh\r\n6eI6McN0KwnIjJz9W+lJctKcWciescYD61Y9gsq06ObhZzaovfT7cUhCRPtN\r\nv556TVrr98xZbD8ls3Mli+bOrDN4ykcLmfqLnHuaTjTVvtAUyk8+XQqrzHS4\r\nQcrPao9xBLifUStvZ6zg305cZOqmHj4fPNBWkyhFEBBDpvFO39JrsrG6LnWx\r\nrH/4equBQcVqPq1421WVoFJq3ZlC/iwZt3CwF/P662xzMzr5ISKC5CGjclUh\r\nUtIdGL0mF7Tp+opnii7/1m+NtjAl9LQo2o5qndRMcfONagNbl53+cgZI/ba+\r\nTbLYC+6aPOkW7JvS6xRVkz/VQCUU8p4qqqXQTx4UoJE4BJI6j0joMaAps9fj\r\ne+eB69wmV0tiAfe+LCS/ywmIQJHzW4yCKJc=\r\n=cxha\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"a23168d8ff38887609b81715e67bb2682dc2c534","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.20.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.1","eslint":"^8.10.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.2","@babel/core":"^7.17.5","@babel/node":"^7.16.8","lint-staged":"^12.3.5","open-editor":"^3.0.0","@babel/register":"^7.17.0","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.14.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_38.0.1_1647045021377_0.7078600167016389","host":"s3://npm-registry-packages"}},"38.0.2":{"name":"eslint-plugin-jsdoc","version":"38.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@38.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a2bdfe960a48fd59b363531a5f833883b2984c9d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-38.0.2.tgz","fileCount":124,"integrity":"sha512-ln9eUYcok3zTX1MG6RE37SbsF81f1Lopy9ucYoIXbYOYQJqmFcAdnzlUMCaMhzR6v5SeKugchtOYXh7Oy+cZlA==","signatures":[{"sig":"MEQCIBd+9mkO5OXa6j/M+cOw2J1GZHFmgMymj9S0CxRGoNW3AiAIzI6GZk9tkYqkJw1BYijkMbIM2h7xaGjcP880J/omng==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1535560,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiK/LsACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq9Nw/9EUjKfIVyVNjOXo6w2khdKXMtnaKjKhGVMF6jClUNl9+g/mDu\r\n9tJ+j6yPO8CtMf+8vWkv0xA0xUDr6N7Yud1xqPoZ+aIqna0DgULm1kDLONGL\r\nwQ8MPBXDNfJ+0GMFMxDG0+eKBPuzPQqOCySn65FmAbRONioiashAS6r5iQ1b\r\nB3X1e1wFjBJjjTXkCAd5r2KWwRAJA8teb60/eA204vz+7BLgflOGvRSbVel4\r\n3GdSmC3rG5MYKMBWhbMf7xNzF1DuBcj1L8WxFXtPT8LunWySK2r1dwG6RELX\r\nbnhqNjGUwiXYeOf9mxAXrJQDyGecWXpwXhtiH0AYe712tHfAlIJc8H3JkT6A\r\n+wJWE7N9QwsDHb3QstaufT54U/HteqD8FByZ3YWW9CJTX4Dfr3cdNU7uYBp3\r\nKWrr6Qa3ZCnmpIsCcKGvnqcAMC32boKGu9IZKM/0IpNurFxbWVA7ioilJF2z\r\n5UoOFRkauhclht18HvnNpAcPjvBdzdI6NJkdx3iUKrHnx2Ya/RTAUYbw74C2\r\npwQRIzFPsWOWS736qTSHtpULwWh9xL7nYuQIw4aj6w2gd6v0Ztl25r40jRcs\r\n9BNMxv7JtkGR6tq2TsjVbkRLrw16wCXund2Ji+YOVxXqx/+BZbHFk8x53QUY\r\n+PaDVmRLkTgnaPWAe9WXwNkLsD3vI+u5Wi0=\r\n=oq0y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"ec34e66ec9ea1e79605351b9e25bc13f202adda2","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.20.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.1","eslint":"^8.10.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.2","@babel/core":"^7.17.5","@babel/node":"^7.16.8","lint-staged":"^12.3.5","open-editor":"^3.0.0","@babel/register":"^7.17.0","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.14.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_38.0.2_1647047403985_0.973992156890132","host":"s3://npm-registry-packages"}},"38.0.3":{"name":"eslint-plugin-jsdoc","version":"38.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@38.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ad73e73d2c7dc86a2c470b71761362661743ebfb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-38.0.3.tgz","fileCount":124,"integrity":"sha512-CGA2XrDPhDhSnVsSU1fGh/Hf2B/ggF/zLQ8AcaDPORoynkLEXJGVXgkH8yLxtjQajS7ANYJXPKwbnXDpIbDwoQ==","signatures":[{"sig":"MEQCIH7Yg5AdNtGVzyyKAuHzqnevbkBcCWL2leKTD6rYYy+uAiBV6xq9551rFdlBi1nWnF3Pu58m/TgOfZSMzoD4KbmV7A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1535560,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiLfh9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmps6g/+L1XqLDTv5YLhcIaiw6oq1hruBa+WCa0kn2DiG5vJpy3xKT0m\r\nmUfE/AYzPLxZpI0Q/Ac3MwBzfyYi9gak63rLnENokKyj37hhbfMO6+9lmCQL\r\nXMu9yxugpf9Hd35GlkyZtCiMD8UTIn3xtrxqpzc7sEsUuAtG0/rF+LkxvSQr\r\n5w7YSmj+UVAk4o9Myf+iqTpTuLltntInI0pcCU/9YBpBJ1dMbPCXr8i+0/F3\r\n/eJX9RjZiy/1fr2AKcK+VCpgD5xXdtbhI5x6g7KonAi9sx55McWDgn/8jl+c\r\nLLAJkQrkMDIFtAaExzk19VlWgVnbw8wXcV9EzbFNJhrTr4At3xsuUcWp8/+P\r\nmIgm+FrLAYpKBkzWq8adDj50JWOavdIt0TbEMXRuXz/cUVTAiw7G/MYDpyb2\r\nBqSzCitJVaa/HuXb++7RTzXB9GGLXdXPKYKgLLMfZ+iH/4eMrDnFWUTQSEk0\r\nvR/f2cwCSTx+wfD/4S9TVQmlxuC7v35wbdXFaTC9gWyhxpDbh3FjHh4XeE2G\r\ntYFkChL6t0XAuqjrIdKiYOo7fPoMib+c1VuVG5P9Gc7Nn6nvdtFUifNb6d56\r\nFs5mKC507Yl7uDfoJ810sn8MDgKE2UfDuT7JCieODl00hNgoSqzS6+Sau3iy\r\nPo1DTy/fCsC3vVgKUdoht7GfbwBv9o4UxeE=\r\n=szj5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"5e8e0c7c96532381f84e0e1b896408dbe46bf75f","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.21.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.11.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.2","@babel/core":"^7.17.5","@babel/node":"^7.16.8","lint-staged":"^12.3.5","open-editor":"^3.0.0","@babel/register":"^7.17.0","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.14.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_38.0.3_1647179901725_0.16434978994560745","host":"s3://npm-registry-packages"}},"38.0.4":{"name":"eslint-plugin-jsdoc","version":"38.0.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@38.0.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"3c0380ef08c9ab9437e3a376cc0f108d5bccdd53","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-38.0.4.tgz","fileCount":124,"integrity":"sha512-/McOYm7BEmiwNd5niCea2iHuFRtTrqeZN6IKJPJoC2PO8hfQn3FFRgYoGs17hoo6PaIWQLxo6hvCJsu+/KSRfg==","signatures":[{"sig":"MEUCIAmCXYgM7MiCsNLAV8cmSQXhIL3dRZXsrWW+UbQk5sGXAiEA3FdR5Sfebm3+qN7++MOua6StWqBDD6B2u+3r7zdV1/8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1535677,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiL9bZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpdTg/+KsZ00rbboVhUji1eXLxZgexiLjoj77nz0O41c8F7NEMO0QUV\r\n2QV4dFxTBENYdAyNxnU5kkKkx8aF9ZPjgFJ9p/ZMwoAzg4WQBRXgo0VuvoIG\r\nv6aD4vprU2o5QNPqtJEBLCR0D5tFr9CfiFViOPr+I6RLGgse1BXJBwYZmfxF\r\nOx9dsmpj+UOHR31UnZmQOF8GkbVhvzZbqb3v1ydZYvyvcXdjHUXtUufOekqQ\r\noq9CDpKJoR+Wwbpbj5eyigy/HEhGPl9i0gfYphtthOkrkYi9FGd3K8j34BoK\r\nTyfgvhN/73ax+SAFhKT26Jy6/FihK3qIUnBWnIkkTqcLXMuLtARoSK49MxTJ\r\nuTPe1QMH5e+Ce0lcK4wmC4NuZIgmUfN68zSQzSQtBoWM6MtcE309/iPO9P8j\r\n1hzi6s18Ne29AgPcjSJZNzR1ttCcEat7tIeMeSXqSDsYvBHSOrq98ezq4Smt\r\nIAKtp07/nV63fcfOBQny/DFoTMrKax5wTL5fg4FIGGtY7WXijGN7J3U/jvF3\r\nxPrnWGBQfnRlsACLy4XjQRsYEC6fmgjBCjK6cQLLl1rmH0YGQG8pnf4FHUzb\r\nsORQg8MeXM0uM8+sHhvLbNKp1/XZ69VFhCRJ1oTFhaPxSRxe/Em04jpJNe4h\r\nmoAldQQqSDdTPaK9wXA8T2HYtPpz/BAFba0=\r\n=JoQd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"19e4f6f40af1b07cc1f6c1c028dd6b905b5db66a","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.3","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.0","@es-joy/jsdoccomment":"~0.21.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.11.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.2","@babel/core":"^7.17.5","@babel/node":"^7.16.8","lint-staged":"^12.3.5","open-editor":"^3.0.0","@babel/register":"^7.17.0","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.14.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_38.0.4_1647302361009_0.46716278909527853","host":"s3://npm-registry-packages"}},"38.0.5":{"name":"eslint-plugin-jsdoc","version":"38.0.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@38.0.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"779fa1b7348ecd20f24c24452f02f32f16954852","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-38.0.5.tgz","fileCount":124,"integrity":"sha512-g9VPZ8Go6KSt/gyd2MNPNXsYzlh4/EwdlhxH78jX9lky45+kFZkyrvT9LVwfScVmYP3LIqnbJujps9gRGVMc5Q==","signatures":[{"sig":"MEUCIA827eG2PJ3U7Q7Kl4IMn6sum1/o5TvjbD9cpcc4QkYWAiEA2npjdi0TEs3py5Q7UJwHQ5ZlLuG+Pi1T90BZaoTrYzs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1537001,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiNaZkACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqteBAAnsnP5yfaTgkS94aeDzhWaNWJ49aBu7R7Fa592C1uJEYMY5w0\r\nV9oiLI4TUnOe9oQHEqx8va6qCsfy7hThhibCsDeMliYXNajvyKxaoT2uILux\r\nvh4Auz5uZ38k8AF8DyvsiBIZF88VuSFGNISdS3vNjJqBQJHDEVX8m+jsTb/S\r\ny0VVwCyVacJtuA0I6A8p6VSsxba1z4vDQxhxflg+ixgDMwsX/nnGiRA8qe9z\r\nhE1cXZHHF44f99doKEbuWJAMoXGBaTpX2VUvqRNZ4+djWaLrebQb08neEq6Q\r\nHhmTO83CleRYzad9BnPJH54YLHIExhiSpt5MnChFazzHjL6Yz03/0dx5Tjc8\r\nOntFL022s1jMZYTODVc/F4SMq3KkxGDtjMNJ8nrgcvcque/82yuBU5/34ZEE\r\nMGU3SjcceWnrBCoiotGqLNFhX9lu934NXek8b7ExSt1S0Xw66jDpxjcDFhbI\r\nFnsuKS5dtvyaio/j+I5YFnx71thb1HQmVktM/mqePjOvEdFATrrxSz1Kt2FA\r\nCGSuByqvXdfAzJPuoAxbqGxk6+83iKyn/CdsLN8Tkch2WaNRXu1GNXspBwL5\r\nsoUlUuslmk2tB2YdU4AHH7ybtIrDHWQsgaBkGh2TRPeg0wbo5PvnR+vgcNlo\r\nfgyAKLrr8LeUCyiasF/hvE5iZxKhRJTIUIk=\r\n=w6jw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"63d18d27b0428eb2aab186a0b691ed2c377ece41","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.22.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.11.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.2","@babel/core":"^7.17.8","@babel/node":"^7.16.8","lint-staged":"^12.3.7","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_38.0.5_1647683171925_0.42572010029553864","host":"s3://npm-registry-packages"}},"38.0.6":{"name":"eslint-plugin-jsdoc","version":"38.0.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@38.0.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b26843bdc445202b9f0e3830bda39ec5aacbfa97","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-38.0.6.tgz","fileCount":124,"integrity":"sha512-Wvh5ERLUL8zt2yLZ8LLgi8RuF2UkjDvD+ri1/i7yMpbfreK2S29B9b5JC7iBIoFR7KDaEWCLnUPHTqgwcXX1Sg==","signatures":[{"sig":"MEUCIF+PVjQO/GpMvtxoU8kkt3WgfYZLi5ZMAIpISLO+ymPUAiEAwLL2fQYkV0rbgfj2uYD0c1AWg6RDhlPMTMSjPIEC2nc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1537071,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiNdPCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrIzRAApITKb6PBJjIFL24e2eO8op6cLFS5sLL2vA5x2U79+c+30lbZ\r\nYUXcsT9Y7wIwEBvHkNZZbc9W/b8K/J7629/MG6//K14hWLxt3xKod0hJE3rA\r\nhz5/y1b2JgtgHCL59uwtcvYXxN6QfEo41yfkZN8nb31CvB/le1SiHfoH1CaN\r\nsblwvrmkCOZoRZvhIFczdAM0KsZDwD1nxjwsBMqs8uwK1QfunZWyulPutAui\r\n8/I8LJ4Hc3u6jgoUb8baE+/WWFK1tz8TUbEExF58WmierFljjBSmq8dmg244\r\naatf+u6JjswEoIp+Z5LdwfkITE5FnYIzNbW/7Z1XJN7hsbNlG8NNotNZjbY7\r\nvFrgR2H3MEtkuzOpDnyxjgOgHunWM4+mSYW67DcZ2qkYaucG0WUPPUiB9aSa\r\nvY5wAXGNWGH+6B/qk5ZjYcv5Vjg3asuWpklZ6K2Dj43NdbjJKml4yh6BoN4z\r\nA4p/wPMunc8vBwqhaMdHtvM9/GH5msKkGgJjZhfr6OpQ7jlcc821um4SZ6p5\r\nej6EMDKAF2O0KQPqxkxlQxnHfBUoByepB2Vb1QvhyDzP3V1M4hUpRP/e29wR\r\n1YwSI169gLYZgFtW+sgCsmG01lXP/eZmCqYW5FrEVu0ZqbsFqiHt4VZJnPKJ\r\nhqUAeHMRaGjZMQRkXMjzIpdSjcAJwybv4EA=\r\n=e9xa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"17fe2ca2fe80a4dafd94e2c4dcda1741fa20b745","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.22.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.11.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.2","@babel/core":"^7.17.8","@babel/node":"^7.16.8","lint-staged":"^12.3.7","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_38.0.6_1647694786713_0.2691170033779893","host":"s3://npm-registry-packages"}},"38.0.7":{"name":"eslint-plugin-jsdoc","version":"38.0.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@38.0.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"04c4ab38bf587506d2908aebe50381e83faf522f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-38.0.7.tgz","fileCount":124,"integrity":"sha512-VsrtLq+Rc2JksIQsiFlPnpbEfK5zEkFvTy/IEAOvBQXe7j4Nxa6M1o0Ax8evlGLRynpbJcTtU0sSwMn1xPwNFw==","signatures":[{"sig":"MEUCIQCTqN71d8bEP1WrefSC6ssIVdHNg2JKO90tIcsy6EC/dQIgcoxbNdw6OQTDgLbldTobCaI+OESXlfjGwUpYzbQy6hw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1542847,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiPrgEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrytBAAnSYOJ9HP8lVjF0ab24FB55/z9Frpx09DW+Z7jYx3Qj3xjMHT\r\nu4ET3W6bMZpOyfcxnhBkd61Zzr8MJj1ML9bYtm4RFg6Kr25gAAoTobGJkZxu\r\nUHEqSp6dXVbH/Lj2cWg4mZjV9oFX07Jw348k0VOade+f6JMlZmAgbkweo26x\r\nv/Efii5Y3VsOOw+i+dLlQoWX9tOXQHzV9bWSWzYguSDjUSB/vJGcsaBOSoZl\r\nA80t/0fkpByGmMn0MV8MUv5bF8vmh8XTbmzegOZ3ttVDSiVTizfbG/x5l/oX\r\nnCKm+nOS4p0ZJPVChc+w/7b4/sTpSWvs3JFFP9ja7D6rBzZ4A3GqrQPH7uGK\r\nPsf4TVNCh8eb9oE2w6oVT8yNYo6i7UROWQG12rRbtcaH6CqUEXBLizrC8m/W\r\nNCtshcZfz/FvCTy19pgThH/bABC9AeCyeMsjqLBT4ykQISXrp45OT06hB2gM\r\noGdaII125ScZzMp9X4NhkzXGua/ixpIpODBl+yzPiLrwdKbEfo4bSB1J3tMP\r\nPQaRLkAxyP1f391mTeYXQkSvDbf2WbEQITWCaoXC8OiZ07CBAxSs2gUrRKfo\r\n2/TFnH/6hSulN0Nu7Fl8Q21ZlsL+4VgBG+J9B/sG1wlveS6v+YMZd1hhBLO1\r\npC/qyh91Mt8abcuNPzX2xKI4fFx5Nc16t6w=\r\n=JlSH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"33eb99efce75362a005363b0e99f81393671073c","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.22.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.11.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.2","@babel/core":"^7.17.8","@babel/node":"^7.16.8","lint-staged":"^12.3.7","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_38.0.7_1648277508207_0.4772340743276591","host":"s3://npm-registry-packages"}},"38.0.8":{"name":"eslint-plugin-jsdoc","version":"38.0.8","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@38.0.8","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6837b5ff7946ba2c164f06232d67ba06ba0aaadf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-38.0.8.tgz","fileCount":124,"integrity":"sha512-28o/4xncAPJIud1ixSSof1tavTGde3hlD1PfcueB1JP+H+lKwzQbp3r1d23SWLqG/HhawEYUz8SAgscvRBmyHg==","signatures":[{"sig":"MEQCICweH2lfmOOpxH+50AHuHQ68dpzr8f0riYzuF/iEsI6ZAiBdHjWdMHATOa2lZHQhGJoS7iWPbh/f5iBWaDYtblbutA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1544011,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQEusACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq+8w//XgQx32Pg46YiTKxZe4gBNIL1Ez1yB336hKKyVF7NqsBv6uo9\r\nMW33jrjLKojj0kTrXf5NXVhsHdagD/2pPSCUNzLhU2gIfzCBnr/9KFmPKXXY\r\nyihFxMdIcEPhzXzUeKUMUwd8QeUkvMBtUUMTDjLFgMBF19r8DF7tZ9EY9nRG\r\nOE6FjHCbbunZKI3XzgmyXKNZmJ5KBx7TMGXyP4wwMxxwGZ0JC3sPT6AbWQZl\r\nxR4R0a430w0jYjLzOSsFnuKlwnjgUOCA5JmONUMc7JZE9JhbL2/ea9WL0jap\r\nqAvi6GZu4V0oqD88RlWsjO/JFXMrQVE/sNqIuz4ltpT1NEoFlfu57dT6E4E1\r\n8VcVNYpN5yMqKpxoK1VcWT+19zqb7ZCtAHmnaHYki2TJTDyIGaw7jsYOaBt+\r\nwwfwQZV6gA8XzoDd1Uwa3jmM4Jffsd9wQQ2gKM8MzOO/l3uH5iL5eO9TV5v2\r\nxrSnHXby4v46QE73cyqB8SaQhYdXhXNqMSKZg4vSeSIlKhaAK2DknseGrMLo\r\nsFlMlxaa0YXBZCZ0sLLx23yjXvz77IpdD8ez0Ki1fVSqkMOIwNRhUHNv4YYT\r\nyQuWEz0rgOQXhvaHBmDX5kM+aXEvaRBJabOWPb76uwmvNHxjHkkqkmIAmgSs\r\n8eZ5dDzS/S54c/FDgS80tYpCilx5Z8er+RI=\r\n=egVp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"a530862df39258fce3147217069050ee34ad4fe0","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.22.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.11.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.2","@babel/core":"^7.17.8","@babel/node":"^7.16.8","lint-staged":"^12.3.7","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_38.0.8_1648380844150_0.11530244925289534","host":"s3://npm-registry-packages"}},"38.1.0":{"name":"eslint-plugin-jsdoc","version":"38.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@38.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7d3e6ea2b3f1c400f38206b380e84c4e4f0c2011","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-38.1.0.tgz","fileCount":124,"integrity":"sha512-FhqyrPFTLiD1bhC7RFe3M51kWno0vkvo1jaOyRQNZeVS1hwc6HTe3eH3lWZtfhXhNKCA+eHZtxWvMfFx6E4AaQ==","signatures":[{"sig":"MEUCIQC2QyPpZWvZGNg0r3pUW8N/7QxtDHbpFqLOhX+lCFwkMgIgElEMm8/lkHuNybzg17fDYmzT0y0Q0uT/rfEXlyJ/+zo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1545652,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQQXqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrACBAAi0pKshao8K2yK33kax00drIB9sG7apvFK0FMSdm1wyOvQR/W\r\nigcc75DFdsRJHx0xN4f7oULUC/da1+Ixrg+No/LjWRwRbjp7AEgVXMdMRlMX\r\nlzoCMXmwx59d6TAYi1IYqOlf+JhMzM4oYtzmJdt2LGa8Mq1g1rPX7/XUJ9lI\r\nDejRM8H+51VR0ZcdXOGVL+ZeZrVpXxBSfRYESzYvuSMVVyPh8PnJN83plGzr\r\n72Q8/5GobaWehyKNLHYHZhIv5pB9iZK3Ebolfx/N8xN5virsciVpbk2tz9Wc\r\ng4tFJTKeXs7412XwTU3twqNkFyRoRVsfNM6xib9iQ5gTK661G99LypkyAPCv\r\nXGsBNiPDzPLdV3P0XTzCiHpuB01tnUzso9TP1X7rQxRDCqoQYWJ7gbyCs+v4\r\nlbIqBZM7yLdjY+ZTDBo0KSCbyb2VKWC2Qr//JNd5RHqbh+XCX6rUGSLgBQi2\r\nykxjF671V3rKK0u7hMNtK25P5ytzRjK+YgsYR8SgVCy2kK93/miCPzhGshhu\r\nnPyxktFWGCuZt1bz4VPl3hGSVikDTtHGpTj3EIJu9FmwEgAVSly6rJJAyZYI\r\nBHFJKeFw1w/om39YJ2SEIX2EK+G8T17WRgGot567HsVIDv73gquCrRyT4fmi\r\n75/hynF+JUJg+zOVKyLbZtbd/fA43QTQP+g=\r\n=Vq8t\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"0f27282c01cb5b0a8f8d3cf2936cabc35dd4d4ed","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.22.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.11.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.2","@babel/core":"^7.17.8","@babel/node":"^7.16.8","lint-staged":"^12.3.7","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_38.1.0_1648428522532_0.3717244061209255","host":"s3://npm-registry-packages"}},"38.1.1":{"name":"eslint-plugin-jsdoc","version":"38.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@38.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2bdc3c6db8c8669c7b8d954bd5015da50276c1b3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-38.1.1.tgz","fileCount":124,"integrity":"sha512-8JEYNgLaqsclKZhKjpwsrv60uYTTTCW2lNvOs42mHBgEafNNGrZfLFhXweTbehFat0MRKYywaStwazq9sISwKg==","signatures":[{"sig":"MEUCIFn8/3DJ6A5GT4RJ/9WTjWXX2u1kNVDnY0gugJ/XQztLAiEAulnfq9sLesjEnx3Dj6WoVUzU3mLeC/2NLWIgtRQBUIs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1545539,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQURgACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmri5xAAlCbl9Qb/EIIR3RSc5LbLxQjPW4hAgkB5pwzm71RipcSTcvOt\r\n6V5AL+UZROSWeX+pJpD1dnsTqkmCCXOOxE1xwa++ChxCSULLwKPync3Vg+hu\r\nZutWPeRBLKC821xYcezi8WFnL9gpsy3whKM/FEUwGkM1jM944dJ5WEsxD7Gr\r\nIOLjtCDMDG3qsNfR53F2JCPPHSh4oYyD2xXdAM8Ioq7JNUR8xWypRaEzRPPp\r\nwTqL2wQlYlVSyQZy0VdbhrJq5gY5iv+Jy91k1r7jm+yjp4tveG4+q0xWo0SL\r\n3oqt4R0Niw8QqlINPXl6jdVKV5+v/euthRRMQcCJPA46TCpq85r7tfJtY1mk\r\nwEUhl9eHHEjs4PVGR/HkDkKOGrxg1bOePF6+o9c/jenGFmUicILWqm/tjXMQ\r\nTe6z8Th0nh7W4mGJ29IS5fr51ViiaYWFuCU2kKmIO0KRuKJqYCncZ7plDV5v\r\nvlJ0mxlAQ6ONjZs4h40x0YCZ89IWN2r2yS9cSX/GsGK8r8J8qyJeZ2fWYG19\r\nCVFbqab6V/oVvIh6VDAJghy5F6/rgNz06jXpg6VkSYSJZI+rFTlv6yIDNWQf\r\ntqG7chHyvYFo88A1efuROZK3RapLBtliHupcEQc2syhYoFwk2NumDYrCVccf\r\nkjtq+BGkyImMdE60YuosD0pDsyJeE/URvck=\r\n=Ekca\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"d11d271837bd1fad99919024acbd9dc824e18fb1","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.22.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.11.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.2","@babel/core":"^7.17.8","@babel/node":"^7.16.8","lint-staged":"^12.3.7","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_38.1.1_1648444512353_0.8298577338235349","host":"s3://npm-registry-packages"}},"38.1.2":{"name":"eslint-plugin-jsdoc","version":"38.1.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@38.1.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e61d3fd4878f146c69a4fe137d7552f626c3e3da","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-38.1.2.tgz","fileCount":124,"integrity":"sha512-fY/tDaq1LkPvtzVZ1MzLGTZ/MyAvedvIUq4LbzLav/NtG7Eja1wPV1GaL18S7V6PUWQKOK0dhLKMebTWKwo35A==","signatures":[{"sig":"MEUCIQCbYuMC3OhjxcJNzqqGzDYGNuFBS3MunUMpnYs+15dCiAIgUm8YAztRKtnPmu0W6WYFZ3HdCKA+S8kSm6H3klyIcK0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1545990,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQX9iACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqpSA/7B8PFzsgDwFfQ0mXZFAfegvVyf7N8zfwMiF9qTefDW/Nel02z\r\njbYcWWlvQTwSm0wAMUaS6pEW4/cl+Z8cegacEEHIXr13c5A9SJDMOY0SZcXe\r\nJ9DcJhZ7J1z5eRgSMzQ1BJLDAytp+X8M4GLwxMbHEoz+UiZ7ZUNVoTqyvY4a\r\nYSKEUEN/mZHPacP5rvBQxJxKU70iqQPatEsOuzuqJYNOTkUQbEzYLfolLqp0\r\npcDDLTA//DpPuz62QhHYspAOiIqm4dmZTRkRRy9CxIxy1F5wprf5vQoeUsrR\r\nrbGnXx8PkwnGV2rtDlI2qyc7SQz9xN7c8U+o6yfGfO/OS/NVcHCOba03G3RF\r\nPKDO4Z1iOQzLxB1cbrauJjt9iKQIeocG433Bi666KyZJUn7LXeoHUhKy6/3C\r\n5A3Y8DxbpdvYeurOPkEMP6hURyDRx6Tw2Annc/phDQA/89h26B5/f86o/gIy\r\nsNWgWaLhyYp3l2EWZc7HeasPaVamzKQkejtJl7j+w7cc9R1QINa5XJ/TrMiZ\r\nQTgqzEezDRAVmg3xliLFfZjLeqybQUdLx+SK7IPG2EPN2WmmZ6qhiPT/tJsk\r\n25k5/4RFPXuzq+O585yy7K877dxe0Q+BnVC0Y52triJ2TyjYfVb76euN60ef\r\ndfXkVWZXHKhVXm4pqJd7qLSPDxtUUDkF+hM=\r\n=uuxk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"7dbdd9f271a27a8b370ca0f5053f5c51a98dc671","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.22.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.11.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.2","@babel/core":"^7.17.8","@babel/node":"^7.16.8","lint-staged":"^12.3.7","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_38.1.2_1648459617865_0.15116271280736582","host":"s3://npm-registry-packages"}},"38.1.3":{"name":"eslint-plugin-jsdoc","version":"38.1.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@38.1.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"64ead0e535de02e2353ac271607e28e01e25c746","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-38.1.3.tgz","fileCount":124,"integrity":"sha512-CJgBG1wzl2735rct2GpzS39lx4t0mlUiv9MvFndQKyqTVOGZLXeSkVNIE5inmg23T0EkCrS3AZ9dKbFAsK9ItA==","signatures":[{"sig":"MEYCIQDSji1tP12/jcOTCEXZ2/rwfPCkz0OTre2XQF9xMU9pHgIhAPKTj5DQA3iFHZ/u8Z5DddKe0T8GvzeGmfcrbVUTWs63","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1546278,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQYKfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrO0A//XjVHmtmc/Mk1Ldks3LFlY5VvgrPBaBzSUTjw7ehl4b/xdzFq\r\ndZxHhjFvB2iJwc99bzKgrRyWZdv2ssDNeFpbGABx8SkBOnOsZbJ3jdx744va\r\nj4rI04sp/ccJc+jI5dnRN29wW16s2LWfTVDedCHws9KEc1eE5Xz71OIy2IoJ\r\n3/5kyo6n4iRLJxfCiySZHuxwRReNBvcwksRuEoDAQ96zjIZIvtUKT8ar1NiV\r\ngC7LqX3pGHnF1f1kJEVXHYL7iAYpW4mk98p70Q72NU1eHPTNEDTV/kvfAfbo\r\nDSLD8IPUzk4bprjkgWrezKtXLeU+Qpsj3O1n/ITYLFR5RED7NkGsv+P5Wa7i\r\na8+JQpjLHbHCDLf+3D5gtcYMtCxWzCAg8OY0Qa1H4I2X1+tS1xWscMmCrRsD\r\n5yzCN/O0kgFyhXSPzoMgeQsnILVcnF/YxfhwWbLSwY4hi6suOZLX5u6ZBG2J\r\n7kVKGuJZVf7Q3pbP1D6S6KnVFC6mNW7oTdV2bYQwqIghnVXT1ah8Q4SehXEd\r\n1YoNQR4rFmtaYpuSGkC/hLH3qxI4GnEid2qDO/gX62vTcvcNLrx3bipTX5x/\r\nmRAQnSzOgP38ax0Ip/RRzaJdMUNfZnYEjHxXs5GF47JDZU9r3BbhabRQmoxi\r\ncHo05941Qd5+h1LBaoZynwVtUEZzW7OPAqE=\r\n=bBz4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"63a96ee6705ec221d4d62bfd51aba07183c5f222","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.22.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.11.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.2","@babel/core":"^7.17.8","@babel/node":"^7.16.8","lint-staged":"^12.3.7","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_38.1.3_1648460447533_0.023227477276946296","host":"s3://npm-registry-packages"}},"38.1.4":{"name":"eslint-plugin-jsdoc","version":"38.1.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@38.1.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d0828af1a56c8083fdfaefdac45b7fd6337f2c5a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-38.1.4.tgz","fileCount":124,"integrity":"sha512-x4sG6oJ+wj7aOGXtTaUeA4EL6kkgGsaFyIf+237/cdSXmC5zKKROccZxNZVUkaXE5QEiBGi7pyRfWNZYf+2OFg==","signatures":[{"sig":"MEYCIQC+/V43jz2UpNuB7BpQVVyYtyAgXhbuv8RJbImK3BisaQIhAOaEkklIw2tx+2OxQs07a/mmfaEahSZ3kOndd31rcEVp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1548088,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQvFXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqmUw//SuxPVnDTGr/n7grxb1wKnrppdgtwLIS6C7cy114Mj+zrhyIC\r\nPw823D0uoxT0s0oC9vKaJUqawGdVG8CFd6OLjlFR+DSpYOQtAuhmjsktphJh\r\n9qn4x8G6LdRUp7YvrEdhWj+7IEi3as9V7OVeGCExwPybJ/ELt/Q1OINoP6tj\r\nS8Hq7XIl6J5Awm6JRnoVLPiE89T0GqRcUBo5XaSHOkI/b+doHwZwYHWLaHRn\r\nDieTeCunkOu1Ti/5//i/B67kHLn+FFtxiMeGZZ6tr2dabBxaSdMuQU8vRJjE\r\nieuc9WxGGNWvSDRGpea3emlOKOU9tkYiKsP/zIN1IrTvF8Dy7f7y/A1lYyKv\r\n3t3wnKThEkaqlZV6MdlDAONyP32qXVk6UMatW4oGk95ysrixQ2N2nnYzfzOA\r\njTd1G5unXNHwS3ykyl5es6ztr405jRN7z7vHoO14uBpr/dYFHmVNUSreURnZ\r\nj4O02PYokOCMp7WX+CqpGJVa6JnpHh0T8yQSYeIOoGExzsqqvPUnz9wuUZL3\r\nck022iuFRitlFmTpafR686xMsvRVLUoDd0gzLA0N7EX9V2ObMux5RCLKzeQU\r\nnA0dlP6pEDFH2r+Uvxky1dHYlsn3b2NyuC359HzxaLQmzHJRdn2DpG5NFO+4\r\nbOuutMzcYdln1ERhezez5w2bWgnOSqSnzRw=\r\n=bo9D\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"bf9f994f70620f3a884be0d1e49fa1a43eaea82e","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.5.5","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.22.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.11.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.2","@babel/core":"^7.17.8","@babel/node":"^7.16.8","lint-staged":"^12.3.7","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_38.1.4_1648554327674_0.6416536708554941","host":"s3://npm-registry-packages"}},"38.1.5":{"name":"eslint-plugin-jsdoc","version":"38.1.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@38.1.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6f30a2d343c98f29f9b18b0a7ead84c8fed99d14","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-38.1.5.tgz","fileCount":124,"integrity":"sha512-hPVSfeqo/YPoVkjy2Hj5fFZVnfFdWh3cbkwKZ1sziv6hiHAio31KLN+lHDLS6tOzeHPVb3IHGtc72wicaSyeBA==","signatures":[{"sig":"MEYCIQDnyfzOo1jNxM4Zlm4YUnDJkjpeC4I43JyEXuYNZLND2gIhAI1IFYqLwp6oHv9hcDwZmkX+zZ8xZvug9y/2OQtBfb4l","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1548345,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiR9MXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqX/A//Sy+tRnS5EqgNCDu2Q/+n+FH1WihGlxjfZwMTBtOSL4ejd9VK\r\nRoKjeozD+FwXhRkyyW1EVG/Z42xJMlD5STiT/NFFLPntwkF7Dz4HZ4Wn4Tmh\r\nQhIhfZVwak3+CLbw+iHbS4fo/G4P+7gKkZK/YBdQy+ls+OOgNl9dg4B6WRuf\r\n6Ld1RPlxRwKhczRiM6cnXtaawo1eA0q2/+r1y2aExZPA984bpP1BlRC7QnJG\r\ncS6RCF+OEkBiZNHfJrMQSgAwwOKJB3iFuUhiygK/me+VaJgMcwDuvMeebzOo\r\n24eoVCbeqf9Rz01uRUHm/SSI1wi7qfbiHjlzcW8RHXvNj714EA9sXGZ4Osr5\r\n0P5G4m8QcjWYjY7u+RkjyO0eAJ6VRTpNr7Gu7Klch6PYp6aYQZTUn8FpoSlV\r\n+LFt8obLIMptNem4FkKnDiG8POlS0HPPhoAfe5QQxKvBZIRcFWnbM/S2Lpyr\r\nQmWBwFt6fY4sQgBSzGiDpm/VokHGu5C0fSa7GszKQ8eLGykNjzmkx9LTXuLr\r\nBF5IehtpfE8KoP3e6TQpTp4Ig3BNAwG2+LmYqft2ThYsTlt1SdwsvLUNixxI\r\n/JlxTLeRNR1tC9iVvGR0axBjM9eia3vB7ZaNL+woAfDChsoaiEKUE9do2HsZ\r\nYB1FXs5dbHKfu7SmGmyWiTWUL8yUfQraTvI=\r\n=tclz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"cc031b8c6a9653a5420857e5b186277baedf94f7","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.6.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.22.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.12.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.3","@babel/core":"^7.17.8","@babel/node":"^7.16.8","lint-staged":"^12.3.7","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_38.1.5_1648874263553_0.4297604894881868","host":"s3://npm-registry-packages"}},"38.1.6":{"name":"eslint-plugin-jsdoc","version":"38.1.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@38.1.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7dfa2a6d38f550935c6a3668a1fc5a05b19e4069","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-38.1.6.tgz","fileCount":124,"integrity":"sha512-n4s95oYlg0L43Bs8C0dkzIldxYf8pLCutC/tCbjIdF7VDiobuzPI+HZn9Q0BvgOvgPNgh5n7CSStql25HUG4Tw==","signatures":[{"sig":"MEQCIBgA6srNWTb0qowTE2BiJmwYbko1uFPb4yX9mhterjvaAiAoVEAhKJCoyKibCp5a855Ow/somNrkfPPle9Zn5TNxGQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1548907,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiSAyBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpR4w//WBvMy1SHjD1Kk9XGTFpRJNh7GovD0wBBxqmZ45GsKJG6Lvmn\r\njS+GgA0R8Ws7Hh/GPAP10d6z+lDc7oM9Zr0dR4XtLa6VeAV/staLAjuR7D09\r\nDOGFJgbywsA+dVhOeCEpDjrGzY06GzwoVOiMXwz4ICNzECKq3uzHqCmnPzRV\r\nyW4EADWcinCqZu40hhfalfJGjJNPgQXHu0OVYbr2MiXsfG4I0FYGEOPKVWTw\r\ndGawD4TxRBrrjY+p1+fzXJdRzGqt1zW46Iy7xdpLZHginxo/TDRdBb3UdN8Y\r\nRdIEWDuJO87CJYpJAT/yQmy9ZjVlPUvYXPKxDTeXGhLLInzHGGDuAQOBOCwI\r\nOWIlYj9PI/0vk7b+6YPiCUMt2EDSBl2fK7FZ8lyeRF5LkXmhtSL2SBPRtKEh\r\n81GjAXQsjKD+TgxrUQZmuB04EMdLJUvg4zYMQX4K0OOW2TP10ShGz/lL13H6\r\nVy/5xnj8gqpBiWjOrW0mULaEHtaEy8O/29OP9dyG1okJ8MPAcmJF57A62BR2\r\nn54bY9e1P4e8O1UamXV7AgojrmaE4voK57Ma57K+NgPVQuGWAhzGIyG7/b23\r\n8j/bLagClwTJuCnLyOvhxvLRYzZ5mH4tClSD59GBwHC8ZlmXVV2eBxQWoxn7\r\nJcnCzdZ0ZbJ/DptfBuRXHgBRDE+1fqlikVI=\r\n=r1CA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^12 || ^14 || ^16 || ^17"},"gitHead":"1c9884da4f59da7b2368bb77986f7430112b639d","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.6.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.5","esquery":"^1.4.0","regextras":"^0.8.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.22.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.12.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.3","@babel/core":"^7.17.8","@babel/node":"^7.16.8","lint-staged":"^12.3.7","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"^33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.17.0","@es-joy/jsdoc-eslint-parser":"^0.8.2","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_38.1.6_1648888961171_0.16951661172287902","host":"s3://npm-registry-packages"}},"39.0.0":{"name":"eslint-plugin-jsdoc","version":"39.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"79b1279b26d711181eb8f54f42e658ac922a764f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.0.0.tgz","fileCount":124,"integrity":"sha512-BSVaVFbZfO3YqyP61lIJ2XJWZra4zNMEpTHzSXvDnZNxBngq9y+3Ggy8SGFp6WKNq6FEVIxNZLf4WLKRelic1Q==","signatures":[{"sig":"MEQCIFbeFTr6Blng0dZGxjkfN7n0dVbIfGHz0zuzJy2t1sJHAiBaJFjpft4vDSoyJOWyo2pABLO8/Zrjoa4S0TtPBQYwRg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1548433,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiT4kcACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqnSQ/+OuaOLCtozRfAxrlwqWyHXMBayE4V1oI6/Tf4uorHgDa20ozA\r\nFKnUXUCuVfWROrN/tOouL27p+JxCXCKW57LN6N7K+qDVdwAnJGM1nfSW5tgE\r\n4z7F6TkWRggG/ONapi3+945WTsejrEO2toiXxCdbvPdg7/6b27sFDXXxZJLF\r\n5UVA0U0hu01dT3dfs+akHug/sQQPD6ZjkLGuUkeWH/b8RvulhYinBC9vgPGM\r\nRdLFDiHsImWaTGA0J78IStv3/HHZa84m9HtsrGvaHLEU6ibHcGVOQRvFa2m6\r\nH5NJXvl9Ru823SOjyF/La8jp1CeezSX9ZHxjQZOWuwVlOJVNGIQ5eDH+gRFF\r\nxEDY6RnJwqpeXtfr+uaEFxHimRMku2Rq/ctPezUCgQHA4tR1SJy+hFO+FyIx\r\naWMQIwpsIJU1EmYjvyqSZHd6QMh45LFn3G4Lw9FiIJORLL5jcAJSmqjb3rwm\r\n7bL7mPk3WT8iUWn1xerKzsVvYoA1I3xjbnlbUVa0YdOdNqMMclgfawaSOjf/\r\nGP+agpQxSh4EVXtSLD7mdyjCbh6M+g6zSxI8fBziX91RMrTAKAwcaSKTWa85\r\nM08kNxdkS4bGCv7SF/b8LSx7/6t5x4M2+KrHBc0J25WGL4hkEK2DubSPdYw/\r\nIu2xejLZM5sFAX6paY12zRM73ozE1RJFhAY=\r\n=0PkB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17"},"gitHead":"be3af9d46d5eeee49ecbf1338cf0115df0c01a3b","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.6.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.6","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.22.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.12.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.3","@babel/core":"^7.17.9","@babel/node":"^7.16.8","lint-staged":"^12.3.7","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.18.0","@es-joy/jsdoc-eslint-parser":"^0.8.2","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.0.0_1649379612658_0.4403197553744844","host":"s3://npm-registry-packages"}},"39.0.1":{"name":"eslint-plugin-jsdoc","version":"39.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"0b772ede58fee19f11699c1c06f15f0ad34bb6c7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.0.1.tgz","fileCount":124,"integrity":"sha512-lNPnz5DlmLekkrVFM66TE5VQwceDu420tWW4CNYc/BMoKDJuvTTzmu/djK75lr9d8PLVoPDnyexVV7Pp59rOKg==","signatures":[{"sig":"MEQCIF4EWGPd3oK8LJhUqomAJFws4p0fQ47uR+H130OyTr9oAiA7galK1+jGvNNcEKFObIZe8ygk+RZTKnW0jKHzAH9rQw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1550340,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiUEnmACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpnKA//Vgi6orbKZf0eeGsuRDksYTnEFBVdRJXakZKZy3uN51pH83kS\r\n25n3UMuN/myY+292dCt5nnJqaYljJQ9qI6bUYQHUefEviUNfD64c4+4/SdX6\r\nRmNVIMSxIqFgINAf3QpRMtkaJnSQGs3Njnw1j1kixRi5H5hkfxfHfUOuOQzj\r\nPSX/5Ye/jxYGJNZq0x96mcm21vgds8wYWDRSr6bwPR493TcA37fq8ju5NpUo\r\neLkV/2zYdE4ghO3W2pcv4dNzddgHXO0SlA3eiagvm1yUnDSvG8inBDv1HCvN\r\nlB4YNtRVdImLohjRzwcpK/Nyc9tzNs0sFTPdMXvJ5jo3V3mZMViPLox5k4bm\r\netJflB6WUhcd1PJai5utYaf+YsRH3Xm82+XSuJoltCXazjCFS3wHGYfqXLhf\r\npvUQIqqOtIW9VZbOYL0jvmyubZbE+wzXqqRKxNE4KHZNIS5VAKiy+QxPXvty\r\nK//T5KYw3ta/5TQluFyUepsy0WA6/PaWd88XD/JrJ1gxUeixMf0ozoztXT0K\r\nK52cN6CIWYriI5M56fQ58Biwxcg6vKFjULKvcmZ/YtASK2I+UmMYtWeK4kCx\r\nMBKtb5t+EUbcdI960syFKEvFq51BNI57w5jaRbftldEIxN2v0OIY6Ikic4+z\r\nIi/2+O4k4Ww+jHTMIvoUFx4UFuY3pTiDIu4=\r\n=fYqA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17"},"gitHead":"78f4a954ed5d9487204f8531bedce1aba8c1f564","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.6.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.6","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.22.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.12.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.3","@babel/core":"^7.17.9","@babel/node":"^7.16.8","lint-staged":"^12.3.7","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.18.0","@es-joy/jsdoc-eslint-parser":"^0.8.2","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.0.1_1649428966757_0.06097190615917647","host":"s3://npm-registry-packages"}},"39.1.0":{"name":"eslint-plugin-jsdoc","version":"39.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"dfe7b152ea1ce9e49457286fe3280f07d5bde060","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.1.0.tgz","fileCount":124,"integrity":"sha512-KgpoLbeSEL3yv6T3QMErelPy+WFJSQkDoUOZTRmqCcsvQ4bmA02Vmw6WbC5cdYQ6P52iUIsAxtXTT66EF/Xzeg==","signatures":[{"sig":"MEUCIDbf2lbXRvqY8mP0GPJOrjvzezNou6Y4SfnUdYGdzVarAiEA3h6hEdXvxeUyMZdeuLVF7I3foJHQ7S8OGRT8eJeW1hI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1547643,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiUnbfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp6qBAAkMpv0rYEmCkA9rlNK2fgSv+2xbzbyXq5eNGgP1i6/MwhDqgo\r\nGIBtnYdM4CflrdYyRtwWi5brddbKRqEH6mDmzgXXYJ/ltQC8hVcwadWXE/Bw\r\njd7dcGoU7CS5Nrjy9+WFY9mOPUwFbe1Xdl8y4TjzlQgHNZ4DQbggErG1PjRd\r\nRsLp9TpksaoXhtDagyvLkax9LF5NwKhULk+unotHLH67YBHmCS1DCLrQh1oF\r\nAVjAXuhxpyKZK2HmsPd5Mv+hQ84mMfwAjnY26z5XcRRNFNilHF0GaCq1ioO3\r\n6ncVTpqFQMcpRCwcVjpLZz/nPP7uc31IDUX1WXUbCZY5cFZuC2GnCCe3n5tr\r\n09i2B1gd4ZvYKzPTrU0Okl7sh5VIgzNv1aOxh7c4JkbvBfhumU1sxcVDJZti\r\nbcvL5ALa5ux0whpRBU4za/BzuloPCNwKaxNLZwWjPBMpucF4lqc/+5vX0M7R\r\nsQVoW7wFbwU4XGty8NJ3LeZ4O+Yefoa+gpPSASF52zhDm7YQYpuMy4pon+yw\r\n2azp/cKVH3J3GyKVw7XALEUJUDg4s9khhSwLi9LcBnNZ/Wburz7PFCZbG1yL\r\nigcgGkIk7A0Oijo2frxEdREAPVDTOHbabtOkm/xtAJERVFC7RWOcjPf2NkTR\r\nrWicEMQz0fIvyNgR0OihIGXsRA09wVcKQ64=\r\n=M3DG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17"},"gitHead":"806deca28530e9b7c331465837cf227a94984e9f","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.6.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.6","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.22.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.12.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.3","@babel/core":"^7.17.9","@babel/node":"^7.16.8","lint-staged":"^12.3.7","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.18.0","@es-joy/jsdoc-eslint-parser":"^0.8.2","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.1.0_1649571551222_0.7606084123938863","host":"s3://npm-registry-packages"}},"39.1.1":{"name":"eslint-plugin-jsdoc","version":"39.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c5538e854c987abd30d72f2e0902772c2faaa313","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.1.1.tgz","fileCount":124,"integrity":"sha512-sT2yhYh9PFIkvi8Sgz2gVBXF0hbD9Z7iZZBlZdCMk0SIhEVWREa9RXokF4S8tJ9BBsER1GNNToDkRok4uVmmig==","signatures":[{"sig":"MEUCIQC1XfJARM/6gLd5EAL6T/oP4kV2R/yn8wXgNyDOkEwsDgIgNBjpsMfmrZhyCE5mMdrKSRC+3cQyi7+1b/yMVFqPABg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1548913,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiVLbBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqdZQ//XKMa2jDgF66CcbS1CNKAMKNQdB0vrS/M7VInQwkoxPzg1/Dv\r\nem/zuh09BwM7QSHd5FlHgx5mY3AjEG1OoQX+tMH8GLhfG2QWkX8o69hk60H6\r\nYiNaaRbiuLCH01HB0E+Fx2XBjFR4C/s+6OSQgOW7XNnO85RqlFjSsdX1j51P\r\nbzQdP4Eub1xgzuNJFinsw11QXdvhGNQTDs2yQOXYgr08LAwEpztsE6SfTpiq\r\ny8baGXCUJ74JJ2bbwWGJdk/ryba+8QfTNmxBqUjUiZJFvnsv7YTb4UZ8bqwb\r\n/QxpnxELPA+RHdzqFP0iueHa42Dgv8C2Th6iYlWvhUTc6I0/15DgCMo7qOk1\r\naMLpQiRvbjLSkSN+5ljvdwle5ve432rzDNNBJChUU23BNu4HEJnjsQiBdXym\r\nOsufZkLtCssFOkDWPoiuz50mTB3VQJdEwTWjBgamNOPtZ2J8OwFEgvqh6ntT\r\nSfjFmH3pdwP9YO4Br6DV0UbqI2eJJNdNJlyC9kd4Hd9iJ2vPX0mPxan5Xk8h\r\nmj2PrCnz8coSSdVJOUsna+xvTJu/JDp4sAtfluFgvqFHax0nwMSqvmmwyDBB\r\nUoqn/qeTviZftmsBeregWnG+UdvtzxwJHgEiuSLr3WFEXxSjeQZTsoWRShr3\r\nLDbNgeHYZR78+lXp4ExuSyLFoabJtBtQ2b0=\r\n=qUKE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17"},"gitHead":"520c7be3e2d848dcfeb3f5aee0817b92d94e743f","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.6.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.6","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.22.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.12.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.3","@babel/core":"^7.17.9","@babel/node":"^7.16.8","lint-staged":"^12.3.7","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.18.0","@es-joy/jsdoc-eslint-parser":"^0.8.2","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.1.1_1649718976920_0.5784635821665534","host":"s3://npm-registry-packages"}},"39.2.0":{"name":"eslint-plugin-jsdoc","version":"39.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"011b95ea864329135271b1e8cf377f204a0a602e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.2.0.tgz","fileCount":124,"integrity":"sha512-K3db93cbgx27ISjktNwFDkuLx7CYAGdhnBRmttTSUCEKhtmxCTjvxuiidxHh4FCfZaFCKqTSH2PiJ8Lsq9xUPA==","signatures":[{"sig":"MEUCIBL2ju7SdIbhojPo6zrFy0tYN69crj/TRDUuNrp6sHYXAiEAw1l7urP8AGSxz2xpBntcQmPiF9FUgwkI6TwJUGsYCMI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1554073,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiVYLiACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq0bQ/9FdDAnnifmtu3G2dwxSWL8n2YyvAdkAMMY8lYWvwMzTr+Wr4L\r\njSQ7sPsGMvalqGA63XXuHD7HHWOo90wAzUFwGfynp5kH1EfB5Q5U0IvxNFzW\r\nopUokPqHUMbeGZPaleay9bAejIrO4hEcZl9Mf+ykA3Ib1JIiTp5pBIO5UnLW\r\nJMQabKiGoRCZMSOhmeWm31SMIuFEjapGkyK7IyfU1gEFZeytApgkJRAQmPUd\r\nTRt/rNDFUvn6N6Y3stSrrQdCTkxZbnthHwBw0z9vbRpQ/MBR0qnILcvs2OLM\r\nssG7uB2sUhCSMqkmeeLdjuDgJON/bDXzZYmkst3FDELJpUgqHAhWP+9jsjHi\r\nLzbKnL4+d23NKidkdOjrJI1F/oSEIRRccl6TXukpiQ5fZuxh4FYTh39ko5Zh\r\na6idaX/+m9K2X4OBeEUb5MgfF1un9PmSKq38ENHp+pg/meInPx2DYn3xRR9L\r\ncmf9FYO6A//dzugxoVd8q/OC4ls7W5obFwrpXwIP1VPrD1HK19qd5NdMUIs/\r\n9mwJYyk9Z8TBbFdyROCAhcIuEHe3B09B6VsGJYllCvBOrDzh/vc8ACg+qI9z\r\nAvdO5kBl+BXWieIyVBNifreYJd/CP6EeGZyBw9pY1hk1hc4KGstmtKeK/5B/\r\nhZCLjorN5o9olPPeNS0EL60hQU58IhfMYrc=\r\n=hiJb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17"},"gitHead":"288363e54ff1a03852f5f2c049c23c5e833c1960","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.6.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.6","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.22.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.12.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.3","@babel/core":"^7.17.9","@babel/node":"^7.16.8","lint-staged":"^12.3.7","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.18.0","@es-joy/jsdoc-eslint-parser":"^0.8.2","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.2.0_1649771234307_0.4121501115868391","host":"s3://npm-registry-packages"}},"39.2.1":{"name":"eslint-plugin-jsdoc","version":"39.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"39c85a7b36fd49b2799d0e8652108f1e8e85fc64","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.2.1.tgz","fileCount":124,"integrity":"sha512-bNNAJPhFUKVBHJMKU7zAQ1LvlVWoDbxAA/Ty9hwSI2hy+AVpc9wq16W6YHXd0PuMhXlv4FgYtjizHMu8Mnc4GA==","signatures":[{"sig":"MEUCIQD92/DPrxpd+yUoLzMGId6lJcnIYFNNNPzZuJT60S/oxwIgEhUYvGOtb+HFSuw02Xwrdfd149mIdcjrWiESUbMzHQc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1554178,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiVrgoACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq/Kw//eBcHXkor2/6zZ5Ftsq/XymI1kkj+7K2FZ2GOvbBPquuEpMDY\r\ncuVJ331fewc6FrixloSgqXvGlQPW3X5ETPPteXdy8vJMfjjsYDYz0/3TE9oi\r\nKgpsdjFBcK92/WFdTs83OHVbw82uW/OksjSPuN3faqfd6ncyjHhknfRdD3Le\r\n4zUcZiEtXMgvAKt5jSXEaRDedqoSP17DpiEDTXUmy1RCQD/3cPzG2F7ZjW1n\r\nK/vdwjVIxV+ozh6FuIzdvFMMdnOuYNjILumtDGFl8GgZM35EeOpTlnrCmw6A\r\n5zN8343rA9qP9QapJOG/M9ISeMqmbrc2RajJk8jfEht8hzBis4/p9Xb5w+ZI\r\nZGwhtchR2W0N+x7VlCjw+/kdsk+aiRUINw3i4EfDRD6RS54Pqa4L/DqKwVag\r\nULPGtzx9IAx2fmQxHT7R/6/+EHchKJ77Aktrd1dnFFGd5IYYhV1iiM9AG9Q7\r\n4qZju2si6pbekn6SgBKztiDwrl49kX5M9+nZ5NATCac9pavz+B0r34huzm9D\r\nF4E9pgE4Cd1M+BFSrpAPterj9x4Ma8bKfA1Ds4AFUZEXIej3VDIuOghKCO6y\r\nlR57yM0cXVimbOR+W8HBTGG/aasV0htb4BAsDQjJLZFTVVLGKkOteSxq1CgQ\r\noePCuWrDtj7jfWDl6k1PKr6jOG+l4YjUn7k=\r\n=CIFU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17"},"gitHead":"041de5f224773756edb4a658a791ae99eecfc3bf","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.6.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.6","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.22.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^7.2.0","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.12.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.3","@babel/core":"^7.17.9","@babel/node":"^7.16.8","lint-staged":"^12.3.7","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.18.0","@es-joy/jsdoc-eslint-parser":"^0.8.2","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.2.1_1649850407905_0.7628090360376747","host":"s3://npm-registry-packages"}},"39.2.2":{"name":"eslint-plugin-jsdoc","version":"39.2.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.2.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a16a4f04aab2fdf2120274722d6b097354495ab8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.2.2.tgz","fileCount":124,"integrity":"sha512-ybkvja0p9JRzHEd2ST9h+Z47DLOuPyXpeb6r18/zKHdMmggPU1J0/zl+F0phea8ze9rMxi42MJVmGXi2NZ7PpA==","signatures":[{"sig":"MEYCIQCW77PvPSgSg1aLAJx/nKps0+dLYn2n28onu0UbZZeaQAIhAPg9l5hojF0ILlunoucTuaTIs45M+iXcan4reshpFd+1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1554179,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiW2EyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq2Ew/+NO2kXurG3m/PVk9sjcJSpi8cU/VgnEUfHgMHkJ0fDV7xYAk8\r\nAKdY0e+f1xqTR9yFy4NMkziR+MdajHMe9HUmWxLUqCgpu5rvXB170gYTDsgW\r\n551QvdajqIYnv8HurjuLhCCHrPJyDkpHbeY9nk9Z1HQFJ8M0y7ZzWcvrp2VR\r\ng/VHGYgpoPM2sWOQVMLfSapgwPo+9yYRcGC/QqsgOePsp/rx8T8iMcltQz6u\r\nwle2vyo1yR88n9ohD1vaE6pR0JEjKDCtZcewt4yVzatg03dd9jhlkx2azEs/\r\nAGPhsnFxZALnl+S9UEJUPPVvlq8YCE0HPuJm3JZuvsQfez4f6lCu1dacYNij\r\n99hwNqTmFVcv3EbwBxjNdZbyZutiE4xI0ZFWfdd54+aM5k3VwuAcphwQeU7B\r\n4n7sezO8KSqeE/6POpYh77ljfFQ0wIkUElGp5oPARPJz5JYW8IyAu4Fsx02g\r\n8VO8BVHqwdoNwrgRQIuCf5WWF9yBsfBiNa/1SROLBeCoFSS1gT4HdoSmU0DI\r\nRrLOz8ad3fDOwKXRWTg6HseFP6Tjt4h1BGE90GGCKZ6TRULMTYNu/o80LPyx\r\nPgkeQ4NW5oVNyQmeLCezhNJazvvsejDAL4t5L2osUO/LZwuhDfwqotGJReth\r\nVbjLRDY+qhTk52g4/JiTpDD5ljHARh4lRj8=\r\n=ZUnl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17"},"gitHead":"0eef81c805ed8d54d803ad18e0f42dd09d54f44c","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.7","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.23.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.1","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.13.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.3","@babel/core":"^7.17.9","@babel/node":"^7.16.8","lint-staged":"^12.3.8","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.19.0","@es-joy/jsdoc-eslint-parser":"^0.10.1","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.2.2_1650155826445_0.3505640728434771","host":"s3://npm-registry-packages"}},"39.2.3":{"name":"eslint-plugin-jsdoc","version":"39.2.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.2.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9b2ccc379f78209241bf5989b4e693c17b81bb69","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.2.3.tgz","fileCount":124,"integrity":"sha512-kYB0Sxq51cfZGVkKoI9wjhR/01/z/IUwhfHd7DzP3dKT/GGk2heBGwYyxE8kaptTDXQRpS99H/h4SW3Rj8faCA==","signatures":[{"sig":"MEQCIB3Ik7ZkrJDRmXndFUS6Ez1ZtBM7d6ATHYq1iknEMVKtAiBP3Zm6i89VgNgO6oF0NizJMoEgvjyz6k8W0vP6/V8h9A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1553961,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiXesBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqoyxAAoRjqQ1NkdifcCK045idFBKpm+1yLICNA70f7+h9rN9d6LeHQ\r\n9fE3O04/gmMgh/l1cG3OPs90oTeDFKnmsHWA7UUW820J9h+/Ig8TuQM27xG3\r\n8s05lYQQxlygGVg3edJWXniwNE8DZgb01EcDizoTzHhL/bgkX+IP1wOf+vGP\r\nSzT0wMYJkNqg9MuRF/+u5CKOfxSjtxdOneVxS+7Q5CoGWFrW7vNeBtoo3LMY\r\nZbKUYQf2tx0im7kfcQ8/q8bMtTWoJZlcIprqAFk0V4MQ0rKSH/qjOQgi2mDP\r\ndZGmo4L828s0kuj7K6tMdD0BMjPqGXXD0LEaEoWasCKVDL7Jrajqfv0SuBKk\r\nfEXWTGcUG/9ohwmB63rUlE/L1rzJPCCRocnVYVVdMdxTxT/3rM4xgTwx7Or2\r\njK1jgOCYqTOMSHN2mqdkupQwWPn5bXHwhDfDQOuV0XwXe/vUsesmyUkb9x2b\r\nw6dRLv7rKhW8yu1sC/eN2iPOFrBSEH7H/aItgYSgCHrv3r8QHfHDCa4oLgLB\r\nB/6f4VwfMeZ6o/zOScdZDfTwZDdwFbNeoAmWRr6UElW6b/CWCDwwNkKRU8pH\r\n3gw479YyPbGazQ94sxGZAMCoALhaik0NtcQGca4WFPXqcJLH7yArsUJVvxsq\r\nB2g5pwORjuWAM5tDE8hGTE9Kh/iid8KF+C0=\r\n=3zCM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17"},"gitHead":"2f104f8ad16bfd14b5c67a82e09ba261293d89e0","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.7","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.25.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.1","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.13.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.3","@babel/core":"^7.17.9","@babel/node":"^7.16.8","lint-staged":"^12.3.8","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^2.2.5","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.19.0","@es-joy/jsdoc-eslint-parser":"^0.13.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.2.3_1650322177262_0.6728379920007801","host":"s3://npm-registry-packages"}},"39.2.4":{"name":"eslint-plugin-jsdoc","version":"39.2.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.2.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c6796c833b685eb751e4218542c5a581b24aca6f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.2.4.tgz","fileCount":124,"integrity":"sha512-JiVDGPRWK2SK96awi2RM0AmCwtkM5ierwGWq7JHfsnUkFHAMlDWycLJZqQstRQ620AG3nWWrKqtRmWmcRgtQ1w==","signatures":[{"sig":"MEUCIQCO36mQa9YTqB2j8QPd4NT+krYtiJjPALXO7zzRcH//ewIgYehfWqeEb6IwZhjcq54uqds4HUvWlaZ1R0ruAS9Jfi8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1554206,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiX2igACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoETw//UlekIhBfi7PMq3ZpdPaGW4TvoBIYQTgX59MzDW8kqZ+9YYU6\r\nZZvu3J0IYTIoTbfTKIk0p006CTbwh0LP+Swkbhg6Y71Ueat16QvAMmazytcC\r\nmQCtqhKN5sCdSz6f8jhE//E1F+QamUQMd4kgr8ZS6CCgiEIITKK4bIguoy8P\r\nTK/5LCzVoHIHQFoShuWcxQZqyDw19Hc76pzwttV6VSQa86xpKr6CUnG8P8a5\r\nJ/gN4MSTlryjshqqI7y/1n1aPx7AtpU66clmNfBxG5Y81ZykOjY+9GFgOETM\r\n+gI6RpXmxLOw37/A5K/C696X5jujy9UpwRVL4uX8YBzSyz4do5cCLNzix5UY\r\nK1+mV+Qv5UYgRrwLolgoKV0BcbK1QghBrFr7ncwJ//m4fgcENLySOhkOXz8z\r\nMdVAD2Kq2ia/S0frErXNoXd7zbyWvLqwSNBbBQgVBcezXi/VdEYNMQvaNJ9U\r\n5YEyDJra0y5GW82ZpCGvNreCq2XDVXHZi6bxCpTgYkWq1xefscoROcYoLnQO\r\nn6HAjjszF4jNPz9wFV8hfxeTzxGJmYqv33hzgoCnaPBvtO6PasUSiNG0EwCl\r\nECFJMcuKoWvWHGnxOpNrEmWl3Xrpe+ZxnGmPsNNy9Jgeot/syvk26CwF7ENd\r\nNujhfr2pekNZeJ4Ci1K/7PpxaYiFBsbYuDs=\r\n=knVH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17"},"gitHead":"4270b75d7ed3550b4df4f05141dd4abf96741dc7","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.7","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.27.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.1","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.13.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.3","@babel/core":"^7.17.9","@babel/node":"^7.16.8","lint-staged":"^12.3.8","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.20.0","@es-joy/jsdoc-eslint-parser":"^0.15.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.2.4_1650419871942_0.12239458186488528","host":"s3://npm-registry-packages"}},"39.2.5":{"name":"eslint-plugin-jsdoc","version":"39.2.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.2.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c63204791679a195c3df50c3f8942eb156cdc275","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.2.5.tgz","fileCount":124,"integrity":"sha512-SdSgpiLx90PaFTKljH/KDuz+NU80m4s8SFwzcHuOGuZNZ1MSMSSufMUJMqH538hTvTjWeix5SYYx9PO+qx6lHg==","signatures":[{"sig":"MEQCICAJFQxTMgzbz9QnQryrpe8mCM1Nb7hQzWtUd2sQqKVeAiA1s7vh5+hWDpsO4Y6yHDWup+srMSmzS5TbH7eBjiXOUQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1554213,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiX85lACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpnFQ//W7ekk04EV/nLKSJDvr96coqOv8wA+KhbfmBzxRS8NAzzOQe7\r\ngFL9l1gwkWzLpySJg1yPmvFM5Lkjw+PSoRcrPKn7UAN6fz6J/jpeISsp2KQS\r\nWzq0gkPacuekCke6eBgRFk11Q16sUgBt5et6bsifHJHLMHm+mBtFZ+UI6OvH\r\n238ZGkG/u+Z0NYIOw2GBXkb9z6jcRguBNPozcgeOP22fU8RqIthz3+coB8T8\r\nj7ca/kmZDEB2EbS43k9A0Zz8L5o/7ybM4mqTUSOtqFfKEyuZm5pKQ2Hz+sAD\r\nWIawMWjNRrK78xSFZwD0AirktjUIvw/PEs/JAYN8NvdEVlV8YG25E2NFQYwY\r\niQKdsQpTONhzrTVKEkUnffkKD3fr2OWu38DMiCfRvP7itCImjH+xpjsyp4vS\r\nPOknYU5Na+xM3XCpqslSsmHfS7KMCbk7Go4CEkUXNxoDyX9yiiHneWsXHuwx\r\nWIwU/imYg5n8x0gyGX33sRnQin4hFY4C/jSgvg4Yu30sZA66cbE+ZJISgI4D\r\nsNu7lvNnsIpGuAQpHjtwOBaHVB9MaY0os/sGw/X/ibWLfeQmqU/otwFgsyqa\r\n7WTKQrl0xiPtXWI2YjpdvQKnFDGUtAySBBHnJHK/TDcZhNLuwkmsce+pmxpJ\r\nPKCpVuf+rk0CAoVKaLnAOvDWmGIemk1YlSI=\r\n=eBba\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18"},"gitHead":"fb0c83f7cee5fe85e67812eb5af2d507fc52cb59","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.7","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.28.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.1","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.13.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.3","@babel/core":"^7.17.9","@babel/node":"^7.16.8","lint-staged":"^12.3.8","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.20.0","@es-joy/jsdoc-eslint-parser":"^0.16.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.2.5_1650445924769_0.49488522772029997","host":"s3://npm-registry-packages"}},"39.2.6":{"name":"eslint-plugin-jsdoc","version":"39.2.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.2.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e2729f703e666aad38e452974f59286e733e708d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.2.6.tgz","fileCount":124,"integrity":"sha512-bPeKh0p+Gko3uBmJkP6FnY75v7WMPwFsVYZgh0CisT6apOJzS30zyAyy4phWly8JGgnz+9dwgaYgr+KDObUA6g==","signatures":[{"sig":"MEQCIHT3lr8Yz4Hgs2Bn3nExAPLX131iawImPGY8B3p0gJvJAiB0cYvhw2kubGjjaNbRas6DI7svReuSeDxpid+lzSk0cg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1554321,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiYHqKACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr1pQ/+LC8UtdJw4RkAyJqmRbsv6BrQ4duA0HSo9j125dPURRnkUBb6\r\n5/cORCpabF9Ku1cnklb7V/9EyBFZr2SeIi0PoUSNTVHI59JT+oTdz4ZXTl+z\r\nYh3utlwE2/a1OHDZrGCFYqD4vD7KHYwK9Z3eOOVynbs47dacC/YcGdyLvn/8\r\nDgGM4uFNdu7XUsIIOOlmESF9+P3Qg3OS96gag/fcDVXE3rr7fwOqfYxNoMv/\r\nhVc5jm6lzjpCKiQmCETDV8CR+td/e0XNEQAyi1jbvbdLvO6YJxOdfcPBcrHs\r\nQfmUPzK2yuAjLT4aDOTZ2noSeIFDCblJsZtDIuD39n3ukBhvFXvoF6JMVfBY\r\nmdJP15m5dg+ZVtbAVnUeII+IGorZJXZS1oGQ9LNByJOitkLfMvW0PPb5W8ZR\r\ntqtUisjGSE0A3iG16ci+PN333xNYDsuh9/kI35v3xty3HcGzSg+HYr1UEX/k\r\n+SyRB5sI5Sf0sL5ulBy9RafIu1X8BeOydri7BFROsaZkFyELf7od6qdqk8M+\r\nOhWrEgszSZ9UA10SnwlDfx6kiVU4fYezwOpHVYU+J3MFzvut9bi6drv4IFTb\r\nl6XyXzGJHqguT7U7ILMh3or0kNzI8FNIXhkwla05e2WqNG7O0HM4dSU3ckNd\r\nOleu+pBapGVhlOhIJIWI0LP2lvj3qVtHo4U=\r\n=X3x/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18"},"gitHead":"b65fb3b955dbd970f01435f8da79890f6677370f","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.7","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.28.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.1","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.13.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.3","@babel/core":"^7.17.9","@babel/node":"^7.16.8","lint-staged":"^12.3.8","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.20.0","@es-joy/jsdoc-eslint-parser":"^0.16.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.2.6_1650489994473_0.29492558489313514","host":"s3://npm-registry-packages"}},"39.2.7":{"name":"eslint-plugin-jsdoc","version":"39.2.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.2.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"45cc38b93cbf59bc496d2d167528b87c967de6aa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.2.7.tgz","fileCount":124,"integrity":"sha512-vLaNFVbhoUrAX2f7gKpzALEWaDCiGGydlPYzrZLVlWXdUm6UZdJq3GKlYEoI9Q/eL66cPbHukaQHD4MQ1/T8rg==","signatures":[{"sig":"MEUCIAyxUutnndEfdNqh/LVhdbzjj5zq/muH3y60Zv6VR797AiEAw5B0fbk0aLQURVLjqSjuf/v41SsuaIDM1UhzItHHuBI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1554287,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiYQrYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpKMw//Y+f6LnmYZt+c1TINvLKmjaMPx97y6DdQA49VDhU7w8PhCvdk\r\na/+tmiXCWn3k9odGMISVuunIV42dJskjceOJhdw0bruhi9zVaEUHIkOxIzIx\r\nMmwZPPW4CyhcTGzpObO6tl33z8uC2ASn+VFSW5nbSSTa+nx7ZOmglAvmA+Xy\r\nOuwKzanxlhQGwBJn0HUSjYN7Vx3mDwkHy7hqipInP3yo4z0Uup1fjvCM54L0\r\noZITdWTP/oWs9WVk/xDMSv9A8Utl+oP8sIOuyd9Ua9IjBh/wsuUG9/0J+Z7C\r\n8ZhdFiZizCI+a1hi/xfWme+EMRX1TGC610Z8WEY/mcq3f8X6nWdyQhuB0JPK\r\nbXYrXHQxmSSctU70Fj3nu6KL+CvurNPvWDnYwP4DUfk50o0kcB/O37b/nydl\r\nSv+IXcOum890v0NwjRgvOR7gZhZaiBYduaL/gssu6CeRk/vnO5qnd9GJHYFq\r\nodl+DSlcOxtmm2Yko8NsQmam+jzOOHKqmlNZcrLStJiCNeXcXgBW0ASzXQnl\r\ntkIcxj6KvYW+k3Q0qlgm6jBzQBuNU9mvEORvpaCo9h5u8aujGO6APq0f/T8v\r\nQFW9f3ySD842NfwNplq6XwnBBQox/r6ZVWs6f+nbG9TiBp4uvyqlsKSJZUPb\r\ncSt6uGATOHkMU5kssqB14D1wLirPfKgZN/s=\r\n=acfv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18"},"gitHead":"e53b441c936053cca8cde73177b669a2b87db5a8","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.7","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.28.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.1","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.13.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.3","@babel/core":"^7.17.9","@babel/node":"^7.16.8","lint-staged":"^12.3.8","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.20.0","@es-joy/jsdoc-eslint-parser":"^0.16.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.2.7_1650526936459_0.9633284738225976","host":"s3://npm-registry-packages"}},"39.2.8":{"name":"eslint-plugin-jsdoc","version":"39.2.8","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.2.8","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"09afbf581cdb5f1b65689201e693708c474d7a65","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.2.8.tgz","fileCount":124,"integrity":"sha512-uZM+VIWRpwoaIMuuHW2XaMhQ6NXonDiXxKZ3ebgH7JmnBLElib4zln5Tqt3IjvZbS7eqQUOnQ1nM7D4JOk3erA==","signatures":[{"sig":"MEUCIQCV2tDopbYYL/2Mi6VbK0t3YN2L6KSgDtdUm2JWe+dtiQIgPaI9j+WbwttpB7V65FXDjhr/AKLEBS8SuF9pHbUahag=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1554243,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiZPePACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrLjxAAm2Os2OIMymT0LQKxpAIC9QYrzAmYuAIJWvKpGbnoiHIK+/c3\r\nVTh2ghdsF9GktvLd7riyMeiol8BJmgQwlV5bb4B1AtoKn9Tvs7eilGawcesQ\r\nsh4BGquTnhurhB+CD+pf9vKn7ilIYHjqtHArNjFd5UwB6jyndk3UIKW5h/La\r\nDn+3shEo2K17VwF+0G+V8UIeWZQrH0TzqGajQvRI5PtrWx6opydMfrWswfMc\r\nVCxMZw7KxDgupK5nwly6cqLGKzOG/YFCv46+otYLa8j2oadOaWqW4vOaOXat\r\nzu1JvjhYICUl72Vss5GxCSI35KqjTEvPG9N5iWLWHtU+VTWCbI+ninqgvcsO\r\nSfHD0rxeAND4nKKqH5N4SNCh20KB4TRjZ4rdzt8MR31be6rMMEpl1G4rek07\r\nIEfMG17kgnGAe+qDo7H8lnQoZrSuI7zRWpuE5UuAe11lQSCxZXe1TvW2OYpw\r\nV3/ouhdcxzAaLeNCn3FC1Ppy0rEefcu6fvsXxbxd3i/hXDor5172zyCuouEy\r\nguEjRhSkRqcvfWBmGutPc8a9BH/bo2RVcAi37+FoQLf960yaytLH22MYUz/f\r\nD921mfQIhUFIjlmC0Pr23joI9xeCJ3hD5PG/kCa3/xX4OReHzBnXuC0p/jn5\r\nah590o9gKDKlZw5h/6MK0brO+U6AsP+0dyQ=\r\n=h7Mz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18"},"gitHead":"56966d006f7efaa602027b7e5952fa75079c5ff3","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.7","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.29.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.1","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.14.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.3","@babel/core":"^7.17.9","@babel/node":"^7.16.8","lint-staged":"^12.4.0","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.20.0","@es-joy/jsdoc-eslint-parser":"^0.16.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.2.8_1650784143752_0.47989135493068336","host":"s3://npm-registry-packages"}},"39.2.9":{"name":"eslint-plugin-jsdoc","version":"39.2.9","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.2.9","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"bc351de403f1862f1ef8c440d12dedc28e74cbbb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.2.9.tgz","fileCount":124,"integrity":"sha512-gaPYJT94rWlWyQcisQyyEJHtLaaJqN4baFlLCEr/LcXVibS9wzQTL2dskqk327ggwqQopR+Xecu2Lng1IJ9Ypw==","signatures":[{"sig":"MEUCIAP9UkbO2S48RVpDyesN2j0nPsfzlo8clceF+2pLmMkIAiEA27Gjc06YsCDBH6oBwT3vmfjunpurLomlCh9DBoN4zR0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1555972,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiZzv0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrsGQ//ZoFciFTcwg+o5f8lOWraIxuQ5ug8jz5AWCwhy0OFHFn01b+v\r\ndfxZxbXNkOW4DLCCb4IEWgwgWGa5pAAujeYqMGIHccUFg2wrcZmP0x1K72xk\r\nv7k0mnZrg50J2Z7nENrlb72DJzwt6ZkzNn330tk6Wh0vZ+GEasUUdR2hVmYW\r\nPaceCapCI5B2vo7PvnM5KcuiIoStaH3fNlB7r43HLU7wGmv+pjfQExCfrme4\r\nu/tGPrf2DeilHzS1uddsEt899qxxnhpHvW2n2jw6kEK+251+vFwYdyazck6O\r\nh3FwAcrPiTTmVC1K7+kaB7U8TI9PmHg9qfbuE88fT7cqlux2E9ePE1OwqFxd\r\nm7eSJfZCnjFMTuN/N5pM3fZWYGhQJTqYg0N+nbdpU3DtYEkRIhQi3t1oca2K\r\ngLrYteW1NGqj+iX+fdwRpjNaWREvkfRKpSUpaOX3PzwcNE0zuwON3Gg59bMD\r\nBPIz0YoRqdr1pcDbkPKbq2PZ8QI9vTGvIuBdwVOFUTsepDhOa2pJsEeDA8nF\r\nj6FWRzn71fykROf/eHpA1gN1Ev3h84GYXF7DNYWSo2GOmxxcyAh44159TqJe\r\njTE/Ot0JEuDYEGilPA58nsSXBvurF6Y8tiEFfIxzhPSR4jpJUIICmoqoJs+7\r\n9EDypx/7Dixz7Jo6OihRtb8kw9gZYwzbeLw=\r\n=PU28\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18"},"gitHead":"f4a92498190ca530dbc17d58c2514ac102ab719a","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.7","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.29.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.1","husky":"^7.0.4","mocha":"^9.2.2","eslint":"^8.14.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.6","decamelize":"^5.0.1","typescript":"^4.6.3","@babel/core":"^7.17.9","@babel/node":"^7.16.8","lint-staged":"^12.4.0","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.16.11","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.0.1","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.20.0","@es-joy/jsdoc-eslint-parser":"^0.16.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.16.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.2.9_1650932724030_0.21629364234446058","host":"s3://npm-registry-packages"}},"39.3.0":{"name":"eslint-plugin-jsdoc","version":"39.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7318ac217a44401fc42fda1a051a6b7cd010a18a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.0.tgz","fileCount":124,"integrity":"sha512-zEdkpezjIhG7gq4MbwLBKaD3cWsJkT7uTAJcIbLohQWR7OVwhPOBLPqpftBt8uzy0ZL+3jlbiaSXik4+VmN6JQ==","signatures":[{"sig":"MEYCIQC+7LWAv7acKxwG3uANU/LWyKQEiFNUwaYhWZC7OWPF4gIhAI47OZTIyoVEgd3nGlgU/H0QmWJPe742pU+IhCCjAkvd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1543042,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJihfRJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpr3w/+JqLRfsuLYg+Qlg5YxYJmMrR+EeU/TodvEYzF/cvEMxinwE+U\r\nw5wqR6NI8eswGNbb+8dNtFbA4rNk3BvFFpPj6EL3I2DMVvzRqIGeYWYaqtEe\r\nWRsFcL+vheoZWIhglGQ42Vtb+z71j3q5XA7RlbnNdbzE5YWSW73F6nkToE6h\r\nF5AyAfvuqQjNdOnDKz6qoA27EzFL4k1pOS5TntJtN5dih0s8QpdiSwpRpqYW\r\n/k/vDYgfGPRQdnQ7FjrkM1lTgqCyWcMtNNo3j3O0SZbtSUGeqXkpvUh3tZFo\r\nSV1joZ/+gwEkfLFOjG8/x18XGcNtmeqnR2gFpwDMsrA3B4u7JoQnZGx2J0kp\r\nElqvCzUODAER8hJy+TTW6uBcQhwmoReGTmI8FHcYAjiRlRN5iDu9HgeQ3gvi\r\nE1jbdaxpdlEduAJv9TEoN5VbQgX9GA14Z3z9AzTltmIyfQBFiEFi7SBZhLUf\r\nIYN+laoDrDpfa3DJag2E6ruXVIDFpgpN74rzCq1xnZqXWayLIYccpMtRSU8r\r\niH9WMWABMpPMxU7kEDZDVkbsia3x3JJEQx8pOTHtztIurcC2tTBtTIu75HLa\r\n6Rf/dLSVLU333iYbdgnTsur/TYBmz5u55QbBmC7lMMJ+rEDneAwF0v+7r5kK\r\nNdPTR0QxSLkWoiqhEvmYMdGMkASFFQdAEJk=\r\n=nzMR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18"},"gitHead":"66658c0f59c5b903e5c5fe107fde174c0f40f2f4","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.7","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.30.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.0.0","eslint":"^8.15.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.10","decamelize":"^5.0.1","typescript":"^4.6.4","@babel/core":"^7.17.12","@babel/node":"^7.17.10","lint-staged":"^12.4.1","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.17.12","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.25.0","@es-joy/jsdoc-eslint-parser":"^0.16.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.17.12"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.0_1652945993278_0.40834241944919625","host":"s3://npm-registry-packages"}},"39.3.1":{"name":"eslint-plugin-jsdoc","version":"39.3.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6444bb5280817deeeaedf3bb06f762f07b06dd68","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.1.tgz","fileCount":124,"integrity":"sha512-EVee7DW7mIKjQ+i86O3sV8n1BdXXiBo0gqY7S7TYTMEBzZoo4B/xNg0fl+b9ktIJtj6H0einhO3eMpwY2jyJRg==","signatures":[{"sig":"MEUCIQDzjCawhoB69G8qNpgyBydGnUOUzojuEUIqTrT0d+y/0gIgbT+BDgYY2PT7bEm+/iZIRHLsh8MqFcvyCi4zvt0V65I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1543040,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijCSuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqapQ//W7vCiNu4v2CTUnGC1hOO4jiY+UQhxlCUsyzP+u4wba472oeq\r\nBxBzOvVbzTwUh77bXA9rxqoRWtkSqvsHiRmAzwDoJsdOyK8rkYw9KcaLSL7m\r\nFMeyEU/Jf5vG/9rFt18Co547WZjuV6eHuiExbYyUG+bnISb4kHNE6m5U/h/j\r\nSG+4JtqvtFc4vMNDnBWgFngJihQx/C2W8ipZmqBZLrjLd/zXCXgchGmTd/f1\r\nAEGFFY3iD3JHfNbedXcMQkJxdj4QdZ0EtRDzDJCYim9vxIDhcgK4R21MOoTC\r\nmqLmj2AYdVWZR7qSirUg4JdN+m8ItgzCPVLvtJM/hj4L8cznglCYv1xEQd0p\r\ncbz+C6QT4qZdxug/l7H9ZaORLnkWdb2Xdwu/BmgpYq7q5zxXpIdGr4oC7tr1\r\nDScIJyIqKlpWC4dWQ55jbuUcEvr4dGQiA7qW9/ji2J6tl7utjgjl4FOiRstm\r\n/d6iGNckEhjn9jdhrQrwFtYya+v/tY2OiAPFctT2/9HPFCcxPR03XTME6PkR\r\nt4lzr14n8c5RajkeoqqS3WFVofK53NIpnA023AFCaD6nFuzBDDq+NujghMRC\r\nmWuieyBGzPvS+2vYdYM/xyDpEN/8AYIe9VhU81JvOCvNqSb20hGQDutK3Z2j\r\nq9ABFuvDS3szrdtaIHAKyz0/eF57Z8l0Ps0=\r\n=CGoA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18"},"gitHead":"53e41742fb5d49bc6b49ccd9ee126eecdcf3d21f","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.7","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.31.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.0.0","eslint":"^8.16.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.10","decamelize":"^5.0.1","typescript":"^4.6.4","@babel/core":"^7.18.0","@babel/node":"^7.17.10","lint-staged":"^12.4.1","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.18.0","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.26.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.17.12"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.1_1653351598530_0.4476132912555968","host":"s3://npm-registry-packages"}},"39.3.2":{"name":"eslint-plugin-jsdoc","version":"39.3.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b9c3becdbd860a75b8bd07bd04a0eaaad7c79403","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.2.tgz","fileCount":124,"integrity":"sha512-RSGN94RYzIJS/WfW3l6cXzRLfJWxvJgNQZ4w0WCaxJWDJMigtwTsILEAfKqmmPkT2rwMH/s3C7G5ChDE6cwPJg==","signatures":[{"sig":"MEUCIQCaTUPQt6nHBMzsI1Zdxb2ooHn0CFejTQrMqtnnfqwiMAIgd9eupk0Er+588QWnpFw/QwgRU3tzaZPCh01qBYfp+v8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1543336,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijMRJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrjlQ//Sj7MG6Ui2Mt7ALmi7BwUtMONGHSmsTBLqWxIIAN6AECqLUaw\r\nFQ+z+SG5CKBC8e1sYtxcTSGiSnxqXpTIVzEm8CXPYzouxvLdX0ybsrhxQ9ym\r\n5Ov1deZFk3JGOnb+/DgPDocMkOcXGJuIi/NJ/ddg2yw4F0pVxPdySSgqHg1h\r\nJJV33NJqkX3EukAyhyWxZJxHu6MKOQb9uzWocRAca1YmIALfqfkH95trfAYK\r\nCoGoaApFsd9jeGUXY6CTLU/soQB8B4HRizPkCR+6hTQMnBhqMps7eDboFR2M\r\nDQ9xld7zwth/ykBzYANC+JnV+N7PTRottDAcfZw6Mxr/RIoVaUVcOWHYl/Vm\r\nCJlZFnF5/+ORv7DRa5zihjor7l5eDMx7WRc//fdmybkJ9iU11xM/6l9FLe5c\r\nencba+azYjjzWBbglHMPA+z8NaI1Jw46+F5f25a9NXunNtJ0ll1URsZSEJbr\r\nBWln1y3iaKz4fCt5DzXQjRfllW3vzCv++SwHdq6Kb63HWwZ4JW2D7RUnvZ11\r\naV/5pIBCgbjyFCtGHzZzzwEuSSh98FkMfdn8Eo74QMiOAx8vHi6DF0gWKDNA\r\nAWgazNUQ6f2tyhrXYoVrKqVexw9+HnkVEePw3AggyWK3txUO2J/O9v+OjMjj\r\nc5YI5/tK8FJywgsH0C+6A3Ry/fEqCPG1QfE=\r\n=4Qol\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18"},"gitHead":"374daacbcf68aadaf696213ead43bb59e4feb4c3","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.10.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.7","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.31.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.0.0","eslint":"^8.16.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.10","decamelize":"^5.0.1","typescript":"^4.6.4","@babel/core":"^7.18.0","@babel/node":"^7.17.10","lint-staged":"^12.4.1","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.18.0","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.26.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.17.12"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.2_1653392457273_0.11037414762278597","host":"s3://npm-registry-packages"}},"39.3.3":{"name":"eslint-plugin-jsdoc","version":"39.3.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"75dd67ce581e7527a69f27800138cc0f9c388236","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.3.tgz","fileCount":124,"integrity":"sha512-K/DAjKRUNaUTf0KQhI9PvsF+Y3mGDx/j0pofXsJCQe/tmRsRweBIXR353c8nAro0lytZYEf7l0PluBpzKDiHxw==","signatures":[{"sig":"MEUCIQCzah4WVzF6TWxXUBP2QrdT7n/yaPmUAIud+BtA4L5d8AIgf3WhKNDlhoWu6NvuN1+BPIli1LbMZVEU6b56144Nr8c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1544404,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJirUmyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmryeg//QCDb3osQxl2KwHwUFhGQccdtZKmFOTlgyplD+Gln+n8MW8na\r\nLUH44aLpF4cbWwUpG+SWN1Gj3OmV9Wyx/1Q+U41iVbmobhBE39YUeSTMSa2H\r\nscWPjUKMplc8mY3pHdby4ZBTgqjSA3zLis2nAyVH3Hk3LYQsYhm2xgoMIeOA\r\neVoz7Lx6nlcoVGfxSgLgsaKNiVc8usSXQl5GDsM0LmB51PC3i9KEt1oSPjo4\r\nJExTO/jBT6L0GXTQGD6ETkjtSLomfCvQ6BsZhSolmgn9UXsd3v1Te2zQGE5P\r\nAO8PytJr0C1D1RVpQ8UqrV48XzSjJJSqaSaJNMIlvm7lwMIQF1M4oU31+Yrt\r\n75LuCM0d4xujgHvBBGFk8PaNy/jOk+OmYQLvsX6S+T8ITwVIIgVl4jWe6KaG\r\nJeGk6WZH6wNMVGtGyl+9tHdvcxJdazJ1uKfFXyDeNJ3BVszS7KlYp9fFmfEr\r\n0zisIZoHM8EizkGuSKooVEmkVnTTOqVG8iT7IiWQFtxOeCyPJ10e9EAVuxIJ\r\nlKO2TfmCwhFSfs+fhiwEn5TwohvoUPPFyjqd88S5P3qkSf8/ZGwTFQRmbjXH\r\nYgS76DEPU+o9wWQoJk9YUfyXqFk0j9t4y2i3Ae3tBUm97aoEwL4dtKqgaWZI\r\nccIM/X+raRcW2VCsO2opCSVkXJ5QbvMJT+A=\r\n=88F/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18"},"gitHead":"26e7357171ee1abd73dc16191725a786e7108cf0","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.12.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.7","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.31.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.0.0","eslint":"^8.16.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.10","decamelize":"^5.0.1","typescript":"^4.6.4","@babel/core":"^7.18.0","@babel/node":"^7.17.10","lint-staged":"^12.4.1","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.18.0","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.26.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.17.12"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.3_1655523762264_0.2822891174896027","host":"s3://npm-registry-packages"}},"39.3.4":{"name":"eslint-plugin-jsdoc","version":"39.3.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6d18c5a071ada5babce9636b02a6c8355e9de2e8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.4.tgz","fileCount":126,"integrity":"sha512-dYWXhMMHJaq++bY2hyByhgiRzt5qQ7XdfQGiHrU9f3APSSVZ/HuOnXuvUUX7W0jO55Udsu4/7iRlpF/yLFQdSA==","signatures":[{"sig":"MEYCIQDDj4E6Qxd4G2Yp02fqGug0+g1EzaizILCsgixSPKAU2wIhAKOdmDTV3bbMuGcGoL+ZvDBhDJp8MKNQy3B4Tr3Sb6hP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1546045,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi5AnxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqdeQ//S/XVZWrpEKnuKx12U67snsyuMO3CToBwF8BL969tIlYnvzIK\r\nLQCorreDpgmOkoTmhdTFcuwJ3SMqr38zQbAndxgmpErLeQsHnfqtsQESNFlK\r\nGW9IcHg52f8l3e2FGqAUUX8C8zQLYWDACljYlzcftOPk/b9h+5jpYJVMWqVp\r\ny+LHHLkMJt3yE+nWhFMVJ2cTx3mwWWTIr0b3SwXBwzqGk2iiUr48enup0I8+\r\nv+v2w62nOBMy9pxtI/VQc7HiFdH7hvdfJIDOM5ZOPDaiESGZfqVacivrunXr\r\nJFjFfPwKYbot1A9G7mQ9ODQKA0gB+rSeonrBegzIET/o/haXgNHLJHwqVb2U\r\nQluLofvUpk9FiS26s8nKGFxYm1ahkZWTVHUqFsdMs8Mzp6Gh5sZhPJTWpnD3\r\nPQsrhBooxrCYqYKB6xvwtHXjIdfWSMteu/TV+o3XD9ejr+/Q1a7b2a0RwNO4\r\nRdufUJVXjnz6vcyhvsOshYQUXyGDF3yxReDWSXS/G5cs1YXb9uqGZIsL29sB\r\neY6vB8XYwaDlDn4vlJGOD1n7F87GGAG3jOVS/GJwxiSu0bAj/YrHrQPRlUGv\r\nQUGNCioZbmi09us8LnIi38DBqErXvwGqd2FoTK5/6bqas8sfkVOt4R/oWrHK\r\n1kYeKi2947y8nIFjqMxapjq5l3uK3dGRUOY=\r\n=WVe+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18"},"gitHead":"07a9fe3fb304c191a25df2077b77020b53f8a0f0","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.15.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.7","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.31.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.0.0","eslint":"^8.16.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.10","decamelize":"^5.0.1","typescript":"^4.6.4","@babel/core":"^7.18.0","@babel/node":"^7.17.10","lint-staged":"^12.4.1","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.18.0","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.26.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.17.12"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.4_1659111921677_0.9735638858219009","host":"s3://npm-registry-packages"}},"39.3.5":{"name":"eslint-plugin-jsdoc","version":"39.3.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d6dba623ab1f575263af1455c63c72fa580ed263","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.5.tgz","fileCount":125,"integrity":"sha512-cZywPbdx/P1RSpIQry553YU8keAu7c996nEqqOF41yQePhQTFcVmVJws+x7Djj31jNdLg3WsBrLHNttJacmgPw==","signatures":[{"sig":"MEUCIAqwl1Uv7rff8t7xzCRkeE7VKw9sEEQUEsMOK7QxgJZDAiEA/b8/TBNKKn8bAugypah5l+DfEWdabZInI4Nbm1gnhr0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1541778,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi8X8qACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqNgw//VRLVa6EnGi8zk+s06gIYdo0Op2aCg+DHLz/tErrw//1WlkPa\r\nX4ZLA4d7tBDLlBwM2CEPEoRm3zedEwimQCbibk3Fbg3l5TuJUekHO2G/yhhE\r\nGKr14qrOfSWGahm1/4dbuNvejxSHjfVLW20jhX6EI22fbe310746DERjGB6J\r\nvgvgUkrpRaA9ErsLnSyIky5BoF1UuP//9hUAupklsagbaZjJWpebwy+zbmQQ\r\ng/SLadEpt6s23KdoFH6br54gE27aOGNordcrAHNtJLjuxwK9t8nIqnYmk7To\r\n2AxOtuT2zLJNHH90BzoONK2G3vrOJZ5hGcd+aesWKKDFVVuygqhbbR4CfQne\r\nphl20CuT55INUnVJsH8lrrs6GDjwkSjGk3Uy/rkSY2Jm0i4hPdcP3cfPffp2\r\nQJ/ywo0VshxOR+Cvwr7B3c13Kn5uYb1Dg/dPWT+UHL+N/a8r7go+JnKTeALP\r\nHELmaho01YQuxuVd+kdBCTY5zQf+fpFXlDe/IDUupZ9Ou4jGZf3xruGT1MJK\r\nEpIP63+B4TQW5uVE4rGztONgN6jmmbj99BHz2rAdSkLHrgyY5pI1njJ1juJm\r\n1r7qgj1Z2HmMHsqzb1fP1TQJ05xnudjd5KKsny0tru1+JIhxCvbfCsUo62Yi\r\n0L47kTnxjyyYFRHwLAEPBJK5zo1Ij27DINs=\r\n=T4d7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18"},"gitHead":"4f8d242f39136722e6386d78e093620ab41fd91c","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.16.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.7","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.31.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.0.0","eslint":"^8.16.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.10","decamelize":"^5.0.1","typescript":"^4.6.4","@babel/core":"^7.18.0","@babel/node":"^7.17.10","lint-staged":"^12.4.1","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.18.0","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.26.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.17.12"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.5_1659993897852_0.7691709735523045","host":"s3://npm-registry-packages"}},"39.3.6":{"name":"eslint-plugin-jsdoc","version":"39.3.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6ba29f32368d72a51335a3dc9ccd22ad0437665d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.6.tgz","fileCount":125,"integrity":"sha512-R6dZ4t83qPdMhIOGr7g2QII2pwCjYyKP+z0tPOfO1bbAbQyKC20Y2Rd6z1te86Lq3T7uM8bNo+VD9YFpE8HU/g==","signatures":[{"sig":"MEUCIQCG6CRAnijMtRoJJKsjz8YNPzsfLMDnID1SZLiZvVvLAgIgZIhr2f9Q/ln+p39hGo/mWm+Z4jeDWwm8QUIeMr8FKeg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1542095,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi8YTmACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp41Q//U1FE8UwSlbhrdoiXM37gWc0kFnLYUS+1XXny6eqKgeWBuOH8\r\nRvr4Q4z5/YR9bt5/014LHqhKvuVUOi/JHpzVHNLvBWympKNJf1hakSr6F29G\r\nt1B0Hm+jsOoJ7wRafhRy+7eaz3Hfesst1dK5/glSEd8BQiZtBzmclLiyg0yd\r\nZpiHfi2wFtaIna06ytrN44DfgvU/DhMMms42s/vJo7yi3IUe45Xvij71FEZU\r\nVx5KpoOq2ObVf6Y5t9fpaWnAD6LxzakBrn0a9Oo/4QiHP7yu5l0rMSbc8ckH\r\n8HYZW6XfntX5SYIm+5YaA1YdBcynOkzthCiTpYQwC77Hn7FA+gHrG18uUwXj\r\nZawBiHlFFe5ZQVR4kSOL5JG/k9HSMIVOIzKgIVxBQkP/lLw+IC6aNw0EhZvE\r\neMc9X63lW7xMo2FRHfBj0yNv898aCyXPL+RiHlz/voEeHCUlEloVMhaekeUK\r\nqThY27xubgciR0phiZoBqwx0iwbD4ccw+EvUm/kV7zb099teoqxuw6cnqGUk\r\nN+8zcgs0lnUXYtgmWBCO/VCTSwlH/sYi0+JYhdloBGQNgxlVs2+xB1a/pcd2\r\nLgci7t+Vc5Ab0UfZ2KQbQfdLQZeJkcHwNH/MfGpITVQ94WSHex5VTF5UXGDj\r\nc6eTJTqqOh0/H2W4MhmNOAFlCOCfeheNnOk=\r\n=azGa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18"},"gitHead":"25d2a7f81740622614ba972037911b1a552cceed","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.16.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.7","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.31.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.0.0","eslint":"^8.16.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.17.10","decamelize":"^5.0.1","typescript":"^4.6.4","@babel/core":"^7.18.0","@babel/node":"^7.17.10","lint-staged":"^12.4.1","open-editor":"^3.0.0","@babel/register":"^7.17.7","semantic-release":"^19.0.2","@babel/preset-env":"^7.18.0","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.17.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.26.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.17.12"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.6_1659995366244_0.030421783790253842","host":"s3://npm-registry-packages"}},"39.3.12":{"name":"eslint-plugin-jsdoc","version":"39.3.12","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.12","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a5925aba9565b80c9e46d1837690c48313cb7468","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.12.tgz","fileCount":125,"integrity":"sha512-wgfDKG1nIsGKP9/3Y/J8WfBPiDMEx3N+/79szvdaZbwBlL4CvoYK/zgeg9cBgoz4MflKd5u1VHQZTTLQwYNQ2Q==","signatures":[{"sig":"MEUCICBNdPEPIdRXjKAWNZnmPkHWWsy+Kqm4gCFrJlB1+msoAiEA68bVNnkkcmsoGQ6E+A6d5NaObG+CoaZyodVsYpnYthI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1548413,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjTZb/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqMvxAAi6Zo9doo/q8aOqTrLaao1fHpbRYUBPVvWUJ0jkYV6qyGP3sG\r\ntkfZ4JKX8rQ8pPPOjqSWFWe901hx/W873G4/OVdAsjuok4fQrimx6zQraK9X\r\nKkxQLYcgs1ufV6ixFCTNdxJfXkGpha/T+MPSY4qZ1Dns6PKNJngpBxzLHRds\r\n01Pkdgr8Vjz/JLhPm0iRPNCKfD185osuXWrm4qNnai7YVAZ62HmIl+0/c4zH\r\ngeakVzm0Y/9JZWvRODU5q/9shp4xOvzwQh2nlqz4m0+IPuIxecikW5Sx7nil\r\ncnu10oHmbm0ZcsON+LXM3prpT7sJFtEb2mTV6ObEmQANo1x1Mo/Up1C0Zvgb\r\n7BlNjU2Kkmjl/mbEB2pyfPKkT9BqnyHsJU4imTss/GwYd/1m8zIpaxsivMeW\r\nJnYpKiDexmlhg6x/9dQdzm03/ewahRYL2wtrPTcKUlzysOt++sZung9/0KoK\r\njo6UJRzdtluK9MErXQWeqqRMrmj9seyXWi4N2BO5/MmL6u0Omv5Z0I8kYKJ4\r\n5+SuUdrBYtFvO+tLgFWgFdTTksXGVvTy0xCpzMrWd6oECCUucTuYW25YTKrD\r\n3Ekimazom6qdCEWn3aG4YRJEtzLaE8n25Y1BNie+7vVHuHPhTFu02VeXJep3\r\nTRxWExDJl5nCOb8Eh4US1qdCaLCNFstP99s=\r\n=rPOk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18"},"gitHead":"ca91670668f7bf86b3f22d6d6b86f853eb44a7c9","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.32.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.25.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.3","@babel/node":"^7.19.1","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.40.1","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.12_1666029311004_0.693546293802682","host":"s3://npm-registry-packages"}},"39.3.13":{"name":"eslint-plugin-jsdoc","version":"39.3.13","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.13","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a0d387e5d89d44f9bc3e7a9e01b7ea51a01f4b8a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.13.tgz","fileCount":125,"integrity":"sha512-yF16kYmoz8pcEZXxX2kdaBwWFvXrUpxuF+ZgG/0PKLKcT9lGKFi4Mn0Mk/KqJeMgUprFDCzNTjnzYGf8tdNrAA==","signatures":[{"sig":"MEUCIDbDx31K60PUrngodPMhj9g6IXCqclA1MHH8vYnKrg6zAiEAyA9Y3YWR52lSaXo29XYupfbNCEh3kN9M8kY/IcA++A4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1548818,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjTbVKACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrHiQ/+P0INXnI4l9+7XzIV9y/PYMJ3WeEM0jBE0jLZmkTuACGFNfkc\r\nngCwp2iUftAqhn4cPlkAL7Wmh6f+EIaFuzFsI3jj1c2ynq/8eofQMClTY2as\r\nMJznVDNN4Wb3MLJHXFgF7X5io/YlcJxG9uxsYpVoZ/sVLLyKwKMVCiuPL+zU\r\nvfLsr2IoWx4VxVrZQ8wxo3U4Ar+vPwnhNDCbjp7CjRvTJsQ5/58cWko2aNIy\r\npCCu8jkhi4Q6JCETYKzMz2HtvM0Vd52YNSiO20ZMFjJGWYe5w9WKZzS4BvRK\r\nKg+R98CisR+cPsNPAYywEV542srN48gM82IFwQyvDo+Pb3xs7bjmR0iOJDu+\r\nvAbDD7/Z2NSXPGa9IM9eNQU3l0ppTfCGYfWH01/9u5P7MeuN+l9cIJtiRp5k\r\nVdoYPqXCP2yTIDA7HFxvF2N4PicXO74vvdvFCE91PCevyaAr7Blc++6jFo6O\r\nWGZ+AOYtSHS4CKobRDKZo81GoFcBvff4cjcYViWOjOOs+kfkEy/wa+BL2BHQ\r\nvZ6cO96qNvSr+c25ri1/nsnyemQPRYV/r9XNe4HqqLkvuiDE62H7rbgg8SHC\r\nPsY68nQ5at+wT2au4vDq91s+gPu6pbm4Ndq1JX8DnVbVtA3LP+N5o+0eXb/0\r\nbtjEU6w2/d6EZ8cf51XtO6R10qZRwDolv9E=\r\n=3+1t\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18"},"gitHead":"07295083055350bde9cbfee02925adb57fb27a88","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.32.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.25.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.3","@babel/node":"^7.19.1","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.40.1","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.13_1666037066086_0.6723344284262949","host":"s3://npm-registry-packages"}},"39.3.14":{"name":"eslint-plugin-jsdoc","version":"39.3.14","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.14","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2591bf48907a7527a6e689fd721634364d08fe4e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.14.tgz","fileCount":125,"integrity":"sha512-kle7ot5xvzXwWzg7ElzTPM/y1IWUo0kfa5X+ZwOC/7Jw81OJaqIaNEk+2ZH+HcKkbwRUQ3RTdK9qsm4p5vbXAQ==","signatures":[{"sig":"MEUCIEAv+ppPE6DinDVRIUlBhv20+w7GbS4OfXACA2Q9bSeeAiEA3tNzkDG0F0RkScXDmN1cwbfju1ILddxzMe70B1YmWPI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1548825,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjT0JrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmorHg//ds/v2HPyTliKlj7jaERkDx61+WsqX3BcP42V0FM4C4fIKsN4\r\nPeBujFE90lKE+YtksZJfCAmCCmPuJ42jzb8WsoNsOjEhZMsBvZjUZNmRZl5m\r\nAMGyWGGDx7EaF6Jp56bAlXqKMl+u7+VJNT6F/TxlkKOPf3SVyWwsScQekvX/\r\n/0ue31ur3+eJdRxYoL5KmmDPOA5ufWWBKiin1Ni1GXE3ho3seNQOn2urufhv\r\ne0E7rJKyi2FE4KgBYOLT2y82EY1g1fgvp1Yo1ttTQkWWvFSH6+bW6sXs62kd\r\nGvCId3C4Yp1e2FxFHVOu+ZAjopyIs4o7IbWnb+SIq6tA4NeklMUb/T+64H5k\r\nSD+81Mv1FaHZ8K+zMciOuvKoSXL0uIs2IuXYQKLTdoOX7Paba6q5VD2flQSM\r\n35GJPyAv8xxcrsYWVD1dwxBYopU9BFu7Pl+YNVn7nB2X3ktUjUywtLvaC8oK\r\nrPFVLrBuGsw5JS1bgFT4amN17ypNo/MifG/xQUAzln7lTrm/O+gD+Z4yTvLk\r\ni8O9+VJQT7D9LBd7cxDFgbw9y1FQDIBQVQ5QhpIyPkfIOhGDBPyiP3frumL3\r\nrpSkfChnFSfJ3+r0K8/EyZoUWKtljU4j7dbN6HC1OpeZkk7AVKT3QLzR2Cem\r\nvb41jITF87jhU5b2vy/RuD0w//I1pdghTZM=\r\n=XAEZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"e1c688459616317deb479bc58a7b1c4a5ad0384f","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.33.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.25.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.3","@babel/node":"^7.19.1","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.40.1","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.14_1666138731362_0.7425538536843468","host":"s3://npm-registry-packages"}},"39.3.15":{"name":"eslint-plugin-jsdoc","version":"39.3.15","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.15","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"dd698e29817805dd8396bc01ad19535937467928","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.15.tgz","fileCount":125,"integrity":"sha512-48yWZ8FWSnxwS1I9UbAhLcm5n1U/CVJZNEyDAqNxsmCq939Z5hrq0qp5lzW6PVhXfmpRdMicjCu3rH4UsO0N/A==","signatures":[{"sig":"MEUCIEJ2ae88Sv5Vlx9qvyyQILss6qwhvo2HxBhiHgy1ekiAAiEAvSDpmizlMZf2PGvRsbw5gMNEeTW8snJcFxAnkGrz0bs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1560718,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVBQGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqpaA/8DqAbYZl5x7j7gQt5qS5xI6HMoyK9XrXaJpXzJAN2RT1B10Z8\r\nIKVmGMUDW5R5JrG8cCyI54BjBpYQyE8HrPpzY2dViY/H+atoal7NcpP9TYe0\r\nDkprB2M+0+Y9EwtTY9F4SAq4RuG8iTXxuVBQqoyeA9fKloSilQ/KTrStcDMy\r\nXeMgw/Ow5hEa/wnLNV08M1sa761ojgF+bgbUu5d/4Ig+KwDZFZQaocifB3gN\r\nJJppVJPIYK/hMmF758y8bUAxWGXvK6WOo/D9ZltaSzIlXeSrCplkAjq0z/KU\r\nlvPzyvfIfk69AgYhavU1fZiDYfJrE60V4qS6mCxiufOUyXFRfrp2pKAlczml\r\nGPEVQKZfaWrZeMbZkwbVs/Twhpsvv2hYNbZDrlbpjjSwGJ8LwTnrJafcHJUK\r\nOp/NTiAZpu0x6BWpvvZZDncurojrf9Lx3+stvkbCNXgWhabuox9dsxzPl53h\r\nlAdWxBBBIFXwsb+ulDxDBB/ADr2WKuJqp123qDA5/8HRmkFbgkzsh9aagq3T\r\nFIZUVP5yeUSfM8NJljTWS1GFpadM6U3tn1/LvlQWCbxzyjQr6JnxNYcPl3aK\r\nttv006RPStaT85BAxdIviGETdmBjqFInQMeBlUYxZsKYOYATmK91rD2J5hCs\r\nA3p39vWw9E/NJCGjhHYh/pBP9qZE8/TypOE=\r\n=okXO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"bdd6af25d877d1e714458e7ad9b6b2d284ebc83a","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.33.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.26.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.6","@babel/node":"^7.19.1","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.40.1","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.15_1666454533963_0.47802254848091597","host":"s3://npm-registry-packages"}},"39.3.16":{"name":"eslint-plugin-jsdoc","version":"39.3.16","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.16","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7de08c23ed93b104aeb083d15132b17e8888005e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.16.tgz","fileCount":125,"integrity":"sha512-QCroY3vpEQ3/0eCHmOv7YgwvLvolb/z7fqxE1p6/4cj3iD/zWInSDOH8ooOWyqRVzbMdIbpRcxTLK5OMaguikw==","signatures":[{"sig":"MEUCIQDDHynvrCIgyt+tlAzfJUN1Oa3acbby5yWmqQx95iE/+AIgfVGbnVnEybdIcV10epkg/t7QDc85q3kUj3rSK37hQMs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1561010,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVCVQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrBHQ/+IDgs3hrOlcSxT7YWT3JQ9KICA1ruql+m9nCOMnhnIMdMNXj4\r\n1h9cFMAXAsNlrmLE5CGL89YIrLFqKvMKgUbMlCCBzpBNZWF55yHqGZ3okLcj\r\nNTZzsbGKkaXoC2rB1lA9augL339/Hmtj41iHZt2CyGhNlznPOjA9nQuzXcUQ\r\nMTc6SviXt1EAGtKhdyq5LlNa/TyA3vtxu2GoGJk9eGjPr2IuANqXY4qrwiUJ\r\nejhEFmvgUD6qyi1yxJuIeh+D1JSKj2v+BhXcSjllGr+biPbJikF7WZykNS7Y\r\ncYnuSM+F5pDFRJl00BQXI404AA2OZVtLtj9QR11qA81k8vK8Fpdeh6yVbIBj\r\nm1Hu1QvBaQ0JeI7AeEdIU61uJaMm85btONz5hhihfZD3a4h7dslIeE7odJkZ\r\nwO+ubULT4CB47WAiyBTQexZ3IcB3LIiBHFJIP+wpm/1fRU737HqnXKABsVyE\r\nhtDBubHra3AYrCgTeEAsjPw6AUhDrxEsGgKjPDJhkvhITrAGLER1ymvVjjy6\r\nUbaIZteFqitrkTV3tiK5oUNAgXiTSJ6kLSwj/xuomjEKHSeNFp6l5gnOA+Jb\r\nY1BHW3hEj956tXnm6VpxxV7idqceWFagJUmGAJBd4KGreIwMGyo/Q3h8bCVc\r\nVJzNV/of5dP58Mw8O1VaELv/xQ8t1u8FNUo=\r\n=Ak7C\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"5d20bdf090d82a0aab0d9fc0a24a897c287dd6d2","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.33.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.26.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.6","@babel/node":"^7.19.1","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.40.1","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.16_1666458960039_0.432458898657192","host":"s3://npm-registry-packages"}},"39.3.17":{"name":"eslint-plugin-jsdoc","version":"39.3.17","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.17","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"bccad035f25f6bbee4774edab49e4c1e5c9f6076","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.17.tgz","fileCount":125,"integrity":"sha512-5ms3QMUn+n2S8xqkUHjMnF4nV825qlUTkfEaLf6YFJIdfR/BVigYq7gjiu27uqDh0KMP5wcPtwfFKs0KJaBYKA==","signatures":[{"sig":"MEQCIBl3MbxzHHIdds44FnXKWlqM5nMUSoLJmgh84zwUqvMrAiAxSAO1dhvO3e7iuKOKQDolbI1w2v1gB2XH6KnAtMJ9pQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1561883,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVC2qACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrTaQ/9Fsr+U6jE0QouqkXFTfn4lIFQS0t/6CoZVgOZqz2+1OLJa6i9\r\nuavvj/bAwLzjjqswlffAySLI6sU2So3Ak/VLui2Sl3QPhwP/96nG1Rx5ZmFS\r\nuKcFHiTFOOMuZLOSVNCjRvi/8sAJiVK53JWFosmvmt7h1sigtNZQqgcodB0a\r\nvR0crVa1+L39NEad+GOAIzI9AX5T2AdePoZbIX/Z6KHZOkQ1iva1U4VmFW1U\r\nlSOGzZHNb52ZLs0GG3oI7pprs6CkftqiIas94fXoQ7R/ahmLRE/mePoeevCG\r\nRG08fJj7ddcBzEQ0T4UV8+fc9m6owWM5KeljNF+oCt5TUqiD/YHfpyKR3phS\r\nRl1M+IzvE5JJf2iH9FuRYuwLXlzRr2bF48XVEoU7LxVLtrCQ7tifzgvj8vXc\r\ne+289QyWj/dyZc8qyQPDCg7dKBe/Wt/VQxmDB72pxiKH462HsBtw4tpyNuWm\r\nmWWZPIEE502vLmSjFopD4yenu6EOz7u4jl9FVRC5oOaifeC9vTVwJPrXvW3M\r\nyPqC6lqiE9POt1KV3jHc5ZJE0zJxBwLv7rTKMR5h009cJ9M0OW17q3oB9GD3\r\n/vu8owVuD240Is33QteitBZrba/H5BAXMDCtsCIu2i1m0dg/DjHpAEH2XMfe\r\nCEXrxEyeRlm4XMj84YN6YWVXvAGlt3uAQjc=\r\n=qD0G\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"87c1c2a4414e6badd8b114f3b13f0335163a222f","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.33.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.26.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.6","@babel/node":"^7.19.1","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.40.1","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.17_1666461097939_0.7625893071250436","host":"s3://npm-registry-packages"}},"39.3.18":{"name":"eslint-plugin-jsdoc","version":"39.3.18","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.18","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"440e4e566fd156c77f183f00f9b355d657b1d254","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.18.tgz","fileCount":125,"integrity":"sha512-LR1eQAWv5T/GZROXnP/h/JGkO115QqVNDufVU09srwfME8ZIFIVakEAYZ0L4Cl1ibcN7kGR4PH0OPuVax+nkFw==","signatures":[{"sig":"MEQCIFDjQPCeQ39aPbkhUSGdGHvwscNXyRilTV8gkASKlR+gAiB5qCIQ8Xs5E4klgA+3dWSz2bNzr/LWZePYGLk1SM4hrw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1563019,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVF3sACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmru9A//YnILE7m0lp/FB3Kq5ITDz5J8ENzLa+jcC4F6+RN3jmTws/w8\r\nFxL5bTfyIAp2G3IKQkJHJvuBqLuBH/0IHK9Yc/QR5CI0uYj/9paHQ0IBR7hm\r\nKGLBxv1DM7e0IrqvqgbTulP/8Q+cQGbb6MScrgZmOsYhHkM34vxVrZiVFWMn\r\nF6LNTzq6Fl+NEor0uV3gywjcPQXh0BcbcnARlii0SHWBt9d1A+56GjPpCld5\r\nQkaxWy0R+RBk8+hDsvaN+DS9v3zI4xMyCCo3vrtMEhdMuNKVRpfhNOz3GsQl\r\n8pxxSC+gIcr5j4h1Akeo3uDUcGpLC2Dm0Tr3BtfNXdSmf+mRD6ysHwvB0rAR\r\ntB5i/warVchMAdqN0uQua9hkoRGgnYxVmNLDZQPZxMCS7/fuulqO9oG46S/L\r\ns+0a3MZ7fMOt1884ioTeoQvwNfX2cYPpX6hZoDWvpoN7+q4+fCS/kAxOEQk5\r\nscBnxB82zaVDORykkVb2vIuOI8tk0Ralz40Y+Kc3NWO3V+C4nVMmDBIkbzHU\r\nnKR7JJBmRSyGC1SsXFkpTF2xJAEbmDtkcYiZd5BlLeryZKWMYZCJe1AmcI6h\r\nBNL+IA/yk9+tYngV/HFIbAvlaXfPF4B0w5yZYnt99Z9d+8jz010V9/FzPmeO\r\n/spBUagMroXfO71VTRAtxZigeVrCw882Jeo=\r\n=UoJ4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"dc1f875b125224d4a9eda5efd2a3591b1884f980","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.33.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.26.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.6","@babel/node":"^7.19.1","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.40.1","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.18_1666473452527_0.060916929880632464","host":"s3://npm-registry-packages"}},"39.3.19":{"name":"eslint-plugin-jsdoc","version":"39.3.19","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.19","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9d31ebda244d4b73e20cb296b7096963fe5d8beb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.19.tgz","fileCount":125,"integrity":"sha512-TPa4uyD/m7Wv6DT6dOmG/QZf14fWoqL3BABdb7/QkFFb3wtnlsErAr7u6urOE/48vv1oc1+IY7GNdgtLORORTg==","signatures":[{"sig":"MEYCIQCOV1lAyQw7oE/IvS/NPpTJeW/e6KtZa0dgAXccdYgTrQIhAMfd5snAEAVWTuSrhivBI+r//yNxnI3bTUcqPjcyCnux","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1563468,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVGNiACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr8GQ/7BF3lZhkeGS9PuyAQt05QQOJ4ZJOdOb8yxsJzVYlHV6tgjCov\r\nTosO+GotXUe0ukReKZUFWGlJOKzc5+nX2IJiN1F4oE5pGq1wKMlVrOrdm9SO\r\nb5Tb2ph+/pX0fLYxBadc74jf7Xuj5RNiO/IcY3AxaiINeHstYdR54slNhq/C\r\nlSiywWLj+4C7RVrgiDKYsGrL6Er0KjudxADKkcloj7j39Yqh9VGcdf4QVx95\r\njlqWTUxgUnQkG07SbN6lz1S8RoUvo/QJmtP3djAdFFHLha69uESlya2BqcbZ\r\nEPpIEi1+dPRqoiADynadOp3L3Nm7FFnTuQ/T+yUB1+ZqPemM4ObW//L2aDmj\r\n1fkypUSNjXsaWMU/kBiFM42Zs6TKaiRovnnAH7fF8yLlm1M4i2vyN5aYpCxp\r\nu9/3/seR17iFAM75xkiJ80EgGERLdeMCOdcJ8Jle1J9manI/sqI1/6EnwT0m\r\nQD0aAvQ4ERiFRgDlIX1iM2IMRuV4IWM+JvoZNh0lMWYE6HJqGDWSSVsnttvT\r\nqRjatAfW1qoO3SmFynFTMO4n0AO7mu+MygRxU3HMiZC0IOPOr4LJYF/8+oZ1\r\nDYKdjol8wGi2y2Cjiy/rCG5j3F2urpKIwsc0zQaT8ez2hk3Gi5ShDCyHd/0O\r\nGlJBJxypwl5ySOna31AxHC82eI+nAYEJCtE=\r\n=ovNN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"c1f21f8234d37316d9abda17f18ab6010e7b7112","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.33.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.26.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.6","@babel/node":"^7.19.1","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.40.1","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.19_1666474849891_0.025386754067213912","host":"s3://npm-registry-packages"}},"39.3.20":{"name":"eslint-plugin-jsdoc","version":"39.3.20","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.20","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"26330921e8b5075307be4794a9e1a607c13a438d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.20.tgz","fileCount":125,"integrity":"sha512-A9pAm4lQeDKyzu6wuMUZS+FQceu6S2G18o9Mld0a48NAeLaLPg9TpoXM2Xv85LZ3AnKUtx+jR9SxXJLgCQiifQ==","signatures":[{"sig":"MEUCIQCVUFf74SWNrO0Yx2cpvqXynLsdrK0qPXM3limvL13RXQIgUuohu5bSXmWJQeNFtwquDcFAXUCzmaBJBxcNKyQ+lxE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1564571,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVJzRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmppRg//TmYZqOV/9znCfCmMOml5Z1zRjla86Q0QLOdPCMsWz+3FJCMc\r\nXIyeZRImCUl/p1AWUnniZxzfzpDXuasr+BUUbzbpykaiw7tG5MrdG4DJ1/ly\r\nCowzObwaleiEmZpc7fb6AJlFCBO1DJaoWCdppRdJWRwff3O4OxSbzrrJ3iUr\r\nP42Bg6ylsGcYTFwhO3ZX4bqz2tWZyYixqrrMn5YLkuPk0U3aNwLLz/3FW7rI\r\nH956k9PRWoGaS80kpZ7QeJVp+M1UhHT0RXK9k1auZY/yGeBgY+fFHb3QIRS/\r\nMB/hFJMlEAbaJUCcJc/q0p6NSwHdrXid2EkgaWFk16WAYylYbPWf8tVc3Yma\r\nb8A1N1DQ6Tn/jtGrH+ye7vIwJoMw87hiuV5VNzGWrxivOq4RF/bHtPxU1sjy\r\njuliyvh84DyCKnLF6YS3jEQoktM+IkD4wmk1thMq7Y3yC4feTL8tyeVum1ix\r\nxHIYjhvjCTnXwSULiPjweO8C5SINknm97GoNDykO3biq1cTlQOqMaWQbsdSj\r\nKOlBKFK7LLwqkgwP94TKx9aocQF4q6E+DWoAJtXTrf5SJQwhEf2Ryt+c9ep7\r\n5dyB9EREQYUoLjed4NB7CP6c5Sic++z7LYNLksbNbNOwJyb64gOtFYau/IUy\r\nv87LX6W9S4yanAmq3VtPX2mkU4dTGoM7wl8=\r\n=PcdS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"4fabdd60a8b12487c3db295c2f71b426f0ae83f4","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.33.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.26.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.6","@babel/node":"^7.19.1","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.40.1","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.20_1666489553594_0.18815618503876919","host":"s3://npm-registry-packages"}},"39.3.21":{"name":"eslint-plugin-jsdoc","version":"39.3.21","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.21","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"3dc9ccbee175d8ab29be209baae5c27e718069e3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.21.tgz","fileCount":125,"integrity":"sha512-y10zOn+lxYPZCy3WyQeD1bp25Wtz40VcZ3tSlLJs4iWM8r9l1qh6cAe9OjXD25CxMLnfbqLst3UoEvI5o7E5nA==","signatures":[{"sig":"MEUCIFXfAFZo/LIpZXQIXizJS3GGZOZteQ2AveVcxZXoHDkpAiEAs2yu0DGVqoUeKd1Kw8VZcl5va2DoxdLCcVn/STxCaBc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1564858,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVUKVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqfKQ//UI+TsA5rxJ8xWVmmXZ5cMwYVzyDJ4XqNiQArO5B6ckAcVlwB\r\nYOrwPx3Gh7Q3/onDLz49dnAVkV2kpgJnFtHoPUwp8IVzjnPDm09rtcke3d60\r\nq3FIRrWkVSKDJCm4ztrASf9DmyCWCPzx06jHGsD+IepHNG8edFAJeU2DDjZb\r\nzVCXIueaXQPJJYU9O3komWgJdX1EFTAOPjLdBSJI0qzr/XdmXh3Ggb1tT2Ds\r\nHXZ70nd1TpxW6yH4Row+hGbdto350diiUd9MeyjaHodtPnWVtBp7jFjUa8h+\r\n5tf/R0QEjzpJtKWxFNvjc4ZunCFDAgq+sSTjRfGtPebkRwmmFQ9Y6wvFnZul\r\nLi4mJWSfjMYM9GEyM+JaSlag60jyPcR1huPYPXkRaTfL3JekDoE8zGxbcb6a\r\nUM5pDDb561YkExQZYuCn7CfyLYRuobVUiPpm3B85JPbBNfuPu5wKimkv21Oo\r\nQVnu+FzmlMs38sUtlEWGVebKttJ22p/Qa+zPV6+5BkTvHFBG89PeN1Q564bs\r\nGaMC2gsrbkCF4RJEaPyNegPLLIu7snk0XMHvIjD23Z4VyXXzLhn+redrFSoO\r\nkNAd6YwQEiJsuYdQPQaqldMjDJ+S3M3v0QkYJMagvDHfhUk9WuLCBVTCkpKm\r\nLwPKRgeryLHXzyo1ep6Bu/9TbyF6KtgfpCU=\r\n=4D1+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"867edc37b2d2d705df3c97cbdb2ff77c250c528c","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.33.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.26.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.6","@babel/node":"^7.19.1","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.40.1","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.21_1666531989430_0.5361012581091946","host":"s3://npm-registry-packages"}},"39.3.22":{"name":"eslint-plugin-jsdoc","version":"39.3.22","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.22","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"500d7ea4f5c924299921cc743726954eb96bc86b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.22.tgz","fileCount":125,"integrity":"sha512-3LqaKwhVybHVFV/l1krF1NNKUALX/y4yD8lw2oInb1jIE2Dx6Bk0Z7YPi1V6eGMnYV4+SOA9qCHsjP9JjiinNQ==","signatures":[{"sig":"MEUCIBl3YZyl1JIw2nGahGjMK7xGxYHwF/jvw4Nf3wRuznj1AiEA+sev91Y9DPQ2zFdLm4OtU7k6oIBmD4epHwjPYr7+zXA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1566846,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVWWuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpfpBAAmtDG9pO5hOPKzV5kADiW5KRYu4XbwMwfr7nC3iiVqERgvuDV\r\ntFlMl80nIZBkGg/Iiv5CFlvLiQXEJLLUX9Gl7rb4s+ff8Ui1CSdjmnYiR/qt\r\n4K3IDUEmIJMo0NjueyIdCEo11eW4mBdFBhNEU8rC1U+91NudDRMTPxTZXKYe\r\n8ROIPI/h0kl43iiAKpXKSftOcHa/WDtEVH03USjVv73sc/Gk9uABwloZbqxL\r\n/HkYHAs79JnVtIph52KEbSLYyry1P39y2g+q7VsLEBbnduPWj9Jd7AqP+U6j\r\nQsKNI1lv8aF6EqWBIlSVw285eUMVmNttHjyBKrlctiEe/ar8uJ28lxc9/bmV\r\n2siDOv0KUx5vAOVgizsyFI9kBmEob7vtZyqbYl+Q0NWJRPOhxF4oCSv7Re0+\r\nAFIYw9LgtNedJK53EpFUhsC37Rp2hyVejwE9pYz1Dvj4bGw+QdkXMZ9jTJLb\r\nk6XjbIaR5y0BTmolhbKxijmiX/w4C8M6VNBbJ2peJmddi/cTfB7Ru5wzY0Qv\r\nNJB+vvB9phjBRlxEdVXq0eyR/V2AnEjojkVkIWNrTl7uM1JYadKEckId1oAV\r\nybW+1SxnnuG062yPoCIwoSwhWpEEY6ch3hSHpXMTyicaNPR9IQrKW6QQMISd\r\nsggm0V30aHw0PqIisy48aJUFNLRhbxotO9A=\r\n=0OCZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"e247d6777fff34e73193db8ccc61beb9de988002","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.33.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.26.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.6","@babel/node":"^7.19.1","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.40.1","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.22_1666540973746_0.26535376838889113","host":"s3://npm-registry-packages"}},"39.3.23":{"name":"eslint-plugin-jsdoc","version":"39.3.23","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.23","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"dc2598d464e2b219c50b5d44bcbfd66e0be3ade8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.23.tgz","fileCount":125,"integrity":"sha512-ZwutuEmsdz8sj9fCXz4r/4x3uZ4qrB6+ca3rIyH3HHEEj5t6xgOSBWIj8IkxZkBUKvoadWHM6iCPzkmXgPHpsA==","signatures":[{"sig":"MEUCIQCi4BOKKG+jxCW2nuU6NGgxihk3Xwrl2aILmb2eD2qrEAIgTPMPvG7vioNbQo+CLXO42YQuya3lIomX8y2HOkuTcVE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1568363,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVaqkACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoEow//fNUCuwSR+/3Uzf6RjCGsCBTd9CYgqUKIynKePQtMHuFkeZjK\r\nIwDivU9p1hp8qu7ZFyGdkReaHig1pEMIMoP9EivSfk3qN2ZTPNPvGDPjMjLM\r\nRswFyuGNLdEvlc155KhTQkLMrreEzZ/1QV0D4VRMPh//6tNW5jeFIeme+yfm\r\n5hyqvDq4/2loFGVzFfPLnREihR7MflGqUdPVZbdShBaguRJX1RtfphK2jVVL\r\nf+4SPCgP18z5Rsa22nrrjHf7XOSV9ES3KNPuAXw46423dqU5UQj/LDaqGcwE\r\nBXWsV9xwxrRUaNzIzSTyKNJomBGjn/rh8qPeHISWs05QZIIGwH0TraQsDPXd\r\n9q9t4cQkUSx70+BIOD7uMx/ZpwEwvzlq7OSIfyPARltGn26WgsFbU8kzVxzG\r\nR59z9oAw2TRPo9VdBHzUTdn55plm06z1MOZhycI2fUC2aG+O8hz4lkr48P+B\r\n9eV0AoeoXdg6MrS8zGNYaPy+jFctjKDzuXmERSzIQZ8+dD2aJ2XE1kkk/R8k\r\nBXZI0vrmKcQEGq3mzKcHpMfLo3KlvyODMWToIl1ldM4Gq+p/vPKMqF5jLZrx\r\nKe78sJNlj+iMqFyp+nofUSXibrTB9CvS40MCs2Bl5MwwcNLqO8WSVthBfBVg\r\n/dNnX7cmq4itwLbqRXS8stAbWtFC3U2VbdM=\r\n=tVis\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"12da503cbad8e8caeca64ffb769cb474cb7c6a00","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.33.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.26.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.6","@babel/node":"^7.19.1","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.40.1","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.23_1666558627950_0.7503246368477954","host":"s3://npm-registry-packages"}},"39.3.24":{"name":"eslint-plugin-jsdoc","version":"39.3.24","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.24","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"43a4f81d2fddba4ec848dbed20b1c98d0ffab566","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.24.tgz","fileCount":125,"integrity":"sha512-ePTnAvTKc/Ux97PgffhsgJcQVJimaNxb5yA4nwhHg+gZ21rjFQmOyowDDYe2u/L9ClwRGmwLq7/K422bTh+2Zg==","signatures":[{"sig":"MEYCIQC/pJaPEAtFD3cxBdArqtM8T3rUjZDhul3eV4wuL/7FjQIhALfM0rYg5BEBO6qaCkfk4hZQQMHIEgFL8jF1U0CANUi1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1570339,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVpafACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpGfQ/9G4wXk9qHNJlmtTtWf5xfRorn6xDay0rgp7InH4z4UjwnPpPe\r\nMUY8rTXYoxgLvbRhnURmulJwLmiYG/AXSYh4nssuPEgBAUoEjbLN28e3zQLm\r\nGQSgSgC+4B7IethmBCK/n9eqGbMjxj7uMX4MthJ4LdB0pc0x9h9Y5xNwhYrz\r\nJokCOWLeC3ZPeb6XG5sd0bsa+iLxDOFd/9uIYr7cBWr0GlIYqOLkTj4O9zn9\r\nuany3A2BXEB7q9tkXoLBMLhN14PFXuY8J7tQw7JI86guUGOQtn/vX0D3uaIR\r\nHjvkUsSyRYHYQ05uzYIgz5rFB1A/iLNR79qqgvrcJPdC4YwnrJ5LLlOzatzI\r\n4N66rodDAbFtUHNZJRUk8ac2SvoYRrd69z8aTSv1WDk+iHY2f+M86jHSTKn+\r\nxOm3/ZL7rPAQqKvrsrwjtPO5kMjFpZ+u6IDdomfdvjEnVorE76CxMlCWN4xq\r\n3lnLiJYhRrVEzGFbzzryygQgXYDe6BaD/pHxJYQu6jT2pYe73mPXZmygNtks\r\ngA0BS89sqlDqbmiKYCoUTzeXbwvEl3kc3GYWgz1itohn3t9YkptAlp/nLQwJ\r\nCb4nRkuvK3Gh7Bvx4ZNQYobIACC5dEIBDxcB4mzXTooMuQYOwR6IUQrxD/xK\r\nYDjH0H1kWCf1EVBHdIzRQ7Wck7zY7+JyC7c=\r\n=edlf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"cfbdf8b31fb614c04f051c624e3337c5b77ab213","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.33.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.26.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.6","@babel/node":"^7.19.1","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.40.1","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.24_1666619039096_0.764926742523107","host":"s3://npm-registry-packages"}},"39.3.25":{"name":"eslint-plugin-jsdoc","version":"39.3.25","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.3.25","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a9527ca743c907c5d78bd947a2c2eb8260c2a9cf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.3.25.tgz","fileCount":125,"integrity":"sha512-7JiFOOaipz7Z7lNQ9sMJ6cdvclmVUwNYtFWGS3a0k0uEFcdZPPD64WOfENuyNHpl86C0AKIEPgOpZby5kd+pew==","signatures":[{"sig":"MEQCIEEDdRPhP5Urxfrv4fHugAeyqYxYE5ZHk3dKILAS6TsYAiBwhKc5qJlfxJdJBPrYbYflr8sPUYvWIF8XAh5AXF+VOA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1570339,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjWB7bACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqzLxAAhcyLd7r2MwM7jsgd2HbyKwhWef+uJ4rS77mIDNYlYJQtOZlU\r\nGK53ZRA6i/zHXYs3BU+TelQieuitQa+0keKXsb4zau39KfFofxpXlyIl7tL2\r\n6nKCOneuJapyK5jYtGic6MBcDCiQ15OV/BYjMR1swwsXCZ28lWnxAdqZcxRt\r\nyvOihbEldJrLl88MXrKF6182bqO5MoQ8T9vjzmeKZo0x1KgJJYmZQecS6o4g\r\njqGerUFCBY+PVV3Va83j7NoT9/vQ3VhI8wHfnJ8rWbcvit0Cnd2/vgaRNcQC\r\n7ImUFCqfcvMD0TXT7mYIEHYaM0zOtpl1szMMQ1Mr/+0xiskF9b2Mkamn/bHz\r\nbFHHx5Rbg0vDYQzpLAA6EBTPuKYQQtRMeqAWyL9D43u61UhDVIXh5rB5OZ2R\r\nyl2vq01Q3VN9OOQgofzkeLk70nTvRUxoySshBOvmn4SmPKVfnBan8q8ArMUO\r\nGV1GnqUg6Oi1iHHsTKRbtj062lkJ5/pNBsz4fFUpkWbyC+u3qzHhQgMnURiu\r\nWknUkOEsqT9DvkT4qg4ikdxe2WzfgKjQHOAYb5eEnNce9jr8drEblk1T6I3y\r\nR+7/tuO38D/MgAh++PZgr+VkPNSqYWizd6TqPkOZBNaRRg2KWCX7A8eJrPXj\r\nCJ7ViKN3I0zdlJSCiiHdZUQh1qpxa/TG1HA=\r\n=tEcq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"94f784f3f2aded94eb2ff991ccf45b4337a945b7","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.33.4","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.26.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.6","@babel/node":"^7.19.1","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.41.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.3.25_1666719451545_0.30616781168343254","host":"s3://npm-registry-packages"}},"39.4.0":{"name":"eslint-plugin-jsdoc","version":"39.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6b281043186c20f61b99c1289ac362002720564d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.4.0.tgz","fileCount":125,"integrity":"sha512-2FXAmh8lpO22aqZgu6NLB6berVnYgwbZx95BmjIIQjbRNwLIAwY0dtvSJDUZVW5nflv58c1gSWQjIJ8yLZ/+fw==","signatures":[{"sig":"MEYCIQDP0hAHqVzRqhxGgcYWighRckuqA14cwXoLLQsMAnDXuwIhAIUW3llCFps3v9tDcE0YDehk6s8ARFgArSx1JCR4pkuR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1582626,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjXbyhACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr8Cg//QxEWrdabN0FoLrW3ZSRF9VlBYvRBzTwYyrbm9xHt/7HYLwx7\r\nhfGoSMHnN3jYDfrfsWkDsUrOIkMS0AV6dtQmw1rS3vvuN/4uIwd4gU2MCaX4\r\nqe3eQdU/HPe2tJvqYyZ8sefxqZ+yIW7GPUViTXJOKEx3F4QHSOEer9i5J6Tn\r\nH1/ZIvLof0IqtgE9TYtApeBe1NS57AoLHRBtx46L5Iden/1Ei5eQBXznhqv7\r\nQuEvTC45W/5jLLT6O6WTvBEXOg5h3FfEr+1ExMxiqMDwB7gqKOj48EtUck6U\r\n56wwT4TGn3imm4OFVU+bgBoIg8mArhst2KxwHY+EEi/sjvNEV15dQk4aAaO0\r\no4SzBRC95lMHQgXX0K9dEDkZVhyZ381mWEiIvRrSLvIQVIWg7A9DlSyce6Ig\r\nPMzQAC/9mwP1Q2mM4QuqCD8/TS3Hs4MFQy94cYCOKK48qZdvag9Ef9BovrI6\r\ngmCTv2fppnMujUaD7b2UpOqBQhemz25qoysTSyO9EYOO8LO+dRnCRgxafOPu\r\ntL4KCErzBaWxVm40jcFL8hWmHndLNz+rBZdfeBAraK+FgDXU5CB+nOy9erZ7\r\nlqJ2hxN8CjTR4AYfqTYZLh2bOgBUxi6aYMafVml959bbQ9OYfx3Ek4qpS47o\r\neRkVVDlIlA2bbk6vgsgqhKWqz3ARuk4QVEA=\r\n=C23k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"da1c85f31e0416a8237b063918daa5b51ee2d178","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.33.4","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.26.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.6","@babel/node":"^7.19.1","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.41.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.4.0_1667087520931_0.8638105891856414","host":"s3://npm-registry-packages"}},"39.5.0":{"name":"eslint-plugin-jsdoc","version":"39.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7edf4f2aae265fcaae7ab5f1e6053f20139fe614","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.5.0.tgz","fileCount":127,"integrity":"sha512-Sb9czNN+Ufr1QakhRoegePNT8eSz0FT07vFq6ZmUEF+Pl7yFlo5Xl0q9BRwVfUTtOIwhBvqDGrjpQ6FbhsJ1rQ==","signatures":[{"sig":"MEYCIQDlHz9tbNssgQXnuZYVkNraTZKEbS5eQWMZKy/mc7dJ2wIhAIQQ3kYbXjYGoNF5L1CHbarjDMxARaA9DVGPTTr/bMdK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1600721,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjYa9xACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrHUg//U/8kEFTwOH/0tOd8/8y7cLv4VCO85NyBDlnrR7xbRvll3IF5\r\nX3SX7K/jYzfDmhuSUP0Gd1sK+p2yoEKjS37hNoJxschMAva+g/KSkGBRwatu\r\nJrJPRqUELyIpRRO0JqiOrWWXXwJ6WCdVO5pK7cTEbzn/oJc19kaI+ODN6FCJ\r\nMd75Z3ksveCQPn3VeeugT6g/p0JkokuF1JyYN0dmlYXnAz4UTnFbfuBPPrvT\r\nBINggUR3qaR7B2211Ow7bw/oEGIUlPxiTG6yi6O5WNq6whJmf3n/RGH7YhBV\r\ntJeKTQOWo/1sT9qCxdgmk0xxqhx9FaYzt0zbC+DettdqMxQVMOZkf6zFHAhl\r\n8Q6JOItnhoguC1WJbqsUPGsJsWK6M3tVy52NlxYXZFWj6uLAOUqOGS8OLJ6U\r\nHDO7IG83TsjPVyROOtnqP0fnj2yGxAqttFAwz7jD1K2cSj1OlNdMMWSuFu93\r\nOPGpqkzuSBm1PwWwv4c00YMSooOHtD5F+zzOXHhvmLYhLNPlQa/Hlvtmh+qz\r\naFyQw0bFBh/tb1idVI4b0GZh85T+cHv+9F3MaaWyh+JqdnIS8b39bJ05TRxT\r\n8TZ94WZNlqpVsR4Gd93PvHTvX0qH+g2Hno6hLc4kJp4xyf/3GSrZU0xeO1d4\r\nO8AibKCl821UYDZ7o82UWcoN3t1YoURVeB4=\r\n=bYg6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"5fcb62ef133f29de69a3c8c659fcb8a26b892ebf","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.33.4","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.26.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.6","@babel/node":"^7.20.0","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.42.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.5.0_1667346289279_0.5356771063895562","host":"s3://npm-registry-packages"}},"39.5.1":{"name":"eslint-plugin-jsdoc","version":"39.5.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.5.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c4ef927bed93e37b682cc8262a3827845d71d757","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.5.1.tgz","fileCount":127,"integrity":"sha512-Wq3y+PmMsDbwPQs/kcPiDBPyP/Gfp31VisRV6CpVRrYGcThjxTi/iVExr7/95fzAFaSplp+XoxHs7+jL2ySvBQ==","signatures":[{"sig":"MEYCIQD+fMndtPOg2u5/piyM4UTUADdHZxklUnYkv5M+UIBxRQIhANJx3hk7i7Al/pfjCM2khzepU2t3yXc+kGFiNTDOWIYE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1601233,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjYo8hACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoXiw//bhS5BJGxqd1oOKZ2+LBMRcgO6ueFVxFHMDcyDgD2mAq5H98b\r\n3Fu6Grt+vc0TCV7SItgfEzOzQ6dnHPy4Gxl6r6D4fXcAaDRpiwGrUnOcTjFH\r\ngFJ6SorD9HSNJXiQ299koo7w/9xsTc+2ImEdV3+nbMNMruT2TWr6Uu8LRRLC\r\nPBFoTUdwTzbJ5TtcXvrgxNU4u1hlCXXJmAhDEmNg0mtYDIy8tmD0aJ6WOR9n\r\n4rCvAH7z/s35sZaSF0mAUv9CUitKTVtETWvzIjaGF2hnUS556G5DSdCvU/Vu\r\ndCxc6DUWAJ18bemuEmSDHu2cngjNIeKtntZEPtToy+8R8qFqH6Ib3OgGpTpq\r\nuoCJo8/a4KcyaRAZ+wF9XHToPYTPZtLvPlriu8TUTma2eT5qKEEodmQIzko/\r\nWYxyKRBhqIO7EkwlNCL18iyzOIahSRXpVzs0FSwGPGaVtPcudqlmcgqr6OBR\r\nQdTg0GsDz17wiH52k9RBTKqNbaOvlLonV8W1mGONADCQbfvyzcMlAcI90mVL\r\n77JiTT4+e+06OHwbIRt3lVM0gtOe7T/NIoc8ekUk5TvIQFGtWCfu6lxTg8Dt\r\noFbiUUNYaMRUhrwypYvtoDP8pRMu/cQqgeIn3UbxRyvopxGFFmuplgBezgrj\r\n8oWY5TlgKSTw5YUKcs4N2kBZM6ozA0x+e+c=\r\n=+m61\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"691a414d1518e06c5f5869a9f6849b002865c9de","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.33.4","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.26.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.6","@babel/node":"^7.20.0","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.42.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.5.1_1667403553605_0.8991044562603348","host":"s3://npm-registry-packages"}},"39.6.0":{"name":"eslint-plugin-jsdoc","version":"39.6.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.6.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"8e32cfbbfe1c0905c3a575e494ea5513ef8844e6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.6.0.tgz","fileCount":127,"integrity":"sha512-1BE3adc7ALF8HUzC/GW0v/6g0UkvUsA8RlsD7jamUgKj3TBOJVz1+w7DY0Ker5Kve69XLZDTJ+Z6/iLwXvST/A==","signatures":[{"sig":"MEQCIGA3FIQO35ugSdq96QfposV06DEMz1LewJCwQUSI4dvcAiApilC+OrzwUa3dmdpNiAfTzq2upyPZKyqugKup7NqO6g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1602717,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjYpf1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrGoA/+Ma+oyEYBUiFJ6DElefzmdU9IFTm6SbPgFSbWme82r3x48+73\r\nkn1C0+ohvdvn0d7+miJlEXET8WALgtWgsfZPVfZgRS5LmDlk5KwnQfbS5Rwb\r\nnjGUIoFR/gLs9GbO9tKsUe6P1wLsSCjQVAFjRFJIPOi8GI8fgzQLUIwpGPAu\r\nge64ZUIRA6vGu30SmPv328lA9Sd/NPTX5V42nbM0d21E7HdmyfrdJ2k71cqK\r\nd3LZPjUyVzU3aS5UxaQA/XAb3k5vqRxvgEWcsZu/2wJxjKkMkDi6ey2/oCpl\r\nztitvGneuEh8/EHVt9AlMwfETBNygPd/D5KV0eQ802nOYkuDXasu2vDx6hek\r\nmR+ETGNR9VmQnh0yIREPtujlNQVBaHmVmc6hFaiXbXjkkSV0MxdlqnpKjghY\r\nSkC8XZFkK+Tn+HGwC9r5nzH5csjNU5U+q4qOqpq2iOP5PupxutwwVOIWs780\r\nCphaerUmUwmv9DTST22TDM24e/mzaPatQFVQzr9tZULvZZXb/Fkr+NZ+Xebq\r\nY13yCkgkxxrUdk0focLS9z4COmOULU/G9GsqqWcmSOWXfpsm72lH/Qv2MRiz\r\nKOo8I+6S2eOmJCmM8GBCXhuLcw91osBN8fqjRD9JXKY/wItVpHZeUK5mZaCU\r\nQGvNHb3eH5BMtJMbLFrjSr+on2r87dykzMw=\r\n=fJvm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"e5da5bb4afa6d777e84b92bb21cd38551a290b1e","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.33.4","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.26.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.6","@babel/node":"^7.20.0","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.42.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.6.0_1667405813370_0.7827410149513208","host":"s3://npm-registry-packages"}},"39.6.1":{"name":"eslint-plugin-jsdoc","version":"39.6.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.6.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b67a4fb675d9dae77b95537b3435ae3094b73b41","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.6.1.tgz","fileCount":127,"integrity":"sha512-UcnHtmuXyMfBJtcwvByS2OD1BUhMvxBEV/CIRjVxYIznPuBPFzXzI2k5t9Eto2NK/hgi0asOH9rNtB2Vwyz2bQ==","signatures":[{"sig":"MEYCIQDjrxNkFQDv1lmqtcOQBs8Nqpq1pvgzT9vitP413bknzwIhAKDOMQ2QACmgwIQgjyUqkPi8J/+mMCDTSrV75Ek10j07","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1603885,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjYsy4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqS9A/+LzI1vNjJ6w7JYvBVriO6jaHNzLaYQiLYIlLCkdSTN+UmV92T\r\nJi+K+2MKWpXkvllqzt3ahKWcvsuB8P6OD9zXpQq+0Lxkb85KY1jt3r/gDW8I\r\nHduV6YMrWe2HaHFJRtZSBzTYdVrL9OIzxXe/PfHfWibNd/bdYn3R/3HVmjwG\r\nyqLUA83KseuIoCuQQCTKSRrXhgM/c+WHUXRXmCdBDnxiWoxIYYd+oI7pVPtU\r\nm8inZkz6zRX5J+0+adADw1ErsnF7fMMMeoUFFcXma2EJPnNZNLwOe0NE8Nva\r\nTTn2+0/brXyXIiAKIrMJUc1ETSUlrtoRg+lcVGFUcN5uch5/cprdFMfloE29\r\nPK+MaGhwTh7aWnmgPb6n8YCVY9737mk+TKXggKV0QxHy0lfgYysTqcHLf0Uk\r\nztLeNOnU4WbI4BK/Ro20KqXj+ff2DiUPkbY+57gemOaLO7ng0cheTUcsJGWG\r\nyUsoRRIZzgwgxnejgpPJnRWwEM/TClDhK6OehNAZXGInTCv7eJ3eyzPUmBie\r\nL17eKB5jfxhIIhfbtmMFTzLiAZ4Ijjfa72V9RzWYKph+v3lx5ESunSG2S/d/\r\nhkTjxywtXoonhFRF3wb9McYHkgGos9v1ILGXMo+TryTv+gzqnPoVGJEopenW\r\nmj2WuyVTjb7BZAkAid2TB9+e21UjEhfKsO0=\r\n=Tfl0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"d68d742e9a32671fd321e76c5ab3298b810160f7","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.35.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.26.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.6","@babel/node":"^7.20.0","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.42.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.6.1_1667419320627_0.43017560746024786","host":"s3://npm-registry-packages"}},"39.6.2":{"name":"eslint-plugin-jsdoc","version":"39.6.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.6.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"dcc86cec7cce47aa1a646e38debd5bdf76f63742","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.6.2.tgz","fileCount":127,"integrity":"sha512-dvgY/W7eUFoAIIiaWHERIMI61ZWqcz9YFjEeyTzdPlrZc3TY/3aZm5aB91NUoTLWYZmO/vFlYSuQi15tF7uE5A==","signatures":[{"sig":"MEUCIQCtpk4gnjmc0ME9ny80p0FQlGoUTJdedYKtZh2txKU5+QIgGtkH4N9Wm/pZ0QWfilvcssfuqa9sAltyN4ZxQ9BnbGk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1604584,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjYtjOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq5cBAApGXjZfkZmgpvFSvlSwGJHpSUYuJYsxYD5xhVp3p/FCVAAtnR\r\njvXNGTL+mZL6SyibCo3kXlqG+ogUeHgJ8pKypB43ZqAJB4H0oqo5tw90jeFm\r\nqHkdzmQ1O2hmFlKLs0BnVSLzdLZdENYqljf67sFEgOl64fQpBBuRpmeceB2L\r\nHv5cWSTAN+/fd1RowXEMTbUBr5xhm//VUPWNeioubmTuV45DY5bX7TwAfUyn\r\ngNKc2Ik/nsvItuSKaCM8qe4ycdKoPd8XHx+u9G2gspzMNPEEIDKzTDAnAswj\r\n+JPsqtqbfczt5drk1hMfwyCJ8yYB9XLr9FzU1t4JuOLpAjRWDvcz4Bm2+Aeo\r\nTVkbxb0mE0H6wcB+bw6HgHFJF+B5Oo7nV1ouYnRyyFOhHq2A+7dVvLMWm8OU\r\nXNFkFHHNq0Bn6QQw/S3oFjASGlqW8gDtlHoS3Ty1/AB0A6oq1TZ+i4+yUbcJ\r\nN8L7CUfUqEsTLxGtlVRKusf3L844TKTUpa/K1/ZOXAW5Fhy6YL4ptutn3cFs\r\nfAZD3e0AH/K9uVRU8Z5H2TXD7XwOAx65u+Tf3YqiV4dChnms2ItEj+SVz5UU\r\njaa0wbn4EHpr0VpO2bBPdFFSLjDe30rF6UhdagktA9Jf8Sb2TmZ7b/jSSEMn\r\ncyGxkzSYQbs9FHGn0nQePXI7M/p8a4L7xGU=\r\n=bneI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"26141cb97a2b9bcf801f323ad6ec00c05bb178ef","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.6","glob":"^8.0.3","husky":"^8.0.1","mocha":"^10.1.0","eslint":"^8.26.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.8.4","@babel/core":"^7.19.6","@babel/node":"^7.20.0","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.19.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.42.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.6.2_1667422414584_0.6051740228044955","host":"s3://npm-registry-packages"}},"39.6.3":{"name":"eslint-plugin-jsdoc","version":"39.6.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.6.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a128189bcc66387025342b16c92a93b2f28b7b50","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.6.3.tgz","fileCount":127,"integrity":"sha512-omyUBTh0Wvn7NI62PI3zgfTHb5EUvbq0NFdMHw5kgkhgwVFKY50MOwpv1GDQVD7aL307463kZZmrEWSM8o1DOA==","signatures":[{"sig":"MEUCIEnipVrGBiTm8DnOTML1KZ0mJzq8/uc/6oaIxOyfnxA7AiEA2O/JZuTmmzaqnm1Vt0LESTtXW3fIFDO6ck2wP758pN4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1604694,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjf5vqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo1RQ//dSQQ5zClW2C0WDrQ3hK4TmLcgMNli2BcR9ge2CRGx2MemTAN\r\nsDNvun0hGWvwM8WiR+cWLXvtZIe2zKGw3ltQ+EGAvwjfGUkC+0ItMjr8amL3\r\nQRkpWpAwe47QUIvH5gT91ybrb+Nij6vPq7reRQKpd37aCV2s3oDbnnG+5mq1\r\nJnGz+XAjy4xuHhQqfp92J2vxwAMXptK2eORgO+uUdzxi4gQ8oLQcwADiPp1H\r\nwuSq9fBSWEMedN+nc2IsDpQxBgHtxvK2KC8hSIjPBF876Lna0mtvScfQV6qo\r\nA3khcXNV7iMusvkzuD+yCE3Q6Zba3tgZSTpe4PJZp715VwUL2Uzb/28RNyzU\r\nWfI5agWA6eLroSNCZhcWquZH7bh8OMatrPmSVuygkZJwbPFdZA1L3szfTiSN\r\nyisBX3VbH2ot634Is1SI7kvMbYTDNY/QjqrH7j5mNsEYpxYMPGFxg5brBiiJ\r\nUw5ic/Edj9JMG8nautnpejjA49kbNFeeGiQ1Oz88WVN3S0PCz7wTAmIk5Dyi\r\nDh1Gl42z2rBvNRz3BrfUHqVJDXFn9sHLUmpOcjGStFqhH0yyyszfpTl6iux8\r\njN4AFHdXGpZa80Ysy+2p6eCT2KA9ws9w7f6P5kAyxCQ4nYsojwt7WfYZGR9r\r\nqqWH/4GtXEnf4zQt0PgehTcV7Uyn4+VpDQU=\r\n=pUvJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"124d32792062bb2aa1dd1f9c89dfb5c654c35a19","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.0.3","husky":"^8.0.2","mocha":"^10.1.0","eslint":"^8.28.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.9.3","@babel/core":"^7.20.2","@babel/node":"^7.20.2","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.44.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.6.3_1669307370025_0.0007255935038494865","host":"s3://npm-registry-packages"}},"39.6.4":{"name":"eslint-plugin-jsdoc","version":"39.6.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.6.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b940aebd3eea26884a0d341785d2dc3aba6a38a7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.6.4.tgz","fileCount":127,"integrity":"sha512-fskvdLCfwmPjHb6e+xNGDtGgbF8X7cDwMtVLAP2WwSf9Htrx68OAx31BESBM1FAwsN2HTQyYQq7m4aW4Q4Nlag==","signatures":[{"sig":"MEYCIQDhBlSyEUBdxV6aXzwkf+zsbVJt1T/6IUJiK0wPkdlW+AIhAPAapVKSEfd9Bz4AFiS04hEld5jB0ObaRsu7c8tK/Uvv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1605102,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjf+mMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpp4Q/+IJUkS4O8SMA/AQq/OoRk7hSsFDMHCMsdUR0I6ifiQNkdhpzO\r\nuKkcIwvXwgdDsiSk88nV+Gma1Xrh61cAIiJXSBet5k+RjmW6BI6UQB1025Vz\r\ndjc6bPeO9Pr1yiGlWyd0GPCGz7eEfNcjMqOE2WvxrgHWo7XrLAsHT/DYEqVR\r\n6hD+bRWp0kFg/8IH6qkVAsFhIHBkDdwdH6s8o2zcAVzXfrEt/wsuqvx4VH+8\r\nj6kTaO1+u9MJeW0oktmIj8rNpUtoZdIkL7BpzCEPeBzooe84mRUOaK/tvdSj\r\nWHNiMHksy7Y0nI9ggqx3PtcOR+VPpC+AISDT4Qejc4XtU03X6IAq02tp6Ai+\r\nXgSLW6yGCKZRbNMjrg3hdGTwRSKtL5q02upavSCuuWb+SA44wK/zFDvqlqQy\r\nt2lNX9tJ+IxgJOIGTmvQX/vIOO55EbfHTnR7y0F8GMs+Qum1QcqIFFzJFojc\r\n4CaxGjNjIru2iDCHVlRPa39p1W+6jsMy3QG3vM64FGoW71HooXl+Mt5PORs1\r\nTZ3ErBP/7tnrptce35DfQfATU/reHR3BNVp8djq9ncRcLzoMouA7XyVQtR9N\r\nDHSMXIf1Y8GIjM0Ypg86xKJuBxACHGf4p42S6mNywpou0scYcPLQiR2kvUDj\r\nfup/je8QT+cqlqpDp4XZI1vrof9CV4wDzLg=\r\n=Ajym\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"65e927bca645bc6e2fe77a761a5df2ff63099ea1","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"14.17.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.0.3","husky":"^8.0.2","mocha":"^10.1.0","eslint":"^8.28.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.19.3","decamelize":"^5.0.1","typescript":"^4.9.3","@babel/core":"^7.20.2","@babel/node":"^7.20.2","lint-staged":"^13.0.3","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^19.0.5","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@typescript-eslint/parser":"^5.44.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.6.4_1669327244416_0.9479760308197567","host":"s3://npm-registry-packages"}},"39.6.5":{"name":"eslint-plugin-jsdoc","version":"39.6.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.6.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c4e6b5f54dd4e9e0332d0b9e8dcf0a650b1c825c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.6.5.tgz","fileCount":127,"integrity":"sha512-Hf/fSEbOqOHOZjLJnnX79gQXmEuyS5JLvAhq3lgDd7fO5Ir9xDhePoJIM2sY/OIHJ2rMNG+FLRDuo6kU2bcVHw==","signatures":[{"sig":"MEUCIQDGBXuSyMbg7lRlZ2oJzFv7LbVbfUCAobnTeq//MXN5NAIgfu+V57QD6nppsJeaI4VSLT8zWCFMkEtLL2z7dvGmnHM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1606486,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjyCPvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrvEA/7BRq+IPj0PVdABa+SgKE2HZD/DA804nTmMThdhAkZSPFkbl0p\r\nhZ4iSCzFimCQ65bndeL9B6jvHkJhewTcWU8m3V6A6QFbjP8cKGeYy24k3H7T\r\n18LsnFIWpwD+8XP8Z9N5seweMeHnbGQrkYGor1VOJK6cZDqy7EVN0qulwoS4\r\nO0EtAibJrP7jU9cpNtBPEn18zP0WX19lP2cjJwWPHHHerCxuPDlX5X0K8w59\r\n8boVqwFRrC6JCQLfPgokAxN04F4b7WUMfx7OBkW7wohW/A0JNneaPUGt0n0l\r\npM8gAy/oO0LVhelVxsao9qboo4Rwc/yAKF46ymfN0OfY7mkefcB8C76GaVHA\r\nVA5yGshde0Kpy9Wgq2kYi3MFGb5VJ7/DAr7mOpEd2heN2e3b4+ZWat9sicCV\r\nvHoSVnhuRLY22cFQnMXmDTUzr3uZ8y38RlQ5xRWC0FFIcVQ+2RaQ8Zj5Jtqu\r\nmc0EFc3ooC5TvcSqTeKwkGtTZEaD3KzKpHKrMgU+9ctbjK4YniOWcDCcC5xv\r\nt08OHucFqZ419xGkhQ0Nyv2eKAw0fdNhgbqVkBYV2TtZloQDI+Hv6P9XhTNH\r\nu1YXoVgp6s2RTHYfxplvPdh5rdoHqeU7p6K82JU2BP2ZP33Z3qqbKTWMBZII\r\nhsZvHqMADAXxo9tfM4kgxeImZG0kzG5zTo8=\r\n=4CCi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"1806f8c36d1843e2ea0397cb0c96fb3787dd07bf","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.13.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.0.3","husky":"^8.0.2","mocha":"^10.2.0","eslint":"^8.30.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.7","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.47.1","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.6.5_1674060783299_0.2694451430044458","host":"s3://npm-registry-packages"}},"39.6.6":{"name":"eslint-plugin-jsdoc","version":"39.6.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.6.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"afd1bda03143b339148faf92524b2f3e4695c0e3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.6.6.tgz","fileCount":127,"integrity":"sha512-cFkmcdMYHw4XwA4fM5Rdopn9wB2p+Yu966F/6fa9C/oIMH99+YCfhH3+qXMc39VX9KYZ0d/KHgUbKo8D7N/27A==","signatures":[{"sig":"MEYCIQDmeF01zCRY21fl6cqMw7R+MOEVnxFcg6j9EHFRNA1ntgIhALvEAAX8SQYjEvQEqHQbHZl2dLGmApLO+vIKZZKKBmH4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1606486,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjyCSZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpX6Q//e1BmhUGj/5UqBHDL8Z9uZ8EKnS+1ZavrdmlVZMouSQcirH6p\r\no9l2Eoj+Qt05MjZso/PSVite/4PV0978kHtx2dIFwLF3D3ZaOihzUeaiNrPA\r\nyJEeTOMJ5xJrm8Gc7oZayEcFsYy5vDICqFR6LavZCQZo+Kt9dls2786VaNr5\r\nZsirdHtixdNsBMCE/MrQkhwqu3R57dYl4huUpRJYfuIArA6Uc8QtZd2ceyhu\r\nT8O6vrLOZiUap3qziFAXQqPSfOX4VKDvXlm69JEbflFjPVqtFzIf+HUx1qG5\r\n4/jvPomXfzPiJfiIaxChI4ulHVMMfZydH69CuBjG2Q9WBp+l9HSAvXb/yJ26\r\nDPEa2kPzajichAZh4iupRSvhTRF7DzJ207QcfTPf5uTqRhTN9Y4bh7BAduDI\r\nph5XaoJq6JkH3QTXzOwSJIhzXcVcHI1oN7D4ioVaW1NUc0sH4xsL5QjMLB5q\r\nvn6yZQzJ7BXDc9v64vPIhquYYkwyq1PtCJopFRbrIB3Bz3XwkI6f0QXD/JJ4\r\nK2rTLE+Dqah2A7PBvtVeZCVAINrYJK6nX5ZPTlHYmODIj1SVU/l0SU3tRROE\r\nEa00aXUdJplJd6XFwdBv9XdFU7n2l9FKOWnN/lAuqareNaw4ZMxZjdq8iUoH\r\nqJS0ix85exUzxHCRL5zSZOS+mLFlqWSP26I=\r\n=QSPM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"86bdb741d6646e776e03b381779330f004a3df77","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.13.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.0.3","husky":"^8.0.2","mocha":"^10.2.0","eslint":"^8.30.0","rimraf":"^3.0.2","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.7","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.47.1","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.6.6_1674060952753_0.31957746458247827","host":"s3://npm-registry-packages"}},"39.6.7":{"name":"eslint-plugin-jsdoc","version":"39.6.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.6.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f7f9abec75993b9cb3ede814c1d9d5afc3d7bf22","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.6.7.tgz","fileCount":127,"integrity":"sha512-0mrzXrHvL2ZLe3QK9X0OEDy7Fs2cFQ/f1d1G5KHEGD+13D1qg56Iovq0uOkYf5bJlHiKPytWVgOOO9y7kLW3VA==","signatures":[{"sig":"MEUCIFd8L/8Gogwbt11GdoYsBlovCDEbw09NXS/PNnaDgNlOAiEA397SXZiTzZp+a7MEAPzQhgCrTrMkuVUUXHzksYtSmOo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1606903,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjyfTQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoHHBAAoESekaIWXku4iOGMGWuyyTcqoAWForQPNNWLd0XnQt3VtGrK\r\naXoJEIe9VM5HbbXUasW4UdYzEtzCRPOf0iJ31DsXK3OLgVKPw3tlFaJUNKlx\r\ne1Z6KG0HtLktxa9cMqVbQodDf0jnPMSI3C5bETa3LTKxdOIYou6tz2lXMWLN\r\ntIcJdFZQHOoMBuNOskREiD/y936c2qLRVKDiiy4y3kjzWk+KRvyPp5Ul3lGL\r\n/bAYjTQCWWkoh/cnKf6XiAlT0rhgX8XdNtM69+SgWNLCQdyG+5ZzOPMju5pJ\r\nrFVV38rrWSrypnFhK2KgEjzprtkyI+MylMkp505ZfVTGoD71INPleBl0JyuF\r\nTeM64pi1At3mexwuK6v4oGZmxpVoBDp2RM+9086D61XehGBJgRFnxrM506c1\r\nZa/AWv9bFC6U8Rf01jGFDoxf1jhpYVQEREMeaSXtkfzVHAXEhq7x8BzfESbp\r\n0BNQvhlVS0RtVWos533HO1xdUL0k3tVmHLrtWJvgD19YewFLSmvJYYq/UxPS\r\nxCw52QgTcNZVaiItJB0BL+XAblf06ijiiU8rtySgGy5o5FQR/m2204ZarqMe\r\nZqo2xEpprOEQY4YcHrg047uYtAFvAqGD2T6iE9XK4CVFbZvDLLoF7LjveOyR\r\nnivRDGybaHgyva28/LlSovVrOWvFkKn0r3E=\r\n=9482\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"e0f486218b56a369a98d4eb2ecd8dab652e99ab9","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.13.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.32.0","rimraf":"^4.1.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.12","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.48.2","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.6.7_1674179792102_0.5883022009968177","host":"s3://npm-registry-packages"}},"39.6.8":{"name":"eslint-plugin-jsdoc","version":"39.6.8","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.6.8","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a311dbaad00e51fe835c28e14e883c19e0d528a7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.6.8.tgz","fileCount":127,"integrity":"sha512-8W2B2vCfqXmV6AxhEO9u25zPqk7V/LxCsZBl0xDF1CSLDqabiQQtZXpWp19K53HMfFZMLeNRJRUFFhauWgMZrA==","signatures":[{"sig":"MEUCIQDQ8lleUfKAn/YKELT10vRrwfmuOH4aAwa2C95gC7grAAIgbdhNcw/o928ki8s+uvzbrs+1S8QL/b0XnkPB3myaq7I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1608017,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjzxcCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrm+w/+J7DnERLCD+bh7JtWBkQ/hpiDvcFNKFsWq0cjgx/70/aKwPXX\r\nG8TV15aj4DwcsB0yXKVK6GRRzoVMV5YMr1Dvd48Q7gSHa2pAUaMHJSSW6sg/\r\nLCMI3DuPdhcYr/QLD4CNmftjdx+hYny5UpxFpb3dgFUQbLxzptf1HCFfrspf\r\nk+Q9SVJXgVwVSYHyywDsslQ2CamVFwQdcGTTKjlAuJC98w7kSY3de21CNCNV\r\nPh2Ml3Ovd9cAvsc7glHX4rdD77v3Z2K6VI4bk/jRFbMsK7BC0sAIOjnXFjJ8\r\naLok6C8F41lKRg8izYdbh/SZw1INd9HY4aajAuIMruS+IgtomhzNVzKyqg3B\r\nSmfPFxnQPVOd0SZhuB8/UY0RphuwjgK8TZb1e3Oesb0LM/drRukkD+yMdf1N\r\nSTaZf/Zs1vQUhIFImg2yTkQaGkFzALx+dtuMQo8uRPvmkopq/K04PXYeVm6q\r\nMDwQiHpaExmoK24nhzVwcexEgDh0peulbCWJDhWcZNKLJ96P5SsyRrpERgJG\r\nDU4aVfFDmjUR0I9gA1h+0P+AXZH+6zy9Z/cbKJYYX+cnYDlqYIDkXqHFgakg\r\n15aDrn+4ZOUlNKTRQyxFUw3lzcqWcEAR4Bt6ZqoLQf+GtDpS6ekR9N3wwpUg\r\n2BvABK18RnOFUJi8pr+G60n80DgwjqnO2t8=\r\n=WE94\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"8b72df49b53bb8da9efc5f173169d137f61e2289","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.13.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.32.0","rimraf":"^4.1.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.12","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.48.2","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.6.8_1674516225812_0.11934435318134384","host":"s3://npm-registry-packages"}},"39.6.9":{"name":"eslint-plugin-jsdoc","version":"39.6.9","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.6.9","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f9c6f43fb31def89bbf86c1dcd0367983a062fa5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.6.9.tgz","fileCount":127,"integrity":"sha512-GrESRfjT1jOaK1LC2DldMuh+Ajmex9OnRIVSKMXJ1t7lNDB+J2MA11afLPXfkTKWJpplxZohjo8prT8s5LOPgQ==","signatures":[{"sig":"MEUCIQCPL22qEezq1ZSeNcD2c0bvjjq3sjyb5DQ76sPoZmv23QIgGMPEcvocaDQHCxtRlCVlz0b3jLxrpIgqZrVp1YQoPL8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1608215,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj04GwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqWGg/6A6JKWEBEuedXgj57QworriLhxMRQ4LVrROdhEvJGPtAyg+Uz\r\nOMGFfpRQu5PcaUCGH9iJ6exo38ZLgSf9pIDTyvD72i78mmjhCrqIywHI2FNY\r\nBZBBbVwjiARvq2d11bB9aojKt+tXOrX4NpEMZx+SuwfTbryIT3kaJrdoKnqP\r\n/6LTVrEKs0QYz7rlVpIMENUh9U5JmMY3w383Ymqs+glAGylkt7yQ30N6JvcC\r\nOTdrLt43hZermPIqNqFmmr/FgtWuFQf5jPvCM/HauE4I6xoHkmWEctLE5O8h\r\nkmZ6sJGXH5o4Abddy+vvNvCnhBKLSnvzzL9dbp6y7nqZsByvii2ajaC+0ngg\r\n136veycsdk+aWsIvWh5FeZJ93we1KxlAOYhgHKRAiNUIxsAh8uHnrQaFSBua\r\nedyb+DgHRhy4AHE4VK9kcIXSr74F/Vc2MkMQqyPk2cppkA2toPzBbRiRv2HL\r\ntjEw/LQxC9kl6pQiWduKjJps5Q89ojgFBOf9Ksquj9ORKxiDt77Nhb/lsWqs\r\nHIkmWSi2b6eh0LGK1NZWoyBSrOgPeRPpclTbMQF3ViEfWT/yImTeyq0QiiqA\r\nBB6wHaXlAxtpkWrEWGRGgJslhR8iZtUVzQONtX/9/bjD0ZCXnwdr7sAWZpNU\r\ne0HWJSs4eoqM7MPMZdOLQHZkWUT32Fek4wM=\r\n=5cQC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"4883cd0554379aa829798455a1719de71b0aeeb9","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.13.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.32.0","rimraf":"^4.1.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.12","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.48.2","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.6.9_1674805680456_0.6074709115403081","host":"s3://npm-registry-packages"}},"39.6.10":{"name":"eslint-plugin-jsdoc","version":"39.6.10","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.6.10","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"09ca838228e1b831cbe6a81ccad3847a1a81706c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.6.10.tgz","fileCount":127,"integrity":"sha512-wnn3webWx/zLai4jOuA265IygXs4wgvUljra8E/wzzt4OwK+0CmLWOdJPUhMBfGLHGCK1lixaJ+hZpmY7USRuw==","signatures":[{"sig":"MEUCIBZ/+m4fycgTtAxjdJr2gadA3+YpyeRGYsSgeEVBlQgVAiEA4EFa5Sd/U14cQARkV0eCfYWjl8FuMrby1YvL6SjdscA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1608274,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1UNbACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoFRg/7BHeBFx2gfJKXwqyjjEJsZBVox4to/MnQiDe837pZHi0bL7vO\r\nDdxdbUYLVNPrPo+lhFs7qkrmlzzq/RFsrP7c5FCu4PGkAi3X8uarXKTkgnir\r\nbJII5Pd7YRzeVqxVCBe1fJTMpuxgXmrPlv0IXfOxHI7R4e0SKyR5UYi7990p\r\nuxNYSHLh02keBjYUw0w8kRq08qQmHFhtGZHhMbxLWSvrQxWANu/+uufKpeEY\r\nrJW+Lz9v8U0wnlUkJCgmlyDJXNnb+0UDhakn0I4BQapPQAeNvpo1zhH94qj5\r\nS80nbhHyOzVmHo5yUzFwrnQe/l4+PKEDljsrN44R5TYP3mi+XUwrnUt3Id19\r\nt1q7o2NWmVT1ZqyXRS7n59A9VnPMMYGJfNCotlFe/YBUigSIhIIC6q49B88j\r\nAqgDZBy8I9QaW9IRX4l6WrAGHfw4fNxSMZuUwuPdKiFi0PELpmRyFtJNMXHo\r\nCjFhbaEZTardNiJFknQDnseEFFF/pXIg9VX0dyvOvWPnTZ2eIM/zJigIWq8S\r\ni9pm2FPR42C2V6PfTUX/64mBVQg6WwjuUyjssv9AYgOl9+0wnxYOXXnGaYh6\r\naZ0Snx/gVOo6kGwHMb0UmLDP331Fa98SBWtzPSjfU5odr3pLX+stSZXhTRSy\r\n31vIVncbwQd9ITtaWUsOKgt+bA6lj/EE+No=\r\n=tJc8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"ca5fc32ed78b3c5d07deea73b27fd7b806374213","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.13.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.32.0","rimraf":"^4.1.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.12","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.48.2","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.6.10_1674920795471_0.44240140300560693","host":"s3://npm-registry-packages"}},"39.7.0":{"name":"eslint-plugin-jsdoc","version":"39.7.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.7.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"887c8996fcad5c9d2ac7835018f81278706464e5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.7.0.tgz","fileCount":127,"integrity":"sha512-4gWAJABzWzfu/LBNLo5cdZph8Ce8QY/Og3FvzU2TsBz50hDB3gBlMJulrmFvPHFXnSxmB6mzMf3dpi4yxdFKfQ==","signatures":[{"sig":"MEUCIGCWI2KNxCrIe9CNBzdJqj3RBeytHOyebgvDHjcdec6rAiEAljufA82U5y1tr0iS///Dpu6DcYuAAwmAD0AZSEWoikQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1608921,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1VkzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoYmw/+N3PCycGtfEIHPMXRzvmAOhc3Ob3i1D/YIjAfCHJXfzH2ArjF\r\nTU7A6UWK1Pj3VjybxkSzekLIeOGDeOFZWH/oJ/owNPwtHK+I/sxJtLOJX1lD\r\nt+v/4HNksCORndfYbgTpqfwAPPp8f7rKOOWfmHijPpau+iUTDbnE1Fx1Ny1Y\r\nfAWrXlCu07y/f24Mv/XC6+o3JYF01a+1l1ZLtBcoEKrDWkMFcsOWLT9tFQ1t\r\nuETEla2TSS367YYZ2CVVCBws+Y4+AqD7r4STmFTRaD//QXLx3jOPS+4zmZPp\r\niBez0Kd8Z0hXTlPNE8FaDqVS0PL6XCVpsaN365FooN6zphlcyGtsEOZIydaQ\r\nm6FUitjipnw5aVkJUaUfhLEU5Gzmcus/mjhQLGNESmqD46rKRyTaRa2Lmn7Y\r\ntfZQr7Z/rG7FQbYM6KYUeN1lZ1m+ijB2Lw+vDPtiHNDnLCMPFEmKkz6K0Yr7\r\nZ5wCBJoFARS8cNE6k2S+eljJD+eEGyvdXDc9cIpZDrhcWvylqTDk+D5pjVmE\r\nZx5UNPHPLzWY7ViN12zzjnTe2plVxsbr5qG1oOAQGZQdWyO4yxY7H5413JJA\r\n10F5+awbib2BgYgh1iNstY/xBEdKUzrGbmW9l+ybrWRlAfODatCdnm96S/YK\r\nLVm9uR4PuP+1r4V7ZPj+z224TIrQGxIIPMo=\r\n=5iWo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"a7381c01430bbae5326106661ad9cf8c58b59dff","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.13.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.32.0","rimraf":"^4.1.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.12","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.48.2","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.7.0_1674926387021_0.8227975589946184","host":"s3://npm-registry-packages"}},"39.7.1":{"name":"eslint-plugin-jsdoc","version":"39.7.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.7.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d76f9c995116371f6bd3fc6c99a0c0128c4552a2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.7.1.tgz","fileCount":127,"integrity":"sha512-e7MRWrN+DBr7QEMFN9Hg+ZBVvykF4UM9sIuHKGFK1oeRZXnyzADY+GWcJodLF3U8AQkFXVCZ6UeljGa2Cf3KNw==","signatures":[{"sig":"MEQCIDBqMbklTkalG3AEqHXJOa9V9UniHmukNkB21A0e3uU1AiA/L4fYDhup5WP89ZnhoUxGi9rvJ/JAsY3F1IdXwtkvJg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1612627,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1e/oACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr3DA/9FIug6FBqQuNA7yhJbvFar4IwGX9tM1D1jEzPwXOl5nvVdCnZ\r\nTdWHjsEQr3E3N2UloyeVGbTuC8Z0z6EDpxl7xKfRhxZCFo13jO3X0UavWUX1\r\n2jXM05Y1xae8Oo3B7xEXXXsRGTr5KDV8CCDpge1PLTXPDq8PkBRDWX4aF9YS\r\nU3oYIsINgss2N8G1HfJVIq7dfhYDDp5dd2SY8MJ3b5N2XEEIOBO9L6cQEF/K\r\n8lobFGPiA33q6hhR/C4XY0WF14uw57dfPJP9XP9kR+94aoA2F2L6/ff8L3dn\r\ntUIOOp1P1qgpgDrXCH3u193YgsX+lD93IJGWx00vQ0XYhv9SKWUNCVmHRuIl\r\npgpXZW9bNneW2i/7alfLefOEypGBMGznw/JaYg4Zfhuuf/78SNQFy5j3kN/o\r\nu+XRJIk+HXL3O2liAEliJEHLY4Nb9UHs50qKTwc04k+Vr9rpYtR2uTLoNSiK\r\nZ6Fw1X7fu8gB5GweKI0yNO+VGyOgwLxsp1Wjue+WA3mGlp0csepoz9Kg5tFj\r\n+ffjQiI3BpUVNpbanWvQ/9S0PyYxjsHguO2ANE4ScVAmavTag6JsTWTTRKPs\r\n4gM8M+zooprED/yYG8m2RqPlzcJI1iE3cMNrmxQP1KT9FlQPxBCp2Wj/IUds\r\nbRb64G/eZsaGXIM2Makl7tNji8KoSiEf9TA=\r\n=Ipat\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"512670c657cb0e314639f9bd71f0aca741da152d","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.13.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.32.0","rimraf":"^4.1.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.12","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.48.2","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.7.1_1674964968541_0.8268575042599262","host":"s3://npm-registry-packages"}},"39.7.2":{"name":"eslint-plugin-jsdoc","version":"39.7.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.7.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b953bbd3c8d429d45a735c67f3130e107c18e865","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.7.2.tgz","fileCount":127,"integrity":"sha512-Mvz7V0Iqoyg0bfDor6KE3vB8AuWFO+Ht0ZlERNNJE0n5FtJSSpOV2H7M9KpFYvpJ1YzIe/cmIc14G9U7+R5lRA==","signatures":[{"sig":"MEUCIQDbiGlj0rXVcII6zzZKJ9JcipqYXDX93m4wUaDOLVPHbgIgEW7V+KsgmL2gsoSnL5QnMYUV/g+vJ6M83lSU3qDi1Gg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1613641,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1ftUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoUUA/+KIE1gdbjwI+4ZypAHo6PRkF77wOT/QGzhFVM3Qbg+3HcN2y+\r\nBUwZnwQQ9IsT5QSBsiKp4ByXvnNT+m22R8Wh1aX1112tKo5apcqofePE2HNl\r\nT9kRXZ3bLO9wVEjCQDvG5MZVnIyOlvVL09P2/jLaEayKyAlMNtyvoMgAOHSR\r\nQmQI1jlXRAP4nV86ST2bHvpScsEDVOlsQuGm3CvT+CEyw66swjKuiSEa5fj3\r\nbcyKlWX83imeA3Lxr9fFJPvX4fnJYlakoexpSTguF/CT22r3o/K6dqMClyAB\r\nvgJyuP1KEF5sqiaORHz/twX1pZ4cmpIQ4mcl0vfrkIWmxWZFStGOmq6JHafo\r\nHZArh/CmL1+FDXeCfe3XHcK2AY7cXBFDLYKGRk7TuSFibknsE5XVYTFIjcQj\r\nWOKGclrnGJOFW9UVfOGVJuuHMyJ8sFDtAjrrCsg/m9Sg94xJRzkQF4WKkuNV\r\nnJaeM7+mD4YT8zV5dw1i2daZl3n1H3ffrwB4Xq6x80QvnGO6kxCgxMiGNb9Y\r\n3sfyFBaHvi7D+EpPYoyVbeYHyCmtPCDilqSfiXs0UvHijJw3APRwXduTc+Lk\r\ng4X5uRvYC2vEIyla9Y4pspnZ7TuvwiEo3U61aqaAgcVdpmuHhxviAVgMyFDB\r\n4DYvPDgJfWlmQIno4Tcozc5v3mXDjc0isGQ=\r\n=awIw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"7988ed60d158520f75954625d150e551d3883de5","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.13.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.32.0","rimraf":"^4.1.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.12","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.48.2","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.7.2_1674967891828_0.4481257216814223","host":"s3://npm-registry-packages"}},"39.7.3":{"name":"eslint-plugin-jsdoc","version":"39.7.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.7.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ead701f740eba9a920429a3cec2a1d0810c1d9bd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.7.3.tgz","fileCount":127,"integrity":"sha512-5/IJxnRXMI6Gsx72qvghAf1c2tNuQL3ZUSi45k5eHphLJebrn+ukrE+0LQNMGHpvDmQh96zt1chwJ8BnNtNRzw==","signatures":[{"sig":"MEQCIGLePuwMgR9jJcUPF/g3Jmc17ckzKVTlzQ+OD9vQYgj/AiA9SqpEDL3qCO3thm9c/BJxu/TIgil4S8Qsu/9y69UIkg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1613639,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1f56ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr72A//eLLs+GOT4Pk/1IPmHn+F7fo8/wcX7DB8guNRFRTdMWb0eR1k\r\n8IG+sMrXeoIId/1M2MfAsbjhCaFaRzIMWiW/bvuBkcxXQ3gNrcLQNB1y2DR9\r\nP0EE7bklLBspoZxRi/8OAS4Qj2nZ+RMDzQRkouF0CghEDt8HeKu38wZh+k6a\r\nZwt8C54Dy1phhqNPa/u48+A4ay7OdBodmj3ygfPrtptEvQ35xD8DVkRKkm4e\r\nSe8W23GvvulSerwz3kY+t8hysQcBoKOoJ7rdyj5KWzTycXpPh0Xci1MfW8IJ\r\ngEtx4qkF/hqL6NEu9nAiEo20TqQQaqvRMw73ebTGrT96Ai7ETapRz10Jr7pH\r\nGqz8jo7yvDt+UzBlj1+EX2qeq9NrmfKewqcGYn2/Y0VGZ781lcpjvVz8hD4T\r\n80f5ocSDs/NyJMehW1xA1NV254L7onqGgOrO3PnMGoxfYrVJ1cWEfAQ5daT5\r\nwiBlM2w7tHY+cF8OIyRVd0tClVWm67jdrpTb7YWV6bIwfMGuauk4rkTMmm2E\r\nniO1ap77+VwqDn5SjleejB6PQdpIpSYSc+RsSsw+dw4u3kfXuNb3y2MCr0JH\r\n8f65bnKHk9BGlfkzT6ldwxhG6Zx3DRv3JLMp3fTIF386bMeBdn+0HEw7dlCj\r\ngRxJ00s/fhueztGT+nmZ595mG2vrq1Xpftk=\r\n=nMsZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"b418dbd51f11980effe666bbdcbc97bac0da0544","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.13.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.32.0","rimraf":"^4.1.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.12","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.48.2","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.7.3_1674968698565_0.5147871286159504","host":"s3://npm-registry-packages"}},"39.7.4":{"name":"eslint-plugin-jsdoc","version":"39.7.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.7.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"fec1b5a3cfcbb706980e98e0dbb60ae1f31777d7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.7.4.tgz","fileCount":127,"integrity":"sha512-2eJcWGKRyNQFa37UIpGcAdOp3wtES8vV3mlnFmEmJCuBNyFhK6cMhbZgMkLoLjKnipoxsN9GbfZZ+8nPY8ETZQ==","signatures":[{"sig":"MEQCICT5X2u+euDhUpQH+12L0RcxbX5bwrpdVllDKWLpl1BOAiBesyyJnx5womwAtSlrKW9K1PkUP6lYzpUBVNtLacm2Iw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1613635,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1gTyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpOxA//aLCeOUkPQTlwRclQtGRQYuiaWOJruv5RrULSSU8DUvcCRUQr\r\ndTN80wTzg1GcBzq8Ymkcfx+p5Iy6He4qlNIMwF0GWcrvyXCeVCO0hmaJRizZ\r\nB97DziacAC0bYCyFNkJRxf7T4OEEJiwRv6ifv2r1uvGc1hnE9MSNU8A1GwVD\r\nTXv+PEM7P8nHZgYm4+8scxf5i5MgsLOX+eY2wMjPhmdsMVGsOJQZqK+7/xGQ\r\nyonJQca3l+N4429oJv8KkTEDSzqLDw9Ho1MhYYoUYWeYE84Aqq9So8iWrqnt\r\nNHD54eNCD2q45oG1zSYoYdAP0rWQ21QGODvc3zp7u8uSUDUh1HisDaIc9eVZ\r\nfcxDnqPMj3jgNkb62sNYB2oPqMAq43rKz2njthoshj0fxtWjqtaO7ohsbp44\r\niOb0Iu46SBB41NtVG9cp3s7Y1w1B7DHO7uepqq+Fw8gYbyzG1JssXSs00fyU\r\n9hu1JMIctls1NWvIbKdZ4m6k6EeYSf6+GiU0DDieIcde6zHfdrkVa6NKJ/tF\r\nhc3v+sEbL2asK7WTQZsMjZMQ/oBTw3cri4ZvITo9CavrES9vPd4GbEsMpK5x\r\nFpX4H6NrwNoXq+sqkehjedSYz8pp5/+2Dzk/JwGZw26T9zLIivaL+mKOYwmK\r\nWU3zF0TFYqpG3tpKji2x4zjHpG8be0M1tuI=\r\n=0+U+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"2e5782abe8af9c0c1d81e93a54d76ca74b71f066","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.13.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.32.0","rimraf":"^4.1.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.12","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.48.2","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.7.4_1674970354044_0.865415077674478","host":"s3://npm-registry-packages"}},"39.7.5":{"name":"eslint-plugin-jsdoc","version":"39.7.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.7.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"473f9fd372a231a1dae5d55df70b1d0fb64f95da","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.7.5.tgz","fileCount":127,"integrity":"sha512-6L90P0AnZcE4ra7nocolp9vTjgVr2wEZ7jPnEA/X30XAoQPk+wvnaq61n164Tf7Fg4QPpJtRSCPpApOsfWDdNA==","signatures":[{"sig":"MEYCIQDdHuG21b8EqXY9RysggC5yV7rG0BMxBsuts+3Nl48KcQIhAIIZSaW7W39FaYO9OrObjPH4T2q+ZSPtyeOaXh8bihoq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1615448,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj2SCJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrirA/9FBkbPAav0va639wUy5poJFBkHIPJlRuOM6o86Tps64WGRTyK\r\n9vlrqO6ELvsceV69AFPPiH1o1eZ0ogYCCUlD7zCL5GP/PCzfQEshRPNO6ey/\r\nr29h4G1DazGHNkiqeVyk4/AWzRbIQOBgV+wqKKJsRY17xPmFOIZmURqQaxHr\r\nOhlliJ/9V2xz4v6VIZedIpG46OZCzgdYsB4Po9t27K+rEOzPgs885rRjxDY4\r\nDCYLEJX5WIoDsOiDdSsQRpHfr6dkCwyvun0kpe8hnacGGXXr9vPDKYb8jL5E\r\n3pePrNuRvQyMMyarUAg2dORrU1Vh+U1cRfELZxZUUuwZjcI97nKTSgnart2b\r\nDoCr6W+ZK9tPCGmqGabl/sI9ArnjMFSsf8t8KDc0ydiB5JLBM5U4QRio54SW\r\nMIDSikYIZK3W8B7GdzQeMTCc62/FgQ7Kj0lWAHBSdr0XQFv2gp4rhEExEday\r\ngtpTEuLl42zYaJ/aMWNj9dyuz+OuImhc8GGFESfux0+Lxj/CKCoUhpLlFoC1\r\n/dHpsFYz6hm4EELBTbAgLyWv8Ipzku5+Ls2k0YIYpBAKnr5Apx9pE8aMVEvv\r\nFU0rQgD84RQTNCmj62Z3n3qelR5hUqrGS08/bPyO62c+XTn/fXaXKPBPUxpm\r\nvnkTbnh7V+5AdrMZKT8P0eTf5mXXGV3jVn4=\r\n=D+Zd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"cbec35fb88cbc062c3aba11f9507a7383609fad4","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.13.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.32.0","rimraf":"^4.1.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.12","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.48.2","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.7.5_1675174024948_0.9616325677748956","host":"s3://npm-registry-packages"}},"39.8.0":{"name":"eslint-plugin-jsdoc","version":"39.8.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.8.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9ca38ae31fb6e6de6268c5c041fa175fe1190469","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.8.0.tgz","fileCount":127,"integrity":"sha512-ZwGmk0jJoJD/NILeDRBKrpq/PCgddUdATjeU5JGTqTzKsOWfeaHOnaAwZjuOh7T8EB4hSoZ/9pR4+Qns2ldQVg==","signatures":[{"sig":"MEYCIQDw3auSqPebrpu523DCc+Xg8ziT6qK9gY29rTnTlaojVwIhAIP/gbIc1mjReJC4Qm4EaVC6tMPsZlqsI+fCKdUVhNTn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1624308,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj3SYRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmoc8BAApKWG6z9GEF7BCPvfxOkVOfuKwor915EXSkNubO05A4AcgKaL\r\nlg4PrLhC43b9JViuofomXrL4liPU+B9qX5/Wo6uVcMzYhywudEncx37V3B9k\r\nsGeGzDbvDrXjZDEs3Gd009IetSpv7HJRRCXFHbM6d7tapWuhoKP9yYFrlSVP\r\ncqs9E1ou3AuUTV43LlDvmtpYxy2e0u0Y7IAM/L+NwbnnwwrgHPOMlh5thMS/\r\nWnZw7GRPRZ4b2huPRJDgxDjJ+It7TmspF5CxF9smJMT3C3w5AeTmVJVEglVJ\r\nRwXj2jrURwK87oAWY6H12BKwdmuN918XQz1zY2dJlAjC0yRjNbwpfmGgLg/H\r\ntJqv53j8J1o8512goW/XQIw4FljbUB9Havein9W8NZ1AIF+cvUL/IIFVfrQs\r\nQPVoHJPdsar3kWQpWkVE7d+CVA1wx1vRA/CtWgtVESvUg7D/Ebvd/8Tc5xN/\r\nC2dneIYJpEFrPtqafU6ZWQcGoOvOD3t3FlnIoiOePDVCvUBhYsaOz9f2+ftN\r\nncFbFclDuTx4HIaaG66gZvDjZL7xSSTw5UeMN7uLLe/QdIhlNHo49we7w+pr\r\nRFEEo/RA0ENiGOvEbGd/jefM4F7B+fffMO/MeQ2qSZ7xFO0+3+/8SWCY3TkL\r\nGWDTDF+5zFr2gOZWVNJn//9D3OTgUcDuqwA=\r\n=eIZr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"a143226b0a0dd2d46fb3258f261979fffecdacb6","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.13.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.32.0","rimraf":"^4.1.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.12","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.48.2","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.8.0_1675437584911_0.6607443436749205","host":"s3://npm-registry-packages"}},"39.9.0":{"name":"eslint-plugin-jsdoc","version":"39.9.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.9.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5112e7cb2e0e1e8fd72c3bb49f4f392f79ac0e72","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.9.0.tgz","fileCount":127,"integrity":"sha512-OuOHAn97xDrkQKiishky982V5gsv73+TH8mM7grLNgHTLjpeLUBMcryNwXAJ2XVhqb4q+6MCpLiQRjkFvfsbmQ==","signatures":[{"sig":"MEUCIQCkxx4SeCokqRkPYGSquTTZbLBuadQiFtTibfL9zT3CzAIgbh9Z8RA8Gy0Y+5cah7n3qIpeUkyDzOXnbB8qdadekfo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1627122,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj56iTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrfhw/7Bhb+sl9E2SUdREnZl3MTXQpG4/dHrKErgxgB51+5Ttdnw6BB\r\negu0LfC7LrUIx5SiD+sGOWGGeiC9DdJwlpHYhrnD3bmkpCCFFXjje/BlGTDd\r\nfTuMKEnaj8+eWrcmNGVsBwkkYo+0s7R5z/OMosFLzjS636LWpkfliFI+RbjE\r\n6sl4zbu9UYPQMRRhDAqPsXA8z+pYbGsL3zAyBURUmFhhZTtZ6AbQPN7CYBOA\r\nPZIiVpw/HyGfoG4sFL0TR5p2sEAiF3NXNboU19I44YAaxdzdEEnCAgmt+W9G\r\n9WeZkVL3/3Cemi4/eWxnym7I9uMZgH6khZUXHz10ds3FnRvdasredrCiTliK\r\nq4ojP65RmwZW3vZB7Q3GXdPcMxgMiCuAmERzxebjNPzljHhWflvQTpHAYh9a\r\nsbWAWwgaOpvMCMwdBm3X6s8G1BRNiboBH3f/BMNtpP1gZEqGolhXqiVHCbTL\r\n0aNF7gMA9y+K38ILCL/i9mvokFBS6Bg/8160+Nyl16mBUUhUHqke6I4VwwNU\r\nw8oZCMod8BoZ5E5W8WCLrfJLYy24Txw6YzGcn6sx2R6FF9NQdeZlQW7QLpaK\r\nuIQ2ZTvOFqhqK+DoVtnk6TQgfMRoGTHwVxzyQrOPyqhUgfdQKIJF7DgsN5bs\r\nyOt/+WVjtus7zaGmljZo8C1WAsbGmFyR1MI=\r\n=ujk8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"143d429608399b25b0ce50336daddd04b56e1ee8","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.14.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.32.0","rimraf":"^4.1.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.12","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.48.2","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.9.0_1676126354749_0.5307689785948788","host":"s3://npm-registry-packages"}},"39.9.1":{"name":"eslint-plugin-jsdoc","version":"39.9.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@39.9.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e9ce1723411fd7ea0933b3ef0dd02156ae3068e2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.9.1.tgz","fileCount":127,"integrity":"sha512-Rq2QY6BZP2meNIs48aZ3GlIlJgBqFCmR55+UBvaDkA3ZNQ0SvQXOs2QKkubakEijV8UbIVbVZKsOVN8G3MuqZw==","signatures":[{"sig":"MEYCIQD042tJhKeQgc3Vc47CV2S4XbHsYKCqlEHp6ktxfwtNGQIhAI+DF1HhwB4tUO5/dXh6LEFJ+Hgdv5Q1U4TWANShlIGK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1627278,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj569GACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqrsg/6Aphp3tCvGKxcEdISWYJ7cHvIJ5keLq1f3oecugF5nXxFzd1g\r\neAsyJx2hOOaOjUrSoxrsdGKPBZAzHpdqBiY5TrbIenbTq2XdkvZ058KbKGm4\r\n6Fz+K/wgsiAJfDiSEqaq2DopvJiv8rqb3rwunN6GTB2UxWAYNfqVFtoNBMZj\r\n/xm5F5OtgAzCSpelNxVjeWGbUormdyDxo5ebBwMVl0n2XaPm8PuM3PHqxGKA\r\nuaRmUDPkAwMQ8+e1JnkcCLlOqaalfSLpWNB6kmfyce8PbkuJbI0+AM3dLIVp\r\nBBCyNJhg14gsqT9VfhcCaX6zCQswwE3QFiCGnV2J6Xbdc0G9/UQgiZbibfn0\r\nsQWvSerbeyrI95+/pb8RKB7sc990qiiW0Bm4kXQPN8HuhVCczABaejshtVgs\r\nI6HQHG8MYs0RiSpViDSKiqpZcRPk39xQHn1DjYW+eJEirVhB4VOctcZIEDE/\r\nH4esqMCMVmD2tJkCImy9R7Q0/19tk9+W41TPsbbf8vxr+IFc7I+zdV8Lghty\r\nN3LvcrGOUueRo7j7j3qcAKDTkrV7rSIzkZQOkGf1QksHA5TaBsHVJ3kheZs3\r\niIwq+zvMiEPEZWlNgJAXJPQHnV8iNCzo5UM0v9bXykMJmbAbKnQSX+x5sEpR\r\noTrxY4YC9JbfoQlZJ0QUW0Swh4aMILKtgmI=\r\n=/wCA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"f420121e929baab2e86e5377f8727ae867b178ae","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.14.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.32.0","rimraf":"^4.1.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.12","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.48.2","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_39.9.1_1676128070724_0.719161995612452","host":"s3://npm-registry-packages"}},"40.0.0":{"name":"eslint-plugin-jsdoc","version":"40.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@40.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7f433757aa91721e4b88a527dc17ac0437c3c075","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-40.0.0.tgz","fileCount":127,"integrity":"sha512-LOPyIu1vAVvGPkye3ci0moj0iNf3f8bmin6do2DYDj+77NRXWnkmhKRy8swWsatUs3mB5jYPWPUsFg9pyfEiyA==","signatures":[{"sig":"MEQCICMaHjYvDrwLwTsbNPkRN86mdkyp2qG017xKGW3Hua89AiBMV0K8CZF5dB5i7WL890zPDF0w/ZIy40O6LvjxylOMaQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1634161,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj57IvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpxrhAAgo0bLmAz/9RvmzPzBnvWQO99srrSEbr5d8PWvg4PoafXz43K\r\nSVRDCdgEvA3ObBGVYMoujv0L1niRxSvB/L4UltzJx7BJs/zVCYpYcmp4zx96\r\nEpay21/Blay1GB1agVnKMMWa8wdMyIf+mo2uk0xh7MqvSDf9vQA7mQk7gSTi\r\n1s5VUagfX2dR7HM8U0xa5F5TdjJ3bpUoE/8nFgfnCvBKHSq55StQM+t2aCQG\r\nBoe0vnHp4gU1E3Aqb6OxkZ780rzDH38TE9jVYop2/RUTEPAAVYDYONLZCsIg\r\nNoflPDEUiy/sdH8OjWdHpNiMJ06XhRK2cGeZCKfetR0Ldr8ilEa70yp/xo+n\r\nZBp1NAuSzLQyZoKWWoLuDNaJERsa3nhPb50bxKJNMWewfjcSpWn66Wc4Xnpb\r\n/D5AkbGIcW5JNU0bQxiiG3bsbDtV8cGb58ST9Up1WLKllUBNBHp2/ygt8ZYN\r\ne/64dt6PVRfBwJhhFr8BbD0M/vhEpkmJYygIrRYnMZIjHVcTHeirjx26MHRU\r\nn7Ba22bZ8+mGKV6KGNpRkQuUnynk/JQyL2HjIJrLnHyWaG4V+ZhL1M96CZCC\r\n30xDEGAs8UReSrdkH4kJ/ElYtTVFwYLSwxotAl3e0PjverE72wKwTCjz9Yw3\r\naR71Bjdm31dxXHnTy/evlK9ZrQTjCfUdmP8=\r\n=n91m\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"236fec2310bc76efee6b366f43b90a2a18dadd03","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.14.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.32.0","rimraf":"^4.1.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.12","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.48.2","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_40.0.0_1676128815130_0.6412904126017764","host":"s3://npm-registry-packages"}},"40.0.1":{"name":"eslint-plugin-jsdoc","version":"40.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@40.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5f028b4928d5c77f54bfd3c42c00acb61d27bb9f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-40.0.1.tgz","fileCount":127,"integrity":"sha512-KkiRInury7YrjjV5aCHDxwsPy6XFt5p2b2CnpDMITnWs8patNPf5kj24+VXIWw45kP6z/B0GOKfrYczB56OjQQ==","signatures":[{"sig":"MEUCIQDzBuZXilOiA3eik/ba2qUNWQt1Mr6q0aFE8z7XaEefhAIgQ5N0pWlFbLZuPfbOM4UHjw1mC8tQrp9gYTfryX7sZEw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1634856,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkAOO+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp1LA/+MIHWVoW5Aq5NKWessGqUaKk9ijyVCpZOEeDSU5FgwXqwEgQm\r\nbZ+teqynHCS2VDDKALKKNYkw7EP/ud9uCnJK0lJ9+aZhT+3W/rH7IyOCT2SB\r\nYYpC68qEVBKZkZL7Xy5SnOV0xzkBiI8QE88J7qxXxMBesNFirMZgoXEoDSdE\r\n5mWURUnO5ReiCBBHCHjIabgvXbkFKYuTLDCjjY/41p0zQGR/qUmi0hR7Fv6P\r\nEgogGEBRmEMT6zvC6iHnh/XOJLzbuuu5bflMOGMrBBZt9OS4dJlJSGiGSHQf\r\ncf1c1gdvDahcLItF8LyVwSy+wkIm4ZpoAX1KiQDfssQXnFvOTdqsg/EHxeKj\r\noqlN1ckDJUfO5NwTBDeUQ5whglBM2q3N9rIFaC6pw927oRGAPhOqdC7xLmEJ\r\n7EN9Sx73y7fQlaXMih0BgD+m7GxVe9Rmm2Epgj6fX7epwXo8poNY8/k00Lsz\r\nV58UoAi0CwgwiQx1NmrwV8vtzzTdfaW7TjN7lsWri2hSLb5X2LLokqdYpXmE\r\nN5NXNn0KCPrO2UF2z4ID41xMWnTOornpEa3aGBq7zr+8ljzFl7o0A6cFUo79\r\nT+FImfZreACIUHzAMhwp4W7Vrzigv9BubaYEn86+zLB5CbOFqQtWjZI9MLpw\r\n5bbVJX1ziFsAg2ogU3XFXldFiLJQtvh6H4k=\r\n=XPWB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"6449ce8d9c3805035d874f711dd54d1198976899","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.14.2","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.32.0","rimraf":"^4.1.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.12","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.48.2","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_40.0.1_1677779901776_0.9279006082581578","host":"s3://npm-registry-packages"}},"40.0.2":{"name":"eslint-plugin-jsdoc","version":"40.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@40.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d0d6490fa3085b4171eb60ef552b0e40992304c1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-40.0.2.tgz","fileCount":127,"integrity":"sha512-EjcpQX64+d02kKMlBZbTc7xIkCOa0A9TF2AlB/3NlM7Xl8bywwvJ5Wo7ickEn/EzfauMbZcCCKSZItAH+6Xakg==","signatures":[{"sig":"MEUCIQCwmSgXBbS6KndffMWFQj00igsK2raIcev5aGA1q3/TdAIgThJIXssBOjavt4c1rHnbzyD+gLzE6eFGsTz27MbbK6o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1635082,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkD+qFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqS9Q/+LzdSqzPx4LPlpxsMdDcNrgp7BQ97jA25m5IhqFH2XtyxXE3K\r\ndt5Ll13Kwxs/DV7pNJKFl+a6ODYtDsGCRXQqA4CaNjiIUR3eEbvwHaDv8kqu\r\nEaM37vIz89dMb5HZJtTGabtJXaXRINURZmRuuoXLekLrjNAH03B0MScIeoP5\r\nhOVy4W56VkTbWz3g6GpPcKW+fyOeBDTGuDw40VDFiNEavklZCvRqayNMmP3H\r\nsp9rPNftOvpt21PBekgkRO3YrrBKelg5cpLmqkOv7D3qdMqMkCNU5hiXPrzG\r\nByxiRPPrYRuV7KQ3nFQpUtDkNABaw1dy3aU1RI51tepOmbzgls0TqGWNl2OZ\r\nb41yEFuMO/KzdP7U7fXbGtjZQJk3qby2KFMj35oyBlkpYhn/fLNDeJswyvR9\r\nlClLK6ovhLp6mycbhCQbC3sPTb72dbBX3l9/8FEAfh6tnaY94yZmsvFerOTV\r\nS2tF6IWZRGQGDX1Ny0SQ/5hVi2BNDgCBIb7ep+4p8wQtiRh3qezLo7R2ucuJ\r\nxTMuJDxcmO8MsykBoJaRNMa8cCqt7xvYdBEvnIAMJB0IXM8/U31D2jUIAASZ\r\nxBNyZV7dyevpDnEkpbFvmsVLXIqAYEMP9+AtwGqHE5GtfSEMu/Q7Srjc9m3G\r\nD7DM+dOhFy+GZ2g5uI9e8Oqx6yOC71iHuyE=\r\n=voNB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"877f9b06238c4a3e5b0d8266c7c3bdd6593762bf","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.14.2","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.4.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.36.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.32.0","rimraf":"^4.1.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.20.7","decamelize":"^5.0.1","typescript":"^4.9.4","@babel/core":"^7.20.12","@babel/node":"^7.20.7","lint-staged":"^13.1.0","open-editor":"^3.0.0","@babel/register":"^7.18.9","semantic-release":"^20.0.2","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.19.1","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^3.1.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.48.2","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.19.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_40.0.2_1678764676840_0.3243979191427817","host":"s3://npm-registry-packages"}},"40.0.3":{"name":"eslint-plugin-jsdoc","version":"40.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@40.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b4d88db43d7b038cad7eee5a78d2b46c5f5d5958","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-40.0.3.tgz","fileCount":127,"integrity":"sha512-4QXkuo4yVFJWsZIvdgFMBs6ZWVGDBZGO06kcgM060/96G8+6Fr7JZWy+Wg0I1C0+qxxfpB+aIepdE29vYxX2kA==","signatures":[{"sig":"MEUCIQDD976B2CbfFYE7n1TfVQLObti+wAI3X2W/VE4wXCD+UQIgHD4QMQnoOa+IlqmOjvGp6jyWOB0WowrIs0aD6NFBHDg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1665739,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkEaaGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrdxA/+NArgsaFc5q0psc3kivOYfqSpDP9lAsURjjMYPV6dhwiZR+OC\r\nRUP/1jue4yMzFHGQ+GSl/0Vx23mi8w3JROqcs7k8LQaZiFqJ1Adu1ux0Cnob\r\nATrHgLNzgUMhk0nsN08R7RXvSk0CZAjvoDH5rf0Khmall0IPvo3ufUHoGGvg\r\nQSuaoaw6nojPld4BzjLfdwD4nNrf/FE6VxbiLo4VCwsF226YK0vg+2aNc1M4\r\n828nPXTMhrAmI6VwP/7G00iszrIWeAzRZO8RT/UeiJHh3jZNrzwU170U++yD\r\nnTzS8+TCwo3VxzlBQmuwVVTdis/fY37JRKw9ybM8w5nP/LhQAx2aDr8Os/dy\r\nnhctbov1zLLAKkYoVy4vGdsWKc8Ddcv3Dc6/uIq5jnSgoSM/ysIQAgvUsPuh\r\nxlKNopjJlbanU4OwFP8GvO0M0iQRA7h1RPzALI7guDgaBYq3Gi26dKlcKbS4\r\nDlAbyyYhxwdhmEsgiXiEzjO6ZUh7WY602EZX6h/xCS/OaTYiCbtyLLPd21or\r\nN/t+1Oih3T8qJ/GGC2rNtUie7FyOKKhjmVupZuYLVYTqFbBLgDHp76Xz4O86\r\nwi2NRW63Sc08Yo80Isa56dX++ARc4QuP+thgPu6Io+1TqgUC7FSEQfYjeQ7Q\r\n5DBnUoQXmV2UScZpN8XmTp+JwV8ZjfwKpE4=\r\n=O+2M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"835e1a7fd0e4f0649b2e78d4b99a3219e32accbf","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.14.2","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.36.0","rimraf":"^4.4.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^4.9.5","@babel/core":"^7.21.3","@babel/node":"^7.20.7","lint-staged":"^13.2.0","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^20.1.1","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.55.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_40.0.3_1678878342531_0.293685254355603","host":"s3://npm-registry-packages"}},"40.1.0":{"name":"eslint-plugin-jsdoc","version":"40.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@40.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"fec2f649a60167fa5a94f05ce2c6c041caaab129","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-40.1.0.tgz","fileCount":127,"integrity":"sha512-ANvrhiu62VlSorARM0hup60VQsS3hNyp0Ca7cnJDj8tpJzM7tNhBVqMVYXSuLzEmqrpwx6aAh+NAN2DdAGG5fQ==","signatures":[{"sig":"MEUCIQDxTbkbZL0aBOZSXhzOjb8q8X5m+EbTny3/Ok/BWCvXTAIgB9iwshECcrhJLthBVpqLLdvgnuPXpEMhx14o1AIryRo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1667419,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkFhFqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo0GxAAgjiPDK61CSmnkvKLWUgtzMTiNSLVP3joDv/uDGzQ/ED9tsiR\r\n2rnL5crWG8UNEGxDFz4oIFK1kAFkzsjzYGFDsvuuImZx+MXYvZfqYS6R6Wgq\r\nlrx1Bdu0jvIYVjKyAUZLW4nmHXLL3BAry2pLg5WGbNIr5Y9iP5JD9+HPy2rG\r\nxOViaHGLE9mZC/KLOpsK3ITu3cmayNy0/vQMu9x2POH4NDhkU0ZCQIH4RNe2\r\nRWm3f75vV9eNhUTFGMLbCkUIpq8N3AoZt7CU7YuxGMsURfXLdUTodO/pPCcS\r\nJXVGtXI4583n0rHFUF0GxfzxyUkeOrpgEhARpbYh9JCdXwkzg6HXB4CFpMNY\r\nnNUjhIt1FtylwKFnAS8ukfRr4nKIu9jqU46W7YYSso9B1vuIumPc/OHMno5J\r\ncCsRh3b5YtHpHALDcFoLV1HhSJfkCHlWrDuBrr3KVVclFd2+acAR1m9mN66D\r\nrM2isvoD2Y9IwjVujNv4xizh/f+yANp5wabjYDMGukhf2rgKuAmakz/pvt0p\r\nEZfSoK7+sNbG56z8fLkuEUC8LGySSAeR3fxvdh01nslECp2C88ptyeMx9Dda\r\nwVH/zWdxB//3WQPIKG9IswBKfr9HoFVu9dttrBsMPZfFGfU2LwNCTig/OzJs\r\nd8YOPxm8h2G+NurLNfuYgaMaYWbI1543/Bw=\r\n=Fy4E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"07ba155a2e8c81a92489961841a0cd852e2eb25e","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"8.19.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.36.0","rimraf":"^4.4.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^4.9.5","@babel/core":"^7.21.3","@babel/node":"^7.20.7","lint-staged":"^13.2.0","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^20.1.1","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^9.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.55.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_40.1.0_1679167850338_0.07971952095524792","host":"s3://npm-registry-packages"}},"40.1.1":{"name":"eslint-plugin-jsdoc","version":"40.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@40.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"12ae46e5e64524c19fb7d01471c70015aa0863f0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-40.1.1.tgz","fileCount":127,"integrity":"sha512-KxrQCq9pPt7LNeDBlLlnuJMpDFZnEQTs4e25NrT4u5cWmPw2P7F03F2qwPz0GMdlRZTyMOofuPAdiWytvPubvA==","signatures":[{"sig":"MEQCIH34ObmWnDTDgqpt/HkVKewau1Ry1L5rLL6FJL8FCKPtAiBz9qlds/flqNnCdQV0Rti6d5oM1RZPTsJYfOCteiNBgg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1668588,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkJtElACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrP2Q//SR4oK16Uupyr922M1f/ApiBJmsBChqMuH1dVH6ERIJClaQMY\r\nV880t6y0scF3F45I+lPitqKxIGcrk9JYFm0Inkpa0m7zfGOA9CO5bKrXxf5U\r\nw5e6LXHTYczOmcvQJXCPLx25rM8lVGSSvEyzYjbmCZgppZZSYJ+hwF8+UgQv\r\nRe2er58bljjf95IHXdwFEXX8qcMUuTnc8/QYFUImUAe0UPlHF6wMQc4VY+FV\r\nmM/KYvW0JLhyFvNEzg+x+Y+yKifzlqqs6lZIqNPm/brmzraqnwYHtQRTjx7v\r\nQgN453ERs6HNuUmIiROCdhJqjRk74KUgPmR3YPDJGWqr/1CbjhrWVIKC8deS\r\ndplbugiE4Y2hpSDzjdOOpRIeoZZIFALGEaAkh96cv48Z/8t07jD8rWUZbG/a\r\nwX4zKYRP1OFjrRfCWD/bfW2Vkvs+GKGYMkqvNROFo3Oy6m8NPxhp5ZCeSBMr\r\nQaXJgJ3PzZoeBrl0z6wMo5yuLF6RS45d+ql4ghAUYuAF35ONGzSXtK5wf2hM\r\nVy6TtoaJtoekB4cI75fikskPRR0mW8xlng97U7UqTdKg+DGdouSTuf0Ek2cn\r\n+gzDbgI+56JoofHlT4St/+nTDEkO4og6CekZDyElv8a0MDCxn8+CXP5zEi+A\r\nXImROHU30I5+Gq0Lre8rGzgnMSlDtAZ3gyU=\r\n=aeL2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"d004f0863ae512e7884e5c36185cbd419f1d7870","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.37.0","rimraf":"^4.4.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.3","@babel/core":"^7.21.3","@babel/node":"^7.20.7","lint-staged":"^13.2.0","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.0","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.57.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_40.1.1_1680265508796_0.07051025168412717","host":"s3://npm-registry-packages"}},"40.1.2":{"name":"eslint-plugin-jsdoc","version":"40.1.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@40.1.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"177bc131488157e4aae247df1aa1fdf9f4296842","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-40.1.2.tgz","fileCount":127,"integrity":"sha512-U4Kt42OVjF0EXOWPEc8pjanT8O1ULvILwgA5k87CnhrCKG4xaJ8Sjsb6CWgDtaemOywN06u86duKU1yMaBp7IQ==","signatures":[{"sig":"MEYCIQDvUKeeyd2zvxU+OUsRrMAKxm72+KV3zXjqG8mvnp6z6QIhAK7L42tYw7eeTf/QlIz1PdMqsj6Nq30BPpchectE4Mrl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1668552,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMdCQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqFqA//QwyrXj/IMz5DRCeRa29QQ2M2LK06iBEEfP532asbVDA/4LZi\r\nfj5X2qWEdyWxTDzVKfHiax+1HujBcUOSKX/zIfJOVTyaF9fntp+yx5ina3aU\r\n7lhJ9ta6FKYrkM/0w10Myi6cs2ng5uCljtoRL9DhBAVr/DVijcQGPH/43DQK\r\nCIAyajGBIdfhZZcUWUdezQlKQljmhgyGxS/66BNtVfqK3SAA9ISYDAoM2kjC\r\nMzPj8ZtjO+7uAE9Kp5kkaEgpdan7EUy37xQkzBz/pRLJTyAYP2UqtyU9pFQN\r\nojnmE59QOAFIm07u69oCYdmV0ymQNkr1ohdISoYeWgEibdFZ/+ZU0shbDLEA\r\ng6ePwGLTE+HJKtq2G6uJ/UsbIPAeiq65RloTnMMCXSxS7m+q3xiyGU6wpdXB\r\ne+dsTVqsYL80uDxc77TzWcdrYugzF2jbtwVdp9L67bq9eiU8w1VyAeE3EGA3\r\njWJEnol66qrqTMHQLnp9sI/pbIZvn9P6iQ3I15xg64Kfbdnf2lm6pL904/in\r\n0KVnEVjG1W5jUQg5dHVkTDBS0vFRNxXpqnqZE8JCQsiPRfOMM5mQPmH07j6Z\r\n5EmaUSToXGUEXFo1B232aOGoqthR1eKAkf3D4TPsRWqvaoriIHHzkG8hexpm\r\n11eXkXoU6hVsoqBrLEiQONAkLVBUtqnmr2c=\r\n=LbeI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"bd373925ee3950a00f3eaa67260906e09e8e7ce7","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.37.0","rimraf":"^4.4.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.3","@babel/core":"^7.21.3","@babel/node":"^7.20.7","lint-staged":"^13.2.0","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.0","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.57.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_40.1.2_1680986256511_0.731754202697052","host":"s3://npm-registry-packages"}},"40.2.0":{"name":"eslint-plugin-jsdoc","version":"40.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@40.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"feabc9e326d2ddf1c2c9341f838b80068dd36ea7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-40.2.0.tgz","fileCount":127,"integrity":"sha512-X5PeamXZ30vEU98ruC31WkNlUWRO6KX2OSU95syMTYmdUv+2/IUYsar3ONIqsgPgcfaIdlghL+TdXJ0LNTW1iA==","signatures":[{"sig":"MEYCIQDPihYQVdSDpHsMEO0R3+W22mGuJM7t6PjbB7nUS2YU/AIhAJydzZ2S83+A3iKVAA994U2G0C5jGodjXbgdU91Sug9V","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1685743,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkNHwxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoESA//RuRY6+d4BLXj0jfhrus5gr1NXmbnzuZdVoD02jbw+KruuoCs\r\nfemfsywu3ogzCkXh0nNOSIhG8KOKyUQbFKFYYl9AhZ20OMqui7Si4ZpCMMgV\r\nkuhZKl1p5W5JJE6WqSYHD3IYY1a9pFDqh6lGtnEA+7mIX3gwG4TMmv0PLcdv\r\nHob8Q4RMFLZDrT74SAOz+0t5l7epBCm5bMo07fIVyRnXN4VUNPnGQjjCCgCF\r\nDrHcGKAwwrriMc7Z65LBM4gGx/yYn6ORvYWmkpJn/mQFAYsPV9Em/LK1q9sL\r\nyOiI3JATHUdf8Nt+rLp1U5sweyTjiPSgoK3typB7fPL2IbY0MqJfRbO9TWeO\r\nzzxvZTx+nsSrUv+IqorrXnVskNs6Qc3GV89KP0/1b8TBspPLV+to5UZnumrE\r\nQrf3T/nDN9AcjWjzahSfvoA4LhL8ljouy0ecJwq5vG1eDx9vHc2BYFUBak8k\r\nPGYKEe7pl2WeKB9hBUb1u2M8gmQmpKNMG2GPdRfup7aGd57JVV78enHizLOS\r\n1MCGAopjocjYbtLETProzWJ4R1p2DMT3vz7wGDmgMKvdiAbTNjf9rbv9TV+5\r\nf8txzerVpYK2cV43BoUAEcF+ezZ4i4C4ahwcoMbANWEuB/woTjmlIc44gme/\r\nLgNk8nqGpA21f+IdszGJVrAgoltm4pXVDyo=\r\n=Rjye\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"d36b6d52693b45af42a7abd52a4ea125b5967745","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.37.0","rimraf":"^4.4.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.3","@babel/core":"^7.21.3","@babel/node":"^7.20.7","lint-staged":"^13.2.0","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.0","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.57.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_40.2.0_1681161265022_0.7712360868909156","host":"s3://npm-registry-packages"}},"40.2.1":{"name":"eslint-plugin-jsdoc","version":"40.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@40.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4184a677fc3a4347da1a8cb23a19b58ee9b9c60d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-40.2.1.tgz","fileCount":127,"integrity":"sha512-d7PsUMNqrbCROSAeJd2dhTS/DapYEJ7vo27g12u4nh/bLQHHcqXNbXwhANf/D5/gUDNwinU3ZmmM4f2alQ1ncA==","signatures":[{"sig":"MEUCIAP5XQyVHDCwuo9TFdVBS0zTUUC5TV6bomWVYxRrsqudAiEAhDt0KekKGWWMV1OURHYAAQOC6lZ1t0WqnS1oAOIAFWk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1686007,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkNH74ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr2AA//U6RBU10J8g9ztGVSv1un43vfuxcqvIze4R4G3YWTFj9GZiVC\r\noYY+kf0Wl0zgDqaxVEt+9YBbWNGkuRSbK9ZhUb41ipNiR/bN9pVY4kKEJDXg\r\np5kDdqvcXlYow0JljluSd7nNL3ZAmBtIaoAf1vsnuhi9NQQ+BZQ6jpK767VX\r\nkffERC/92q5B+37VJWBiRSrPzyn5VCODC6mOq94pA9p5R1W9x6ILDzT7p5Wc\r\n3A+FWeRdhWF1X0m7wpXw80SyB6C31KtSNf3tQGqHVf3OI/HLry27Yu7Fqzs6\r\nO2NtSCcFaQybET9Spk3xLlEptHgUhQP9zFIs1rsEgH6L0iwEkfIUlPMOUcBl\r\nt7zYICkZN513lDCRabPT714PH1+QX5n0kuJoh+3TCYvzdvZs6dcaq+nIt8Iy\r\nwW/jfKO1qxRjVIlql3gRE23Jfu/lggx7Xs+eMGYU1PyFh7VWLatcbVxZ1evU\r\ngeAXarwBj4e31U3Uamf7g9hCfPRljPjI22oEi1UkXMAJAY8M8bYqRtp2n6/8\r\ngELlfJgAogAS5/GnCT4LBGGS633LBdwOfdLSB0p+eiakw1lMh7vsv+f8p5Bl\r\nU2nOAacNkkvA+SOPB85mxaxGA+0/gIUNBE9eNeUsw5lIRvByVS7+bwypCcd9\r\nM511hWF4u2+sRKBMBdWYzwKpppwY3hDmT7g=\r\n=xXYp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"cebf94ff5f0231530264d57c1db2175b3934fd9f","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.37.0","rimraf":"^4.4.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.3","@babel/core":"^7.21.3","@babel/node":"^7.20.7","lint-staged":"^13.2.0","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.0","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.57.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_40.2.1_1681161976319_0.08343713380352247","host":"s3://npm-registry-packages"}},"40.3.0":{"name":"eslint-plugin-jsdoc","version":"40.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@40.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"75a91ab71c41bb797db05a32d9528ce3ab613e90","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-40.3.0.tgz","fileCount":129,"integrity":"sha512-EhCqpzRkxoT2DUB4AnrU0ggBYvTh3bWrLZzQTupq6vSVE6XzNwJVKsOHa41GCoevnsWMBNmoDVjXWGqckjuG1g==","signatures":[{"sig":"MEYCIQDhGJ4xSiDnbUURJE+F1TG1zqii4YT1xWcYMTpgwswZJgIhAK9fIOIbC7HLR4jud0RvlxGJcTcLnlS/u9ZhG8pmBTns","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1695981,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkNIcDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrY0A/9HUML7kK8gRq62WRcDQRNRA8VLcoyyH+JM/WIL4X8RmxqEr3C\r\ndT3wTG077URscBODW3ikMoP1Iup3IMUttpte2piGLIyKCQk3pCH9TV3fjFzK\r\nhxY9yZ55nXcRB6g/vMhBxdubDROnn3k72uVlaf+QXCzWJbjOAPwsWWIZVGmv\r\nx7vhxvPBkqJ9OpbrKhOAjjJ0sQXmlZQ/l2HTqfbGChTvRs0+zjCd+KRTCYrK\r\nW77a3v53dqkkL9B4k1Qz6nnPU9/Vhr642+1vKzw16f+wWQI+ivmJzFuxHSGz\r\nhusEOUg7glldkX1ZthS06Y4Ad4irqokkOjWjn9cFftcs/lg2mR2WXZ98rDRJ\r\nMhWQCfJxUMWiK2QBmXowuMt2I6iaz2xsZXjgj480gzTFLM3b/Js7uhsZBIHp\r\nBgguj6s11kMvEQMckojYPUGOHWD5Apy9DBOI2WN5NpBgNur7bre3zjiJ09Zg\r\nbAmXCP1smBkQ/bMLeIw8cO2o82XyQEzsnrKjCnktZGiMdw6ecBr6zvKOKpw/\r\nhgL3UxWVUA07njlRRE/LAO9UK84qioXjuCzvn3jzbx5k/odykEosVv+wZ/d6\r\njg/HFu8QOlTfxHHeh91km8PyvvYb8rQZCmmPpX7j7uuZHiWQn2uvuXNpWwC+\r\nsfy0ITPN2OpDA1vK7oBJnlT608a5onX73T0=\r\n=vMGd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"33628b4d5298b687288b2f3dcef58ed2215fd0af","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.37.0","rimraf":"^4.4.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.3","@babel/core":"^7.21.3","@babel/node":"^7.20.7","lint-staged":"^13.2.0","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.0","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.57.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_40.3.0_1681164034865_0.4894130198534188","host":"s3://npm-registry-packages"}},"41.0.0":{"name":"eslint-plugin-jsdoc","version":"41.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@41.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"67e5fc5768f70631bd6969b28e67f42ed98e457f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-41.0.0.tgz","fileCount":129,"integrity":"sha512-1diUsqS881pGCksfcZNs9L5fboYtUJTsvlfc/01MH5Qk6Otpw9u5ngN7HlaPykBKxYpG8WI+SoCPbNBNbkZM8g==","signatures":[{"sig":"MEUCIHYn3VMWwuQcmcnUU/Bcw7W2srddE9XTIvIA9X9p8/DhAiEAyYVB4axq1dJtS9mGojcM+bz41qweckC31JsoGYfaVEc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1698169,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkNXkAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrWpA//ePnRBao/LSnfNhHQ68GfI7ngZcgcuhx6IMirnQ04GvMhf+Bx\r\njZTzAkcTCV7r4OF9efUPpe1h597fNQyUs+1qDapc8osk3Cei3k/QiAfTGBFJ\r\n56iPc5W8xF8xPOr3paupiSShXjd2Q/am1K7vpU7XE1R18kYGNVu8tCBmX4Fp\r\nlIaJmIdVcoeRcUP+DMYvmwhrqnl6l5NRR7KHUykvUXacGc1TvmrXS4Bb7Oau\r\nVATIrKjtF+5yq8/dU03qGb4YJ/w91kWNzMAbSaBI6Atomf0oaUDR+iw15ZPy\r\nMgCxYYX6OERMP4ec8xOisfvDYoZf3nNl9z916QNn0cXJtxwp39oPT5rXb3sR\r\n+25y7WKtPODEU7HQuq393kFYr8Wo0tL4AUX30m9wehVx6edzcbGJEqo3MEiM\r\n4L3V3INWGUnHtNXgt7nCDdYQDgyDhyVT0gAndihEcHXhCuQfNC2hVWGXIw9R\r\nlFb/0sBMLXB2QdmXcZn3wg4E2rzXXw6WP988p8xLK3jt1rZpPmQzeLDz4/Ih\r\nRBkTVBCaRb5ZCBzgT/k3ACM2R+n3upeMDUY+NSjxw2CmWSG9ftzUAMuNcGGA\r\nx662yJg1JgbAOd8EopWbaVdvqYEGkJPvt2y6DzTro52vvbnMhwzNFKiWi1EL\r\nr5XmiRwDAk37fsZdgb2UG0SimqaMRWqihcA=\r\n=6Wna\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"f1ea35219e54e63e95755ff8d4d881ae0c199600","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.37.0","rimraf":"^4.4.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.3","@babel/core":"^7.21.3","@babel/node":"^7.20.7","lint-staged":"^13.2.0","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.0","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.57.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_41.0.0_1681225984646_0.7533321165096187","host":"s3://npm-registry-packages"}},"41.1.0":{"name":"eslint-plugin-jsdoc","version":"41.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@41.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"8891f79dcddca67e813e6b5ed1183f214492b41f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-41.1.0.tgz","fileCount":131,"integrity":"sha512-7nE0soOQfVhRNeV0pXTUz9IhdpBiAFNbRgs1W7TcPIOx+c4Qvy3vgI4848O9UmHrbrVUaYwpVHZvaXDeP0SBeg==","signatures":[{"sig":"MEUCIGeovhqGH2JukZBwAtfjYpmET9FIMMdoo3LosXdzmtYBAiEAviQANnPwHGCfvbP4RIpKaX6WzFikMa+iyYIX9CZah78=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1715506,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkNYNfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrLVQ//esM1oCiYn6P+h7wQJjqqvA5TjDJeQVjDdd0971Ae9iznmo7p\r\nF55iJp44qIHxOiE0hsfDbF7lh/nDYIYqUjHs1GcHOvSFWj7mcmEDw2daof7l\r\nvAP576Cwd6uKbRptmxVYiG1nXoSxAo02pQbd4SaDl8qkhkwsK8QuHI6lavFD\r\nIXtq7zR0cTQDb/npnJfhI6Ui4KCcX1bd14nAulzx669m7/f5LrV/4peLzziX\r\nRxIN3edFU8bv4Mswx76G4ZfKCAPR19C/a6QebHfWcuLYTRO+yvPdJUgBOzSB\r\naIRyyj1OQApSjLnwmyiCUMCe/hSAfSNXb+aqejdaAI/8G3OP0iN2mS71/Jbr\r\np6pP6J4hklDWPiu/awkKg+3FelFDz8eDAZeyworxy4EbXqVfIKcZBe2ITg17\r\nGCRdvPaEdqENKoJsnNRv6LJO2gxX1B168lJdNmWDjfpbVX+UFWERwvgHL1Zs\r\nVF9WN9u3sZ/RdnPTDkIEKB8B+Xkv4QcKvjX8ffSuvbhc74sudotvJ3hOVgmJ\r\n2tdMeBJW/bluM5IqsfjxVD5XAh2j629ajKZfm4ZpiPG5DCKQddG05RYZHr1W\r\nDpJkI9iZxv++FpnpgVhkMDvSR2rKcLENTs0/HpM859HPgoyD0uekPBNegh93\r\nhsNQDDVFGrPsURLslJBTs//jM1AhKfkWj/g=\r\n=BA7p\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"b7720038b5e04c11d6879c153ffca7b7589d2b5f","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","are-docs-informative":"^0.0.1","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.37.0","rimraf":"^4.4.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.3","@babel/core":"^7.21.3","@babel/node":"^7.20.7","lint-staged":"^13.2.0","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.0","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.57.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_41.1.0_1681228639431_0.2685290615342115","host":"s3://npm-registry-packages"}},"41.1.1":{"name":"eslint-plugin-jsdoc","version":"41.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@41.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f5430aea369c4eb69c2fdc4030e09eb79d5f0518","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-41.1.1.tgz","fileCount":131,"integrity":"sha512-dfH97DKLGtQ5dgEMzd+GSUuY+xX/yyAfjML3O0pEWmMMpylsG6Ro65s4ziYXKmixiENYK9CTQxCVRGqZUFN2Mw==","signatures":[{"sig":"MEUCIAO3W14iB7p74jlONP5ocdnV1GQ7vyIZpjdXkmO9pqbjAiEAjxqXwmn+VwmonR+AU9Kq0bxMi3/JjfeprUPd9IojU68=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1715506,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkNaupACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpeMw/+P6E9KIDVrzU8ZZCwUMWX9xUDt1oNJc1vt4BCbV83bhw5aLTS\r\nnL1jXLyqjYTRqVyKxFo3Cgd/aGpFSRGZMsp3a5/GhqJ+EuZqfzK4hjmAPD+J\r\n2NXz3mCmVQeoeTpqQSOjdfaQLJnoaKFfO61AdrlclOujEnrGL3jNCW+ae1TC\r\ndALDWMB6XftabUfzVszY7G9Jo3etJ6cIa9w59yET+u8/iWrsS9aVMER8whR2\r\nXdwEAbmTS/aMhkN21FNzD0XClG5ywKA4K3WLXdq96VxrxVqrrV8C7cZvs11c\r\nzkUpTgyTkh6GAtKOh58JuVDDZDWwWnhP5/0JrtpZV9s1iKCOFgjvnJH2WZW4\r\nE0TDky5BH1ujMoYgRRJTflMSCa481Yj/zfw2YCdiSxWyvK0ouzSoC/yHqumL\r\nmjXSX6cwgTe65om/7ES55VK4umIFPFiZkvWT0MkOYQqokAcUIAJeyo9TaZen\r\nxRX6P1FOu38jJj3NTP5vt19do8p/VLmRroSvOOP3SRGjEZqrxE+SvcxXgnDL\r\nzVavqaQM2ccX1r6FKNBHUehpQUjnTpp2GL95FtJdAftmdCcZ+sV2xq4oJSmO\r\nmmumWlSHiIlWIYsxUL/UlQsrSYPTgsTyJ0f21fTlVCJeQqrpkFfJJGL5WCV0\r\niRoSpf0F8iECyl1ymFMLipINsrb6QrG/Y2A=\r\n=2apf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"cd01546081a74763a09e70e05e032b5f693ea113","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.37.0","rimraf":"^4.4.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.3","@babel/core":"^7.21.3","@babel/node":"^7.20.7","lint-staged":"^13.2.0","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.0","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.57.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_41.1.1_1681238953527_0.36720927049638186","host":"s3://npm-registry-packages"}},"41.1.2":{"name":"eslint-plugin-jsdoc","version":"41.1.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@41.1.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"41d758a603aa59ae7bc34da88da2ca526466890e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-41.1.2.tgz","fileCount":131,"integrity":"sha512-MePJXdGiPW7AG06CU5GbKzYtKpoHwTq1lKijjq+RwL/cQkZtBZ59Zbv5Ep0RVxSMnq6242249/n+w4XrTZ1Afg==","signatures":[{"sig":"MEUCICMzF/zXJCm6U8/ul697JNeAlCN8CIsK3Hl5iD/hutuyAiEA6LNR00ow1KylnHbjUy+qmjwwfev69l4P9OfuUVhdV74=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1715728,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPMOYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp37BAAhbTvT1LUWX0JrPxYh2YRsDqoqpEDWmkhUssnBZlaYOyOAUQo\r\nLyy57dpzdN46KnrQS0r91xnkEc079uXkeFuilueFP4qQO8ss2dMpbpzyzMqu\r\nqAMSC83Gr5j3lkcbCXwtfm5/OyccMjGgwavHaddoiBhtxVb7qjGxzPF4AYQz\r\nhOwvZ7STp2D49LqfUibJB2AeHigcB+JFw/AxKuQBI35YxrwUDe47I2HuDgkI\r\n6PEaGW6d9Jnd8PMRofIEKqOvJH0Em9cwxTuonJYLvi6xcDgjHvTM04c4aWc7\r\nWquX5lhdVRZT96n/G/g0kmNbpxg1aPUg7vQSOMhKwTYI9auhpIGaQNWZlXA2\r\nL2LnAYiRp9qkmcbCuO/cE+Z+OD+/muBEJd03YpfgWm3Y0uM6kONi4+XbKLPx\r\n02nxEl0J7+pPOaI8gipgRVMiNYkYaM7+y+SpHJ7JIiIJODa+hzZ7sCvMgYz3\r\nvmoE+DfTu9LMpXNxny8OJmnK7rgsIw3sk+slrWWeiPTyTbOhfkp3SHzThngg\r\ncolGrtNe64EPQyY6CRid5eA8ywq/ibeabzjfunhjpoo13iiQ3Gzk+aHeBNKZ\r\nsReLQKBYD2+12I/T1G8Vhe6KG5CUn4zQGjltcwUWvCRoL9PznmEK7yWu+O8x\r\nvoo1Mx4DpmuQ6xtRRW8JE/OfcNAz3vHMu6Y=\r\n=WME2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"41d1cf355d594c7e1f7fe0d3fa35e9c03f9659ed","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.37.0","rimraf":"^4.4.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.3","@babel/core":"^7.21.3","@babel/node":"^7.20.7","lint-staged":"^13.2.0","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.0","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.57.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_41.1.2_1681703831875_0.22980070533687535","host":"s3://npm-registry-packages"}},"42.0.0":{"name":"eslint-plugin-jsdoc","version":"42.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@42.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"161eb412245c8c12c5729550769f0aac85ca9f99","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-42.0.0.tgz","fileCount":129,"integrity":"sha512-qXYr45G8atPKowZbIOdmABukMzu9IMjAlj6j5Fe0iuUItznWSXUDiBj57ejXcbt8bkPrg83333nuz+cqGKFgcQ==","signatures":[{"sig":"MEYCIQCTeW7wUeMI+jHA0dHy18bkkUrS5TqdRG2gTyiRGPsOMwIhAJc9z7PrdxlgIyliQB5ykyiuMI6+qBadcXF6Po5hPsY0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1714085,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPjUOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrv/w//ZeDII4RribBIO2IhD/LIIxBOott/9Djs/m0oX9jOXmLEghTU\r\nxFUKZCfKGuJIzh4OjGJlTuTJWgRlAcfhDd2XR0vsj7zsbLlkq9x8RsQ6cii4\r\nm/uYc5w+3yH/gw4jkC0O7Y8zMS7venLCTavTeeqBTEnwNBSxhtOAse3hOO/q\r\nqBHLwh0GIeMAgjR/WhriAXCXb6XvYCQhxINvH9eewGIR8A2nZn/PDPMQV5j4\r\n3uKl8Nks3hgglTbPQlkKjzrIpbb25eCwjF7FpC6SyTOb92NrAQbvtn/y9FiB\r\nncg4N01WsDjmfQ32ZbBAs6nqD2ZJD6ai4pIhIlPWxtWyVFr47ZlpPgtm5r8k\r\ndXjV8znDR0ORaHKv97/I8oP6c3+a1MUDWKJFq0zIve4qUJFzSkjy2dGDqHqW\r\nONnjiGJz4qLqtm+nu8R8cmTN68Iqd3ttxQLSGqoyvNeWWYvHIa+JV0N88Bx5\r\nH6P4HZpBfkX3PZj05SjGzMTE0oi0Jh5jh9K63C/OBKECPYFq845Lu2qwyNeR\r\n3AqCBn5gZtOnsLPxX5CwdOmqMKadrstC6FwVpXwQ/oOGxfnuTVQbRzxRkowE\r\nELcy8mI19LV2lzkfBvR8+giYJ93KKK3piQ9ljDxOq3jNZ+O8WuRc+/dShlKK\r\nxXGL0HnvmAG8ADCmErvde0iwXQ7dKi7QsRw=\r\n=g8v6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"9e96b75aad72428bdbb2ce2bc27ca42a08c30df8","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.37.0","rimraf":"^4.4.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.3","@babel/core":"^7.21.3","@babel/node":"^7.20.7","lint-staged":"^13.2.0","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.0","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.57.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_42.0.0_1681798413659_0.40206271117277925","host":"s3://npm-registry-packages"}},"43.0.0":{"name":"eslint-plugin-jsdoc","version":"43.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@43.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"279f2d45d5ff0d32a852f8f56aac3804fe906246","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.0.0.tgz","fileCount":129,"integrity":"sha512-Z1Ox1MAGcFV7ZNKe5eYIk4ALUtCjo1r4HBMoAYUs+bBKPcHro5A/YDDHOTsQ7zxcuUnm5R9rXCZTvGWcihwZpg==","signatures":[{"sig":"MEQCIBLjjnRIPqK1WpzNLmoLps5LRGShFJQmpuOfXDngOGIWAiBezXb/BlhxSipYxUSNhdg7X3SUJyzKlidaWTps3QDh0w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1747245,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPjipACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrq5A/+KplDJAdzu4eP/lxfj4IGB1vOY8IuRUxM5H21ObJoVY6o5Jtf\r\n+IqusT3Hk3CAyG+688qZ6BQE9ZNwFOiZ3EiDOvTil9UdP4Z4wT1XiHoQeGuV\r\n9OFy9rzNLMeAuWX1HTH3AMJ/lr4fY+ZLHThrroq5g7ImNMDqLA28DXoPHKjl\r\n/vQMMFzYRilbNZFmhBoFDsKGVqFDxII66meqjt0v1oib3X7LMw7t2FI0oaX5\r\nTs1m4m4ROevxnGltMGVNwJYSPmpNoFNmHYng5dZXdAPuC+NKDZ8jKcfmA88k\r\n/a/ZkePUuJ97snCQ3/hL3x/V/aIMpfDm8Wp/8o6xq5Q750t0Al5o5bw3MPoA\r\nph+k6Z6YpOKxeH95QULpLzhq/djVILcc6pa/C+Kr5BS9eWxFkF4TwgV0aIiQ\r\nAstUzY39uiJFj/8H0qm0XftZtUdkXS92FWKZ4dqjKRzylOeB/w92CQijeRHk\r\nuNKtOBplonm8fbPus2XSjQrBniuycniA8BqP1PYrH19ezNjdCwRWJL/SOXQ4\r\n2lLraQkUzlBCqnSVbQ4bv5zY8jRHA4EzfE9c88HByfjYRIQ3nn1zFfgfmw1U\r\nKB5vODfyIUWjGx0Gq6owPcpaIJ+c+Ta09Mdh/uKaDq3hOpupm7sNrMaSmq6t\r\nVdLu+oZXFaiR2Trse3tl93tky8BP9CyQMTE=\r\n=EQR0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"9b8c6534362fe66d561d5f0c40f13831675c8697","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.37.0","rimraf":"^4.4.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.3","@babel/core":"^7.21.3","@babel/node":"^7.20.7","lint-staged":"^13.2.0","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.0","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.57.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_43.0.0_1681799336992_0.44720933693078124","host":"s3://npm-registry-packages"}},"43.0.1":{"name":"eslint-plugin-jsdoc","version":"43.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@43.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"74b185382b062339be135cb408124126de14949f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.0.1.tgz","fileCount":129,"integrity":"sha512-0Qs+njHnaVqAmxWDLiH+Zh4qsO5O/x3yfU2Yb9ymfq/d/784S9NCm3MUSSI54gAvrvg66QUI56zM3Nidi7ZRTQ==","signatures":[{"sig":"MEUCIFil4zCwVOpyqI7qqEwvLzRCLO0NfCcOHchiBuF+BMRkAiEA9xGMOq9/3+yZjEi9ZDma1gw8eFL3rJAPjIVKcdv4Oo0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1747795,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPpUuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrevA/9G5OzNxXHqsN5hKcAwogZy5DvRa5Xtw8As3DiP3q3Jja9DcQw\r\ndHgaJKuHVWJ6JehpkZmZDPaUAnz79hJJq7RbvKha6XXK7vDoU2Ojg5H7O4GH\r\nEQrqwKopgO8/ZQMQu71cCPCRB7MIkj1FjtjKXx7w4FUUAuPdA9Zjh5C8XVT2\r\nq1pe7Q8J+BAAVZWVJbySvjvCJS86VWPnesu89FYMLzN4w7DuheQbFgjGO6da\r\nmhl2PT/ytBrvx+fPoRD/cYPAms9DY6zkGtVhWO50COhmbCIe/S8pOdxawrqI\r\nN37ARGaw/UozGH4D2AaPmpBKbCSe8ljP3gTFdLdHV7O3/FDxv9kV9bVtWNSa\r\nbypzfMOSxL2eGxrR5ohOXsV7ErlF3EGZJTQ1G9z496ZwHVIIUo/m5oatuYbW\r\nOfyDYw57U1zPhi6FeKV5xXsPv3B/fPKPDy4GRBhcFV1f6unqbbSlePt2uScP\r\ntn4HykiyG+8WcXoMhhis4YPQ1Nl03IiHcwbkr1meF47/LWeirwbh7yiUlwzX\r\nlxSK8vpthT1DjgzI3+FRAORzc6hGqv1aiCBsYZBLPez3jC5k5rUSZrEWejeY\r\nnq29uSLWa53Ip3E+dqC4Y0R/o/lnL8OTnHLmmqI67Pvm+mTbyBWPxla3Dtel\r\nD980vSn1wP8Xg8eyb73RP+E67pfaEdeN1vo=\r\n=2QM1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"9bb4bfd3bd973f085439e3d792db1e0820a5d72e","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.37.0","rimraf":"^4.4.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.3","@babel/core":"^7.21.3","@babel/node":"^7.20.7","lint-staged":"^13.2.0","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.0","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.57.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_43.0.1_1681823022650_0.17982462122671294","host":"s3://npm-registry-packages"}},"43.0.2":{"name":"eslint-plugin-jsdoc","version":"43.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@43.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"88a9f1c37780aa05f0dcbcb927a4733ad42da146","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.0.2.tgz","fileCount":129,"integrity":"sha512-WVYAR+ItgNaj58Q8hGP4FZB+ZSmPijxtSJK1+Nc3nB3ta0zsG+vkj+AACU2Xc0grieoJIW7k96In2eXnjhsrrw==","signatures":[{"sig":"MEUCIQCkhARDmLrHYYMr1LUE+HSdbKJEnYitNgj/XMIUp6toNwIgMqaDY2JUIOHmfpWPtMvhl+7qe3iFnZu86vTsw2mwjHk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1748114,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPpxpACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrtRQ//SVNp/upb3dVyfolwqONlZVOqpEz2MCFbbsITfFIwAAVVIDpW\r\nKzmaBlKyHzxpPn6/56gRVVYCMUsJtvErEKyIOkql42FrJJolw1PEpzEcJw0g\r\nlAhSkO5BrGAEQjhqQYP8KTSVsYMDOA4QMXp9WPaH1ovmmszD5lB+B343KAPt\r\nF1/MoroKBiuuxI8NgxEmB7S5aG905va5d+05YrgfqllIC5wUv4YYX5NEOMpc\r\nUXGgmVGvjmvNlKocQi7ksdxbZMRQypsPTg1nOxQe95g3SCIUVbAfZQLQ4xn6\r\ni9tld942rIxUiuKOZV+v9cgu9cWk8iiCDUUpmAJFQByfZgZfzjZoO/G97hhm\r\nEAS7DpPYWcC0XWsrI6baK9zrCPmra4KcyauWGrEuVtmYmXATKX70vv/qBiMq\r\n6WoTqWqzfv7YtWcjA/kG0s+eWmvlNIaa5+x8E2oOpCQeaJ0zR86y3/MwoCZv\r\niJcLQ2OnncmgxYwyFkVR9XrLfIouIRtLJRg/qgb1UF3vzJ0P/SDYtaSOFT/i\r\nnQlm+ZxzbOMweaaEWS6+mwMc5W0y3AcRd5P7LjsXl7uOiNQnu5tRZsvj+9ob\r\njVce5jcmy4kbkTNyfB+B7GO0mtCqANpAOHnQFC3MrcPi5t8Cksuioj64OxGM\r\naemkD4R3SzNpptmlAGrnKbf9DrKCxZ14Jck=\r\n=ux9H\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"a9cd1db8db305fb7b100a315d77417d99f2a989a","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.3.8","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.37.0","rimraf":"^4.4.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.3","@babel/core":"^7.21.3","@babel/node":"^7.20.7","lint-staged":"^13.2.0","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.0","@babel/preset-env":"^7.20.2","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.57.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_43.0.2_1681824873249_0.8457220279983362","host":"s3://npm-registry-packages"}},"43.0.3":{"name":"eslint-plugin-jsdoc","version":"43.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@43.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"df9ee9466241aa9a7713148f29aec1a484f13166","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.0.3.tgz","fileCount":129,"integrity":"sha512-tHlpaUqB8ih2IhQw7Es/R3Z3anQZVfPUb33nUAVOgIcMugVYyD1ZE/KXjjN8HxykZsV1IXqrKZkKpUBrEi3G9Q==","signatures":[{"sig":"MEUCIEgI+wzfvBZZdrmFhO/2Nvb4hiMfebkXBCKxFEWgUbzxAiEA7lu5KkebHC+M1Jc3LGXFsaGy9/NxLsdtm67sPprqFsQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1758592,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPp51ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqcxg//ST6HPYx2ysmWEPip1gck2Olmrc95v1j3aKnDBBIQ+jk9Jg0e\r\nXb9cGYwsuIAgfnBer4dW+lyZxzv4ws6/l973arDCMt+TOTPZlRub3TsL8cG7\r\nhClp4j6iTsk5wJEUfUkXl3a/7oL1e+isb3Fehw4dmbQiKlnXev4xVPzp9X7M\r\nkIJVvTu5MkYYBW1CJRR1RtgH7Axv6razinNzi38WmtYgbAzayEQbrhMOP44l\r\npLtwtlNeIcAVc9xvKOx3n5uKf1GhsO5JkdjlRMrjWGmOKGsyuvI6UuQQh4gF\r\nLlIFuP0MUrhn1EI7wXuQJigymc0rJ5cd8TbvvQjcPQsjb1RUVQIWscWFMfyz\r\nbApXbC92CwRyU/AwO2p+N3z9j1MgmhoZqlYXOoHymi2Rmt4iN7IOosw9O8Fa\r\n4XPjE9aa1NZ1yDHWzk0NfmMrAa2xhL0ivoP8RX7edLrbhQERzC0M7w1avuZL\r\nZyjzpBkqoDWnbuTTleFi8ndErDcc6xpzjX+/ljyh7LsxcECNMVNpzNdUyF6a\r\nNpkzK9s4Wi0hazJauP6/g5zAg9IBJhhzqWonzX7uqXtVCRp78VlAUmazCVgZ\r\nhlLPSvTUy8pkN3tJrpVFnR9/rOka6vL/dD/B3fSzCaTDEmewo1MrO7l5xkSD\r\nfH59ZEnaLqq5mTWEWOK99a6Nc+cgN/V7pFE=\r\n=kYjR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19"},"gitHead":"ffef25416306871436fa832f1157c5c1b6d65bf5","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.38.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.4","@babel/node":"^7.20.7","lint-staged":"^13.2.1","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.1","@babel/preset-env":"^7.21.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_43.0.3_1681825397610_0.4069848791980979","host":"s3://npm-registry-packages"}},"43.0.4":{"name":"eslint-plugin-jsdoc","version":"43.0.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@43.0.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c986f5c0d71962d418110fb37d7e788a68d4d1d6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.0.4.tgz","fileCount":129,"integrity":"sha512-lFG2+JG1Ak7XxfIjGq2mTqfOLMjhRt0UJ+3hlWsAbOk6dKe8ylkDkCsUtION9H/BBx7giLl1fxcjGGD6XKlOfA==","signatures":[{"sig":"MEUCIDuxpwyp0DSNfzQ5aXz3F5QHPwnWX/oegrOmNqIaKOkFAiEA6QOzYJ42COm0m6t2u/WmEn5QCmAvkhank+AxzCaTmJo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1758577,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPvSqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo/5A/+JmIQuwg8C3fMMxDKw9qXr+dPcDwkbxdbH6Ocbyp3SKVr9rSf\r\nQMGW+ajnXfDZgr5lZAVrvGfG5YtOYFx8cPVkKI8oZz8hgt0PS8f4jXmsz0AS\r\nVyNMlcD41OODpUVidtvhsv/gCblPOMQ4gTpvDaLQdPKVERCBr444JwFbcnRB\r\n0JkRQHjyq8dnOtUFTRGxkTZEsytZSzr2TiEZMPyckCvrWZtWx4gXBWGxAZAE\r\n2su8DtKjiQT/oUNr7Oz9kJrREVF3a9pEpXpoMKfELYguXVIuQ0VExWKvPXKY\r\nlsBHET1D48nTRRS42g1jGlzAShYAUj1rMv3W1EpqwjAaJkDk8HW7bfgd3L1D\r\n7iShWi0Gd8kqgJc6N92KNPA/S9h8QUAsoC1u73yyj0bDaNWDSMPMK2bdi0oF\r\n33Tc1LzujwI6fepDITZQSLvQBdf6zZcmul2auV6S04Nt8mO9HHHdEe04Q4Dd\r\nOcyXcq93KMWHDLh+ShBuXhB+ctJkrMwLbsQOCKCfstI9tANPUXD2w1qSUkMX\r\nqqXVDQ5AWjlYNzFX5cPHbuMg7cQqK65vRn3d1jfXZzvX18TlvZP729BZu4FM\r\n84lAcg0SDX2qf3J5tA1T4FlXSys0yOLbKkev++enfDKMANMpxwLFqD+icmOd\r\nVe6WlmFsK9RU+UtGZF2zAn05aFtOzE4XnQU=\r\n=Y2wP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 - ^20"},"gitHead":"eab4fb4574027e2edac8d70dc9501a2f8d60bbf5","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.38.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.4","@babel/node":"^7.20.7","lint-staged":"^13.2.1","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.1","@babel/preset-env":"^7.21.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_43.0.4_1681847465764_0.3343167984429154","host":"s3://npm-registry-packages"}},"43.0.5":{"name":"eslint-plugin-jsdoc","version":"43.0.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@43.0.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5b19487f6bb8d9cda64eafd992f8ec190bcec043","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.0.5.tgz","fileCount":129,"integrity":"sha512-4+hN5jrwcElXwK+J6GiUYbgHl+C063lu1gR2ajUA1L4bs+rBsAoV37dP2gISfqzoU83VsY1/sSD4wvH87JHCsQ==","signatures":[{"sig":"MEUCIAaySsdsfL6yKmv46aVNNO7zLzuxDmV9tXQebKk6tHopAiEAjG+4JNue23mus2rnnagjIgf//bAnxywwtXhi209yAZk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1758599,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPvidACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpkeQ//fJR1HSIqRgUxALra2XMiU0aQ9auiLu2Z4pH9J6W9qYPmxANy\r\nvINtYfxvXVCKaMka2rO9fOEbmygINqq7IvGGfsqgLQkzwKYj0FPT2v4UdYxZ\r\nzZxxegML5Tc3ubwMcjxObnf1+AdtEuulkJniCpNt5gY4gHAQRSjsrnHLhcp3\r\nH4y6hIn7kJ0dtWhsp3g9VIPUufXCeJzdp9AW8DSGNuYP1rGa9Clc1st0KqYC\r\npBiHJcXaOVft36zjju1oSVUteTdiCFhCUvrxfvteWPcsfeYp5tiBaMSCYSQ5\r\nTfZjdMbFytafzUVNlZkrB/uWiZmA0Ovqb+MbBXRx5uKkKVBLzf0nML6LTgM8\r\nFSePCL3IIcxlPxTtn5pR+XABOemfBp02HuHW6+C3CYBy5XUn9F9JL0bjcOxx\r\nwfggl4MZpgorpdc8NG75XH8yBQwvNa83VLDmEP/ufe/aVh3sYo85gzL0ZGt/\r\nFBk6Mc4yWS5BuQiKr089j1fZ5PEakGHwiJNNhwCqpc6XtxKT8wm8OkGe0J01\r\npX1SSoIXLpKTeDpURO6QXm9ddIaE+X0ZmDuVbFyBOSp3WH7Xs1qW1XeoTwEp\r\nU2+dXrRE/Rk6/dWvjodMc9rtipPvzb6IZJh79+Qn+ynsnU9/Lb608H2eyY2E\r\n38otJLTjBmSEwn3DCJWPtFi0WQHKo7e41eo=\r\n=xMNv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19 || ^20"},"gitHead":"cf1d88502f0a6e4673dce8dfbf44b9edf43aa030","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.38.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.4","@babel/node":"^7.20.7","lint-staged":"^13.2.1","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.1","@babel/preset-env":"^7.21.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_43.0.5_1681848476741_0.803766275250851","host":"s3://npm-registry-packages"}},"43.0.6":{"name":"eslint-plugin-jsdoc","version":"43.0.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@43.0.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f04e517256b1f2c22295a452dc1dcf11cd4694b2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.0.6.tgz","fileCount":129,"integrity":"sha512-EJyrcIY4e/e51yzLLBpYX7/Ld1+08Bl/XparwHFTmQ8gUfir4wEmY2c/lj91k9+/8auKeNA5ejbyaOl42xX0AQ==","signatures":[{"sig":"MEUCIGaG04qErpFGJ3l7nfnXbXfGh+12OTLUtbv1rUc8s36gAiEAsANvWCtpTRbXaZ9PA1iSyB30/fUOtvTA1sIWd4gqgho=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1758599,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPw+iACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoU1xAAh9+gimAL8QMUdApFASuAFBdgANNkenX8+x6RUkI1cK4/ETqX\r\nN/HWJ1aToRDrRoLt21li0Uzg8mbcjkjxVwk++ffp6ID62GS2vTsKBNGkVOt5\r\nqWgXU95GJJVhIZ3cHQvZn17rh5vBobe3uOSASaGXFIVdxnuuBpuFecglE6fr\r\neLyGdhyMfe+pQRX6c6/Bo/QLnxKfmn0FcYHdyupRjMyumzHdbbQ7UInalULb\r\nNyVFs/vSQOG85yFO+XMRYmRiHyhisOPzsrIrBsEs6yb3g9Zuwx8PU5w2Yrvn\r\nH91+jSWmNI0XPNjvohtAqXuuDMQIuByzvx7CLeTyLUS/LGzBKgXKfSLE9hKd\r\nYCRSKwsF/bOMzyT9pX9l9XnoI/dqwgjPdSYw4IjVFNjAZ6uAzb21P2UBxHqs\r\nt8PUGSFxB57d1Gxdot8FQb9dDcWADKWY4qlClLvfE+P5CnLgVahXFV5osOup\r\nuVOfD0KFzDT/8xRDJH7yEKqbg+vfVaVm8PZ4Zhs2G4fQWNO9K9f1x3+ZQw54\r\nbVw0f45cRrVAa5SexzlAC4KRCT4oI/KDYshwrX/rMG4NHCweGHzeN+QdGOM+\r\nYzSlllhZJmd3RQg1XmA65e5B2iFZaJwgsASqDroX+UVPYkcZOVhbK8AM21f5\r\nO4rcbQUG4zgy0Od+eQzZyt5puGS9jJepoxY=\r\n=/F7b\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19 || ^20"},"gitHead":"131454f6998e1326563a3b25f34c6f7012b4104c","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.15.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.38.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.4","@babel/node":"^7.20.7","lint-staged":"^13.2.1","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.1","@babel/preset-env":"^7.21.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_43.0.6_1681854370193_0.8411272707840576","host":"s3://npm-registry-packages"}},"43.0.7":{"name":"eslint-plugin-jsdoc","version":"43.0.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@43.0.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e15acd04d702e089867c78391ae172e34bac8364","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.0.7.tgz","fileCount":129,"integrity":"sha512-32Sx5I9VzO/bqbtslCu3L1GHIPo+QEliwqwjWq+qzbUv76wrkH6ifUEE0EbkuNEn+cHlSIOrg/IJ1PGNN72QZA==","signatures":[{"sig":"MEYCIQD0wfXpUO9X6zG+WWWXE8cMRaRpkq6vCTdO2Rbc8wlNTAIhAP+7baRMlTSLyUvWAdZlZZulJc3E4PLtOO+EbP8qd18s","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1759158,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkQV0WACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq3jQ/+Nyut5DBDstb9dmbUcZasitXVL/StO3cBB1twmqzgwapLwTIV\r\nJo+vXxglJNotazb9a3iNYoGd+q/9AyWR2W2fgIWTlMltD1AONVL/CTu0ZQNL\r\nTJ1zPID1kYn+mAxzujAdw78SfsW8/orHk8k34M6EsQYitX28W+trjIcvQl7s\r\nYVU9K2LiPPkVv0rp7DaA5kXPaNJBJ8We9HmHcXUgnzGpinEOV1QJZo9hfDNn\r\nw8xMQg2uL7gJUfL+nWI6HmeuZKJ6SgynMRVDQFHDRJINfq2V9p1MW6hyqYdZ\r\nxw/01Ih9n869GwOMjh9X2awsTBg6ib5iPTpaW+MMk1ZFtagv4vIWMPJoEMxQ\r\nYdMZZ8B3h2jdOE0/hCGT9TbRn8b7SWFg81CM/uVSq3DIWvUovfFmSufNn0FH\r\nPf7KM48Q47QjUBc03nT9E4cU3KkalmPioB24HnKFlo01eWUYOKcP0L1KmqtN\r\nL/uSfIAzJkBk6fq//p7hzi3lBoFvmjtGw0FxiBJzGkh/XoCyaeo4zo//CgUW\r\ns2NRDOXETLEHQ1c53wflx15WXuJHAfiWlHsF+7iX5waEpjb5jfWHXXS2iD6E\r\nUE8/z7uxnmheWzCfmjnOoxOnHcg60A7FoxrVnvswyfqSYb6X2RKCUqLZw0eM\r\n4FEVgOLQqb9oo1NVUthrleXwpaaqY79aN+k=\r\n=h+OX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":"^14 || ^16 || ^17 || ^18 || ^19 || ^20"},"gitHead":"ef02d5b5a7c385d83792f1d3c6ba6f472c7abc76","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"18.16.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.38.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.4","@babel/node":"^7.20.7","lint-staged":"^13.2.1","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.1","@babel/preset-env":"^7.21.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_43.0.7_1682005269683_0.054377677236488564","host":"s3://npm-registry-packages"}},"43.0.8":{"name":"eslint-plugin-jsdoc","version":"43.0.8","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@43.0.8","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f893d1a448dec2a007435c3fe1abf3107b1e7115","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.0.8.tgz","fileCount":129,"integrity":"sha512-BUimqjd9Iq7HDDO1BEqwDlUx4idDP3y3IPg3xjqYfkufMhY2Kj6xYgwBp0G9Ch71ECWSiaexA46WOxPaAEVFAw==","signatures":[{"sig":"MEQCIEMEsOnNYj8OVZrS1FDL/yk1WLtk0NeVCIUi9jDQ5GZpAiAPQiE4yJgn2mAZK66cp1hgzM3+YhJkLNXSxpzj4QyQqg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1759303,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkRqtLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrGlBAAmcoSHYoJc6LIsBdiVzir9u8l1aZ3olzoEm/+2+ZYBlr1mDZn\r\nit2LbdsK0aP4pG84oXiVWn+pK4FXJXdWWgZGGqQoHBcYRnQ0cP6VCdm53IOO\r\no64IyFXdvQVUx8BE1aO4Y0dJVKOtRHxpMmWuDQAS82gcacr4+VPbyZpgURqP\r\ntDLFD8Vbk+9kx+HzOagcdLKFj2AJ6OOudc9Aefy6Iuz0DGjDLPQf98wlPbF0\r\nCYbojo3SU2qwx7mq2AKOzII5gUmNSwbcw+UDYfTjF6Ac5eIdLoAml0cVin02\r\nC4XF6r4W08oMfvXmaqzlUXe/iEdckuJiMgvkhCxkgiS1924m7Sizd5nPSb2T\r\nuIyoqRiQVrgT2xtm8rwwZ0zKt3lg0tarOmor7t5nItgyMNXf/cb9c0z+Bh2w\r\ncmSD7PtYEI/WeUC7i5A+v9Eop/PEXxJhrk4q+vl3+oSfANOq7lxLCVGH6a3N\r\naO7uHzlrTFLywRtQ0k6GJUy+OfjpIacYs2+jKo1EkVriRo2k7M9DNsDyCXRa\r\ng+shCEh2fm8ZsxMBEezJ+2ZBeV7i+QkVORsfh7yOx8YRDcKkATpWGFMfXwEY\r\nIVy2IRYCukB3Z04Ze2nPwlYw+OzPCS8mHgsmVxwycjWaDeQQH2oFIW5EthbL\r\nnzvtJqtTLJ+JrA18TuuD/Mx5lovaTakV84s=\r\n=eZyX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"f3faa251ee3e015bc5162e6b8da4d91212684e85","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.0.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.38.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.4","@babel/node":"^7.20.7","lint-staged":"^13.2.1","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.1","@babel/preset-env":"^7.21.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_43.0.8_1682352970904_0.9184018748561602","host":"s3://npm-registry-packages"}},"43.0.9":{"name":"eslint-plugin-jsdoc","version":"43.0.9","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@43.0.9","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"def36ef21b3912b2d16525ce7845e1a07b4fa738","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.0.9.tgz","fileCount":129,"integrity":"sha512-YRkBJJBHDZ5SZk2so9pPDng+CWFRGAB2OTWFowvq31EwbeM0JX9gEJv3nLIviksp5tWD4vEN5/BrXrnm8B4G9w==","signatures":[{"sig":"MEYCIQCb/WN4kUKC0u5JwEyi8URE/eJKajWi86RSI7sYxWk9dAIhAMx2jT61hY3aQmVbCrtLCIS0llJ0Yd+WTlDbGtUjDvdi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1761068,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkRq3aACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrXPA/+ID5+BWHo/k7/jGREeRjr/kQ3CSiYxRbpgLfgj7ZIebIrZ8q7\r\nv5A+HlKmRSc4ZT2hjKn0bDcMq6FdiBxUKgHZoX4qLylok2Al0T2Sr9dy84pa\r\nkiDy4jgrorjir8ZahTtko7HRgOIJrTFYts1uaHEFfrAo3Bsf5esI3o3xiFo4\r\nhdmOmig4t0kcYVKTlDTNFKLefGsXGiSIqDUWuOeaXFNF6KIfxLcKfU/tMtX9\r\nym81hJDd7DokZFJRGZg+j4IuXzn+6w21YUQd+wIsU+42U1eohZCmJNpW+Trb\r\n/l0olr/LbAt3CAZmWHeBXK31/KIfUIaQ5i1m9PUZfQmHpBVUj+kGK7FSqf3X\r\nKlfO2c1mTXR3/8TO/LTSi5foa1hCmYPsQFDacPLBredwcMxepuHCbyTkxJV1\r\negwr2Qb/lssqk9Ovvnab7KGZhhUeBiJ+xqKB0VcenhfhN24OxxZBT53uWeL4\r\nXOuYOHHzBThaVWFpuXlhj8trzfV8hMLBjODBAmPBueV8let12KDuzMAhCsgn\r\ntfN1EvImmkLZXVUY1vd3SoSP3lJEWoOnM0VI7jK0TSQNYWejlKTeoQAHI/0V\r\nZk7saZl/jsBbP/sa+Ouu7gZydi7Dad7kif/+CtH/3sqrGti8Gy9If33ZzSoG\r\n3E9eO+8PWV1qL0zOlCOb5LKGz/tZ/kIXAOs=\r\n=oYUu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"ee2bae38c7f712f45f9d9e28b4da43514083e276","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.0.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.38.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.4","@babel/node":"^7.20.7","lint-staged":"^13.2.1","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.1","@babel/preset-env":"^7.21.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_43.0.9_1682353626211_0.2642298490874231","host":"s3://npm-registry-packages"}},"43.1.0":{"name":"eslint-plugin-jsdoc","version":"43.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@43.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e4e685eef66b17d0b99221e5933c9f179cb2fe94","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.1.0.tgz","fileCount":131,"integrity":"sha512-TIeaVIW3nu9/dCrx/W5+IUUyNHyYP/dzEd4JKjxfhCFjEA6D1KmNFr00ykLxHcTeHsZs02TbT3CEA8Coen3u8A==","signatures":[{"sig":"MEUCID+jgFxPNzl8c/X10B/LNjtjrO8Rs08bkUFAOZ9NocMSAiEAoUolCLpwLkoSuXWrOCCBlu6pgpKkcAJztRq3WAFlK48=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1766988,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkRq9rACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpB6Q/9F8lnbwphl6pif5a+L1ZDXvrrPNNoIZavfRBIcM1/+Abbcuw5\r\nOiYFk6PqtJAA/dI7unIYwpwWOwT06VUNuKyfalAPVMNacy72QROaokvh9Mfx\r\n8lKBkHg/lUHyAxV1XPWTXSr24wdr+mrQKO6CoXYWfZi1K1ydpcz1MZ//lkxN\r\n3Tt4Mzk3z7xfq7c18PBsIxNkFIcCHts22WPsszhKoWcq1Ei3DtE3tUcflw7o\r\nqShb8aQmrWEHd9Y6tVCePobq4eXWXyKyFB0Z525pJgG/AzpUU9mnwIcKESUi\r\nco8sHDtqlsZAoVRaOQuycwiXi3sKlkfSCg3shXek2ws0I9JYi/c+3yR1NPop\r\nXB+Dy5gxo7qeNmoyyJgeSV9ORyhoE/uL4irby4sPkCLDw3ugkWD4lON/ODyx\r\n3MyHjblWqYS6NRZJi+GMBwVYtd1rYoeX4/TxUawzhiatSNYleltQL//vodVM\r\neFkTnVGzSLuQYzznYkrrJAPSjuSB1GaPzQkc62xYi7DJ6rX8V8nMq9ZkF6zs\r\nPhcjLwK5Jt3QnDyI6Q15vIKmvLVa/HA/ZU0uIAbE6lc2Zr6RqWYmjwx+LDtH\r\n2gMqQKihl7f2DFCEdNQs4dZHm38/YSmsvp0nM3e99tPQQyoWZoCj45KILIy0\r\ntnFqRJ5hpBz0X2mMKI5hUCYZ+naHXibMA/E=\r\n=MD96\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"152e8c2debad7943c8854c3b19dd4bd938910928","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.0.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.38.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.4","@babel/node":"^7.20.7","lint-staged":"^13.2.1","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.1","@babel/preset-env":"^7.21.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_43.1.0_1682354027105_0.7871089054471254","host":"s3://npm-registry-packages"}},"43.1.1":{"name":"eslint-plugin-jsdoc","version":"43.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@43.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"fc72ba21597cc99b1a0dc988aebb9bb57d0ec492","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.1.1.tgz","fileCount":131,"integrity":"sha512-J2kjjsJ5vBXSyNzqJhceeSGTAgVgZHcPSJKo3vD4tNjUdfky98rR2VfZUDsS1GKL6isyVa8GWvr+Az7Vyg2HXA==","signatures":[{"sig":"MEQCIGDcvXruo0VaPnoqqnCq+agEuJhei3YQluoiEbDfMEHyAiBTuPc7uKCVHwjQ/Li4LY9Ca+n8JyUmFPKZSV7TucLHmw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1768202,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkRvzeACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrpPhAAliQjKCEtwpVZV1cxhEXE2Ai+/bPxZBDoYBHY4A7LBJ1olMCV\r\n8AOqz92ddHndWrVOejIZdszIedPX9611ixv7AgwugfPbarMMosHBfjTIfFW5\r\nGJqhfA0ch4rQj2oO3raOlPEYmMG/G/GHs9NRybnSnBOtAnEprN5FEFOj2K8n\r\n4F0/d465XeSnTwP2mEyn9NJcQZxJ92umRLWTXnataEQOAXySuHvUebvg8LXX\r\naQ3gu1GRwPDcUmdmBuVIiSF4AP9Im/MNXxE1NSYCgzW4XKi8PD0/p7f7FhuD\r\nKuDh3pXKzWgUp513hJ6iBiRxhQieDUXSXkI8t/vLP7FO1AtIiPkbnJA5JfTo\r\ns4WlFOyRKBzMsngxw2/byehXCMsyoee2nZHDjilwitUBQoknBEYdNEr0vBbq\r\nfkpkpeiTUuA2ZbkHd/CnKpjgH66lpaEob+GcfvAFRl96ANGiMV4TCD+u1FQX\r\nrAb9sLbl7r7ltVuhMh5nyvesWz6P4txlMD9DoccSJPXlgRT+zKWBssFzkn01\r\nBFscECE1OOB6f1vC396r5UB1F1JEUBq09zMUhuXJV/mkF6tlh4TXpjfxrso1\r\n02x9JUOGfZrlPQWrPyfj5VWTaYbh/VsX1623ZpYecatPag09FuhZKyNvPpG5\r\n6CHR6UbGFMxNAScLh+gJdW7xJ23GhKMz76w=\r\n=+g2+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"4f3c48eed95456513c53eacfe61ab5451da1c698","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateReadme.js --check","create-readme":"babel-node ./src/bin/generateReadme.js","install-offline":"npm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.0.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.37.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^8.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.38.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.0","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.4","@babel/node":"^7.20.7","lint-staged":"^13.2.1","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.1","@babel/preset-env":"^7.21.4","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.3","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.0","@es-joy/jsdoc-eslint-parser":"^0.17.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_43.1.1_1682373854156_0.0008143057388458885","host":"s3://npm-registry-packages"}},"43.2.0":{"name":"eslint-plugin-jsdoc","version":"43.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@43.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9d0df2329100a6956635f26211d0723c3ff91f15","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.2.0.tgz","fileCount":185,"integrity":"sha512-Hst7XUfqh28UmPD52oTXmjaRN3d0KrmOZdgtp4h9/VHUJD3Evoo82ZGXi1TtRDWgWhvqDIRI63O49H0eH7NrZQ==","signatures":[{"sig":"MEQCIBkW/jjlJ6pYSM1/BlDbrFMrhPWf+j+3y+NAsj2SVZECAiABHSDtmZebdd0cUsWjn+iShJZKpZostBxtM4uawjiffg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1804918},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"60c8d2906aa2bd515ef1e9e78b6c952da2dd8825","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateDocs.js --check","create-readme":"babel-node ./src/bin/generateDocs.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.1.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.38.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.2","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.39.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","lint-staged":"^13.2.2","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.2","@es-joy/jsdoc-eslint-parser":"^0.18.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_43.2.0_1683299594726_0.5466176907405458","host":"s3://npm-registry-packages"}},"44.0.0":{"name":"eslint-plugin-jsdoc","version":"44.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@44.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"87c2277c8c0b58fb79e86ddaca482e205ca0bc73","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-44.0.0.tgz","fileCount":185,"integrity":"sha512-UZ07io4GFaD4awLJPuo0b1Q96ll5kJjwo74SYo9pprUww4BVeVn7EVslU5G6FcfGIfV+kgDLfYQQFODZgicWfQ==","signatures":[{"sig":"MEQCIC0txQigM2FjNoIyHqtbymbUV1J2o48CQbkcFlDWJFH/AiA+r22oVBQ9UiFSKJTpLN6bnjST8+sMYXBePzKy8JeWxA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1803603},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"055adf85c437a2c125e7d642c54080f430f2ac7b","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateDocs.js --check","create-readme":"babel-node ./src/bin/generateDocs.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.1.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.38.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.2","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.39.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","lint-staged":"^13.2.2","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.2","@es-joy/jsdoc-eslint-parser":"^0.18.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_44.0.0_1683495689734_0.2583271037283199","host":"s3://npm-registry-packages"}},"44.0.1":{"name":"eslint-plugin-jsdoc","version":"44.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@44.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"72ad8a9556362b2007d23bff9ac218685953f087","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-44.0.1.tgz","fileCount":185,"integrity":"sha512-EopZJDIDSF5hXodoWz4dR2NyZ5xU5Obw1T4D7GFzjqIhMCFMz6S/Cl5/jYBYlZkGl3h3GP5S6xAZp6C5jlUs9g==","signatures":[{"sig":"MEQCICzNwz7nnAUguGEQlg3baAFTA1HBAdKE8S4PPMv/Ny/1AiBt41UsSSL7WFBhzpi7F/q1lMmYIxMJfd5jnXHXvqNhaw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1805741},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"815eb00aa3e0e3d948665f85766f0a938ba629aa","scripts":{"lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","test-index":"npm run test-no-cov -- test/rules/index.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","check-readme":"babel-node ./src/bin/generateDocs.js --check","create-readme":"babel-node ./src/bin/generateDocs.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.1.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.38.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.2","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.39.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","lint-staged":"^13.2.2","open-editor":"^3.0.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.2","@es-joy/jsdoc-eslint-parser":"^0.18.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_44.0.1_1683575019749_0.22517772181982298","host":"s3://npm-registry-packages"}},"44.0.2":{"name":"eslint-plugin-jsdoc","version":"44.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@44.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"719fcd78336b7315f468fe1182ec653d5ce79d97","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-44.0.2.tgz","fileCount":187,"integrity":"sha512-QgYuo/dd39eRrijoD0zGEMgP1y/cx3IHwdJue4PJQcBivItH0UGxu12MDajBBj1CxAlVdSl9lLOR5KQuu4kYHA==","signatures":[{"sig":"MEUCIC1MjwRC6FJRAUGrp0uDPCqCIC1sGp9kjbp3hZ+x6JUlAiEA38RSeYbPIOI8vISW8yxbue1msmOhSTPZH/kGmQ9OIIM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1811628},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"7016f02b4266da69e93313d5f48ded3cccbf4bca","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.1.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.38.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.2","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.39.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/node":"^20.1.1","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/eslint":"^8.37.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.5","@es-joy/jsdoc-eslint-parser":"^0.19.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_44.0.2_1683639454115_0.5174944094107736","host":"s3://npm-registry-packages"}},"44.1.0":{"name":"eslint-plugin-jsdoc","version":"44.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@44.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"3f219a330f25bdb30190de0ec028dce7a1e41c0e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-44.1.0.tgz","fileCount":187,"integrity":"sha512-tMIdZXChUhjK7YUsilrQjUOerLxxq4RgmHcN+Q1Hk+SroG0OHjZMGRcLkqE0+82/qtwCay+S195vllpUduP7UA==","signatures":[{"sig":"MEUCIHS+X4Dxv1wJ3YV/pg5nZ3j2ieOfrX1UsMsBEYoM5gpIAiEAjGI5NcQwAQ3OruWHEZKjc4pfOum6+x6ol1pzD1tMqho=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1813116},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"3bcee32ef6d8081f6bb3f811ef06a60ffdb1aa9c","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.1.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.38.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.2","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.39.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/node":"^20.1.1","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/eslint":"^8.37.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.5","@es-joy/jsdoc-eslint-parser":"^0.19.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_44.1.0_1683672550763_0.7814569558492759","host":"s3://npm-registry-packages"}},"44.2.0":{"name":"eslint-plugin-jsdoc","version":"44.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@44.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"38d79c133a5d66b6c8812fd28b07741067bff4fd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-44.2.0.tgz","fileCount":187,"integrity":"sha512-0Mg0KES9z7dpgPTh+uAp76f52GbVthDUzjn7gYr2ITf7POlsSFZT06v/Y3U2Sp6bXHASfGJlACce0pX/Fjq64g==","signatures":[{"sig":"MEYCIQCFI1Xg4KoUoucWS9pAsQymzr912MY2Rd1TqKOqg5hurwIhAM2X4fmRXn2OEJSJGnRo2W37hNAaTgQokLgKa9X5HrsY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1820361},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"c1781d2b4a8ace2647fa38ba57f14691fbfc88c2","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.1.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.38.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.2","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.39.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/node":"^20.1.1","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/eslint":"^8.37.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.5","@es-joy/jsdoc-eslint-parser":"^0.19.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_44.2.0_1683718523722_0.5351509599734694","host":"s3://npm-registry-packages"}},"44.2.1":{"name":"eslint-plugin-jsdoc","version":"44.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@44.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"cbd0e135ce06d44dd6bfe086d926d771bed12e17","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-44.2.1.tgz","fileCount":187,"integrity":"sha512-P0cxjCkO0dPZFeTWvCtuaa1rc9tjDQ/sT6iRMjmy+hvhei75eoggsze9DJcGbhxtdFpxaHWkcJZ3/ntiQKt2Cg==","signatures":[{"sig":"MEUCIQDjjXwBiNdU70hfOM8AElbGvFpDMHetqnLjEKn+1JlKywIgAcQqXRLDJqdDwfZMNyfCi9OPOmmQXeKssLHk3pRwuvQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1820355},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"e6b6a85a92938d4ea3f971382c669da4d952d554","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.1.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.38.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.2","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.39.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/node":"^20.1.1","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/eslint":"^8.37.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.5","@es-joy/jsdoc-eslint-parser":"^0.19.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_44.2.1_1683727111209_0.916511548363274","host":"s3://npm-registry-packages"}},"44.2.2":{"name":"eslint-plugin-jsdoc","version":"44.2.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@44.2.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"03173405a6b7570b1ccd92d5c1575e440b3fc00d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-44.2.2.tgz","fileCount":187,"integrity":"sha512-LgzBwBfAbQPhC3vRcH5mkus8G7plr8kYFldgPtRMe55t7hjLM97luCBnk6VnAG/Ski4vhNPiX66zlDdgL21mog==","signatures":[{"sig":"MEYCIQD/zafAcnwioUjkdehuQ1Fyo2hkgd5UiqVINNU+T4k43gIhAOmzEyNWoQkoMekgBZNE2S+2TqObWHG5dB/jeqEWQjhH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1822324},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"52119a59e70d2d255e0f475f0fcd0bf780d0acd2","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.1.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.38.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.2","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.39.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/node":"^20.1.1","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/eslint":"^8.37.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.5","@es-joy/jsdoc-eslint-parser":"^0.19.0","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_44.2.2_1683736815138_0.3522284422067068","host":"s3://npm-registry-packages"}},"44.2.3":{"name":"eslint-plugin-jsdoc","version":"44.2.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@44.2.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d2c1b0ff76888e22478d92862a07dbe25b204973","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-44.2.3.tgz","fileCount":187,"integrity":"sha512-Ut9jL/170sMKRRFX7P7Ecmdc9XkPcANZs00QWG+VeMN/mcs0kzE6mXCmbhB4EUsLtRASLRAasOwVq0GN5r0oKw==","signatures":[{"sig":"MEUCIQDT+pNd9g7EkoVfF236TLPIT1X/pTeafpGPCgwxMV5MrwIgLpgh1hZ/ogA0wyDHulGWti/24vI+oet70Ki/DtHA1es=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1864071},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"d26fdf0db1fd290264d65cf21c1ede3f7cd02527","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.1.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.0","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.39.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.3","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.39.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.1.2","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.5","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_44.2.3_1683843276830_0.5281741725406501","host":"s3://npm-registry-packages"}},"44.2.4":{"name":"eslint-plugin-jsdoc","version":"44.2.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@44.2.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"0bdc163771504ec7330414eda6a7dbae67156ddb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-44.2.4.tgz","fileCount":187,"integrity":"sha512-/EMMxCyRh1SywhCb66gAqoGX4Yv6Xzc4bsSkF1AiY2o2+bQmGMQ05QZ5+JjHbdFTPDZY9pfn+DsSNP0a5yQpIg==","signatures":[{"sig":"MEUCICdsU6HzryIU08LnCRtYbTIVEccgWiyM1Qr9hz/Q6LDPAiEAg71SHpM36PsHspyYj2nbY4b5f9aV5ev+roHXolDH35w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1978229},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"89b81ce6a21b88e66cb686a2aa40f2a86834029d","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.1.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.39.3","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.3","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.39.0","rimraf":"^5.0.0","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.1.4","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.0.2","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~33.0.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.5","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_44.2.4_1684162376626_0.17066451808934158","host":"s3://npm-registry-packages"}},"44.2.5":{"name":"eslint-plugin-jsdoc","version":"44.2.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@44.2.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f3186f57f112a230b3b7af34bf236d207bc8d5d7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-44.2.5.tgz","fileCount":187,"integrity":"sha512-KtuhaYy2GmdY2IQE5t+1lup8O4P05c+V4gKcj45PCxFM0OxmRq2uQlfOS1AgYVgPYIBKGE86DxrbKP24HKpORA==","signatures":[{"sig":"MEYCIQCeMAGAW5mkvGZNmKvUxpjw2gQkiX/EqAL41I5TncWepgIhANehPd78+30KIwHeK1nLRRU1BwhE+nCGYYZkvxvUHjAn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1998976},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"6824ab6cb3e81262798abd04bd147883554cd141","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.6","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.2.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.3","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_44.2.5_1684841285874_0.19127628822024811","host":"s3://npm-registry-packages"}},"44.2.6":{"name":"eslint-plugin-jsdoc","version":"44.2.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@44.2.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2440a38cb0a12231c2717853fb6eec2a0d4eb235","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-44.2.6.tgz","fileCount":187,"integrity":"sha512-MVyiYjXo0IkacB5wP74NYiWKwdlx6nRB9+gVewT7bO9QpHgCrkqFdM/w5RTDj3iJA8fl9ipca4LkJ9IGjZK3zA==","signatures":[{"sig":"MEUCIDwpaDl6TJ5G83AQOXV9DpQhM13dGMEfANQuLlARcOEtAiEAmBE7+e6V2kdBqdFUpJxAdwarKZ3ARhq+rsIDcaLLWaI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2000848},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"f1183cc003cd5eca98326b631729dd5950c20775","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.6","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.2.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.3","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_44.2.6_1685091658480_0.2190184255849461","host":"s3://npm-registry-packages"}},"44.2.7":{"name":"eslint-plugin-jsdoc","version":"44.2.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@44.2.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5ecdb46ddfca209ecd58fff972a4eb74b8dde599","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-44.2.7.tgz","fileCount":187,"integrity":"sha512-PcAJO7Wh4xIHPT+StBRpEbWgwCpIrYk75zL31RMbduVVHpgiy3Y8aXQ6pdbRJOq0fxHuepWSEAve8ZrPWTSKRg==","signatures":[{"sig":"MEUCIQCphf7GnceKjGPl1rAIMxuvOmVYSB5pmwbGWSb1CcBCQQIgGQE9cxqBAO6cLsDU/qIGlGNgeAQ0HNH9x3WIQ9Kq+mA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2001465},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"94cb599304682c901994bf4966453b79bb984613","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.6","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.2.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.3","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_44.2.7_1685096988242_0.7752223406064767","host":"s3://npm-registry-packages"}},"45.0.0":{"name":"eslint-plugin-jsdoc","version":"45.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@45.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6be84e4842a7138cc571a907ea9c31c42eaac5c0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-45.0.0.tgz","fileCount":187,"integrity":"sha512-l2+Jcs/Ps7oFA+SWY+0sweU/e5LgricnEl6EsDlyRTF5y0+NWL1y9Qwz9PHwHAxtdJq6lxPjEQWmYLMkvhzD4g==","signatures":[{"sig":"MEUCIQDDPU3Q7szsS2wiKwxsitqvJtOOgKA+diDb0gqFCdPZLwIgQ0mPkuFwLQ9SrKrbUvtz2Vrewu3TH+zZMUeX5Rhev08=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2003638},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"6042b7751ff7cc7915eec1473ee743042155d22a","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.6","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.2.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.3","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_45.0.0_1685287857428_0.31133281696128123","host":"s3://npm-registry-packages"}},"46.0.0":{"name":"eslint-plugin-jsdoc","version":"46.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e1a2bb9c560fc9781727e9f912e2b9cfef7c42c8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.0.0.tgz","fileCount":184,"integrity":"sha512-xmB5WleBcPCFYlrFfdjrcfSKOJBLwyGmKa+i+fVqlIHp8g5aAoeQpBGugUzToFtQgd4hNZYlfIcP7QSxC9NYWQ==","signatures":[{"sig":"MEQCIE0Cw1cF4Gw6rA4EOvVudUmZ0zsuvxsuaZ4pChseCD78AiAN94owuVRnnmn6ruD2ux+HUEMk7KsoKd11jPp/ZPYE/w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1977510},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"034ade155235715ee198875778a95196384b2b4f","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.6","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.2.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","espree":"^9.5.2","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.3","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","@es-joy/escodegen":"^3.5.1","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.0.0_1685473874127_0.1409438865280903","host":"s3://npm-registry-packages"}},"46.1.0":{"name":"eslint-plugin-jsdoc","version":"46.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"3ff932b70bc25f3745049f525a789faed7c948da","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.1.0.tgz","fileCount":184,"integrity":"sha512-NpjpSuWR+Wwxzmssji7AVty1Vu0JvI7v+cTj+Rw1nKVjGv2eMvLGM/SI4VpgTXp82JbLtFOsA2QYLHT3YSmASA==","signatures":[{"sig":"MEUCIGdP/H1MAoOzKtrdVQOgvnuWwTtOF+fVL4R8PKdgxrDDAiEAwjFMl4MDMlIdNlP8eYjzsJIV3oRLxjCwGP2ZfTWRX60=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1978227},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"31b3a24b7e015cfe938204618e71fa85d921cc7f","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.6","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.2.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","espree":"^9.5.2","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.3","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","@es-joy/escodegen":"^3.5.1","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.1.0_1685554184123_0.1394667880479319","host":"s3://npm-registry-packages"}},"46.2.0":{"name":"eslint-plugin-jsdoc","version":"46.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f6566996f43b66bdb95251ccc59556624ea4e083","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.2.0.tgz","fileCount":187,"integrity":"sha512-Lo2Bs39UPtcvLGfBrI/RF+8mOPcYaHdj++YTfDrqrWHND2trGQBDKxCVcEyYACrQxyMYgpfqHkyxE0S184hOGg==","signatures":[{"sig":"MEUCIFEPgB9f8hQwGlF8jSdqq1wxOWLjYbb6yJ1s+ZYHwWd/AiEAn0ebTxLq3wx06jpbwqgkwOUEDiF5AIGu7fd5JfO5cHA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1985363},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"d7ec6e08ac5a4cf960f866120f0a8fa14df6f977","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.6","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.2.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","espree":"^9.5.2","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.3","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","@es-joy/escodegen":"^3.5.1","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.2.0_1685727604386_0.5374519378713465","host":"s3://npm-registry-packages"}},"46.2.1":{"name":"eslint-plugin-jsdoc","version":"46.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"0cefb46776c7c04477e111bc37331f5860c62bea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.2.1.tgz","fileCount":187,"integrity":"sha512-rsv3EE2FGDpYTSnIzDHpf9SsB7ccTmCl8dMcJzpBAOLiJ1maIMYMOfPDqT1IB+Y21muD894xhO6BTrOIvY5mfg==","signatures":[{"sig":"MEUCIGBY2gesrR7rB+dZwlMwCXt8erlcHJvPl1b9xCzWl3WjAiEA6a1CxDmkEC3UZ3hZ4OLjfPZ0qSoJ3P1z5Q6aRU6ps90=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1987036},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"785fb2668ee8c98c6110584a8b9b9cbcc722ea01","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.6","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.2.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","espree":"^9.5.2","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.3","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","@es-joy/escodegen":"^3.5.1","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.2.1_1685809078030_0.5330129456279078","host":"s3://npm-registry-packages"}},"46.2.2":{"name":"eslint-plugin-jsdoc","version":"46.2.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.2.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9671bd037cdf824335250de798be73434c799236","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.2.2.tgz","fileCount":187,"integrity":"sha512-s85g93FT54emQX/h+Aoh1+SFrIz/C327gn+t8YS4md82/iNFWNp+qjT88MNH9XwD0rrhUqxE39xh46+RTGRyYw==","signatures":[{"sig":"MEQCIHUNONV4RTV5YVtLBtGqi5m/0mfwZzSn7tzIZWyYkh+IAiAxwal0oBMxfHh0/AjbzsO0CcpSvR6gJAZ8gjZ5Z8Cl0Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1987210},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"75b6b8cfe2919a79f7ca39a2070ef4eaf3230dab","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.6","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.2.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","espree":"^9.5.2","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.3","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","@es-joy/escodegen":"^3.5.1","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.2.2_1685848760546_0.553031727080308","host":"s3://npm-registry-packages"}},"46.2.3":{"name":"eslint-plugin-jsdoc","version":"46.2.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.2.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4b5ddeffdcea45529880672dc3a89d80b2a032cf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.2.3.tgz","fileCount":187,"integrity":"sha512-06s2RmIyichD2+CYQzSq4DH5YAaXdYm6WPe6C8daf7vr6MxzJiYJYOKxNYLDdQRTRE2JAW1kfU1OYRxvAxDzjA==","signatures":[{"sig":"MEYCIQCnCc02h/rZj3O4VwpP9QGJoibAlPkcvhTLdCsTQfTGygIhAP3zCf78dKvkExxV0nXCp2mt1inR5nTdAqDlhq48wSkA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1987112},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"e3b0d0c6d40637a960cc071ad8a08518e30756c7","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.6","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.2.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","espree":"^9.5.2","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.3","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","@es-joy/escodegen":"^3.5.1","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.2.3_1685885765611_0.6445886401958425","host":"s3://npm-registry-packages"}},"46.2.4":{"name":"eslint-plugin-jsdoc","version":"46.2.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.2.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"90734a47cd746863e40d0e57e5f273672d50f94e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.2.4.tgz","fileCount":187,"integrity":"sha512-QVURyOFEqkUswFOou0w1rfHshRfah7EeTd9laVllO6tb/+ymjPY1IkP16e24yX0BB7jRy8krJi99jHG2UWAPog==","signatures":[{"sig":"MEQCIA8dFSn1wjPzc7771Eka8M22dMILEr96cbHYMt7E2wd3AiBqYNuIM24NYesaLk0tHXHfNY+4TZUEgCxem6FOIw6q1A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1988896},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"7469e59e2c02d31226df9b0afcb9fd154c50136e","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.6","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.2.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","espree":"^9.5.2","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.3","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","@es-joy/escodegen":"^3.5.1","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.2.4_1685910570064_0.9852669531802267","host":"s3://npm-registry-packages"}},"46.2.5":{"name":"eslint-plugin-jsdoc","version":"46.2.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.2.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e13b00d83959d098ac2090e1b79fe9ec51c2adc8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.2.5.tgz","fileCount":187,"integrity":"sha512-Rmd0pb6S5fv9/lGbJMiVUZn56XvjKTGQoq9H5yfNjj6jcJHkTaq+Pqj2KHK/8EO01f8auFFy2kNL64cFisMEDw==","signatures":[{"sig":"MEQCIEU45hYw5r+rD5wrs9psz0XgFZxDxHVUpi3i+mohi08BAiAlOnm+iqSqCdkSEuCMlzru5P11bkK4TZhLegIFXAkUtQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1989671},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"ab005925a432dc3b3675c5c310efbcb530d5f7b5","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.6","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.2.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","espree":"^9.5.2","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.5","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","@es-joy/escodegen":"^3.5.1","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.2.5_1686061485405_0.14169179663127984","host":"s3://npm-registry-packages"}},"46.2.6":{"name":"eslint-plugin-jsdoc","version":"46.2.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.2.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f25590d371859f20691d65b5dcd4cbe370d65564","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.2.6.tgz","fileCount":187,"integrity":"sha512-zIaK3zbSrKuH12bP+SPybPgcHSM6MFzh3HFeaODzmsF1N8C1l8dzJ22cW1aq4g0+nayU1VMjmNf7hg0dpShLrA==","signatures":[{"sig":"MEUCIEweYjpwziTmPYnuOBEHjdA50FUzxUrTjLm3OqQR1NuaAiEAuSnQIWOMhiPrQFkSQGTPID3XUK+fKwg/mV7cQha7w8A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1990765},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"3a5dd7d9f67fc01ec848758443c04da29d45327b","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.6","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.2.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","espree":"^9.5.2","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.5","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","@es-joy/escodegen":"^3.5.1","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.2.6_1686133077081_0.07179186502560442","host":"s3://npm-registry-packages"}},"46.3.0":{"name":"eslint-plugin-jsdoc","version":"46.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9e19138b108f7289d5a5d5bacdfb75242f5ebcb7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.3.0.tgz","fileCount":187,"integrity":"sha512-nfSvsR8YJRZyKrWwcXPSQyQC8jllfdEjcRhTXFr7RxfB5Wyl7AxrfjCUz72WwalkXMF4u+R6F/oDoW46ah69HQ==","signatures":[{"sig":"MEQCIG0q+HuTP7BzjWcNWmKVppxH9wwKe4WlkxinO6haG7SqAiBpAbQ+TJb9Jc4P3WYjKygljOv9GWxxsZ8KTEQKPOtS9A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1993593},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"4afc8e6fa84ae6f5850402237afd2ce25a2fb7cb","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.7","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.3.1","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","espree":"^9.5.2","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.5","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","@es-joy/escodegen":"^3.5.1","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.3.0_1687735808902_0.7466280221076178","host":"s3://npm-registry-packages"}},"46.4.0":{"name":"eslint-plugin-jsdoc","version":"46.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a4828578f272e6d6c25a8044080c807758eea037","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.4.0.tgz","fileCount":187,"integrity":"sha512-2AJY31jpFdPTCa4UMFUfu8b8rPeSaShYx/lS+GrdDVVEjN3rzfN/PZtI2YbexrIO6KLDqP3241BynWn7QB5jhg==","signatures":[{"sig":"MEUCIQCyuqnpZeUujHsw6O/nT2ojxNZD6AVExfAk7PtoIZTsfgIgInlk2/Rij6J0sZZsx6iKJuyBsNrlcIFpn+3lmyn8exk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1995736},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"1886b362193f859f02684d74b75f99a3f53097a2","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.7","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.3.1","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","espree":"^9.5.2","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.5","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","@es-joy/escodegen":"^3.5.1","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.4.0_1687911625059_0.3459566177988831","host":"s3://npm-registry-packages"}},"46.4.1":{"name":"eslint-plugin-jsdoc","version":"46.4.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.4.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ead1afe5beccceb7c8ef08abd31c2151b4dc832c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.4.1.tgz","fileCount":187,"integrity":"sha512-Y9gcBPObWgrLeQHY273UVEbTtV4Hr/bl/Cv+izTVQxVSWz9afcqgny3P8B1lVlzKJQByYKEQGiawblamuDfuvg==","signatures":[{"sig":"MEQCIEPL2RgQ3jskjt543TyG4tbxqlcvYh5g1EFbAzsrW0QXAiAXsDLcp0y8ZdcEKEhHIj3+AsovCua+B4Wek/AGJymK0g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1996577},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"1e45ae435d837607d54c01888e40e769164856a7","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.7","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.3.1","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","espree":"^9.5.2","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.5","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","@es-joy/escodegen":"^3.5.1","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.4.1_1687992026543_0.8259409842124725","host":"s3://npm-registry-packages"}},"46.4.2":{"name":"eslint-plugin-jsdoc","version":"46.4.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.4.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"13e053b3be1ec1f786fe0c1fc8051527cfb998a5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.4.2.tgz","fileCount":187,"integrity":"sha512-fmIgOe7irf9otkMtsPjr5P39wC5LzA6aEU/nydfUlc8JaEiS93uhPaxI+x/v5s1Ckm+IZeP3006do2n2ehZcNQ==","signatures":[{"sig":"MEYCIQCEsGWwcBNJpL2kSDXnGoDeTUWt7w47upMunbb2j4aLuwIhAPHvNEEVP7l2vjdlBhMSbeGo6H94frHc+8tpz+E9h8LR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1997698},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"00922c3a7c98805ab499754c5d770380e6597aa1","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.7","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.3.1","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","espree":"^9.5.2","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.5","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","@es-joy/escodegen":"^3.5.1","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.4.2_1687995777312_0.3494562110279569","host":"s3://npm-registry-packages"}},"46.4.3":{"name":"eslint-plugin-jsdoc","version":"46.4.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.4.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4a2ad3a01d7ba723acaed3940f746a0a31d1e58e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.4.3.tgz","fileCount":187,"integrity":"sha512-Prc7ol+vCIghPeECpwZq5+P+VZfoi87suywvbYCiCnkI1kTmVSdcOC2M8mioglWxBbd28wbb1OVjg/8OzGzatA==","signatures":[{"sig":"MEUCIDr2q7bAUS0VWX4kkw87oJYpAisnYfsNDrTlQt+XGgvZAiEA9q1YdAbt/9QChrjHkf4EGGVNERyECJ5DgqMTGBT5W+E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1997578},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"03578ca582a9c983d610022547d4e581edf8da0f","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.6.7","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.3.1","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","espree":"^9.5.2","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.5","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","@es-joy/escodegen":"^3.5.1","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.4.3_1688147017713_0.9632859119375343","host":"s3://npm-registry-packages"}},"46.4.4":{"name":"eslint-plugin-jsdoc","version":"46.4.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.4.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"cdcf9f59238381e3ee57110ceccefdfef388455d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.4.4.tgz","fileCount":187,"integrity":"sha512-D8TGPOkq3bnzmYmA7Q6jdsW+Slx7CunhJk1tlouVq6wJjlP1p6eigZPvxFn7aufud/D66xBsNVMhkDQEuqumMg==","signatures":[{"sig":"MEQCIDglDgyihfYBU+e0WACLQxEXyQi8Y3Y9WYYgfzgm+vFPAiAQeSVSAcsGEWYHwI2hOuXXPuLVawgfveLZ9cx+jcCl7g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1997613},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"44da8c7e4d87e13c47f649959745fa0ad5c272e4","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.7.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.4.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.1","esquery":"^1.5.0","comment-parser":"1.3.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.2.6","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.41.0","espree":"^9.5.2","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.21.5","decamelize":"^5.0.1","typescript":"^5.0.4","@babel/core":"^7.21.8","@babel/node":"^7.20.7","@types/chai":"^4.3.5","@types/node":"^20.2.5","lint-staged":"^13.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.7","@types/mocha":"^10.0.1","@types/eslint":"^8.37.0","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.21.0","semantic-release":"^21.0.2","@babel/preset-env":"^7.21.5","@es-joy/escodegen":"^3.5.1","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.21.8","@semantic-release/npm":"^10.0.3","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.0.4","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^8.0.7","@typescript-eslint/parser":"^5.59.6","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^9.0.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.21.0"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.4.4_1689426968820_0.7251085541515652","host":"s3://npm-registry-packages"}},"46.4.5":{"name":"eslint-plugin-jsdoc","version":"46.4.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.4.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f06fd71505d60078a8e4dff792f7cb20261e7e58","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.4.5.tgz","fileCount":187,"integrity":"sha512-HjTuxqDYplAQFu29F3MHFCDDBgeqOxPXI6TyBhL0u2rr4XntJ0z3C9PmJvpjFscKdHwkZDN/0l1QCG0QwyRi4g==","signatures":[{"sig":"MEUCIQCJE8zwK8IuoXjiqpUkyIGj2cu5UGjmXVR8aO6AjiQEvgIgS9FTTo6gy56/gcAeoKRRv7wR9HZ5skJbvlbAVLBHC8I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1997763},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=16"},"gitHead":"e41df35d0e843f5b0dfbc1585ff5afc722a5c4ed","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.8.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.5.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.3.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.39.4","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.3.3","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.45.0","espree":"^9.6.1","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.22.9","decamelize":"^5.0.1","typescript":"^5.1.6","@babel/core":"^7.22.9","@babel/node":"^7.22.6","@types/chai":"^4.3.5","@types/node":"^20.4.5","lint-staged":"^13.2.3","open-editor":"^3.0.0","@types/debug":"^4.1.8","@types/mocha":"^10.0.1","@types/eslint":"^8.44.1","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.22.5","semantic-release":"^21.0.7","@babel/preset-env":"^7.22.9","@es-joy/escodegen":"^3.5.1","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.22.9","@semantic-release/npm":"^10.0.4","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.1.5","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.0.4","@typescript-eslint/parser":"^6.2.0","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^10.0.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.22.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.4.5_1690446147233_0.11332776511602383","host":"s3://npm-registry-packages"}},"46.4.6":{"name":"eslint-plugin-jsdoc","version":"46.4.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.4.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5226461eda61b5920297cbe02c3b17bc9423cf0b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.4.6.tgz","fileCount":314,"integrity":"sha512-z4SWYnJfOqftZI+b3RM9AtWL1vF/sLWE/LlO9yOKDof9yN2+n3zOdOJTGX/pRE/xnPsooOLG2Rq6e4d+XW3lNw==","signatures":[{"sig":"MEQCIFtrsnVmja6fu+eE3JcQhXJVnUFNqhJXcb0huNaEE5sOAiBbHhaYJgrmilDwHuSmsYSf6sp1YttrsVo74kAiVu6vEg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2070082},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=16"},"gitHead":"eed807edd9a14750ae4e16279cafeb27064ecd59","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && pnpm tsc-build || true","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.8.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.5.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.0","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.40.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.3.3","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.46.0","espree":"^9.6.1","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.22.9","decamelize":"^5.0.1","typescript":"^5.1.6","@babel/core":"^7.22.9","@babel/node":"^7.22.6","@types/chai":"^4.3.5","@types/node":"^20.4.7","lint-staged":"^13.2.3","open-editor":"^3.0.0","@types/debug":"^4.1.8","@types/mocha":"^10.0.1","@types/eslint":"^8.44.1","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.22.5","semantic-release":"^21.0.7","@babel/preset-env":"^7.22.9","@es-joy/escodegen":"^3.5.1","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.22.9","@semantic-release/npm":"^10.0.4","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.1.7","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.0.4","@typescript-eslint/parser":"^6.2.1","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^10.0.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.22.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.4.6_1691172165656_0.42557446500149965","host":"s3://npm-registry-packages"}},"46.5.0":{"name":"eslint-plugin-jsdoc","version":"46.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"02e7945701a01fab76e7ced850d4d1eea63c23c0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.5.0.tgz","fileCount":131,"integrity":"sha512-aulXdA4I1dyWpzyS1Nh/GNoS6PavzeucxEapnMR4JUERowWvaEk2Y4A5irpHAcdXtBBHLVe8WIhdXNjoAlGQgA==","signatures":[{"sig":"MEUCIQDXQPOhDU3hMjMhsu2U/BAUQtDUreBQmPcpBNG1Xxm8CgIgK0S04degFlQJv7UWiMP9/bGFwmXhbscEgLoAD2GPurA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1374668},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=16"},"gitHead":"918dbed99f74702b06f317d4632b58c9ba84f9c7","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.8.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.5.1","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.0","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.40.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.3.3","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.47.0","espree":"^9.6.1","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.22.10","decamelize":"^5.0.1","typescript":"^5.1.6","@babel/core":"^7.22.10","@babel/node":"^7.22.10","@types/chai":"^4.3.5","@types/node":"^20.5.0","json-schema":"^0.4.0","lint-staged":"^14.0.0","open-editor":"^3.0.0","@types/debug":"^4.1.8","@types/mocha":"^10.0.1","@types/eslint":"^8.44.2","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.22.5","semantic-release":"^21.0.7","@babel/preset-env":"^7.22.10","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.12","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.22.10","@semantic-release/npm":"^10.0.4","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.1.7","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.0.4","@typescript-eslint/parser":"^6.4.0","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^10.0.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.22.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.5.0_1692555339523_0.7194511719531358","host":"s3://npm-registry-packages"}},"46.5.1":{"name":"eslint-plugin-jsdoc","version":"46.5.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.5.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"79be44c9f7b3bbc52917cae12f356979b7d58e8a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.5.1.tgz","fileCount":131,"integrity":"sha512-CPbvKprmEuJYoxMj5g8gXfPqUGgcqMM6jpH06Kp4pn5Uy5MrPkFKzoD7UFp2E4RBzfXbJz1+TeuEivwFVMkXBg==","signatures":[{"sig":"MEQCIDggAFh0oUKnYkTm5yy7AE2Nb3pKuJ48GfLVQug8jOkAAiB3pUmxMRG2+rbsbfkDiNis+CaptrU0pxWn/XvGmRMv/w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1374861},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=16"},"gitHead":"85a21bfb696feace06da1a4e76977bcf34a9c45c","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.8.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.5.1","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.0","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.40.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.3.3","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.47.0","espree":"^9.6.1","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.22.10","decamelize":"^5.0.1","typescript":"^5.1.6","@babel/core":"^7.22.10","@babel/node":"^7.22.10","@types/chai":"^4.3.5","@types/node":"^20.5.0","json-schema":"^0.4.0","lint-staged":"^14.0.0","open-editor":"^3.0.0","@types/debug":"^4.1.8","@types/mocha":"^10.0.1","@types/eslint":"^8.44.2","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.22.5","semantic-release":"^21.0.7","@babel/preset-env":"^7.22.10","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.12","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.22.10","@semantic-release/npm":"^10.0.4","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.1.7","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.0.4","@typescript-eslint/parser":"^6.4.0","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^10.0.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.22.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.5.1_1693350728900_0.7714211332219603","host":"s3://npm-registry-packages"}},"46.6.0":{"name":"eslint-plugin-jsdoc","version":"46.6.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.6.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"513e41911a3081a15fe6a94490002e8d8f7b71d9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.6.0.tgz","fileCount":131,"integrity":"sha512-T/1gzsvnX45qABzyPEonEhFDttkTn7Igm/X89TXIkTLBOsNl2GYtyBqQPZGXZZ8J5VBzEhiCMvI2P2kXX4dnFw==","signatures":[{"sig":"MEUCIB12p+2Gvk1Ps/CYlF6WhWvBFkUZRqekm1kZ/NqfpRl7AiEA9yRGItJexAGkbZTQgm8q28gQ3Q30KNXNu1xbI5gkRjc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1375977},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=16"},"gitHead":"6f1b50b57106df18ece93a68bb9bc15b1364aaa2","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.8.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.6.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.0","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.40.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.3.3","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.47.0","espree":"^9.6.1","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.22.10","decamelize":"^5.0.1","typescript":"^5.1.6","@babel/core":"^7.22.10","@babel/node":"^7.22.10","@types/chai":"^4.3.5","@types/node":"^20.5.0","json-schema":"^0.4.0","lint-staged":"^14.0.0","open-editor":"^3.0.0","@types/debug":"^4.1.8","@types/mocha":"^10.0.1","@types/eslint":"^8.44.2","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.22.5","semantic-release":"^21.0.7","@babel/preset-env":"^7.22.10","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.12","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.22.10","@semantic-release/npm":"^10.0.4","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.1.7","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.0.4","@typescript-eslint/parser":"^6.4.0","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^10.0.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.22.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.6.0_1694368539059_0.1618929126369828","host":"s3://npm-registry-packages"}},"46.7.0":{"name":"eslint-plugin-jsdoc","version":"46.7.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.7.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4d9674ec29348c82015922c3a3dbcce1e265356c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.7.0.tgz","fileCount":131,"integrity":"sha512-VuNF+5WaiqocDDA6zvm+/D6DYo+DPFuSBOb8oSWbu0CVh+aaL3TAtpB0L0XdYYib1HHudMCHd2QeA25Tn1Pkfw==","signatures":[{"sig":"MEUCIQDiKLvXhb3FyV0TblnDCZVcV0kOEu5XdEMoJNw3N0dQXAIgDLukqgjwWPTgwitZrLvPnI8Q8RNOLEn68mVKo8rNosA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1376606},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=16"},"gitHead":"dfd2a8a0b5fbff4e5840c8d65b82c61ab54d7f87","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.8.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.6.1","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.0","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.40.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.3.3","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.47.0","espree":"^9.6.1","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.22.10","decamelize":"^5.0.1","typescript":"^5.1.6","@babel/core":"^7.22.10","@babel/node":"^7.22.10","@types/chai":"^4.3.5","@types/node":"^20.5.0","json-schema":"^0.4.0","lint-staged":"^14.0.0","open-editor":"^3.0.0","@types/debug":"^4.1.8","@types/mocha":"^10.0.1","@types/eslint":"^8.44.2","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.22.5","semantic-release":"^21.0.7","@babel/preset-env":"^7.22.10","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.12","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.22.10","@semantic-release/npm":"^10.0.4","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.1.7","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.0.4","@typescript-eslint/parser":"^6.4.0","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^10.0.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.22.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.7.0_1694645012914_0.007752526259604764","host":"s3://npm-registry-packages"}},"46.8.0":{"name":"eslint-plugin-jsdoc","version":"46.8.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.8.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d08cd35eca79b34586fe71e85796fe6d2ba5fcff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.8.0.tgz","fileCount":131,"integrity":"sha512-qsYP7LN/ji5htZAdfAr8qX0bRZcbTU0hpuECR50UpaqkPyXsWgp2y77RPQ4t7fR5bHpgnGcD5L43PxjyOvIfQA==","signatures":[{"sig":"MEUCIHQ81tCGq/6jj9prUt51fE03riGsMABiT8cTJtKvA6LfAiEAiOpQ86bbFwN1JFAXcSH91WymmRbOp62rfQniKozEylU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1380764},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=16"},"gitHead":"8dbcb6f31d8e75b6a12dc0cfa19ace736ed0e9c6","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.8.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.6.1","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.0","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.40.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.3.3","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.47.0","espree":"^9.6.1","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.22.10","decamelize":"^5.0.1","typescript":"^5.1.6","@babel/core":"^7.22.10","@babel/node":"^7.22.10","@types/chai":"^4.3.5","@types/node":"^20.5.0","json-schema":"^0.4.0","lint-staged":"^14.0.0","open-editor":"^3.0.0","@types/debug":"^4.1.8","@types/mocha":"^10.0.1","@types/eslint":"^8.44.2","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.22.5","semantic-release":"^21.0.7","@babel/preset-env":"^7.22.10","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.12","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.22.10","@semantic-release/npm":"^10.0.4","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.1.7","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.0.4","@typescript-eslint/parser":"^6.4.0","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^10.0.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.22.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.8.0_1694714140825_0.1659691114513686","host":"s3://npm-registry-packages"}},"46.8.1":{"name":"eslint-plugin-jsdoc","version":"46.8.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.8.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"cfc649c15d460903fe8e86eda582023bb97f283a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.8.1.tgz","fileCount":131,"integrity":"sha512-uTce7IBluPKXIQMWJkIwFsI1gv7sZRmLjctca2K5DIxPi8fSBj9f4iru42XmGwuiMyH2f3nfc60sFmnSGv4Z/A==","signatures":[{"sig":"MEQCIA0JUM3ad14tcpJlvLmY5EGGFRGHmr2TYMGuDVhnQ8VcAiA+OuL9Z02nJo9Ki0MQaQhMO/b+4ZV3u+bvHZqejH+S4Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1380776},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=16"},"gitHead":"e8b14756c573bc7f6eb824f2e87b67bbd6a50fab","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"9.8.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.6.1","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.0","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.40.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.3.3","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.47.0","espree":"^9.6.1","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.22.10","decamelize":"^5.0.1","typescript":"^5.1.6","@babel/core":"^7.22.10","@babel/node":"^7.22.10","@types/chai":"^4.3.5","@types/node":"^20.5.0","json-schema":"^0.4.0","lint-staged":"^14.0.0","open-editor":"^3.0.0","@types/debug":"^4.1.8","@types/mocha":"^10.0.1","@types/eslint":"^8.44.2","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.22.5","semantic-release":"^21.0.7","@babel/preset-env":"^7.22.10","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.12","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.22.10","@semantic-release/npm":"^10.0.4","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.1.7","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.0.4","@typescript-eslint/parser":"^6.4.0","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^10.0.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.22.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.8.1_1694789930002_0.7616614095582497","host":"s3://npm-registry-packages"}},"46.8.2":{"name":"eslint-plugin-jsdoc","version":"46.8.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.8.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"3e6b1c93e91e38fe01874d45da121b56393c54a5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.8.2.tgz","fileCount":131,"integrity":"sha512-5TSnD018f3tUJNne4s4gDWQflbsgOycIKEUBoCLn6XtBMgNHxQFmV8vVxUtiPxAQq8lrX85OaSG/2gnctxw9uQ==","signatures":[{"sig":"MEUCIQCVMKc+bzzqEnwntA75x0rJzV7t5cmMgtIwnA9RIg++zwIgD/T6d6fir9QP3WLkAsxd/ahMMtK5Bs/FiySg2WIDb50=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1382349},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=16"},"gitHead":"83743492cb0038a6b27621b5faaa4c8ebae88134","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.1.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.7.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.0","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.40.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.7","glob":"^10.3.3","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.47.0","espree":"^9.6.1","rimraf":"^5.0.1","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.22.10","decamelize":"^5.0.1","typescript":"^5.1.6","@babel/core":"^7.22.10","@babel/node":"^7.22.10","@types/chai":"^4.3.5","@types/node":"^20.5.0","json-schema":"^0.4.0","lint-staged":"^14.0.0","open-editor":"^3.0.0","@types/debug":"^4.1.8","@types/mocha":"^10.0.1","@types/eslint":"^8.44.2","@types/estree":"^1.0.1","@types/semver":"^7.5.0","@types/esquery":"^1.5.0","@babel/register":"^7.22.5","semantic-release":"^21.0.7","@babel/preset-env":"^7.22.10","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.12","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.22.10","@semantic-release/npm":"^10.0.4","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~41.1.7","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.0.4","@typescript-eslint/parser":"^6.4.0","@types/lodash.defaultsdeep":"^4.6.7","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.2","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^10.0.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.22.5"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.8.2_1695252799179_0.1826420088885654","host":"s3://npm-registry-packages"}},"46.9.0":{"name":"eslint-plugin-jsdoc","version":"46.9.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.9.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9887569dbeef0a008a2770bfc5d0f7fc39f21f2b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.9.0.tgz","fileCount":131,"integrity":"sha512-UQuEtbqLNkPf5Nr/6PPRCtr9xypXY+g8y/Q7gPa0YK7eDhh0y2lWprXRnaYbW7ACgIUvpDKy9X2bZqxtGzBG9Q==","signatures":[{"sig":"MEYCIQCnQ0f1WTJzB6HC9rCgE7uycpwqWbYCoRE6XqI08msaJwIhAJcoC5S/xqgVuMFHyumpXFmPMOT1vC66EaVSEW/Esuf8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1372202},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=16"},"gitHead":"fd1eab0e2bb948461dbf1e709f8006cfa1f6c469","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.1.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.9.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.41.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^3.0.1"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.10","glob":"^10.3.10","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.53.0","espree":"^9.6.1","rimraf":"^5.0.5","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.0","decamelize":"^5.0.1","typescript":"5.2.2","@babel/core":"^7.23.3","@babel/node":"^7.22.19","@types/chai":"^4.3.10","@types/node":"^20.9.0","json-schema":"^0.4.0","lint-staged":"^15.0.2","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.4","@types/eslint":"^8.44.7","@types/estree":"^1.0.5","@types/semver":"^7.5.5","@types/esquery":"^1.5.3","@babel/register":"^7.22.15","semantic-release":"^22.0.7","@babel/preset-env":"^7.23.3","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.3","@semantic-release/npm":"^11.0.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.3.0","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.3","@typescript-eslint/parser":"^6.10.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.19.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.9.0_1699586792415_0.048312167462289946","host":"s3://npm-registry-packages"}},"46.9.1":{"name":"eslint-plugin-jsdoc","version":"46.9.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.9.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d30adce51fecc768e87481bf4de46b8618c3d50e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.9.1.tgz","fileCount":131,"integrity":"sha512-11Ox5LCl2wY7gGkp9UOyew70o9qvii1daAH+h/MFobRVRNcy7sVlH+jm0HQdgcvcru6285GvpjpUyoa051j03Q==","signatures":[{"sig":"MEYCIQCqduNtbR7J8OnozqekqrZrAc9/bx6Fs1hpNIGn9DEVogIhAJilkqzYYqwxnztK6z0VjQvY68z4J0Ijo3kLG9E5tNKi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1372293},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=16"},"gitHead":"b102693f98abbc7727d80c50c0500c6b59e9d5ae","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.10.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.41.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.10","glob":"^10.3.10","husky":"^8.0.3","mocha":"^10.2.0","eslint":"8.55.0","espree":"^9.6.1","rimraf":"^5.0.5","gitdown":"^3.1.5","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.4","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.5","@babel/node":"^7.22.19","@types/chai":"^4.3.11","@types/node":"^20.10.4","json-schema":"^0.4.0","lint-staged":"^15.2.0","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.44.8","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","@babel/register":"^7.22.15","semantic-release":"^22.0.10","@babel/preset-env":"^7.23.5","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.3","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.0","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.5","@typescript-eslint/parser":"^6.13.2","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.20.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.9.1_1702504538965_0.055520609672407684","host":"s3://npm-registry-packages"}},"46.10.0":{"name":"eslint-plugin-jsdoc","version":"46.10.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.10.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"71f19ad5e791dfe58fc71859fab3e4c40987be5e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.10.0.tgz","fileCount":132,"integrity":"sha512-F5qmnFeMwfjggQiksUQ+1O8lUBMzP5T091Y++qMc66WtQ65oINHtNxTie4++vvtT8yDQww4brixhfmfy2fMI1w==","signatures":[{"sig":"MEYCIQDE8prbJwsD4Nj7v0mz0pAZjgzkY38WvXmgKsSpHPFAtwIhALuoKEsyE+IQ/g9nywsba704M+dhivqt7fRPLILft47E","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1373899},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"gitHead":"eec9d9532b58a528b7e204f74f23b3d0c46ea329","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives=false","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.10.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.41.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.10","glob":"^10.3.10","husky":"^8.0.3","mocha":"^10.2.0","eslint":"9.0.0-alpha.0","espree":"^9.6.1","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^13.24.0","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.4","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.7","@babel/node":"^7.22.19","@types/chai":"^4.3.11","@types/node":"^20.10.6","json-schema":"^0.4.0","lint-staged":"^15.2.0","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.0","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","@babel/register":"^7.23.7","semantic-release":"^22.0.12","@babel/preset-env":"^7.23.7","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.3","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.0","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.6","@typescript-eslint/parser":"^6.16.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.10.0_1703943728784_0.7881767944877556","host":"s3://npm-registry-packages"}},"46.10.1":{"name":"eslint-plugin-jsdoc","version":"46.10.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@46.10.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"77c871309c4ed93758a3b2fdf384dc6189cf8605","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.10.1.tgz","fileCount":132,"integrity":"sha512-x8wxIpv00Y50NyweDUpa+58ffgSAI5sqe+zcZh33xphD0AVh+1kqr1ombaTRb7Fhpove1zfUuujlX9DWWBP5ag==","signatures":[{"sig":"MEYCIQDPz3lCqQiuHDDeJ1diR1KyGuPyj7kpSU7IkKdNAsoptAIhAIP7lruRryU5ZocvnYNEAKwIKglHvAH0ggJLqlMlbqbt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1373899},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=16"},"gitHead":"5e6280ffd4ed57ab83a6cfff259febce847e8545","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives=false","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.10.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.41.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.10","glob":"^10.3.10","husky":"^8.0.3","mocha":"^10.2.0","eslint":"9.0.0-alpha.0","espree":"^9.6.1","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^13.24.0","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.4","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.7","@babel/node":"^7.22.19","@types/chai":"^4.3.11","@types/node":"^20.10.6","json-schema":"^0.4.0","lint-staged":"^15.2.0","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.0","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","@babel/register":"^7.23.7","semantic-release":"^22.0.12","@babel/preset-env":"^7.23.7","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.3","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.0","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.6","@typescript-eslint/parser":"^6.16.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_46.10.1_1703944110225_0.0963819054700541","host":"s3://npm-registry-packages"}},"47.0.0":{"name":"eslint-plugin-jsdoc","version":"47.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@47.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7b4c27fe1b3cb450790bc8f03a1fdb8516c462c9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-47.0.0.tgz","fileCount":134,"integrity":"sha512-0AsSpqE1xLSW8mZMW3i7o4VeNxCzI1JJaoAxlx1F2Oj1Cn1UYToJl4M36Bu7iVMDTykzwVbnsCJnWFiJZcPlLQ==","signatures":[{"sig":"MEQCIF3l5iyuR93M3qj9RAcgGVeO1Atcvno10sBesLU6mKhMAiBM2NWwDExWECgNcOwntNXGh5F9wjPteXMdYP1XBbQOFg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1374448},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=16"},"gitHead":"dd9e71daa223ff04e508b8abc4692de3172bc7b0","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives-severity=off","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.10.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.41.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.10","glob":"^10.3.10","husky":"^8.0.3","mocha":"^10.2.0","eslint":"9.0.0-alpha.0","espree":"^9.6.1","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^13.24.0","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.4","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.7","@babel/node":"^7.22.19","@types/chai":"^4.3.11","@types/node":"^20.10.6","json-schema":"^0.4.0","lint-staged":"^15.2.0","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.0","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","@babel/register":"^7.23.7","semantic-release":"^22.0.12","@babel/preset-env":"^7.23.7","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.3","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.0","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.6","@typescript-eslint/parser":"^6.16.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_47.0.0_1704047908938_0.29711064898695083","host":"s3://npm-registry-packages"}},"47.0.1":{"name":"eslint-plugin-jsdoc","version":"47.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@47.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"fb8d721761954d4088834670cb97aff2b231944a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-47.0.1.tgz","fileCount":134,"integrity":"sha512-h96OSnZMs8Dph82cw09gE3rVHP6jdyRf4JXVnZRi6jTa8IdqSM5/dtgh0LWetYBDNXvxzMXP9mRhxiD5Oxczug==","signatures":[{"sig":"MEUCIQCMGgGyJ6CxUKoPeTLo73f0O+F+VQwCS/vLvV5g5PNaqwIgEGApF3BOVMZ9dFm15q4tbl/36i22479Yg1AXr9PLlb4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1376368},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=16"},"gitHead":"47f316160d0ac55b8b5c0b0239b703b44bc383c0","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint --report-unused-disable-directives-severity=off","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.10.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.41.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.10","glob":"^10.3.10","husky":"^8.0.3","mocha":"^10.2.0","eslint":"9.0.0-alpha.0","espree":"^9.6.1","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^13.24.0","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.4","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.7","@babel/node":"^7.22.19","@types/chai":"^4.3.11","@types/node":"^20.10.6","json-schema":"^0.4.0","lint-staged":"^15.2.0","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.0","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","@babel/register":"^7.23.7","semantic-release":"^22.0.12","@babel/preset-env":"^7.23.7","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.3","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.0","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.6","@typescript-eslint/parser":"^6.16.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_47.0.1_1704051056150_0.6000076296482268","host":"s3://npm-registry-packages"}},"47.0.2":{"name":"eslint-plugin-jsdoc","version":"47.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@47.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"nyc":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"require":["@babel/register"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"113a6370e623535e5c6e0a59a094ffdc253371ff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-47.0.2.tgz","fileCount":134,"integrity":"sha512-sIq81Pv+yrhhwY0m1JH79rdZRgDNunehv3S0Yv0UfewpoeJyPkODFn2o4o20nofVoI2tjku9/QBcCYUmmeWFXA==","signatures":[{"sig":"MEYCIQCVL04hLEKI6f+sD4rVWmZa2la1Rtgx0MA6/d4RdY40GwIhAJ3Y+QV6TLHHltj5MakEUdluTUIBTtiTBjpri7O6XVnA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1376355},"main":"./dist/index.js","mocha":{"require":["@babel/register"],"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=16"},"gitHead":"3677e43322f74a22d2a91a60ebed5f367e6461af","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"nyc npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 nyc --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.10.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.41.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"nyc":"^15.1.0","chai":"^4.3.10","glob":"^10.3.10","husky":"^8.0.3","mocha":"^10.2.0","eslint":"9.0.0-alpha.0","espree":"^9.6.1","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^13.24.0","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.4","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.7","@babel/node":"^7.22.19","@types/chai":"^4.3.11","@types/node":"^20.10.6","json-schema":"^0.4.0","lint-staged":"^15.2.0","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.0","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","@babel/register":"^7.23.7","semantic-release":"^22.0.12","@babel/preset-env":"^7.23.7","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.3","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.0","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.6","@typescript-eslint/parser":"^6.16.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_47.0.2_1704089578451_0.9478614059192993","host":"s3://npm-registry-packages"}},"48.0.0":{"name":"eslint-plugin-jsdoc","version":"48.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"0eabfce72d3c957cb13f60d2e5ca071d9e5ac93f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.0.0.tgz","fileCount":134,"integrity":"sha512-5Je3SmLJY8aqsdVie5CTOsrGos11CrfY+qRbujqZ+G6u+IvyymUcYn8dct6dPphyrWEwjkn9xmo8mBv7Ino3Xw==","signatures":[{"sig":"MEUCIAPX2jivLUG8V5ADyFIPU2oaJdoxybll4lzk1/mxDTZwAiEA5qFvgcCBdQgfvf6Q52psa6d2zH4+Mqk1hMztJvgbCPA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1376788},"main":"./dist/index.js","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"6ac811662d11f8a6d6ad9b963d9e257e9ec55cba","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.10.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.41.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^8.0.1","chai":"^4.3.10","glob":"^10.3.10","husky":"^8.0.3","mocha":"^10.2.0","eslint":"9.0.0-alpha.0","espree":"^9.6.1","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^13.24.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.4","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.7","@babel/node":"^7.22.19","@types/chai":"^4.3.11","@types/node":"^20.10.6","json-schema":"^0.4.0","lint-staged":"^15.2.0","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.0","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","semantic-release":"^22.0.12","@babel/preset-env":"^7.23.7","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.3","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.0","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.6","@typescript-eslint/parser":"^6.17.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.0.0_1704216369317_0.5101794910040298","host":"s3://npm-registry-packages"}},"48.0.1":{"name":"eslint-plugin-jsdoc","version":"48.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d92339e437b4429de6b8504b94c517c39ec1f705","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.0.1.tgz","fileCount":197,"integrity":"sha512-XFrkEyCSFWRz3mrWK4Fa9T/eE2RUg5CRc8VG7habOzl/gu8J5FxqwfpLYsMF2yEvGZ0vSaZeTnh+O2Bw1yXtUQ==","signatures":[{"sig":"MEYCIQDmBqFYRMFgA0K3n0bY0PlUwifPe85oB29Yrk5VK4yi5gIhAMkOKm14W18aZmjvI9DHp6sqH7jV6NqZtGVVkpJK6F47","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1833987},"main":"./dist/index.js","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"d940187557502227af5164f7d3c786570a888e4e","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.10.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.41.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^8.0.1","chai":"^4.3.10","glob":"^10.3.10","husky":"^8.0.3","mocha":"^10.2.0","eslint":"9.0.0-alpha.0","espree":"^9.6.1","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^13.24.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.4","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.7","@babel/node":"^7.22.19","@types/chai":"^4.3.11","@types/node":"^20.10.6","json-schema":"^0.4.0","lint-staged":"^15.2.0","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.0","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","semantic-release":"^22.0.12","@babel/preset-env":"^7.23.7","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.3","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.0","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.6","@typescript-eslint/parser":"^6.17.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.0.1_1704216911077_0.6584444686586584","host":"s3://npm-registry-packages"}},"48.0.2":{"name":"eslint-plugin-jsdoc","version":"48.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b843107e8caec57b8b463f04797be3b30d6a52da","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.0.2.tgz","fileCount":197,"integrity":"sha512-CBFl5Jc7+jlV36RwDm+PQ8Uw5r28pn2/uW/OaB+Gw5bFwn4Py/1eYMZ3hGf9S4meUFZ/sRvS+hVif2mRAp6WqQ==","signatures":[{"sig":"MEUCIQCHI6YTTfW6ynGyODyLW/DivRKEOCOwtMgKtAMJNSORwgIgLA2oH///xAA+wn49d6cLjYp+N0/5lgeemwbgqyU1bbs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1833988},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"b60cbb027b03b4f6d509933b0dca8681dbe47206","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.10.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.41.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^8.0.1","chai":"^4.3.10","glob":"^10.3.10","husky":"^8.0.3","mocha":"^10.2.0","eslint":"9.0.0-alpha.0","espree":"^9.6.1","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^13.24.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.4","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.7","@babel/node":"^7.22.19","@types/chai":"^4.3.11","@types/node":"^20.10.6","json-schema":"^0.4.0","lint-staged":"^15.2.0","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.0","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","semantic-release":"^22.0.12","@babel/preset-env":"^7.23.7","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.3","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.0","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.6","@typescript-eslint/parser":"^6.17.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.0.2_1704233559829_0.32165687987322134","host":"s3://npm-registry-packages"}},"48.0.3":{"name":"eslint-plugin-jsdoc","version":"48.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"242d92f64c676a697612c0104e1fc1a8d9fd414f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.0.3.tgz","fileCount":197,"integrity":"sha512-+vQWLZ9QmT23yU+8yolfga6p9AtC6dUCwtVoJe4+DClvhnoGswKZcOqw+tMA/lkj5zbgr67PYWwgMvQftPx7Dw==","signatures":[{"sig":"MEUCIQD9VL4DERpR3Bjd5wXta1Zhdh55byUbtjZettt82K5AYgIgNxTMzIdnQ/iQRYSQFMPrjqcpc1Xzt7dQAfb2caBF2HQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1834571},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"6b163c82b33e68febabfb88ba346c942176cd593","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.10.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.41.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.3.10","husky":"^8.0.3","mocha":"^10.2.0","eslint":"9.0.0-alpha.0","espree":"^9.6.1","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^13.24.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.4","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.7","@babel/node":"^7.22.19","@types/chai":"^4.3.11","@types/node":"^20.11.6","json-schema":"^0.4.0","lint-staged":"^15.2.0","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.2","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","semantic-release":"^23.0.0","@babel/preset-env":"^7.23.8","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.3","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.6","@typescript-eslint/parser":"^6.19.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.0.3_1706135886374_0.13413044810136943","host":"s3://npm-registry-packages"}},"48.0.4":{"name":"eslint-plugin-jsdoc","version":"48.0.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.0.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ca54da8937b2f6fd242a16dbb1b9ff5050baf223","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.0.4.tgz","fileCount":197,"integrity":"sha512-A0cH+5svWPXzGZszBjXA1t0aAqVGS+/x3i02KFmb73rU0iMLnadEcVWcD/dGBZHIfAMKr3YpWh58f6wn4N909w==","signatures":[{"sig":"MEUCIQDPAwvEBYdoIjUosLVcmYS4Kql9BNsPwEd3LDnbI0uQZwIgGc+R8pefQFvvrxUcprcDIhUpB4lnF+w22MYEAZk5gmY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1834574},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"c5f203ade7b76a7d8d69735b524dfeda130d508c","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.11.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.41.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.3.10","husky":"^8.0.3","mocha":"^10.2.0","eslint":"9.0.0-alpha.0","espree":"^9.6.1","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^13.24.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.4","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.7","@babel/node":"^7.22.19","@types/chai":"^4.3.11","@types/node":"^20.11.6","json-schema":"^0.4.0","lint-staged":"^15.2.0","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.2","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","semantic-release":"^23.0.0","@babel/preset-env":"^7.23.8","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.3","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.6","@typescript-eslint/parser":"^6.19.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.0.4_1706231980815_0.8903958368001961","host":"s3://npm-registry-packages"}},"48.0.5":{"name":"eslint-plugin-jsdoc","version":"48.0.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.0.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"378eabf932f1a5ab09efeecbbfb55d71fce71b83","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.0.5.tgz","fileCount":197,"integrity":"sha512-9ZYb3W6r6nZ3jc9vmJ2pZoINLhk9iI6rEFTfU7sTRAzFUWh00SRI9SRZ+IgDoiIPTp2tOUXs0vDOApdIlTnFKA==","signatures":[{"sig":"MEYCIQDm1KR/KzuNp4+Eh7nJeySzykkHVwqsssQyFYNcyOAARwIhAIEjxz7Igz1cbILs+MbQyt0wH820aHA/F2YRFl/ubM8u","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1834574},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"f2aef87e42db465fdc11dc346c88dbac12c8f466","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.11.0","dependencies":{"debug":"^4.3.4","semver":"^7.5.4","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.41.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.3.10","husky":"^8.0.3","mocha":"^10.2.0","eslint":"9.0.0-alpha.0","espree":"^9.6.1","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^13.24.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.4","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.7","@babel/node":"^7.22.19","@types/chai":"^4.3.11","@types/node":"^20.11.6","json-schema":"^0.4.0","lint-staged":"^15.2.0","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.2","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","semantic-release":"^23.0.0","@babel/preset-env":"^7.23.8","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.3","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.6","@typescript-eslint/parser":"^6.19.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.0.5_1707165392936_0.2546537176522279","host":"s3://npm-registry-packages"}},"48.0.6":{"name":"eslint-plugin-jsdoc","version":"48.0.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.0.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"be74ff68b517417eec42df5908201194ebdfb5ee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.0.6.tgz","fileCount":197,"integrity":"sha512-LgwXOX6TWxxFYcbdVe+BJ94Kl/pgjSPYHLzqEdAMXTA1BH9WDx7iJ+9/iDajPF64LtzWX8C1mCfpbMZjJGhAOw==","signatures":[{"sig":"MEUCIH+8EhL9uRQ18giGjO8Ic1jMZBjCI+jqkeO9MWVmQg3HAiEA4TA05X0+rfj+ry3Y6irKVGN/XqsDSctly7dYWP0E7wk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1835333},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"e9a9b74ae49d198b2c5afcf304c5928f16867e7a","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.11.0","dependencies":{"debug":"^4.3.4","semver":"^7.6.0","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.42.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.3.10","husky":"^9.0.10","mocha":"^10.2.0","eslint":"9.0.0-alpha.0","espree":"^10.0.0","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^13.24.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.9","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.9","@babel/node":"^7.23.9","@types/chai":"^4.3.11","@types/node":"^20.11.16","json-schema":"^0.4.0","lint-staged":"^15.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.2","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","semantic-release":"^23.0.0","@babel/preset-env":"^7.23.9","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.10","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.6","@typescript-eslint/parser":"^6.21.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.0.6_1707240344662_0.5252829573620474","host":"s3://npm-registry-packages"}},"48.1.0":{"name":"eslint-plugin-jsdoc","version":"48.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"565363770b433485bfc70dc862b50b7f780529ec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.1.0.tgz","fileCount":197,"integrity":"sha512-g9S8ukmTd1DVcV/xeBYPPXOZ6rc8WJ4yi0+MVxJ1jBOrz5kmxV9gJJQ64ltCqIWFnBChLIhLVx3tbTSarqVyFA==","signatures":[{"sig":"MEQCICIwuU6z44tp9zkg82HIPtgVpY8ATKo0VT9V9ZFEuDqzAiBWCXwWhr91XZNjBLW5Hpf3fCF5y6NE4HVKPyGJH/Kirg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1836656},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"37df54dc8535eaed65b4dadaca2dc072e4c7bc4e","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.11.0","dependencies":{"debug":"^4.3.4","semver":"^7.6.0","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.42.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.3.10","husky":"^9.0.10","mocha":"^10.2.0","eslint":"9.0.0-alpha.0","espree":"^10.0.0","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^13.24.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.9","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.9","@babel/node":"^7.23.9","@types/chai":"^4.3.11","@types/node":"^20.11.16","json-schema":"^0.4.0","lint-staged":"^15.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.2","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","semantic-release":"^23.0.0","@babel/preset-env":"^7.23.9","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.10","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.6","@typescript-eslint/parser":"^6.21.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.1.0_1707896257919_0.2612278675553701","host":"s3://npm-registry-packages"}},"48.2.0":{"name":"eslint-plugin-jsdoc","version":"48.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a726fbd6fa286fad8fc14f0a6aca48488d188d95","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.0.tgz","fileCount":197,"integrity":"sha512-O2B1XLBJnUCRkggFzUQ+PBYJDit8iAgXdlu8ucolqGrbmOWPvttZQZX8d1sC0MbqDMSLs8SHSQxaNPRY1RQREg==","signatures":[{"sig":"MEUCIBkfSccblQobiIshb6dN6AXlHcj8Fp5zKuLuiatP+P95AiEA4KQISQjTHJkm54w4ZV5TiWvpAKCU+Z1rQkjUzEtR/ss=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1839586},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"ba642e4d1ac335aed7566ec5d822a71195e9e75f","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.11.1","dependencies":{"debug":"^4.3.4","semver":"^7.6.0","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.42.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.3.10","husky":"^9.0.10","mocha":"^10.2.0","eslint":"9.0.0-alpha.0","espree":"^10.0.0","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^13.24.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.9","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.9","@babel/node":"^7.23.9","@types/chai":"^4.3.11","@types/node":"^20.11.16","json-schema":"^0.4.0","lint-staged":"^15.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.2","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","semantic-release":"^23.0.0","@babel/preset-env":"^7.23.9","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.10","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.6","@typescript-eslint/parser":"^6.21.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.2.0_1708609536867_0.22987879563053215","host":"s3://npm-registry-packages"}},"48.2.1":{"name":"eslint-plugin-jsdoc","version":"48.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9334a05555a95fdc192980627142177963b668b4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.1.tgz","fileCount":197,"integrity":"sha512-iUvbcyDZSO/9xSuRv2HQBw++8VkV/pt3UWtX9cpPH0l7GKPq78QC/6+PmyQHHvNZaTjAce6QVciEbnc6J/zH5g==","signatures":[{"sig":"MEUCIGNghlk6WHDzMH5Tfrws17wkWMTf4rcja/PYrZi4hpD2AiEAtOKDCr3JbxoJnQpoaMMibt1nnvllEtSGEN/UqR6WWl0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1839813},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"783b4e96eef457715a0bce234730da7bb5ec1a3b","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.11.1","dependencies":{"debug":"^4.3.4","semver":"^7.6.0","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.42.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.3.10","husky":"^9.0.10","mocha":"^10.2.0","eslint":"9.0.0-alpha.0","espree":"^10.0.0","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^13.24.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.9","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.9","@babel/node":"^7.23.9","@types/chai":"^4.3.11","@types/node":"^20.11.16","json-schema":"^0.4.0","lint-staged":"^15.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.2","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","semantic-release":"^23.0.0","@babel/preset-env":"^7.23.9","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.10","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.6","@typescript-eslint/parser":"^6.21.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.2.1_1709805336683_0.11767774022642818","host":"s3://npm-registry-packages"}},"48.2.2":{"name":"eslint-plugin-jsdoc","version":"48.2.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.2.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"eefdc5e3bb3cea957b66dd4817e9de30930b5270","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.2.tgz","fileCount":197,"integrity":"sha512-S0Gk+rpT5w/ephKCncUY7kUsix9uE4B9XI8D/fS1/26d8okE+vZsuG1IvIt4B6sJUdQqsnzi+YXfmh+HJG11CA==","signatures":[{"sig":"MEYCIQDuLMz5jCcERL1mfMM6u6rwJj5Z/e3jQqvR5VAEOmfwGwIhAJMqUFeeq6J4OchhVE4psTgPh0fXbuCvyDvzk2qYw9bR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1840122},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"9e9fed5000fd3f3d55ad2677817af1a7b1ee3115","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.11.1","dependencies":{"debug":"^4.3.4","semver":"^7.6.0","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.42.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.3.10","husky":"^9.0.10","mocha":"^10.2.0","eslint":"9.0.0-alpha.0","espree":"^10.0.0","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^13.24.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.9","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.9","@babel/node":"^7.23.9","@types/chai":"^4.3.11","@types/node":"^20.11.16","json-schema":"^0.4.0","lint-staged":"^15.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.2","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","semantic-release":"^23.0.0","@babel/preset-env":"^7.23.9","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.10","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.6","@typescript-eslint/parser":"^6.21.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.2.2_1711596470670_0.866109652984917","host":"s3://npm-registry-packages"}},"48.2.3":{"name":"eslint-plugin-jsdoc","version":"48.2.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.2.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"0188d17c7a4aa7185416556589e71a954b343ecd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.3.tgz","fileCount":197,"integrity":"sha512-r9DMAmFs66VNvNqRLLjHejdnJtILrt3xGi+Qx0op0oRfFGVpOR1Hb3BC++MacseHx93d8SKYPhyrC9BS7Os2QA==","signatures":[{"sig":"MEYCIQCbuvfdLJP9EhIfdpI/S0ysEgSB1/dcxI48pyhdpnHVUAIhAOj0ekesq0IGicgWeF/i3QD4hqSP0UtM/8K4p4nTtQiX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1840725},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"ab5624be6278836241955b2b336bf3b0803ab33d","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.2.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.11.1","dependencies":{"debug":"^4.3.4","semver":"^7.6.0","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.42.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.3.10","husky":"^9.0.10","mocha":"^10.2.0","eslint":"9.0.0-alpha.0","espree":"^10.0.0","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^13.24.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.23.9","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.23.9","@babel/node":"^7.23.9","@types/chai":"^4.3.11","@types/node":"^20.11.16","json-schema":"^0.4.0","lint-staged":"^15.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.2","@types/estree":"^1.0.5","@types/semver":"^7.5.6","@types/esquery":"^1.5.3","semantic-release":"^23.0.0","@babel/preset-env":"^7.23.9","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.23.10","@semantic-release/npm":"^11.0.2","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^9.2.6","@typescript-eslint/parser":"^6.21.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^11.1.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.23.3"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.2.3_1712273417518_0.7108789034433467","host":"s3://npm-registry-packages"}},"48.2.4":{"name":"eslint-plugin-jsdoc","version":"48.2.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.2.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"0b6972faa9e5de89a08f1b0bcdc30e70a9cad736","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.4.tgz","fileCount":197,"integrity":"sha512-3ebvVgCJFy06gpmuS2ynz13uh9iFSzZ1C1dDkgcSAqVVg82zlORKMk2fvjq708pAO6bwfs5YLttknFEbaoDiGw==","signatures":[{"sig":"MEQCICj36he9sGUSxJRtctLLjmjM7INVTPZoW28lITKue9U7AiAQAyu3D8kBDyPNT+aR40cj9CqGU80flgTRa5BRMi2mCw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1842586},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"4da4aebf35f49b607e32dcfb3142dba812e6d705","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.12.2","dependencies":{"debug":"^4.3.4","semver":"^7.6.0","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.43.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.3.12","husky":"^9.0.11","mocha":"^10.4.0","eslint":"9.0.0","espree":"^10.0.1","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^15.0.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.1","decamelize":"^5.0.1","typescript":"5.3.3","@babel/core":"^7.24.4","@babel/node":"^7.23.9","@types/chai":"^4.3.14","@types/node":"^20.12.5","json-schema":"^0.4.0","lint-staged":"^15.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.7","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.3","semantic-release":"^23.0.7","@babel/preset-env":"^7.24.4","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.1","@semantic-release/npm":"^12.0.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.1","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.0.2","@typescript-eslint/parser":"^7.5.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^12.0.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.2.4_1715264200856_0.6281711163156569","host":"s3://npm-registry-packages"}},"48.2.5":{"name":"eslint-plugin-jsdoc","version":"48.2.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.2.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"66ec712632852faa15065a094342786858f13c49","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.5.tgz","fileCount":197,"integrity":"sha512-ZeTfKV474W1N9niWfawpwsXGu+ZoMXu4417eBROX31d7ZuOk8zyG66SO77DpJ2+A9Wa2scw/jRqBPnnQo7VbcQ==","signatures":[{"sig":"MEYCIQCQUFuSNsrHEE83w7UO1aXCGgmtHer9ny8illvBDduPmQIhAKlTxAAzGyFwbZhq2KzVQCGzLUtyHf8i0dhQEvfmndK9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1843602},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"d417d05d946dbcb61402b94813ead1bfcee8eab1","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.5.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.12.2","dependencies":{"debug":"^4.3.4","semver":"^7.6.1","esquery":"^1.5.0","comment-parser":"1.4.1","is-builtin-module":"^3.2.1","@es-joy/jsdoccomment":"~0.43.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.3.13","husky":"^9.0.11","mocha":"^10.4.0","eslint":"9.2.0","espree":"^10.0.1","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^15.2.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.5","decamelize":"^5.0.1","typescript":"5.3.x","@babel/core":"^7.24.5","@babel/node":"^7.23.9","@types/chai":"^4.3.16","@types/node":"^20.12.11","json-schema":"^0.4.0","lint-staged":"^15.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.3","semantic-release":"^23.0.8","@babel/preset-env":"^7.24.5","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.5","@semantic-release/npm":"^12.0.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.2","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.0.3","@typescript-eslint/parser":"^7.8.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^12.0.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.2.5_1715791297426_0.36176659587607163","host":"s3://npm-registry-packages"}},"48.2.6":{"name":"eslint-plugin-jsdoc","version":"48.2.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.2.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"3c78c11112025c65b68cd87fab7e459754c301f6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.6.tgz","fileCount":197,"integrity":"sha512-GNk9jtpYmoEVeD/U6yYYmd6T8vSOoPs7CL8ZeX85iD8P3qifDdLQGze6+cw9boobDthmYnnxvIoHrhuSffj09g==","signatures":[{"sig":"MEYCIQD1zzB4ToZIsFwnqKaQn0T1EpSZY0YxmyukNO8xOaxTEQIhAL8VI5nqeQo4GUn4mvcs1n+5ZFJIrILa3wYELyXx/Weg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1843721},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"93a94158585802b1ef92bb703b06599cf19c507b","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.5.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.13.1","dependencies":{"debug":"^4.3.4","semver":"^7.6.1","esquery":"^1.5.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.43.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.3.13","husky":"^9.0.11","mocha":"^10.4.0","eslint":"9.2.0","espree":"^10.0.1","rimraf":"^5.0.5","gitdown":"^3.1.5","globals":"^15.2.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.5","decamelize":"^5.0.1","typescript":"5.3.x","@babel/core":"^7.24.5","@babel/node":"^7.23.9","@types/chai":"^4.3.16","@types/node":"^20.12.11","json-schema":"^0.4.0","lint-staged":"^15.2.2","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.3","semantic-release":"^23.0.8","@babel/preset-env":"^7.24.5","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.5","@semantic-release/npm":"^12.0.0","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~42.8.2","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.0.3","@typescript-eslint/parser":"^7.8.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^12.0.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.2.6_1716483163911_0.8477525536406925","host":"s3://npm-registry-packages"}},"48.2.7":{"name":"eslint-plugin-jsdoc","version":"48.2.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.2.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2610b6fa1a9ba45c8296c2f335e0360bbd238772","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.7.tgz","fileCount":197,"integrity":"sha512-fYj3roTnkFL9OFFTB129rico8lerC5G8Vp2ZW9SjO9RNWG0exVvI+i/Y8Bpm1ufjR0uvT38xtoab/U0Hp8Ybog==","signatures":[{"sig":"MEQCIDAOdCno4n2hSARP8vyGhmsRRRiMArfhcQhuG/UP7RNsAiBlEQaSPrpVP/jBx8VMU1PaTfa15iqeQDTm+p7SCxMXeQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1843039},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"fb3e0e6cd2535af323286b56e37bccf519d56920","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.5.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.13.1","dependencies":{"debug":"^4.3.4","semver":"^7.6.2","esquery":"^1.5.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.43.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.4.1","husky":"^9.0.11","mocha":"^10.4.0","eslint":"9.3.0","espree":"^10.0.1","rimraf":"^5.0.7","gitdown":"^3.1.5","globals":"^15.3.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.6","decamelize":"^5.0.1","typescript":"5.3.x","@babel/core":"^7.24.6","@babel/node":"^7.24.6","@types/chai":"^4.3.16","@types/node":"^20.12.12","json-schema":"^0.4.0","lint-staged":"^15.2.5","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^23.1.1","@babel/preset-env":"^7.24.6","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.6","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~43.0.12","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.0.5","@typescript-eslint/parser":"^7.11.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^12.0.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.6"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.2.7_1716998598617_0.042112686005773003","host":"s3://npm-registry-packages"}},"48.2.8":{"name":"eslint-plugin-jsdoc","version":"48.2.8","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.2.8","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e0c90b7cfac592c78367499b762dff784217ea68","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.8.tgz","fileCount":197,"integrity":"sha512-b72WNCHxmcrtYh6ejy0Y5rQH0mJpym27fT4P3HU3fbqEo3J95/hdG7VlevOHK0PZrHk1pVnClCBH7wXw2RMIXg==","signatures":[{"sig":"MEQCIBfeGnbjvGsl8r+jH7oYvZ7zSPrs0yZo3orF1a/9kyAoAiAVUc81ZsMsRJUonbTkgKduTE4ft+kHH2EWTZi1bXUlyA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1843271},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"e9e444034f60b7a2554b99b81cada6271f111609","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.14.0","dependencies":{"debug":"^4.3.4","semver":"^7.6.2","esquery":"^1.5.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.43.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.4.1","husky":"^9.0.11","mocha":"^10.4.0","eslint":"9.3.0","espree":"^10.0.1","rimraf":"^5.0.7","gitdown":"^3.1.5","globals":"^15.3.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.6","decamelize":"^5.0.1","typescript":"5.3.x","@babel/core":"^7.24.6","@babel/node":"^7.24.6","@types/chai":"^4.3.16","@types/node":"^20.12.12","json-schema":"^0.4.0","lint-staged":"^15.2.5","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^23.1.1","@babel/preset-env":"^7.24.6","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.6","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~43.0.12","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.0.5","@typescript-eslint/parser":"^7.11.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^12.0.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.6"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.2.8_1717617732632_0.4547655131253856","host":"s3://npm-registry-packages"}},"48.2.9":{"name":"eslint-plugin-jsdoc","version":"48.2.9","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.2.9","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"dd5e293bc584c94e24f0b2bc4a953252b3f96d70","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.9.tgz","fileCount":197,"integrity":"sha512-ErpKyr2mEUEkcdZ4nwW/cvDjClvAcvJMEXkGGll0wf8sro8h6qeQ3qlZyp1vM1dRk8Ap6rMdke8FnP94QBIaVQ==","signatures":[{"sig":"MEUCIEHITvI0q6y7/gs9Qc7h/RpLc37zKexg+lb2QuuGUPBpAiEArb4vG+N7mxsWzTOCU5UrkEc4AvUjyOqJK8utkNJQfSs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1843421},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"fbc9fca5cf2afbe8cc208eaf8de6465812a7bdd5","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.14.0","dependencies":{"debug":"^4.3.4","semver":"^7.6.2","esquery":"^1.5.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.43.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.4.1","husky":"^9.0.11","mocha":"^10.4.0","eslint":"9.3.0","espree":"^10.0.1","rimraf":"^5.0.7","gitdown":"^3.1.5","globals":"^15.3.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.6","decamelize":"^5.0.1","typescript":"5.3.x","@babel/core":"^7.24.6","@babel/node":"^7.24.6","@types/chai":"^4.3.16","@types/node":"^20.12.12","json-schema":"^0.4.0","lint-staged":"^15.2.5","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^23.1.1","@babel/preset-env":"^7.24.6","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.6","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~43.0.12","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.0.5","@typescript-eslint/parser":"^7.11.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^12.0.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.6"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.2.9_1717721635347_0.5947057221908081","host":"s3://npm-registry-packages"}},"48.2.10":{"name":"eslint-plugin-jsdoc","version":"48.2.10","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.2.10","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b884aa66a9aeedc75b4b0cb35e8fea20e01ae5cd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.10.tgz","fileCount":197,"integrity":"sha512-rrCbh/pflRaqRcJCsnkSdhxtYzxtEel2gFBBUuV02CxpTAqeqeiW2/QcaheyTlBIoeX+/JkZaJkf52psH7iTXw==","signatures":[{"sig":"MEUCIEXVxkuxkxkMho5mIn1tb3Tq0cgZRWdzD1kRG3/Wey4WAiEAukd2Lr66TqXwwWaQjgxZto0lljDPgnIqpG0To/EU8s4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1844136},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"5429982d7a4c632ca189d619aaed4ff595934e14","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.14.0","dependencies":{"debug":"^4.3.4","semver":"^7.6.2","esquery":"^1.5.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.43.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.4.1","husky":"^9.0.11","mocha":"^10.4.0","eslint":"9.3.0","espree":"^10.0.1","rimraf":"^5.0.7","gitdown":"^3.1.5","globals":"^15.3.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.6","decamelize":"^5.0.1","typescript":"5.3.x","@babel/core":"^7.24.6","@babel/node":"^7.24.6","@types/chai":"^4.3.16","@types/node":"^20.12.12","json-schema":"^0.4.0","lint-staged":"^15.2.5","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^23.1.1","@babel/preset-env":"^7.24.6","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.6","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~43.0.12","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.0.5","@typescript-eslint/parser":"^7.11.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^12.0.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.6"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.2.10_1718293218069_0.35842212387706684","host":"s3://npm-registry-packages"}},"48.2.11":{"name":"eslint-plugin-jsdoc","version":"48.2.11","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.2.11","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"04d7ef9941983e202e39089972f4a351e647513e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.11.tgz","fileCount":197,"integrity":"sha512-mM4RSR1hBPwdtI+boITfDZTxvEYTANSWr3y/D+YR8OshtU3pMgYXC8LrjudhYf0O0g67A7QwlT1gZzhmNy1S4Q==","signatures":[{"sig":"MEUCIQC1nK3fxTOjfSr3pw6w3OCdXhWEzw4e9KKyV/lTSIBGkgIgW92bGSAh1IFAHWDa95k463L6n3MipPtzqtHAhWHIZkc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1844264},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"c2d5a353e26ed33efd02cac0d9189b4246424bbf","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.14.0","dependencies":{"debug":"^4.3.4","semver":"^7.6.2","esquery":"^1.5.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.43.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.4.1","husky":"^9.0.11","mocha":"^10.4.0","eslint":"9.3.0","espree":"^10.0.1","rimraf":"^5.0.7","gitdown":"^3.1.5","globals":"^15.3.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.6","decamelize":"^5.0.1","typescript":"5.3.x","@babel/core":"^7.24.6","@babel/node":"^7.24.6","@types/chai":"^4.3.16","@types/node":"^20.12.12","json-schema":"^0.4.0","lint-staged":"^15.2.5","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^23.1.1","@babel/preset-env":"^7.24.6","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.6","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~43.0.12","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.0.5","@typescript-eslint/parser":"^7.11.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^12.0.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.6"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.2.11_1718299899090_0.5812186682765306","host":"s3://npm-registry-packages"}},"48.2.12":{"name":"eslint-plugin-jsdoc","version":"48.2.12","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.2.12","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e8411c87e55db3f21a288e04bf7e1fb5fa62dfa9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.12.tgz","fileCount":197,"integrity":"sha512-sO9sKkJx5ovWoRk9hV0YiNzXQ4Z6j27CqE/po2E3wddZVuy9wvKPSTiIhpxMTrP/qURvKayJIDB2+o9kyCW1Fw==","signatures":[{"sig":"MEUCIDl4HAMLqkB9cd49Le50b6wrgXWgsckjqahNn++JhQUFAiEAua84JYiSxMkBQcK8TJAM/7G7Xslh/2AFyDgwWPgGodo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1844307},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"8603579b1f5f3aa3c8357949ed6b2b2d5265149a","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.14.0","dependencies":{"debug":"^4.3.4","semver":"^7.6.2","esquery":"^1.5.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.43.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.4.1","husky":"^9.0.11","mocha":"^10.4.0","eslint":"9.3.0","espree":"^10.0.1","rimraf":"^5.0.7","gitdown":"^3.1.5","globals":"^15.3.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.6","decamelize":"^5.0.1","typescript":"5.3.x","@babel/core":"^7.24.6","@babel/node":"^7.24.6","@types/chai":"^4.3.16","@types/node":"^20.12.12","json-schema":"^0.4.0","lint-staged":"^15.2.5","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^23.1.1","@babel/preset-env":"^7.24.6","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.6","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~43.0.12","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.0.5","@typescript-eslint/parser":"^7.11.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^12.0.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.6"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.2.12_1718351693428_0.8127150128901199","host":"s3://npm-registry-packages"}},"48.2.13":{"name":"eslint-plugin-jsdoc","version":"48.2.13","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.2.13","homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"302cad264feddacf68a03150e7c4c1826ca4649d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.13.tgz","fileCount":197,"integrity":"sha512-4MzMKN0uMIehmFUVzJxNmjc573HnTKLt7Qrg7QQyXC3JkHBweaVbHwgwG+T3boefD3NyLXRHNOYYPJqmslDvHA==","signatures":[{"sig":"MEQCIF7NnePBt7YCHaqdCNJXJswWHFBsvouRPgMul9bkKY1uAiAQNKlchl4RPX9soeD/TLO8ghq25VThz9NpaIr4Krr0XQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1844679},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"0bea15458c7f8acc71fdc6e965a67adb890a58d0","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.14.0","dependencies":{"debug":"^4.3.4","semver":"^7.6.2","esquery":"^1.5.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.43.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.4.1","husky":"^9.0.11","mocha":"^10.4.0","eslint":"9.3.0","espree":"^10.0.1","rimraf":"^5.0.7","gitdown":"^3.1.5","globals":"^15.3.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.6","decamelize":"^5.0.1","typescript":"5.3.x","@babel/core":"^7.24.6","@babel/node":"^7.24.6","@types/chai":"^4.3.16","@types/node":"^20.12.12","json-schema":"^0.4.0","lint-staged":"^15.2.5","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^23.1.1","@babel/preset-env":"^7.24.6","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.6","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~43.0.12","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.0.5","@typescript-eslint/parser":"^7.11.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^12.0.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.6"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.2.13_1719042306879_0.5554612095793934","host":"s3://npm-registry-packages"}},"48.2.14":{"name":"eslint-plugin-jsdoc","version":"48.2.14","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.2.14","homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"66f3849f89cfde92c4bcd3535266f68782edc343","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.14.tgz","fileCount":197,"integrity":"sha512-QEo2b/LW0Ab4X+Ygx/W/nTfh0JzuPstCWGptyLsuzYWB2/0nc8/oureDgzNxqSBPpsEOn1+5McPcv2++GyuPVw==","signatures":[{"sig":"MEQCIG6cJrqsQoT1W88MskOxyG5BsgbeegAmGL5qnx/yFaq5AiBeYSw6/V+A9NQphCzihWudDsgfZhM2JCADtjlg+KoJNQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1849829},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"34ba2e01d8de1c8a8558cc3f6f93c23d6bc49250","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.14.0","dependencies":{"debug":"^4.3.4","semver":"^7.6.2","esquery":"^1.5.0","parse-imports":"^2.0.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.43.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.4.1","husky":"^9.0.11","mocha":"^10.4.0","eslint":"9.3.0","espree":"^10.0.1","rimraf":"^5.0.7","gitdown":"^3.1.5","globals":"^15.3.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.6","decamelize":"^5.0.1","typescript":"5.3.x","@babel/core":"^7.24.6","@babel/node":"^7.24.6","@types/chai":"^4.3.16","@types/node":"^20.12.12","json-schema":"^0.4.0","lint-staged":"^15.2.5","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^23.1.1","@babel/preset-env":"^7.24.6","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.6","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~43.0.12","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.0.5","@typescript-eslint/parser":"^7.11.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^12.0.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.6"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.2.14_1719115272275_0.7268733617073542","host":"s3://npm-registry-packages"}},"48.2.15":{"name":"eslint-plugin-jsdoc","version":"48.2.15","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.2.15","homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"13384ecf85f0d473572d03aff53cdb4966a4cd2b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.15.tgz","fileCount":197,"integrity":"sha512-ScHhf9thOoJQ4dXpS+nJXTfNfslG8NBtzQ165PiXWIyGlJcAmkiEeTIEAlIcLA7uztJF7zRiuiKIqOBX4JpVzw==","signatures":[{"sig":"MEYCIQCW7EHPnWzB4Yn5bbw4WpRG4pOGtGhs5UEmaHqd+03rMAIhAJ3Cl6XxTz7paiBiwTdwfJOxpW6OweWNpuZd8YpPgcIm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1844679},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"ce066df38edc9175db200e8da7ed7096e2879942","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.14.0","dependencies":{"debug":"^4.3.4","semver":"^7.6.2","esquery":"^1.5.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.43.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.4.1","husky":"^9.0.11","mocha":"^10.4.0","eslint":"9.3.0","espree":"^10.0.1","rimraf":"^5.0.7","gitdown":"^3.1.5","globals":"^15.3.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.6","decamelize":"^5.0.1","typescript":"5.3.x","@babel/core":"^7.24.6","@babel/node":"^7.24.6","@types/chai":"^4.3.16","@types/node":"^20.12.12","json-schema":"^0.4.0","lint-staged":"^15.2.5","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^23.1.1","@babel/preset-env":"^7.24.6","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.6","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~43.0.12","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.0.5","@typescript-eslint/parser":"^7.11.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^12.0.0","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.6"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.2.15_1719117366851_0.5784283063414937","host":"s3://npm-registry-packages"}},"48.3.0":{"name":"eslint-plugin-jsdoc","version":"48.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.3.0","homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"37418823432ba45003e6d8f3c6b282bd1d693bcb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.3.0.tgz","fileCount":201,"integrity":"sha512-lzQSh2gjPqrqYTL0774sLj/rJywP1UESxD43xBwAlehuI2H6mIKTwj6i4tdvVzmUMflx8yMzHzy4e4XWrKaNZQ==","signatures":[{"sig":"MEUCIEQR30mw49WiAGrnsv9yzljVpaeTeRX+/pxN9ZneQbEqAiEAwG+Er+CgD2X4aD/OlILOaOQVkURbPHMh8OutAxOd5HA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1857866},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"5497b031e0f04738ecd7271f4b4504478b0ef99b","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.14.0","dependencies":{"debug":"^4.3.4","semver":"^7.6.2","esquery":"^1.5.0","synckit":"^0.9.0","parse-imports":"^2.1.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.43.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.4.1","husky":"^9.0.11","mocha":"^10.4.0","eslint":"9.3.0","espree":"^10.0.1","rimraf":"^5.0.7","gitdown":"^3.1.5","globals":"^15.3.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.6","decamelize":"^5.0.1","typescript":"5.3.x","@babel/core":"^7.24.6","@babel/node":"^7.24.6","@types/chai":"^4.3.16","@types/node":"^20.12.12","json-schema":"^0.4.0","lint-staged":"^15.2.5","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^23.1.1","@babel/preset-env":"^7.24.6","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.6","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~43.0.12","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.0.5","@typescript-eslint/parser":"^7.11.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^12.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.6"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.3.0_1719190188244_0.5044024849279951","host":"s3://npm-registry-packages"}},"48.4.0":{"name":"eslint-plugin-jsdoc","version":"48.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.4.0","homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"746a30b8d01a9aa7894e52f8a273a49ca681ef78","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.4.0.tgz","fileCount":201,"integrity":"sha512-xBUxuAx03cKoEA7y+MYSUdwyN8AJyZHbAJ257sOFXgVgCScm574S4zEYJpBoARwaCu4chhCbvA+gdm+00whlxA==","signatures":[{"sig":"MEUCIGQnTfwLbCqt8w7Uh0xMHqGlTsNuQffQEwpmFwIP4zxNAiEA1xxwwDTWmP6Z8A8RcC+RjYc8YoaXntgQZrSBG/B6+BA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1858392},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"1aa3313e6962b55de94528d589d9d9d4844d72b7","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.14.0","dependencies":{"debug":"^4.3.4","semver":"^7.6.2","esquery":"^1.5.0","synckit":"^0.9.0","parse-imports":"^2.1.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.43.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.4.1","husky":"^9.0.11","mocha":"^10.4.0","eslint":"9.3.0","espree":"^10.0.1","rimraf":"^5.0.7","gitdown":"^3.1.5","globals":"^15.3.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.6","decamelize":"^5.0.1","typescript":"5.3.x","@babel/core":"^7.24.6","@babel/node":"^7.24.6","@types/chai":"^4.3.16","@types/node":"^20.12.12","json-schema":"^0.4.0","lint-staged":"^15.2.5","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^23.1.1","@babel/preset-env":"^7.24.6","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.6","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~43.0.12","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.0.5","@typescript-eslint/parser":"^7.11.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^12.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.6"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.4.0_1719230249788_0.24161575214120878","host":"s3://npm-registry-packages"}},"48.5.0":{"name":"eslint-plugin-jsdoc","version":"48.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.5.0","homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"24e2026d1e7ba97214ee21bb16fd5162cd6487c8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.5.0.tgz","fileCount":201,"integrity":"sha512-ukXPNpGby3KjCveCizIS8t1EbuJEHYEu/tBg8GCbn/YbHcXwphyvYCdvRZ/oMRfTscGSSzfsWoZ+ZkAP0/6YMQ==","signatures":[{"sig":"MEQCIGoSI1CxVuAfMlcSv1wHCXF+eXFiHRPjO37Psw1iyKbJAiAEkD1vVTXUBJNB0KmHTTjqzvtqu4orLqmq4fDuvy5RQA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1859034},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"49400e15e2e3f32061cc70271248c00e040d830c","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky install","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.14.0","dependencies":{"debug":"^4.3.4","semver":"^7.6.2","esquery":"^1.5.0","synckit":"^0.9.0","parse-imports":"^2.1.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.43.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^9.1.0","chai":"^4.3.10","glob":"^10.4.1","husky":"^9.0.11","mocha":"^10.4.0","eslint":"9.3.0","espree":"^10.0.1","rimraf":"^5.0.7","gitdown":"^3.1.5","globals":"^15.3.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.6","decamelize":"^5.0.1","typescript":"5.3.x","@babel/core":"^7.24.6","@babel/node":"^7.24.6","@types/chai":"^4.3.16","@types/node":"^20.12.12","json-schema":"^0.4.0","lint-staged":"^15.2.5","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.6","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^23.1.1","@babel/preset-env":"^7.24.6","@es-joy/escodegen":"^3.5.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.6","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~43.0.12","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.0.5","@typescript-eslint/parser":"^7.11.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^12.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.6"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.5.0_1719391781491_0.3538195426442401","host":"s3://npm-registry-packages"}},"48.5.1":{"name":"eslint-plugin-jsdoc","version":"48.5.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.5.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"261044c6e8d6ddc4dfd07f203566f1abbccf32a7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.5.1.tgz","fileCount":201,"integrity":"sha512-7+S5FlBKMpQ81wclgF4felf+4gMzGbLzTcUPPpTZVdZWqgB7PeyUyvhfPLXNEUA012tcUi864LOrSJJkITZfpA==","signatures":[{"sig":"MEYCIQCYVj8hGoDxaj3t8z32j/psyCWqhTmbfTqwT425WVWErAIhAOHBtF2gZ/W7G4uwfy/En4g5XhghBsrI9CeMQE3f/Ogn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1862816},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"6371c4a3901a44cc05fcf6718a28179087b19d89","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.15.0","dependencies":{"debug":"^4.3.5","semver":"^7.6.2","esquery":"^1.5.0","synckit":"^0.9.0","parse-imports":"^2.1.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.43.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^4.3.10","glob":"^10.4.2","husky":"^9.0.11","mocha":"^10.5.2","eslint":"9.5.0","espree":"^10.1.0","rimraf":"^5.0.7","gitdown":"^3.1.5","globals":"^15.6.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.7","decamelize":"^5.0.1","typescript":"5.3.x","@babel/core":"^7.24.7","@babel/node":"^7.24.7","@types/chai":"^4.3.16","@types/node":"^20.14.9","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.7","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.7","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~43.0.13","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.0.6","@typescript-eslint/types":"^7.14.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.5.1_1720147464972_0.7487491763777776","host":"s3://npm-registry-packages"}},"48.5.2":{"name":"eslint-plugin-jsdoc","version":"48.5.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.5.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c355846dc6a41095fa10855cbc64bed8d2d3f79d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.5.2.tgz","fileCount":201,"integrity":"sha512-VXBJFviQz30rynlOEQ+dNWLmeopjoAgutUVrWOZwm6Ki4EVDm4XkyIqAV/Zhf7FcDr0AG0aGmRn5FxxCtAF0tA==","signatures":[{"sig":"MEYCIQDB+esgNDqiBzdHEnTQwmQUO69BywV0Buf/5NjL5GA8KAIhAKA+EJ20IXnduD8hNNySAeP+uphFEws98y5WZOWT/FOY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1862561},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"394b85f3d5e0e391ca6b8fd77e2943feee07bd7a","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.15.0","dependencies":{"debug":"^4.3.5","semver":"^7.6.2","esquery":"^1.5.0","synckit":"^0.9.0","parse-imports":"^2.1.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.43.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^4.3.10","glob":"^10.4.2","husky":"^9.0.11","mocha":"^10.5.2","eslint":"9.5.0","espree":"^10.1.0","rimraf":"^5.0.7","gitdown":"^3.1.5","globals":"^15.6.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.7","decamelize":"^5.0.1","typescript":"5.3.x","@babel/core":"^7.24.7","@babel/node":"^7.24.7","@types/chai":"^4.3.16","@types/node":"^20.14.9","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.7","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.7","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^6.1.1","eslint-config-canonical":"~43.0.13","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.0.6","@typescript-eslint/types":"^7.14.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.5.2_1720155561314_0.9823166758073336","host":"s3://npm-registry-packages"}},"48.6.0":{"name":"eslint-plugin-jsdoc","version":"48.6.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.6.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e8fade0fe783fd9c8d2f30a462ba2c1e506091aa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.6.0.tgz","fileCount":204,"integrity":"sha512-UsOdFYWeyYaiGW1OzJaKvRpb88JPF0HGpDkmMDvhfWbTGu3B4TYKhGH3cPGiRjMDxKPA3fJ/+tL823argNxOkA==","signatures":[{"sig":"MEYCIQCR5h8pmfk1HTwpHpMMTzmXqLkzgag+mUYMqHSXhI3fZAIhAJ3mD0SeWQdSjMCfqIfRd6t99hD0G1fOst7Fph3kslJd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1907724},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"e570b79073c4f13ba99444aa1db6123ef9abc6d5","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.15.0","dependencies":{"debug":"^4.3.5","semver":"^7.6.2","esquery":"^1.6.0","synckit":"^0.9.0","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.45.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^4.3.10","glob":"^10.4.2","husky":"^9.0.11","mocha":"^10.6.0","eslint":"9.6.0","espree":"^10.1.0","rimraf":"^5.0.7","gitdown":"^3.1.5","globals":"^15.8.0","replace":"^1.2.2","camelcase":"^6.3.0","cross-env":"^7.0.3","@babel/cli":"^7.24.7","decamelize":"^5.0.1","typescript":"5.5.x","@babel/core":"^7.24.7","@babel/node":"^7.24.7","@types/chai":"^4.3.16","@types/node":"^20.14.10","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^3.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.7","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.7","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.13","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.1.0","@typescript-eslint/types":"^7.16.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.6.0_1720569304102_0.6013900319815342","host":"s3://npm-registry-packages"}},"48.7.0":{"name":"eslint-plugin-jsdoc","version":"48.7.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.7.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"1450e5bccc320dee01a8d24ac71651a539857692","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.7.0.tgz","fileCount":207,"integrity":"sha512-5oiVf7Y+ZxGYQTlLq81X72n+S+hjvS/u0upAdbpPEeaIZILK3MKN8lm/6QqKioBjm/qZ0B5XpMQUtc2fUkqXAg==","signatures":[{"sig":"MEYCIQDvv6yEJp4L8mo0ln369ZRmwlHWa8XT/EZiUCLr95Xx3AIhALQmPtxLiA5FBf2TkE7pdIiJNVaIJlW3ef4mvTjD1J2w","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1921929},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"d46be35b613d6da8f6eb636e8b5ec3533dfdb629","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.15.0","dependencies":{"debug":"^4.3.5","semver":"^7.6.2","esquery":"^1.6.0","synckit":"^0.9.0","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.46.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.0.11","mocha":"^10.6.0","eslint":"9.6.0","espree":"^10.1.0","rimraf":"^5.0.7","gitdown":"^4.0.0","globals":"^15.8.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.7","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.24.7","@babel/node":"^7.24.7","@types/chai":"^4.3.16","@types/node":"^20.14.10","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^4.1.1","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.7","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.7","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.13","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.1.0","@typescript-eslint/types":"^7.16.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.7.0_1720635084789_0.6362868922723466","host":"s3://npm-registry-packages"}},"48.8.0":{"name":"eslint-plugin-jsdoc","version":"48.8.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.8.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5616ee5934dd8c356a7f4d0942e267639b932010","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.8.0.tgz","fileCount":210,"integrity":"sha512-hR32IgxAh1A+JYqU4txIIP3q1s3qekLEjiXyY9OX6xV+Kwo0+hG1VHqn8N0SvDzHNZyhoipYRzaoJk5HtdfmtA==","signatures":[{"sig":"MEQCIB3qRfpGL1lZ/Jd7cONNsS9BAGNGSwVDKiNiptKnxuHFAiAJcLpwLD7hdcCLhC9clnOzKZ4bHjkFb/c/0bOLZ4sIqA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1934169},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"f61e5b2487bb38daf76ed9edaccff9e4d14ee53f","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.15.1","dependencies":{"debug":"^4.3.5","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.46.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.1","mocha":"^10.6.0","eslint":"9.7.0","espree":"^10.1.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.8.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.24.9","@babel/node":"^7.24.8","@types/chai":"^4.3.16","@types/node":"^20.14.11","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.8","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.8","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.14","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.1.0","@typescript-eslint/types":"^7.16.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.8.0_1721403292566_0.6953030374239777","host":"s3://npm-registry-packages"}},"48.8.1":{"name":"eslint-plugin-jsdoc","version":"48.8.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.8.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"0f2590fbb1a581c4737993532350e55776b6ab7a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.8.1.tgz","fileCount":210,"integrity":"sha512-8As7AgbuJ/kbDBYX6BH1XJttcpdUdkDP9X0O0SkstoKSA2RjUNH2TPfvzsX9weQ7nXqU+0O184aJBAKveORBhQ==","signatures":[{"sig":"MEYCIQDCGh1VwEPg34TdPyBVpFCvCdznm6nSCT+ZKR7DP8ZDbAIhAJTFcaJt+rU/16MFGwVafXkmFqw7Y8Me53R9OegxDHYN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1934415},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"6fb0b3eb074b7403d47c83db5fc804efccd5b051","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.15.1","dependencies":{"debug":"^4.3.5","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.46.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.1","mocha":"^10.6.0","eslint":"9.7.0","espree":"^10.1.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.8.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.24.9","@babel/node":"^7.24.8","@types/chai":"^4.3.16","@types/node":"^20.14.11","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.8","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.8","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.14","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.1.0","@typescript-eslint/types":"^7.16.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.8.1_1721425648627_0.38338426217568444","host":"s3://npm-registry-packages"}},"48.8.2":{"name":"eslint-plugin-jsdoc","version":"48.8.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.8.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"0c2907f1c050d6e7b8a3484ccec043e0e368f0fe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.8.2.tgz","fileCount":210,"integrity":"sha512-8tvhPoAV3ur66fpAz6BynZv4Sej4xw7RVhVGO1HIIVmpwsixU7yyj+nhgHVCOhs6MNa9ps2pBFyjhxe0PCRZOQ==","signatures":[{"sig":"MEYCIQDZOql3fruZdzwK5tkTIlZAf7FbBpkeisN0bmB4LU8s5AIhAJzAD9WkIxXuBjy+lB62/spKgbbmrLAnr4JxCIp7a04D","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1935143},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"736a23be9fa8816bf4e712d58cbd4fc5a5fd738c","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.15.1","dependencies":{"debug":"^4.3.5","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.46.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.1","mocha":"^10.6.0","eslint":"9.7.0","espree":"^10.1.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.8.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.24.9","@babel/node":"^7.24.8","@types/chai":"^4.3.16","@types/node":"^20.14.11","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.8","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.8","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.14","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.1.0","@typescript-eslint/types":"^7.16.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.8.2_1721481664502_0.69344848562567","host":"s3://npm-registry-packages"}},"48.8.3":{"name":"eslint-plugin-jsdoc","version":"48.8.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.8.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"0a651bc0ab5b0732c39e12b26771fca78c830c1c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.8.3.tgz","fileCount":210,"integrity":"sha512-AtIvwwW9D17MRkM0Z0y3/xZYaa9mdAvJrkY6fU/HNUwGbmMtHVvK4qRM9CDixGVtfNrQitb8c6zQtdh6cTOvLg==","signatures":[{"sig":"MEUCIQCFKIAor66jtlzsI+gTbmsVRaAFUqvKoVbn0JJc78b9XAIgZHozaM8f1M9lsQT+7LYR5Ii+aJNiN9zhL5wlI0ClzDk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1938940},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"22e32743cba9e379245ef179bfff7c45613c4115","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.15.1","dependencies":{"debug":"^4.3.5","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.46.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.1","mocha":"^10.6.0","eslint":"9.7.0","espree":"^10.1.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.8.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.24.9","@babel/node":"^7.24.8","@types/chai":"^4.3.16","@types/node":"^20.14.11","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.8","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.8","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.14","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.1.0","@typescript-eslint/types":"^7.16.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.8.3_1721484277730_0.9037402630957405","host":"s3://npm-registry-packages"}},"48.9.0":{"name":"eslint-plugin-jsdoc","version":"48.9.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.9.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4368e6bf2078c9f8c9d5003219c930c7347eed22","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.9.0.tgz","fileCount":213,"integrity":"sha512-U2G9ujC8fVK7LUu4h9fnhQ7hWQXNVqGXcT8BqmLRze3r1OHMq0v26zqRWJffPDscDjvMP2OvLO47QcMjL226KQ==","signatures":[{"sig":"MEUCIB+stnRbjyPz6NBf8b/vg3USqddxX5sSCgdyN39/G/LgAiEA4Lg2xFHSD3OKrELd6zTHQ6zo5ag7LVT1bbRsItgmBoc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2030532},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"gitHead":"6248d59a38fb9ea75aa42a61543c8195cbe9a9de","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.15.1","dependencies":{"debug":"^4.3.5","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.46.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.1","mocha":"^10.6.0","eslint":"9.7.0","espree":"^10.1.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.8.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.24.9","@babel/node":"^7.24.8","@types/chai":"^4.3.16","@types/node":"^20.14.11","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.8","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.8","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.14","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.1.0","@typescript-eslint/types":"^7.16.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.9.0_1722234820761_0.7505224683399474","host":"s3://npm-registry-packages"}},"48.9.1":{"name":"eslint-plugin-jsdoc","version":"48.9.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.9.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"adc733fc2581aeb4b7350fe99a8659ee025ec24c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.9.1.tgz","fileCount":213,"integrity":"sha512-Z5W12CCaxPaFJYbKac9zQXjAjh9bZXpNoYjIsgSCgAoHUQESttUJ+Fv6/o2lHkpNY1ewzZiRoGt8jlnK1l4R2Q==","signatures":[{"sig":"MEUCIFRhg6XL2fC5KD3oOQSOKxrFwqPILfEe0yLRdeKo3/YKAiEAjjXT5E64T2stQUx8nH/emcO6E75nf81sFSgLg9Lw2Ks=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2030473},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"3ba475e589bc1dc83a7f57950378b2da0228e7fc","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.15.1","dependencies":{"debug":"^4.3.5","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.46.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.1","mocha":"^10.6.0","eslint":"9.7.0","espree":"^10.1.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.8.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.24.9","@babel/node":"^7.24.8","@types/chai":"^4.3.16","@types/node":"^20.14.11","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.8","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.8","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.14","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.1.0","@typescript-eslint/types":"^7.16.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.9.1_1722240816394_0.04506895096864505","host":"s3://npm-registry-packages"}},"48.9.2":{"name":"eslint-plugin-jsdoc","version":"48.9.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.9.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"44290d7b6cae4746927ec084b954e7da5a935101","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.9.2.tgz","fileCount":213,"integrity":"sha512-ydqg2lEY/WxhMXEb1ZAn+yRbc43DlKYdMP/nUreF5ODE1P9mgeff8atL16lYNNKOvYxNOzL85/5gFVeGylSioA==","signatures":[{"sig":"MEUCIFej5XmlNLR+UQIbMpTvpxjbV8in0dznvH2I77HcJrSaAiEA1yxGJ3r7jjiRIxaAOMmr+P+h+aeMNrtgxHQfOeXsMBQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2030200},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"2fbd47c3d2b23a41d87b979daa56a648270d3675","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.15.1","dependencies":{"debug":"^4.3.5","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.46.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.1","mocha":"^10.6.0","eslint":"9.7.0","espree":"^10.1.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.8.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.24.9","@babel/node":"^7.24.8","@types/chai":"^4.3.16","@types/node":"^20.14.11","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.8","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.8","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.14","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.1.0","@typescript-eslint/types":"^7.16.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.9.2_1722242384330_0.014742770824266671","host":"s3://npm-registry-packages"}},"48.9.3":{"name":"eslint-plugin-jsdoc","version":"48.9.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.9.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a756fc83ee22bde27b1d42b444969bc582631c0c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.9.3.tgz","fileCount":213,"integrity":"sha512-9RUsTlW6ZlMgy+dd9uDreU9lZAh4Hxw2ZAV5T0hPtrWgbw0OnvuT3elF6ihnpAY+NCrJx8BUUmcBnKftc/F0qw==","signatures":[{"sig":"MEUCICBXMiNz/WpnLqMs9UAdPSpx56SOxaTEuIZL0jTw7yoEAiEAqh5AaUJU4r90v/DdM3sTt4mOJX2TO6abad1fp29p5xs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2031095},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"87a12703b229efa73334e61d7ed4448cb28167a9","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.15.1","dependencies":{"debug":"^4.3.5","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.46.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.1","mocha":"^10.6.0","eslint":"9.7.0","espree":"^10.1.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.8.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.24.9","@babel/node":"^7.24.8","@types/chai":"^4.3.16","@types/node":"^20.14.11","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.8","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.8","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.14","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.1.0","@typescript-eslint/types":"^7.16.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.9.3_1722319465500_0.13032557209984796","host":"s3://npm-registry-packages"}},"48.10.0":{"name":"eslint-plugin-jsdoc","version":"48.10.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.10.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5310b721db04c3b7c72773f353de00e93a0cde12","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.10.0.tgz","fileCount":213,"integrity":"sha512-BEli0k8E0dzhJairAllwlkGnyYDZVKNn4WDmyKy+v6J5qGNuofjzxwNUi+55BOGmyO9mKBhqaidwGy+dxndn/Q==","signatures":[{"sig":"MEQCIC0wga1n5KqmDIvSAoFoQA4bUULWou4nh46id9POXHLGAiB7kWaxIqFo7GevWa7+jZjHZdxsCTZ5VsWX6gYXroeQ3w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2035343},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"31d32555988dca786726420246efcd1589c07316","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.15.1","dependencies":{"debug":"^4.3.5","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.46.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.1","mocha":"^10.6.0","eslint":"9.7.0","espree":"^10.1.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.8.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.24.9","@babel/node":"^7.24.8","@types/chai":"^4.3.16","@types/node":"^20.14.11","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.8","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.8","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.14","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.1.0","@typescript-eslint/types":"^7.16.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.10.0_1722336278736_0.6413324278859658","host":"s3://npm-registry-packages"}},"48.10.1":{"name":"eslint-plugin-jsdoc","version":"48.10.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.10.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e3e79456795a50b8f5619a8d1a8c11285bdce037","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.10.1.tgz","fileCount":213,"integrity":"sha512-dxV7ytazLW9CdPahds07FljQ960vLQG65mUnFi8/6Pc6u6miCZNGYrnKVHrnnrcj+LikhiKAayjrUiNttzRMEg==","signatures":[{"sig":"MEQCICVAAgGlIm+xnjllZrJYVXeg54CcAi6LmzrxWBapZv6pAiA0mGJMxSH9ZjEU4BOgV4Ol5gcdV/J1ZrHe8wSf/tBGnA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2035343},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"31e0a35382c5d4c847781df6c4b5d8fb371d8d3c","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.15.1","dependencies":{"debug":"^4.3.5","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.46.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.1","mocha":"^10.6.0","eslint":"9.7.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.8.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.24.9","@babel/node":"^7.24.8","@types/chai":"^4.3.16","@types/node":"^20.14.11","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.8","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.8","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.14","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.1.0","@typescript-eslint/types":"^7.16.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.10.1_1722336467008_0.9167787586751945","host":"s3://npm-registry-packages"}},"48.10.2":{"name":"eslint-plugin-jsdoc","version":"48.10.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.10.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"dd3fb8b8d4c6a0add3191b7f00b32a1e1ca7880d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.10.2.tgz","fileCount":213,"integrity":"sha512-xTkf/MmEeVrTbezc6kDqCJmK9RcseIKo8X4oyoDCMvV4LY8dqrQi8kmfRrv9n0gNBkCclevaOh2Lkmu6Fs8SLg==","signatures":[{"sig":"MEQCIBFtgk7Oe6Ipcjm4o+ymwOSwqEJ+2iplFwrpYJlPdXLiAiAULYHF+XRTk6bdP6xz1Rjl1mrXR+nUDWqBAPwcbKF40Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2038376},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"12fca71fdc7761d4affb52bf5fe4be25eddabc5b","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.15.1","dependencies":{"debug":"^4.3.5","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.46.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.1","mocha":"^10.6.0","eslint":"9.7.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.8.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.24.9","@babel/node":"^7.24.8","@types/chai":"^4.3.16","@types/node":"^20.14.11","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.8","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.8","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.14","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.1.0","@typescript-eslint/types":"^7.16.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.10.2_1722370359047_0.6978386917886314","host":"s3://npm-registry-packages"}},"48.11.0":{"name":"eslint-plugin-jsdoc","version":"48.11.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@48.11.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7c8dae6ce0d814aff54b87fdb808f02635691ade","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.11.0.tgz","fileCount":213,"integrity":"sha512-d12JHJDPNo7IFwTOAItCeJY1hcqoIxE0lHA8infQByLilQ9xkqrRa6laWCnsuCrf+8rUnvxXY1XuTbibRBNylA==","signatures":[{"sig":"MEYCIQDd/fpe6gSg7af9yirYZE0C3zR5GGt2NZ1hC8t29DIV6wIhAPDhHO4b2M83A5B3UncMXxBVW9FuUogEangqtQr9RBoT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2041695},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"116b3e8c906884f799927cf42ab29cab1cfb4e31","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.7.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.15.1","dependencies":{"debug":"^4.3.5","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.46.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.1","mocha":"^10.6.0","eslint":"9.7.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.8.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.24.9","@babel/node":"^7.24.8","@types/chai":"^4.3.16","@types/node":"^20.14.11","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.8","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.8","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.14","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.1.0","@typescript-eslint/types":"^7.16.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_48.11.0_1722585539532_0.7036976873220273","host":"s3://npm-registry-packages"}},"49.0.0":{"name":"eslint-plugin-jsdoc","version":"49.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@49.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"8520227f30cdd4ce20e321979acf7fa68107a503","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-49.0.0.tgz","fileCount":216,"integrity":"sha512-MlLQpFmann7YkTpjJfsWiSSG877RrijLfg5A1lwfl2FAFTM343Kd+HRt/cnLG+rjypSwaWVqgEgtBTIovnS6qA==","signatures":[{"sig":"MEUCIAeUWR5abmwJybS4s0rOhGzteuPGlb7Wjplcm4ksIzMxAiEA0ozPo4iA+nXAV8u8dmmIKUMjRwXRbBLYrWtgW9vNVN0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2056893},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"0265923c8748b55cd2d7ed3e1f9f73cc024e2005","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.16.0","dependencies":{"debug":"^4.3.5","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.46.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.1","mocha":"^10.6.0","eslint":"9.7.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.8.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.24.9","@babel/node":"^7.24.8","@types/chai":"^4.3.16","@types/node":"^20.14.11","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.8","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.8","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.14","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.1.0","@typescript-eslint/types":"^7.16.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_49.0.0_1722986887432_0.3411161820254356","host":"s3://npm-registry-packages"}},"50.0.0":{"name":"eslint-plugin-jsdoc","version":"50.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"0d064e14e1a8a3624c0474359fc51325b38b0fc9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.0.0.tgz","fileCount":216,"integrity":"sha512-czyJ5F7/qY2LIhUD5Bl6q1CCZ8mjvfEA9HQN5nvIp/Pb8VLIlUNd+DMZdA2OKN74QQMS3pobC06hFqAOJyOv5Q==","signatures":[{"sig":"MEUCIQCfPYzPGFHIbkYYULPqsKqw8CXVxJYFU1c4s1U1BTCHMwIgR37kqB56/BSxe9zwP6YTZ9shPNLxIDstIsYjQ2JsB3Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2056874},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"1cae2cb42938ce291c46e9526a27b4980e9e83dd","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.16.0","dependencies":{"debug":"^4.3.5","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.46.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.1","mocha":"^10.6.0","eslint":"9.7.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.8.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.24.9","@babel/node":"^7.24.8","@types/chai":"^4.3.16","@types/node":"^20.14.11","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.8","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.8","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.14","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.1.0","@typescript-eslint/types":"^7.16.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.0.0_1723035660772_0.43728269190185576","host":"s3://npm-registry-packages"}},"50.0.1":{"name":"eslint-plugin-jsdoc","version":"50.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4d8484d2268d9b69476f781906422a6d2bfc598a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.0.1.tgz","fileCount":216,"integrity":"sha512-UayhAysIk1Du8InV27WMbV4AMSJSu60+bekmeuGK2OUy4QJSFPr1srYT6AInykGkmMdRuHfDX6Q0tJEr8BtDtg==","signatures":[{"sig":"MEYCIQC+zR1WShDAhqw6w1eeGjb2wvlfELRQAyZGyJgDVnhNdQIhANNEBbNEDq9uuNmq7wd6gVl6ssRNd0fyLySpTK2AhMYY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2057800},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"df551374044d38b10fcc52ec9895481239d9711a","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.16.0","dependencies":{"debug":"^4.3.5","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.46.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.1","mocha":"^10.6.0","eslint":"9.7.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.8.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.24.9","@babel/node":"^7.24.8","@types/chai":"^4.3.16","@types/node":"^20.14.11","json-schema":"^0.4.0","lint-staged":"^15.2.7","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^8.56.10","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.24.8","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.0.0-alpha.34","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.24.8","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.14","jsdoc-type-pratt-parser":"^4.0.0","@hkdobrev/run-if-changed":"^0.3.1","@semantic-release/github":"^10.1.0","@typescript-eslint/types":"^7.16.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.24.7"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.0.1_1723348991387_0.4867351905021846","host":"s3://npm-registry-packages"}},"50.1.0":{"name":"eslint-plugin-jsdoc","version":"50.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"0409c7b4c469c1335308603b510dab793a1c26ee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.1.0.tgz","fileCount":216,"integrity":"sha512-l4yg0ZIZ0Te5l/HHgz5FRyZM7eol2jgPnB3aOycooWr8pLqA8NCkSej+NcMVU9zIpt6BlPHqhPa8Vo+z4/Y51A==","signatures":[{"sig":"MEUCIQDmjixBZo7Y+S/h5QYe5r/N+pB/MGxLo0ljGNsOlZ2acQIgVoNBU0z7BfYgTLOhIjg0Vy6ixwklKosAHFdkJAEbfpo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2058105},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"75528b7d174db102de855a904492cb0e2062e17b","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.16.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.48.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^10.1.4","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.1.0_1723545829392_0.5111368457115542","host":"s3://npm-registry-packages"}},"50.2.0":{"name":"eslint-plugin-jsdoc","version":"50.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ac1b9e9f676d2ec3ce0342a34bccda9180b761a8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.2.0.tgz","fileCount":216,"integrity":"sha512-HAmTcHgPFmiM0kfI3Z5Gt39DNjTsdrfFJKk6tmWscnDk8iAuA+72uHz8v2OToYVNiWN8ihX5uWQKDezU7nnNoQ==","signatures":[{"sig":"MEUCIBaMbg5RzRvtFOcu2vAfn9Lbcntfjlg24xQaZmzo/TuzAiEAjIwJBCBDP2kTmmehE7126z7pF/q8a5sbGw9EUHhyLhM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2082018},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"aed319438250b516756922aa6d5562e819af2977","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.16.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.48.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^10.1.4","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.2.0_1723568737598_0.03586809584590256","host":"s3://npm-registry-packages"}},"50.2.1":{"name":"eslint-plugin-jsdoc","version":"50.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"cd1f04087172a98254749108cf4a60524acaa3d6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.2.1.tgz","fileCount":216,"integrity":"sha512-KbGhcct6JxzM0x1gjqH1hf4vvc+YNMag5JXyMuPFIPP9THWctRg3UgBUjNcI6a6Rw+1GdKeJ3vTmSICLVF0mtw==","signatures":[{"sig":"MEYCIQDj+JkueeaWDtZvKoUxkSV18TYo6oWfRClFbipuzZJXFQIhAJIp6sZl5ZHA65IkOeuTe1+sAedIK3WAQFKY1oLhoIII","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2082034},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"964712b9f9a6fc0c0ef7bff5e275e1782e77a6bd","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.16.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.48.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^10.1.4","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.2.1_1723579430271_0.13499962135822163","host":"s3://npm-registry-packages"}},"50.2.2":{"name":"eslint-plugin-jsdoc","version":"50.2.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.2.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"151e63c8bc245ea8b2357d4229392a5b993827b0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.2.2.tgz","fileCount":216,"integrity":"sha512-i0ZMWA199DG7sjxlzXn5AeYZxpRfMJjDPUl7lL9eJJX8TPRoIaxJU4ys/joP5faM5AXE1eqW/dslCj3uj4Nqpg==","signatures":[{"sig":"MEYCIQDC0V+wKrZXLxZTwnSo/t2mbyuVCxpx79xJzs8i+3C5bQIhAOYUK7dvDqmevOQJiUmV4LXjOuaSvl20+weu5A5xHlh7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2083605},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"288f0ae5d45183321493131ecf8c377fd6a5a5f3","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.1","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.16.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.48.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^10.1.4","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.2.2_1723646504982_0.5722070960847512","host":"s3://npm-registry-packages"}},"50.2.3":{"name":"eslint-plugin-jsdoc","version":"50.2.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.2.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"75c455ab04819138d3cde37d92d9eb162dc41cb6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.2.3.tgz","fileCount":216,"integrity":"sha512-aNh/dz3wSkyo53y2KWDCrA8fDuXDMtMVflcbesd8AFPgcF8ugOv9mJxC7qKB95R96nzCB91iEwU7MMznh/7okQ==","signatures":[{"sig":"MEQCIFaoCOguivDohuZi6ODt9czvraI3+fQJxt7x27QdQ+GiAiAf6vyAGrJDFe0ZaL0zzy0dK6EBC8aStQQvK9V1WfFm+w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2083908},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"82222628c1213017bd99af70bbc761b9c7f1c972","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.17.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.48.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^10.1.4","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.2.3_1726219342599_0.9201727516767828","host":"s3://npm-registry-packages"}},"50.2.4":{"name":"eslint-plugin-jsdoc","version":"50.2.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.2.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9abef68ea5869e87d8a4444bfef9e5a7787162e2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.2.4.tgz","fileCount":216,"integrity":"sha512-020jA+dXaXdb+TML3ZJBvpPmzwbNROjnYuTYi/g6A5QEmEjhptz4oPJDKkOGMIByNxsPpdTLzSU1HYVqebOX1w==","signatures":[{"sig":"MEYCIQCq3CsB46fAvcQ75LPydjTH++x7Ia82H7ryP5mHCQw1vQIhAKMR2TiSjBBvTNzVockKwwFAfCRytHtOgGjBZ5QrWrEI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2084649},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"e7ab475c26eb4ac874f28eeb7cedafaf21b0b001","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.17.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.48.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.0.0","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^10.1.4","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.2.4_1726701256846_0.035703677921758104","host":"s3://npm-registry-packages"}},"50.2.5":{"name":"eslint-plugin-jsdoc","version":"50.2.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.2.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a0bd16b44ac1df000a17655b7e306b495024a511","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.2.5.tgz","fileCount":216,"integrity":"sha512-o3pVL19dSO3et+env3uV2WjrMX8oEqZjBF8lZBpLl9/CgqaRAIx5UaSPfrbHKB/JlHldWOFFGrUeZWmpWUds6g==","signatures":[{"sig":"MEUCIQDbgCsoMMmVQgWKdIB0PAy0/Rj9XIFpyqwabeJUWKZb4wIgLhcnka7a8nfSeJTc3kpCnDs2mbTmVp4k3FjOLez9ye4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2085375},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"51c68b16b114ae630bfea28a5f428d6fce1b3aaf","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.17.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.48.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.2.5_1727306913389_0.7234475671221678","host":"s3://npm-registry-packages"}},"50.3.0":{"name":"eslint-plugin-jsdoc","version":"50.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2a4d1ac7f45b2b62de42389ba8006fd00b7f08dd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.3.0.tgz","fileCount":216,"integrity":"sha512-P7qDB/RckdKETpBM4CtjHRQ5qXByPmFhRi86sN3E+J+tySchq+RSOGGhI2hDIefmmKFuTi/1ACjqsnDJDDDfzg==","signatures":[{"sig":"MEUCIGBhqlWCBs1VHr2zcZ9oMdHpQPy4HhLqt8ubzUVP7EOJAiEA+TSvKG55GNw7VyuMHWElx6tGM05v2Lksdu93OJehJ8A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2086159},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"3b1843582015d999bbf373095fdc492a235bb374","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.17.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.48.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.3.0_1727361653312_0.7705499350637186","host":"s3://npm-registry-packages"}},"50.3.1":{"name":"eslint-plugin-jsdoc","version":"50.3.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.3.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4b56340a3ef55df9957dede430c6338c717dc0dc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.3.1.tgz","fileCount":216,"integrity":"sha512-SY9oUuTMr6aWoJggUS40LtMjsRzJPB5ZT7F432xZIHK3EfHF+8i48GbUBpwanrtlL9l1gILNTHK9o8gEhYLcKA==","signatures":[{"sig":"MEUCIQD6tEY166lyRHStVAfEYPdEU+mO83lspSbWrz2wVp87rwIgQ0UG90fePHH/V71BpR1q4QTIf2QhUYIeUYXHAhhnr1U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2086616},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"34866bc988a1a26fab9c4cf3c89fadb4c7d0494f","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.17.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.48.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.3.1_1727775134923_0.6344789005822351","host":"s3://npm-registry-packages"}},"50.3.2":{"name":"eslint-plugin-jsdoc","version":"50.3.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.3.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f9b8b3d70abe7a84e22a3bbadf22a935c6194b4a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.3.2.tgz","fileCount":216,"integrity":"sha512-TjgZocG53N3a84PdCFGqVMWLWwDitOUuKjlJftwTu/iTiD7N/Q2Q3eEy/Q4GfJqpM4rTJCkzUYWQfol6RZNDcA==","signatures":[{"sig":"MEUCIQDpq4stpG7kmw5lClWy4u0+JPF70w8BF/mYO/SpnFxk3wIgcBe9PxXxtyfwZKIYMYRSYsBuQ5sIuIfhO/+JmSncizM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2085120},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"8b5b7f709c416ee3bc1acb75fd23b0fb055d69fa","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.17.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.48.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.3.2_1728685119303_0.787731119441827","host":"s3://npm-registry-packages"}},"50.4.0":{"name":"eslint-plugin-jsdoc","version":"50.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"052fcddce0c43003a330e829d4c173e31d12d086","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.4.0.tgz","fileCount":216,"integrity":"sha512-UT7mfB4x9XgBTCrg8VxsOnZ+uglKG09RkAVfaIRHSF/YdiXx32ix9B0IZ8aiGAvloGNkBMSi19mTQUk3aEAMQA==","signatures":[{"sig":"MEUCIQDK9j5RFjnNV9JpbYmmimuOM2x2rXdIHfq4EupwxXbXLgIgRc7kJKOJTqmhtYfReOgURnmirRII+iOUErabmxMtXWk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2085120},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"7019d287aa84e6919f16ca79bee5b415a4308548","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.17.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.4.0_1728899626371_0.3917243265993342","host":"s3://npm-registry-packages"}},"50.4.1":{"name":"eslint-plugin-jsdoc","version":"50.4.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.4.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"845ddf4c395891babe135023d97a45c750d94c4c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.4.1.tgz","fileCount":216,"integrity":"sha512-OXIq+JJQPCLAKL473/esioFOwbXyRE5MAQ4HbZjcp3e+K3zdxt2uDpGs3FR+WezUXNStzEtTfgx15T+JFrVwBA==","signatures":[{"sig":"MEUCIBAVNXtsMW9GlA2Awk0e0a2WSLJX11pXwB0XNqDUIEVWAiEAxKQIlH6HSG2/9XVrnZA9+D5u5rKWKGqMzsJ4gBBKAQU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2085388},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"7c0b8c608fa36260224bb856ea5a3ba34bd670ad","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.17.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.4.1_1728919348663_0.8699779736343085","host":"s3://npm-registry-packages"}},"50.4.2":{"name":"eslint-plugin-jsdoc","version":"50.4.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.4.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4c28bb83ca47bd475c70e41e6cb68989514ec613","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.4.2.tgz","fileCount":216,"integrity":"sha512-YKsnam3QklFi3h7y7gmUzZ9kwhIg5HmJjsTnquY0mqjUFnk+L6TxWzQXhcpOPP7BXD2zek8+SgmMyGIDNryvfQ==","signatures":[{"sig":"MEQCIAk3qXoowg+VbwShBecOFa/Y0FT0ErPYyiSSLkhQheelAiBVOWBMmrGsbUHnwlSSKipbxKwHR90SwZwajcmeWgGbpw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2085574},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"f6616c73933a60794432d8fc944bfc4d2ea2464b","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.17.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.4.2_1729158722246_0.3015709505635924","host":"s3://npm-registry-packages"}},"50.4.3":{"name":"eslint-plugin-jsdoc","version":"50.4.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.4.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"38adf595555933775943771e906422b25cdfc780","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.4.3.tgz","fileCount":216,"integrity":"sha512-uWtwFxGRv6B8sU63HZM5dAGDhgsatb+LONwmILZJhdRALLOkCX2HFZhdL/Kw2ls8SQMAVEfK+LmnEfxInRN8HA==","signatures":[{"sig":"MEUCIHzUcUvhPtA4gGflsJuolHGYAzAX2dc5CpN2M0X6NVynAiEA/ewNnmYnOxfeKzYbr4nIoi+35hVJvyAV/yXgSYk6Wxs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2085817},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"9a93119e425659dd3c3186e9cbfee9ed0f88228c","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.17.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.4.3_1729158789615_0.4757641812114777","host":"s3://npm-registry-packages"}},"50.5.0":{"name":"eslint-plugin-jsdoc","version":"50.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"3b34b7846eb6c40750e68e97ae9441455fde7a75","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.5.0.tgz","fileCount":216,"integrity":"sha512-xTkshfZrUbiSHXBwZ/9d5ulZ2OcHXxSvm/NPo494H/hadLRJwOq5PMV0EUpMqsb9V+kQo+9BAgi6Z7aJtdBp2A==","signatures":[{"sig":"MEYCIQCUoeV8dVu16JZYC/J6YsY1tOtFwpBY6HQH9EYARuM7gwIhAInb+aMXTmQ+3QFkOfLIfv3XTVOBF2u4PCvS4IIiWf56","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2085978},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"b9091f8da90614a08738b13e0a26d97c357aa5c0","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.18.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.5.0_1731412158191_0.7898372639464204","host":"s3://npm-registry-packages"}},"50.6.0":{"name":"eslint-plugin-jsdoc","version":"50.6.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2c6049a40305313174a30212bc360e775b797a0a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.0.tgz","fileCount":216,"integrity":"sha512-tCNp4fR79Le3dYTPB0dKEv7yFyvGkUCa+Z3yuTrrNGGOxBlXo9Pn0PEgroOZikUQOGjxoGMVKNjrOHcYEdfszg==","signatures":[{"sig":"MEUCIHofQ2v2yzWnVP3BuSlrfEPcCwVqcy3JLwx8aTFOIiFkAiEAnHkMtN12fbzzEZIrXcqDN4Fo/ygjiFabWjvEXFjfYgY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2086705},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"f9b102dec5cdf62b4c572d67a2514ba200d29668","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.18.1","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.0_1732627385842_0.7469893775967962","host":"s3://npm-registry-packages"}},"50.6.1":{"name":"eslint-plugin-jsdoc","version":"50.6.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"791a668fd4b0700a759e9a16a741a6a805f5b95c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.1.tgz","fileCount":216,"integrity":"sha512-UWyaYi6iURdSfdVVqvfOs2vdCVz0J40O/z/HTsv2sFjdjmdlUI/qlKLOTmwbPQ2tAfQnE5F9vqx+B+poF71DBQ==","signatures":[{"sig":"MEUCIQDyey7Ujf1TAuPmEsBxpWW2rL+MR6jtW3wlq9RJ+m7luwIgJ/DSEcOvrZHRKkCqP77hLL+4UFT0RJyQ6i3k3g5vVVQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2085816},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"d2c60403bb55a14eadbf49fc9937caad14a29cde","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.18.1","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.1_1733878767054_0.4999956587646037","host":"s3://npm-registry-packages-npm-production"}},"50.6.2":{"name":"eslint-plugin-jsdoc","version":"50.6.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9c95646d8d85a1b5ed87206695c8f10f2ee35537","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.2.tgz","fileCount":216,"integrity":"sha512-n7GNZ4czMAAbDg7DsDA7PvHo1IPIUwAXYmxTx6j/hTlXbt5V0x5q/kGkiJ7s4wA9SpB/yaiK8jF7CO237lOLew==","signatures":[{"sig":"MEUCIQCtbOxIwovjJ5Xfq8pVS1t64imAqutBkE6LudzXD+yzagIgWixUgGqyYNhWkaTBGGQCMmBfUgF4kVmPS8O2fHoFgwE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2086546},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"a57f36e3469eebe74a1381ca467120a941765e35","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.18.1","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.2_1737108994670_0.08702848222713033","host":"s3://npm-registry-packages-npm-production"}},"50.6.3":{"name":"eslint-plugin-jsdoc","version":"50.6.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"668dc4d32e823c84ede7310cffbf70c9d370d291","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.3.tgz","fileCount":216,"integrity":"sha512-NxbJyt1M5zffPcYZ8Nb53/8nnbIScmiLAMdoe0/FAszwb7lcSiX3iYBTsuF7RV84dZZJC8r3NghomrUXsmWvxQ==","signatures":[{"sig":"MEUCIQDtDmTs2Wi8d4djXuiuR/4laJkPAL/UtvCO6yQt8+5ehQIgQ8WZTMEVtSVX1fcY98GF0XRON1YSEwT0i6A6t3OYMvI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2086422},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"c283729387387478ede5db5b4185356cb72aca7a","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.18.1","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.3_1737783597256_0.8913533193981091","host":"s3://npm-registry-packages-npm-production"}},"50.6.4":{"name":"eslint-plugin-jsdoc","version":"50.6.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"00036e015ced2dd74b1df05cc62aa0cf7a0ccddf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.4.tgz","fileCount":216,"integrity":"sha512-9Lt7u/3pK1PdnY4LZxu2w4eCY3NKTcKh5gjN212kQY3kJwJLzGrIXy6f/UrUb+Pa/S/YSQFXzbNe5xElFE7F+w==","signatures":[{"sig":"MEYCIQDrBBduTA0On9bVJ9LwrMTacXEGKjLNtZvdTYwf7WBxFQIhAJ48y6B5t0fln0KevlZNvDR1I/0CWuwNDMCTmCcUDonj","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2086422},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"9edf4b18f97f36b12f11441828f9b623f6a560b3","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.18.3","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.4_1741640838317_0.16840053872492566","host":"s3://npm-registry-packages-npm-production"}},"50.6.5":{"name":"eslint-plugin-jsdoc","version":"50.6.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e01007dd84f8c431ab5aed4639b4a54c6ad77cd1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.5.tgz","fileCount":216,"integrity":"sha512-SNvAP/xdq5caeS3T5dZzBqtuYNmaXpG2F1I3+HKf2Csd0C/F6MoxQQ5NiX1nk9WhiZGhpZhfxqJkOfc36HRrAQ==","signatures":[{"sig":"MEYCIQD7Gm0M5nshT3GbzVg22sM3tm83809JmEoVwPsNvdXaBgIhAJy3paFyMHJsEgCtMIp0g5mjqawzSj8+FnoN9NWWaQGG","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2086882},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"60d4d4b93af1e3fdbeba74ade14fba11c504497f","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.18.3","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.5_1741649940323_0.9469453680056688","host":"s3://npm-registry-packages-npm-production"}},"50.6.6":{"name":"eslint-plugin-jsdoc","version":"50.6.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"131fca9f5afe891a454afc49976c2693454ee6ec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.6.tgz","fileCount":216,"integrity":"sha512-4jLo9NZqHfyNtiBxAU293eX1xi6oUIBcAxJJL/hHeeNhh26l4l/Apmu0x9SarvSQ/gWNOrnFci4DSPupN4//WA==","signatures":[{"sig":"MEUCIQDL7NtzWRHNJizcAUljR+GDszfGCjLK8YrbyRjNDRcX7gIgOlxacREJpDgn95U9udTwOwBrqWsfpXHoxtQHQHq+s5E=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2087478},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"6e0f752c0976a0d08b7bc82c25bda2cdc4b23965","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.18.3","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.6_1741650181795_0.5840688964023721","host":"s3://npm-registry-packages-npm-production"}},"50.6.7":{"name":"eslint-plugin-jsdoc","version":"50.6.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e59e73f261b204bde6e6f5b1ae357c252eb2250e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.7.tgz","fileCount":216,"integrity":"sha512-8JrJRI6oSCHAdr5MvOD1L8nwywmiusk5RKfTisqq2rN5t65QmzmfBzAUkK0lbvwZ442HN33x+IbUon8d+axKoA==","signatures":[{"sig":"MEQCIH/2xeCTcGkNoSCEifDJVrcfLbxenHBZ7BlONMicuYtdAiBUhPFhKjARiONYvOv22buIQ3VcX1LsH/M2tUqU1MhyMA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2089189},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"bf0acfe5c048b84d6caf797a5cc7e5d3ff77fe73","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.18.3","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.7_1742202796652_0.3908800859132693","host":"s3://npm-registry-packages-npm-production"}},"50.6.8":{"name":"eslint-plugin-jsdoc","version":"50.6.8","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.8","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c541c1eaaeb14e97c53397a8495ee60889943c62","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.8.tgz","fileCount":216,"integrity":"sha512-PPZVqhoXaalMQwDGzcQrJtPSPIPOYsSMtvkjYAdsIazOW20yhYtVX4+jLL+XznD4zYTXyZbPWPRKkNev4D4lyw==","signatures":[{"sig":"MEQCIBV7rq6WCIrv+GOF7bTlOfC8ket5JLekMp66dd1Yo7RfAiBY4rbo7G//EsyI/ID3u74vRYDCtaRiuvAq/Mx5dQCerw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2089286},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"ed622628fc778ab9c549b3dde179d4a771f23ef4","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.18.3","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.8_1742227417137_0.3113676065848703","host":"s3://npm-registry-packages-npm-production"}},"50.6.9":{"name":"eslint-plugin-jsdoc","version":"50.6.9","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.9","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b4afc06110958b9c525456b6c4348bf14e21c298","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.9.tgz","fileCount":216,"integrity":"sha512-7/nHu3FWD4QRG8tCVqcv+BfFtctUtEDWc29oeDXB4bwmDM2/r1ndl14AG/2DUntdqH7qmpvdemJKwb3R97/QEw==","signatures":[{"sig":"MEUCIQDMZwoXSn5dNTiyLa9WBJOEJ9GM1TmI9NyyI6iLuwuURwIgYM7jq5ZsuUCbspGZAVzOrepvzFGYkeCvGeCjF8Hc22o=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2089286},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"771eadfa447e171d4a33ff2aff9c93d863988ab2","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.19.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","synckit":"^0.9.1","parse-imports":"^2.1.1","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.9_1742741527415_0.80253561611126","host":"s3://npm-registry-packages-npm-production"}},"50.6.10":{"name":"eslint-plugin-jsdoc","version":"50.6.10","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.10","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"aab31beaaa2cb94dd55439a83f0e3025a4dd9dce","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.10.tgz","fileCount":213,"integrity":"sha512-HJRMrRIXjWtDyU6yar8xvdKMc1waSAfE6vRjEWBpws6pYeoVyCFtQQneEBnQkHXOV60idH5ymo/bh1XNBOTQmA==","signatures":[{"sig":"MEQCIBg1Ohfi8bwmt+KPhxvzNBqnsXZVQsQSCklJ/XQOcLljAiBnGqDX1wrmUvIAr98KdCeXIvN75WQy71Y/ycxHr/v7oA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2086109},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"6d5c9fb6505b7d1dd3befdeaa38a98a93c1d1337","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.19.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.10_1745411824126_0.9954068580698325","host":"s3://npm-registry-packages-npm-production"}},"50.6.11":{"name":"eslint-plugin-jsdoc","version":"50.6.11","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.11","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"36733620dafe03e8666df4cff449c7e9a8e1b1da","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.11.tgz","fileCount":213,"integrity":"sha512-k4+MnBCGR8cuIB5MZ++FGd4gbXxjob2rX1Nq0q3nWFF4xSGZENTgTLZSjb+u9B8SAnP6lpGV2FJrBjllV3pVSg==","signatures":[{"sig":"MEUCIQDxHEANE155sjv+LAy2OkddfiVLFOPSGbU0kjb5bWlrDwIgVTkeilR5Jw+vh2GA6Flm8GASEQuBd4tJ1dLwKeWtmSQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2086153},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"65b0dc0f58b01b6b3338814ca7f627df9b7276da","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.19.0","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.11_1745581010833_0.8279725982752579","host":"s3://npm-registry-packages-npm-production"}},"50.6.12":{"name":"eslint-plugin-jsdoc","version":"50.6.12","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.12","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c16c4dda2824487c4590b9f3686435fb4d48bc10","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.12.tgz","fileCount":213,"integrity":"sha512-l8xm4dhc3ChfLtkiHMfehETt7mEZ6gcIHOAiHG0m8IpptvLCGtJJa8Yhi5pQPU9VticjJHLlGSrhsE2v3nKSPA==","signatures":[{"sig":"MEUCIE26ult0GSRG/csMol5xcTWa7pi5uYCaayEzEJIYS5b5AiEAqSu+lOdHKmaSe6opeHLErZK+9hH9w9Dxo6BQzszogA0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2086202},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"f32989c2594460808d8cc8e35f6d4347c8c78fc6","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.19.1","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.12_1746884950289_0.8146012836218812","host":"s3://npm-registry-packages-npm-production"}},"50.6.13":{"name":"eslint-plugin-jsdoc","version":"50.6.13","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.13","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2331d621672592639bc50229ffbdd93cbf6bd88b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.13.tgz","fileCount":213,"integrity":"sha512-a51b3w+b0vEX4t9NUE9QwXaZoi7LS6DZ+0JRXtfyrbnoUB43HKTgrGqWB1i7586D8XmeZcJfhPi9D1bk7yPbmw==","signatures":[{"sig":"MEUCIQCUPEBg+RLJBom/un2W8/VgccOAjDKJomYivHCje/k9yAIgTlC4rPc65NMRFS3+epE8SSc+NSxvIj6EMDrONl5+wXE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2087647},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"19fa3dcb321d2420998c205bfc6ca501a78dc090","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.19.1","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.13_1746887820878_0.10474704257022638","host":"s3://npm-registry-packages-npm-production"}},"50.6.14":{"name":"eslint-plugin-jsdoc","version":"50.6.14","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.14","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"43e33c8d4134b599954132821a0706ed97252614","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.14.tgz","fileCount":213,"integrity":"sha512-JUudvooQbUx3iB8n/MzXMOV/VtaXq7xL4CeXhYryinr8osck7nV6fE2/xUXTiH3epPXcvq6TE3HQfGQuRHErTQ==","signatures":[{"sig":"MEUCIB6DWsqfGe4gj6Q0DabvfenhlrgVfWEKoS/lFZk8XQ4BAiEAnCXcLiTkrFde7BF+QNjiC2YsW+SUOo3XKVo/46FJ6Y4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2087533},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"0a30832b41b259f3b950de0000b912166c683cb4","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.19.1","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.14_1746901927618_0.8406139508036226","host":"s3://npm-registry-packages-npm-production"}},"50.6.15":{"name":"eslint-plugin-jsdoc","version":"50.6.15","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.15","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"259fbefd31dee5942109f01deb93f53794a3f07e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.15.tgz","fileCount":213,"integrity":"sha512-b7cowvNKOJgzOkygJTL0ZGPXPX6SDVACdDOfA45/bWLm/clxcxFsofea1k0w1oqPAAhTJCCHQXCmd91ncuKqaQ==","signatures":[{"sig":"MEUCIDeeOYY/C8zUc6QLpzSeW4jxYWszMHZov9edn0e5bta+AiEAvN4HqPpim/xP2OIi5aO7Js5dWQ79AhGmZlrDFWm9y04=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2087883},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"1bef63677e385234a01316b6cfa9377023c10c15","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.19.1","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.15_1747220540155_0.3151087373048962","host":"s3://npm-registry-packages-npm-production"}},"50.6.16":{"name":"eslint-plugin-jsdoc","version":"50.6.16","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.16","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c9fb8f210ab1d71e00a912dc82d3081889bf4e26","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.16.tgz","fileCount":213,"integrity":"sha512-ETSMHywJLQtVWDOf11Jk5swDA7Q85HeohDNtPe50OWR/Y0AxdxuNCdqEw2wXewGFV7MPk7E4foqYQydn3b6Auw==","signatures":[{"sig":"MEUCIQCU8n416Gsg2rKq1R9hbQKK3ZUbekqmm9xf/ctigX7NEwIgR7w1isO/h6d2XePkIExQqJ3aKOQmHGoR26YSBMxKMGc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2089223},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"2bd72429015352b383f5bfc22a937afaac4a3b48","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.19.1","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.49.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.5.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^4.3.17","@types/node":"^22.2.0","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.7","@types/eslint":"^9.6.0","@types/espree":"^10.1.0","@types/estree":"^1.0.5","@types/semver":"^7.5.8","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.1.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.1.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.16_1747224688850_0.4220475361580227","host":"s3://npm-registry-packages-npm-production"}},"50.6.17":{"name":"eslint-plugin-jsdoc","version":"50.6.17","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.6.17","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"68a1f1e91aeac8f2784c7e9ee4229f31adb773b2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.17.tgz","fileCount":213,"integrity":"sha512-hq+VQylhd12l8qjexyriDsejZhqiP33WgMTy2AmaGZ9+MrMWVqPECsM87GPxgHfQn0zw+YTuhqjUfk1f+q67aQ==","signatures":[{"sig":"MEUCIHjJ4FspYZ9GxjT0G/03RQbedUZ1PKyX3NgmQAY8K9xSAiEA45kIqk/srTA2orsYW8/IFxUEtL9qAIZ0by5MzJPwoh0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2089227},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"e26a11a39930ebd07f61e509d91e6cb87f017dde","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.19.1","dependencies":{"debug":"^4.3.6","espree":"^10.1.0","semver":"^7.6.3","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.50.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.2","chai":"^5.1.1","glob":"^10.4.2","husky":"^9.1.4","mocha":"^10.7.3","eslint":"9.9.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^15.9.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.24.8","decamelize":"^6.0.0","typescript":"5.8.x","@babel/core":"^7.25.2","@babel/node":"^7.25.0","@types/chai":"^5.2.2","@types/node":"^22.15.18","json-schema":"^0.4.0","lint-staged":"^15.2.9","open-editor":"^5.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.7","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.1.1","@babel/preset-env":"^7.25.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.32.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.25.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~43.0.15","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.0","@semantic-release/github":"^11.0.0","@typescript-eslint/types":"^8.32.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.0","babel-plugin-transform-import-meta":"^2.2.1","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.25.2"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.6.17_1747241885656_0.4234445085627778","host":"s3://npm-registry-packages-npm-production"}},"50.7.0":{"name":"eslint-plugin-jsdoc","version":"50.7.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.7.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a5f3776255eb214dc9ee981cc1af21458e948a40","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.7.0.tgz","fileCount":213,"integrity":"sha512-fMeHWVtdxXvLfMmKLXJWObJSt57zBz31RCLZYj3bLSHBqnEsyO50N1OLDi5XP5wh+Gte5van9WTtOnemKAZrSw==","signatures":[{"sig":"MEYCIQCLuf1pu0g4+9XlAnF4NhfM9hFmA2l9eWfF+xz+go82FwIhAKTp7LjOsotlezKBpKZe0Cn51xyFEfrNnqMpt+yrZmTL","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2098905},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"0adbf43b6b9f3e24422e100571ed66dd04f169be","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.19.1","dependencies":{"debug":"^4.4.1","espree":"^10.3.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.50.2","are-docs-informative":"^0.1.0","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^10.4.2","husky":"^9.1.7","mocha":"^11.5.0","eslint":"9.28.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^22.15.29","json-schema":"^0.4.0","lint-staged":"^16.1.0","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.7","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.33.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.33.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.7.0_1748752235330_0.4438826598808685","host":"s3://npm-registry-packages-npm-production"}},"50.7.1":{"name":"eslint-plugin-jsdoc","version":"50.7.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.7.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f3475c5545473f1d3e5fb272ad2f3988283b42e5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.7.1.tgz","fileCount":213,"integrity":"sha512-XBnVA5g2kUVokTNUiE1McEPse5n9/mNUmuJcx52psT6zBs2eVcXSmQBvjfa7NZdfLVSy3u1pEDDUxoxpwy89WA==","signatures":[{"sig":"MEUCICCbxuErq1yW8rx4BPxaB6CZyhoWc4dsPYzA1z3BxB2YAiEA5HZabsmaROF1UBKRSo8RYl6FX/n6tf4eSLAlTO6qHz0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2098905},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"99cb131ee40fa10f943aadfd73a6d18da082882f","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.19.1","dependencies":{"debug":"^4.4.1","espree":"^10.3.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.50.2","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^10.4.2","husky":"^9.1.7","mocha":"^11.5.0","eslint":"9.28.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^22.15.29","json-schema":"^0.4.0","lint-staged":"^16.1.0","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.7","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.33.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.33.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.7.1_1748810790036_0.997163384555821","host":"s3://npm-registry-packages-npm-production"}},"50.8.0":{"name":"eslint-plugin-jsdoc","version":"50.8.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@50.8.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a8d192ccca26df368a2fbaff17c9dddefacd773f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.8.0.tgz","fileCount":213,"integrity":"sha512-UyGb5755LMFWPrZTEqqvTJ3urLz1iqj+bYOHFNag+sw3NvaMWP9K2z+uIn37XfNALmQLQyrBlJ5mkiVPL7ADEg==","signatures":[{"sig":"MEUCIE9G0aR6yckOnK5aEVQzQYK8pXjR1wREdmloRysclf5tAiEAkjVRjqg2/ajVybvsZjeuE9DLPh42dNosRCFDb1fYB0k=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2099556},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=18"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"285a03ce1a6938cf2b72e3ef6ba037397068b845","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.8.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"20.19.2","dependencies":{"debug":"^4.4.1","espree":"^10.3.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.50.2","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^10.4.2","husky":"^9.1.7","mocha":"^11.5.0","eslint":"9.28.0","rimraf":"^5.0.7","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^22.15.29","json-schema":"^0.4.0","lint-staged":"^16.1.0","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.7","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.33.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.33.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_50.8.0_1749643143002_0.9166402457097942","host":"s3://npm-registry-packages-npm-production"}},"51.0.0":{"name":"eslint-plugin-jsdoc","version":"51.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7b41c21e35ea10e7bf95633c29ed1026beceb04c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.0.0.tgz","fileCount":213,"integrity":"sha512-BgwD2RIN1D3Nuqqpc6Bgti115Cfh/LMe6EyjMkBSPhhibeO4Us7WnbZkf/yp02gtN6DbkX1bw5H3GTWPohKqnw==","signatures":[{"sig":"MEUCIQDVO4+4v3yOY+Urk9UWBj3Y6PbTy/ZMXvpnLIXOhB0tIAIgRmUfCbKXXqWMO9DP4/XdXfZIsACdmEiGeP+ebc3N3hM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2074698},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"88d99642dd2563f8615ac45bc59e73bc72b26fa1","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.3.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.50.2","are-docs-informative":"^0.1.1","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.2","husky":"^9.1.7","mocha":"^11.5.0","eslint":"9.28.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^22.15.29","json-schema":"^0.4.0","lint-staged":"^16.1.0","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.7","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.33.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.33.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.0.0_1749750969604_0.11967610042899635","host":"s3://npm-registry-packages-npm-production"}},"51.0.1":{"name":"eslint-plugin-jsdoc","version":"51.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"06f8742ad4ae151c85a825cf0edbd65e5b87d11f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.0.1.tgz","fileCount":213,"integrity":"sha512-nnH6O8uk0Wp5EvHlVEPESKdGWTlu5g1tfBUZmL/jMZLBpUtttxxW+9hPzTMCYmYsQ3HwDsJdHJAiaDRKsP6iUg==","signatures":[{"sig":"MEQCID4SW+GrsPxcTTHPfEyjtDY+rpIH3S/oNEjXpqc0Tq8iAiA/nwj7bFQQfhUyw2OfzirW/8f7RZq583MpMUpE7JTbhg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2074693},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=22"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"f85ffc6186162c8a600ecf9106565461884146a9","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.3.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.50.2","are-docs-informative":"^0.1.1","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.2","husky":"^9.1.7","mocha":"^11.5.0","eslint":"9.28.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^22.15.29","json-schema":"^0.4.0","lint-staged":"^16.1.0","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.7","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.33.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.33.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.0.1_1749751053299_0.1666038162534771","host":"s3://npm-registry-packages-npm-production"}},"51.0.2":{"name":"eslint-plugin-jsdoc","version":"51.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ceb9afbc27f542fb50a15c231ef156725cd692ee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.0.2.tgz","fileCount":213,"integrity":"sha512-br6j+b7nJeN9agwAiEd/XZQpbngjvrm1pIuZt1d9xd4rn8QBbIoi5W9S0RWRpdhKHvwoUArj1TcoFN6Br8x5Qg==","signatures":[{"sig":"MEQCIAPmhykY2OK9wHDV3ac1W7i3em7xNgQCQK8Yn0bFmWWzAiBgs8BtUjFdayXa2J67PIsDdQ5oNO6uh/7c0LyIzuhrzg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2074698},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"68550001111c23aa34a5bf8afd0807a122e4f71e","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.3.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.50.2","are-docs-informative":"^0.1.1","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.2","husky":"^9.1.7","mocha":"^11.5.0","eslint":"9.28.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^22.15.29","json-schema":"^0.4.0","lint-staged":"^16.1.0","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.7","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.33.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.33.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.0.2_1750193016468_0.8317288675958177","host":"s3://npm-registry-packages-npm-production"}},"51.0.3":{"name":"eslint-plugin-jsdoc","version":"51.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"acee7fa33aae1a7b977b6cb9d6a85a59e665be05","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.0.3.tgz","fileCount":213,"integrity":"sha512-9BRR+b5nKwp6LGTffnrxKxduhzO/DzyBmRNqyt1wIlBFP+q9mq+sq1hIQCVetZAn1PaOl0Evo4PUOlT+xbtctQ==","signatures":[{"sig":"MEUCIQCXzppSRlszrYtd1CenoCSmXwXTUiFHP49/YaF8Bi5LagIgLAD8Y9M6bJ0IYoaiQ5ZpW4C1cGdaTIzhA6/saDlyPXw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2074698},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"ec387d640f89e4e89946705727363ca3de86ff6d","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.3.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.50.2","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.2","husky":"^9.1.7","mocha":"^11.5.0","eslint":"9.28.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^22.15.29","json-schema":"^0.4.0","lint-staged":"^16.1.0","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.7","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.33.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.33.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.0.3_1750193252041_0.9375838714585818","host":"s3://npm-registry-packages-npm-production"}},"51.0.4":{"name":"eslint-plugin-jsdoc","version":"51.0.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.0.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"181ecf66bca64b917441b6f9d6be7f84c4704b3a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.0.4.tgz","fileCount":213,"integrity":"sha512-9IueO9fIj4h2w9pY7iH0/h5oq3Iq6iYuyuLRvPY1+LUDiEVaBh4ceHaHGvfAnUY31e93m7e39sJj1LrQTWjnow==","signatures":[{"sig":"MEYCIQDe1BcMNrgrL1IopzKWqYWXdFdgThWKu6ltyuaJ+9F0wAIhAK9ER9U4+lvOlhThg7DwDxD5gDQLli1Y21jd2WdUt8VJ","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2077992},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"9bb554a905ee6a7bbccf2c3bae9fb56b424beb83","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.3.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.50.2","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.2","husky":"^9.1.7","mocha":"^11.5.0","eslint":"9.28.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^22.15.29","json-schema":"^0.4.0","lint-staged":"^16.1.0","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.7","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.33.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.33.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.0.4_1750455892436_0.24917268471730436","host":"s3://npm-registry-packages-npm-production"}},"51.0.5":{"name":"eslint-plugin-jsdoc","version":"51.0.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.0.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9ab2b46d52860159cff63a7fb4e9dee18545edc1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.0.5.tgz","fileCount":213,"integrity":"sha512-rHnrKJD8j2uw0gcgMq26122CUHsPUVo5ip1hF6eY0OqQ3VPir0WQAZABb2jetOCZkh+DHoBQbFlcNlsu4CwFWA==","signatures":[{"sig":"MEUCIQCKli0R2CDYfexC5z9L88FXG+rABzr/Gcfo5Xv70pUAgwIgC9tQIebzDHGoU/l10SnZ1Ac6ryI6SJK4Fm5AFMzpouI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2082303},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"fcc7b26567186416cec3a695459cab27cf7851df","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.3.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.50.2","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.2","husky":"^9.1.7","mocha":"^11.5.0","eslint":"9.28.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^22.15.29","json-schema":"^0.4.0","lint-staged":"^16.1.0","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.7","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.33.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.1","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.33.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.2","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.0.5_1750467306423_0.013909586192066614","host":"s3://npm-registry-packages-npm-production"}},"51.0.6":{"name":"eslint-plugin-jsdoc","version":"51.0.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.0.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c6a0506a48f10468e3dec0f48fdfc9d49b92253c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.0.6.tgz","fileCount":213,"integrity":"sha512-irPgtHKUnufQqbUzNyus9Y+oGW5SIxXdcxLGN013rCLyxq2G+wBzCfC0vkeMGYwRUY9PRD3y6fR4fPLowDzrNA==","signatures":[{"sig":"MEQCIFTP1bBkCXwXC0vJTpg8tmRv5K0NWoSIxxwgfrZgcdAmAiAzRF1mFNuMb6KmP9IB+PuDFrcQqhlf2ka0Z3HX+1QLmQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2082301},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"26ae16962677c96510692bcd051f555612a5d446","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.51.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.0.6_1750473644348_0.285006475271504","host":"s3://npm-registry-packages-npm-production"}},"51.0.7":{"name":"eslint-plugin-jsdoc","version":"51.0.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.0.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9a7c4d16bfc23eb076a77727bf0b752bcdea84ff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.0.7.tgz","fileCount":213,"integrity":"sha512-lUiZqEKp6oSBsbx+EttAkSqVbgcf/yWcREL8jV25d1W1qMomPIeJaq3doq+LV04k9ey64eXgEyMPZvKUnJL25Q==","signatures":[{"sig":"MEYCIQC5TMm9/J1pYwU/zFo2uxdP+h654j8YC+GOU8CWh7J2agIhAPavWprXscOhBKpzbQkAHL5euomYgnmvYpcEWZ2kSWq4","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2086074},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"ae2b314bdb5d0661c936beec53923a9e3016fe46","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.51.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.0.7_1750478567143_0.7469443025942673","host":"s3://npm-registry-packages-npm-production"}},"51.1.0":{"name":"eslint-plugin-jsdoc","version":"51.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b671fdd074486550df53b3c35fb6c1b667bdaaa8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.1.0.tgz","fileCount":213,"integrity":"sha512-dWyjRvQcAuFHZUTUaJEw7OQ6XziNlbz2wZNt6QuLUHwYMnOWzs6vGSikR/ZSeh+IFHjdH+91AKf+CwYjlJ4kVA==","signatures":[{"sig":"MEUCIAe/41tIkJNe98jTh/EJT/0ghDn+zdb3Xi5gQ2xsNAKBAiEAyy43x8eBVjP8shQLxt2bHRBSs1J2zDroH4FxVIbnhVs=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2086917},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"b0faae7e8ea34c2ee2ff8855238393e1229143a8","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.51.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.1.0_1750483080867_0.5504173089444302","host":"s3://npm-registry-packages-npm-production"}},"51.1.1":{"name":"eslint-plugin-jsdoc","version":"51.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6da673b94e7e4ce96464a7abd3adbdd5025bfd6a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.1.1.tgz","fileCount":213,"integrity":"sha512-MU+7rYK2r4frl6Rb/5ebchjBN/jk6iXRMMOd/n3RyAHfaRL+jDfrvXi7b776p5qGaW7dAo8Fxc/s3pwNab9SEw==","signatures":[{"sig":"MEQCIF5+m07Fx3rysPjlM9Cioq8Z6rkzz47SnTtARfRX6Yx6AiBnZm+LY+omBTbvupYu81b4vV4t+gXXEEA3059dt3THsQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2097698},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"2875c2d1e37d5b86281a30bbbc6f3a030fafec91","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.51.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.1.1_1750504306669_0.5939794984821036","host":"s3://npm-registry-packages-npm-production"}},"51.1.2":{"name":"eslint-plugin-jsdoc","version":"51.1.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.1.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"8303dfbf0d310edc768cd132aeb3c99b2be4e7d9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.1.2.tgz","fileCount":213,"integrity":"sha512-xLg40KhRnlaOX6W+YLofVavGTajOUn6VCSoVC5eWKbsaMMM/aznFAqVXysuk76wSQZJMiBOfC4V6beseIk6eOg==","signatures":[{"sig":"MEQCIHgqcKzQ/0o4JlFSmYqRsx8O29vZT38z8mMk2vGEk3f7AiAhIUdclWvuiy5TmD6F6/E59ATxlIqpS1FcnJTSn570VQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2097698},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"3d2d379ad0ea9d708ebf8bf19f8435cb9536344d","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.1.2_1750587775842_0.7839871428761263","host":"s3://npm-registry-packages-npm-production"}},"51.1.3":{"name":"eslint-plugin-jsdoc","version":"51.1.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.1.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"76539073ac0d452a9877f3ec4730ff1d30c481a3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.1.3.tgz","fileCount":213,"integrity":"sha512-1f6wsqaH5PuCPRsy9vXf5xQOlmLh8Afxuf9yeNKtJvuWQb2g+Vd6Qsv1fcOFQK1/GmXnrDduBODuyGwDaBiZpQ==","signatures":[{"sig":"MEUCIFvwRmeW4SI8lkHhNEliSJSQ0mfpZw9V+SKdP659IllaAiEAmxziIOkgvgjEfqCFNQHn8o8Re7H8gY93mLjhmRvfp1c=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2101309},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"a083c815ed23211b486d07b608bb723f5f7c45c1","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.1.3_1750626361986_0.42711574343989045","host":"s3://npm-registry-packages-npm-production"}},"51.2.0":{"name":"eslint-plugin-jsdoc","version":"51.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"fb2c65e40ca39f29fb23f12d092b839248a5e9cf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.2.0.tgz","fileCount":213,"integrity":"sha512-2LfXDLyY7bIBogUI+3Go4g/GXa+nu7ocDOXbSD3su2GwEF0MKRqIEo/h11selcoAr/u9Ki3e2yMnniF4Z462LA==","signatures":[{"sig":"MEUCICP/3sycMFt+lWyIv24oHSV3cHpjWQzsUP9R9kVje2etAiEAzFB9n5aMHncH4HafbaKdfTYIwDAYDPgvBPqYVl0oDC4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2103055},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"08f78340ee6969f22ccc784de4f86d35f998b1f1","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.2.0_1750628355313_0.97837574893923","host":"s3://npm-registry-packages-npm-production"}},"51.2.1":{"name":"eslint-plugin-jsdoc","version":"51.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"1ce4de8d03a1901b815cc4d997dc0f515dc8c777","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.2.1.tgz","fileCount":213,"integrity":"sha512-iE2qpG/kaA9xXfEcTNSsxNvH5O8+o38VBGLwl2oZisQaM1JRGftTLJAGQrj7YZjSkp3n9VCrNTjOpo3ONhTApQ==","signatures":[{"sig":"MEQCIGxJ+XMSMpW+NV+8u5BaOa40wrTaKLn12R8huJ5EDRAMAiBKHU03EksWXobx85VLf3G03LuNIaktuRgBFlr0ImScUg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2103339},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"e9ff4c7173781cdc8502f7537e1a7e83ec9c51e7","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.2.1_1750631784175_0.26072206896910166","host":"s3://npm-registry-packages-npm-production"}},"51.2.2":{"name":"eslint-plugin-jsdoc","version":"51.2.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.2.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"bbae4e07c218ec6e7b36b6385a2c86a8a05ad0f8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.2.2.tgz","fileCount":213,"integrity":"sha512-5e3VGUk3rvZ6ZuxJr5fCTVMj7TrMC80F1GbymjyUkplCbj6dXW41qX3ZzF8YULXM74cBfjnWy/nSp/I0eLl3vg==","signatures":[{"sig":"MEUCIHe6i3+30eTwr89V4HBrMfLUM8i6DEcAI2+0v3RjMS5CAiEA3o/ZxhFG31RgdLSOm/ybwrUi10T62TrMsQX9jXFSF3I=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2103678},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"efbcb1c43abc31070b42a86ba2f5150da0063ad4","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.2.2_1750712252133_0.4853747686424694","host":"s3://npm-registry-packages-npm-production"}},"51.2.3":{"name":"eslint-plugin-jsdoc","version":"51.2.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.2.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"59b373c53458ef64700d57985a9622cf7021b0d2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.2.3.tgz","fileCount":213,"integrity":"sha512-pagzxFubOih+O6XSB1D8BkDkJjF4G4/v8s9pRg4FkXQJLu0e3QJg621ayhmnhyc5mNBpp3cYCNiUyeLQs7oz7w==","signatures":[{"sig":"MEYCIQCL+Pu3JvAYdggTOkfGKz/6Mi8Zfrcjzxejj87RXRy6fwIhAOg+DbNlLdA8jfEF6MVkrZrelpfrgCNhJn4a4hX7mNR0","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2103797},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"35e95a163819dd63e52748f9ad1bba25c2bd6e89","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.2.3_1750744225231_0.7670771804262002","host":"s3://npm-registry-packages-npm-production"}},"51.3.0":{"name":"eslint-plugin-jsdoc","version":"51.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d75c3f5685214908ceb97bc49a14cbc5cd85fdaf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.3.0.tgz","fileCount":213,"integrity":"sha512-XGXFzg+lwoZnhkIRKBS8Fl8Y3Sx3VAhX8jABaYsM/Ympz7pqKiI6gFgBIwqfK1Un3ADdCYNY/pceYDfQydelnw==","signatures":[{"sig":"MEQCICjWOSltSZ7L0IbFUXMxGYpXgsnvYmohtwR48KKO7t90AiAL4uFCbriHNatCLgUdj6WicIqo1V58OSTLGXzp3TuM3g==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2118624},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"26276bae9610e50ca0554ee496667b9e363f9941","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.3.0_1751243419818_0.6549742993402718","host":"s3://npm-registry-packages-npm-production"}},"51.3.1":{"name":"eslint-plugin-jsdoc","version":"51.3.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.3.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ab48067b78192b820df505238036dacdfc4b109f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.3.1.tgz","fileCount":213,"integrity":"sha512-9v/e6XyrLf1HIs/uPCgm3GcUpH4BeuGVZJk7oauKKyS7su7d5Q6zx4Fq6TiYh+w7+b4Svy7ZWVCcNZJNx3y52w==","signatures":[{"sig":"MEQCID9hthz/brOmxDLQd47bmZ9Hqd23r8XS1dvYkkQ6ND74AiBEJUJg27K150RLQzT457+JXbFFHcPFJ62QST01ceBlBw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2123034},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"3748bbeb3d2ec3519ad7191e597843c9bc935c63","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.3.1_1751246039200_0.04965914463618937","host":"s3://npm-registry-packages-npm-production"}},"51.3.2":{"name":"eslint-plugin-jsdoc","version":"51.3.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.3.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"41b0948beaaef7c2275270671c8b6add9316701a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.3.2.tgz","fileCount":213,"integrity":"sha512-sBmS2MoxbUuKE1wMn/jeHitlCwdk3jAkkpdo3TNA5qGADjiow9D5z/zJ3XScScDsNI2fzZJsmCyf5rc12oRbUA==","signatures":[{"sig":"MEQCIAGBFzsAl38ErGqi98vOjpib8RrNpG8atzuuXJKZwFh5AiBsCFS3C06Ne2fENVqogjIBK4YBt9qGMlPtzZB+Ij4lFw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2123308},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"9b8efbd21f95d3727c540bc6d04c34b723c5f7a1","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.3.2_1751416179741_0.1698216548631204","host":"s3://npm-registry-packages-npm-production"}},"51.3.3":{"name":"eslint-plugin-jsdoc","version":"51.3.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.3.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"940eded9c03b092fd550734d20359decbc40afd4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.3.3.tgz","fileCount":213,"integrity":"sha512-8XK/9wncTh4PPntQfM4iYJ2v/kvX4qsfBzp+dTnyxpERWhl2R9hEJw1ihws+yAecg9CC6ExTfMInEg3wSK9kWA==","signatures":[{"sig":"MEQCICapyBnsV8q9FnuWck1X3qK0wssFaoMnk957CLKEqaG5AiAcdaqAgPu0CcpRCyGH6kRKKTTp7AefuOEak25QsEfjPQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2123496},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"feb65e4e845e3f3126b6cadb8b2d970f06a68b53","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.3.3_1751461357083_0.4765550607584126","host":"s3://npm-registry-packages-npm-production"}},"51.3.4":{"name":"eslint-plugin-jsdoc","version":"51.3.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.3.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"40cfc8e406d40a3d9fdf6e44dcccd3c39a198353","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.3.4.tgz","fileCount":213,"integrity":"sha512-maz6qa95+sAjMr9m5oRyfejc+mnyQWsWSe9oyv9371bh4/T0kWOMryJNO4h8rEd97wo/9lbzwi3OOX4rDhnAzg==","signatures":[{"sig":"MEUCIQDrANdVQ31da89n9HH5rK9N2pT6AYVpxwFPl4rA7kNENwIgWH46OkFtcQRXwPcpZ6CW6jxTjvbZOH3+U5MPnTjkHHU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2125207},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"c51ee4fe552041dad94dc6dc7e67255cba1b1d2f","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","actor":{"name":"gajus","type":"user","email":"gajus@gajus.com"},"email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.16.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.3.4_1751879080823_0.2840108033463984","host":"s3://npm-registry-packages-npm-production"}},"51.4.0":{"name":"eslint-plugin-jsdoc","version":"51.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"03d3e2f40b5d8dda39f773430e0dad5ce29cd314","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.4.0.tgz","fileCount":213,"integrity":"sha512-woooKbcFiQdpfJg1g/WmFHItaZuDE14SZ7QVW3eV/5e3mbOicjtgVz6cFkYJ3MP9n5WL9/ZAvuWuGkAkMFhDYQ==","signatures":[{"sig":"MEQCIA7HRrU8/Pjvxa4qva9wJPId2k6lq7paei+23MaTDZNdAiB3KEp8o0m6WinChK1cuthLoO3yPFkB9vz4TEgAQZZx/w==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2125253},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"1f015ca70a13d055b4ebd2b8638b4be35abc05ba","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.17.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.4.0_1752591065828_0.3612609516898819","host":"s3://npm-registry-packages-npm-production"}},"51.4.1":{"name":"eslint-plugin-jsdoc","version":"51.4.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@51.4.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a512460da6ba328ac3be0c3e7b2aaa4633175625","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.4.1.tgz","fileCount":213,"integrity":"sha512-y4CA9OkachG8v5nAtrwvcvjIbdcKgSyS6U//IfQr4FZFFyeBFwZFf/tfSsMr46mWDJgidZjBTqoCRlXywfFBMg==","signatures":[{"sig":"MEYCIQDEJkOo1y8Qdsh4c0a4Xw2wc9umQ+X0TW4kGLYYBNilVAIhAJMUsrFN0vaMgpq+0hOWKq0yCFANZiTgRXnD1saw+9JJ","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2125850},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"b462e4435fc1d71fb70cbcf63874b2ad642987f6","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.17.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_51.4.1_1752672385242_0.5989686305767683","host":"s3://npm-registry-packages-npm-production"}},"52.0.0":{"name":"eslint-plugin-jsdoc","version":"52.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@52.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"70ee65c77b545814c376c596af1c7ee35161fcb8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-52.0.0.tgz","fileCount":213,"integrity":"sha512-KZjaoTWWUIml6K6zyPvwCYlLoMDQ69taSdTcdTIavBUoJCIWUfYcsRIw4n9dzllMouqdxiFfKW33EAbBLBu1HA==","signatures":[{"sig":"MEYCIQDeMXmH+nQeQNd4NBAuBsWd9x1OVc1Z9fk4rjqkvUHRsgIhAI49AAgc951sQHzEzoFRD+l5ykJVp2osYb7il1Nm3AsN","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2125853},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"5c2165c7b7d322050aa0c6754bdc2e06e5ad421e","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.17.1","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_52.0.0_1753665748685_0.4499416079186531","host":"s3://npm-registry-packages-npm-production"}},"52.0.1":{"name":"eslint-plugin-jsdoc","version":"52.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@52.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c771a1f963454acf90a43da63b3a2864eff4ba62","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-52.0.1.tgz","fileCount":215,"integrity":"sha512-zJdjpC9z4x28BBdCoxH+/h0BdDLZ9KXQGVKU9gHt3TQJ9kMraep+DgfTIVaXu9u1wy0HyhK2eFMp3icQBV4dkw==","signatures":[{"sig":"MEUCIA/6WchWiatFJBYDZkim9hhHvEL7/GTfuIBmjVa3gYcLAiEA+5c+rdYoE97G3YUl2e5nO9inNwVXpwMmTsTry1+SzvE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2153651},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"da66683906367d20b64cbde9a034d44eef686a05","scripts":{"tsc":"tsc","lint":"npm run lint-arg -- .","test":"c8 npm run test-no-cov","build":"rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-arg":"eslint","lint-fix":"npm run lint-arg -- --fix .","test-cov":"cross-env TIMING=1 c8 --reporter text npm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"npm run test-no-cov -- test/rules/index.js","create-docs":"npm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"cross-env BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"npm run lint-arg -- --fix",".eslintignore":["npm run lint-fix","git add ."]},"_nodeVersion":"22.17.1","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"npm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","cross-env":"^7.0.3","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_52.0.1_1753825325679_0.47886222969545345","host":"s3://npm-registry-packages-npm-production"}},"52.0.2":{"name":"eslint-plugin-jsdoc","version":"52.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@52.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"90921df5bfd4a07c6cf4702d891f0e621d2bfffb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-52.0.2.tgz","fileCount":215,"integrity":"sha512-fYrnc7OpRifxxKjH78Y9/D/EouQDYD3G++bpR1Y+A+fy+CMzKZAdGIiHTIxCd2U10hb2y1NxN5TJt9aupq1vmw==","signatures":[{"sig":"MEUCIQCUDw79twTuEElfRimu6rW6XgCtw2sP+UwDLGFL0OhhwQIgdxw0d3UGRdHCelYSM7ocBWCg106jGIN8+3YS2WdUWlc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2152996},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"e9b0877026c928f3bc3e4eb554b97766376e7f19","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.17.1","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_52.0.2_1754007011229_0.5859676909435627","host":"s3://npm-registry-packages-npm-production"}},"52.0.3":{"name":"eslint-plugin-jsdoc","version":"52.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@52.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9b98f38c881d8f924663bd6d9a46caaed9196dfa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-52.0.3.tgz","fileCount":289,"integrity":"sha512-QTFvtVVWXwk0RxYF2GDHIQpkz/0fkonthp13YFMBI+Mco+tFrvU8I8E/WKo5ThcH6y3ya9Zx2VHRrZUrcLhs1A==","signatures":[{"sig":"MEUCIE5e6gHVELr7GDRM3qXFjk9AoKBcguJoSGdLJMc+moWiAiEAo65sLdnHBFg3LsU3zQ51CHRmsJ65x1icH/sRVSnNLdI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2413660},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"default":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./package.json":"./package.json","./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./dist/iterateJsdoc.js"},"default":{"types":"./dist/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./dist/getJsdocProcessorPlugin.js"},"default":{"types":"./dist/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"af03395541586307ceb215452166254b9fe2e160","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"tsdown","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.17.1","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","tsdown":"^0.13.0","gitdown":"^4.1.1","globals":"^16.2.0","publint":"^0.3.12","camelcase":"^8.0.0","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","unplugin-unused":"^0.5.1","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","@arethetypeswrong/core":"^0.18.2","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_52.0.3_1754433903356_0.14784475212665904","host":"s3://npm-registry-packages-npm-production"}},"52.0.4":{"name":"eslint-plugin-jsdoc","version":"52.0.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@52.0.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d391b33dd8d6808d573118588451229d4f41f20d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-52.0.4.tgz","fileCount":215,"integrity":"sha512-be5OzGlLExvcK13Il3noU7/v7WmAQGenTmCaBKf1pwVtPOb6X+PGFVnJad0QhMj4KKf45XjE4hbsBxv25q1fTg==","signatures":[{"sig":"MEUCIQDIfJUFtNswnqY9Fsw4hQjNzp7KqDFqR6qu137pOk6+bgIgJuD0aBb0UkwAxCtoh5JtFQAbCuBA5b6EcOARDhcQi7k=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2152996},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"43e7e6d756c5d10f2fd806ec730f16b745a5dbe8","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.17.1","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_52.0.4_1754467959216_0.7730028067870165","host":"s3://npm-registry-packages-npm-production"}},"53.0.0":{"name":"eslint-plugin-jsdoc","version":"53.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@53.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7b50cd9ec8f005b4a5a214bd575ab90ef1e27a91","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-53.0.0.tgz","fileCount":289,"integrity":"sha512-DnsAhp5INIjgqUMtQLbaZXTCZ81fqZHm0FJQqG4uG82WJ2XNxBwqX3NP5q9c3wKUIckyjtpEhElh51jWb8lZ+A==","signatures":[{"sig":"MEYCIQDY/UhFUCVYQb7uD+U+Tpkps9cTg2O22kHzuR9ho7N7pAIhAIFAQ3krsYQbIl/zAzv2JgMSA9MMoZSAomvRe/RVs0ux","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2411634},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"default":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./package.json":"./package.json","./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./dist/iterateJsdoc.js"},"default":{"types":"./dist/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./dist/getJsdocProcessorPlugin.js"},"default":{"types":"./dist/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"b19f6f9a3ec2f76a570fdf14017b681189dbabe9","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"tsdown","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.18.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","tsdown":"^0.13.4","gitdown":"^4.1.1","globals":"^16.2.0","publint":"^0.3.12","camelcase":"^8.0.0","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","unplugin-unused":"^0.5.1","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","@arethetypeswrong/core":"^0.18.2","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_53.0.0_1754938046734_0.9423309055169053","host":"s3://npm-registry-packages-npm-production"}},"53.0.1":{"name":"eslint-plugin-jsdoc","version":"53.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@53.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6407b7ea102b763d4d1ad20f8faf854e44c549c2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-53.0.1.tgz","fileCount":289,"integrity":"sha512-9gYQy6pXAHnJXPFMATQS56O3js39okRrve61VlaXhKyaa9dZuuvTlReStF3eQ+ygG5vybFl7YTw6MkYkrf2GUQ==","signatures":[{"sig":"MEUCIQDSDGGQCi72cSmyuqkFLyn1mT/t77lEQh/A8iBPwVcdIAIgWlaYOT8H8+uMek/5rgmwEe6Rfdk5dcQxwMR6Uim4k6k=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2414990},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"default":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./package.json":"./package.json","./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./dist/iterateJsdoc.js"},"default":{"types":"./dist/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./dist/getJsdocProcessorPlugin.js"},"default":{"types":"./dist/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"08677282ecab21a6181421368f8f8c451186a402","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"tsdown","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.18.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","tsdown":"^0.13.4","gitdown":"^4.1.1","globals":"^16.2.0","publint":"^0.3.12","camelcase":"^8.0.0","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","unplugin-unused":"^0.5.1","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","@arethetypeswrong/core":"^0.18.2","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_53.0.1_1754942543079_0.7692012671029931","host":"s3://npm-registry-packages-npm-production"}},"54.0.0":{"name":"eslint-plugin-jsdoc","version":"54.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@54.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d1da9499769f2330f8593bc59c353afe3d0797b2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-54.0.0.tgz","fileCount":215,"integrity":"sha512-8w5c8OmmD5WD5MNQy1AhmYbiyV4IlSscXUyg5MwvN3BI/bLUmRpeEXc+Mj37y2UZsLhzvHyCscQenUzvbLxQ7Q==","signatures":[{"sig":"MEQCIBQFwfcVBCrkXzaD77EM8f0HuGsKNBHA1Rd1hkcRGknNAiB+Y2ZjCu6KKcPwZP4y3l9m13huS5MY/sI+CgkX90w7+g==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2155757},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"aeb97bfce627062824c60d357626baecc2ea3c9d","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.18.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.52.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.0","eslint":"9.29.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.2.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.27.2","decamelize":"^6.0.0","typescript":"5.8.3","@babel/core":"^7.27.4","@babel/node":"^7.27.1","@types/chai":"^5.2.2","@types/node":"^24.0.3","json-schema":"^0.4.0","lint-staged":"^16.1.2","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.5","@babel/preset-env":"^7.27.2","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.34.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.27.5","@semantic-release/npm":"^12.0.1","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.5","jsdoc-type-pratt-parser":"^4.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.3","@typescript-eslint/types":"^8.34.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_54.0.0_1755052891073_0.5470616325742699","host":"s3://npm-registry-packages-npm-production"}},"54.1.0":{"name":"eslint-plugin-jsdoc","version":"54.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@54.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"197b0d4a672af3d4ac8c998195e65fb6d62eec6c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-54.1.0.tgz","fileCount":215,"integrity":"sha512-tZJuW6s3gtveVsg08IbJgmfgAA1SpSkEz7KjxPEVmyAO4fPlz7zsMHdxjyn+Zku1l+wejr2JUdTFTNirRgHOrQ==","signatures":[{"sig":"MEYCIQC1jnW/B5KSPBbFEt0o5aK0wRSkhf+DK++rjuAsMtoOdQIhAPQNmEbiUccZojkRz0aycgO/O5sVFGFrkCwGRlpIPQUr","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2156228},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"e51a7a89af6c39554e98a50a34fa5c45f065ac5e","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.18.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.53.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"9.33.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.0","typescript":"5.9.2","@babel/core":"^7.28.3","@babel/node":"^7.28.0","@types/chai":"^5.2.2","@types/node":"^24.2.1","json-schema":"^0.4.0","lint-staged":"^16.1.5","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/eslint":"^9.6.1","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.39.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.28.0","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.9","jsdoc-type-pratt-parser":"^4.8.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.4","@typescript-eslint/types":"^8.39.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_54.1.0_1755223620415_0.7605472414727237","host":"s3://npm-registry-packages-npm-production"}},"54.1.1":{"name":"eslint-plugin-jsdoc","version":"54.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@54.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6f48d1d3428cb2d8e59754003eee6c1b220f0232","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-54.1.1.tgz","fileCount":215,"integrity":"sha512-qoY2Gl0OkvATXIxRaG2irS2ue78+RTaOyYrADvg1ue+9FHE+2Mp7RcpO0epkuhhQgOkH/REv1oJFe58dYv8SGg==","signatures":[{"sig":"MEYCIQCQjfYKedtueX19LOjBCRixB3kBauE3fYZsfq24bXEDNQIhANsqbOFREU3BWWY8DoSDaDDUIC4d631EN0a5ASQZ9GtI","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2156245},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"3bf911c48105a760d1d90a87a817522696eaf8f0","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.18.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.53.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^5.2.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"9.33.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.0","typescript":"5.9.2","@babel/core":"^7.28.3","@babel/node":"^7.28.0","@types/chai":"^5.2.2","@types/node":"^24.3.0","json-schema":"^0.4.0","lint-staged":"^16.1.5","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.39.1","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.28.0","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~44.9.9","jsdoc-type-pratt-parser":"^4.8.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.4","@typescript-eslint/types":"^8.39.1","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.21.1","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_54.1.1_1755651848587_0.21299650601842068","host":"s3://npm-registry-packages-npm-production"}},"54.2.0":{"name":"eslint-plugin-jsdoc","version":"54.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@54.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"884827fbb3c25b989c3af784ddf112ba350d0834","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-54.2.0.tgz","fileCount":215,"integrity":"sha512-3hDYfmkcKxlxkco5xfPFtGNiSdrYl6IePVMHS+DrGzwlpABuMiY7IeRMyFsp2K4ZnMuUX+nqTGMGOHq/oSXn6A==","signatures":[{"sig":"MEUCIQDAkyxlPpQp8649g56OMN/8L/ZZkmhe9y/OFu2V7fYtfQIgQp+gBtYmrGCqjCpm7mEjVTRp47AcsaVchEU/qkmzM1c=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2157043},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"09ee4ab2479fc3ec7e97fa1d9562a4dd34345e57","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.18.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.53.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"9.34.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.3","@babel/node":"^7.28.0","@types/chai":"^5.2.2","@types/node":"^24.3.0","json-schema":"^0.4.0","lint-staged":"^16.1.5","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.41.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.28.0","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^4.8.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.4","@typescript-eslint/types":"^8.41.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.22.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_54.2.0_1756801317994_0.8431524197404272","host":"s3://npm-registry-packages-npm-production"}},"54.2.1":{"name":"eslint-plugin-jsdoc","version":"54.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@54.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"cb54b22f0e6c5c570c20fc5c312bf7779878d615","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-54.2.1.tgz","fileCount":215,"integrity":"sha512-RHmDsuxbMXJ11HVHuJJ4nlWxN+LKykDaL2evNuODshslR4sRPJPiiGwih8lNpwyFwSe9Apc6zMMXHWq/7P2mPA==","signatures":[{"sig":"MEQCIDbAVrQ7zY/5hs9jdOCr/qS+nc0sU8Z3iV85g68OWaGpAiAWyH4UwIsJdTWlfYcSbOpKehAbyBMLHN9stfBHTiU4Cg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2158143},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"81323920dbe3ee7401f64e062e72432e10f03661","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.18.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.53.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"9.34.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.3","@babel/node":"^7.28.0","@types/chai":"^5.2.2","@types/node":"^24.3.0","json-schema":"^0.4.0","lint-staged":"^16.1.5","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.41.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.28.0","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^4.8.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.4","@typescript-eslint/types":"^8.41.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.22.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_54.2.1_1756814999085_0.038297515736269716","host":"s3://npm-registry-packages-npm-production"}},"54.3.0":{"name":"eslint-plugin-jsdoc","version":"54.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@54.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7af935bd44ebe4b8502b0185af1b69dd906d9fc2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-54.3.0.tgz","fileCount":215,"integrity":"sha512-G1f3iztVfkmsazoodrvtC71ihdnoZuUhgSXNH1smIGuCWpCFYuFQcv7jAslqQUyVPyGO4lymHsBdRc56bQa79A==","signatures":[{"sig":"MEUCIHeUEjKcjecslWh5pwtng81qCkaNZnp4aYU4uIN4W7CwAiEAkPN+1XzC9BTCIkFWlLL5yXEaCkODdX5VQ/LxgX4cZMU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2159802},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"95f33808772733623549d1399a2b3b43cc652c65","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.mjs","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.53.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"9.34.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.3","@babel/node":"^7.28.0","@types/chai":"^5.2.2","@types/node":"^24.3.0","json-schema":"^0.4.0","lint-staged":"^16.1.5","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.41.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.28.0","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^4.8.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.4","@typescript-eslint/types":"^8.41.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.22.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_54.3.0_1756839900576_0.3928306055520703","host":"s3://npm-registry-packages-npm-production"}},"54.3.1":{"name":"eslint-plugin-jsdoc","version":"54.3.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@54.3.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"d00e62d8ce950ecba6658979c071599f3562e6e3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-54.3.1.tgz","fileCount":217,"integrity":"sha512-6KlEwRCaQfSi1Wsis4cxsqDfOuQDPG56ozSPCkG+N9aISTQpahbo2n0YZs6c7CIVXQzVdYSxuvQ6w31rfeiMhw==","signatures":[{"sig":"MEUCIGGW9PiNpp3gQS5kLz7L5SoE269D3MxsE6KsiJsqAxwyAiEAstaURiRGbVH5RKRDek1a1Egs2F6pCCaDihL3HPTjtQo=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2167197},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"5fbab65f0f1fe7375e749eb22c032b018d030ca8","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.53.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"9.34.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.3","@babel/node":"^7.28.0","@types/chai":"^5.2.2","@types/node":"^24.3.0","json-schema":"^0.4.0","lint-staged":"^16.1.5","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.41.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.28.0","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^4.8.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.4","@typescript-eslint/types":"^8.41.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.22.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_54.3.1_1756889433223_0.9874007336682917","host":"s3://npm-registry-packages-npm-production"}},"54.4.0":{"name":"eslint-plugin-jsdoc","version":"54.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@54.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"62d6bced5effe95c6d1236d06e7b76d05628ef75","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-54.4.0.tgz","fileCount":217,"integrity":"sha512-jH4W/E89kEQPY3WxgkJ4ZAC8DJ7boUCeh3MO6hSX+JRzOkIiJ4rCA3lUE73ufWNrafpJqueZ5Lztqf5eK+ry7Q==","signatures":[{"sig":"MEYCIQDljW/S5bMTjV2W6Az6yANpczB1hTM2D6VWgonEdC2ZrQIhAJ6v2TKUSW+EiFDBjexeXpHR4TYxCUNA4jw/fv/ubA1l","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2168304},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"784ce62ff9ce390049b6ea434358e8538af3bb92","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.53.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"9.34.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.3","@babel/node":"^7.28.0","@types/chai":"^5.2.2","@types/node":"^24.3.0","json-schema":"^0.4.0","lint-staged":"^16.1.5","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.41.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.28.0","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^4.8.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.4","@typescript-eslint/types":"^8.41.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.22.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_54.4.0_1757151737937_0.6376589816783655","host":"s3://npm-registry-packages-npm-production"}},"54.4.1":{"name":"eslint-plugin-jsdoc","version":"54.4.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@54.4.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"18f574e897d1cea6fdd1aa1a4bd11c533df658c4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-54.4.1.tgz","fileCount":217,"integrity":"sha512-gKTH7duF3rSsAoIFoL+/ONQpI9yKTg+4HsWJ2YtJoS9d4LDt3Y77HtcLmrJ2hwafPeDtMUhy1zUSJXt+7bPj0A==","signatures":[{"sig":"MEUCIQDfj1jnAjiBy6BtGgyk7Uar+SvJjMWWN3bbPNAOiweLMAIgeYHxNQE6Wahe1Phy6c/4d7lXPSOEbjKjQb/JqGitUiU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2168341},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"e45b7263f947fb11d5eb9e3beecc49ee2782709d","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.53.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"9.34.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.3","@babel/node":"^7.28.0","@types/chai":"^5.2.2","@types/node":"^24.3.0","json-schema":"^0.4.0","lint-staged":"^16.1.5","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.0","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.41.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.28.0","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.0","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^4.8.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.4","@typescript-eslint/types":"^8.41.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.22.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_54.4.1_1757255112314_0.7476282823902998","host":"s3://npm-registry-packages-npm-production"}},"54.5.0":{"name":"eslint-plugin-jsdoc","version":"54.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@54.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c6c3105403120270004ebe0ddbf07330e11c6294","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-54.5.0.tgz","fileCount":217,"integrity":"sha512-f+AOXbKa9QtOrJr1lfEZ6ScSnS4Lun8czm+U9VNB39jq5mTUc1WQTXDOaESm0C5veSyuo3WBz2ge0Ah79Jzo7g==","signatures":[{"sig":"MEUCIFgkCW9NZYvxJWLOAN8YoAf1Ht/AQp5oFhdF6tFQLzTaAiEAn6b0pCKkWe2H+b/QQWGdj+ujzT+jS1ZVee5oPrt0AP4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2175757},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"b2764fc5544acb004890d46aaf96e7de61602e6e","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.56.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@babel/node":"^7.28.0","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.42.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.28.4","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.42.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_54.5.0_1757260028297_0.9393467701600886","host":"s3://npm-registry-packages-npm-production"}},"54.6.0":{"name":"eslint-plugin-jsdoc","version":"54.6.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@54.6.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"db9b100b33ce02e9d226df735ca2d9c56e28577c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-54.6.0.tgz","fileCount":217,"integrity":"sha512-DPT3DThw8QzZCt/L301UuCHY1WEN059F+bas7iwjlZj8Nwv4R0utVPTzmTziEM4CX122zGA4yTK9DjHWU0P4tg==","signatures":[{"sig":"MEYCIQDvkPohz9NHZb9L9+WKZShkw9WpKpJHUN0GR0svEtPHhwIhAN1jD8CbzKm6BUpce31rdTuT91/Dbb3b/1HzVjHtJV44","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2183119},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"9fe05e0568fa322977b3f5b09566a99903457e79","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.56.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.42.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.42.0","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_54.6.0_1757332953874_0.5691271460127854","host":"s3://npm-registry-packages-npm-production"}},"54.7.0":{"name":"eslint-plugin-jsdoc","version":"54.7.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@54.7.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"256a7ffc07f96c939a17e8bc0484b11ae0ccba75","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-54.7.0.tgz","fileCount":217,"integrity":"sha512-u5Na4he2+6kY1rWqxzbQaAwJL3/tDCuT5ElDRc5UJ9stOeQeQ5L1JJ1kRRu7ldYMlOHMCJLsY8Mg/Tu3ExdZiQ==","signatures":[{"sig":"MEQCIEdEqlLu2RxFklIVgj8B26HHz8BLU9AlaulVqhlBEwJhAiAteA4Md7FnjqPq/g8x8q6V6wDDby+0FZTySLaAPGg1hQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2175757},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"427273e8c5169ff78056d9b5bf9b40e23d151d96","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"babel-node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && babel-node ./src/bin/generateDocs.js","create-rule":"babel-node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","@es-joy/jsdoccomment":"~0.56.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@babel/node":"^7.28.0","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.42.0","@types/json-schema":"^7.0.15","lodash.defaultsdeep":"^4.6.1","@babel/eslint-parser":"^7.28.4","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.42.0","@types/lodash.defaultsdeep":"^4.6.9","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_54.7.0_1757336374605_0.029732992097209365","host":"s3://npm-registry-packages-npm-production"}},"55.0.0":{"name":"eslint-plugin-jsdoc","version":"55.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@55.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e00e06e0bf278be3e4646590978dbcf6b804babc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-55.0.0.tgz","fileCount":217,"integrity":"sha512-45ljWx7dw0kA+zT/gYxhUUeMXUFZdn3yTxkOKvekYmhfYQF2kUx+2THnK1oeHFqdnJWkyi3ZSeLt4FKWMLKXTA==","signatures":[{"sig":"MEUCIQCrsSwxGI+rMamxo/NIJjOxc3liVqhYTUaJluEe3bxoywIgeNLAC3oTCyRGTbRBZpgXFrNUUgodqM1AF88EQDOeoG0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2184602},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"0b0a0582a5ad77284c146e01f5347b3fe541e80f","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.56.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.42.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.42.0","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_55.0.0_1757338254573_0.9883177216874541","host":"s3://npm-registry-packages-npm-production"}},"55.0.1":{"name":"eslint-plugin-jsdoc","version":"55.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@55.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"27301cbd72b35760979fc213f8942f742314ff6b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-55.0.1.tgz","fileCount":220,"integrity":"sha512-drljqqID7SLb4ndZOewk7Nt3879wU6jVjLaYBi+u6u0/8K7th8/ebZwzKhuiFQa7TDVkp+hKoS+H5/vFjbb6pg==","signatures":[{"sig":"MEQCIGPU9gURrGGjzaVgnpfVFNHDgwIb3HcpumoMmLqq0mV/AiBTpLvkAR008kMK3Wa4tnxurDqB+1SvZpTSzPLG1ix03A==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2185689},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index-cjs.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"c8ea39ae0baf0b53d8ba056ea5bffd973583bbf3","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.56.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.42.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.42.0","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_55.0.1_1757369326800_0.89221079323673","host":"s3://npm-registry-packages-npm-production"}},"55.0.2":{"name":"eslint-plugin-jsdoc","version":"55.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@55.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"99738c42a6b78c2bb180ba85c7bcea18daee554b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-55.0.2.tgz","fileCount":220,"integrity":"sha512-0ydpGUvxEhMNEKofmlBRgo2VFA4oBMF5TDOwG/LocQOW+dyOLuM/Hzvd3QAHVzTiK0KO4Dq/PLt3XXWiGXar+Q==","signatures":[{"sig":"MEUCIQD8cfOsQphd83o3bAruMz7Qsph/27jQ4i4eXoHA2CzrcwIgXTYIS/e6lCNY6TvHNj2lCJoOjllFnySXJjC9tbixQvA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2185683},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index-cjs.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"005c3fd3ea648cb7060d4361b74c095cba73b91a","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.56.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.42.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.42.0","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_55.0.2_1757370247359_0.9096693224460808","host":"s3://npm-registry-packages-npm-production"}},"55.0.3":{"name":"eslint-plugin-jsdoc","version":"55.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@55.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"30568a989e5b8857206df4f8f60d37b7c0d7d914","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-55.0.3.tgz","fileCount":220,"integrity":"sha512-xU2/QZgBXIGFXOzyWsNaSwrcF80Rq2h084GvIU+pkfzwE55xnr+ShEUfVL6+fZ0Jrh0hWGHdk0RiN0axhK1new==","signatures":[{"sig":"MEQCIFoQiDmrF0J7AA7wkVHYkBGImo9H8gf8tSZLa9W+aqk7AiB4iCO1Fm6EqHGxPqhK66TsCw1jYOGCzWJ8pgCAIuCqjg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2184247},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./src/index.js","require":"./dist/index-cjs.cjs"},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./dist/iterateJsdoc.cjs","require":"./src/iterateJsdoc.js"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./dist/getJsdocProcessorPlugin.cjs","require":"./src/getJsdocProcessorPlugin.js"}},"gitHead":"e433f7d53c558a59f4deedb62579d6fa0a391176","scripts":{"tsc":"tsc","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.56.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.42.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.42.0","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_55.0.3_1757379727181_0.924665103989089","host":"s3://npm-registry-packages-npm-production"}},"55.0.4":{"name":"eslint-plugin-jsdoc","version":"55.0.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@55.0.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"3addc0f2b3d17670caafb71647f381a9c84a4d11","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-55.0.4.tgz","fileCount":225,"integrity":"sha512-E16jvdn7nq4wi4dddMi15ohDef0FhM+ccHfxU3uR5tWGxfqAEFhwh118jsGwADW/rjA+eC6QxE7xP4R3s8bfRA==","signatures":[{"sig":"MEYCIQC0xdFef5t/K4OASbfIoUsbE2zsFM7P4zvE/01rQfKOJgIhAKE1nzH2ZhnlqvIDVdWxRJQ5an00VvbYteAwGhqHQQxC","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2297475},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/index-cjs.d.ts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./src/iterateJsdoc.js","require":"./dist/iterateJsdoc.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./src/getJsdocProcessorPlugin.js","require":"./dist/getJsdocProcessorPlugin.cjs"}},"gitHead":"9261da0153a6fcc76b6a87eb00907f168cfe4f38","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.56.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.42.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.42.0","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_55.0.4_1757422730487_0.7880579671892418","host":"s3://npm-registry-packages-npm-production"}},"55.0.5":{"name":"eslint-plugin-jsdoc","version":"55.0.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@55.0.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"0c9891662d9ecd6cad5480632898064a23e5d777","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-55.0.5.tgz","fileCount":225,"integrity":"sha512-foZ/+Fm20JCYmP5msD4MpmFb0MxajkVJ15YMKxvQ7WJK0zI/iykkClpsuqbav3bLtDhaOalYxwRx0pGTqoQoRA==","signatures":[{"sig":"MEYCIQDMZ/eLejAH+X78DJGqVvJEZSuwtVugUypxxIXe40lIeAIhAPkrHXYjL1hN8ENqDsevZrMAFzaU+yLEcJeu6Kv8XqG/","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2297049},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/index-cjs.d.ts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./src/iterateJsdoc.js","require":"./dist/iterateJsdoc.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./src/getJsdocProcessorPlugin.js","require":"./dist/getJsdocProcessorPlugin.cjs"}},"gitHead":"23c9791f5c30440a15f085865ab4bf6e659a7325","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.56.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.42.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.42.0","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_55.0.5_1757424425404_0.7496702268284265","host":"s3://npm-registry-packages-npm-production"}},"55.1.0":{"name":"eslint-plugin-jsdoc","version":"55.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@55.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"8a4cdc49f397225a06f061b1f536b1dcee53686a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-55.1.0.tgz","fileCount":227,"integrity":"sha512-yxbY1mGZoamoX40VOxh2OKg1tlrlu9NLaXuUfT7ieyDSsdNSKu1aJpfWXbYQexOiYTHQb0Ly0E+4cfe8OYPXLA==","signatures":[{"sig":"MEQCIGTwZl7OoDlpBclRrkIYZQD0F4I4j4hXWznU9f3TttJTAiBwy3cxD+luKzHx5MiRQ5FFM41O6UUu3uIHD+TGdPBGKA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2302397},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/index-cjs.d.ts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./src/iterateJsdoc.js","require":"./dist/iterateJsdoc.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./src/getJsdocProcessorPlugin.js","require":"./dist/getJsdocProcessorPlugin.cjs"}},"gitHead":"ff4a55ccd329a9c9d3e042840f7ad830e4fe6017","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.56.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.42.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.42.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_55.1.0_1757433170345_0.5813354458741291","host":"s3://npm-registry-packages-npm-production"}},"55.1.1":{"name":"eslint-plugin-jsdoc","version":"55.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@55.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9eb5ee835baae599c1c71fd81e1e757771407c5d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-55.1.1.tgz","fileCount":295,"integrity":"sha512-SpWyvOltGAd7ievULVORJbyRU98rkIyIpiyjiAZ60mnKZSOu79oDUH4C2vPiCWK0hgj+BSwlOgbJ0enMaqi+/g==","signatures":[{"sig":"MEUCIQC8TkbuVSbQWtbpc0/DaLhPZOD9tCgokL9CVtHegT/FnQIgfNZVKa59VxIOzFmZ4HLnlOU+D1DF4Cvq6kYAo1dHkQ4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2383050},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/index-cjs.d.ts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./src/iterateJsdoc.js","require":"./dist/iterateJsdoc.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./src/getJsdocProcessorPlugin.js","require":"./dist/getJsdocProcessorPlugin.cjs"}},"gitHead":"a268541e7b6ee7f6b9982438d1a4699b54dee85c","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.56.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.42.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.42.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_55.1.1_1757434566776_0.7693750010757825","host":"s3://npm-registry-packages-npm-production"}},"55.1.2":{"name":"eslint-plugin-jsdoc","version":"55.1.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@55.1.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2d01f6134d42fffd61b07089d81677bd5bc6981c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-55.1.2.tgz","fileCount":295,"integrity":"sha512-RYvtXEQE2XU2y53swBmhVXxMcpj8LkG6Ups6zre5OK5nYeiIVkh1fPqQNyRar7bWrcQEMAWDHDahYGbOchHb1w==","signatures":[{"sig":"MEUCIEqyvRbzUVDiSVKYBSqJX63kAXeNPZYtYSRUrY6yLhvJAiEAxhtGDqfAdDpR2g9KopA9LsmQzmdjENEjfhwQDlxh1ME=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2383110},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/index-cjs.d.ts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./src/iterateJsdoc.js","require":"./dist/iterateJsdoc.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./src/getJsdocProcessorPlugin.js","require":"./dist/getJsdocProcessorPlugin.cjs"}},"gitHead":"2ccd6292e139768828faf810d49031b490435e09","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.56.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.3.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.42.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.42.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_55.1.2_1757460292368_0.8670709718474059","host":"s3://npm-registry-packages-npm-production"}},"55.2.0":{"name":"eslint-plugin-jsdoc","version":"55.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@55.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5e0f7813bd678e0295f0801168665948960d8368","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-55.2.0.tgz","fileCount":295,"integrity":"sha512-WAmUy+MdkNEqbMeyTFUED4+LfgeuP9sDQ3Ad19VE6c6ZXOjBdyG9BGDpYKf37LPMvwppoSapZFp4ry82MdJePA==","signatures":[{"sig":"MEYCIQCvCYlohNaKbm5IwUVqE3P+MGlg05yITfLSiWgCDjRF5wIhAMAK5gu9WvFyPsQfIMEdxlJMyOZvjf+VHcb4oIl9ldG1","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2391472},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/index-cjs.d.ts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./src/iterateJsdoc.js","require":"./dist/iterateJsdoc.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./src/getJsdocProcessorPlugin.js","require":"./dist/getJsdocProcessorPlugin.cjs"}},"gitHead":"93e6b1cef1a67d0d44652f7c9c9941b458a6d750","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.57.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.2.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_55.2.0_1757494545866_0.7598996874947033","host":"s3://npm-registry-packages-npm-production"}},"55.3.0":{"name":"eslint-plugin-jsdoc","version":"55.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@55.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a0e7e2ce625690776173e20fab1694b0d0a842f0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-55.3.0.tgz","fileCount":299,"integrity":"sha512-oo8ByBStn+VO/mPRTkNOCORoJxCegmevFV6v70xf+7+KgCFCyP9ay67l/2420OU0zZUMWfq61BTIaXi+DjVVWQ==","signatures":[{"sig":"MEUCIQDBUtJU/XGqa1JRrUG9mvo+GKv+5PbQL5pFAHItCQEjewIgX6H+ws8so0DkbpJkjU1B+VB+1j9v1G5tEFseAh614lA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2430930},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/index-cjs.d.ts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./src/iterateJsdoc.js","require":"./dist/iterateJsdoc.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./src/getJsdocProcessorPlugin.js","require":"./dist/getJsdocProcessorPlugin.cjs"}},"gitHead":"81cb787e021b7cd774dae908a8cfe830150672bf","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.57.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.7","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.2.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_55.3.0_1757525463515_0.7360100689194038","host":"s3://npm-registry-packages-npm-production"}},"55.4.0":{"name":"eslint-plugin-jsdoc","version":"55.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@55.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6bd07591ce22da63f380323ea6f32bd87f1b6cea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-55.4.0.tgz","fileCount":299,"integrity":"sha512-T85lylJvrnKPg8pCe9VNfPNDLo76CObyu7BOxjB2pGFpqBXzSl0roEDjI3oNgLWMFzEQZXIa4w+UX96uuF4b/g==","signatures":[{"sig":"MEUCIQDr9vmxf4OTUKvKH2e86RinTWW+QKc6dVT44k+7XPgcKwIgDCIj69IEVw1VUrz4cXaclNxn+CSI9KkkZZj4bn8HeL4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2440382},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/index-cjs.d.ts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"types":"./dist/iterateJsdoc.d.ts","import":"./src/iterateJsdoc.js","require":"./dist/iterateJsdoc.cjs"},"./getJsdocProcessorPlugin.js":{"types":"./dist/getJsdocProcessorPlugin.d.ts","import":"./src/getJsdocProcessorPlugin.js","require":"./dist/getJsdocProcessorPlugin.cjs"}},"gitHead":"be58cf19dee50c804d406e8239ae38d644ae64c1","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build","prepare":"husky","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_55.4.0_1757553254399_0.2634276183454325","host":"s3://npm-registry-packages-npm-production"}},"56.0.0":{"name":"eslint-plugin-jsdoc","version":"56.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@56.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7364ca8c96f67ea151cbc8ba53234aab9c4477cd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-56.0.0.tgz","fileCount":449,"integrity":"sha512-nwflOQ9pmwCBRQmBSjLw5vljxAXsshopoGCrrSJWj3fLSZB7rJK4v2GnH3adD7CKC6/Vmekt1B8ZMV42zL3EdQ==","signatures":[{"sig":"MEQCIDiUnF523bjnrk27Ii7+PadgSiaGlL8tGknYr0bzzLMCAiBuzUfh1UWIBUQ9DoMFt5oDyv+UnSIiN0uy1z22MAHkBQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3169774},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/cjs/index.cjs.cts"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/cjs/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/cjs/getJsdocProcessorPlugin.cjs"}}},"gitHead":"e3c8f1e2e2ae1207c054ddf0cf706c1456ebb44d","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_56.0.0_1757562841490_0.2509046088924167","host":"s3://npm-registry-packages-npm-production"}},"56.0.1":{"name":"eslint-plugin-jsdoc","version":"56.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@56.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"741620575c2bc5146f49a1e5d408b688a50402a1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-56.0.1.tgz","fileCount":377,"integrity":"sha512-tgJ3eT4yCMVBdD6EpohnSH58vOk74fbNZZKDVicPITwtbO3OMqf7Z8QE6mGjWG27K+pb3hczGXDQDY6HvouyOA==","signatures":[{"sig":"MEUCIFwJT5isfvyJpmC/qYbOCO/OFkcR+owkmhmMxonNf0OXAiEAtuYDAr0ficG1G06mBt9ayemAmMdAHj3cg7WvSEBgXzk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2513909},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"c29757db50c2d30f6565f9c60b23722c6511bbd7","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_56.0.1_1757563439528_0.5916450544310463","host":"s3://npm-registry-packages-npm-production"}},"56.0.2":{"name":"eslint-plugin-jsdoc","version":"56.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@56.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"3e0f977b8f36ad1b3f0cd2e7fe0931245aed4532","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-56.0.2.tgz","fileCount":377,"integrity":"sha512-goHsCOyedhtAE43FJoD/1sOrU17ono0mwfSFhVZtfVFAKT5Tnuq5TqaODl+hnNut7caJ+Wk5SQS9vi/L20I0BQ==","signatures":[{"sig":"MEYCIQC+e4uB6Q7QW3g95CTioPGbiDL3Rj3F0Bjyv9uf/EvNvgIhAPXK8rGMtY6Fd9oQBKXXy/NnZy0OoG9ZUB2JMGGcq9NB","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2514818},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"5f0067254c3cfce5ca23b993ef59e4d768bf3362","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_56.0.2_1757569135934_0.046100582503860066","host":"s3://npm-registry-packages-npm-production"}},"56.1.0":{"name":"eslint-plugin-jsdoc","version":"56.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@56.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"470336e726c6757749ee6939ce8eaa526c8557f1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-56.1.0.tgz","fileCount":377,"integrity":"sha512-/SVnInPMupHNiyKEaVrPcu/0d2O5wfCYQRWCo7aCdYXyF2f/AqEIzRdIRmcPtHumeX7Ry1hiQNeVigWALAhX8A==","signatures":[{"sig":"MEUCID9KMRtieQjmsh+9biJ5HsR+gLGqiufZQ3PGsLb2GaFyAiEAy8S5T98L3PZltiNxbHv2wOVib+Rhal+u0iNjRE3c/JA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2514980},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"888662802ee2161dbb85d413a6b843eac07b7de3","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_56.1.0_1757592741776_0.22771535862252712","host":"s3://npm-registry-packages-npm-production"}},"56.1.1":{"name":"eslint-plugin-jsdoc","version":"56.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@56.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f139d2bdcc214adf5af5a26102c28db3f6cd672d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-56.1.1.tgz","fileCount":377,"integrity":"sha512-s+OxaCQAdBjYMaOwiimZaXA7aMC3ZN2KXwYuvgttWtrABM/DCOrvKItTGXyd/neHz2ukRRTqomfhEUb91BXWzg==","signatures":[{"sig":"MEUCIQCS8/85H9CQ+lUqdnhDDBdAADYvHNuWehilShzwpLyb1gIgMNIj8cDZjxa+TalTNl9svI1tt8hvq4S/kCHQ6an3E5M=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2514825},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"d5fb1d1d0de158446dd4c0617b1311be30ae6f7f","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_56.1.1_1757593363736_0.9251047659924341","host":"s3://npm-registry-packages-npm-production"}},"56.1.2":{"name":"eslint-plugin-jsdoc","version":"56.1.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@56.1.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"89507a53b96142b5b2c7bc50b5efb835230c0893","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-56.1.2.tgz","fileCount":377,"integrity":"sha512-g30LmgNkpKsKNge4NKtoARCvGvGYHeCQjEWCs5xlNwHxdwVvd0rZaovHmD/D0of0H1bqcyFYv6WXDVAezndstw==","signatures":[{"sig":"MEUCIQDejqLTWww1uowXhLdwSyElYHrFuqJ+UtuZhBaml87bvAIgOehX0TXhcobSqWyxlxbh+gWwhudjht4cGeHAVCctof4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2514753},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"be2b7ae0185ff51cb3b859e08f52a68c7343d325","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_56.1.2_1757594771775_0.4015980345499166","host":"s3://npm-registry-packages-npm-production"}},"57.0.0":{"name":"eslint-plugin-jsdoc","version":"57.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@57.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a5e362f1e9f6366909f09d2dd7f8d940158f1ec4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-57.0.0.tgz","fileCount":377,"integrity":"sha512-WgqEy539FhDxAkVCMWrndC2Koq1DpBzXfd6EvXNt4Qe0CD4k2vuO2SYExLiinnfSyaAIaUCNprODcp0WY2L6eQ==","signatures":[{"sig":"MEUCIQCg+ZFMWcUCEeP2SuLu0b5J6MewAxwdcxFod1VtWjqHqgIgRRzQOS6KZWRvvcLNQNEh1cOOhJKPgPDwMdRKcr9AwNw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2548511},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"06454288b7b1037923f6665afd0cb8af512ea6ef","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_57.0.0_1757760834085_0.21503880809604814","host":"s3://npm-registry-packages-npm-production"}},"57.0.1":{"name":"eslint-plugin-jsdoc","version":"57.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@57.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9e0066519d00dc21ad93af3ba21d140c5fea45d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-57.0.1.tgz","fileCount":377,"integrity":"sha512-N111zHFZipwoeNBI8uUdlgTe2Scv/8/YVbbFAP+cfqta76oXYqoCLhOlJNwYsoyjqeA4m4uz8UOvPVosVPlWlg==","signatures":[{"sig":"MEUCIQDtL/bVOLjs5TCZUk/UYQxgcB3SUIXJ0rhXG7IrpWydMgIgUr9W5FE08hUqLA2oJbI2i1iKAry1TYtmTXsNkTxL6A0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2551700},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"33a4529ecbb2d7ef23bfaee2e28761cda98f97b3","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_57.0.1_1757763019033_0.6137534208642115","host":"s3://npm-registry-packages-npm-production"}},"57.0.2":{"name":"eslint-plugin-jsdoc","version":"57.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@57.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5ee93ea460619a4a359c35d9a51617a39b9446e5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-57.0.2.tgz","fileCount":377,"integrity":"sha512-r7zrYU1zS6lH2FQWDbdGHMQ8vmQ6b79PqX1xulpeHPUXWhdyctQQDPYbFycf9VeyWspWunHh67iWjCM2xXaG9Q==","signatures":[{"sig":"MEUCIEbFrxLORmCSxxemx7C5AxOElIPnjqXi3oG5iswHQI8XAiEA8qnR5zUrC3RASPzL/guoag6vga/pRAXjNgr8nhn9VCw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2551748},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"91f1c309298ef8454bc928108e37652c896a0897","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_57.0.2_1757763829415_0.4093322458392048","host":"s3://npm-registry-packages-npm-production"}},"57.0.3":{"name":"eslint-plugin-jsdoc","version":"57.0.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@57.0.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"08ade3bfd20bb1871a2d89f01082a86f43af1d24","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-57.0.3.tgz","fileCount":377,"integrity":"sha512-v+9MijTLMHqYQpWPCad2Sb+4DCT7U17rZISoy/MgvSn2L8GDxWP/zz0LM7XV0EFiPU9FNjPb3ZNAfhtikpNIYA==","signatures":[{"sig":"MEUCIQCSh/+X1x9Cw1XAK0k0xZknKjIypOkNBCcVoIbxh8Nl/gIgG/fYMZS48gSQajZ4VdsOm8vDmBmu2Tupwr8BVAn0UKM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2552110},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"76b8406cf9d3248c39c35d263451f3f3e320a99c","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_57.0.3_1757772458399_0.6767554364902335","host":"s3://npm-registry-packages-npm-production"}},"57.0.4":{"name":"eslint-plugin-jsdoc","version":"57.0.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@57.0.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"038159e561e72dd71854b573203959861246d617","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-57.0.4.tgz","fileCount":377,"integrity":"sha512-A2wBzQpBS6iUq8qquVPzhelcyWc5cXvqjPEXjLiBjGETj8oAU70tMLNpW0rmXkjwpaPuRB8zgfsMX97747VYgQ==","signatures":[{"sig":"MEUCIENPfFsYQNVeAbqj0jDVFifS3zlfagWcj/XMHAqnhvnGAiEAjYeIXLW8nSMxypce2jOl9J0R3PxelFFQswwwPoFdkmY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2558488},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"ab149825b97bdbec054397e6dae9a848e459db3a","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_57.0.4_1757809763635_0.8589605504820235","host":"s3://npm-registry-packages-npm-production"}},"57.0.5":{"name":"eslint-plugin-jsdoc","version":"57.0.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@57.0.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"74464d93aa49894c35e40e75d9946aff408d5343","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-57.0.5.tgz","fileCount":377,"integrity":"sha512-6G2BkDaC/lYgtW3XsqPdmDqC0EVoAVU2741+bDO6FxoJeeLuJRZbpkt/Dg1vA4aC9Txlm73Gz3S7QZ4huINVsQ==","signatures":[{"sig":"MEUCIQC22qaN7DnAKXpPzRP1JnNr//ObCxbhciXpIL+RqycIYQIgCPelOODKpFRSKdl/zT9RMZ63u1VcZqXe5gNhFRbfbj8=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2560275},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"f019adfc992a2596ec400a3eb2220ae9edb6174d","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_57.0.5_1757820343810_0.6480927654932551","host":"s3://npm-registry-packages-npm-production"}},"57.0.6":{"name":"eslint-plugin-jsdoc","version":"57.0.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@57.0.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"dee128d7911e894657b53cd222ee0fcfd1cd54a9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-57.0.6.tgz","fileCount":377,"integrity":"sha512-UGFEwPpnKeXvLGuiM4JBRPwRP55odnjd5svugDqOX3OLOTqbAgOsKPlMF5YSww04JE5m73AyvpRL28LqBY/RNA==","signatures":[{"sig":"MEUCIQDgYlNjuZfIl60s0A2MC+6P30K2cc20YgdjBfW6uirALAIgBdeCTBDmApzRteyW2fYiGjBxlGNNqBbGzV3TMzZ7HQI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2560754},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"34e5910410470b1790da9001af3a22d3eed1e28b","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_57.0.6_1757829675334_0.5227537613280164","host":"s3://npm-registry-packages-npm-production"}},"57.0.7":{"name":"eslint-plugin-jsdoc","version":"57.0.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@57.0.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c6c7d19d6984a5398be4b7f1c8ea83a3834d3ff9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-57.0.7.tgz","fileCount":382,"integrity":"sha512-8KMn+Tlukr9XWYjTRA+aaFGbox4cV7IUO/8dYcyp5m4OPPOZmnCTNwtWeyRVnbbnuG4sPtMB6L7ct0KlemmNbQ==","signatures":[{"sig":"MEQCIBf+OLnLvSuxQQk3tV6ROZmGrdAxDhT388Kp8G/iQSQOAiAgMy5XveusH7AzV7tNE68RhliBvbTHtUnlOd7GXyT9sw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2553029},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"03a8a69abc07d4b6739b587cf582b4cfcab8daa2","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.1","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.3.1","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.5","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_57.0.7_1757835135433_0.5637713418748074","host":"s3://npm-registry-packages-npm-production"}},"57.0.8":{"name":"eslint-plugin-jsdoc","version":"57.0.8","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@57.0.8","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"04cca919f80b5341b1c7a8478b220ee7c8ff0614","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-57.0.8.tgz","fileCount":382,"integrity":"sha512-L3kb1fz1VsWMDxcNOPqomC8gWROxCJomynYZkhQJInZu4m3Ugjod75pWAICRrKW1WedHkX8BotknBtGCLUFpAg==","signatures":[{"sig":"MEQCIFBrQqgDqOy0ej2yLvorE6F7NjSnbQQGLjldYDsWFtZ2AiBiznCoqMlSF4FwIxWVc7YYRUko+lLdcvDNmXjEHzp6jA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2553047},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"6692d0e2d90cad836b110a6e50b9ebd9b56e22df","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_57.0.8_1757854168980_0.8595884403851834","host":"s3://npm-registry-packages-npm-production"}},"57.0.9":{"name":"eslint-plugin-jsdoc","version":"57.0.9","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@57.0.9","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"390f692fba931d557513fca0212d1310d80681ce","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-57.0.9.tgz","fileCount":382,"integrity":"sha512-iKUy3ABF/kAXClHd14mffkmmKLyxsS/6QhFrPehEHBcC1wI62lvTHc8ooBalfxxK7OQSbS9TVwBUGOWsopYbgw==","signatures":[{"sig":"MEUCIHi8pchC/MxfKgOiYXIzHbU+dUo65iy0wly9nXmbBv6MAiEAy7lHOXst5Pj37wFFC3MnR14iwKKrX3UfvgRWfK15rKU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2553623},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"d53884abb719089d4f93eaeda1be4fe127cf82a2","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_57.0.9_1757964834342_0.24203954474822353","host":"s3://npm-registry-packages-npm-production"}},"57.0.10":{"name":"eslint-plugin-jsdoc","version":"57.0.10","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@57.0.10","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b691449509961f22e211e017ce4076886fea5666","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-57.0.10.tgz","fileCount":382,"integrity":"sha512-s7Yyaw3p0VgiuWXw86UENdQm6qgLPlzgwzHV/J3Q27IWTgaaoiFcYznQT+jQiKqOWTzVmrpHadO6wpSy1ypZHg==","signatures":[{"sig":"MEQCIH+jCqUQkTD52x3d9Yj7IbTuiTeG51fln1sRBpzKcm1lAiA0WsvyDyHk8vyOGgxXYO2gPFLDiOGhjMR15vwQ99FI8A==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2553724},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"dd0950ba66be3f1d7032e652a64f22983663d627","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_57.0.10_1757967293633_0.4183314169878445","host":"s3://npm-registry-packages-npm-production"}},"57.1.0":{"name":"eslint-plugin-jsdoc","version":"57.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@57.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5ab32e925f6b43eb6e2472f8884e3ea7e664923a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-57.1.0.tgz","fileCount":382,"integrity":"sha512-xLDzlZqgbm+Kq/HhqnrXTZqwL0m6UBSzMQ5wq/87OTPgnu2byzqgCqObyVfaq+CKJjyYy03DBN/siI9Soc0LPg==","signatures":[{"sig":"MEUCIQDJUze+wIM4o0FFaYUp4S33R7WQY2ugLRokeHgv5QmRxAIgKcZENhQl/C2ctck4yvSVp3dcsuRutU8KyQvWXQ8kkfM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2555916},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"6b2013358d2c147faee355f1ae9d144bff25ff95","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_57.1.0_1757974635413_0.22722237318417804","host":"s3://npm-registry-packages-npm-production"}},"57.1.1":{"name":"eslint-plugin-jsdoc","version":"57.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@57.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"90b996389831b0666a260ead89edc07c44a95d65","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-57.1.1.tgz","fileCount":382,"integrity":"sha512-evg1pXzbNfmnrr8VD96/bbYXhME5yCUcghDvHHkxk97JriBsBROpqfg9KcKIMf2zRcqUOLMSiMhHWdxcOS7JbQ==","signatures":[{"sig":"MEUCIHTo7CwyDwWA/0Z21kK/WfoEamac9FEOldBdBCHGIFaHAiEAvFRZJ0SERJLXjXsWe8l8cBIMg4TCtWQIutiWsCSgNHg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2563215},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"7e155be1829c4327699b055b2552aa17b81c73b0","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_57.1.1_1757979574098_0.8666574965615477","host":"s3://npm-registry-packages-npm-production"}},"57.2.0":{"name":"eslint-plugin-jsdoc","version":"57.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@57.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6c0df9406ad513618dbd4dce59b69e3261850b6e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-57.2.0.tgz","fileCount":382,"integrity":"sha512-r/Vi5SBQSlQhHawa7p6YybdrMre1SWjvskrgqaAZj/0UWw/I9kzeN2/3A+oLhNECz+X2Z/AmodleYOxosMZ2RA==","signatures":[{"sig":"MEUCIQCWZwdcpCM8hrBHSLaVpAzLHHhpQ8NRqUcUQMKEym2o6wIgI8+36nNbTu6PG2EdFUI4pIpV1UcTHVrDCvhpsDJdeJ0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2566910},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"224bbe6141614f0b795aaaed56669ab986b57792","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_57.2.0_1757987886772_0.8121237719950694","host":"s3://npm-registry-packages-npm-production"}},"57.2.1":{"name":"eslint-plugin-jsdoc","version":"57.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@57.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a414c08ba43015abf6608a6be4432cb084a9b984","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-57.2.1.tgz","fileCount":382,"integrity":"sha512-HeTWN2VVVu7lzoKqH0uxB3UM3CBS+jMm91mSq3jb12CfWtSfverJDfhYDmRWiMGDzL9NUS/XCWPIWTQLsgjS4Q==","signatures":[{"sig":"MEYCIQCHjkzCjJs/d6hWraedj87dZd9J74Q+/EwwFhewlu819QIhAPdv95eLWRWspztZ3urLVFvq6mN6dQ6RLHasULQn6uV/","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2569365},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"c21a3f371277bd88dccb632351911f11278b82df","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_57.2.1_1757989640108_0.6202412303727658","host":"s3://npm-registry-packages-npm-production"}},"58.0.0":{"name":"eslint-plugin-jsdoc","version":"58.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@58.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6b1e34e410aa663cd71f3e03797b34d5b55148e8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-58.0.0.tgz","fileCount":387,"integrity":"sha512-mLVLC3FyLP+EqMOQZV5zEtpxpb9ZCat4VfIeHp8rK8vCwN9qmXTDjR9QnseR/Vgy3ehSeky2V0xaRGRMTavrUg==","signatures":[{"sig":"MEYCIQDuQWWhCxpC7ooUPnHQey+n1eHv1uOdc8wBap+wMX3z2gIhANdl4KEC+bs9AaN9BTNxJJ88Ke721oN1oaC4WK1D6p0O","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2596153},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"ae4e95d5d8a8029fa8b4ba8c12e0e635a6426f5e","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_58.0.0_1758009389366_0.10646049163651927","host":"s3://npm-registry-packages-npm-production"}},"58.1.0":{"name":"eslint-plugin-jsdoc","version":"58.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@58.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ec0f7dcbe90a734ea002b71aef3fca60fffe7030","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-58.1.0.tgz","fileCount":387,"integrity":"sha512-tRmxAuWXLEkmxlJk/K4eCR9llk2jjFtKWwFfpQaEkwCh/CZAq+kFOv9fU2p4HLzK0BF21lHYHl60dXvYHcBL1w==","signatures":[{"sig":"MEYCIQD1qNcmNFij3xKl40XNXNcxASF+F1bVY6tiLyfQP4/BkwIhAKWgJNw/aPRH2FjmE9DgnENQOeCYKzuSdkf8cLQN14+n","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2598791},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"a3bb85e6faba22d5c3eb19e84ed70ea0005f369e","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_58.1.0_1758020291553_0.8447457727667222","host":"s3://npm-registry-packages-npm-production"}},"58.1.1":{"name":"eslint-plugin-jsdoc","version":"58.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@58.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4f1c7778efc2715ed77114b24ea2f4e973318700","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-58.1.1.tgz","fileCount":387,"integrity":"sha512-PJ3WMVrusBPN5mtFiV0cSSS1GuEBTvUAEnEsAr7x8M+5S/EO1G6nKVwLyGN69lUeMB9of0N4dvoFMNdl/X98yA==","signatures":[{"sig":"MEUCIB/1bDwq5kxkpEprsXD3lEPAQNB8sP0Lcdt2RUdfDQguAiEAvUwR4kOiBhmttayq3E3szZ8vamx7xMJ3ZWnFe+ZBwgM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2599328},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"1cf93b5a04ce11e676dcaf9bfaf16f42984795ac","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_58.1.1_1758103894036_0.6243283651383669","host":"s3://npm-registry-packages-npm-production"}},"59.0.0":{"name":"eslint-plugin-jsdoc","version":"59.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@59.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"1d9ee8398c414a1b26b6ae189f213c6fc5be5095","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-59.0.0.tgz","fileCount":387,"integrity":"sha512-WYm9a2OcnoM2MzdTaklRdsmzQ5iigO9KT3pFS9DwN+CkJWdBfMI0EmAJo5hhkTYREFsZrZtNe3QbmFrKDuzmhw==","signatures":[{"sig":"MEUCIDmuh2425Wp0r9OHKQDbeGCYauThGarn/Hf7EfCmxQ0pAiEA17/KGAVeOAbaBifyK1IWpjLp8fBecW55ghtF6bCOvQM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3064113},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"214a5f26c67ab29deddc12e0a44e2361aaecd22c","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_59.0.0_1758188103048_0.3056498237890488","host":"s3://npm-registry-packages-npm-production"}},"59.0.1":{"name":"eslint-plugin-jsdoc","version":"59.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@59.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"819131090cd625bb23038c2a80aa84fe340f6f01","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-59.0.1.tgz","fileCount":387,"integrity":"sha512-hyIdUFpjJwFJtyZ5FliUsQuqjsVwVj/3uBexww8TXN4T7f8R3xvG2fFCpe7dQV0kGwoVo9uTtYeK9XvF458qbg==","signatures":[{"sig":"MEUCIEkijaSUYhO9k1j276KgAST7J0ixbbn8ti9UGJM5hmQgAiEAyfjS2s1pXzs0Pwk2LTDKwom5fZ0RAsI94+zz29zkW+E=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3065542},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"2544b12238e248ab581e3c4964068e7d48cdf9b3","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_59.0.1_1758198962420_0.0743899118259117","host":"s3://npm-registry-packages-npm-production"}},"59.0.2":{"name":"eslint-plugin-jsdoc","version":"59.0.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@59.0.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4abbc760a6a59115d265d1734361df3ceaa316e0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-59.0.2.tgz","fileCount":387,"integrity":"sha512-VZuXTN0RCt70SMa0vVoyX0kq9c6j/A9c3u66U3jsSC5juabbXSILK6pfmJMSItIPnOMYQbVFSpo22Mzpsm36bw==","signatures":[{"sig":"MEUCIQCcgF+JR6+LRZ6Nlg2//GhgyiygQaL9rYtr134JPMMssQIgJGj4ONrDYT+g6B2xxVcpMgpa8O3Hy19Bj+YOppxtM8Q=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3065554},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"c8612b257c350173cd9db3e22aaf71317a7013da","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_59.0.2_1758249090184_0.30913267428240854","host":"s3://npm-registry-packages-npm-production"}},"59.1.0":{"name":"eslint-plugin-jsdoc","version":"59.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@59.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a8c1efed986bf53018c6a4d7076cbe371179dcee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-59.1.0.tgz","fileCount":392,"integrity":"sha512-sg9mzjjzfnMynyY4W8FDiQv3i8eFcKVEHDt4Xh7MLskP3QkMt2z6p7FuzSw7jJSKFues6RaK2GWvmkB1FLPxXg==","signatures":[{"sig":"MEUCIQDMs5fhmEH1OJ+vlJ0wvjKHd5FD/QInq0xQpA5bitNEWAIgQhnVxpnQxD+dDS/r7/px57/mcoEW0wr38edQzZe4MF4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3077414},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"47299db7c09eb2e448f1062d7e7c7527accb4c3d","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_59.1.0_1758330950574_0.02209690232498418","host":"s3://npm-registry-packages-npm-production"}},"60.0.0":{"name":"eslint-plugin-jsdoc","version":"60.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@60.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"8959c3fa25fecbbd56450e8a686c6315f4c6b2d2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-60.0.0.tgz","fileCount":392,"integrity":"sha512-K8D5fJOkeunX+exeOkOUx+P7ZCixdRBsM3QQ+M2aazSO+64pnjH6z03wWYGQ3XTjUxpI2QXOTSQ9E75bDKi5AA==","signatures":[{"sig":"MEQCIFzGr9VjVBrQKIbsq5s1bZVnGNVgJ8tw5YBWzwN+5LENAiAlC4/RvRjFADSiXEJWFWUaNp6hmkyfrmyFrjH1N5sZzA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3077366},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"70c1b2e5535b9ba03873075e21d604be79fd2ec2","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_60.0.0_1758366791145_0.2622283793759801","host":"s3://npm-registry-packages-npm-production"}},"60.1.0":{"name":"eslint-plugin-jsdoc","version":"60.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@60.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"4ee640a00012c4b4c43b62ae2f11bb6320f9e58d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-60.1.0.tgz","fileCount":392,"integrity":"sha512-PHxY3rvQFo5Q04k9+UwbXOMw9N7XfnGtrh4bHK8TIxgVB7GD0Xo9lHK3RkQCi8xY9Ty5O2FBMz/4xww0KthubQ==","signatures":[{"sig":"MEQCIBc0nMelgdLrndDnXdt6bvZZ97WMqwTFSWjQGBpVt0cuAiBUtDVrpBmdRrMTsH4EK5Q+zaYILGLNJtYSvbjpFWtWrQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3086996},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"751428cd1b6740e34b68c301b7ab585cf2defb86","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_60.1.0_1758459825126_0.3882088528488399","host":"s3://npm-registry-packages-npm-production"}},"60.1.1":{"name":"eslint-plugin-jsdoc","version":"60.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@60.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"3e6bf59cb094a8930c481548ba7415a52cd70aae","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-60.1.1.tgz","fileCount":392,"integrity":"sha512-eEyINuG4pZtVFplyCPTeUif/+C14zh4fmm5IrDE5YY2Zc3IYKpdGjeaWahJcxWDDwjTVjWCw1zL9XbX3Fb0Wjg==","signatures":[{"sig":"MEYCIQCaVJAMB9fqLdEFRg6EpzCv2EOLW4KGcS0y/VtZAE5+HQIhAP60+rzbgZeOtC5IhBk1VnhDyHjb1iVo1EVcGHIyMm5q","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3087097},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"0c4c654e4f958305fa54f3153c82b0548784894b","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_60.1.1_1758529606865_0.7114918471987486","host":"s3://npm-registry-packages-npm-production"}},"60.2.0":{"name":"eslint-plugin-jsdoc","version":"60.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@60.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b6ff5f16d3c1cb8470d80d2f674465edf4fc7105","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-60.2.0.tgz","fileCount":397,"integrity":"sha512-VQNycH0EbjIvgdX6llnLidv7X/yQTJMoQl/L5bXAPasAlPZQFJQi7r5OLc29ushbeQJ7+BFf8UFt9JAQNBZhXg==","signatures":[{"sig":"MEUCIQDhQHN5HAafagti/GrtlL9xXgG7JW9fKynJ2H0M+NjZ7AIgSs9bICfEAAMpBBpeOj7C9At9TQpTWWFDnfy9oVKbBag=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3145905},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"376d58349800379c62b6cf7d4dd040fee5099470","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_60.2.0_1758615227650_0.3707962701094596","host":"s3://npm-registry-packages-npm-production"}},"60.3.0":{"name":"eslint-plugin-jsdoc","version":"60.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@60.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"454d7ab06b9b2a34b8b8a047f6ebe4aefe6f9f1a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-60.3.0.tgz","fileCount":397,"integrity":"sha512-2Hu3S5kvzxvQ/tuxSbFI0yU3ZNhf9Vnd2Q4jeW+0DkCyDrt1SGCguqoa6I9/Tn8Aw6lJIodhEAuOoTGh9dmj9Q==","signatures":[{"sig":"MEUCIHkmSoH7BFCdG5IuNCn3bq4TixUd5/Z2y2SXMQnP+X2JAiEAuEFZ4HO7vetZ9U96F/2Yrw8U0XlUlS7R0/ZXk6LzyPA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3154488},"main":"./dist/index.cjs","type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"001c4a9e96f7de7d8855f3ace195396f4162e744","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline --no-audit"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.58.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"package-lock.json":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.35.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.4.0","json-schema":"^0.4.0","lint-staged":"^16.1.6","open-editor":"^5.1.0","@eslint/core":"^0.15.2","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.8","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.43.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"~45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.43.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_60.3.0_1758699712327_0.24058039171654078","host":"s3://npm-registry-packages-npm-production"}},"60.3.1":{"name":"eslint-plugin-jsdoc","version":"60.3.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@60.3.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7313e31ea9ff3c91c4b5c366fde6cee618bd33b2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-60.3.1.tgz","fileCount":397,"integrity":"sha512-AEJRW4EgERmAGnMraZXu85r5xgtI9XqKlgKfaWkkFmHbMVMii2oz1dmz1b3GISJOkhfHNi4JsVC0RA+IPTrkBg==","signatures":[{"sig":"MEUCIQCB2l8hssyCq5lfmVkMYg/kr9MT596E3U1X7hqOC/TCTQIgRVPK90t8hvUKqUkGhd2EGVg4bvQpnt7wrCJELj7B6Pw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3157409},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"74186a3bbf5e318fdba7f8f9cd87d5bc1c08a1ca","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.60.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.36.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.5.2","json-schema":"^0.4.0","lint-staged":"^16.2.0","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.44.1","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.0","jsdoc-type-pratt-parser":"^5.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.44.1","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_60.3.1_1758777531061_0.3547861063763764","host":"s3://npm-registry-packages-npm-production"}},"60.4.0":{"name":"eslint-plugin-jsdoc","version":"60.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@60.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b57650d86a6ba5b08bfc3147900a1bff8d6f67c8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-60.4.0.tgz","fileCount":397,"integrity":"sha512-W1YQm6kBjl1Hg2jccx2hmUh85N/Oqix/WGei2sLxQuYCBgFsOoftHCTt1cY6M6Oq2es3Nb6+StPm0b6e7Ez/VQ==","signatures":[{"sig":"MEUCICX41sVcKSS9N/4pLUq1977fFP53k4vFw2umJexJj8TXAiEAwhkkl6st5guAOmOQwzToTCxxK08/K5XVwvnv2TJXMf4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3162986},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"065f11ae07de8eb1b00bdea84f59a97cff85708d","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.61.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.36.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.5.2","json-schema":"^0.4.0","lint-staged":"^16.2.1","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.44.1","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.0","jsdoc-type-pratt-parser":"^5.8.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.44.1","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_60.4.0_1758881553413_0.37427006187024436","host":"s3://npm-registry-packages-npm-production"}},"60.4.1":{"name":"eslint-plugin-jsdoc","version":"60.4.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@60.4.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5ff8a9c00ca5c522cfc2d1fea12ec2359d174e96","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-60.4.1.tgz","fileCount":397,"integrity":"sha512-ThiCaCUu0UQlKcQszs7Zv/6ghBowDh5B33rNXwQK1MMPh/defS3hcuDxONUhoBGfFe/v4hpe1xbxXCFs6XvSnQ==","signatures":[{"sig":"MEUCIACQgHaDUEuVPFKZb7OXppIjc2FXPWQYWmPVLDQtV3mbAiEAnTF+BD/VerqKByqVtIE45dB3GpjwySek7JgVjF6ZYxc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3164923},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"91e261d673e4c1453dd014a9e79e2c1f8342fe3b","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.62.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.0.1","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.36.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.5.2","json-schema":"^0.4.0","lint-staged":"^16.2.1","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^3.5.1","typescript-eslint":"^8.44.1","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.0","jsdoc-type-pratt-parser":"^5.9.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.44.1","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.23.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_60.4.1_1758957378878_0.09131806929794828","host":"s3://npm-registry-packages-npm-production"}},"60.5.0":{"name":"eslint-plugin-jsdoc","version":"60.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@60.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a17d0f29ce2918c6e4ddc06b301a22a9d8ba2330","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-60.5.0.tgz","fileCount":397,"integrity":"sha512-3ivSigRDi/04GFRRYqvv4PgLD/+ZBLfHEk/0WKNpDBcmucnEAhqFjmJhLo4W4SIpXKZ/WVQNVPEsFXVPz9fRjA==","signatures":[{"sig":"MEUCIHULaDYjuwpE3jPey7PE6g74tmwjwuXvNkjcod8ody/8AiEAhZokY2V7sFndHjJkSVuSKC8HuSPTqH0HNp0iQAY6B9A=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3175086},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"f72ac1a57470527f1c4e0c7617f07f072bfbd6ab","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.62.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"9.36.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.5.2","json-schema":"^0.4.0","lint-staged":"^16.2.1","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^4.0.3","typescript-eslint":"^8.44.1","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.0","jsdoc-type-pratt-parser":"^5.9.2","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.44.1","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.24.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_60.5.0_1759032065842_0.6854541818345958","host":"s3://npm-registry-packages-npm-production"}},"60.6.0":{"name":"eslint-plugin-jsdoc","version":"60.6.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@60.6.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"dc071e5bf3fe26d87b448a459089c11de0d1b524","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-60.6.0.tgz","fileCount":402,"integrity":"sha512-1+p0342+nNIrQzsu6Tw6W89a/LKAdmpCKLx0LsLibEIx93NfgvzUbtLmw7gUoV4egRx0iNv+rM/iiG8f4WxLHA==","signatures":[{"sig":"MEQCIBRcTI6ie3oUSZg3uTIwCTd9ILpePICcNEIE2rfI9VG6AiAKaqalNDtsrXxOGEQPYuF4oWjaf2miBm0xeRASh9Vznw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3195810},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"7a6b7db123672d7c65004e5b8c8f9d3cab16bd64","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.64.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.3","eslint":"9.36.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.2","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.6.0","json-schema":"^0.4.0","lint-staged":"^16.2.3","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^4.0.3","typescript-eslint":"^8.45.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.0","jsdoc-type-pratt-parser":"^6.0.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.45.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.24.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_60.6.0_1759255343923_0.6278057696339179","host":"s3://npm-registry-packages-npm-production"}},"60.7.0":{"name":"eslint-plugin-jsdoc","version":"60.7.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@60.7.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"bbf9a8d15dd14d49ef8a143b9228c5f331898336","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-60.7.0.tgz","fileCount":402,"integrity":"sha512-y1AYoLoWNIOzjctcem9MjIZb9XDoTBI6D9lyaWT0W8/t6jpNvTuMQJljRzaQyjTDDFbONAEcuufdu0DXtCUP8A==","signatures":[{"sig":"MEUCIGN/dOh5NazS9LJsskH96s/jlWm/RGB+4bVoz9tUe8J3AiEAuoySiy/OjNQ4kvsLcri1qO5cOikInr5LOWVTR8+EkCs=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3199111},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"9e92718a16a1d319c4a0e5eb9c241eadf1af89e6","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.65.2","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.3","eslint":"9.36.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.3","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.6.1","json-schema":"^0.4.0","lint-staged":"^16.2.3","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^4.0.3","typescript-eslint":"^8.45.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.0","jsdoc-type-pratt-parser":"^6.1.2","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.45.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.24.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_60.7.0_1759316678695_0.1922186200126148","host":"s3://npm-registry-packages-npm-production"}},"60.7.1":{"name":"eslint-plugin-jsdoc","version":"60.7.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@60.7.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b7f819648539d0b817926212e88f084b78ee86b5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-60.7.1.tgz","fileCount":402,"integrity":"sha512-JCLls7B3Tlb2YS5M6+aZqxb0gnEkr+H9/qMm5HSzynlvq3wqbxS7+4RS954EGuLrITfbaB6nmf3FyZAhOeCUEg==","signatures":[{"sig":"MEUCIQCYszGjBC1nNNP1N4lZGZFI1X26yMv2WNeGr5D8gBQoZgIgRKV2FnE1z1DfkM1zp1VUy3G2i2N746PjnwhXL95KnnM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3200389},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"622b17eb42d8b4e4f7898ead40ceac19b2e52a0a","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.65.2","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.3","eslint":"9.36.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.3","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.6.1","json-schema":"^0.4.0","lint-staged":"^16.2.3","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^4.0.3","typescript-eslint":"^8.45.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.0","jsdoc-type-pratt-parser":"^6.1.2","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.45.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.24.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_60.7.1_1759388530181_0.5549598762265759","host":"s3://npm-registry-packages-npm-production"}},"60.8.0":{"name":"eslint-plugin-jsdoc","version":"60.8.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@60.8.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c597d8ebd514cf88304ff09a82cfa00bad715682","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-60.8.0.tgz","fileCount":402,"integrity":"sha512-rhN7JTbIaRHcmCdQrzDI/5750e6pIi1TKRG7VD2bzaa8K5yJqwcf8lAAKcdWiblQ+El9IEPCw5j34xOg59+I1g==","signatures":[{"sig":"MEUCID1Ve6CEDwgU3bCgNHEWpCWbMeRF4/OmVy47YeZ7ucx/AiEAxMVKeTjK/XwOTcDENzL7fOV2ZuJDgf80Irmb1JXy2k8=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3201360},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"e67e474bc5e1ad7ed6e0f70a40b3ea6bea10d17b","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.19.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.67.2","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","eslint":"9.37.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.3","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.6.2","json-schema":"^0.4.0","lint-staged":"^16.2.3","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^4.0.3","typescript-eslint":"^8.45.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.3.2","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.45.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.24.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_60.8.0_1759526190557_0.8059330313595388","host":"s3://npm-registry-packages-npm-production"}},"60.8.1":{"name":"eslint-plugin-jsdoc","version":"60.8.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@60.8.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2c6672a187450873fe3104a0abfb0e0ef1327caf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-60.8.1.tgz","fileCount":402,"integrity":"sha512-LDcQpH4cYzU+EEri907GSzr16U2UOBiQcm95dK8ka5SnTwIT3Y7bC0iiY/MKyOotTRXaw4MY3Ec9BgHIfDBvHQ==","signatures":[{"sig":"MEQCIHGwhKUqSDrTWZh/U+lSLGaV8CMUhaewFdNI85oohiR4AiBiCKQHhAiuLpvnEF+XYC6EZP7VSCYah48QQv7XZUJ9VA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3208845},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"6efd9e97a8b91525e0c6919cd7e50e7476b854bc","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.20.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.68.1","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","eslint":"9.37.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.3","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.6.2","json-schema":"^0.4.0","lint-staged":"^16.2.3","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.45.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.3.3","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.45.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.24.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_60.8.1_1759644269815_0.3975927121672691","host":"s3://npm-registry-packages-npm-production"}},"60.8.2":{"name":"eslint-plugin-jsdoc","version":"60.8.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@60.8.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ca2c4f736c354283c8e041c284d246ec85e9ce9e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-60.8.2.tgz","fileCount":402,"integrity":"sha512-ebEYZiAVL/ejjNQKO7Q1+FumDjGfs0T3+arQ3U54xomFiySUjKnZOzVZQAWhu+mlZXB4oeoizI4wRH+3i+knDg==","signatures":[{"sig":"MEQCID/p3h3ZZOxI1XNLP/bFVjTWNRzOtysnTvtlBu4BV8gSAiBCNYLhXXWJ8myzNZ2NU8wARcLBXzmLxdBLqq76i9x4gA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3211065},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"a5a0a3cb70bd6c1174482884318a02ce4e522813","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.20.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.69.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","eslint":"9.37.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.3","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.6.2","json-schema":"^0.4.0","lint-staged":"^16.2.3","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.45.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.4.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.45.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.24.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_60.8.2_1759708958613_0.5547638549860814","host":"s3://npm-registry-packages-npm-production"}},"60.8.3":{"name":"eslint-plugin-jsdoc","version":"60.8.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@60.8.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7a500481b07869562cfe14f7cf5e20bbc861d348","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-60.8.3.tgz","fileCount":402,"integrity":"sha512-4191bTMvnd5WUtopCdzNhQchvv/MxtPD86ZGl3vem8Ibm22xJhKuIyClmgSxw+YERtorVc/NhG+bGjfFVa6+VQ==","signatures":[{"sig":"MEUCIBsZH5F962ngVniQwA/Z811rvaTTWC5Suwc+CLe6Wi0MAiEA6g1c167iZ/ulLwN2A789opyGWgf7A+ku0zzeBz6BnhI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3211887},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"680cf1d1c740291ff540d2bf22329f7098b3d863","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.20.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.2","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.71.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","eslint":"9.37.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.3","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.7.0","json-schema":"^0.4.0","lint-staged":"^16.2.3","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.6.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.46.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.24.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_60.8.3_1759774371107_0.8081607185552624","host":"s3://npm-registry-packages-npm-production"}},"61.0.0":{"name":"eslint-plugin-jsdoc","version":"61.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"864066c7ca64969b2ace6b792fc190defa8d3a83","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.0.0.tgz","fileCount":402,"integrity":"sha512-YxvOY3A9H8usnOfOEH82y71yHR7zVNWZJpQbjkC+rWqrADQtM+Gza3+db/j9euNNWCNKnN+/gBrowg16n9lwgg==","signatures":[{"sig":"MEUCIDwaFWyruWP+T1DxnDBJxppXxRXqTP4nwc63iAklMmK4AiEA3zrB6fg9JBMxdU0m64Mv10NSmI5tdLIV5dRix06TbWU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3276961},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"0837647b0ac27cd8535305526c5824d858870fc5","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.20.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.75.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","eslint":"9.37.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.3","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.7.0","json-schema":"^0.4.0","lint-staged":"^16.2.3","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.9.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.46.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.24.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.0.0_1759886169985_0.9977219837796538","host":"s3://npm-registry-packages-npm-production"}},"61.0.1":{"name":"eslint-plugin-jsdoc","version":"61.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"93b2f9960489f76a47ee20f1d44f719843caf145","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.0.1.tgz","fileCount":402,"integrity":"sha512-J4spzu8Y43P+QD/V2HOsg+YbJmVcP6+G33fbT4pBRA5UAEuL/fU5AI75GuCCzgw25OAlfXq7z3s9o/nnvEmGVQ==","signatures":[{"sig":"MEUCIBrXmtf0jMsrFMze0UA/Pl7OVgRjFxqCbcQmBvIh1UINAiEAymkAbsoFTW0Zic/Ot2HFkHdXWySv+CNfqwy0sqQMnnA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3277237},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"38770c42d0638de4367640be9c9680172ff90f46","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.20.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.75.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","eslint":"9.37.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.3","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.7.0","json-schema":"^0.4.0","lint-staged":"^16.2.3","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.9.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.46.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.24.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.0.1_1759941777443_0.22518902834249155","host":"s3://npm-registry-packages-npm-production"}},"61.1.0":{"name":"eslint-plugin-jsdoc","version":"61.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f9ea2cd14fb2e3a866d279cb52addbb5fee7650b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.1.0.tgz","fileCount":422,"integrity":"sha512-X6cGyMgwPh15CJ6Vv+yjEUam1ilRwalmPNfTNvd0/0JO8+ZbE1ST1xkKQtCUqF2sofTC3P/u1g0VHgygbTUjrw==","signatures":[{"sig":"MEQCIDqFGHefcH2fwmNQVszYhGVXLSS0NUk42UCBYO1pSgtxAiBwzJJmaYgHfmxEjz495k4TTvW1oBt/4kyRr7ysxn2Xpg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3362835},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"64082aa810e3069a142b11c16815dc5b59acda7f","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.20.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","eslint":"9.37.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.3","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.7.0","json-schema":"^0.4.0","lint-staged":"^16.2.3","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.10.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.46.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.24.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.1.0_1760054315943_0.6107626344648724","host":"s3://npm-registry-packages-npm-production"}},"61.1.1":{"name":"eslint-plugin-jsdoc","version":"61.1.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.1.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"341b67039b3e814f2df08a454569dd1e18d23bb0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.1.1.tgz","fileCount":422,"integrity":"sha512-3kp6+C0KVPY7crmB/ymV28bPvam1x7+yXgCzEi91WGRWxdEdDhTa5yR79tpgbMFi5ns5TEOS27aTluS/2jMz+g==","signatures":[{"sig":"MEYCIQDZB4cf97fgHLPxYtvPqLY2fmE5OHgxrXZ9FeoAfh6EhwIhAKvX/O5z9f6ibUgvf0S/hJzobluksNlRd/Db7eVX2Tzz","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3363048},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"75c81271e203efa25864f8faf880996d22a04cbd","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.20.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","eslint":"9.37.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.3","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.7.0","json-schema":"^0.4.0","lint-staged":"^16.2.3","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.10.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.46.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.24.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.1.1_1760278443020_0.9170145365091489","host":"s3://npm-registry-packages-npm-production"}},"61.1.2":{"name":"eslint-plugin-jsdoc","version":"61.1.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.1.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5eb92e630038fc4e7624abc7432000d6fc4ce0e5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.1.2.tgz","fileCount":422,"integrity":"sha512-gbb4VVKRsMJZ+YqJXte6RQ/pDTIQcMauyQb03n5GTfWG+gAb6T3FaOLeoSHAIrBT90ykLkxzRh3z95DoIrUk3A==","signatures":[{"sig":"MEUCIHw32bTobYmxN76P+Bmg2caBZNIjY1B5nHV+nJ9ylvqhAiEA9kqLN3FnqCcr/aH9vgQbxnMSos6yl8V87GSlT1r23Eo=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3363688},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"335450af8545bf936f44d52685bc802c41d85a93","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.20.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","eslint":"9.37.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.3","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.7.0","json-schema":"^0.4.0","lint-staged":"^16.2.3","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.10.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.46.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.24.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.1.2_1760368469275_0.007150172207514682","host":"s3://npm-registry-packages-npm-production"}},"61.1.3":{"name":"eslint-plugin-jsdoc","version":"61.1.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.1.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a307250ca177a1c7c2242a6ec5ca70d2bdcbf162","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.1.3.tgz","fileCount":422,"integrity":"sha512-jTUpZv8KtzzDIWRINOryV2mcTt+dKI7U7koDqo2OeX/Cpf4CpFeo3iJ9rpzfKa8lciK9bb/Th387rJnqSouDNw==","signatures":[{"sig":"MEQCIApRgqjTuRf2cxioBzBd7jq/uTlCff8IZuK8+CDWs53lAiB08VXerWPEuFm5ODiRrknV/94DvRiQ3QdBQ3dEJ1otbw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3364890},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"4349209a7d814d6832155189e3e0888de2391efb","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.20.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","eslint":"9.37.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.3","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.7.0","json-schema":"^0.4.0","lint-staged":"^16.2.3","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.0","@types/json-schema":"^7.0.15","to-valid-identifier":"^0.1.1","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.10.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.46.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.24.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.1.3_1760489066191_0.7260234141883095","host":"s3://npm-registry-packages-npm-production"}},"61.1.4":{"name":"eslint-plugin-jsdoc","version":"61.1.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.1.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"477002a98a4b79269bee1dfde046dac58f8cdee6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.1.4.tgz","fileCount":422,"integrity":"sha512-DmpKw8kHgNQlMS8m+XYtlGcsw4IzrHtupEObPZAww0OrXb7IekbKR7vjYu8jv5aOiFRhGdnIfEZRuoAf4ELe5w==","signatures":[{"sig":"MEUCIQCwf/OR543VsRFqtPGKzyFdeH7IgkL8Rnx69zBCqdlqMAIgHcuVajPhXaOlzBQGYxQ2MPWKIvLmdq4RmxRmayDQfkI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3364890},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"89d37d00f2875be075997346efc9e2fed32c6523","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.20.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^1.0.5","to-valid-identifier":"^0.1.1","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","eslint":"9.37.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.3","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.7.0","json-schema":"^0.4.0","lint-staged":"^16.2.3","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^24.2.9","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^12.0.2","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.10.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^11.0.6","@typescript-eslint/types":"^8.46.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.24.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.1.4_1760500747107_0.10859497424616538","host":"s3://npm-registry-packages-npm-production"}},"61.1.5":{"name":"eslint-plugin-jsdoc","version":"61.1.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.1.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a846ee9424d6667974b4446755c8c85f22ceaa32","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.1.5.tgz","fileCount":422,"integrity":"sha512-UZ+7M6WVFBVRTxHZURxYP7M++M+ZEjxPGB/CScdrKAhzpf/LWS1HaNRHMOkISkOTTggMhwRwgKmVlTLQryXV2Q==","signatures":[{"sig":"MEUCIQDta8YcISIA0MNC/hoV3m34erwvLEMMz9h4PQsqit/YWAIgBCxCdF4kBlvLnwUwpupdBDk34BVid4r8Pyx0nielQc4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3365736},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"7a45e99db31dd6fe9eaf539d421b1b2b1e617661","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.20.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","eslint":"9.38.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","typescript":"5.9.3","@babel/core":"^7.28.4","@types/chai":"^5.2.2","@types/node":"^24.8.1","json-schema":"^0.4.0","lint-staged":"^16.2.4","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.1","@babel/preset-env":"^7.28.3","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.1","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.4","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.1","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.11.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.0","@typescript-eslint/types":"^8.46.1","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.24.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.1.5_1760955422225_0.9651978748356234","host":"s3://npm-registry-packages-npm-production"}},"61.1.6":{"name":"eslint-plugin-jsdoc","version":"61.1.6","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.1.6","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ebd7ca45965aa6628facf118c162e893054adfb2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.1.6.tgz","fileCount":422,"integrity":"sha512-aEPIw2Vd7Em0U3zbWOV+S0Cwtc5bOl2ZnDCWJjHBn6+HVJ+8NlJO6a3Uej/C12DgL2EXXD1491iD2mGB63znNA==","signatures":[{"sig":"MEYCIQDvCo0PuDeUuQ5ZSNhGG04Y+vuiWlVno+33d4x2WdoSuwIhAL1LM2/Ia6jtO5v9GTUHSyVKqYt1A9ct+PQ2CjsDzUFi","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3368413},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"6c13a329914b375b0851a820a8ab6465fc486cc1","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.20.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","eslint":"9.38.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","playwright":"^1.56.1","typescript":"5.9.3","@babel/core":"^7.28.5","@types/chai":"^5.2.3","@types/node":"^24.9.1","json-schema":"^0.4.0","lint-staged":"^16.2.6","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.1","@babel/preset-env":"^7.28.5","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.2","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.5","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.1","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.11.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.0","@typescript-eslint/types":"^8.46.2","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.25.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.1.6_1761237491981_0.7615925233276852","host":"s3://npm-registry-packages-npm-production"}},"61.1.7":{"name":"eslint-plugin-jsdoc","version":"61.1.7","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.1.7","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"8e2dc304b0939e76ecff6b0cdcbb50050cdd9067","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.1.7.tgz","fileCount":422,"integrity":"sha512-AqNPHbIVkO39jPR6HOeA2v/DQsNxjtx4d+KaimrbxFDfcXTrEcq85orGIXMthAvtcw93hJGcNl77q2fxbp7Org==","signatures":[{"sig":"MEUCIBGfajHIqyLcpHKCLspPceWMgElBDc2mxf6RvVKYZGH6AiEA7/bPRFxMrxI2yWZb5pxw6zSyMQvRFkm7d51Zjc4pkyQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3368796},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"0c4e5b6ef2a2eeaa2fd5028f1b4642d534e7dbe2","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.20.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","sinon":"^21.0.0","eslint":"9.38.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","playwright":"^1.56.1","typescript":"5.9.3","@babel/core":"^7.28.5","@types/chai":"^5.2.3","@types/node":"^24.9.1","json-schema":"^0.4.0","lint-staged":"^16.2.6","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.1","@babel/preset-env":"^7.28.5","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.2","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.5","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.1","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.11.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.0","@typescript-eslint/types":"^8.46.2","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.25.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.1.7_1761238958200_0.5187153829393771","host":"s3://npm-registry-packages-npm-production"}},"61.1.8":{"name":"eslint-plugin-jsdoc","version":"61.1.8","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.1.8","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"cdc80b54db865fba1c1f103ceadfa1b4c7850ff4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.1.8.tgz","fileCount":422,"integrity":"sha512-2496IdYqyH0Anbho+MuL8tKJLT3JCNlJd9Apqpo5vvTwT6wlC5yBVv7nM0PFBGDyl1gxx4QfrF8SApVkCHGzzA==","signatures":[{"sig":"MEQCIH73zyVJa7dwUf+DK1OcQHSuNm6xthflmBoK0d/IOXm4AiBKDzH0TjW/r3NTWgvadIbRKBtYu7FDUsohaG/A2x+1yg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3369048},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"f938fdcc134edb6531a8b77b3b1238702d9d42d1","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.20.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","sinon":"^21.0.0","eslint":"9.38.0","rimraf":"^6.0.1","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","playwright":"^1.56.1","typescript":"5.9.3","@babel/core":"^7.28.5","@types/chai":"^5.2.3","@types/node":"^24.9.1","json-schema":"^0.4.0","lint-staged":"^16.2.6","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.1","@babel/preset-env":"^7.28.5","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.2","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.5","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.1","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.11.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.0","@typescript-eslint/types":"^8.46.2","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.25.0","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.1.8_1761339665423_0.23086488784041714","host":"s3://npm-registry-packages-npm-production"}},"61.1.9":{"name":"eslint-plugin-jsdoc","version":"61.1.9","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.1.9","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"88ab524ce877a3492227ac1736553f1a668035db","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.1.9.tgz","fileCount":424,"integrity":"sha512-X2AzSGbq1CzBRgKcVAu2qzOV9ogqygkUDk5AX6eNK5G+kY3I5Op5E5b99fE+FN0/bGnk2KGcsMIG6ZLF+di69A==","signatures":[{"sig":"MEQCIGeEbaJyxWAeEygCn6nW/eqXdnp6mUOXI80XPy3g2inmAiAK4tNVjO2E1afid0LW342KG6hOJxIkK9W8Icec/fWOsQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3375472},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"}},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"ca57a1ffdeb8c48af0fb8be245a7ef2466af9d94","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.20.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.0.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","sinon":"^21.0.0","eslint":"9.38.0","rimraf":"^6.0.1","rollup":"^4.52.5","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","playwright":"^1.56.1","typescript":"5.9.3","@babel/core":"^7.28.5","@types/chai":"^5.2.3","@types/node":"^24.9.1","json-schema":"^0.4.0","lint-staged":"^16.2.6","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.1","@babel/preset-env":"^7.28.5","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.2","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.5","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.1","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.11.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.0","@typescript-eslint/types":"^8.46.2","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.25.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.1.9_1761493621779_0.05258857986133503","host":"s3://npm-registry-packages-npm-production"}},"61.1.10":{"name":"eslint-plugin-jsdoc","version":"61.1.10","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.1.10","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9927e91aff52c0ce4c7f96f5789fd2d8eb3e5d60","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.1.10.tgz","fileCount":424,"integrity":"sha512-ACsczYGax1Iu9zRBiG176I66cgL2nRt1TbMgE9TAzxoGKfBD9PjhA//K/JKk3uBk25RsYHj3TqMaAiy913IpEA==","signatures":[{"sig":"MEYCIQC7t5So7ExqBuRBnWPF3ilEA9n9le/SzSqHk/y3yDqgpgIhAKKH3rQaTmJBSZskq5N9Id2WwbdC1DL/BAN/ssjw+0Su","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3374835},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"c9a22b6287d7da56043e52b3d49ad36b6e7421db","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.20.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","sinon":"^21.0.0","eslint":"9.38.0","rimraf":"^6.0.1","rollup":"^4.52.5","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","playwright":"^1.56.1","typescript":"5.9.3","@babel/core":"^7.28.5","@types/chai":"^5.2.3","@types/node":"^24.9.1","json-schema":"^0.4.0","lint-staged":"^16.2.6","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.1.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.1","@babel/preset-env":"^7.28.5","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.2","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.5","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.1","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.11.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.0","@typescript-eslint/types":"^8.46.2","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.25.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.1.10_1761670819149_0.3854263156247826","host":"s3://npm-registry-packages-npm-production"}},"61.1.11":{"name":"eslint-plugin-jsdoc","version":"61.1.11","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.1.11","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f5d044a48761753f706ba12e810a76bcb66892c6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.1.11.tgz","fileCount":424,"integrity":"sha512-c+NQQOFd+ZTjFt0pfFMB8OTumExg0vf8mlJsOtLj6qTDGewtLh7bhwoDgBg6rIiTziYc8N4u4dYmSdAIn0yTEQ==","signatures":[{"sig":"MEUCIHhzpGgm5vcwgp1lBtV4zAq4BeMs0Bx66ury+t0brUr4AiEAgCqniOq23qL0UQ0OC570V6d1xH1vk+duJUKyiXAJX00=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3376174},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"4f2ec35a391c6daf2570f927d24bb893ab83baa7","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.3","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.20.0","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","sinon":"^21.0.0","eslint":"9.38.0","rimraf":"^6.0.1","rollup":"^4.52.5","gitdown":"^4.1.1","globals":"^16.4.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","playwright":"^1.56.1","typescript":"5.9.3","@babel/core":"^7.28.5","@types/chai":"^5.2.3","@types/node":"^24.9.1","json-schema":"^0.4.0","lint-staged":"^16.2.6","open-editor":"^5.1.0","@eslint/core":"^0.16.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.1.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.1","@babel/preset-env":"^7.28.5","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.2","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.5","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.1","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.11.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.0","@typescript-eslint/types":"^8.46.2","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.25.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.1.11_1761761173618_0.49733932360256583","host":"s3://npm-registry-packages-npm-production"}},"61.1.12":{"name":"eslint-plugin-jsdoc","version":"61.1.12","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.1.12","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"afef5a5f3d27af0d0bb9c01e3aab8042e8c4f0dd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.1.12.tgz","fileCount":424,"integrity":"sha512-CGJTnltz7ovwOW33xYhvA4fMuriPZpR5OnJf09SV28iU2IUpJwMd6P7zvUK8Sl56u5YzO+1F9m46wpSs2dufEw==","signatures":[{"sig":"MEUCIQD8xVEm1ton8z3UeOJrJpwUUfhqoIuAUlnlX3FcAD8FnQIgKcdB6VVGa+tYzFS1PvCnJGh8Khv++eQgtGNudDdiDjE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3393091},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"2653fe16f054c40264947858d85b10a6d13a962f","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.21.1","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","sinon":"^21.0.0","eslint":"9.39.0","rimraf":"^6.1.0","rollup":"^4.52.5","gitdown":"^4.1.1","globals":"^16.5.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","playwright":"^1.56.1","typescript":"5.9.3","@babel/core":"^7.28.5","@types/chai":"^5.2.3","@types/node":"^24.10.0","json-schema":"^0.4.0","lint-staged":"^16.2.6","open-editor":"^5.1.0","@eslint/core":"^0.17.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.1.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.1","@babel/preset-env":"^7.28.5","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.2","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.5","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.1","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.11.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.1","@typescript-eslint/types":"^8.46.2","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.25.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.1.12_1762178808377_0.8032384066258731","host":"s3://npm-registry-packages-npm-production"}},"61.2.0":{"name":"eslint-plugin-jsdoc","version":"61.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7eb0674b0385844ead15d0cfe7f83046c47c30ed","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.2.0.tgz","fileCount":424,"integrity":"sha512-Pky3YKWPOcDGi4TzBZlp/ENd+z443uVgIyZxzA9wVbfECjG1ptf7sB8gzSX4Z8dAtoD8d3d68jsLuAfxr+8qyQ==","signatures":[{"sig":"MEQCICPeSIs9p/yGqvo8k4lkwTIfZ5QEm0i7OIOvhyDQmiAMAiAZPj17nIC8f87PxN3XXIF0kJFYirLTotxaT+XBrX+PNw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3396263},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"85a1ea128e443d05a82549f7b4738807d360e7b0","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.21.1","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","sinon":"^21.0.0","eslint":"9.39.0","rimraf":"^6.1.0","rollup":"^4.52.5","gitdown":"^4.1.1","globals":"^16.5.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","playwright":"^1.56.1","typescript":"5.9.3","@babel/core":"^7.28.5","@types/chai":"^5.2.3","@types/node":"^24.10.0","json-schema":"^0.4.0","lint-staged":"^16.2.6","open-editor":"^5.1.0","@eslint/core":"^0.17.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.1.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.1","@babel/preset-env":"^7.28.5","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.2","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.5","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.1","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.11.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.1","@typescript-eslint/types":"^8.46.2","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.25.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.2.0_1762944374260_0.929660415147239","host":"s3://npm-registry-packages-npm-production"}},"61.2.1":{"name":"eslint-plugin-jsdoc","version":"61.2.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.2.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"9a7afd946a0a5c4cff6fa262fc4ddcc184d11bef","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.2.1.tgz","fileCount":424,"integrity":"sha512-Htacti3dbkNm4rlp/Bk9lqhv+gi6US9jyN22yaJ42G6wbteiTbNLChQwi25jr/BN+NOzDWhZHvCDdrhX0F8dXQ==","signatures":[{"sig":"MEQCICPYZ7H2p0XavbAPBdf1FCgY0gdlWtUxjY4eNDN5JpZZAiBBHDuScxSwfbJ3HLH886R2Yr/FJTwZ5igFb/ClZRbXmQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3398563},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"7d032f260d6c7ed957771af2a9101c8a35ba0440","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.21.1","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","sinon":"^21.0.0","eslint":"9.39.0","rimraf":"^6.1.0","rollup":"^4.52.5","gitdown":"^4.1.1","globals":"^16.5.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","playwright":"^1.56.1","typescript":"5.9.3","@babel/core":"^7.28.5","@types/chai":"^5.2.3","@types/node":"^24.10.0","json-schema":"^0.4.0","lint-staged":"^16.2.6","open-editor":"^5.1.0","@eslint/core":"^0.17.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.1.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.1","@babel/preset-env":"^7.28.5","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.2","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.5","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.1","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.11.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.1","@typescript-eslint/types":"^8.46.2","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.25.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.2.1_1763036945682_0.7324872675708298","host":"s3://npm-registry-packages-npm-production"}},"61.3.0":{"name":"eslint-plugin-jsdoc","version":"61.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"722ba9e53d7caa3461b06049c5d4e126c3dc671f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.3.0.tgz","fileCount":424,"integrity":"sha512-E4m/5J5lrasd63Z74q4CCZ4PFnywnnrcvA7zZ98802NPhrZKKTp5NH+XAT+afcjXp2ps2/OQF5gPSWCT2XFCJg==","signatures":[{"sig":"MEUCIQDony40rA78fyOYBpzP0Db7kZvBwbposakKHuotloO7BgIgZZnL/nsOhV0QUBs6ZW9GudXJBL3+Ry8yOxb4OJAVH4E=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3409707},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"03adf63ba11b0be6ba67e096bc246af97c378e58","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.21.1","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","sinon":"^21.0.0","eslint":"9.39.0","rimraf":"^6.1.0","rollup":"^4.52.5","gitdown":"^4.1.1","globals":"^16.5.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","playwright":"^1.56.1","typescript":"5.9.3","@babel/core":"^7.28.5","@types/chai":"^5.2.3","@types/node":"^24.10.0","json-schema":"^0.4.0","lint-staged":"^16.2.6","open-editor":"^5.1.0","@eslint/core":"^0.17.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.1.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.1","@babel/preset-env":"^7.28.5","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.2","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.5","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.1","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.11.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.1","@typescript-eslint/types":"^8.46.2","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.25.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.3.0_1763555847747_0.06473990684762376","host":"s3://npm-registry-packages-npm-production"}},"61.4.0":{"name":"eslint-plugin-jsdoc","version":"61.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"f5344eed7ff8844231f717f0eb6e6881e5bfee5b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.4.0.tgz","fileCount":429,"integrity":"sha512-Gbe6Z1QENj6jr5PVnEkWwm0PcVCGFwl9ju+e0BxFuRHHv6c8q2L+PRfCwDBO+veEEEGi5XO52nmoIRvhxb1A3Q==","signatures":[{"sig":"MEUCIAzpOeGYvWxcMJ5vDozGYk9UFDFvnjQGXtohf1MMNlNNAiEAkggc/YuKa7FM+1ksiEkAR1bRdqAVO6M8md7NyAeNhJ0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3442704},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"99c7fbd09e7ca17037c745216478ef368e6c51ac","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.21.1","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","sinon":"^21.0.0","eslint":"9.39.0","rimraf":"^6.1.0","rollup":"^4.52.5","gitdown":"^4.1.1","globals":"^16.5.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","playwright":"^1.56.1","typescript":"5.9.3","@babel/core":"^7.28.5","@types/chai":"^5.2.3","@types/node":"^24.10.0","json-schema":"^0.4.0","lint-staged":"^16.2.6","open-editor":"^5.1.0","@eslint/core":"^0.17.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.1.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.1","@babel/preset-env":"^7.28.5","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.2","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.5","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.1","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.11.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.1","@typescript-eslint/types":"^8.46.2","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.25.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.4.0_1763668575859_0.3224565046103005","host":"s3://npm-registry-packages-npm-production"}},"61.4.1":{"name":"eslint-plugin-jsdoc","version":"61.4.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.4.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"3a0b2f72ee67083677dce1a248217336786d1da4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.4.1.tgz","fileCount":429,"integrity":"sha512-3c1QW/bV25sJ1MsIvsvW+EtLtN6yZMduw7LVQNVt72y2/5BbV5Pg5b//TE5T48LRUxoEQGaZJejCmcj3wCxBzw==","signatures":[{"sig":"MEUCIDs6BvhOoebqNEnZTaZqQ3zLJH1FZj1NoS9IU/IyhmVuAiEAqAA5BbRnb3CLEkjNNiGPLI3Gh6xDh2U6wUF+mY4SKfU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3464329},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"f776d63e05cb38a82577157e841406a6cc90dea6","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.21.1","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","sinon":"^21.0.0","eslint":"9.39.0","rimraf":"^6.1.0","rollup":"^4.52.5","gitdown":"^4.1.1","globals":"^16.5.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","playwright":"^1.56.1","typescript":"5.9.3","@babel/core":"^7.28.5","@types/chai":"^5.2.3","@types/node":"^24.10.0","json-schema":"^0.4.0","lint-staged":"^16.2.6","open-editor":"^5.1.0","@eslint/core":"^0.17.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.1.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.1","@babel/preset-env":"^7.28.5","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.2","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.5","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.1","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.11.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.1","@typescript-eslint/types":"^8.46.2","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.25.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.4.1_1763871661112_0.018976455922740332","host":"s3://npm-registry-packages-npm-production"}},"61.4.2":{"name":"eslint-plugin-jsdoc","version":"61.4.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.4.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"37d67bbfdb372dfcea72236942b963b0283206aa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.4.2.tgz","fileCount":429,"integrity":"sha512-WzZNvefoUaG/JWikVFhNLYqE2BEd6LQD2ZyfJOe1Ld3Cir05csDMMf0AihGwrSbB/e7fHRSfQOZ4F/hik9fQww==","signatures":[{"sig":"MEUCIAzUt79N+42As+NaX/G97PlLr+HPWe+KOZ/Dv7EU5UCXAiEAi+UFrMLfF6LjYhFr+Q2wzWs6ZzsgWl/ZhTfdLcEQb4M=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3464332},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"44b263120a5837061765a9cdddc0b658c969dc85","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.21.1","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","sinon":"^21.0.0","eslint":"9.39.0","rimraf":"^6.1.0","rollup":"^4.52.5","gitdown":"^4.1.1","globals":"^16.5.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","playwright":"^1.56.1","typescript":"5.9.3","@babel/core":"^7.28.5","@types/chai":"^5.2.3","@types/node":"^24.10.0","json-schema":"^0.4.0","lint-staged":"^16.2.6","open-editor":"^5.1.0","@eslint/core":"^0.17.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.1.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.1","@babel/preset-env":"^7.28.5","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.2","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.5","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.1","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.11.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.1","@typescript-eslint/types":"^8.46.2","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.25.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.4.2_1765036233052_0.9260152464954206","host":"s3://npm-registry-packages-npm-production"}},"61.5.0":{"name":"eslint-plugin-jsdoc","version":"61.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7c07b46db385e0ffce1b827a9abb1cc6bdc78bd3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.5.0.tgz","fileCount":429,"integrity":"sha512-PR81eOGq4S7diVnV9xzFSBE4CDENRQGP0Lckkek8AdHtbj+6Bm0cItwlFnxsLFriJHspiE3mpu8U20eODyToIg==","signatures":[{"sig":"MEYCIQC5+PZiyqpSP0KyptAT0osFRwDScXrsHYpgJor7X2B2OAIhAPg89vN9XcBReW1JUTH+LOpRupfTyoC1DTQFrPn4a5yH","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":3465670},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"3cd7cbddecf01b59c07c8fba850da24228cb50ef","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"gajus@gajus.com"},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"10.9.4","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"22.21.1","dependencies":{"debug":"^4.4.3","espree":"^10.4.0","semver":"^7.7.3","esquery":"^1.6.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.76.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.0","glob":"^11.0.3","husky":"^9.1.7","mocha":"^11.7.4","sinon":"^21.0.0","eslint":"9.39.0","rimraf":"^6.1.0","rollup":"^4.52.5","gitdown":"^4.1.1","globals":"^16.5.0","replace":"^1.2.2","camelcase":"^8.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","playwright":"^1.56.1","typescript":"5.9.3","@babel/core":"^7.28.5","@types/chai":"^5.2.3","@types/node":"^24.10.0","json-schema":"^0.4.0","lint-staged":"^16.2.6","open-editor":"^5.1.0","@eslint/core":"^0.17.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.1.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.1","@babel/preset-env":"^7.28.5","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.46.2","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.5","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.1","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^45.0.1","jsdoc-type-pratt-parser":"^6.11.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.1","@typescript-eslint/types":"^8.46.2","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.25.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.5.0_1765120639152_0.5899853688215175","host":"s3://npm-registry-packages-npm-production"}},"61.7.1":{"name":"eslint-plugin-jsdoc","version":"61.7.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@61.7.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7bb935a10bfe975c3a05237e2c867b226265020d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-61.7.1.tgz","fileCount":429,"integrity":"sha512-36DpldF95MlTX//n3/naULFVt8d1cV4jmSkx7ZKrE9ikkKHAgMLesuWp1SmwpVwAs5ndIM6abKd6PeOYZUgdWg==","signatures":[{"sig":"MEQCIGz0gm1XOBz0Pv8YMT9x5bfd77Jxp89tIgHwAabX4HiiAiAzU35p34LCAOGywJjz83R/Jh8pslApxtIaOqj9bew4jQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@61.7.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3469354},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":">=20.11.0"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"fe29ef98bcf29b1503fa273554c8fb3754afd390","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.12.0","dependencies":{"debug":"^4.4.3","espree":"^11.0.0","semver":"^7.7.3","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.78.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.0","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"9.39.2","rimraf":"^6.1.2","rollup":"^4.55.1","gitdown":"^4.1.1","globals":"^17.0.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","playwright":"^1.57.0","typescript":"5.9.3","@babel/core":"^7.28.5","@types/chai":"^5.2.3","@types/node":"^25.0.3","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.2","@babel/preset-env":"^7.28.5","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.52.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.5","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.3","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.3.7","jsdoc-type-pratt-parser":"^7.0.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.2","@typescript-eslint/types":"^8.52.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_61.7.1_1767881433905_0.9630898857353103","host":"s3://npm-registry-packages-npm-production"}},"62.0.0":{"name":"eslint-plugin-jsdoc","version":"62.0.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.0.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"301c8fb338df81cd84628139a4f0e50e9635dc49","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.0.0.tgz","fileCount":429,"integrity":"sha512-sNdIGLAvjFK3pB0SYFW74iXODZ4ifF8Ax13Wgq8jKepKnrCFzGo7+jRZfLf70h81SD7lPYnTE7MR2nhYSvaLTA==","signatures":[{"sig":"MEYCIQCqVn5P2QOcCAOng8mn/JSdA6qFusHZyEEixjUYUySQfgIhAM+zv2SidZ8HGUNChignYFIZK5khUSAnytvmEFtAgTzS","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.0.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3470684},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"9c0e4a32c6a4e2fba9c50d739f0ddbceb3bac678","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.12.0","dependencies":{"debug":"^4.4.3","espree":"^11.0.0","semver":"^7.7.3","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.79.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.0","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"9.39.2","rimraf":"^6.1.2","rollup":"^4.55.1","gitdown":"^4.1.1","globals":"^17.0.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","playwright":"^1.57.0","typescript":"5.9.3","@babel/core":"^7.28.5","@types/chai":"^5.2.3","@types/node":"^25.0.3","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.2","@babel/preset-env":"^7.28.5","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.52.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.5","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.3","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.3.7","jsdoc-type-pratt-parser":"^7.0.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.2","@typescript-eslint/types":"^8.52.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.0.0_1767917620446_0.7712085564313913","host":"s3://npm-registry-packages-npm-production"}},"62.0.1":{"name":"eslint-plugin-jsdoc","version":"62.0.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.0.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"b0a2ddfc2c8b79a149a009e774344e451ab3f447","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.0.1.tgz","fileCount":429,"integrity":"sha512-TNeqgrE+xjDGCZVlRIiQcnUWNoMlHE5+oIyGbVFbrdIPOkz5ecWAmB26xSgqm2Mz7wny/ztyqCOUOeJhGrElpA==","signatures":[{"sig":"MEUCIHEfjx0e65hllwx8J7b/7+TXHR5lTPPrKPqSu5oek6wlAiEAmrcYjA/ueHwO1Yfb1xSJs6UyMQZsQKMuQu6/x5/9N+0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.0.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3471173},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"e63dc23feb17aa4ae0031655130dbab322ec0fa7","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.12.0","dependencies":{"debug":"^4.4.3","espree":"^11.0.0","semver":"^7.7.3","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.1","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.79.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.0","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"9.39.2","rimraf":"^6.1.2","rollup":"^4.55.1","gitdown":"^4.1.1","globals":"^17.0.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.3","decamelize":"^6.0.1","playwright":"^1.57.0","typescript":"5.9.3","@babel/core":"^7.28.5","@types/chai":"^5.2.3","@types/node":"^25.0.3","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.0.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.2","@babel/preset-env":"^7.28.5","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.52.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.5","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.3","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.3.7","jsdoc-type-pratt-parser":"^7.0.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.2","@typescript-eslint/types":"^8.52.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.0.1_1768655247677_0.43721451660240573","host":"s3://npm-registry-packages-npm-production"}},"62.1.0":{"name":"eslint-plugin-jsdoc","version":"62.1.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.1.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"1c290026a78c133049ec1aa30967e652084f7aa9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.1.0.tgz","fileCount":429,"integrity":"sha512-HEK/u7FO/hPDNo5ERxru7OouIx6AVBjjNbNQCsq4CxQBtRxb9esr8PuxX2zy0zAdGJnfczg3+zytnkKWjsKWwQ==","signatures":[{"sig":"MEYCIQCYNx4kcmzQ1t6pXJJW0C46ZMfPMMN8qLop8Vb8/bLUlQIhAKCZWm+0iqizFY7csk0xuEHb2t1cVLZQWpnzL45ItsE2","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.1.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3471173},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"0170773d9ab42a18649a78fd8a9360a6b90940c1","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.12.0","dependencies":{"debug":"^4.4.3","espree":"^11.0.0","semver":"^7.7.3","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.4","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.81.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.0","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"9.39.2","rimraf":"^6.1.2","rollup":"^4.55.1","gitdown":"^4.1.1","globals":"^17.0.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.57.0","typescript":"5.9.3","@babel/core":"^7.28.6","@types/chai":"^5.2.3","@types/node":"^25.0.9","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.0.1","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.2","@babel/preset-env":"^7.28.6","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.53.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.6","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.3","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.3.8","jsdoc-type-pratt-parser":"^7.0.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.2","@typescript-eslint/types":"^8.53.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.1.0_1768690256713_0.8672863828551252","host":"s3://npm-registry-packages-npm-production"}},"62.2.0":{"name":"eslint-plugin-jsdoc","version":"62.2.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.2.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"ee390a49f85d2f3effbc8d5cfa29c611b4dcfc29","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.2.0.tgz","fileCount":429,"integrity":"sha512-juIekE88Gy1FnjsQuwkrZ3OW4UCkQuhiBf9QqF9U1xgqtan4rQFCOUn4cKeHR1ObBqJ8/pG8a0lZlAuKlDLpdw==","signatures":[{"sig":"MEUCIDF7x3W4yHD0adeSthuydLI7YnaVXMAww10ru8Lh0vghAiEAqYfjmNLCpe8YiKuSfP4cyLYEnwyhXU71aPyV/FiYOq0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.2.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3486323},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"ed260c59eee80c365b3f6544056622a680a96f51","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.12.0","dependencies":{"debug":"^4.4.3","espree":"^11.0.0","semver":"^7.7.3","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.4","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.81.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.0","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"9.39.2","rimraf":"^6.1.2","rollup":"^4.55.1","gitdown":"^4.1.1","globals":"^17.0.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.57.0","typescript":"5.9.3","@babel/core":"^7.28.6","@types/chai":"^5.2.3","@types/node":"^25.0.9","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.0.1","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.2","@babel/preset-env":"^7.28.6","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.53.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.6","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.3","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.3.8","jsdoc-type-pratt-parser":"^7.0.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.2","@typescript-eslint/types":"^8.53.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.2.0_1768836963637_0.6756898726074818","host":"s3://npm-registry-packages-npm-production"}},"62.3.0":{"name":"eslint-plugin-jsdoc","version":"62.3.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.3.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"7ad6c35c18b255c2700bac68094e9467e85ac161","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.3.0.tgz","fileCount":429,"integrity":"sha512-Gc5Ls5qQC6NwqtQTtJ2JE5BwvX348ZCZ+4+QiZ9RpoQ1TCcxFF8Z0E5jaLkTyYNqyhx+uKAvljNHE0B7PBw+iw==","signatures":[{"sig":"MEQCICEb5i9lN8YrppLWtmk0zJrZJ4mG0R1NhoTY7Psta+8fAiAHDLHh5vnSVXzveU8RXI2ZkTUQfsTMD0EZwInTm0oD+w==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.3.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3488576},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"78b69804f717931eaa70b238aae3b0c6973ffea1","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.12.0","dependencies":{"debug":"^4.4.3","espree":"^11.1.0","semver":"^7.7.3","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.4","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.82.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.0","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"9.39.2","rimraf":"^6.1.2","rollup":"^4.55.2","gitdown":"^4.1.1","globals":"^17.0.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.57.0","typescript":"5.9.3","@babel/core":"^7.28.6","@types/chai":"^5.2.3","@types/node":"^25.0.9","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.0.1","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.2","@babel/preset-env":"^7.28.6","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.53.1","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.6","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.3","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.3.8","jsdoc-type-pratt-parser":"^7.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.2","@typescript-eslint/types":"^8.53.1","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.3.0_1768930227772_0.39430507255609704","host":"s3://npm-registry-packages-npm-production"}},"62.3.1":{"name":"eslint-plugin-jsdoc","version":"62.3.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.3.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"95e7df4b1c99e80f898bc036501e32154ee6704b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.3.1.tgz","fileCount":429,"integrity":"sha512-eQzrU7Z8FFSKdUgurmz8XZMz25GC5807uPmAV1x/Dw+xLteJEqPjbsdBT1pYB5p3uSsD4q3tCbJOpVLMNiTSSw==","signatures":[{"sig":"MEYCIQCA2OkAz+Nem0I0Dj1v58c08i0EyXUuiDQuLskhRr56tQIhAIAnzn9u6AOn/cKAlIj58mD2IDJ3OicHypSzXK1V5mFn","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.3.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3488577},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"f44398601fa86427405171581879a9969584b3cf","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.13.0","dependencies":{"debug":"^4.4.3","espree":"^11.1.0","semver":"^7.7.3","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.5","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.82.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.0","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"9.39.2","rimraf":"^6.1.2","rollup":"^4.56.0","gitdown":"^4.1.1","globals":"^17.0.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.57.0","typescript":"5.9.3","@babel/core":"^7.28.6","@types/chai":"^5.2.3","@types/node":"^25.0.10","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.0.1","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.2","@babel/preset-env":"^7.28.6","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.53.1","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.6","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.3","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.3.8","jsdoc-type-pratt-parser":"^7.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.2","@typescript-eslint/types":"^8.53.1","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.3.1_1769114054854_0.8915920336845005","host":"s3://npm-registry-packages-npm-production"}},"62.4.0":{"name":"eslint-plugin-jsdoc","version":"62.4.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.4.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"0b9a0ca3a8a763c36bb4b83ca3f53da705b20989","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.4.0.tgz","fileCount":429,"integrity":"sha512-SmwVS4QCSsBRmOfAn1J2CyCO4chqZtSU5olBCiHZ0RnxZVjIBTgm/1ZBFwFDUiV5/llFZcuSHEJK5DjHCDcGPw==","signatures":[{"sig":"MEYCIQDQVL4Hgp5UGABpU+T4hR9jBqXjjzdWffvDh23EJ0aZOQIhAI9EcQQqLv9lVUF4HYsvFsdcAD3o+OPNZywi8YpweWGb","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.4.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3491652},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"3907822e4ee2eeaf78d03973cf2388b55fa18985","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.13.0","dependencies":{"debug":"^4.4.3","espree":"^11.1.0","semver":"^7.7.3","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.5","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.82.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.0","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"9.39.2","rimraf":"^6.1.2","rollup":"^4.56.0","gitdown":"^4.1.1","globals":"^17.0.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.57.0","typescript":"5.9.3","@babel/core":"^7.28.6","@types/chai":"^5.2.3","@types/node":"^25.0.10","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.0.1","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.2","@babel/preset-env":"^7.28.6","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.53.1","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.6","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.3","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.3.8","jsdoc-type-pratt-parser":"^7.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.2","@typescript-eslint/types":"^8.53.1","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.4.0_1769184786983_0.6696174505034866","host":"s3://npm-registry-packages-npm-production"}},"62.4.1":{"name":"eslint-plugin-jsdoc","version":"62.4.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.4.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"6ad51350c364597dadf820e690f846d5b43b4e07","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.4.1.tgz","fileCount":429,"integrity":"sha512-HgX2iN4j104D/mCUqRbhtzSZbph+KO9jfMHiIJjJ19Q+IwLQ5Na2IqvOJYq4S+4kgvEk1w6KYF4vVus6H2wcHg==","signatures":[{"sig":"MEUCIFOSAW6j30vrTEfld3fB89fR9jfowrBEiVwKG/UVCJtpAiEAiFo3fUnNbbT9u4gEJqVoSKMF4oNdXp8oyIoKtyMqrDI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.4.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3491652},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"ba0034e2ec6742d32f0e9ac7fcffe9a105e03ac7","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.13.0","dependencies":{"debug":"^4.4.3","espree":"^11.1.0","semver":"^7.7.3","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.5","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.83.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.0","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"9.39.2","rimraf":"^6.1.2","rollup":"^4.56.0","gitdown":"^4.1.1","globals":"^17.1.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.58.0","typescript":"5.9.3","@babel/core":"^7.28.6","@types/chai":"^5.2.3","@types/node":"^25.0.10","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.0.1","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.2","@babel/preset-env":"^7.28.6","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.53.1","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.6","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.3","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.3.8","jsdoc-type-pratt-parser":"^7.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.2","@typescript-eslint/types":"^8.53.1","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.4.1_1769270460893_0.33820776087900906","host":"s3://npm-registry-packages-npm-production"}},"62.5.0":{"name":"eslint-plugin-jsdoc","version":"62.5.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.5.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"c6c466a55cc17072c702a72ae03c227af32257ac","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.5.0.tgz","fileCount":429,"integrity":"sha512-D+1haMVDzW/ZMoPwOnsbXCK07rJtsq98Z1v+ApvDKxSzYTTcPgmFc/nyUDCGmxm2cP7g7hszyjYHO7Zodl/43w==","signatures":[{"sig":"MEUCIHHxCokHo3MazwfjDwJmPYA6n+UXSjX29UBY0zePeqUEAiEAy9NqGsbM4Ip08puRgBnlCrWE0ciifZ3KkKlzJRdriGU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.5.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3500620},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"925f6e35f099a52d1e6f4da62117a5865fc35e98","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.13.0","dependencies":{"debug":"^4.4.3","espree":"^11.1.0","semver":"^7.7.3","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.5","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.83.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.0","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"9.39.2","rimraf":"^6.1.2","rollup":"^4.56.0","gitdown":"^4.1.1","globals":"^17.1.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.58.0","typescript":"5.9.3","@babel/core":"^7.28.6","@types/chai":"^5.2.3","@types/node":"^25.0.10","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.0.1","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.2","@babel/preset-env":"^7.28.6","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.53.1","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.6","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.3","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.3.8","jsdoc-type-pratt-parser":"^7.1.0","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.2","@typescript-eslint/types":"^8.53.1","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.5.0_1769713326374_0.3306181915133053","host":"s3://npm-registry-packages-npm-production"}},"62.5.1":{"name":"eslint-plugin-jsdoc","version":"62.5.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.5.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a7facb09ceaae7afd337a7ecb3c5209da751640c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.5.1.tgz","fileCount":429,"integrity":"sha512-pwBsvtkuNRzTYJCeEs0pq5NMipmVfYL5FdkAkB7LV6ALZR6rOau+SFveIdA9+nq2ZOrUCdgwC51i/RIFQvrXYA==","signatures":[{"sig":"MEUCIQD1vIWcUNfneyStY0VTGNx60+RzcYpQmG59CL6L03TA2wIgL0P5pNoQkFrdSlFWgk/Ig3pKjYyjp9dYkb2pTrUTfKk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.5.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3501107},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"dfc662ea500a536678772b356511636c7f18b228","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.13.0","dependencies":{"debug":"^4.4.3","espree":"^11.1.0","semver":"^7.7.3","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.5","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.84.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.1","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"9.39.2","rimraf":"^6.1.2","rollup":"^4.57.1","gitdown":"^4.1.1","globals":"^17.3.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.58.1","typescript":"5.9.3","@babel/core":"^7.29.0","@types/chai":"^5.2.3","@types/node":"^25.2.0","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.3","@babel/preset-env":"^7.29.0","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.54.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.6","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.3","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.4.2","jsdoc-type-pratt-parser":"^7.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.3","@typescript-eslint/types":"^8.54.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.5.1_1770235177311_0.7931279324740941","host":"s3://npm-registry-packages-npm-production"}},"62.5.2":{"name":"eslint-plugin-jsdoc","version":"62.5.2","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.5.2","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"feebba00e49d159ebc23e6481407b3b37834341b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.5.2.tgz","fileCount":429,"integrity":"sha512-n4plQz9u6xoX0QemOsBjU8S/V6XGRoBsad8v56Q9sEOKrcZTh489ld0qi7ONLNZsSlH0GBSi513DBvyavFckeQ==","signatures":[{"sig":"MEUCIDg9Z+j4CV1FcZPG1opkdEV0jUxSEAXPu4eYZ2F0QgPuAiEA3T7sphlaFca0R7zmr3qE9Gc1gkWznJ7yKQ8hCaCVYYM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.5.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3501859},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"122d2837f69172911f03e6e2bbdee33c03b8a4f1","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.13.0","dependencies":{"debug":"^4.4.3","espree":"^11.1.0","semver":"^7.7.3","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.5","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.84.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.1","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"9.39.2","rimraf":"^6.1.2","rollup":"^4.57.1","gitdown":"^4.1.1","globals":"^17.3.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.58.1","typescript":"5.9.3","@babel/core":"^7.29.0","@types/chai":"^5.2.3","@types/node":"^25.2.0","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.3","@babel/preset-env":"^7.29.0","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.54.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.6","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.3","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.4.2","jsdoc-type-pratt-parser":"^7.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.3","@typescript-eslint/types":"^8.54.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.5.2_1770296199540_0.016061741156631282","host":"s3://npm-registry-packages-npm-production"}},"62.5.3":{"name":"eslint-plugin-jsdoc","version":"62.5.3","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.5.3","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"86f80491fbda0ad5d94b6bf798f7e5358677439c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.5.3.tgz","fileCount":429,"integrity":"sha512-wWUrEG9ACexVAg95gH0t0LobV5t4sAnwephEsp95Wv7y6s7Fc6DK3xBeLKi7imVpbSzdcyfo863bKCNYL8ld0g==","signatures":[{"sig":"MEUCIH69wuRcUy56h7qQo844AnEmSau3OvCUBoCwgLx3IqB7AiEAlbV7ipQ04MMRt0BkP2iOkRBL1H0N80TzrHrcvw3Ixcs=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.5.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3505096},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"a252868199736888fee6530d873f3ec3238339bb","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.13.0","dependencies":{"debug":"^4.4.3","espree":"^11.1.0","semver":"^7.7.3","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.5","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.84.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.1","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"9.39.2","rimraf":"^6.1.2","rollup":"^4.57.1","gitdown":"^4.1.1","globals":"^17.3.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.58.1","typescript":"5.9.3","@babel/core":"^7.29.0","@types/chai":"^5.2.3","@types/node":"^25.2.0","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.3","@babel/preset-env":"^7.29.0","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.54.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.6","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.3","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.4.2","jsdoc-type-pratt-parser":"^7.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.3","@typescript-eslint/types":"^8.54.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.5.3_1770417942484_0.5708356090492943","host":"s3://npm-registry-packages-npm-production"}},"62.5.4":{"name":"eslint-plugin-jsdoc","version":"62.5.4","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.5.4","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"2f8bcb3260fcd59b4d5a424e6c761f105e0eacab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.5.4.tgz","fileCount":429,"integrity":"sha512-U+Q5ppErmC17VFQl542eBIaXcuq975BzoIHBXyx7UQx/i4gyHXxPiBkonkuxWyFA98hGLALLUuD+NJcXqSGKxg==","signatures":[{"sig":"MEYCIQCyJmEhYHwN15WcSj2cXMtc4OLh//rWZuHh+stn2coIFAIhALCp9LL0n5ZxbkqT5D8u9cF+9fxVTykqpAWKx2jz5HdC","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.5.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3506432},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"bfef8487603fccbdc1387ecd57a46b85755d9e14","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.13.0","dependencies":{"debug":"^4.4.3","espree":"^11.1.0","semver":"^7.7.3","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.5","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.84.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.1","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"9.39.2","rimraf":"^6.1.2","rollup":"^4.57.1","gitdown":"^4.1.1","globals":"^17.3.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.58.1","typescript":"5.9.3","@babel/core":"^7.29.0","@types/chai":"^5.2.3","@types/node":"^25.2.0","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.3","@babel/preset-env":"^7.29.0","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.54.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.6","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.3","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.4.2","jsdoc-type-pratt-parser":"^7.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.3","@typescript-eslint/types":"^8.54.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.5.4_1770487667529_0.8837078597179884","host":"s3://npm-registry-packages-npm-production"}},"62.5.5":{"name":"eslint-plugin-jsdoc","version":"62.5.5","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.5.5","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"5cb5ad178fa6c3fb18ec789216a5320901739618","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.5.5.tgz","fileCount":429,"integrity":"sha512-aRp0KVW26imgPqn17oSDnJdA3tlu+6D/xI/pqWzK5qDPQbldQ1Hsg84dYAsFyvGJhI+u/sGvzgGjMjlKQtUG/Q==","signatures":[{"sig":"MEQCIBG2OhWbKeCC+NAt01XUpbmXWwIXP8HHEUcLLjqI2A1QAiB2SuHMQorepCqxniEx7F7dpK46NjoWwjvRqA0Zbwla9Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.5.5","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3507260},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"c7b132f7531e5eab31760f1f57e82e8e4512f9eb","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.13.0","dependencies":{"debug":"^4.4.3","espree":"^11.1.0","semver":"^7.7.3","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.5","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.84.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.1","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"9.39.2","rimraf":"^6.1.2","rollup":"^4.57.1","gitdown":"^4.1.1","globals":"^17.3.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.58.1","typescript":"5.9.3","@babel/core":"^7.29.0","@types/chai":"^5.2.3","@types/node":"^25.2.0","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.3","@babel/preset-env":"^7.29.0","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.54.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.6","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.3","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.4.2","jsdoc-type-pratt-parser":"^7.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.3","@typescript-eslint/types":"^8.54.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.5.5_1771116171838_0.7446947717701411","host":"s3://npm-registry-packages-npm-production"}},"62.6.0":{"name":"eslint-plugin-jsdoc","version":"62.6.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.6.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"74c65e02fe67aa0a0328d3efbb17480b9d0157d8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.6.0.tgz","fileCount":429,"integrity":"sha512-Z18zZD1Q2m9usqFbAzb30z+lF8bzE4WiUy+dfOXljJlZ1Jm5uhkuAWfGV97FYyh+WlKfrvpDYs+s1z45eZWMfA==","signatures":[{"sig":"MEMCHxdHE27b6DbXlBnhL9uuP5IGOzDhpDZ0ZxvkiOOvV0gCIG2uZZPePNxgQ/FAIc0VCCpMCeUOlA1vLFs7wF1QsYFT","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.6.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3509290},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"b36a67a548e667983060a7424c822c4a1c6c7562","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.13.0","dependencies":{"debug":"^4.4.3","espree":"^11.1.0","semver":"^7.7.3","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.5","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.84.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.1","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"9.39.2","rimraf":"^6.1.2","rollup":"^4.57.1","gitdown":"^4.1.1","globals":"^17.3.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.58.1","typescript":"5.9.3","@babel/core":"^7.29.0","@types/chai":"^5.2.3","@types/node":"^25.2.0","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.3","@babel/preset-env":"^7.29.0","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.54.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.6","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.3","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.4.2","jsdoc-type-pratt-parser":"^7.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.3","@typescript-eslint/types":"^8.54.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.6.0_1771383615575_0.7194428514331257","host":"s3://npm-registry-packages-npm-production"}},"62.6.1":{"name":"eslint-plugin-jsdoc","version":"62.6.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.6.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"79ee8f023f95948e8dbbf6192f5e691660decbd7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.6.1.tgz","fileCount":429,"integrity":"sha512-zfz4lMIKDkidkqZniIieZujwZAtpaSNM0WXwilToKoR2UWEw0JE/QevQI2k6YN4ZSy3YhXB3Vs1ab62GZu8Wug==","signatures":[{"sig":"MEUCIBgVbTfpD58gZv2OPVnP8bKKlTP3hkDJ3WFgcM0VzPsCAiEAzTE8SA9CqQDPAVEoaueAnpNDawUpQaJiROcSSUnBsYQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.6.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3510205},"main":"./dist/index.cjs","pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"951d3549ea198fb229565cab3e0ce41943176098","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.13.0","dependencies":{"debug":"^4.4.3","espree":"^11.1.0","semver":"^7.7.3","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.5","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.84.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.1","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"9.39.2","rimraf":"^6.1.2","rollup":"^4.57.1","gitdown":"^4.1.1","globals":"^17.3.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.58.1","typescript":"5.9.3","@babel/core":"^7.29.0","@types/chai":"^5.2.3","@types/node":"^25.2.0","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.3","@babel/preset-env":"^7.29.0","@es-joy/escodegen":"^4.2.0","typescript-eslint":"^8.54.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"^7.28.6","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.3","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.4.2","jsdoc-type-pratt-parser":"^7.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.3","@typescript-eslint/types":"^8.54.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-syntax-class-properties":"^7.12.13","@babel/plugin-transform-flow-strip-types":"^7.27.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.6.1_1771500224509_0.557762993068784","host":"s3://npm-registry-packages-npm-production"}},"62.7.0":{"name":"eslint-plugin-jsdoc","version":"62.7.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.7.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"a749b0f7358ebdc2c8568230a3b1817706be2657","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.7.0.tgz","fileCount":429,"integrity":"sha512-jootujJOIGMkCLN+/WgDFKtaclCt2MEEy9cZ1RyK19Az1JvVI3awbeMXNlJ6y4h8RWIJpcXqmxsu4t9NThYbNw==","signatures":[{"sig":"MEUCIQDK5Pj2xq5gjnsR95MbFvKGWAEIUrDemVjfXiFqqkd+agIgSH1GthtitKu7x4Y9o9iv4V25AfyTkjU/zw0tp0glVrY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.7.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3515197},"main":"./dist/index.cjs","pnpm":{"overrides":{"eslint-scope":"9.1.0","@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"35c574549986b8fe4546a3f6f4dc3673dac04697","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && mkdir dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.13.0","dependencies":{"debug":"^4.4.3","espree":"^11.1.0","semver":"^7.7.4","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.5","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.84.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.5","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"10.0.0","rimraf":"^6.1.3","rollup":"^4.57.1","gitdown":"^4.1.1","globals":"^17.3.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.58.2","typescript":"5.9.3","@babel/core":"8.0.0-rc.1","@types/chai":"^5.2.3","@types/node":"^25.3.0","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.3","@babel/preset-env":"8.0.0-rc.1","@es-joy/escodegen":"^4.2.0","typescript-eslint":"8.56.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"8.0.0-rc.1","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.4","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.4.2","jsdoc-type-pratt-parser":"^7.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.6","@typescript-eslint/types":"8.56.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-transform-flow-strip-types":"8.0.0-rc.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.7.0_1771582717956_0.3554153294185214","host":"s3://npm-registry-packages-npm-production"}},"62.7.1":{"name":"eslint-plugin-jsdoc","version":"62.7.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.7.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"e1ef76d4a7c3b5f7e69acb031feb1571be8ae343","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.7.1.tgz","fileCount":429,"integrity":"sha512-4Zvx99Q7d1uggYBUX/AIjvoyqXhluGbbKrRmG8SQTLprPFg6fa293tVJH1o1GQwNe3lUydd8ZHzn37OaSncgSQ==","signatures":[{"sig":"MEQCIEe1uvcKQhnpmjx/yoN6QqmjHbv0VVPQG/RKp0ltabbbAiBCvBeFVvnioIFXRich8LizDAbpZ2H84FcOeposkUTYZQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.7.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3516610},"main":"./dist/index.cjs","pnpm":{"overrides":{"eslint-scope":"9.1.0","@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"23a9f1d32395bade12f4a52912f3e36de70cab3e","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && mkdir dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.6.2","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.13.0","dependencies":{"debug":"^4.4.3","espree":"^11.1.0","semver":"^7.7.4","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.5","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.84.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.5","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"10.0.0","rimraf":"^6.1.3","rollup":"^4.57.1","gitdown":"^4.1.1","globals":"^17.3.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.58.2","typescript":"5.9.3","@babel/core":"8.0.0-rc.1","@types/chai":"^5.2.3","@types/node":"^25.3.0","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.3","@babel/preset-env":"8.0.0-rc.1","@es-joy/escodegen":"^4.2.0","typescript-eslint":"8.56.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"8.0.0-rc.1","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.4","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.4.2","jsdoc-type-pratt-parser":"^7.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.6","@typescript-eslint/types":"8.56.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-transform-flow-strip-types":"8.0.0-rc.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.7.1_1771923805529_0.2941394263941086","host":"s3://npm-registry-packages-npm-production"}},"62.8.0":{"name":"eslint-plugin-jsdoc","version":"62.8.0","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.8.0","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"61a5d3b5378b389edd9f2d0682d09103a89c6889","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.8.0.tgz","fileCount":429,"integrity":"sha512-hu3r9/6JBmPG6wTcqtYzgZAnjEG2eqRUATfkFscokESg1VDxZM21ZaMire0KjeMwfj+SXvgB4Rvh5LBuesj92w==","signatures":[{"sig":"MEUCIQDU5N370nF1SmAUgfatDgo0+H9mkpOwdolt4SZlAcHpPQIgEa2rL9aUsfXs5TR/x8MOR/Xm6j0R4ZfToa5i93TaAzk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.8.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3524877},"main":"./dist/index.cjs","pnpm":{"overrides":{"eslint-scope":"9.1.0","@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"a96bc7c4f3a0ba2229241d3909ff0f905756d3cb","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && mkdir dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.14.0","dependencies":{"debug":"^4.4.3","espree":"^11.1.0","semver":"^7.7.4","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.5","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.84.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.5","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"10.0.0","rimraf":"^6.1.3","rollup":"^4.57.1","gitdown":"^4.1.1","globals":"^17.3.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.58.2","typescript":"5.9.3","@babel/core":"8.0.0-rc.1","@types/chai":"^5.2.3","@types/node":"^25.3.0","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.3","@babel/preset-env":"8.0.0-rc.1","@es-joy/escodegen":"^4.2.0","typescript-eslint":"8.56.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"8.0.0-rc.1","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.4","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.4.2","jsdoc-type-pratt-parser":"^7.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.6","@typescript-eslint/types":"8.56.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-transform-flow-strip-types":"8.0.0-rc.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.8.0_1773279919563_0.1735986002243608","host":"s3://npm-registry-packages-npm-production"}},"62.8.1":{"name":"eslint-plugin-jsdoc","version":"62.8.1","keywords":["eslint","plugin","jsdoc"],"author":{"url":"http://gajus.com","name":"Gajus Kuizinas","email":"gajus@gajus.com"},"license":"BSD-3-Clause","_id":"eslint-plugin-jsdoc@62.8.1","maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"c8":{"lines":100,"exclude":["src/rules/checkExamples.js"],"include":["src/"],"branches":100,"reporter":"text-summary","functions":100,"sourceMap":false,"instrument":false,"statements":100,"check-coverage":true},"dist":{"shasum":"83437f200a5f8beeba85af5244f88cacbf6cf5ba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.8.1.tgz","fileCount":429,"integrity":"sha512-e9358PdHgvcMF98foNd3L7hVCw70Lt+YcSL7JzlJebB8eT5oRJtW6bHMQKoAwJtw6q0q0w/fRIr2kwnHdFDI6A==","signatures":[{"sig":"MEQCIDNAB9jME2si5f9/5GCGP9WdtoUZ4UR5YieyW/AQoIS5AiBfX4YfKBQ/9M2IzEXcrDHoX8zKScBN5ovQhIyYU0al2g==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.8.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":3525567},"main":"./dist/index.cjs","pnpm":{"overrides":{"eslint-scope":"9.1.0","@types/eslint":"0.0.0-interferes-with-eslint-now"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"type":"module","mocha":{"timeout":12000,"reporter":"dot","recursive":true},"types":"./dist/index.d.ts","engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}}},"gitHead":"bca557be5a15cd0e4c8da8268d2e863019bc2333","scripts":{"tsc":"tsc","attw":"attw --pack .","lint":"eslint","test":"c8 pnpm run test-no-cov","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && mkdir dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","rollup":"rollup -c","prepare":"husky","tsc-cjs":"tsc -p tsconfig-cjs.json","lint-fix":"eslint --fix","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc-build":"tsc -p tsconfig-prod.json","check-docs":"node ./src/bin/generateDocs.js --check","test-index":"pnpm run test-no-cov test/rules/index.js","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","test-no-cov":"BABEL_ENV=test mocha","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline"},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"repository":{"url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git","type":"git"},"_npmVersion":"11.9.0","description":"JSDoc linting rules for ESLint.","directories":{},"lint-staged":{"*.js":"eslint --fix"},"_nodeVersion":"24.14.0","dependencies":{"debug":"^4.4.3","espree":"^11.1.0","semver":"^7.7.4","esquery":"^1.7.0","html-entities":"^2.6.0","comment-parser":"1.4.5","object-deep-merge":"^2.0.0","to-valid-identifier":"^1.0.0","@es-joy/jsdoccomment":"~0.84.0","are-docs-informative":"^0.0.2","escape-string-regexp":"^4.0.0","parse-imports-exports":"^0.2.4","spdx-expression-parse":"^4.0.0","@es-joy/resolve.exports":"1.2.0"},"_hasShrinkwrap":false,"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"devDependencies":{"c8":"^10.1.3","chai":"^6.2.2","glob":"^13.0.5","husky":"^9.1.7","mocha":"^11.7.5","sinon":"^21.0.1","eslint":"10.0.0","rimraf":"^6.1.3","rollup":"^4.57.1","gitdown":"^4.1.1","globals":"^17.3.0","replace":"^1.2.2","camelcase":"^9.0.0","@babel/cli":"^7.28.6","decamelize":"^6.0.1","playwright":"^1.58.2","typescript":"5.9.3","@babel/core":"8.0.0-rc.1","@types/chai":"^5.2.3","@types/node":"^25.3.0","json-schema":"^0.4.0","lint-staged":"^16.2.7","open-editor":"^6.0.0","@eslint/core":"^1.1.0","@types/debug":"^4.1.12","@types/mocha":"^10.0.10","ts-api-utils":"^2.4.0","@types/espree":"^10.1.0","@types/estree":"^1.0.8","@types/semver":"^7.7.1","@types/esquery":"^1.5.4","semantic-release":"^25.0.3","@babel/preset-env":"8.0.0-rc.1","@es-joy/escodegen":"^4.2.0","typescript-eslint":"8.56.0","@types/json-schema":"^7.0.15","@babel/eslint-parser":"8.0.0-rc.1","@arethetypeswrong/cli":"^0.18.2","@semantic-release/npm":"^13.1.4","babel-plugin-istanbul":"^7.0.1","eslint-config-canonical":"^47.4.2","jsdoc-type-pratt-parser":"^7.1.1","@hkdobrev/run-if-changed":"^0.6.3","@semantic-release/github":"^12.0.6","@typescript-eslint/types":"8.56.0","json-schema-to-typescript":"^15.0.4","@es-joy/jsdoc-eslint-parser":"^0.27.0","@rollup/plugin-node-resolve":"^16.0.3","@types/spdx-expression-parse":"^3.0.5","babel-plugin-add-module-exports":"^1.0.4","@semantic-release/commit-analyzer":"^13.0.1","babel-plugin-transform-import-meta":"^2.3.3","@babel/plugin-transform-flow-strip-types":"8.0.0-rc.1"},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/eslint-plugin-jsdoc_62.8.1_1774478230249_0.35641639843017336","host":"s3://npm-registry-packages-npm-production"}},"62.9.0":{"author":{"name":"Gajus Kuizinas","email":"gajus@gajus.com","url":"http://gajus.com"},"dependencies":{"@es-joy/jsdoccomment":"~0.86.0","@es-joy/resolve.exports":"1.2.0","are-docs-informative":"^0.0.2","comment-parser":"1.4.6","debug":"^4.4.3","escape-string-regexp":"^4.0.0","espree":"^11.2.0","esquery":"^1.7.0","html-entities":"^2.6.0","object-deep-merge":"^2.0.0","parse-imports-exports":"^0.2.4","semver":"^7.7.4","spdx-expression-parse":"^4.0.0","to-valid-identifier":"^1.0.0"},"description":"JSDoc linting rules for ESLint.","devDependencies":{"@arethetypeswrong/cli":"^0.18.2","@babel/cli":"^7.28.6","@babel/core":"8.0.0-rc.1","@babel/eslint-parser":"8.0.0-rc.1","@babel/plugin-transform-flow-strip-types":"8.0.0-rc.1","@babel/preset-env":"8.0.0-rc.1","@es-joy/escodegen":"^4.2.0","@es-joy/jsdoc-eslint-parser":"^0.27.0","@eslint/core":"^1.1.1","@hkdobrev/run-if-changed":"^0.6.3","@rollup/plugin-node-resolve":"^16.0.3","@semantic-release/commit-analyzer":"^13.0.1","@semantic-release/github":"^12.0.6","@semantic-release/npm":"^13.1.5","@types/chai":"^5.2.3","@types/debug":"^4.1.13","@types/esquery":"^1.5.4","@types/estree":"^1.0.8","@types/json-schema":"^7.0.15","@types/mocha":"^10.0.10","@types/node":"^25.5.0","@types/semver":"^7.7.1","@types/spdx-expression-parse":"^3.0.5","@typescript-eslint/types":"8.58.0","babel-plugin-add-module-exports":"^1.0.4","babel-plugin-istanbul":"^7.0.1","babel-plugin-transform-import-meta":"^2.3.3","c8":"^11.0.0","camelcase":"^9.0.0","chai":"^6.2.2","decamelize":"^6.0.1","eslint":"10.1.0","eslint-config-canonical":"^47.4.2","gitdown":"^4.1.1","glob":"^13.0.6","globals":"^17.4.0","husky":"^9.1.7","jsdoc-type-pratt-parser":"^7.2.0","json-schema":"^0.4.0","json-schema-to-typescript":"^15.0.4","lint-staged":"^16.4.0","mocha":"^11.7.5","open-editor":"^6.0.0","playwright":"^1.59.0","replace":"^1.2.2","rimraf":"^6.1.3","rollup":"^4.60.1","semantic-release":"^25.0.3","sinon":"^21.0.3","ts-api-utils":"^2.5.0","typescript":"5.9.3","typescript-eslint":"8.58.0"},"engines":{"node":"^20.19.0 || ^22.13.0 || >=24"},"keywords":["eslint","plugin","jsdoc"],"license":"BSD-3-Clause","lint-staged":{"*.js":"eslint --fix"},"type":"module","main":"./dist/index.cjs","types":"./dist/index.d.ts","exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./src/index.js"},"require":{"types":"./dist/cjs/index.cjs.d.cts","default":"./dist/index-cjs.cjs"}},"./getJsdocProcessorPlugin.js":{"import":{"types":"./dist/getJsdocProcessorPlugin.d.ts","default":"./src/getJsdocProcessorPlugin.js"},"require":{"types":"./dist/cjs/getJsdocProcessorPlugin.d.cts","default":"./dist/getJsdocProcessorPlugin.cjs"}},"./iterateJsdoc.js":{"import":{"types":"./dist/iterateJsdoc.d.ts","default":"./src/iterateJsdoc.js"},"require":{"types":"./dist/cjs/iterateJsdoc.d.cts","default":"./dist/iterateJsdoc.cjs"}}},"name":"eslint-plugin-jsdoc","mocha":{"reporter":"dot","recursive":true,"timeout":12000},"c8":{"branches":100,"check-coverage":true,"exclude":["src/rules/checkExamples.js"],"functions":100,"include":["src/"],"instrument":false,"lines":100,"reporter":"text-summary","sourceMap":false,"statements":100},"peerDependencies":{"eslint":"^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0"},"repository":{"type":"git","url":"git+https://github.com/gajus/eslint-plugin-jsdoc.git"},"homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme","bugs":{"url":"https://github.com/gajus/eslint-plugin-jsdoc/issues"},"run-if-changed":{"pnpm-lock.yaml":"pnpm run install-offline"},"pnpm":{"overrides":{"@types/eslint":"0.0.0-interferes-with-eslint-now","eslint-scope":"9.1.0"},"ignoredBuiltDependencies":["core-js","core-js-pure","re2","unrs-resolver"]},"scripts":{"ruleTypes":"node ./src/bin/generateRuleTypes.js","tsc":"tsc","tsc-build":"tsc -p tsconfig-prod.json","tsc-cjs":"tsc -p tsconfig-cjs.json","rollup":"rollup -c","build":"node ./src/bin/buildEntryFileForTS.js && rimraf ./dist && mkdir dist && pnpm rollup && NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'to-valid-identifier' '../to-valid-identifier.cjs' 'dist' -r --include=\"*.cjs\" && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && pnpm tsc-build && pnpm tsc-cjs","attw":"attw --pack .","check-docs":"node ./src/bin/generateDocs.js --check","create-docs":"pnpm run create-options && node ./src/bin/generateDocs.js && pnpm ruleTypes","create-rule":"node ./src/bin/generateRule.js","create-options":"node ./src/bin/generateOptions.js","install-offline":"pnpm install --prefer-offline","lint":"eslint","lint-fix":"eslint --fix","prepare":"husky","test-no-cov":"BABEL_ENV=test mocha","test":"c8 pnpm run test-no-cov","test-cov":"TIMING=1 c8 --reporter text pnpm run test-no-cov","test-index":"pnpm run test-no-cov test/rules/index.js"},"version":"62.9.0","gitHead":"8569d0c69dab44dbfce74abe5c08aa15f22d5246","_id":"eslint-plugin-jsdoc@62.9.0","_nodeVersion":"24.14.0","_npmVersion":"11.9.0","dist":{"integrity":"sha512-PY7/X4jrVgoIDncUmITlUqK546Ltmx/Pd4Hdsu4CvSjryQZJI2mEV4vrdMufyTetMiZ5taNSqvK//BTgVUlNkA==","shasum":"a4902f6978b1e7cc5c5d1a528ecf7d8c7ce716d9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-62.9.0.tgz","fileCount":429,"unpackedSize":3524907,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/eslint-plugin-jsdoc@62.9.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIG7BsqsI1mkUz3u+UsaQ4mA0KOfoxOApmBtZkPt5eFWyAiEAwW7bwR4l2sKvzi0oOwYUjtK9yeulzhLQM42nDbBJugw="}]},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:dfbebc0c-b249-4ee7-b0e2-3cfe86f873ea"}},"directories":{},"maintainers":[{"name":"anonymous","email":"gajus@gajus.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/eslint-plugin-jsdoc_62.9.0_1775031972364_0.4359959324064224"},"_hasShrinkwrap":false}},"name":"eslint-plugin-jsdoc","time":{"created":"2015-09-17T19:12:16.955Z","modified":"2026-04-01T08:26:12.877Z","0.0.0":"2015-09-17T19:12:16.955Z","0.0.1":"2015-09-19T01:08:24.655Z","0.0.2":"2015-09-19T09:01:05.201Z","1.0.1":"2015-10-02T00:15:33.575Z","1.1.0":"2015-10-09T14:35:16.836Z","1.1.1":"2015-11-29T00:19:59.566Z","1.1.2":"2015-12-25T14:02:38.675Z","1.1.3":"2015-12-25T14:11:27.883Z","2.0.0":"2015-12-28T16:00:10.429Z","2.0.1":"2015-12-28T16:01:40.559Z","2.0.2":"2015-12-28T16:24:32.919Z","2.0.3":"2015-12-28T16:41:07.921Z","2.0.4":"2015-12-28T16:46:08.516Z","2.1.0":"2015-12-28T20:32:22.400Z","2.1.1":"2015-12-28T20:51:28.843Z","2.1.2":"2015-12-28T21:35:39.228Z","2.1.3":"2015-12-28T22:53:21.068Z","2.1.4":"2015-12-28T23:31:05.768Z","2.2.0":"2015-12-30T17:11:07.998Z","2.2.1":"2015-12-31T11:53:26.030Z","2.2.2":"2016-01-06T12:26:22.010Z","2.2.3":"2016-02-14T14:50:38.207Z","2.2.4":"2016-02-14T15:56:27.807Z","2.3.0":"2016-02-15T13:35:45.880Z","2.3.1":"2016-02-22T17:26:44.373Z","2.4.0":"2016-11-23T08:41:46.008Z","3.0.0":"2017-03-18T14:48:03.963Z","3.0.1":"2017-04-14T09:48:08.861Z","3.0.2":"2017-04-14T10:44:47.791Z","3.1.0":"2017-05-12T13:54:26.789Z","3.1.1":"2017-06-23T11:05:46.433Z","3.1.2":"2017-07-27T18:47:03.055Z","3.1.3":"2017-09-22T08:28:49.042Z","3.2.0":"2017-11-08T01:45:02.024Z","3.3.0":"2017-12-15T23:04:27.422Z","3.3.1":"2018-01-06T16:36:48.352Z","3.4.0":"2018-02-13T12:00:53.272Z","3.4.1":"2018-02-14T10:55:07.394Z","3.5.0":"2018-02-20T15:22:30.535Z","3.6.0":"2018-04-06T15:56:16.153Z","3.6.1":"2018-04-06T17:25:08.792Z","3.6.2":"2018-04-06T20:18:15.867Z","3.6.3":"2018-04-15T10:43:51.599Z","3.7.0":"2018-05-17T03:45:52.741Z","3.7.1":"2018-05-22T07:45:08.510Z","3.7.2":"2018-08-21T22:00:37.630Z","3.8.0":"2018-08-22T00:30:31.547Z","3.9.0":"2018-10-19T10:29:47.239Z","3.9.1":"2018-10-23T19:08:09.340Z","3.10.0":"2018-12-07T14:09:32.224Z","3.11.0":"2018-12-07T15:58:21.262Z","3.12.0":"2018-12-07T16:22:29.970Z","3.12.1":"2018-12-08T20:49:26.823Z","3.13.0":"2018-12-09T10:40:00.612Z","3.14.0":"2018-12-09T11:33:38.986Z","3.14.1":"2018-12-19T16:25:26.693Z","3.15.0":"2018-12-31T18:00:39.503Z","3.15.1":"2019-01-04T08:10:59.808Z","4.0.0":"2019-01-17T17:14:08.467Z","4.0.1":"2019-01-21T13:59:39.635Z","4.1.0":"2019-01-27T20:26:42.080Z","4.1.1":"2019-02-24T20:46:40.327Z","4.2.0":"2019-03-13T13:51:03.186Z","4.3.0":"2019-03-14T12:30:00.281Z","4.4.0":"2019-03-14T12:55:29.374Z","4.4.1":"2019-03-14T18:28:17.563Z","4.4.2":"2019-03-15T19:29:06.079Z","4.4.3":"2019-03-19T11:10:23.617Z","4.5.0":"2019-03-26T21:15:16.029Z","4.6.0":"2019-03-28T16:39:01.915Z","4.7.0":"2019-04-01T10:48:37.832Z","4.8.0":"2019-04-04T12:18:42.717Z","4.8.1":"2019-04-08T09:04:22.813Z","4.8.2":"2019-04-08T12:14:10.664Z","4.8.3":"2019-04-09T14:59:50.629Z","4.8.4":"2019-05-11T08:30:43.309Z","5.0.0":"2019-05-15T11:27:23.296Z","5.0.1":"2019-05-15T13:01:17.630Z","5.0.2":"2019-05-15T15:38:40.703Z","6.0.0":"2019-05-21T23:44:36.209Z","6.0.1":"2019-05-22T00:54:46.383Z","6.0.2":"2019-05-22T13:07:32.869Z","6.0.3":"2019-05-22T23:59:56.745Z","7.0.0":"2019-05-24T08:19:35.503Z","7.0.1":"2019-05-24T09:08:35.459Z","7.0.2":"2019-05-24T09:55:27.694Z","7.1.0":"2019-05-28T00:21:28.572Z","7.2.0":"2019-05-29T09:20:51.966Z","7.2.1":"2019-05-30T10:19:20.510Z","7.2.2":"2019-05-30T11:43:04.532Z","7.2.3":"2019-05-30T12:00:50.343Z","8.0.0":"2019-06-11T07:40:21.294Z","8.0.1":"2019-06-11T11:06:13.921Z","8.0.2":"2019-06-16T10:24:37.316Z","8.1.0":"2019-06-16T10:46:51.525Z","8.2.0":"2019-06-19T08:35:38.105Z","8.3.0":"2019-06-19T08:56:18.006Z","8.3.1":"2019-06-21T02:56:58.487Z","8.3.2":"2019-06-21T03:36:56.560Z","8.4.0":"2019-06-21T07:59:20.622Z","8.4.1":"2019-06-21T13:46:16.994Z","8.4.2":"2019-06-21T16:09:58.472Z","8.4.3":"2019-06-21T23:40:17.236Z","8.4.4":"2019-06-22T13:26:23.580Z","8.4.5":"2019-06-23T04:34:30.285Z","8.4.6":"2019-06-23T15:41:34.009Z","8.5.0":"2019-06-23T21:00:45.709Z","8.5.1":"2019-06-24T07:32:33.800Z","8.6.0":"2019-06-24T09:47:30.815Z","8.6.1":"2019-06-26T04:50:50.296Z","8.6.2":"2019-06-26T09:56:22.429Z","8.7.0":"2019-06-26T11:37:58.560Z","9.0.0":"2019-06-27T05:03:46.213Z","9.0.1":"2019-06-27T06:22:43.361Z","9.1.0":"2019-06-27T12:20:24.916Z","10.0.0":"2019-06-27T13:02:21.353Z","10.0.1":"2019-06-28T23:44:20.728Z","10.0.2":"2019-06-30T02:24:00.993Z","10.0.3":"2019-07-01T00:54:39.678Z","10.1.0":"2019-07-04T01:11:27.794Z","10.1.1":"2019-07-04T02:24:19.253Z","10.2.0":"2019-07-04T08:58:53.540Z","10.3.0":"2019-07-05T15:09:18.848Z","11.0.0":"2019-07-06T05:07:11.831Z","11.1.0":"2019-07-06T05:31:14.996Z","11.2.0":"2019-07-06T09:54:47.005Z","11.2.1":"2019-07-06T13:49:22.139Z","12.0.0":"2019-07-07T11:57:43.461Z","13.0.0":"2019-07-07T14:12:34.955Z","14.0.0":"2019-07-07T15:08:42.304Z","14.1.0":"2019-07-08T13:45:24.437Z","15.0.0":"2019-07-08T13:51:51.083Z","15.0.1":"2019-07-08T15:10:04.636Z","15.1.0":"2019-07-08T16:12:09.947Z","15.2.0":"2019-07-08T18:39:27.586Z","15.3.0":"2019-07-08T23:40:11.894Z","15.3.1":"2019-07-09T04:58:00.655Z","15.3.2":"2019-07-09T05:29:57.182Z","15.3.3":"2019-07-10T00:36:33.250Z","15.3.4":"2019-07-10T01:35:18.730Z","15.3.5":"2019-07-11T18:34:15.435Z","15.3.6":"2019-07-12T15:37:56.386Z","15.3.7":"2019-07-12T16:41:56.625Z","15.3.8":"2019-07-12T18:18:56.221Z","15.3.9":"2019-07-12T19:29:13.942Z","15.4.0":"2019-07-13T08:10:09.170Z","15.4.1":"2019-07-13T15:05:50.229Z","15.4.2":"2019-07-14T02:08:30.050Z","15.5.0":"2019-07-14T05:12:59.762Z","15.5.1":"2019-07-14T14:09:09.000Z","15.5.2":"2019-07-15T16:56:45.631Z","15.5.3":"2019-07-17T23:46:13.726Z","15.5.4":"2019-07-20T19:11:15.254Z","15.5.5":"2019-07-20T21:33:56.780Z","15.5.6":"2019-07-21T19:29:38.702Z","15.6.0":"2019-07-21T19:40:02.842Z","15.6.1":"2019-07-22T02:08:44.767Z","15.6.2":"2019-07-22T23:45:25.937Z","15.7.0":"2019-07-23T13:20:18.883Z","15.7.1":"2019-07-23T21:34:55.873Z","15.7.2":"2019-07-24T03:24:30.960Z","15.8.0":"2019-07-30T03:36:16.147Z","15.8.1":"2019-08-15T23:26:14.567Z","15.8.2":"2019-08-20T01:23:13.812Z","15.8.3":"2019-08-20T01:49:40.062Z","15.8.4":"2019-08-30T02:39:14.835Z","15.9.0":"2019-09-01T05:15:14.557Z","15.9.1":"2019-09-01T06:15:23.172Z","15.9.2":"2019-09-14T09:17:01.028Z","15.9.3":"2019-09-26T09:08:11.427Z","15.9.4":"2019-09-27T07:27:31.435Z","15.9.5":"2019-09-27T14:45:48.398Z","15.9.6":"2019-10-02T13:16:25.690Z","15.9.7":"2019-10-02T13:52:37.559Z","15.9.8":"2019-10-03T04:34:12.160Z","15.9.9":"2019-10-04T01:27:07.781Z","15.9.10":"2019-10-05T00:17:53.407Z","15.10.0":"2019-10-09T12:18:57.627Z","15.10.1":"2019-10-12T09:26:06.315Z","15.11.0":"2019-10-12T10:30:41.025Z","15.11.1":"2019-10-15T04:36:07.809Z","15.12.0":"2019-10-18T00:39:21.168Z","15.12.1":"2019-10-23T12:47:33.625Z","15.12.2":"2019-10-29T02:00:12.161Z","16.0.0":"2019-10-29T12:58:30.644Z","16.1.0":"2019-10-29T13:08:00.941Z","16.1.1":"2019-10-29T13:19:15.291Z","17.0.0":"2019-11-01T01:06:26.862Z","17.0.1":"2019-11-03T04:20:18.605Z","17.1.0":"2019-11-04T20:37:21.933Z","17.1.1":"2019-11-08T08:48:56.069Z","17.1.2":"2019-11-12T16:02:50.255Z","18.0.0":"2019-11-13T02:11:49.307Z","18.0.1":"2019-11-13T06:03:56.614Z","18.1.0":"2019-11-19T00:05:41.351Z","18.1.1":"2019-11-19T01:37:38.201Z","18.1.2":"2019-11-19T09:03:50.652Z","18.1.3":"2019-11-20T01:00:06.946Z","18.1.4":"2019-11-20T12:52:53.362Z","18.1.5":"2019-11-25T15:57:19.993Z","18.1.6":"2019-11-30T06:59:14.437Z","18.2.0":"2019-11-30T15:59:34.261Z","18.2.1":"2019-12-01T01:46:07.502Z","18.2.2":"2019-12-01T02:06:25.707Z","18.3.0":"2019-12-01T03:55:16.644Z","18.4.0":"2019-12-02T02:46:32.234Z","18.4.1":"2019-12-02T08:04:01.166Z","18.4.2":"2019-12-04T00:18:43.994Z","18.4.3":"2019-12-04T06:30:33.768Z","18.4.4":"2019-12-23T11:27:40.304Z","18.5.0":"2019-12-27T00:16:49.605Z","18.6.0":"2019-12-27T00:24:02.031Z","18.6.1":"2019-12-28T04:44:23.360Z","18.6.2":"2019-12-28T07:09:09.860Z","18.7.0":"2019-12-31T02:14:05.569Z","18.8.0":"2019-12-31T02:27:07.734Z","18.9.0":"2019-12-31T02:37:32.303Z","18.10.0":"2019-12-31T02:47:55.625Z","18.11.0":"2019-12-31T03:00:05.856Z","19.0.0":"2019-12-31T03:25:22.662Z","19.0.1":"2019-12-31T08:49:35.353Z","19.1.0":"2019-12-31T09:33:52.763Z","19.2.0":"2019-12-31T17:05:17.835Z","20.0.0":"2020-01-02T11:40:21.896Z","20.0.1":"2020-01-07T01:24:31.934Z","20.0.2":"2020-01-07T10:45:32.966Z","20.0.3":"2020-01-07T19:44:58.621Z","20.0.4":"2020-01-08T13:01:48.215Z","20.0.5":"2020-01-08T15:41:15.643Z","20.1.0":"2020-01-11T12:11:19.404Z","20.2.0":"2020-01-11T14:19:18.746Z","20.3.0":"2020-01-11T20:29:46.421Z","20.3.1":"2020-01-15T11:52:54.443Z","20.4.0":"2020-01-23T14:50:12.886Z","21.0.0":"2020-01-25T06:26:50.862Z","22.0.0":"2020-03-01T23:10:21.541Z","22.0.1":"2020-03-12T01:56:00.749Z","22.1.0":"2020-03-18T10:15:40.416Z","22.2.0":"2020-04-11T15:55:44.975Z","23.0.0":"2020-04-11T16:38:22.417Z","23.0.1":"2020-04-19T02:07:40.139Z","23.1.0":"2020-04-20T05:26:59.366Z","24.0.0":"2020-04-20T08:46:27.926Z","24.0.1":"2020-05-03T00:42:47.954Z","24.0.2":"2020-05-03T11:58:39.333Z","24.0.3":"2020-05-06T02:06:52.580Z","24.0.4":"2020-05-06T08:34:38.663Z","24.0.5":"2020-05-06T13:07:38.878Z","24.0.6":"2020-05-06T15:04:50.337Z","25.0.0":"2020-05-09T03:05:16.237Z","25.0.1":"2020-05-09T07:02:30.064Z","25.1.0":"2020-05-11T05:49:32.958Z","25.2.0":"2020-05-11T06:20:34.862Z","25.2.1":"2020-05-12T14:34:46.614Z","25.3.0":"2020-05-12T21:15:13.696Z","25.3.1":"2020-05-12T23:16:40.687Z","25.4.0":"2020-05-13T01:28:46.384Z","25.4.1":"2020-05-14T00:56:37.698Z","25.4.2":"2020-05-18T08:43:46.299Z","25.4.3":"2020-05-26T11:55:31.246Z","26.0.0":"2020-05-28T13:53:25.055Z","26.0.1":"2020-05-31T03:04:20.164Z","26.0.2":"2020-06-02T00:37:42.515Z","27.0.0":"2020-06-02T16:16:42.154Z","27.0.1":"2020-06-03T09:00:26.446Z","27.0.2":"2020-06-03T10:46:52.109Z","27.0.3":"2020-06-04T08:11:58.070Z","27.0.4":"2020-06-04T22:57:20.968Z","27.0.5":"2020-06-08T23:45:39.165Z","27.0.6":"2020-06-11T02:34:57.072Z","27.0.7":"2020-06-14T02:56:01.223Z","27.1.0":"2020-06-17T05:51:32.498Z","27.1.1":"2020-06-17T07:57:41.617Z","27.1.2":"2020-06-18T08:47:02.648Z","28.0.0":"2020-06-21T05:11:22.584Z","28.1.0":"2020-06-23T05:23:36.150Z","28.2.0":"2020-06-23T05:27:09.691Z","28.3.0":"2020-06-23T05:40:42.497Z","28.4.0":"2020-06-23T05:49:29.628Z","28.5.0":"2020-06-23T06:05:29.987Z","28.5.1":"2020-06-23T09:49:43.695Z","28.6.0":"2020-06-30T23:27:15.831Z","28.6.1":"2020-07-01T09:59:10.084Z","28.7.0":"2020-07-08T06:38:36.216Z","29.0.0":"2020-07-08T06:53:38.331Z","29.1.0":"2020-07-08T06:56:59.071Z","29.1.1":"2020-07-09T06:42:59.501Z","29.1.2":"2020-07-09T07:27:07.308Z","29.1.3":"2020-07-09T17:01:38.997Z","29.1.4":"2020-07-12T09:16:25.838Z","29.2.0":"2020-07-13T11:30:30.672Z","30.0.0":"2020-07-19T03:00:40.439Z","30.0.1":"2020-07-20T14:38:47.111Z","30.0.2":"2020-07-20T15:46:57.260Z","30.0.3":"2020-07-20T21:31:11.789Z","30.1.0":"2020-07-31T03:05:29.489Z","30.2.0":"2020-08-04T06:20:07.206Z","30.2.1":"2020-08-05T01:13:17.524Z","30.2.2":"2020-08-13T08:37:26.426Z","30.2.3":"2020-08-16T02:22:37.597Z","30.2.4":"2020-08-17T15:31:50.269Z","30.3.0":"2020-08-26T00:39:33.686Z","30.3.1":"2020-09-02T04:17:13.994Z","30.3.2":"2020-09-06T02:11:29.968Z","30.3.3":"2020-09-07T11:36:28.440Z","30.4.0":"2020-09-09T00:42:48.603Z","30.4.1":"2020-09-11T18:26:13.425Z","30.4.2":"2020-09-12T11:16:16.729Z","30.5.0":"2020-09-14T08:02:58.150Z","30.5.1":"2020-09-14T08:18:08.727Z","30.5.2":"2020-09-25T11:44:17.541Z","30.5.3":"2020-09-27T03:02:00.973Z","30.6.0":"2020-09-27T11:37:25.091Z","30.6.1":"2020-09-28T12:57:34.539Z","30.6.2":"2020-09-29T14:45:04.385Z","30.6.3":"2020-10-02T17:04:18.195Z","30.6.4":"2020-10-09T01:54:18.813Z","30.6.5":"2020-10-14T00:28:43.374Z","30.7.0":"2020-10-19T13:39:38.288Z","30.7.1":"2020-10-19T14:36:06.072Z","30.7.2":"2020-10-19T15:00:01.111Z","30.7.3":"2020-10-19T16:00:11.271Z","30.7.4":"2020-10-31T06:15:11.498Z","30.7.5":"2020-10-31T06:33:49.587Z","30.7.6":"2020-11-01T05:22:11.932Z","30.7.7":"2020-11-05T04:02:43.803Z","30.7.8":"2020-11-14T11:53:54.574Z","30.7.9":"2020-12-19T01:27:57.053Z","30.7.10":"2021-01-03T01:08:09.371Z","30.7.11":"2021-01-03T03:37:44.540Z","30.7.12":"2021-01-03T15:05:18.847Z","30.7.13":"2021-01-03T15:28:38.528Z","31.0.0":"2021-01-11T10:27:07.495Z","31.0.1":"2021-01-11T10:50:54.982Z","31.0.2":"2021-01-11T12:38:35.671Z","31.0.3":"2021-01-11T16:27:36.935Z","31.0.4":"2021-01-14T15:12:19.085Z","31.0.5":"2021-01-14T23:24:00.825Z","31.0.6":"2021-01-17T11:32:21.132Z","31.0.7":"2021-01-18T07:37:55.291Z","31.0.8":"2021-01-20T05:23:30.946Z","31.1.0":"2021-01-23T03:25:06.678Z","31.2.0":"2021-01-23T05:11:01.798Z","31.2.1":"2021-01-23T06:18:19.704Z","31.2.2":"2021-01-23T15:12:22.629Z","31.2.3":"2021-01-24T13:17:14.748Z","31.3.0":"2021-01-24T14:05:13.471Z","31.3.1":"2021-01-24T14:29:16.624Z","31.3.2":"2021-01-24T14:54:22.215Z","31.3.3":"2021-01-25T07:57:21.416Z","31.4.0":"2021-01-27T10:26:23.769Z","31.5.0":"2021-01-31T09:52:08.184Z","31.6.0":"2021-01-31T16:09:09.401Z","31.6.1":"2021-02-07T10:18:54.104Z","32.0.0":"2021-02-15T04:08:33.819Z","32.0.1":"2021-02-16T03:55:36.983Z","32.0.2":"2021-02-16T23:02:58.537Z","32.0.3":"2021-02-21T02:42:13.959Z","32.1.0":"2021-02-21T03:19:55.321Z","32.1.1":"2021-02-23T01:10:29.150Z","32.2.0":"2021-02-23T09:48:27.279Z","32.3.0":"2021-03-15T10:33:33.481Z","32.3.1":"2021-04-23T01:10:58.264Z","32.3.2":"2021-04-26T14:47:48.647Z","32.3.3":"2021-04-28T00:45:04.333Z","32.3.4":"2021-04-30T01:24:43.577Z","33.0.0":"2021-04-30T02:36:29.272Z","33.1.0":"2021-05-05T09:19:30.121Z","33.1.1":"2021-05-09T14:21:44.460Z","33.2.0":"2021-05-10T12:45:52.403Z","33.3.0":"2021-05-10T14:51:14.394Z","34.0.0":"2021-05-11T00:23:42.333Z","34.0.1":"2021-05-11T12:25:19.911Z","34.0.2":"2021-05-12T01:16:54.984Z","34.1.0":"2021-05-13T22:14:33.014Z","34.2.0":"2021-05-14T01:38:41.747Z","34.2.1":"2021-05-14T04:28:04.383Z","34.2.2":"2021-05-14T07:16:03.636Z","34.3.0":"2021-05-15T15:50:18.929Z","34.4.0":"2021-05-15T16:12:34.044Z","34.5.0":"2021-05-15T16:56:35.242Z","34.6.0":"2021-05-15T17:29:39.150Z","34.6.1":"2021-05-15T23:03:37.107Z","34.6.2":"2021-05-16T16:09:02.805Z","34.6.3":"2021-05-16T18:02:56.515Z","34.7.0":"2021-05-17T16:35:43.356Z","34.8.0":"2021-05-19T02:49:37.523Z","34.8.1":"2021-05-19T04:14:50.888Z","34.8.2":"2021-05-19T16:13:10.633Z","35.0.0":"2021-05-24T08:48:14.931Z","35.1.0":"2021-05-30T13:59:36.997Z","35.1.1":"2021-05-31T09:47:30.187Z","35.1.2":"2021-06-01T01:09:13.760Z","35.1.3":"2021-06-06T09:41:34.031Z","35.2.0":"2021-06-13T02:07:15.736Z","35.3.0":"2021-06-16T03:38:26.316Z","35.3.1":"2021-06-19T03:44:42.980Z","35.3.2":"2021-06-19T06:06:49.269Z","35.4.0":"2021-06-21T11:52:19.350Z","35.4.1":"2021-06-29T00:38:18.146Z","35.4.2":"2021-07-09T03:29:34.325Z","35.4.3":"2021-07-09T23:38:27.617Z","35.4.4":"2021-07-18T05:16:04.143Z","35.4.5":"2021-07-18T07:51:44.788Z","35.4.6":"2021-07-20T03:58:47.251Z","35.4.7":"2021-07-20T04:51:00.585Z","35.5.0":"2021-07-20T07:39:24.675Z","35.5.1":"2021-07-22T08:24:55.906Z","36.0.0":"2021-07-25T02:23:03.174Z","36.0.1":"2021-07-25T02:58:37.113Z","36.0.2":"2021-07-25T03:22:59.707Z","36.0.3":"2021-07-27T01:43:01.283Z","36.0.4":"2021-07-27T14:09:03.821Z","36.0.5":"2021-07-27T22:39:48.206Z","36.0.6":"2021-07-28T06:41:43.846Z","36.0.7":"2021-08-11T09:28:54.815Z","36.0.8":"2021-08-25T03:03:21.312Z","36.1.0":"2021-09-07T14:30:20.138Z","36.1.1":"2021-10-09T02:43:55.622Z","37.0.0":"2021-10-23T03:15:58.287Z","37.0.1":"2021-10-26T01:29:14.751Z","37.0.2":"2021-10-26T06:12:40.960Z","37.0.3":"2021-10-26T09:16:00.195Z","37.1.0":"2021-12-01T06:38:05.678Z","37.2.0":"2021-12-09T12:52:08.103Z","37.2.1":"2021-12-15T00:44:10.511Z","37.2.2":"2021-12-15T13:13:43.452Z","37.2.3":"2021-12-17T05:16:57.120Z","37.2.4":"2021-12-17T16:31:14.389Z","37.2.5":"2021-12-18T01:08:29.268Z","37.2.6":"2021-12-18T03:30:13.572Z","37.2.7":"2021-12-18T04:36:15.890Z","37.2.8":"2021-12-18T04:59:23.008Z","37.3.0":"2021-12-19T09:38:18.094Z","37.4.0":"2021-12-20T07:26:15.969Z","37.4.1":"2021-12-28T14:29:47.987Z","37.4.2":"2021-12-28T15:29:57.633Z","37.5.0":"2021-12-31T10:49:15.918Z","37.5.1":"2022-01-03T13:17:05.250Z","37.5.2":"2022-01-08T11:51:23.762Z","37.6.0":"2022-01-09T11:46:41.184Z","37.6.1":"2022-01-09T14:40:02.780Z","37.6.2":"2022-01-20T23:58:53.934Z","37.6.3":"2022-01-21T14:51:29.531Z","37.7.0":"2022-01-26T01:53:19.425Z","37.7.1":"2022-02-03T11:32:27.185Z","37.8.0":"2022-02-07T18:54:24.945Z","37.8.1":"2022-02-09T13:58:08.079Z","37.8.2":"2022-02-09T16:52:05.274Z","37.9.0":"2022-02-11T17:45:13.730Z","37.9.1":"2022-02-12T14:47:34.000Z","37.9.2":"2022-02-17T09:14:46.909Z","37.9.3":"2022-02-18T02:09:36.887Z","37.9.4":"2022-02-18T08:51:34.396Z","37.9.5":"2022-02-28T13:49:38.201Z","37.9.6":"2022-03-02T00:21:16.689Z","37.9.7":"2022-03-06T14:48:57.241Z","38.0.0":"2022-03-11T15:10:14.010Z","38.0.1":"2022-03-12T00:30:21.566Z","38.0.2":"2022-03-12T01:10:04.195Z","38.0.3":"2022-03-13T13:58:21.927Z","38.0.4":"2022-03-14T23:59:21.267Z","38.0.5":"2022-03-19T09:46:12.096Z","38.0.6":"2022-03-19T12:59:46.878Z","38.0.7":"2022-03-26T06:51:48.418Z","38.0.8":"2022-03-27T11:34:04.358Z","38.1.0":"2022-03-28T00:48:42.776Z","38.1.1":"2022-03-28T05:15:12.575Z","38.1.2":"2022-03-28T09:26:58.087Z","38.1.3":"2022-03-28T09:40:47.755Z","38.1.4":"2022-03-29T11:45:27.893Z","38.1.5":"2022-04-02T04:37:43.732Z","38.1.6":"2022-04-02T08:42:41.395Z","39.0.0":"2022-04-08T01:00:12.896Z","39.0.1":"2022-04-08T14:42:46.932Z","39.1.0":"2022-04-10T06:19:11.483Z","39.1.1":"2022-04-11T23:16:17.167Z","39.2.0":"2022-04-12T13:47:14.550Z","39.2.1":"2022-04-13T11:46:48.140Z","39.2.2":"2022-04-17T00:37:06.679Z","39.2.3":"2022-04-18T22:49:37.502Z","39.2.4":"2022-04-20T01:57:52.225Z","39.2.5":"2022-04-20T09:12:04.987Z","39.2.6":"2022-04-20T21:26:34.662Z","39.2.7":"2022-04-21T07:42:16.705Z","39.2.8":"2022-04-24T07:09:03.959Z","39.2.9":"2022-04-26T00:25:24.298Z","39.3.0":"2022-05-19T07:39:53.550Z","39.3.1":"2022-05-24T00:19:58.789Z","39.3.2":"2022-05-24T11:40:57.432Z","39.3.3":"2022-06-18T03:42:42.497Z","39.3.4":"2022-07-29T16:25:21.934Z","39.3.5":"2022-08-08T21:24:58.133Z","39.3.6":"2022-08-08T21:49:26.491Z","39.3.12":"2022-10-17T17:55:11.233Z","39.3.13":"2022-10-17T20:04:26.306Z","39.3.14":"2022-10-19T00:18:51.576Z","39.3.15":"2022-10-22T16:02:14.197Z","39.3.16":"2022-10-22T17:16:00.233Z","39.3.17":"2022-10-22T17:51:38.134Z","39.3.18":"2022-10-22T21:17:32.753Z","39.3.19":"2022-10-22T21:40:50.042Z","39.3.20":"2022-10-23T01:45:53.811Z","39.3.21":"2022-10-23T13:33:09.646Z","39.3.22":"2022-10-23T16:02:53.963Z","39.3.23":"2022-10-23T20:57:08.142Z","39.3.24":"2022-10-24T13:43:59.294Z","39.3.25":"2022-10-25T17:37:31.851Z","39.4.0":"2022-10-29T23:52:01.115Z","39.5.0":"2022-11-01T23:44:49.458Z","39.5.1":"2022-11-02T15:39:13.775Z","39.6.0":"2022-11-02T16:16:53.672Z","39.6.1":"2022-11-02T20:02:00.935Z","39.6.2":"2022-11-02T20:53:34.847Z","39.6.3":"2022-11-24T16:29:30.284Z","39.6.4":"2022-11-24T22:00:44.625Z","39.6.5":"2023-01-18T16:53:03.567Z","39.6.6":"2023-01-18T16:55:52.967Z","39.6.7":"2023-01-20T01:56:32.280Z","39.6.8":"2023-01-23T23:23:46.033Z","39.6.9":"2023-01-27T07:48:00.662Z","39.6.10":"2023-01-28T15:46:35.684Z","39.7.0":"2023-01-28T17:19:47.235Z","39.7.1":"2023-01-29T04:02:48.745Z","39.7.2":"2023-01-29T04:51:31.995Z","39.7.3":"2023-01-29T05:04:58.789Z","39.7.4":"2023-01-29T05:32:34.211Z","39.7.5":"2023-01-31T14:07:05.155Z","39.8.0":"2023-02-03T15:19:45.110Z","39.9.0":"2023-02-11T14:39:14.990Z","39.9.1":"2023-02-11T15:07:50.935Z","40.0.0":"2023-02-11T15:20:15.380Z","40.0.1":"2023-03-02T17:58:22.054Z","40.0.2":"2023-03-14T03:31:16.991Z","40.0.3":"2023-03-15T11:05:42.750Z","40.1.0":"2023-03-18T19:30:50.527Z","40.1.1":"2023-03-31T12:25:09.013Z","40.1.2":"2023-04-08T20:37:36.726Z","40.2.0":"2023-04-10T21:14:25.210Z","40.2.1":"2023-04-10T21:26:16.606Z","40.3.0":"2023-04-10T22:00:35.143Z","41.0.0":"2023-04-11T15:13:04.894Z","41.1.0":"2023-04-11T15:57:19.700Z","41.1.1":"2023-04-11T18:49:13.818Z","41.1.2":"2023-04-17T03:57:12.122Z","42.0.0":"2023-04-18T06:13:33.998Z","43.0.0":"2023-04-18T06:28:57.224Z","43.0.1":"2023-04-18T13:03:42.824Z","43.0.2":"2023-04-18T13:34:33.471Z","43.0.3":"2023-04-18T13:43:17.815Z","43.0.4":"2023-04-18T19:51:06.034Z","43.0.5":"2023-04-18T20:07:57.023Z","43.0.6":"2023-04-18T21:46:10.453Z","43.0.7":"2023-04-20T15:41:09.956Z","43.0.8":"2023-04-24T16:16:11.114Z","43.0.9":"2023-04-24T16:27:06.523Z","43.1.0":"2023-04-24T16:33:47.363Z","43.1.1":"2023-04-24T22:04:14.346Z","43.2.0":"2023-05-05T15:13:14.944Z","44.0.0":"2023-05-07T21:41:30.024Z","44.0.1":"2023-05-08T19:43:40.032Z","44.0.2":"2023-05-09T13:37:34.330Z","44.1.0":"2023-05-09T22:49:10.995Z","44.2.0":"2023-05-10T11:35:24.018Z","44.2.1":"2023-05-10T13:58:31.443Z","44.2.2":"2023-05-10T16:40:15.407Z","44.2.3":"2023-05-11T22:14:37.050Z","44.2.4":"2023-05-15T14:52:56.886Z","44.2.5":"2023-05-23T11:28:06.072Z","44.2.6":"2023-05-26T09:00:58.696Z","44.2.7":"2023-05-26T10:29:48.482Z","45.0.0":"2023-05-28T15:30:57.688Z","46.0.0":"2023-05-30T19:11:14.409Z","46.1.0":"2023-05-31T17:29:44.427Z","46.2.0":"2023-06-02T17:40:04.618Z","46.2.1":"2023-06-03T16:17:58.360Z","46.2.2":"2023-06-04T03:19:20.933Z","46.2.3":"2023-06-04T13:36:05.807Z","46.2.4":"2023-06-04T20:29:30.314Z","46.2.5":"2023-06-06T14:24:45.678Z","46.2.6":"2023-06-07T10:17:57.348Z","46.3.0":"2023-06-25T23:30:09.181Z","46.4.0":"2023-06-28T00:20:25.321Z","46.4.1":"2023-06-28T22:40:26.754Z","46.4.2":"2023-06-28T23:42:57.770Z","46.4.3":"2023-06-30T17:43:37.964Z","46.4.4":"2023-07-15T13:16:09.116Z","46.4.5":"2023-07-27T08:22:27.474Z","46.4.6":"2023-08-04T18:02:45.854Z","46.5.0":"2023-08-20T18:15:39.811Z","46.5.1":"2023-08-29T23:12:09.137Z","46.6.0":"2023-09-10T17:55:39.312Z","46.7.0":"2023-09-13T22:43:33.319Z","46.8.0":"2023-09-14T17:55:41.049Z","46.8.1":"2023-09-15T14:58:50.230Z","46.8.2":"2023-09-20T23:33:19.371Z","46.9.0":"2023-11-10T03:26:32.724Z","46.9.1":"2023-12-13T21:55:39.244Z","46.10.0":"2023-12-30T13:42:09.026Z","46.10.1":"2023-12-30T13:48:30.439Z","47.0.0":"2023-12-31T18:38:29.191Z","47.0.1":"2023-12-31T19:30:56.406Z","47.0.2":"2024-01-01T06:12:58.651Z","48.0.0":"2024-01-02T17:26:09.556Z","48.0.1":"2024-01-02T17:35:11.400Z","48.0.2":"2024-01-02T22:12:40.068Z","48.0.3":"2024-01-24T22:38:06.632Z","48.0.4":"2024-01-26T01:19:41.073Z","48.0.5":"2024-02-05T20:36:33.154Z","48.0.6":"2024-02-06T17:25:44.998Z","48.1.0":"2024-02-14T07:37:38.134Z","48.2.0":"2024-02-22T13:45:37.109Z","48.2.1":"2024-03-07T09:55:36.909Z","48.2.2":"2024-03-28T03:27:50.898Z","48.2.3":"2024-04-04T23:30:17.766Z","48.2.4":"2024-05-09T14:16:41.137Z","48.2.5":"2024-05-15T16:41:37.654Z","48.2.6":"2024-05-23T16:52:44.165Z","48.2.7":"2024-05-29T16:03:18.889Z","48.2.8":"2024-06-05T20:02:12.902Z","48.2.9":"2024-06-07T00:53:55.511Z","48.2.10":"2024-06-13T15:40:18.268Z","48.2.11":"2024-06-13T17:31:39.260Z","48.2.12":"2024-06-14T07:54:53.668Z","48.2.13":"2024-06-22T07:45:07.181Z","48.2.14":"2024-06-23T04:01:12.491Z","48.2.15":"2024-06-23T04:36:07.080Z","48.3.0":"2024-06-24T00:49:48.462Z","48.4.0":"2024-06-24T11:57:29.997Z","48.5.0":"2024-06-26T08:49:41.716Z","48.5.1":"2024-07-05T02:44:25.164Z","48.5.2":"2024-07-05T04:59:21.513Z","48.6.0":"2024-07-09T23:55:04.267Z","48.7.0":"2024-07-10T18:11:25.006Z","48.8.0":"2024-07-19T15:34:52.905Z","48.8.1":"2024-07-19T21:47:28.865Z","48.8.2":"2024-07-20T13:21:04.878Z","48.8.3":"2024-07-20T14:04:37.935Z","48.9.0":"2024-07-29T06:33:41.016Z","48.9.1":"2024-07-29T08:13:36.637Z","48.9.2":"2024-07-29T08:39:44.555Z","48.9.3":"2024-07-30T06:04:25.730Z","48.10.0":"2024-07-30T10:44:39.036Z","48.10.1":"2024-07-30T10:47:47.378Z","48.10.2":"2024-07-30T20:12:39.329Z","48.11.0":"2024-08-02T07:58:59.695Z","49.0.0":"2024-08-06T23:28:07.688Z","50.0.0":"2024-08-07T13:01:01.020Z","50.0.1":"2024-08-11T04:03:11.594Z","50.1.0":"2024-08-13T10:43:49.596Z","50.2.0":"2024-08-13T17:05:37.840Z","50.2.1":"2024-08-13T20:03:50.561Z","50.2.2":"2024-08-14T14:41:45.227Z","50.2.3":"2024-09-13T09:22:22.809Z","50.2.4":"2024-09-18T23:14:17.116Z","50.2.5":"2024-09-25T23:28:33.645Z","50.3.0":"2024-09-26T14:40:53.551Z","50.3.1":"2024-10-01T09:32:15.184Z","50.3.2":"2024-10-11T22:18:39.743Z","50.4.0":"2024-10-14T09:53:46.611Z","50.4.1":"2024-10-14T15:22:28.935Z","50.4.2":"2024-10-17T09:52:02.543Z","50.4.3":"2024-10-17T09:53:09.872Z","50.5.0":"2024-11-12T11:49:18.406Z","50.6.0":"2024-11-26T13:23:06.121Z","50.6.1":"2024-12-11T00:59:27.236Z","50.6.2":"2025-01-17T10:16:34.888Z","50.6.3":"2025-01-25T05:39:57.490Z","50.6.4":"2025-03-10T21:07:18.557Z","50.6.5":"2025-03-10T23:39:00.541Z","50.6.6":"2025-03-10T23:43:01.990Z","50.6.7":"2025-03-17T09:13:16.869Z","50.6.8":"2025-03-17T16:03:37.424Z","50.6.9":"2025-03-23T14:52:07.662Z","50.6.10":"2025-04-23T12:37:04.350Z","50.6.11":"2025-04-25T11:36:51.056Z","50.6.12":"2025-05-10T13:49:10.540Z","50.6.13":"2025-05-10T14:37:01.204Z","50.6.14":"2025-05-10T18:32:07.888Z","50.6.15":"2025-05-14T11:02:20.409Z","50.6.16":"2025-05-14T12:11:29.119Z","50.6.17":"2025-05-14T16:58:05.900Z","50.7.0":"2025-06-01T04:30:35.580Z","50.7.1":"2025-06-01T20:46:30.290Z","50.8.0":"2025-06-11T11:59:03.246Z","51.0.0":"2025-06-12T17:56:09.819Z","51.0.1":"2025-06-12T17:57:33.500Z","51.0.2":"2025-06-17T20:43:36.709Z","51.0.3":"2025-06-17T20:47:32.267Z","51.0.4":"2025-06-20T21:44:52.730Z","51.0.5":"2025-06-21T00:55:06.659Z","51.0.6":"2025-06-21T02:40:44.604Z","51.0.7":"2025-06-21T04:02:47.396Z","51.1.0":"2025-06-21T05:18:01.065Z","51.1.1":"2025-06-21T11:11:46.898Z","51.1.2":"2025-06-22T10:22:56.116Z","51.1.3":"2025-06-22T21:06:02.218Z","51.2.0":"2025-06-22T21:39:15.541Z","51.2.1":"2025-06-22T22:36:24.419Z","51.2.2":"2025-06-23T20:57:32.337Z","51.2.3":"2025-06-24T05:50:25.435Z","51.3.0":"2025-06-30T00:30:20.021Z","51.3.1":"2025-06-30T01:13:59.394Z","51.3.2":"2025-07-02T00:29:39.980Z","51.3.3":"2025-07-02T13:02:37.342Z","51.3.4":"2025-07-07T09:04:41.088Z","51.4.0":"2025-07-15T14:51:05.998Z","51.4.1":"2025-07-16T13:26:25.520Z","52.0.0":"2025-07-28T01:22:28.914Z","52.0.1":"2025-07-29T21:42:05.967Z","52.0.2":"2025-08-01T00:10:11.489Z","52.0.3":"2025-08-05T22:45:03.705Z","52.0.4":"2025-08-06T08:12:39.469Z","53.0.0":"2025-08-11T18:47:27.082Z","53.0.1":"2025-08-11T20:02:23.370Z","54.0.0":"2025-08-13T02:41:31.316Z","54.1.0":"2025-08-15T02:07:01.042Z","54.1.1":"2025-08-20T01:04:08.848Z","54.2.0":"2025-09-02T08:21:58.332Z","54.2.1":"2025-09-02T12:09:59.350Z","54.3.0":"2025-09-02T19:05:00.827Z","54.3.1":"2025-09-03T08:50:33.467Z","54.4.0":"2025-09-06T09:42:18.208Z","54.4.1":"2025-09-07T14:25:12.506Z","54.5.0":"2025-09-07T15:47:08.536Z","54.6.0":"2025-09-08T12:02:34.118Z","54.7.0":"2025-09-08T12:59:34.813Z","55.0.0":"2025-09-08T13:30:54.781Z","55.0.1":"2025-09-08T22:08:47.084Z","55.0.2":"2025-09-08T22:24:07.610Z","55.0.3":"2025-09-09T01:02:07.402Z","55.0.4":"2025-09-09T12:58:50.714Z","55.0.5":"2025-09-09T13:27:05.601Z","55.1.0":"2025-09-09T15:52:50.602Z","55.1.1":"2025-09-09T16:16:07.106Z","55.1.2":"2025-09-09T23:24:52.612Z","55.2.0":"2025-09-10T08:55:46.133Z","55.3.0":"2025-09-10T17:31:03.744Z","55.4.0":"2025-09-11T01:14:14.714Z","56.0.0":"2025-09-11T03:54:01.742Z","56.0.1":"2025-09-11T04:03:59.784Z","56.0.2":"2025-09-11T05:38:56.165Z","56.1.0":"2025-09-11T12:12:22.007Z","56.1.1":"2025-09-11T12:22:43.965Z","56.1.2":"2025-09-11T12:46:12.035Z","57.0.0":"2025-09-13T10:53:54.323Z","57.0.1":"2025-09-13T11:30:19.275Z","57.0.2":"2025-09-13T11:43:49.629Z","57.0.3":"2025-09-13T14:07:38.698Z","57.0.4":"2025-09-14T00:29:23.838Z","57.0.5":"2025-09-14T03:25:44.021Z","57.0.6":"2025-09-14T06:01:15.624Z","57.0.7":"2025-09-14T07:32:15.671Z","57.0.8":"2025-09-14T12:49:29.190Z","57.0.9":"2025-09-15T19:33:54.583Z","57.0.10":"2025-09-15T20:14:53.890Z","57.1.0":"2025-09-15T22:17:15.710Z","57.1.1":"2025-09-15T23:39:34.358Z","57.2.0":"2025-09-16T01:58:06.996Z","57.2.1":"2025-09-16T02:27:20.374Z","58.0.0":"2025-09-16T07:56:29.573Z","58.1.0":"2025-09-16T10:58:11.796Z","58.1.1":"2025-09-17T10:11:34.261Z","59.0.0":"2025-09-18T09:35:03.266Z","59.0.1":"2025-09-18T12:36:02.653Z","59.0.2":"2025-09-19T02:31:30.494Z","59.1.0":"2025-09-20T01:15:50.794Z","60.0.0":"2025-09-20T11:13:11.444Z","60.1.0":"2025-09-21T13:03:45.411Z","60.1.1":"2025-09-22T08:26:47.088Z","60.2.0":"2025-09-23T08:13:47.878Z","60.3.0":"2025-09-24T07:41:52.674Z","60.3.1":"2025-09-25T05:18:51.310Z","60.4.0":"2025-09-26T10:12:33.666Z","60.4.1":"2025-09-27T07:16:19.113Z","60.5.0":"2025-09-28T04:01:06.132Z","60.6.0":"2025-09-30T18:02:24.201Z","60.7.0":"2025-10-01T11:04:38.975Z","60.7.1":"2025-10-02T07:02:10.473Z","60.8.0":"2025-10-03T21:16:30.787Z","60.8.1":"2025-10-05T06:04:30.085Z","60.8.2":"2025-10-06T00:02:38.940Z","60.8.3":"2025-10-06T18:12:51.377Z","61.0.0":"2025-10-08T01:16:10.324Z","61.0.1":"2025-10-08T16:42:57.700Z","61.1.0":"2025-10-09T23:58:36.176Z","61.1.1":"2025-10-12T14:14:03.248Z","61.1.2":"2025-10-13T15:14:29.523Z","61.1.3":"2025-10-15T00:44:26.451Z","61.1.4":"2025-10-15T03:59:07.378Z","61.1.5":"2025-10-20T10:17:02.476Z","61.1.6":"2025-10-23T16:38:12.204Z","61.1.7":"2025-10-23T17:02:38.442Z","61.1.8":"2025-10-24T21:01:05.689Z","61.1.9":"2025-10-26T15:47:02.050Z","61.1.10":"2025-10-28T17:00:19.340Z","61.1.11":"2025-10-29T18:06:13.891Z","61.1.12":"2025-11-03T14:06:48.779Z","61.2.0":"2025-11-12T10:46:14.492Z","61.2.1":"2025-11-13T12:29:05.942Z","61.3.0":"2025-11-19T12:37:27.970Z","61.4.0":"2025-11-20T19:56:16.081Z","61.4.1":"2025-11-23T04:21:01.382Z","61.4.2":"2025-12-06T15:50:33.250Z","61.5.0":"2025-12-07T15:17:19.349Z","61.7.1":"2026-01-08T14:10:34.143Z","62.0.0":"2026-01-09T00:13:40.681Z","62.0.1":"2026-01-17T13:07:27.863Z","62.1.0":"2026-01-17T22:50:56.919Z","62.2.0":"2026-01-19T15:36:03.836Z","62.3.0":"2026-01-20T17:30:27.953Z","62.3.1":"2026-01-22T20:34:15.075Z","62.4.0":"2026-01-23T16:13:07.258Z","62.4.1":"2026-01-24T16:01:01.106Z","62.5.0":"2026-01-29T19:02:06.612Z","62.5.1":"2026-02-04T19:59:37.521Z","62.5.2":"2026-02-05T12:56:39.711Z","62.5.3":"2026-02-06T22:45:42.772Z","62.5.4":"2026-02-07T18:07:47.716Z","62.5.5":"2026-02-15T00:42:52.036Z","62.6.0":"2026-02-18T03:00:15.795Z","62.6.1":"2026-02-19T11:23:44.713Z","62.7.0":"2026-02-20T10:18:38.231Z","62.7.1":"2026-02-24T09:03:25.743Z","62.8.0":"2026-03-12T01:45:20.164Z","62.8.1":"2026-03-25T22:37:10.436Z","62.9.0":"2026-04-01T08:26:12.560Z"},"readmeFilename":"README.md","homepage":"https://github.com/gajus/eslint-plugin-jsdoc#readme"}