{"maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"keywords":["jsdoc","comments","parser"],"dist-tags":{"latest":"1.4.6"},"author":{"name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me","url":"https://github.com/syavorsky"},"description":"Generic JSDoc-like comment parser","readme":"# comment-parser\n\n`comment-parser` is a library helping to handle Generic JSDoc-style comments. It is\n\n- **language-agnostic** – no semantics enforced. You decide what tags are and what they mean. And it can be used with any language supporting `/** */` source comments.\n- **no dependencies** – it is compact and environment-agnostic, can be run on both the server and browser sides\n- **highly customizable** – with a little code you can deeply customize how comments are parsed\n- **bidirectional** - you can write comment blocks back to the source after updating or formatting\n- **strictly typed** - comes with generated `d.ts` data definitions since written in TypeScript\n\n```sh\nnpm install comment-parser\n```\n\n> 💡 Check out the [Playground](https://syavorsky.github.io/comment-parser)\n\n> 💡 Previous version lives in [0.x](https://github.com/syavorsky/comment-parser/tree/0.x) branch\n\nLib mainly provides two pieces [Parser](#Parser) and [Stringifier](#Stringifier).\n\n## Parser\n\nLet's go over string parsing:\n\n```js\nconst { parse } = require('comment-parser/lib')\n\nconst source = `\n/**\n * Description may go\n * over few lines followed by @tags\n * @param {string} name the name parameter\n * @param {any} value the value of any type\n */`\n\nconst parsed = parse(source)\n```\n\nLib source code is written in TypeScript and all data shapes are conveniently available for your IDE of choice. All types described below can be found in [primitives.ts](src/primitives.ts)\n\nThe input source is first parsed into lines, then lines split into tokens, and finally, tokens are processed into blocks of tags\n\n### Block\n\n```js\n/**\n * Description may go\n * over multiple lines followed by @tags\n * @param {string} name the name parameter\n * @param {any} value the value parameter\n */\n```\n\n### Description\n\n```js\n/**\n * Description may go\n * over multiple lines followed by @tags\n```\n\n### Tags\n\n```js\n * @param {string} name the name parameter\n```\n\n```js\n * @param {any} value the value parameter\n */\n```\n\n### Tokens\n\n```\n|line|start|delimiter|postDelimiter|tag   |postTag|name |postName|type    |postType|description                     |end|\n|----|-----|---------|-------------|------|-------|-----|--------|--------|--------|--------------------------------|---|\n|   0|{2}  |/**      |             |      |       |     |        |        |        |                                |   |\n|   1|{3}  |*        |{1}          |      |       |     |        |        |        |Description may go              |   |\n|   2|{3}  |*        |{1}          |      |       |     |        |        |        |over few lines followed by @tags|   |\n|   3|{3}  |*        |{1}          |@param|{1}    |name |{1}     |{string}|{1}     |the name parameter              |   |\n|   4|{3}  |*        |{1}          |@param|{1}    |value|{1}     |{any}   |{1}     |the value of any type           |   |\n|   5|{3}  |         |             |      |       |     |        |        |        |                                |*/ |\n```\n\n### Result\n\nThe result is an array of Block objects, see the full output on the [playground](https://syavorsky.github.io/comment-parser)\n\n```js\n[{\n  // uppper text of the comment, overall block description\n  description: 'Description may go over multiple lines followed by @tags',\n  // list of block tags: @param, @param\n  tags: [{\n    // tokens.tag without \"@\"\n    tag: 'param',\n    // unwrapped tokens.name\n    name: 'name',\n    // unwrapped tokens.type\n    type: 'string',\n    // true, if tokens.name is [optional]\n    optional: false,\n    // default value if optional [name=default] has one\n    default: undefined,\n    // tokens.description assembled from a siongle or multiple lines\n    description: 'the name parameter',\n    // problems occured while parsing this tag section, subset of ../problems array\n    problems: [],\n    // source lines processed for extracting this tag, \"slice\" of the ../source item reference\n    source: [ ... ],\n  }, ... ],\n  // source is an array of `Line` items having the source\n  // line number and `Tokens` that can be assembled back into\n  // the line string preserving original formatting\n  source: [{\n    // source line number\n    number: 1,\n    // source line string\n    source: \"/**\",\n    // source line tokens\n    tokens: {\n      // indentation\n      start: \"\",\n      // delimiter, either '/**', '*/', '*', or ''. Mid lines may have no delimiters\n      delimiter: \"/**\",\n      // space between delimiter and tag\n      postDelimiter: \"\",\n      // tag starting with \"@\"\n      tag: \"\",\n      // space between tag and type\n      postTag: \"\",\n      // name with no whitespaces or \"multiple words\" wrapped into quotes. May occure in [name] and [name=default] forms\n      name: \"\",\n      // space between name and type\n      postName: \"\",\n      // type is has to be {wrapped} into curlies otherwise will be omitted\n      type: \"\",\n      // space between type and description\n      postType: \"\",\n      // description is basicaly rest of the line\n      description: \"\",\n      // closing */ marker if present\n      end: \"\"\n    }\n  }, ... ],\n  // problems occured while parsing the block\n  problems: [],\n}];\n```\n\nWhile `.source[].tokens` are not providing readable annotation information, they are essential for tracing data origins and assembling string blocks with `stringify`\n\n### options\n\n```ts\ninterface Options {\n  // start count for source line numbers\n  startLine: number;\n  // escaping chars sequence marking wrapped content literal for the parser\n  fence: string;\n  // block and comment description compaction strategy\n  spacing: 'compact' | 'preserve';\n  // tokenizer functions extracting name, type, and description out of tag, see Tokenizer\n  tokenizers: Tokenizer[];\n}\n```\n\nexamples\n- [default config](https://syavorsky.github.io/comment-parser/#parse-defaults)\n- [line numbers control](https://syavorsky.github.io/comment-parser/#parse-line-numbering)\n- [description spacing](https://syavorsky.github.io/comment-parser/#parse-spacing)\n- [escaping](https://syavorsky.github.io/comment-parser/#parse-escaping)\n- [explore the origin source](https://syavorsky.github.io/comment-parser/#parse-source-exploration)\n\n[suggest more examples](https://github.com/syavorsky/comment-parser/issues/new?title=example+suggestion%3A+...&labels=example,parser)\n\n## Stringifier\n\nThe stringifier is an important piece used by other tools updating the source code. It goes over `Block.source[].tokens` items and assembles them back to the string. It might be used with various transforms applied before stringifying.\n\n```js\nconst { parse, stringify, transforms: {flow, align, indent} } = require('comment-parser');\n\nconst source = `\n  /**\n   * Description may go\n   * over multiple lines followed by @tags\n   *\n* @my-tag {my.type} my-name description line 1\n      description line 2\n    * description line 3\n   */`;\n\nconst parsed = parse(source);\nconst transform = flow(align(), indent(0))\nconsole.log(stringify(transform(parsed[0])));\n```\n\n### Result\n\n```js\n/**\n * Description may go\n * over multiple lines followed by @tags\n *\n * @my-tag {my.type} my-name description line 1\n                             description line 2\n *                           description line 3\n */\n```\n\nexamples\n- [format comments](https://syavorsky.github.io/comment-parser/#stringify-formatting)\n\n[suggest more examples](https://github.com/syavorsky/comment-parser/issues/new?title=example+suggestion%3A+...&labels=example,stringifier)\n\n## Migrating from 0.x version\n\nCode of pre-1.0 version is forked into [0.x](https://github.com/syavorsky/comment-parser/tree/0.x) and will phase out eventually. Please file the issue if you find some previously existing functionality can't be achieved with 1.x API. Check out [migration notes](migrate-1.0.md).\n","repository":{"type":"git","url":"git+ssh://git@github.com/yavorskiy/comment-parser.git"},"users":{"pandao":true,"panta82":true},"bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"license":"MIT","versions":{"0.1.0":{"name":"comment-parser","version":"0.1.0","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.1.0","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"e00ca1f468c5334877fb4ee75c9971f462b94048","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.1.0.tgz","integrity":"sha512-wnYKZMiTWj6q5tTkgNRGDVyYiuPDpBnL/WVfzzPVgkdLWiQ7cYBS0SOx1Mz2UgbPqDiT6PQXErZ+EYwRykQMvA==","signatures":[{"sig":"MEUCIGW3xFl7gxG+gZXudgGdrOimPNFDdIOLg1qN5SjfXqCbAiEAxMZ/AxEr5iyfd1ExU5JTLDsZnSn/ZVhubGvG7WEG6WI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"mocha tests/*"},"_npmUser":{"name":"anonymous","email":"yavorskiy.s@gmail.com"},"repository":{"url":"git@github.com:yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"1.3.14","description":"Generic JSDoc-like comment parser.","directories":{"test":"tests"},"dependencies":{"lodash":"~2.4.1","event-stream":"~3.1.0"},"devDependencies":{"chai":"~1.9.0","mocha":"~1.17.1"}},"0.1.1":{"name":"comment-parser","version":"0.1.1","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.1.1","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"4da06f600d0fd5622d4813be242c1490b24a151d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.1.1.tgz","integrity":"sha512-t4gksR4m21gbmqV1PFLYdk3zFJwpW1+Uolpf494wA/wXcsoYnygBmPpnkwKePsqswhIAbgTpGSEJeL8eugxMzA==","signatures":[{"sig":"MEUCIQDhBS6XOaatTuuURQZXwLq4oNBvo7P3ex3lboIvaIKFkAIgTDk+PMOt4jcCdS9+gvF769u1buNrsI01Kvbm6O8PDy0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"mocha tests/*"},"_npmUser":{"name":"anonymous","email":"yavorskiy.s@gmail.com"},"repository":{"url":"git@github.com:yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"1.3.14","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"dependencies":{"lodash":"~2.4.1"},"devDependencies":{"chai":"~1.9.0","mocha":"~1.17.1"}},"0.1.2":{"name":"comment-parser","version":"0.1.2","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.1.2","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"43420460369d723963142f13c457a4d81c2facf7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.1.2.tgz","integrity":"sha512-NZLUUsYnwZEI/i67y1RTtKGvT6zibHMsvUkvC2X+6g2XMiUmHo3a/ZwNO/K08AzsdEnc7zUkItY2Ib0oaZ7y+g==","signatures":[{"sig":"MEYCIQCeSyuvaiY4aen1l8goy1j41ylarNNObvndeldhCsnUsgIhAPx+NB+HO4lQtUwQ91nHG/x9PXrK0QG+9CkjUrybfSCt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"mocha tests/*"},"_npmUser":{"name":"anonymous","email":"yavorskiy.s@gmail.com"},"repository":{"url":"git@github.com:yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"1.3.14","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"dependencies":{"lodash":"~2.4.1"},"devDependencies":{"chai":"~1.9.0","mocha":"~1.17.1"}},"0.2.0":{"name":"comment-parser","version":"0.2.0","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.2.0","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"da18efa028982f41d112cac64a191c4a4b77a164","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.2.0.tgz","integrity":"sha512-As3aszUNoX3dINmsGWvryjBM8D3+qNCmW7wX6xpVjix4yS25ui/H2wW7nYpO7gfHLc6yuvnn77zD9BvmjjGPYg==","signatures":[{"sig":"MEYCIQDRE/QehZS8L3rmh4Lq2AUAOEAejZ9OvlvMbX0fXwir+wIhANzRjDxRQyYR6Kl2c+Tu9u27OQ1XFLcokJ0bKZtDQ70c","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"da18efa028982f41d112cac64a191c4a4b77a164","gitHead":"6fbf854082e875b6f54ef3611938a5ac30630e1b","scripts":{"test":"mocha tests/*"},"_npmUser":{"name":"anonymous","email":"yavorskiy.s@gmail.com"},"repository":{"url":"git@github.com:yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"1.4.13","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"dependencies":{"lodash":"~2.4.1"},"devDependencies":{"chai":"~1.9.0","mocha":"~1.17.1"}},"0.2.1":{"name":"comment-parser","version":"0.2.1","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.2.1","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"48c296c5bddc3d716ece79381f31bbd20867c3f2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.2.1.tgz","integrity":"sha512-iRyGPDqgznwqZhiY+T2Aec9GQy1b7mNBmIx3HgIBtXLbjtutm86WfEYH7rM1sk57PTnc3eNKQNjwOGWtOyL5ig==","signatures":[{"sig":"MEQCIE+RExMLi9JnTFdUu940ZhR2G5wjqT8PH1t4jYWZTITyAiAkDJRa8h9FTDAwF+7E+kv0mATPUcP4facnYjpMhqC1/A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"48c296c5bddc3d716ece79381f31bbd20867c3f2","gitHead":"a885ae3580dfc9f9fb4ff886c11c363b2f4b9c65","scripts":{"test":"mocha tests/*"},"_npmUser":{"name":"anonymous","email":"yavorskiy.s@gmail.com"},"repository":{"url":"git@github.com:yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"1.4.13","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"dependencies":{"lodash":"~2.4.1"},"devDependencies":{"chai":"~1.9.0","mocha":"~1.17.1"}},"0.2.2":{"name":"comment-parser","version":"0.2.2","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.2.2","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"59ee350cfe837021831235c711bd7874ad4ddb4a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.2.2.tgz","integrity":"sha512-U6TgYpV72eF0dyDtSzFeKz/xjIjPBCVBgAx/uXujVQ0qyUPfUlMe3zfoezswetMDBsKIawmJqpzgxrceCQMUOQ==","signatures":[{"sig":"MEUCIQCjtRtxf+KEktNrECV64CsEikTZ3IgtxdGHWIOxBhCZIwIgBiaIJinT01hI2aM5cxpFEgWEK6PMjgvjb8QiO0yix90=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"59ee350cfe837021831235c711bd7874ad4ddb4a","gitHead":"bc8a7822f03eba1d38c4779989c0590f0fe87aaa","scripts":{"test":"mocha tests/*"},"_npmUser":{"name":"anonymous","email":"yavorskiy.s@gmail.com"},"repository":{"url":"git@github.com:yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"1.4.13","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"dependencies":{"lodash":"~2.4.1"},"devDependencies":{"chai":"~1.9.0","mocha":"~1.17.1"}},"0.2.3":{"name":"comment-parser","version":"0.2.3","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.2.3","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"8d91ef5b748dc147a2209da214e186b28f0ea87a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.2.3.tgz","integrity":"sha512-p7s48vJ18z/rxRs2e9x2IgNx5o7QGOG157u6jVXWvFxzNSndNOuxOrn2NXMjHbZaB6Yytz3gvWR0mdAN5YLc7Q==","signatures":[{"sig":"MEYCIQD6sZuYEagXDfQTHD5oq6HEGvYGMx3lkyXjDl3nz8P9sAIhAOCKX73lQjCbLuAf9C9+F3itOR0SV5GSuKoBES6FPJ6e","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8d91ef5b748dc147a2209da214e186b28f0ea87a","gitHead":"2b221cd9d9f0e6230304e2da9c9136e73ee8984f","scripts":{"test":"mocha tests/*"},"_npmUser":{"name":"anonymous","email":"yavorskiy.s@gmail.com"},"repository":{"url":"git@github.com:yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"1.4.13","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"dependencies":{},"devDependencies":{"chai":"~1.9.0","mocha":"~1.17.1"}},"0.2.4":{"name":"comment-parser","version":"0.2.4","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.2.4","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"ba753c7e08e4d50ab4011cb1d4be5831ec17be99","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.2.4.tgz","integrity":"sha512-qOdAYGHpHycpE9vE0a3mO9WH11lFjGaH1AUEEk8dq8GxOYFn0Sc3/6AdxtpuYzw74r9jtnRBaaVuSAlqVTn4FQ==","signatures":[{"sig":"MEYCIQCMQwfV7/4/48mtnHKTyzUZOAwxuWwHBjm8ubUIQhnRswIhANDnqXX5WdHyDZdIHumEnrPDyYNdb+ZjmL4LY4Ndnrvy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ba753c7e08e4d50ab4011cb1d4be5831ec17be99","gitHead":"cc52b71ae3233493e4e1df813b978d25dea5cb1a","scripts":{"test":"mocha tests/*"},"_npmUser":{"name":"anonymous","email":"yavorskiy.s@gmail.com"},"repository":{"url":"git@github.com:yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"2.1.10","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"0.10.33","dependencies":{},"devDependencies":{"chai":"~1.9.0","mocha":"~1.17.1"}},"0.3.0":{"name":"comment-parser","version":"0.3.0","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.3.0","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"797f2b86628915a5ad045b6aa57d42720509e657","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.3.0.tgz","integrity":"sha512-5uBGcGG2RfrzWY/22KPbxhr9tW4YMJHZ4U0JuAA71t0lQvh39uNvubkBeIH1J927nO30sbK6DwDe0D1Pqzlz+Q==","signatures":[{"sig":"MEUCIQDdHCvRBRkRi7rjAwyA9vymC96XeM6KpiwTbuwLGeyjlgIgX4+zK04x5PqYnfUsjqzWjE05u5sxOJqp3fkY8hB7WGQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"797f2b86628915a5ad045b6aa57d42720509e657","gitHead":"49f191f066f6d57bc5239ce9a1d39149f0143884","scripts":{"test":"jshint --reporter node_modules/jshint-stylish/stylish.js index.js && mocha tests/*","watch":"nodemon -q -w index.js -w tests/ -x npm test"},"_npmUser":{"name":"anonymous","email":"yavorskiy.s@gmail.com"},"repository":{"url":"git@github.com:yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"2.1.10","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"0.10.33","dependencies":{},"devDependencies":{"chai":"~1.9.0","mocha":"~1.17.1","jshint":"^2.5.10","nodemon":"^1.2.1","jshint-stylish":"^1.0.0"}},"0.3.1":{"name":"comment-parser","version":"0.3.1","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.3.1","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"fd657aac8c1492d308c9a6100fc9b49d2435aba1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.3.1.tgz","integrity":"sha512-885SYP/4NbL2fyoEiH2gY6CY3psCdoGOCXOEZ6M4J2SCBxnekCuKAThjIDKrKMKfgoKW8DnFyqgEDBqKis9/zA==","signatures":[{"sig":"MEUCIGZtXNdaMAhsB/XbDFPR26WyP4g/A4TGujPmXdyIjbQxAiEAp+KqdExCgxKRvyewO2wnBLtBVOwlskrJaVjhGeo2btA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"fd657aac8c1492d308c9a6100fc9b49d2435aba1","gitHead":"a4c62837c1a2bf2399379de23268b442ccc51db5","scripts":{"test":"jshint --reporter node_modules/jshint-stylish/stylish.js index.js && mocha tests/*","watch":"nodemon -q -w index.js -w tests/ -x npm test"},"_npmUser":{"name":"anonymous","email":"yavorskiy.s@gmail.com"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"2.11.3","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"0.12.7","dependencies":{"readable-stream":"^2.0.4"},"devDependencies":{"chai":"~1.9.0","mocha":"~1.17.1","jshint":"^2.5.10","nodemon":"^1.2.1","jshint-stylish":"^1.0.0"}},"0.4.0":{"name":"comment-parser","version":"0.4.0","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.4.0","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"b274a3c924b6b2e55768f712acd3e3003cb55f57","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.4.0.tgz","integrity":"sha512-md7oaRH5lKlcI7v2sr+LCDV8NYBN9sHf9yUJz/kgYRe1PQ5miOpLSp4mIxR5FuobgbU6vvgz9nCv8POtZGlrXA==","signatures":[{"sig":"MEYCIQD35XyQ1enm7WCYj4oTg34Jb7ZpX1fBG9AQuikVqyNdXwIhAPnCjMeikbJPRK4rlTwAI9TdjpHEwq+kdu49+QsKR6na","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b274a3c924b6b2e55768f712acd3e3003cb55f57","gitHead":"7fa0cd73f9ed23c5b7e9f0258301a776c663b521","scripts":{"test":"jshint --reporter node_modules/jshint-stylish/stylish.js index.js && mocha tests/*","watch":"nodemon -q -w index.js -w parser.js -w tests/ -x npm test"},"_npmUser":{"name":"anonymous","email":"yavorskiy.s@gmail.com"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"2.11.3","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"0.12.7","dependencies":{"readable-stream":"^2.0.4"},"devDependencies":{"chai":"~1.9.0","mocha":"~1.17.1","jshint":"^2.5.10","nodemon":"^1.2.1","jshint-stylish":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser-0.4.0.tgz_1454957370745_0.3444726690649986","host":"packages-6-west.internal.npmjs.com"}},"0.3.2":{"name":"comment-parser","version":"0.3.2","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.3.2","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"3c03f0776b86a36dfd9a0a2c97c6307f332082fe","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.3.2.tgz","integrity":"sha512-589emAvz7K/5YfZom/6i96vbx6IapXJJ9HzAuqR1qskxeYdJeyId0KQCgXrSh3R1x8tVWW62Wl6T1uRGC9S51Q==","signatures":[{"sig":"MEYCIQDiVAIscFfNdSSmCevS2k9YalCaiDVA4e+8+64enc+qHAIhAO+xAdPPrKLlIZSSz+3p8dJaUyzzp3cDxEnmHBWlmaGP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"3c03f0776b86a36dfd9a0a2c97c6307f332082fe","gitHead":"3ead3322c1b782d1d6f776fa1e20664ef57632bb","scripts":{"test":"jshint --reporter node_modules/jshint-stylish/stylish.js index.js && mocha tests/*","watch":"nodemon -q -w index.js -w parser.js -w tests/ -x npm test"},"_npmUser":{"name":"anonymous","email":"yavorskiy.s@gmail.com"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"3.10.8","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"6.9.1","dependencies":{"readable-stream":"^2.0.4"},"devDependencies":{"chai":"~1.9.0","mocha":"~1.17.1","jshint":"^2.5.10","nodemon":"^1.2.1","jshint-stylish":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser-0.3.2.tgz_1499877573474_0.9505084389820695","host":"s3://npm-registry-packages"}},"0.4.1":{"name":"comment-parser","version":"0.4.1","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.4.1","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"cec7a6c3e3137aba3e04d8f7b65145597f66188f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.4.1.tgz","integrity":"sha512-ZxtoMuc4eaQWuNBoafRxBBI695LyMytVyarht8Kp3QRgkb/QB5LezWujdLHtr2AuywIAkPdsFroA+tGuZvHM1w==","signatures":[{"sig":"MEQCIBTHWnJEZfifySWpnXmhVsZv4LcIAhXssJUftc6VbulxAiAzjhBdxCjo1LxUgqQXQE4ZPx3o75ZST66kKqxXsv9fmQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"cec7a6c3e3137aba3e04d8f7b65145597f66188f","gitHead":"18c957ce4664aac2d6e8140be74ecfb84fa27fd4","scripts":{"test":"mocha tests","watch":"nodemon -q -i node_modules -x npm test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"yavorskiy.s@gmail.com"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"3.10.8","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"6.9.1","dependencies":{"readable-stream":"^2.0.4"},"devDependencies":{"chai":"~1.9.0","mocha":"^3.5.3","eslint":"^4.7.1","nodemon":"^1.2.1","eslint-plugin-node":"^5.1.1","eslint-plugin-import":"^2.7.0","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser-0.4.1.tgz_1505805629521_0.029222230659797788","host":"s3://npm-registry-packages"}},"0.4.2":{"name":"comment-parser","version":"0.4.2","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.4.2","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"fa5a3f78013070114866dc7b8e9cf317a9635f74","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.4.2.tgz","integrity":"sha512-MXiziwGzPopasDbc8g1pk7xxemubCbLdoS7l/nRKPpBvys8PbH/HEY5DybYgCF13V5DAjL9Q+NCkxg4Kjjt77A==","signatures":[{"sig":"MEYCIQCRbqDIoM7xkAMrdC6ZwGLl5JDvlJ7TNZx00ZMqQCN3RwIhAOXetDR+xOb3njLfWbsD1+lwGjspudOlfpalRuX/QMJm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"fa5a3f78013070114866dc7b8e9cf317a9635f74","gitHead":"7f706901a0aa3ac39ec3d8613b85df5220fbc6d4","scripts":{"test":"mocha tests","watch":"nodemon -q -i node_modules -x npm test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"yavorskiy.s@gmail.com"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"3.10.10","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"6.11.3","dependencies":{"readable-stream":"^2.0.4"},"devDependencies":{"chai":"~1.9.0","mocha":"^3.5.3","eslint":"^4.7.1","nodemon":"^1.2.1","eslint-plugin-node":"^5.1.1","eslint-plugin-import":"^2.7.0","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser-0.4.2.tgz_1506212774449_0.9942353118676692","host":"s3://npm-registry-packages"}},"0.5.0":{"name":"comment-parser","version":"0.5.0","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.5.0","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"e833701804308eedef96c0b5029375b07f4eba1e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.5.0.tgz","integrity":"sha512-sNM+U6+Kme4WDxjVJ+1N92BQm5SC0RbFD4TLXLJ+hThX3crW1q+7ObjUhylMYAjR/rWdB+7ZNLPjujVbGruHGQ==","signatures":[{"sig":"MEUCIQCwC9xjPQ4wA/Tozhqxgt/lOEVFzYj6ZybndSMr7AM1lwIgWg0nVA8VobsbMV9Y/Qvs0L1g2tyZmeInOkrFZ93N7us=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","gitHead":"55e2f22c21a7bfb58c5810d0d50cb2ab7df9ce3d","scripts":{"test":"mocha tests","watch":"nodemon -q -i node_modules -x npm test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"yavorskiy.s@gmail.com"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"5.5.1","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"6.11.3","dependencies":{"readable-stream":"^2.0.4"},"devDependencies":{"chai":"~1.9.0","mocha":"^3.5.3","eslint":"^4.7.1","nodemon":"^1.2.1","eslint-plugin-node":"^5.1.1","eslint-plugin-import":"^2.7.0","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser-0.5.0.tgz_1510197046990_0.21625039563514292","host":"s3://npm-registry-packages"}},"0.5.1":{"name":"comment-parser","version":"0.5.1","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.5.1","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"041fb38d943ba99b700aff44c13958681eb89adc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.5.1.tgz","fileCount":15,"integrity":"sha512-6RIp9+7yxmrTjwa1S+fv2eZ2x/ta81pdhOBmRtkY+0o+3tdquvPWqARAv6djmk0YSsAzpx7UgeHcvSv7bHQYCA==","signatures":[{"sig":"MEQCIEY+0dXxHtljzS2uhBqBOJJFiW/2JYBTFv8vjvShhPB3AiAopcYRiP83IVIOXAHkUTVGsokDIa18E+7e33f7WTFrXA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46130,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcDY8sCRA9TVsSAnZWagAAfL4P/26E92JIHwXBhAs/s9W4\nZS3nVybaR3ha3C9O4ae/FT3dQf/94YdXpV+xeXt2jFYpGlkHTn9N0fAsqsuk\nZURZCcOk54EfnDdf9rJCEudsm+OopC7GzBDubY/orGq09X8lVa+/hjMcaH/v\n3t/+dil3MYfvpwW5waonIXFCbtRvflYKJ5RJGa6fQ0aX1vo4I/pq+Bw58m6W\ng4ZfCrz1JVKnhh5lzbR0gixEZNJ7svRSJKjrVtGFO6qQd7UVs7942slY/5n5\nUuTe0hpZZYVNY1c4V4/cq1dKus5LLoYG0MQdlYx2JJK3zMwBMl34c8brAYI1\nQi1fYEHdqoU3SfNZX6s6pxQINhzj/Wp1BrBRXODZP7hF+uNjfVyNUyNdWV7P\nezF+hHnplLaSG/P/2j2K0VjlLZSQWRl9sJ73GlOkeQSneaj1GumhMvn8YpIe\nA+GmsOgnUeeXcgR1iFtMl2qCVVZY01ZMN4p9soXXU/kxPrkD9/bwpkpv+LP2\nzbXAIZ4L+SFM+eiWfOBoE909uQw5b1ADNyUuNM+0+zQr1D6t4noHmLJJX4fX\nLn6wFxoM7m44UM0VphJ1sFsWdRjStwIhaOgIXATclV/HSeYVx/EFHbTY8FzW\ntQSgVAK8bbL/z+pQ6w2Oao9ZV3GoUjq9OcprFTHfBcmNRc0zzb5Q6vvIJZcf\nAvro\r\n=MyMm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"f507a98e3a0dbae132188cf4a8ef048ad004aeae","scripts":{"test":"mocha tests","watch":"nodemon -q -i node_modules -x npm test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.4.1","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"8.12.0","dependencies":{"readable-stream":"^2.0.4"},"_hasShrinkwrap":false,"devDependencies":{"chai":"~1.9.0","mocha":"^3.5.3","eslint":"^4.7.1","nodemon":"^1.2.1","eslint-plugin-node":"^5.1.1","eslint-plugin-import":"^2.7.0","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_0.5.1_1544392491742_0.42352785595869746","host":"s3://npm-registry-packages"}},"0.5.2":{"name":"comment-parser","version":"0.5.2","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.5.2","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"97366ee0e282289806d9ed7c18f61c1614aa8235","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.5.2.tgz","fileCount":16,"integrity":"sha512-eM49LIvTHTBZWD53DTs+VYdsnCZRhLaqC4M2pQVVwkXsiZQ9i/axb+F7uyMQ0RQG1cRytan1V29Y6ir59CwnGw==","signatures":[{"sig":"MEYCIQDWy20zNlGdtyDfsMW6KWKShPSBGlEVTr5/24g6NVzsAQIhAOhBmNpcKdFSe4pJmYL6q5ou99lUoC60aSy46Raz95uT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48716,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLJH3CRA9TVsSAnZWagAAiiEQAIa9zUBbPHBiUWe5lwae\nHQd55+A11kxxKyTvwTmvBVwGOblRZ9gfDoUbc/pUYhG3xykLFXavc/mTkDrV\nlczN9xqSh++/xr41cLA0f3Kg0+zayg84oesLXq/1QpaHVtWNpgN+AKsmyfR1\nz+A1g/+intNTmRjn03/KIPW/6cJ397FUMq8lypnh8xCiOQ2FViQ0vDsLHK1m\nFez9jTRPVOVkDZn8l8r1ziWlmz5v0YgYq0ZNaN4giv+u7ssqskyiGdrTqg6D\nZveHYTtj1CsDWgG5uE8hHsBaYFFgdNWhOc5yw6jjIxQWgK+Fq/iMFFuBotC5\nqWEIDKuDccAA3/3QDSo/443VVCkjvZT3msG7bZH+y7eo2OHsX32Wwjb53O5R\nMHQoXoT2b59kPddrI9X46TMoQ+QO0Eudd5ptPpKCQ1lXzsDWA/daz95mcFuV\nfzZOXuXFFA+vkXzXowEDFxHo0dfwnqrxpik+Yg+7mmIYUMLUPXFWrZAheJlE\njVM1piHq6Mbsp9PPes8QxAaZ44pvEnzTa7A3yD6N1XEFcZ79LH+t7K8cLIXy\neqr8AQnwWudMt4NeCaoPmnZKq2cvUdd7naPBcg6FicQ2A7OGiIHQtTVWQoOp\njjq1I3VpIiVsMcBr0VuJhBmuPaxKiJROOfGm8v6AQmf07tklVdM16QmEy1Ov\ncG73\r\n=3huC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"061940fb63f3b10fbd9073da4c02e98c6435bf0c","scripts":{"test":"mocha tests","watch":"nodemon -q -i node_modules -x npm test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.4.1","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"11.3.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","mocha":"^5.2.0","eslint":"^4.7.1","nodemon":"^1.18.9","eslint-plugin-node":"^5.1.1","eslint-plugin-import":"^2.7.0","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_0.5.2_1546424822528_0.2607447312606832","host":"s3://npm-registry-packages"}},"0.5.3":{"name":"comment-parser","version":"0.5.3","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.5.3","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"9faf401d63f0d526c79a8417ceab171259795912","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.5.3.tgz","fileCount":16,"integrity":"sha512-PNUSG0TTJSgJ60mCo4YLNtI/Sl+dLSru1jQjagjVldQJijUuC/gk79CVyQYb9FX/9Sv1bKy8vnadr5b7WNIZBA==","signatures":[{"sig":"MEUCIQDsHJy8EYz8/PGTDKSiMTkAz4JkCRh7JmuB6lXo0LRC3gIgFBq70RV4silKmSl0wB/nYgFs3Z1sg5Ul6ovlvmblzdE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48969,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcMkRVCRA9TVsSAnZWagAAbHEP/Reh+QwpM+ldpkcosOAP\nh8wsUkANnMEA/fO/cg2UaAXYW0cpCUk8E9ytaZXRtoPZSZMHvMKGflhbU255\nQuKIlpU6ZAaIAamAK6KhknKjKCgo90fqaPsxc2m5UNSW1J/swwBN7RZXeSkV\nPLqTAFNbHEPiHIJV65cj4xk6rWu093uVvlUMVb8Ss3UZwiI3lwkb+R8e4gSU\n9uOwYcxJvURNKQtF1amShMfxd0rnbn6UX7sAioaV36hjSd7SqC8F1sQQncMZ\nyyh3QbIdxrdLlH/VAVRq9ZAIfffvuD3F4/UEAUiG3u69hxBp81VzpKE6hv9E\nejLjaogtADyyJ3yA4wWZojnMtsfqx5vPRv+uZAt18TqtzfQZ9PbgOqGVectm\ntsMrYktFNBVStlhdX6MICx7IZrY5/b8X/8HSdFlajfDWBHTZqH84zTDRE6xY\nuxcqLAQ1cjXunrmz6nA28FLk0m/1qMrkaUe7/4jCUz0bgiM0BTrFyqBIGaVT\nhA8eSEInnfpG4ltiu1IdpJx8Wm7Eo14kRsDxsCARS9kOPkzIW2zGAVbMZxIM\nm3GX2V1WHmlRpwQ3sZr7kK1vqguL3sMPlpjMYNM0d7phNicTAYa8XGCp9XuN\nMqFLPBGMd6x/I96Lmg+FbRnsxU5Oimu5R47AQwa+9GVIz8JY1trBdd+5HiR5\n3AOZ\r\n=lMq6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","gitHead":"1ee2815231b5592680094098ce9641f0efc77e5d","scripts":{"test":"mocha tests","watch":"nodemon -q -i node_modules -x npm test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.4.1","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"11.3.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","mocha":"^5.2.0","eslint":"^4.7.1","nodemon":"^1.18.9","eslint-plugin-node":"^5.1.1","eslint-plugin-import":"^2.7.0","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_0.5.3_1546798164531_0.7300579034599246","host":"s3://npm-registry-packages"}},"0.5.4":{"name":"comment-parser","version":"0.5.4","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.5.4","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"089840b9cccacad2b769b231ed43081d501b9487","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.5.4.tgz","fileCount":16,"integrity":"sha512-0h7W6Y1Kb6zKQMJqdX41C5qf9ITCVIsD2qP2RaqDF3GFkXFrmuAuv5zUOuo19YzyC9scjBNpqzuaRQ2Sy5pxMQ==","signatures":[{"sig":"MEUCIQCNKPol6evswhPVMr8ugf9W+1fSN2hvM/aCSJoqmzpAaAIgXsnk/uzmKjACT3qGYP8R9BdJ0lE+6Q9jZn3ikPz4SQw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52110,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcMyyaCRA9TVsSAnZWagAAwjwQAJACjqvq42N2ggKrh3WB\n5C/Tfr2JQ9DOp9571ftMRWaaXvS3Fo8LuHWIIxtBIiwGhCkMC/U65XLSDzdH\nW3UadJEOObmmm7aPn332lv8C3Y3nCu5YcwA4uOiow56R1IdWJBwo1yHTAXXO\nJR4UP2D4GEVz09Kv+f6Fx5injSb2OXlTsIihiy57QlQhrFTlt+17k2LsBE4x\n9r6ljqug9DaLMVJqcIeUufv4mpM/RyU1C8SruwWa4XbXVuQVsjMOSnA/6X6z\n59oHuKQbkgry+iFdP5QcSqgs135qiv4xipmq1AZwML5KJwxMRhiTzac7aBH9\nyA7qShAeHPRfVOxN/nnmzcCeYF0Mvkq8LL+OdmBZ6X9AeD+dBeWf4GUK9B9r\n8PL7zyvtDMFRxLkzIFc2brFgUSwFcCqtJadYvCOa2ocqk2wJjCy3WcxWA7aS\neFpirBpazadQHyS4NjlLN81q61DIeT6ko+KfiHyExozkU1ZSfXHt2z2pgRNq\n78xvZmYZCPiv2yYQicWfWgCHV2Q+saa3WxbfwbCOpk36x6Cyb4HI6/iRsfi/\nUeKoFMiAmryzkR279X4AEon+CClJ7ieP+KUO+uBBFMvp6ajGRP/IOX03E2uA\nk7tCPdYgtJzpmPJYZeihMelezrmawpTvUjWCqZIKZFxWrjlnH1X5kGus5kOV\n5o5D\r\n=PuUG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","gitHead":"afd22382dcec49ce71f8bd9863d431d2291485a8","scripts":{"test":"mocha tests","watch":"nodemon -q -i node_modules -x npm test","pretest":"eslint ."},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.4.1","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"11.3.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","mocha":"^5.2.0","eslint":"^4.7.1","nodemon":"^1.18.9","eslint-plugin-node":"^5.1.1","eslint-plugin-import":"^2.7.0","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_0.5.4_1546857625714_0.7279094778375019","host":"s3://npm-registry-packages"}},"0.5.5":{"name":"comment-parser","version":"0.5.5","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.5.5","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"c2584cae7c2f0afc773e96b2ee98f8c10cbd693d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.5.5.tgz","fileCount":16,"integrity":"sha512-oB3TinFT+PV3p8UwDQt71+HkG03+zwPwikDlKU6ZDmql6QX2zFlQ+G0GGSDqyJhdZi4PSlzFBm+YJ+ebOX3Vgw==","signatures":[{"sig":"MEUCIQCKS9n6LHuu04CUMJWYjvSLnG0bbQS1BfYbHTdHT9VjAgIgZ3bQwSyaON6LPwrkwjuUgpc2+jSF2Mm7mjX6aDJk8vQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53439,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCxkJCRA9TVsSAnZWagAAUCMP/i8pZI/0OKK4MUOekgJk\niVeqAqFpNzmFLxt7yfspFpkLXgBHzX9TpPpTvjL2ID9eTsGb1YkspRuG1UiL\neW9EKKE12I4l/Lq5UHhndw6t0vvTcN+s//zTOUm0F3LNQ42makC9TuLMC2p2\nPfcHc0OSWu5Zv/VWmgHXa/xg6v2zyGkA1oIzQkBPEGsYJlg6HGZfmTgn/iqt\nB7a29wRKmFzCR+klHzkwadnWIaxAHw8S66TJ3OXJvYX1Ka+SroI+hUlFOHDS\nqen+s54O8zyWdlPaajkH21STxptjEL+xVGY5yypwpDyUCvtW9cohfWX9eiQg\nlV7tEyODypVvaIfWfhA80yCDEK2VPj7pBGRcjuZaycqwNuAYxuHWid3SQduC\n654Zag7eRBbIKpYy7hChvsQhLM0X0Kd2vlssbcQlN/wRWVvPIG+1/hn8b2KY\n5A7U12wuM268vVG/vNAb9VFecv3z+AdvbXFwNd/I55+DRRIi6snZQF6vno8e\nTI8MuC8EcNFGxmkgkGA4KqfRZLkBwrJ3t/XDTvVoZwQVmkT5sB5BnnhOj474\n7JI6POiRbXt+pTwzIR6VjOEhGS2g4SLgmXLZInBpE6ezItJIaN4UWiC/pM25\nMmQOaXwEmKc3tJ16Ece+jajaxRwOn2JLUNyZMlvBCH8O8ck9J16LYEt87ZoT\n5dsI\r\n=zNlk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","gitHead":"52b04db625e7386bd0da8c9bdf17d7c80d581ec1","scripts":{"test":"npm run test:lint && npm run test:unit","watch":"nodemon -q -i node_modules -x npm test","test:lint":"eslint .","test:unit":"mocha tests"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.9.0","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","mocha":"^5.2.0","eslint":"^5.16.0","nodemon":"^1.18.9","eslint-plugin-node":"^5.1.1","eslint-plugin-import":"^2.7.0","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_0.5.5_1561008392201_0.7851366932131965","host":"s3://npm-registry-packages"}},"0.6.0":{"name":"comment-parser","version":"0.6.0","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.6.0","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"bcde52dc26a4bd317b609146b75b55b7cc3ddf68","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.6.0.tgz","fileCount":18,"integrity":"sha512-Vjmfk6XSibJ/0gSIfKYI9lMr34Z+rwDYoX79Miy8m+WgUtYmFLVKqZv116NTBuLgdH/e9WUMXecZYWa8T3eyyQ==","signatures":[{"sig":"MEUCIQDDncFC/0xUJRU+83q/dEvaI/iirbGeiNW72PR+R1js1AIgBS8v+Ya4QUhgiRChgLfdYiFxVBtUunXA+9B3Nk3gFk8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLPKzCRA9TVsSAnZWagAAVnAP/1YpdSlC7BHbn6pOzB/G\nshIZQaWmHZBM1pjF3pN0dy2xd+7uHP2yJTF5opOIm6EiJi2KBFrQ4ehQBfb+\nF6MrYV0UeZ1mGP2j2TPFk6QLJ2HomXOAhXj4lW5aM5ZH/HMlTEAF5KG1AGjX\nsuZr3zn8MM7EJcSDEz0BL/e5IvG0KBh0HREGbijIpSQ1WaS6Cr7pzjteiZml\n7G7GSYl325x+ZIXyUY1OpKYcXREggC5ZbafGnXXeki/V6ZSRZbK6XY6fr8+P\nLFNIXTh1lkH9D3akB64D3FSbo3WaALtY8yZTxw7MbFqhZ3bDQdXG5UQSgpim\n7azLEJrnIx7KNL2B6BMZ1pl2MVzFuHxuo/0xPeuTqtmaEbaw1G0PG8Ou6eVw\n5JcAdd5Tti4s6mTFUohuqO0FvXBmaYWRtJZd3Rnpf2q/4oa3cAUM8GlkoQd4\n/rAQy7VQsm0asDBEsL8ly06oHqH+2MJvAH0WYrfW+vpRj1b87ZDkgqjkUopW\ny9E30cKOz74fmorZO1Hz2/PCuQUdTupROqeDUV0nx4RVgSg2xbrOSmVEG1er\nSeaAYpNleS+jkLEEM2uaW7uDVZl+Sjbc+eV+hgsOwtqAeGNCyBoPiNjQ0n82\ndGIhyfWGUrdkPx+D6Ep6sIuA5fzPvxeQjmObvJTY89G8ftp77SoaPsTLdnSo\no+T+\r\n=LDjX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">= 6.0.0"},"gitHead":"d334eda74376847afbaf6ff9fef74fd3231010b9","scripts":{"test":"npm run test:lint && npm run test:unit","watch":"nodemon -q -i node_modules -x npm test","lint:fix":"eslint --fix .","test:lint":"eslint .","test:unit":"mocha tests"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.9.0","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","mocha":"^6.1.4","eslint":"^6.0.1","nodemon":"^1.19.1","eslint-plugin-node":"^9.1.0","eslint-plugin-import":"^2.18.0","eslint-plugin-promise":"^4.2.1","eslint-config-standard":"^13.0.1","eslint-plugin-standard":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_0.6.0_1563226802883_0.7413080578914921","host":"s3://npm-registry-packages"}},"0.6.1":{"name":"comment-parser","version":"0.6.1","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.6.1","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"88040c7c0a57c62e64962c3e888518620a42e7c9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.6.1.tgz","fileCount":18,"integrity":"sha512-Putzd7Ilyvknmb1KxGf5el9uw0sPx9gEVnDrm8tlvXGN1i8Uaa2VBxB32hUhfzTlrEhhxNQ+pKq4ZNe8wNxjmw==","signatures":[{"sig":"MEYCIQC26S+300qKdQP4hczjHDD4V+1994nuroIeaufRW2b7sgIhAOvMoP1VYNPKl3NnYh6QiJqf7eJ+LLmYtn3LwSsnZh1I","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58454,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLk0/CRA9TVsSAnZWagAAipwP/3p3Kqd0C0VaVV2LpCrg\nwRc3Vu3TaS4P76iMyte/fEfGvCOyvLtyhVxxRiStSy2ZLxjhMY0CHsJ66ixx\n5YeFday97q0wclus1HFh10mt8C7eirM8NF0bESyOoQZijv/qxY+ylcedQaFL\n/jrSw4NtdN9jPWxMAxk9Yu5mWYbG9VkDjZrzMYB+S8HkPX054HVu6ayuGrC9\nYNemdlbrOyAQekLnlXYaMTXh1GYba1upDsKG2xCvav+NsD9OfkEPIBkvZJua\nQgUgUq9rDvXQwDEtShX1yC3B8nrHbycSoSLPfYECY2mr/05dFlpcTNA7cClY\nynFIZEiXCvV117S4+VYSIt5Sw1xVF1f27ibQhTo2N40grw9RfVY84Eyil5m1\npkaYgOxl6vON2IKjP+BGXa3CrlHO8M6c0abW0EZWyXt16/S5k3lOIWJWu5Bo\neHDT/0hf+RzQO+ZGdl3VY7/bYdaeDxu/4Ff3fpYRFqTUeTrZ2d/PNyz7+fKq\nQriG4vEGaaFgZetTjNqZ6M0lDwMYLMUH+BwKSGjEARpsdWXKTBe582V0hOz9\nmf9iKj+lJxra1PQMnZ82KKFkuVZqgcMM3BesF/XQyeaFCGHgpyf+uuB9/tx1\nMXAJ5lRkMvx4pNfeOIOgYB4eSJ9j2mzj0RgYZFS7LZVyo6GIXeWKs3xHHhwx\nYM+9\r\n=vhyZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">= 6.0.0"},"gitHead":"942ed98e892e2b18688bb6ebeec09f10e9fe01ea","scripts":{"test":"npm run test:lint && npm run test:unit","watch":"nodemon -q -i node_modules -x npm test","lint:fix":"eslint --fix .","test:lint":"eslint .","test:unit":"mocha tests"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.9.0","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","mocha":"^6.1.4","eslint":"^6.0.1","nodemon":"^1.19.1","eslint-plugin-node":"^9.1.0","eslint-plugin-import":"^2.18.0","eslint-plugin-promise":"^4.2.1","eslint-config-standard":"^13.0.1","eslint-plugin-standard":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_0.6.1_1563315518605_0.39357142558607383","host":"s3://npm-registry-packages"}},"0.6.2":{"name":"comment-parser","version":"0.6.2","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.6.2","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"b71e8fcacad954bea616779391838150d0096dcb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.6.2.tgz","fileCount":18,"integrity":"sha512-Wdms0Q8d4vvb2Yk72OwZjwNWtMklbC5Re7lD9cjCP/AG1fhocmc0TrxGBBAXPLy8fZQPrfHGgyygwI0lA7pbzA==","signatures":[{"sig":"MEUCIAwXVwEm/JWyvTnc6XXeGPYluHNKFeHsSshvAXIyov9dAiEAy9HHBaXSDwr/hmo+sCCg0994V8i2pGHcj3wPnqF2idA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64509,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdWjyUCRA9TVsSAnZWagAA0i0QAJuO2LNFsdd+tvLG62mg\nxLRH2HuA80I0muKm4E3t/IAFyw8UOw0pQ7i0OH5rrruRJxN0Jfdxw79gReSs\n+RvFoezlq5Zq8dhsU6JyZ+uHfBJr5MnI0MpqlNA1UPcA8KRDYAQ0S371wPG0\nJ7DiU9saLipztRUvx3NMULFa56Yd1jIECjqp/VsgA3eqUrkVgFwiE+3Y65mD\nV1BnBbTIhhkzIMyZZI1nuU4CiqhKif5Xht6ssoJ4PJluUGorZeObiF4xGSfw\nIkhUSgMF1nk9FLkZR/nnsxPpVFxnQ+5IOSezSg6NcD3RIkW39iuC2uKRqIbg\nZhMZdwByiexDc2xZiNHOD1x4kEs0ozWKngRsSgGR3mVEq65nl0Fx4uVJTVzq\n1L0aSF2MMATlwx7FvW7q3wJXkklm2ACyXwnsupIFVJlr8B0a90Yp5rMox/vP\npbd8cqy64SNYhNGEh9SBeQ1pPItadXZhK9nmB3rtceBZTFcBTyyLODOof3aF\n0yQ47j28bWl3G1XDAalPekBzUZOn7e9VzBhzM5d6eH590UY8YQgcaatASMlo\nywUn5xKQwYRj5APX6cls582/i4TBnOcwM8TDvqJdMx98dKtYEzXwYES9gj1b\nTsU26hd/8MYP32zwV4vqNwKxfsWMni5chRTC2Fm1OFtuhoFjv/GEsMhmzAoD\nlT3h\r\n=ASAn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">= 6.0.0"},"gitHead":"e7d81084ca6533661abf48617c40fa5336ba163e","scripts":{"test":"npm run test:lint && npm run test:unit","watch":"nodemon -q -i node_modules -x npm test","lint:fix":"eslint --fix .","test:lint":"eslint .","test:unit":"mocha tests"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.10.1","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","mocha":"^6.1.4","eslint":"^6.0.1","nodemon":"^1.19.1","eslint-plugin-node":"^9.1.0","eslint-plugin-import":"^2.18.0","eslint-plugin-promise":"^4.2.1","eslint-config-standard":"^13.0.1","eslint-plugin-standard":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_0.6.2_1566194835852_0.1452977785142262","host":"s3://npm-registry-packages"}},"0.7.0":{"name":"comment-parser","version":"0.7.0","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.7.0","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"9dc1f689a60d81fbcaf867d3c9eba3eb061ccfc1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.7.0.tgz","fileCount":18,"integrity":"sha512-m0SGP0RFO4P3hIBlIor4sBFPe5Y4HUeGgo/UZK/1Zdea5eUiqxroQ3lFqBDDSfWo9z9Q6LLnt2u0JqwacVEd/A==","signatures":[{"sig":"MEUCIFsdhXdXXeL+NWLMAx19hgsy1iwwx+xxyz7BmV1Q3plQAiEAvVpmOSKXZu6BP7SbDT2cToLhV8a2esNB2C+xbwIhJm8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":71054,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdvkeUCRA9TVsSAnZWagAAL4MP/i6Ivmz5xcqY3vH3Ajut\ngKbQXWvunrK05ZPN8inU8mMZ/udc60vSg0qSHAymJkWDru7H6MBiVcb2P0Yu\nDWT11ZeIdxFLeN9X8wA9QxsNmfv6fy2ZIxtb1C3XzZKBkZQZaCojEwdpuHI/\nWYFHkwfmSomjsyQX79ylrViHnAQtyFZsL/06mKvuDcFtK/VFtm+RTLH8p9OT\nQ2kwRLT1Jwefr8JeMYs05Xw/g4HpWR2z3jA4YQ5Z+dhnI86TCSLA3BVjRteU\n/52KUNm8oPjV3GgpxG0HdzjGCk/JuKVVeaGev6HJ9WAZc17N7Yf5SWwWx0J0\nMbKKAaaxjQdtP9O1RDr9eH4im/oeOEHCty1/m1oBbyo6FKWy6EehgD4PJn9/\nhOCAs5UkHVR10Yj3cq05lzdh4mKOy66rwXqnGCbqc/2w26c26MZhqAtKEFX9\nAEd/oAsSMWsmwJdzvO6Y8N79+yk/ucg2Q6Od9VMbR/uA7rD2NXCZZ/DRwLpV\nD0hI1/MCSeJAPNiiHHqsIQWkocziyHVYeMvmeBR1qgqtzHPLEiaFbdwXrNDo\nuIKLww/wGzw+6AqGRdt0VbCZywVyRoCH6NyAfGUIrUejp43pdrEHH/z+Eelc\nnkJUh4M7ynZR3VaaPUYcJ6FQFl9YGrnWYIJRxlEk7YPDQpbM2Q9Ut2/Pl7f1\nuFRy\r\n=+y1r\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">= 6.0.0"},"gitHead":"64abc21fb4c79308b482049fe3098110202fd018","scripts":{"test":"npm run test:typescript && npm run test:lint && npm run test:unit","watch":"nodemon -q -i node_modules -x npm test","lint:fix":"eslint --fix .","test:lint":"eslint .","test:unit":"mocha tests","typescript":"tsc index.d.ts","test:typescript":"tsc index.d.ts"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.10.1","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","mocha":"^6.2.2","eslint":"^6.6.0","nodemon":"^1.19.4","typescript":"^3.6.4","eslint-plugin-node":"^10.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-promise":"^4.2.1","eslint-config-standard":"^14.1.0","eslint-plugin-standard":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_0.7.0_1572751251660_0.49917549772302827","host":"s3://npm-registry-packages"}},"0.7.1":{"name":"comment-parser","version":"0.7.1","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.7.1","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"dist":{"shasum":"99607706e369305f89b0268f138fca7e795a60fc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.7.1.tgz","fileCount":18,"integrity":"sha512-YLgOoek/4xgO9wDbNi54wwnzpWseqz4ju2qbezDOv6PIf72w8Z7YajwVfEmd6dhnuRrEmo0vCIuG8B6gKz2d8A==","signatures":[{"sig":"MEUCIQDyZss6E/c4nyH5ifT23KTMc4Mus9asibHA3xVQWi+c/AIgIy2wCDH4OFAyRddQc+m/tQagkEJZecgy/r1N+Da6qNo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":71875,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd50Y8CRA9TVsSAnZWagAAl3oP/RhS3aPYqQdrBqrFdxik\n4OP2VdHpaYCY+7unx7DSEW/yQi0gk2pTjdNQ58ducL0aLkIicxG1av3I3fqd\nezKdi/62OgZfNWXdFsEBxQo6UjzDwvLSAj9AoVs5UF1AL+Xu9CezlFxvrQsJ\nmPQEseFyhtFj3mn1f4DZT4cwLuBFCu/hVx2KoxdFN23QLu8uM73r+FdyXMWk\nuerL1zVslXU7T+vjUSAEYWEg70pja8lZ1MO470guizaiJhzNuWY1dXXPhC+8\ndYIYeawFVvRK0V1K454flTeLv4hAc66hdKyLbpvRj34TC5A5hTgLti8QgUUO\nJVWUvXzqEcmMsgkw2LCOhNxko+dbCvFjL19WHUUYh4A14bzjrbhb9nR78Kvi\nVigJ1Km0W+mR5H3ke+nnBLVXJFb7O5GoHvJHwOsJjEoK60ZZpK3PWH9mxcTU\n4i7AmuHlULTxnanGdJwruIl3q1hZk/Hl3Z/qjyfKpHm+K3Vgd92S+Ye/gJSz\n7wmFSE1yDLsaWvlY/x5IjyrM1N6Hw0btLM82iI0YjLAC7rcJ9UBup95rIqWx\nkxxxtdnJNwwINZn+2/2XZD1u5rkm+6r+VwVu5+rHcXAdrgCE2+nkCOZ3+duV\nxXUXP5qImfsx2BAxdXHD/E5jJ9fw9JjFAaY2Xn0PP0UN7lBafqXCXhQvR6SG\nMJru\r\n=7xa7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">= 6.0.0"},"gitHead":"dec7e915863d058ad477a216706d12b1e0053b74","scripts":{"test":"npm run test:typescript && npm run test:lint && npm run test:unit","watch":"nodemon -q -i node_modules -x npm test","lint:fix":"eslint --fix .","test:lint":"eslint .","test:unit":"mocha tests","typescript":"tsc index.d.ts","test:typescript":"tsc index.d.ts"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.12.0","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","mocha":"^6.2.2","eslint":"^6.6.0","nodemon":"^1.19.4","typescript":"^3.6.4","eslint-plugin-node":"^10.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-promise":"^4.2.1","eslint-config-standard":"^14.1.0","eslint-plugin-standard":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_0.7.1_1575437884096_0.6689137541579722","host":"s3://npm-registry-packages"}},"0.7.2":{"name":"comment-parser","version":"0.7.2","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.7.2","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"nyc":{"lines":85,"exclude":["tests"],"branches":85,"functions":85,"statements":85},"dist":{"shasum":"baf6d99b42038678b81096f15b630d18142f4b8a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.7.2.tgz","fileCount":22,"integrity":"sha512-4Rjb1FnxtOcv9qsfuaNuVsmmVn4ooVoBHzYfyKteiXwIU84PClyGA5jASoFMwPV93+FPh9spwueXauxFJZkGAg==","signatures":[{"sig":"MEUCIQC5DsTfpYWC7/TZhKJJc/+fryuhEEdEYvXHq1lftLxHigIgPg5LXuwMtNsknvyEQvySL7+5ce/cT655LFsmwI3UDk4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":141589,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd+8rRCRA9TVsSAnZWagAAiXsP/2Vf04O09UaYzel59LaK\nyCo/wpElDdX8Eca+sOiLj7XShn9BKATGyXptvVr+WYTnAOgxdi/QWB9bkB9c\n7P9x26N22eXwX3A7Ah8t2cgfGf9lku7kPOxeB0o0y+BZmN6MKLAYjyIo4FK3\nSsyLskrl0CU8EBsOWqdIK2CZwJEXQagV9DajimoFfy9t0pihcygDhcz3dw42\nYH3nCIuNeZjFF48BNX1pz6Sxhwfu9w+4xpv4VhlSzJrp4zSfa4m2WPi/EaqL\nSpSpcgQmg1+elMz90eAtJbaDsi5e1q4SElsGLohTBWPzY5uO2X4VN9vaWxFG\nCyrwnb9yOZZO+7aYG0rya5f6hOo64PoiJiIoo0+yXCJ5knd+wxy9V3fnqL1b\n+M1Nz07PmSHdl5vviJFjkUxp/xNmkl1NauOjGaYZmkSsf63WtzvRqn0JBnEp\n8T1mp/YgPFb7vE6wgqdKnbdBzYzQKhZToA2xz54v/FlcweoVomL03ZLVVaGw\ngsmzJ5ybptLhJPJVtTCPLxR+nSkOw8MeOi3/KVc7WrKctndUjsWE+kw7p+UV\nSRHt6EWRUxU56V3XgK0tuAEktD8mnznrayxKWm6Wvsxn/4GyPiIA638snU4k\nk1PGSGB+L9Cv8ontSjFabrfLMwfY9twUI6hz+Eq4i+QhVj77m7RW2ocOj7pW\nBW2Q\r\n=zQKr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">= 6.0.0"},"gitHead":"35ecd2c0cf568d843a26ebdac6215fcee12e3544","scripts":{"test":"npm run test:typescript && npm run test:lint && npm run test:unit","watch":"nodemon -q -i node_modules -x npm test","lint:fix":"eslint --fix .","test:lint":"eslint .","test:unit":"nyc mocha tests","typescript":"tsc index.d.ts","test:typescript":"tsc index.d.ts"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.12.1","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","chai":"^4.2.0","mocha":"^6.2.2","eslint":"^6.6.0","nodemon":"^1.19.4","typescript":"^3.6.4","eslint-plugin-node":"^10.0.0","eslint-plugin-import":"^2.18.2","eslint-plugin-promise":"^4.2.1","eslint-config-standard":"^14.1.0","eslint-plugin-standard":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_0.7.2_1576782544660_0.9380577148903031","host":"s3://npm-registry-packages"}},"0.7.3":{"name":"comment-parser","version":"0.7.3","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.7.3","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"nyc":{"lines":85,"exclude":["tests"],"branches":85,"functions":85,"statements":85},"dist":{"shasum":"f526108fe4412d7fb84235929384d75f84bc922d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.7.3.tgz","fileCount":13,"integrity":"sha512-NMSboN8Lh9WLAv54OqZlN0kYkAmGVi5Uv0/0WWjLwNc2orW1XEcUqigR6IMry3vgllb9XWGTlKQsL8DSR/FFHg==","signatures":[{"sig":"MEUCIBigIpio9igHIsXbVCAqooRFfIYmpeZF8RvBz/6xl5utAiEAl74cJHbC9WhONCSfglund6Ouc498uAWiHqBeTFT8FG8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33871,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeslwQCRA9TVsSAnZWagAARKgP/jqsUBZ26NHaZAL+Rt5I\noWx9LxMgL7Tv5rZ3TKuvLpNjkmgj4aOPVdTt7n31zPcHOZ/zbaR06LZiQ9r4\nSmGbMoFuPlOKYrGyY/alzP18r35jXdhQ2S6pCy3yOVA74Vh7En8cHOTT6Gyl\nZITvp02AVtsS9LRAiGwl0qquWllLDLOTV4ytwKYx4aJE5DrmF6gVRr+0+lG0\nhUJe+4FrQQkZCNP4CuuXr8gITyB/A2aGTJRxqtEbNhF9r7HiFFtr4D8zG4Bi\nHg1xz01VhHyy7tgaG9iQT6RYQlsk0eaR32qnVqSJ26OqrxXsZj+W4BQp8EH8\nhYCDxwkQlST2f3gsLRQYcJsl6dR8AY5BFQjOlyUTkfKJA+KIrF3oEC7rCnhL\nx4y/J+9aAeMTiuPVb1tttsXkEKhHEiPAhs8lOam0HSg/+Vx6upU4kgBJeg24\nOUodBGCMwgBrrMTra7/dTiJkfXtSY+Vt7Yu/DOiw5IkVe3jHlxijNWQbDWvZ\nDaNT3oWEPyOn2vP/RlSX5Y01b/WHaHonJo/ZU+SCu+8nQwr0ss8AjUbQtmRd\nBzCGveJMPBzk5pBpGgex7C2ip1Vjcb21qol4n/EzBhFMgEx0j/FkV6Xp7h/F\nek7Ivqe7p4kafVHK1ojNLHRvOOm8KMvJ24XLb1TZokpHV3cDN1Z0CM6B7t5t\n8/r6\r\n=FVPx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">= 6.0.0"},"gitHead":"60b119edbae46387efac518e2fce5c6a0c1703e0","scripts":{"test":"npm run test:typescript && npm run test:lint && npm run test:unit","watch":"nodemon -q -i node_modules -x npm test","lint:fix":"eslint --fix .","test:lint":"eslint .","test:unit":"nyc mocha tests","typescript":"tsc index.d.ts","test:typescript":"tsc index.d.ts"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.13.4","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","mocha":"^7.1.2","eslint":"^6.8.0","nodemon":"^2.0.3","typescript":"^3.8.3","readable-stream":"^3.6.0","eslint-plugin-node":"^11.1.0","eslint-plugin-import":"^2.20.2","eslint-plugin-promise":"^4.2.1","eslint-config-standard":"^14.1.1","eslint-plugin-standard":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_0.7.3_1588747279388_0.1829085858422086","host":"s3://npm-registry-packages"}},"0.7.4":{"name":"comment-parser","version":"0.7.4","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.7.4","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"nyc":{"lines":85,"exclude":["tests"],"branches":85,"functions":85,"statements":85},"dist":{"shasum":"f5eb83cbae323cae6533c057f41d52692361c83a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.7.4.tgz","fileCount":13,"integrity":"sha512-Nnl77/mt6sj1BiYSVMeMWzvD0183F2MFOJyFRmZHimUVDYS9J40AvXpiFA7RpU5pQH+HkvYc0dnsHpwW2xmbyQ==","signatures":[{"sig":"MEQCIAFFKCphOVBfeTj9HHNEqvYqz5Pr+DOE4caaA7g2G9sTAiBCq2ZPIKrBTIrAdmz9O7vvpwV9Z393yY/urr3jZ3hUag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33921,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJesnT6CRA9TVsSAnZWagAAeowP/12CC/fM1PvFFIoVLPVo\nKhRsANtfWIkshObuZPP0TJd5f5Yv1y85dxRzK7bqyRj8aNOaJz0S6EawPsqL\n9MpgXg/UA9KM4ZDXhvVM8QTa+Ym4D7/zgGUgUgbF9kLfz3WzccjL4NJx2tZP\nE3J9KEGvIDBMFL9/qPZjU6YynFgI/2pKoZMXgltiOE8myaE3EMNykp+QjscD\nvVUyaHoIYfOJm1YImk3XPe8kYdFa0mZamQDQ1HHMcQBAwJxzoYkb6PYEOj2y\nvx7eJHi6q8unsMdEJci9hsV9Vx3B8lLdiNtkGcWq/0FztVOW6dv0OzTkIil3\n7ELQ3XgaFAcNboA0wqREmEjkMXJYIwzH+2vrXalweapX3psvuzU7fwRCfiXP\nIiehQFufYVZbPvAr8ORVvWBP8YVI6m1Y+IdnzWOPU7cZtRu7wAbIjvhpnqxA\nWATb5uFuVOPcD1szRFlpRjxZBDntOwfjwxhPBSfy5C+3j301IBSEK/ipw7Mz\nPvbM8HCrzSk/ll8gq1/pt/0QTirCg/4E9y7BR9dfqQIlvwIDr0IMx3DeEHxv\n9hqb36njMCCrgZu1VxSo2cfJqhTCc8FKhXhVtl/VAqNQ4Pos3WzGjnZT1TjV\neknpu6kIMeQzUcqrIPQKtn849ukdnRqnvhKmtextfKQs10WcljX1EA8uloxe\nyshw\r\n=+LHp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">= 6.0.0"},"gitHead":"58aa3e2e84171119952049af423cc1fcf509cc57","scripts":{"test":"npm run test:typescript && npm run test:lint && npm run test:unit","watch":"nodemon -q -i node_modules -x npm test","lint:fix":"eslint --fix .","test:lint":"eslint .","test:unit":"nyc mocha tests","typescript":"tsc index.d.ts","test:typescript":"tsc index.d.ts"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.13.4","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","mocha":"^7.1.2","eslint":"^6.8.0","nodemon":"^2.0.3","typescript":"^3.8.3","readable-stream":"^3.6.0","eslint-plugin-node":"^11.1.0","eslint-plugin-import":"^2.20.2","eslint-plugin-promise":"^4.2.1","eslint-config-standard":"^14.1.1","eslint-plugin-standard":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_0.7.4_1588753657841_0.5907975228111726","host":"s3://npm-registry-packages"}},"0.7.5":{"name":"comment-parser","version":"0.7.5","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.7.5","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"nyc":{"lines":85,"exclude":["tests"],"branches":85,"functions":85,"statements":85},"dist":{"shasum":"06db157a3b34addf8502393743e41897e2c73059","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.7.5.tgz","fileCount":13,"integrity":"sha512-iH9YA35ccw94nx5244GVkpyC9eVTsL71jZz6iz5w6RIf79JLF2AsXHXq9p6Oaohyl3sx5qSMnGsWUDFIAfWL4w==","signatures":[{"sig":"MEUCIQDl5fgeJO7/t4f2PVcz75r9OEL8tnDbUXdtOQxEwkeULAIgPiBG1XsWoHBIkjK7kb2/eeonBjumFBQKbw0itiibiY4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34066,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe0eq7CRA9TVsSAnZWagAA2WIP/RsJT38q4ySA/+48grvq\n3Z9aL11T1aZlVByZHpvx2MVwBTR4DJ/b4nUWYyn6HZRDnxpUgLG7SoLoYB6s\n7zOpY6h/jslxABF/SKXTAfRqG5UhgOr7KXCq4Ek4aCo7ombu03wc7xurU5S5\nHY/KqpGj1cJR0q9ziHEhSWtBiB3DadUl0PZCRxVqTdSLADfoyoHbmj+fol44\nyEnq7vcJKRCbVsQRyABoLw5K2HKuSpFUqMc+sGjrlI0b+6/lJR4jP9c+LsDE\ndFt6vqSJdZHiT2Bif+IbXEreJDmIzF6jcFvblA80WbTe+eDobQWLTrM8WnW1\n9lugoBiPmo5eaZiSX5zfKOx6KGPFmqW9tfsJzKADu6S27C6ddZYTfxd3ewUc\nWC0aXQ1EZnJfUFfPWjzxauaP90dBDvu1ctFzSjNlBmGORjQjDI3meTwYqwDH\nOZrmhSFTHtgoTsLiNQFdDXMlhZwMEPSfNKAiIcMZZhgv45+IOyrwdEThS3Bi\nL8BEn2CgN8WeDhK0JmzXo3zddznT/fRpar+hjln4Rs63VDpQIhMqnUX/hBLV\nR2EXvtW1OuHSQe88VqOfAzYXgC1+UwsCPUWGu/09hQx0Ant8qPEO3ZXsSt5h\nLm0dQa5NtQ4o4BmY6kHgYfZ3ghdteaFQqNM1gkH2BXDp9V244TJShVWDy5Lk\nbvrM\r\n=M0bH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">= 6.0.0"},"gitHead":"6f4f37bba26437b529c707be30c2167e2143484e","scripts":{"test":"npm run test:typescript && npm run test:lint && npm run test:unit","watch":"nodemon -q -i node_modules -x npm test","lint:fix":"eslint --fix .","test:lint":"eslint .","test:unit":"nyc mocha tests","typescript":"tsc index.d.ts","test:typescript":"tsc index.d.ts"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.13.4","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","mocha":"^7.1.2","eslint":"^6.8.0","nodemon":"^2.0.3","typescript":"^3.8.3","readable-stream":"^3.6.0","eslint-plugin-node":"^11.1.0","eslint-plugin-import":"^2.20.2","eslint-plugin-promise":"^4.2.1","eslint-config-standard":"^14.1.1","eslint-plugin-standard":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_0.7.5_1590815419434_0.9757303902774259","host":"s3://npm-registry-packages"}},"0.7.6":{"name":"comment-parser","version":"0.7.6","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/yavorskiy","name":"Sergii Iavorskyi","email":"yavorskiy.s@gmail.com"},"license":"MIT","_id":"comment-parser@0.7.6","maintainers":[{"name":"anonymous","email":"yavorskiy.s@gmail.com"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/yavorskiy/comment-parser","bugs":{"url":"https://github.com/yavorskiy/comment-parser/issues"},"nyc":{"lines":85,"exclude":["tests"],"branches":85,"functions":85,"statements":85},"dist":{"shasum":"0e743a53c8e646c899a1323db31f6cd337b10f12","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-0.7.6.tgz","fileCount":14,"integrity":"sha512-GKNxVA7/iuTnAqGADlTWX4tkhzxZKXp5fLJqKTlQLHkE65XDUKutZ3BHaJC5IGcper2tT3QRD1xr4o3jNpgXXg==","signatures":[{"sig":"MEQCIB3Z6vkGAiiq5IonY3ZXOwiF8QC28ID0Oor4O60b2G3eAiA+Cczejfj7YLnaIvdp8RC6ACxUT6A9TOLCyssJ7ba0MA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35197,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfOEx4CRA9TVsSAnZWagAAVrIP/2IPCt/JE0ABifYC9jrW\nflJdR351D0NtQcTX8rLTw4w1AzD9nYh70ITtiWFPOCYvqstSmfXWUSbfO13M\nq2zRh+8IPWcEvC7Sm/OIES6mlEd9yN4uB01k0K8EVOyuaY30A+V1IDs1ax4k\nPxnyysk4/fRh18R8JCgtAkV0CfGFGj8v/58kPjsRNMMWG2XMfjOqUYaE2H1Y\nPSLjtbmRmcavHZqWEbIZTFdI0yPKNaFvkXHTWX4ImDoXKyGcaewX7TbrDnrR\nzxY0VqBPjXAN7cSsKZhV/PV72t8qoR9kh0rB35s21OTQhXQ+FgNCRul5KQqb\ndulExLaTRGuduEvFMjZmcWQ/+kwITawMRfmlWcUif7tfSOnFA6Wb298gYqnw\nykyBMN32GZuxb86ojUVs5qQtGMLZgUArslBTkK792DMmkVhx7frpqs4yTrhV\nxuEu9Ej+1w+YajYXzdCkD/Kj2bC7QOTEmXN04qJjjEQOe6Ovi7U5uSjFz9l5\nc6iTG+kI8apzDaQKF+ErS+q+CeGCdwRNaFRURYoDdEcSF46YUfrNIrfLtwem\nYkY9C9s3kTKX/fzGb1CwwvPSBwAnUR+kjLHAYFjTe1vm5tDEl7+ea3B2nhA7\n+Up32N947G+BcSsw73rhcCRRxxYzOsgJVusb4x1SZMxRiEeKXLiFhY8kuRiB\ndX9G\r\n=2JwZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","engines":{"node":">= 6.0.0"},"gitHead":"3922d744e9035e6d15de28dd283f303780152bac","scripts":{"test":"npm run test:typescript && npm run test:lint && npm run test:unit","watch":"nodemon -q -i node_modules -x npm test","lint:fix":"eslint --fix .","test:lint":"eslint .","test:unit":"nyc mocha tests","typescript":"tsc index.d.ts","test:typescript":"tsc index.d.ts"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.14.5","description":"Generic JSDoc-like comment parser. ","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.0.1","chai":"^4.2.0","mocha":"^7.1.2","eslint":"^6.8.0","nodemon":"^2.0.3","typescript":"^3.8.3","readable-stream":"^3.6.0","eslint-plugin-node":"^11.1.0","eslint-plugin-import":"^2.20.2","eslint-plugin-promise":"^4.2.1","eslint-config-standard":"^14.1.1","eslint-plugin-standard":"^4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_0.7.6_1597525112029_0.7043764488099822","host":"s3://npm-registry-packages"}},"1.0.0-beta":{"name":"comment-parser","version":"1.0.0-beta","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.0.0-beta","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"fb2d121c0f2530506d77f1de821df6c1f0ea99aa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.0.0-beta.tgz","fileCount":56,"integrity":"sha512-lCU6i50GCQ4G7A31oUH4tP546Ya5CmalcHL0Ng5QJEZ775Mcu4ad5UhMwuzSMof+Q3oBCZdNXPo488NUB69o0Q==","signatures":[{"sig":"MEQCIFJtcLDJmYATDGEcKPJoyoZ5Ub5NXoLTRmIkigsYCsGgAiBsId3r7Zx1fr52cTknFNaweGF+VF6AeLemLi3nhzk5hQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":164967,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfsj6rCRA9TVsSAnZWagAAvMoP/A/JeNGjrjzloSUUen8d\nq+/NDjRqfsF67yDckW82Rt8QO8SFdB0Mwz9fNVaTuUHz0yjBci+abogcvUAx\n4t75cnz8+6Tk8KdKOa0IbRizFqqUV0mRt57AfZ+LcxMQ0Ev61+6ynxjKGprN\nMQ/AoHKQTHTGuem7/8bo78lyXh9PQfHpn8Y0aFBHopPH0qQcikeqOoRGUkW0\n85pWCGwgNvwDt7YA0Hg1EVqCuaJJODmBDVEkrPkT5p+yGoigTCM+2vuwfwKg\nKuh/zt+m+j4DEcTkPjhm+Aj0IY4ETGhfiS+TSip+qRck/e4jhSK/5/gKp6ZG\n/Hl5t8sXhUMJUcZ4F/rtEydzyttahpAuFc6EII59wd+Fpk+Lfky+UhK7Yucl\ndynXxkbA/tSd3WTHAKFMmqL+i+qXdD47JAyAnZhMNnszV6p3XD9Y8UqPulAW\nJHEX9l6kYB1D3JQElqvtAmWoXgufC+eSk2ewBmAjWFS3cxQTVBtHIdgw3XuR\nXtRHO2AhTaRBUUsVgTvFAReM8SDbA2u8idiUgM6uI53abD3f8Xg/Q5gfcZJY\nScgUqr7N0OHONZgDejHUuAbFIpfN2/i5L0s+9tAE7ZnzyS/UA7qisBPmqwlT\n/U6+sAUyOswFwY2uyDpn9xhHQ1BIduidMEWt5nSTQbMaQvLNawEeNabwqPWq\np1yd\r\n=NEIM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">= 10.0.0"},"gitHead":"c83fbd468e675db0efc833e2c8898bb67be4d5bc","scripts":{"test":"prettier --check src/ tests/ && jest --verbose","build":"rimraf lib; tsc","format":"prettier --write src/ tests/","pretest":"rimraf coverage; npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.14.8","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"^26.5.3","rimraf":"^3.0.2","ts-jest":"^26.4.1","prettier":"2.1.2","typescript":"^4.0.3","@types/jest":"^26.0.14"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.0.0-beta_1605516971261_0.23925296127280204","host":"s3://npm-registry-packages"}},"1.0.0-beta.0":{"name":"comment-parser","version":"1.0.0-beta.0","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.0.0-beta.0","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"6302982f11a67e777086aaba9b900ed687a57a98","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.0.0-beta.0.tgz","fileCount":56,"integrity":"sha512-aOjudO2WAv0UcHZZjymnjm4nSa0WDM4G7XDRZgQKwtZivDYqAX4au9tVDm8kJnSw/rFrjiRr94KIeITxG/w6vA==","signatures":[{"sig":"MEUCIGftjHpNCzHpeTndClqnWd0EbpJ/rdXc1KIVRJlhWVmwAiEA73eUl1/pqoxtAGNVXB59/kPTfhMEhJzJzlk/4CO4Crw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":164969,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfskAdCRA9TVsSAnZWagAA67oP/j9XhhMmENAklDQuW3RE\n53WjFhKpgNybfA0+3p347gNJbDjT5KKE7JhTSn/XIlc0JowtSivOiedHmgkU\nN8H9eNLaoD2GKw23sEfWtnamvCYX2n2AlNA1j1dE+osOFBQ9am97k77DWk9J\nAGGB2XqZdmocTWHzyAPX5J2tjCJH4F4cKXAjrwOv1lxznGrJjoJfwXwkN4G9\nzeqOfVRIzw6h92TJOKOf6W0SOXAVyGihFmYGZWVQyeOqegXu+W9aREcxX/7P\n0SZZSJ1sKrtSu+MkxgmHsMAEpSHP5Pev3yewDezfHlJ2REaN0HFk50e141Ij\nY7ylDO0pEoJXn0x7oSPlXJWU6x6MeltZzKOQ3ffZSYZXBnPeQS5X82L2VbOM\nnXb1GerWqNlppHdfO2/khJjoJ3e4E0Bv19/v1LAQ7OL04oY763wX1l/+YFXE\nJpvuQ4c5IJOTECUwxBCZ+bM+ITSQE0DWbcNm/wiSAG4qnprOHaCnN9zpFLd/\nkFumuSm9ZBpRnA/uVqSRzzPyM3dn1BcPu6KGF7AioYzV1IMjCwxwoxqeMFh8\nx6PXrl2fM1Gmw0LqiBh6tuhfC/ySp5tMn7EwJ63fyiJpUvkHxH5qvv3aUVKo\nbraI+XvDiJbBQ0V2lpB6IYL0FGYpMelz6KRdz2hb7rVdA7VI82YNTZVTMBhG\n6Jjz\r\n=cRET\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">= 10.0.0"},"gitHead":"63a29709f9af8231aec1efd09730d284ea1735b3","scripts":{"test":"prettier --check src/ tests/ && jest --verbose","build":"rimraf lib; tsc","format":"prettier --write src/ tests/","pretest":"rimraf coverage; npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.14.8","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"^26.5.3","rimraf":"^3.0.2","ts-jest":"^26.4.1","prettier":"2.1.2","typescript":"^4.0.3","@types/jest":"^26.0.14"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.0.0-beta.0_1605517340685_0.04664281587665875","host":"s3://npm-registry-packages"}},"1.0.0-beta.1":{"name":"comment-parser","version":"1.0.0-beta.1","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.0.0-beta.1","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"d73aadd30eb3d8e48bb912bccdaccc1ff48eac8b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.0.0-beta.1.tgz","fileCount":69,"integrity":"sha512-JbB6Jstxa2Mp1Ynz7qJGxxibbZBOOO/TOm1KucFHKzVwfDfnhVCrmS9CrTwnaXoTC7VmabWCP7S/IW2w+RNkLw==","signatures":[{"sig":"MEYCIQDyj19aPZVMBcz73YzHO4WzGgMhDWJkMZLaREB6vY5sqgIhAKrE4K+xmu22Puld3mTRSar2A8/NzWxAS3QDOWX4M69z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":177885,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf5mMaCRA9TVsSAnZWagAA53kP/1x9bM46WcVRnuTNnoRb\nZ6Qa9Hfmxq40BejGmch9hXRbttwLT5lWrbxflZxUG1rmR+m8gIpk/c6L4/DQ\nh00+9VoqQLqT8u0Y+g1j4+Ui9Vr+k5JNOojF9uNl5vzWeEBMHxV88AFskYRG\nQWcady+LJQ5wbPtT3ae8EU9YHhd+1UV8wCueC6a4iSaUnxSoSV9+z4iDjbRt\nvoCghLHcoJ3hbqUZ3XIp4/tqcVz8S6Nn/EkLY/wGTaDqmY/B7snhkMsI2nO3\nkwwRG/0MztDiegNgTPL8smF1kDSaZ8jPR4p06jN3qzCuTpe2R+4l9C71YRri\ndATd6WqSr2GXGyrq5oOdlGhx5boMLOXnnstvUMIRIjrlhjd21u4pv3ONcy7u\nRnJvdCe+Pn7dBjMIn7IYTcdj2RRr4Mbady9BJHTQJLeYefhD8EQKbtj0DMWu\nK/4KGJBSt4UTWIjM6XR10QbXpfoCtp83DQn9KN3NysOdn8vjgSM/34acoJ2F\nROTFxe2oKl+Q91/IVO7pDeOrQo19YT8ezT36Ap/JRfHL+FpvQfvqcQkjyeyq\nriVnJh0n/T99rHrrtS17T5veua/teHpZVsbTN7pQK1N9LW6I9UYGZOLd/YRv\nfbhhh7NhqIcirdTjEnZjbOQsnsDUlPmfnsK2WWwFfMYxHA2onEfSyqFEwnN9\nJ2W0\r\n=+DtQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">= 10.0.0"},"gitHead":"e69f1aff2e3fac375189c69adf936790f280775b","scripts":{"test":"prettier --check src/ tests/ && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.es6.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js","format":"prettier --write src/ tests/","pretest":"rimraf coverage; npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.14.8","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"^26.5.3","rimraf":"^3.0.2","rollup":"^2.33.3","ts-jest":"^26.4.1","prettier":"2.1.2","typescript":"^4.0.3","@types/jest":"^26.0.14"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.0.0-beta.1_1608934169687_0.36177391204099796","host":"s3://npm-registry-packages"}},"1.0.0-beta.2":{"name":"comment-parser","version":"1.0.0-beta.2","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.0.0-beta.2","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"d04d18dc5c0e1787a06cba66559680210ff8b408","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.0.0-beta.2.tgz","fileCount":90,"integrity":"sha512-AcP7ypzJumdx1/q9VA9pT4+beSbdJuzKLSGbpye0fGnkE+jkhhLqKZxjGLtXpzZQiNdqQBWp3ctdN49NF2f5rA==","signatures":[{"sig":"MEYCIQDCdhyG7yd4sLZqAi/6pZw9j73kjCtLIxPB5HA5zlzYTwIhAKOw024JEKh7kRPYVb7A98WfikFEh9O5y2Uj8+ykVROt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":221289,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf5mnvCRA9TVsSAnZWagAAV8cP/iUj2IZy0ooNNZPBAW4O\nYA+hDcPTo/abuxlXqCuHUPnIYX+hQnrwOwsr3QudG2yejs5kn7yoZ97Bd2hd\nN0d/8AmjZMQhlAXkgfGYPKyp1oZGoq7ncCjGmzLvTrHAKZMVK5hQ0XfOa/xY\naSXGNSjfZZsRQb9/CHdzdThf2DH4qsAWLwf0971ZXy5nJrnPy5Oq3C0EFU7x\nc2kl06a0AaHJYhc+M4H7F20xpfd/Tw47t8wQ99uJB0yXHuXfYxjA4eraDtVT\n2A8mqz1k1iBDMq1QU6ze4u2R3Y+Q3H/T5ia08LhtqNTtTAPXRbcTD3UD2QOx\n7VEHjEaRWd/w/oAr8g4Gr7N5u/HL+XFheM4NZA1pcGTT7lw0xMkGoVZHAcFj\n4wGuPiG/hZHAYrsUYL2VLLGrk0oEKVteLIe/AE2mrM5SvV7Kl9/zMHNjteMc\nKOuAd8tPyNvC5kFv+YOneF28N1VTXTYYMvWzI5ATY56qXNI4SrPJ43IyMxsT\noRGapjj10st4xO+SrwsrSwy7vuP+7Ny1wBZGSBLdZwgsqxNbaukIERTBW3hD\nl6p/x+M64+WDJ4PoyvsvyrkCIi87UV0ySZ6H4DefkU8P2oaVTKczxN+F6CIA\nqcl1nT7pzJ+A916Onucl5AywExTyPgRRm0X46AzJHErB2+A+eje0xsDchLp8\nI2SP\r\n=Hrw3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">= 10.0.0"},"gitHead":"20c974fbe9f68129d9f6c023f726d2de3ed9fe71","scripts":{"test":"prettier --check src/ tests/ && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.es6.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js","format":"prettier --write src/ tests/","pretest":"rimraf coverage; npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.14.8","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"^26.5.3","rimraf":"^3.0.2","rollup":"^2.33.3","ts-jest":"^26.4.1","prettier":"2.1.2","typescript":"^4.0.3","@types/jest":"^26.0.14"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.0.0-beta.2_1608935919160_0.1393269198987377","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"comment-parser","version":"1.0.0","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.0.0","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"59bf7173fd4215e37727958af2d88e7118a68aa1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.0.0.tgz","fileCount":90,"integrity":"sha512-aepwNGXznqu+KXzhKP6yqnqHlxyjRrLsKlpvb3ooAXx/qBMRGxU5mSvdDZ/9s39S8XRWnSPu+Cv3d6jy+V6YRw==","signatures":[{"sig":"MEQCIH9fE/2dLR09aVkESFk5kAIrjcCpAID9KkBgbZ7e39KeAiBgzXLXk5CkAX/noxQXns5jv08Y6GwwYyf7N77F49QsEA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":221421,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf9W1rCRA9TVsSAnZWagAA2z4P/jgccMK9XcI8DwT87+Md\nuaz0Ph6ipatrvYbkYV9q8i34gLqAleY7Y+OK4fd0tTehiU6fyzL/ijx01Bgf\nY90fVsmjutO2xB6DJhrX1yK2HwJukoGV8MnlwHtp9KrQimWet1Ch/fMP2N9/\nF0I8bJVzROSoml0T1FWNQF6U7vbjgGrm9JbAocqcdi6wqiDfFWVNY3EGff6L\nOJ0dRYQIeoNVX2+4Slz2dCix2dxMWoYS5lYEtisZ+bCTRof3ZlVm4FsHJ2fv\nsxb0AC+ezNTTQynEYiZCm8PPG8fLJgsJ1/ehdkvPucoXQyRUAujDQntXWdq/\nN3hzCfOnyU5sWbDgD4BWFp2Pgc69VjIrWunAeQqWFlZ8JI4FClL7jgxtLeI5\nbXu6DlMp6LoyvSgNxrXjgmWaI/Dk9EPVCzaP5TB2tFH09i4VOtdImcsklzDG\n7p0aJyh2cs+HOhOCb2DM+ivajWSiNWyWwVXl8ypxWaGXQonM0RlguqYwDWzy\nQhdj5UHZPqLwI1EezEElnXLkgYMMKfLfUSfM46hv1rWEUE0l/+siUqFkbeKV\nEEjhViBhAtG0v32OfdP3gRG6DMnV3FZbgZQH9+JR+5Znb7uaTdnJOU8YhNHt\nn4//lvsoPwp9zzD6geRk+l0WVYuCwTsJnGUlsE9jRzkogbnkDJxF24rCokGk\n7MbH\r\n=UFNk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">= 10.0.0"},"gitHead":"9dba20d47e0f32e130329be1e93f3502ad3f688a","scripts":{"test":"prettier --check src/ tests/ && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.es6.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js","format":"prettier --write src/ tests/","pretest":"rimraf coverage; npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.14.10","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.5.3","rimraf":"^3.0.2","rollup":"^2.33.3","ts-jest":"^26.4.1","prettier":"2.1.2","typescript":"^4.0.3","@types/jest":"^26.0.14"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.0.0_1609919851517_0.13879271671908677","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"comment-parser","version":"1.0.1","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.0.1","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"6f40ebc3ac5063cf59b5eb415bc689636134cc4a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.0.1.tgz","fileCount":91,"integrity":"sha512-korDJ16mBVZexVd485jz4AeAcAFP1UzeecfVgfBCBojLFjMEHEHOY9vgk3e9o1zRSP0EscavonLki4JZDCKmrg==","signatures":[{"sig":"MEUCIQDKGqyyLEpAcGGuHwGbpxQcJaFuJrtbvnbzU9UujyVeeAIgVVl2D618dCrR75B0paysogXjYQxCVLYxz1t5040BNwQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":226773,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf+Ms/CRA9TVsSAnZWagAAx9EQAI15HznzMfrKFwiqWk3n\ny1N3WLAS3lMJsnJp/dUZmzVQDjfoIxKp1im4Iujb3hCwWtPyes9udJwUoQpJ\nQ8CJQU6Wy13bKOEpQ7JnsaQlqqw2S3+QAnwlTDk+8B31n3CRrPpnIF5NWcak\nVIoV2cVULe65GpZkcE2Vh/GgWg8mGQihQrSQityC+/yjgTgEhqyAP6wcJwqw\nuFOOU5zrdVoJoniNn2vdtRxNnjKl3xzkgutTSo+9U1DiY6/UywXhTD2wNkH0\n4hAq+DlM27bkZyWvxzDcmx6/GHsUhQ+wOJFsYX1PYsnWlpBxJX/FFFGqYbSA\nNxXPfojXYRfKaQBpKWOgDevbxvAVB4Cz5f/s27Bn9bZepHrnmV2pxglPO17A\n9BAoaN6XiVYDEOkwCyn3BC70lCHr6cVMrmlkpotoWvDBShUzDZ9jVXp3SJoy\nT0evGRhm5BTyjKuTSc8gcWXm8aInwh848SeojjixRGxYGDYgfIAMIYDdI3C5\nbwWptGXBIwlVKOV612QXcYstPjyjvL0UphgPQ7HguUd9yXRCtqCyX4EYlkKB\nbnTRsdbWJWgXPBXDaGstZ3iecFQCz1YQFhjVroeCYvaAM96vTKlrwMgZFjam\nT43CEvJoErF8gvv2qp2GIeC7Mdvrltc7H6sWVy6yGJ4T46BrHINEF1ZSj2OO\n2uVk\r\n=3vYl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">= 10.0.0"},"gitHead":"286d1d3bf888f5895d494e1991c07c76efac755f","scripts":{"test":"prettier --check src/ tests/ && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.es6.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js","format":"prettier --write src/ tests/","pretest":"rimraf coverage; npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.14.10","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.5.3","rimraf":"^3.0.2","rollup":"^2.33.3","ts-jest":"^26.4.1","prettier":"2.1.2","typescript":"^4.0.3","@types/jest":"^26.0.14"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.0.1_1610140478883_0.9354115614126441","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"comment-parser","version":"1.1.0","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.1.0","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"4f6fac17718363653e1cb6d5ded3f093ce51ae4e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.1.0.tgz","fileCount":119,"integrity":"sha512-Q4dQ9niTWOF01ufvH/z6Z3RsBkwr7G42IsaFjuNliL6CY9ZeOEU3jRwTNY2mTY1ibAsASMrXnlQtx2tOb7Q8MA==","signatures":[{"sig":"MEYCIQDinhJ/TxZTWYB6kptvAPHtPoxs8le44tpwVbmzad/FXgIhAIVKeddt1WRuDd0Zol9PZ7Hk4IDWgwi0pGWTEFcXeHPc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":255868,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgBBP6CRA9TVsSAnZWagAALiEP/1IM/PLvPriAtsJpd/wB\nJJv8jb59zDphVEZ120htIID5WUlrThyDO+sn0pr8gyReHF7Hyy3Dt/ASsxm9\nVk0fSTXYe2QQvMqRJBSRY4ELWPhW1MHhqIL3HKoBKvXYMJAF0ER2/wHm6nvY\n8/AhoQykOc8MtzA5D88ZgarPDcRy6UBRvqcpu+zyg2kMbadCcdzR4dOs2Y/T\n1cVKKbZw4f1wxL3DfCCLKN5caqDBKKOLW432aywRhXVoyGDxPaYnkwkUndrz\nS3X5BlPmgY1NkDIpZeQ+EFZR5oX7KsRfey2gL3rZ0Lx2gJ+lc+mKGH34xLOE\n1pur1zE7+fHpFRDB2/zIawiANJ+befhi8Rftc0b0mhBaz4zIEtEqB7Hdb9lM\nLKSCJtKa864dfQY7rcBAO0koJ0wIYDOglC7trHOG+WDaubKK3ueVF9iloLwi\nIBESFaSlwmaY3mhNcBFHL5lPDxR2ZI9Sm7l1j8zILKUx+S+ml3NG0leFEGJd\n/wYw5bVBCpp8ZaWWxMEqLPyQV47YrfnPNsTVD+75zoQ1Ddij7k9jCTgMMZUd\nbv6qm+GNpSQ2menVcF4Jqeh50OP4TDhcgiBu2An2iMtNiZCpsn77bMBtIiaY\npEP4DPFUmVqo1jjr4ex3XcXKclW+HrhW9YrL3BgGI8YzFVUGknEjLnsnHOhB\njCwZ\r\n=YSCk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">= 10.0.0"},"gitHead":"89a6422036f490d1038676336010c34a42ade1aa","scripts":{"test":"prettier --check src/ tests/ && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.es6.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js","format":"prettier --write src/ tests/","pretest":"rimraf coverage; npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.14.11","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"^26.5.3","rimraf":"^3.0.2","rollup":"^2.33.3","ts-jest":"^26.4.1","prettier":"2.1.2","typescript":"^4.0.3","@types/jest":"^26.0.14"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.1.0_1610879993711_0.9404737703858541","host":"s3://npm-registry-packages"}},"1.1.1":{"name":"comment-parser","version":"1.1.1","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.1.1","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"c0581d520677e2cfab1a568e94ea0400df9fe4bd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.1.1.tgz","fileCount":120,"integrity":"sha512-vue7cRi1ZO5/72FJ+wZ5+siTSBlUv3ZksTk8bWD2IkaA6obitzMZP3yI65azTJLckwmi8lxfPP5Sd9oGuZ8e2g==","signatures":[{"sig":"MEUCIQC9qjXgXzKnYMV8YRpEhxtWvvkx+3jKSK72JanvDMd84AIgSRISTU4UaxrLPekQW6EPTVc466BiRyD4vaT+exH4mco=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":257830,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgBSuECRA9TVsSAnZWagAAbr8P+wbGXZqYkhuYRaW4dVJa\nNTxcOTB0gH+6ANSop1U++u8pY1pY8NRIBgUN6mE9v5twOdSiQVpMVI8Kcj/X\nHXKprImgesRMfTY/fWVJpmCYftgXu44SiPoznOsWJznvjS2RkexBX2VBx9uK\nmU60iZaeyQKCLxGtKce4YVO77rZuErlwE4YtM8xsi4T3rA+/qEFwzGo37/JG\nmtoIpgalwcFEdyV1KFRJEh4IYbVfXLg65e2o8yejm8HvBVUI4vrJCQlyf7Bb\nRBHr5gk1HZbVRiotElWE7txvKCHKjedvd3U4YXmkSww4PFU5G1pioZ9LQ+6P\nBmH0Vj78fxsN+VCpnHb2RNnfOY8x+7/myKMK8pfNjJlvcB+wOjITtYIBrK8E\nvimsBqUIEaSZly2nRxuqDktBj3jnSza5lYpFayRNxzjW/D6jKWG/seiLQvDk\nuBrdWGO+Hgv74nN0P/mLg7o8gj5uGcBKhdVx9jVM8jXrykL/sNq5vLjiatg3\nhgzDm4093vs/ZOmhdTkhawESJS7oGgDjzR/jKhK0oK5Fy0hnlsZ1MW+hcecW\ncqqA1JZoFF6zKKmp3uRMp1VrmFQWI7VK4EqBvqVwnsVHPgEESZXrVLJ8f2wA\nmLemOeW3vaF5c8ck13nZpd4Mrx1EvA+wYeZpX4+wi5lbauXa1r2O2y2Y1COe\ndtGB\r\n=qtXL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">= 10.0.0"},"gitHead":"91080ee7394ab9fdecbab309c9f76200fae77fb4","scripts":{"test":"prettier --check src/ tests/ && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.es6.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js","format":"prettier --write src/ tests/","pretest":"rimraf coverage; npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.14.11","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.5.3","rimraf":"^3.0.2","rollup":"^2.33.3","ts-jest":"^26.4.1","prettier":"2.1.2","typescript":"^4.0.3","@types/jest":"^26.0.14"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.1.1_1610951555578_0.3726196766409773","host":"s3://npm-registry-packages"}},"1.1.2":{"name":"comment-parser","version":"1.1.2","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.1.2","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"e5317d7a2ec22b470dcb54a29b25426c30bf39d8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.1.2.tgz","fileCount":123,"integrity":"sha512-AOdq0i8ghZudnYv8RUnHrhTgafUGs61Rdz9jemU5x2lnZwAWyOq7vySo626K59e1fVKH1xSRorJwPVRLSWOoAQ==","signatures":[{"sig":"MEUCIBVw5z3SyQnY6vmLLzU99uyspVvCc3c8Xd4zeIDAlzzlAiEAkWFDTMQafxSA1G8Ie92ODaNPVVbjQ5PL6StTLNs8MkU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":265994,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgH6uvCRA9TVsSAnZWagAAJ/sP/3Q7fKJ4uY2XLOfN3LWa\n5dIdmW+OPzfgAjf/PPrBCkpJRKqNNcohXH2ufK47OtlBCr0QEMThSzXdbsd0\nXtuoBN1I5236uYqyU2kpFEw27xPKE9HAQqXspex9jbLNYxlZVtrRqzVfr8F+\nxw8clM527MnHLZ+nKBAIrFRyOimNnCgUhKvi6C9LuPxQ2B1y/ZzCARzVAXbZ\n9pXdgrvzz7a5dw0kwTrk4B+czUmuliO9NP+2HLceRxip39aU9YQxpbaTJavl\nU62d4vwJjSTu0YsZYSJBJbN5oh7CT41e64nn/bVCWxbvbWybN0Wb2Kw5JnFL\nkQEoYSiYQugdNfawvaEniWV9ZoAm1PRABxzSHpUwXtQWYbUpVS22ogI/Ikf1\nSD4OK7AHhrvNZXWPLQu627huYzAOQHECUAJqaib8P4cF7Ft3NVaPy17HWDcF\nIKhrZ8tkANkzkyvkxyAQ/tT36fwj/UaQLkINMNxG/ivCTjfhS3rtwvrcPFqG\nA91P4ZD6QWdyyZEvhfE8Z8kEvRBNRcrsCTyww5MVPa1FUSgoLb3k2fURskoz\nz7N7JovjBCylTrKamMO3fJLX775fNk8Xk46On6hHiNPn7/ausbLxlaHPYLKM\n1vFzbCA8ZB2LRh+d86L7OYtIQZTOp4WL7/U6Evlp1zoJwOocVZ/5UNpYvcyX\nVqDA\r\n=T32R\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">= 10.0.0"},"gitHead":"318d93cdac3e62cbc2f301b64e23506fa16cdeab","scripts":{"test":"prettier --check src/ tests/ && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.es6.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js","format":"prettier --write src/ tests/","pretest":"rimraf coverage; npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"7.5.2","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.5.3","rimraf":"^3.0.2","rollup":"^2.33.3","ts-jest":"^26.4.1","prettier":"2.1.2","typescript":"^4.0.3","@types/jest":"^26.0.14"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.1.2_1612688302714_0.02766178688795251","host":"s3://npm-registry-packages"}},"1.1.3":{"name":"comment-parser","version":"1.1.3","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.1.3","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"727764a3631b74a7af743197976f74a6ca1c7e85","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.1.3.tgz","fileCount":123,"integrity":"sha512-2ZxHza72ZC1SdaK/w/lUWHv+cz+0ebZ2f3K2al7/n8W0kV/GHrB+i9tXQm54e41OsfGdDwDQPDrSUWVwIB/CkA==","signatures":[{"sig":"MEUCIQCfpvrayW24+2A80YA2hJc1PrI0IF1WwnCqN/MPTQKG6gIgBe+hbsl8UGSimUeCYZ3jMFVqMxUadFjUCTl5rSQmqnU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":266025,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgVkwrCRA9TVsSAnZWagAAQkgQAIWDvZeRAxLiGEOivtVc\nhIJ3utENpQnLx4Qpvg1EDVS2bqtpKR/e1cSQWb+WAA0++vli1hrMyLUo5IuT\nYPTJ5SBjoFsx82RHScnQpt2wFRWZE+2kuudCxvr0+dqFPZE9uM553mJTHBKw\nl2n9iaG2Nq1nVYR0XY5MWtSnlvMS9NTMhcDV6DyIXX04oLbG0AfXw71t9Ikb\nksqf1JqSCAc3BH8uX6cNzCCbtkES22uEcAq1EK9FluOZlH0D5MHUKVnA3o6z\nDlO2mE47qwRYaWvQtkDE0yJVCoHRGlfxW4bVZeAkJnSXPhQg/si0swwLs/4N\n/+lOg/ZMJygnb5FgBPrX2CONxR7oqPF1yWIxUiPnr1rsiRieG0ktymRYxtAd\n412rmsevBgBiV+d4o5njJhNKUClTjUT+Zjj+aLrOgthnaBEqgbSxjiFUdZe8\nDhp9PbcF71GnFTHnKdtoal4LHRPSZK93rdo2zf66EU4KJhJjww3G/TI9BdyL\nULnpCRyPjPlCk6Z+0ePZY/wA8bTFk2imD/teyZtOnK/GDS7faUeBfbZ3RLdX\nqK7CfNmZMb6yTq0Jp71kemvB6UK1EZet5/a1euKVDx7MuNY7aAoCujR8NxNm\nBw1mwqLGRnu880vafQdrYH4dcpP0iG4C5Dye6f8Z6Q+t7sWNoLOjwjerFVja\nKigp\r\n=m5YT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">= 10.0.0"},"gitHead":"23f2d6881a4d738defa9624cb056233b639d4dbe","scripts":{"test":"prettier --check src/ tests/ && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.es6.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js","format":"prettier --write src/ tests/","pretest":"rimraf coverage; npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"7.5.2","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.5.3","rimraf":"^3.0.2","rollup":"^2.33.3","ts-jest":"^26.4.1","prettier":"2.1.2","typescript":"^4.0.3","@types/jest":"^26.0.14"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.1.3_1616268331166_0.4428204991635283","host":"s3://npm-registry-packages"}},"1.1.4":{"name":"comment-parser","version":"1.1.4","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.1.4","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"38ba3fb9293e29fa613a287f1fe184241dbd3755","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.1.4.tgz","fileCount":123,"integrity":"sha512-MrWw1IrmmeCMLJKA8SvMw0tImTd4BHBFQ4WCNxzZoNeWaDL7OAXugF3BIKY042wNsNzGqD5liCgpQS99cuY1qA==","signatures":[{"sig":"MEQCID2cuc/FQyahUP3iY5MGsVyhouZCmeyaKS7AOITi9x9qAiA5dTdq1SaWcI1xXz8cX2ti+uJNiLDgx5/0j6lDzLAV0g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":267094,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgWYnLCRA9TVsSAnZWagAAkrsP/1hrIvzQAn6f3aEb/HnA\n7rnPSqvkXHzVXSn4VxGIc1F/giee8ivHi6iYNXivUrV7IQ6h1n5+iMltufWX\nYbDkjZAxU8LKGU74SvwLxpAXhXV3xouvrcgPQjUkOOR8CJ/5exllj0aVLpkM\nOgVCLa5qZy2VaF0InPIHLGgiLhE35lQCFGTf4hQapC5AqJdMBDr2SoWewji0\nHlQmbAeQDWzF4HDqf1spGo/Nv3bRWDzGhrktBFpm4eq5Kr5Zyt7YW6kfzbRM\nyh5Y1VoyR7X7PAiD/Un03fxRKrmsbuKwwHqN7kRfGwTTCWO5y2tLCLIslE7Z\nV21s/5nJqcZcKORGTKwvXbwhaVBMLwJfQLoUfVGwGAkSpiFxWiOhkziZpO1y\nNowsddOoB/6N2HMah982xllZQJHIus24l1jPToOkFR4feU8ZITBDvl6LH1o5\nH1aRWHpAIjTNtXYMVmCznHMKwpaZNTogRMgTx69cjvCifFmGXYp7/hd9pNYd\nH0YLxhIyzYWiKH/MEP1nW8oiMwpu49SKTyqo+7ugvAz25RHcyjnSLVOcPkD4\nfv4JUpgs2yK3+d14lcQv1Cv+mB6SecOdLx6Df3PqFS/bVh2JmcFgjxlKzKTE\nuT3ZOyIrlwTf4SitMOsQ1WQCk7JeVBJ9mFxFe83lD0LowaFh2QhOHr8Pe1DY\ngCTU\r\n=bQvj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">= 10.0.0"},"gitHead":"00cc57e269a8b64c9e11282bdaa32db829b1cf62","scripts":{"test":"prettier --check src/ tests/ && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.es6.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js","format":"prettier --write src/ tests/","pretest":"rimraf coverage; npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"7.5.2","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.5.3","rimraf":"^3.0.2","rollup":"^2.33.3","ts-jest":"^26.4.1","prettier":"2.1.2","typescript":"^4.0.3","@types/jest":"^26.0.14"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.1.4_1616480714865_0.3314281865891384","host":"s3://npm-registry-packages"}},"1.1.5":{"name":"comment-parser","version":"1.1.5","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.1.5","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"453627ef8f67dbcec44e79a9bd5baa37f0bce9b2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.1.5.tgz","fileCount":123,"integrity":"sha512-RePCE4leIhBlmrqiYTvaqEeGYg7qpSl4etaIabKtdOQVi+mSTIBBklGUwIr79GXYnl3LpMwmDw4KeR2stNc6FA==","signatures":[{"sig":"MEYCIQDlrAaNri3iP8QDRrwEp3QpqaKx+ovs2E3YJ1Uw5Ge+pQIhAJZGu41e3CUA+Og6DYNHjgEA8g7tgZ/DWeTlVAV2HuKQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":267157,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJggT7OCRA9TVsSAnZWagAAF2sP/jjIbwiIwPwe25qLr3La\nW4AsEqApaeIs0iBjEr9ZAKGjxAE7UF8z2lF/0n39Hnc69Vc3ybAPx5ZqH/We\nHezo6i7WEUMvcZ+en0S1DIGS0lbulo1tm9sQCCbhXEqlA0lnZv2QLbJFqdcE\nhBeEJoJAdlcI3PM67YqrhlBqkWvosA7tbrw8Wg6QLhH5UmNZNiI/zHHp4C6m\nzPHkjbbjIQ6ybdGAiJqoMOT0T8D+kle6csupJ1PMt2x0WlN8a6Syl3+D0v45\nUDtrStWuq3RCIzcHlsO4/yGbdcOOnveEhi/nqGaHoO55TBGF5ayI0QKddCKf\nwLE2eHnI3SBIpI3VZUtyOuumCMvVIm2hi90qjfAXHqLrXbqebeDK7otj0/aR\ntpes9UJ5y3T2dp47t59ISvihVGvC1ix9StMYH0Els+1v3Y0aY1Zqc0CNF0UW\ndZF0oUuWbfgRN3JjTDTrR2ljoVg4cPVy6GG/zHAwLMIRAW4ZNStUYrk84m7/\nxB7IE24hgLZ34AR8fzuZd2rRluUy0Z4UBmfkQ+z4f3Muq8w+SREw3y3jqj9t\nf+tnC25BbvTBxGeWu+pL5/6UmQiWCTHD5frScEf7w2epAEpJOZ+fZBSD1q3T\nuVzOwsw4wfTyqa/7gwf9czRJ187xcShPoXw/SUYXWJI9EM6ov7ywnEzM+/Wi\n2nbz\r\n=WDHm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">= 10.0.0"},"gitHead":"14f2ab94d4e7a886be81027f51663b4a5e6412f7","scripts":{"test":"prettier --check src/ tests/ && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js","format":"prettier --write src/ tests/","pretest":"rimraf coverage; npm run build","preversion":"npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"7.5.2","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^26.5.3","rimraf":"^3.0.2","rollup":"^2.33.3","ts-jest":"^26.4.1","prettier":"2.1.2","typescript":"^4.0.3","@types/jest":"^26.0.14"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.1.5_1619082957762_0.7180469019725695","host":"s3://npm-registry-packages"}},"1.1.6-beta.0":{"name":"comment-parser","version":"1.1.6-beta.0","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.1.6-beta.0","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"57e503b18d0a5bd008632dcc54b1f95c2fffe8f6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.1.6-beta.0.tgz","fileCount":129,"integrity":"sha512-q3cA8TSMyqW7wcPSYWzbO/rMahnXgzs4SLG/UIWXdEsnXTFPZkEkWAdNgPiHig2OzxgpPLOh4WwsmClDxndwHw==","signatures":[{"sig":"MEYCIQCp6tTdljyG9PuzUIDhuB+v8Bw+DDUl4ZxlfWIz41gLegIhAOxvXEHfPQiXidWhRL6tW6pBsWhj8Jcs+DbRu/cPhPhZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":274905,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg423HCRA9TVsSAnZWagAA/gkP/jcVN9pk/DZhUCI2wdWH\n7Zks6ryhTAsT6NHg1rfCr04RiDUKDBPmf+wT3zQeyrghxGNkpDTTr00SBa4Y\ndaV3sJmXo5irzdmFV+6Ep7w9aU+JESDMqUHOiDKu1GcgNq0rSyZEKEln63Cy\nOH0CwLGVikN3hkfsFP/wxwkIRM9O4aEWV6mbfRRfnjkFeDIQCtWgfwmNNrE3\nEVp9pVcrELB7QU7gd5ZQ1sxPmAZwrgDrIBtco9K6DyY9mGbiRY4HPzz4yrhE\nps3nsMQwwD3k6Pm7wcQ+l8PXWtAqS8l2edq1WgGC59cHGof3pPszImlic7eJ\nW6ECGpmstPGLSLumPLpS5kyrRnOcVBReyT3xEM1FIp73qvS2xdAFcmekoVN/\ntdANAM0ko3lSvNPLZWWRZ7ACzIUeP0xvH9WVT2pculBx9dvys1yKANM4lCuN\nn0PikyWDJBJsSz9Zz1QNc5GQHo7vF2UqxLe0IRCWQV1vwg0eigoH9rQey21S\n83DCxb2bi9loXluBxZrBSvDLjGWxPYfwDi405Z6MpY42eTnMdv3+VvXfELHm\nOOTHmGP3a3BMNrs6NaS4hp8it+R4qSi1ud1f3qloqSd/NrKAQ8+eYia37bq1\n+kuXTw+sey30cna3e/YUu5EFoIXe+r0qrrNLpfl9Wbr5YTOaf9YSGqD5WIsj\nozss\r\n=8F2G\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">= 10.0.0"},"gitHead":"0c10a032c83a2a1c352adcbfaf33aa9c72782967","scripts":{"test":"prettier --check src/ tests/ && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js","format":"prettier --write src/ tests/","pretest":"rimraf coverage; npm run build","preversion":"npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"7.5.2","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"^26.5.3","rimraf":"^3.0.2","rollup":"^2.33.3","ts-jest":"^26.4.1","prettier":"2.1.2","typescript":"^4.0.3","@types/jest":"^26.0.14"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.1.6-beta.0_1625517510822_0.8822899759891352","host":"s3://npm-registry-packages"}},"1.1.6-beta.1":{"name":"comment-parser","version":"1.1.6-beta.1","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.1.6-beta.1","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"17a698f1566b88db9991aa83f49f5a872713c0d1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.1.6-beta.1.tgz","fileCount":130,"integrity":"sha512-53nPGXkCaGHXLPRwCfA97CY2ywDF8/wJsxqH0GQDJasaR2DR+fhcOoTvHDLS2NYIKLmhgz1tZpD0guIHHvVdxA==","signatures":[{"sig":"MEQCIBtzwahhlhBPg0igmrBBwUjMBKKVPm1cG9bpC33E+FZNAiB+oKWqhoOMUvjYtzZptfSJeVOg1uSxf3f58sJ1mwnWBQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":279410,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg+QpKCRA9TVsSAnZWagAAxbIP/iaDtt7VLI1dhiZGe9Hn\ne7No37lzs/suNou7IgtiyiGRXGNi8fkqJyG+g7B1DgPwq/BmtQcxR1yKz7Y4\nW6dJUjNYCJbfrAqKq7iSYsUhORh7Q1bHtCqgkngGXL6yNuR8Hgr4axjx8Cg+\nPC9uMny+HfHnevaQSzfWXuQQbKKQMpIMRdGUzbLNNz1kFKqXYrZ341788lHh\n7jMx6xx6kAexshlSGBEnlawfyuhT6tneTWoQqZ8mzaRNtADEukByEKHNLp2T\nFNjlc+4tOpEadyBnk/P4h7gz4clIn6Tlwg4NaWn0naf4u4srIc7JN4jHGMNd\nFD4FAl36gDIVIlQ6ZM6D8e/BGemtRith28eaN3TJQ3usXfUikTM8cBzvpdcH\nwfmgNS6G/vEFeVoTNz7XLc82zvN85idqcEO0JB/k3a/+T8vH/4pxEeDgdrxk\nwLWUBV208eCNpBdenDYF32xIpmgYwRszAnYwNvMPLbCxzOM5HnLtYJZRtXAA\nzycCjmibVKTgmVPtMXeeYTBfw3J1XjtIBRBO1ZPyY3ptps8B7yM06K/ryG0h\nKt2DtQzCQ6Chl4BiWezGLMUDvFEM4zzuFYAVAsLEB2JT9aWvj+O3dEHnk9r4\nsXD6DcxC8zPUp/LuKCnoLw5VNkoJeTW1gK5eNzSr17KbmxrblSAiLL6zJg83\ncVM0\r\n=hErM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","type":"module","types":"lib/index.d.ts","engines":{"node":">= 12.0.0"},"exports":{".":{"import":"./es6/index.js","require":"./lib/index.js"},"./util":{"import":"./es6/util.js","require":"./lib/util.js"},"./parser/*":{"import":"./es6/parser/*.js","require":"./lib/parser/*.js"},"./primitives":{"import":"./es6/primitives.js","require":"./lib/primitives.js"},"./transforms/*":{"import":"./es6/transforms/*.js","require":"./lib/transforms/*.js"},"./stringifier/*":{"import":"./es6/stringifier/*.js","require":"./lib/stringifier/*.js"}},"gitHead":"3eb27c2a89c876711b482f6e77f4305032f1ea7a","scripts":{"test":"prettier --check src tests && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && cd es6 && replace \"from '(\\.[^']*)'\" \"from '\\$1.js'\" * -r","format":"prettier --write src tests","pretest":"rimraf coverage; npm run build","preversion":"npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"7.19.1","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"^27.0.5","rimraf":"^3.0.2","rollup":"^2.52.2","replace":"^1.2.1","ts-jest":"^27.0.3","prettier":"2.3.1","typescript":"^4.3.4","@types/jest":"^26.0.23"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.1.6-beta.1_1626933834442_0.600800945020864","host":"s3://npm-registry-packages"}},"1.1.6-beta.2":{"name":"comment-parser","version":"1.1.6-beta.2","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.1.6-beta.2","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"8ca94229af21ac5f1c4771121d1d545b7acba8f1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.1.6-beta.2.tgz","fileCount":148,"integrity":"sha512-HzRaA0WWWvbIHcv256CCfIfRTFmAK2NN6XIU9mz9G0zYAZeHsHHu1Yjlh0R7ppi14NNTGkC26R60CQFmwhwxyw==","signatures":[{"sig":"MEYCIQDpm254ABVWBuRlpLzFi1/neZ/fE8J1uVdntB59HjeQkwIhAK8X85iYZRwoqXzMYR+bcXnfF6EOa1mnA6c4ArNn9qQO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":345837,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg+9ABCRA9TVsSAnZWagAAqOUP/1RKr8QP7ICK2zqJPfup\n9UY16ulJtAbK6ivKMrSPMhhgyQPCP35WUD4X0S6rKFCWHa8CVStIHUUJ8bmV\nS29oWIgU5SOKPHgFESqkyCcL7bAE/lQmbJ0uPxRkFV+pKMWs93YKICwMq8ew\nQYSQHTfQTPPCInt0jgh0kKUfOqDGugeG8ndSYcHGyyA118hjKTrq06C96N0I\n/xn80P9wNwcI9LGpDaQ469QW8LbrcVYcP0eRimzJhqFxbW6AWbiSQuk4409J\nEpjrMCLxHfpNR3iyFQjk3ErdPueAJKtC53Z4YrrMcv4QlcbgxQxdPcdv1zux\nNP10E01zcWBWG6yZ+LkqnhmA9WMhBfrohRQH7otWk3XpXvRkwXRqi+xtgTSR\nCh9+M1QFikmj7Csxl1lqEVlHjGpuluuQn31qT2LxjqrOccr2jD816d9yzoOI\nJvBtqL7RXHdzZeRqwi7sc3q19ou3oGcH4avRb8rQGYyWMXzEGxXIPUN46Lpj\nY6bhTRDc4xNd8/VmeTh2svKL37gZ1T7KtmBxo2X6ObDJsoqqS4jbV7kfJ3O5\n2iJJGVoFmHjmQzTLy7hR+NrCno0RIUEvTtEnarX8XbbJEFFoypQOPyRfMH21\nAAEGPdmvLkAR4xrBPeVy8DjAUp5VjOwaVSQypuAv7CGiIuV+jqc/E+NH2+6J\nPjop\r\n=pAVG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","type":"module","types":"lib/index.d.ts","engines":{"node":">= 12.0.0"},"exports":{".":{"import":"./es6/index.js","require":"./lib/index.cjs"},"./util":{"import":"./es6/util.js","require":"./lib/util.cjs"},"./parser/*":{"import":"./es6/parser/*.js","require":"./lib/parser/*.cjs"},"./primitives":{"import":"./es6/primitives.js","require":"./lib/primitives.cjs"},"./transforms/*":{"import":"./es6/transforms/*.js","require":"./lib/transforms/*.cjs"},"./stringifier/*":{"import":"./es6/stringifier/*.js","require":"./lib/stringifier/*.cjs"}},"gitHead":"6db134ed57c30d9d057487ebefbdedea20ac0c4a","scripts":{"test":"prettier --check src tests && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/ && cd es6 && replace \"from '(\\.[^']*)'\" \"from '\\$1.js'\" * -r --include=\"*.js\"","format":"prettier --write src tests","pretest":"rimraf coverage; npm run build","preversion":"npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"7.19.1","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"^27.0.5","rimraf":"^3.0.2","rollup":"^2.52.2","replace":"^1.2.1","ts-jest":"^27.0.3","prettier":"2.3.1","typescript":"^4.3.4","@types/jest":"^26.0.23","convert-extension":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.1.6-beta.2_1627115521439_0.7341844988166415","host":"s3://npm-registry-packages"}},"1.1.6-beta.3":{"name":"comment-parser","version":"1.1.6-beta.3","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.1.6-beta.3","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"66df48fa6e8a10d9e31016613491b78075fe3065","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.1.6-beta.3.tgz","fileCount":148,"integrity":"sha512-LkPpVUx533rkxrkgphwWo0u6A3Vn9/fa8biHo2mrL6NUKPL6ubnF1P7NTm/M9i/rUvQ/mDxVqOVlmqy5uNUmVw==","signatures":[{"sig":"MEQCIA6MnxojJ2mU/LSfw+hTNg8ZyoeuQBG0Gi4oBENn5Z3pAiAbRmaRDg1+gNcGP6CsuTe4/VMKLUlLwWb2uvU+WMKosA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":352938,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg++auCRA9TVsSAnZWagAAImsQAIle3HLz9A6qPrzk7K70\nRfP6O5QtmwHjgknzzvYaUWNlqDBhp3/b/zlxlVauG+O3Rh4e8rQSqKNK7ENC\nHdqxXOzS+Y0ZZcnxxe2rKo2U12/OgUu39RHxBgt8k4+DAysCmBBXeh2njnIW\nQlgr3drO7+j9FT4mnHv0HkjIRGxK+gr+W+1Z5s2jRlTukWm6jrF1Z9h3ErhM\nHXD9KpPRvy/93L00vKnKUAo5yUdgaeobhZ4RqtfQjQLBuxtb00QuczV8LC5p\n4fBIIMOILgPbLwAt0oSMpZ8jAU4iPgYAvCA+BJuh648CAVGt3xwvekdyhXeQ\n1XXz4nuUEnQxHGS24sDnTsXcg5tPzQwkTACfgueLRwFV9dhkirWlK65qzNKn\nFGW6+pghWyvMT+VKXVjkOsVjxgiTri2n/X1f/EqVjDos3/evXghYh3TSFDlD\nhxxWd21Gc9KSTc+Q70Uvp6CIPuO2oW9BB0kpMMW+4U3Yo2LFS24AqExxnQzO\ngFgAkrLs1XoqXIHkZ7r4K/wJXQUwELuBYTqkewwesg3d6ZZ5dHJKI+g/0LGk\nLk2w62GaaLRw8XLmeLPCliT5hw0YxgE+mAQL2mmX66ntK07bwO/N3Ls/wEg/\n2SxYIfnxtgnMAegw+pocnRn9RH1oHmnj53ZIzN6oQHaG0kJOCqwqCa2Q96Bb\nDJug\r\n=SzSY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","type":"module","types":"lib/index.d.ts","engines":{"node":">= 12.0.0"},"exports":{".":{"import":"./es6/index.js","require":"./lib/index.cjs"},"./util":{"import":"./es6/util.js","require":"./lib/util.cjs"},"./parser/*":{"import":"./es6/parser/*.js","require":"./lib/parser/*.cjs"},"./primitives":{"import":"./es6/primitives.js","require":"./lib/primitives.cjs"},"./transforms/*":{"import":"./es6/transforms/*.js","require":"./lib/transforms/*.cjs"},"./stringifier/*":{"import":"./es6/stringifier/*.js","require":"./lib/stringifier/*.cjs"}},"gitHead":"b3c52c9be6c4270cdcc8b61e21f50ca4cd628581","scripts":{"test":"prettier --check src tests && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/ && cd es6 && replace \"from '(\\.[^']*)'\" \"from '\\$1.js'\" * -r --include=\"*.js\"","format":"prettier --write src tests","pretest":"rimraf coverage; npm run build","preversion":"npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"7.19.1","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"^27.0.5","rimraf":"^3.0.2","rollup":"^2.52.2","replace":"^1.2.1","ts-jest":"^27.0.3","prettier":"2.3.1","typescript":"^4.3.4","@types/jest":"^26.0.23","convert-extension":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.1.6-beta.3_1627121326263_0.3680319882591978","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"comment-parser","version":"1.2.0","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.2.0","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"f8e8e3fe8decc571b1656f415b4d09e718cd14b0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.2.0.tgz","fileCount":148,"integrity":"sha512-kdZPZcLyIFDeRmNqWFChGZ4wNy6QngVomE/d/6vkBFKpQxTYEY2qWnHGpTM0KC/sq0PwZXXRDYJl+PmWIMvmjQ==","signatures":[{"sig":"MEQCIDnPKQIx2HDT7iNxikjvXQRifqqz9c+F1oZVxc64o4GlAiAqxSZCCyicD9xc3g8kBbT7XeVxBqck47IhaOx+XltXaQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":352989,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg/kksCRA9TVsSAnZWagAAdZMQAI+p2ns0l0jjT8VVD92e\nhW/TDjOXIfn0XMw2EVBCY3bLkD+qA6OSKbFRCyPpB4bXtqzmBKjanOoeTGxc\nHe4r9Bfm5kbXyANKwZoR7LZoi47oxwm1NcZuxXui/iqa81Xp2MGlCvccpO9s\nbjuGPbnq8vANacbvmHxzpOt5XpIq+pTTL+QTgLhJKf87m5iWoXFMFS0jyfuV\n/HRwd6lxaaqVbVxMjP8b/4mSwBPLyEiDY5vhXP+6cDUSgRXMYDetxvEdiRAu\naTq64Vj7wIF5EBxVFi3ANeSqiySHcj6lbnkJhCUXqKJI5xP9b1dKC0v2f4pN\noM8Y6HFPV8wc8tHuyeTSfaFv+q6yrl61VYvuAlc2xR3+qsJSdcuWcNNyP0oV\nnNVDs1UqFvS0juvoQ8HCkRDIabZw+5FwTIMT8MyaE9fM6hKRdr4AJtzRm3Cf\nbz356BHE8qMSTvkjDwUERSl43hgSgspaIn6gwvjqmZlY2BQJuAfGatnxFg8t\nMj7batnm4W+1ZfkqhCDsJ1Cyl1ajLUmneE4oNjQLBmonmWc5NrYizkjaEsco\nhW7row8kE32W7xxfXteVqjUiNjJ9fmhNMoHjqU8TEdk+/sbLiVFVmEFex8fe\nBUnvYfMsZEUsA2K/K5uYiJiOT4pFMdODsZQG/Hdonp2Vu38gkdv8ZFl4B5fc\nGcb0\r\n=m+SR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","type":"module","types":"lib/index.d.ts","engines":{"node":">= 12.0.0"},"exports":{".":{"import":"./es6/index.js","require":"./lib/index.cjs"},"./util":{"import":"./es6/util.js","require":"./lib/util.cjs"},"./parser/*":{"import":"./es6/parser/*.js","require":"./lib/parser/*.cjs"},"./primitives":{"import":"./es6/primitives.js","require":"./lib/primitives.cjs"},"./transforms/*":{"import":"./es6/transforms/*.js","require":"./lib/transforms/*.cjs"},"./stringifier/*":{"import":"./es6/stringifier/*.js","require":"./lib/stringifier/*.cjs"}},"gitHead":"5cf420a04b1b2a1ad81741ff11f0b01572408a91","scripts":{"test":"prettier --check src tests && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/ && cd es6 && replace \"from '(\\.[^']*)'\" \"from '\\$1.js'\" * -r --include=\"*.js\"","format":"prettier --write src tests","pretest":"rimraf coverage; npm run build","preversion":"npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"7.19.1","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^27.0.5","rimraf":"^3.0.2","rollup":"^2.52.2","replace":"^1.2.1","ts-jest":"^27.0.3","prettier":"2.3.1","typescript":"^4.3.4","@types/jest":"^26.0.23","convert-extension":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.2.0_1627277612161_0.4625012150664618","host":"s3://npm-registry-packages"}},"1.2.1":{"name":"comment-parser","version":"1.2.1","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.2.1","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"38778b5b2af825cc10099fd5923f8ac151274381","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.2.1.tgz","fileCount":148,"integrity":"sha512-nZKYGIben18JaK3AcokrFUpqdY/aRkEtHNM3nm8zhLRxZl+kNEiTelGhfGHBkzzA4s0KDpNTX8xSdNYX1hH7Mw==","signatures":[{"sig":"MEQCIHfWR/5RyLGt20nX4tm30VY0/cKWzUU0zZtl3cHPAAjuAiAqun6/yOoXoh5eTulF57o0Y3AnTBsehmMxE8tQ1fnUQQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":353078,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg/lGJCRA9TVsSAnZWagAA714P/jbgV5nDZ9B9N1lNFNf4\nHkO8rrwiWiVwKA5daGB6FysxrBqF1GqgPJJa7xtAlq8lMQ1VsG6TyeCl/JbZ\nLvrkY/UacQZAuHpOh6DczwMcNPn7KokrNqhpK1Gzie+1D1xUqIJ4KfakB4X6\nVA/hukis7EtT6DR2jDQ5CpBFpqwc1sLF+p1Jx1hl9ge7HTTj9cP89mLLicqz\nbSzsMznYrARz+c0ZtT9qxe+sHluz1tD6Una1/ri7vJGBzkVgRZVWEHJENFpM\nAONOKQyodaXaKRcp2HDhK7e0JF0a37rpaKRVkkBKEqWx+eKUU0grW+sWtfLL\nmcPHD2xF04DjYAo2Ghjdxs9yDmiCNf232LQlk/6M4GwiPwkLMHOhedTeGeoA\nTFUMUpOXFW7PfmgyuArj3kQDRCEj54hGl7NCbr2af4nC4o3/ngKrr9qcUqlP\nKFdew1p3Hkl6TEQ1fJBOMVE6NIKI+VZL0Mw3oopBtmO+A9V/it9CzNZ6pxQw\n9upYOOJRk9DeudXluEjVVqQf4G9MGRO0AGe4evRAGtzOYaV3EU94BbQUK+r8\n3FtjKZ/NWHMny/t8It2E1+XAj7S6ottrK1173Q1ZwXPAOsu2SRKI6baqWMez\n1/1dF1SNgdTf0AeA9pWKcvV2FyJGEJLjKb4Vm/U8Ob0g1DcW+oxZlLH5yyEq\nbUdV\r\n=hYdT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","type":"module","types":"lib/index.d.ts","engines":{"node":"^12.20 || ^14.14.0 || ^16"},"exports":{".":{"import":"./es6/index.js","require":"./lib/index.cjs"},"./util":{"import":"./es6/util.js","require":"./lib/util.cjs"},"./parser/*":{"import":"./es6/parser/*.js","require":"./lib/parser/*.cjs"},"./primitives":{"import":"./es6/primitives.js","require":"./lib/primitives.cjs"},"./transforms/*":{"import":"./es6/transforms/*.js","require":"./lib/transforms/*.cjs"},"./stringifier/*":{"import":"./es6/stringifier/*.js","require":"./lib/stringifier/*.cjs"}},"gitHead":"e17e9891264569e6998535ef6a62284cba5c7455","scripts":{"test":"prettier --check src tests && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/ && cd es6 && replace \"from '(\\.[^']*)'\" \"from '\\$1.js'\" * -r --include=\"*.js\"","format":"prettier --write src tests","pretest":"rimraf coverage; npm run build","preversion":"npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"7.19.1","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^27.0.5","rimraf":"^3.0.2","rollup":"^2.52.2","replace":"^1.2.1","ts-jest":"^27.0.3","prettier":"2.3.1","typescript":"^4.3.4","@types/jest":"^26.0.23","convert-extension":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.2.1_1627279753344_0.5568231937760395","host":"s3://npm-registry-packages"}},"1.2.2":{"name":"comment-parser","version":"1.2.2","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.2.2","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"6d6d6420b6f0f69e262dca413cb6b0c8eca95991","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.2.2.tgz","fileCount":148,"integrity":"sha512-JOFyx2AUx2JqljBa2M6pywt2vDE6OvfP9kwgKnydOlyobNty7B7kBeMpwHDMrN+MS7z+XFvBQMM2dThkOEofrg==","signatures":[{"sig":"MEUCIGdvtBB94r2+XUohsFutxc1Mt/n+w4Dt0V1YKazQlzUfAiEAu7zkjYryQ+GHeUjr2916N6rNV7nahMZ95gu7EsyIWPg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":355480,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhAPVECRA9TVsSAnZWagAAMUYP/iEsk9v2d+dRKsBU/06n\nDSv0ukVEbKeplpH902wp0y1Jtv4B23Z4T1j5mtyqUtPg9BToGBdQQMW6ukI1\nme3Yd6QEQsXguqVJ5KEoCIbmfsLqWh/nY2sJqff+5FmYLOg49MEG3P2BOB/x\ndHFcicUtrdhD2Yln+9R4T3MYmqWRcVCQdtc1DjFNmqclfEWAeJxFBYTt5DMB\nIRwYTkb05/glcsS+uYfVRd1ku0TiXzr+5Sn/3KQmFtmtXVfTg88Ee1/IQWqk\nAb4JeMZiW3NKSJNONF0IsKYweYpwQa1V07WUALwMALeOrbf/P4vyXxYvT/vJ\nCmqoMpu94gyEx1OJQeiiebOCTJEw9OuX10EyJdqiRoh6BTPdwBwOXi032Equ\n/5zRYNaXR4WxLrTnHcFw9PNdYEGfmveUTIjlOIL1/uv1OJVRzIn15xBmqFY4\n7XmxxSxz8aFWFWWqILXlkGJxC+7z+e4BOafkyWdSRs4x114Sv4y4BaRbhw6E\naKwqaYUxqVA/wzLFX7iLVQK/KEsqa7WSX5N2fWUVo49HyLEhKQ8FGZOnnATR\nF8LtyZHRdXoWFSzupTJVzqvgFYeAY/EupXk6XNHfdvUyNdPkJ4BfMyw+abJz\nfvzAqkd5w2kvPC/on/vAOcyp51ctHxI8LWhe6SnEZgpQ5M+z5Wqs4biZr2Sn\nNb1r\r\n=qsgj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","type":"module","types":"lib/index.d.ts","engines":{"node":"^12.20 || ^14.14.0 || ^16"},"exports":{".":{"import":"./es6/index.js","require":"./lib/index.cjs"},"./util":{"import":"./es6/util.js","require":"./lib/util.cjs"},"./parser/*":{"import":"./es6/parser/*.js","require":"./lib/parser/*.cjs"},"./primitives":{"import":"./es6/primitives.js","require":"./lib/primitives.cjs"},"./transforms/*":{"import":"./es6/transforms/*.js","require":"./lib/transforms/*.cjs"},"./stringifier/*":{"import":"./es6/stringifier/*.js","require":"./lib/stringifier/*.cjs"}},"gitHead":"6c6f85eb197c95d3b0a5d2755d79ba4addd2f8f6","scripts":{"test":"prettier --check src tests && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/ && cd es6 && replace \"from '(\\.[^']*)'\" \"from '\\$1.js'\" * -r --include=\"*.js\"","format":"prettier --write src tests","pretest":"rimraf coverage; npm run build","preversion":"npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"7.19.1","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^27.0.5","rimraf":"^3.0.2","rollup":"^2.52.2","replace":"^1.2.1","ts-jest":"^27.0.3","prettier":"2.3.1","typescript":"^4.3.4","@types/jest":"^26.0.23","convert-extension":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.2.2_1627452740568_0.12213964085276818","host":"s3://npm-registry-packages"}},"1.2.3":{"name":"comment-parser","version":"1.2.3","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.2.3","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"303a7eb99c9b2632efd594e183ccbd32042caf69","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.2.3.tgz","fileCount":148,"integrity":"sha512-vnqDwBSXSsdAkGS5NjwMIPelE47q+UkEgWKHvCDNhVIIaQSUFY6sNnEYGzdoPGMdpV+7KR3ZkRd7oyWIjtuvJg==","signatures":[{"sig":"MEYCIQC+FTnRy0zxhm7dL8DkpOMaN9kigo4bHkcWOnS9LMDG/QIhAInfdU91sNzlgKllA2wkd4xO+LfC4R2zSg4P8sn+iwA0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":355550,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhAPf2CRA9TVsSAnZWagAAZkoP/1VuMWTQjX0E88WVfUij\nraf2sTILs8/PnQZHgmj9C5CUBQHjGtj8X9QRiaxET+E2hs1TappxCRj7ixAw\nl5c9ljQaYv9I4CFyAf4tWcttrKLf+bHAzPHoz5l84WGCv3UwW66cbCNHDlE9\ntRUERcFeZrFscXI9ZLtsQZFxzVAuoemLCo2rU7cNdy3WxPvSsk7rMi0kv98w\ns08nrmklHrfesj2ebN0krBAW/Sdz4GzzMdzyA7CcS5CjJ4LkThxVXONsBuvn\nNAkPGlqZixiMzYaANecGrZRyDoRs34wYqs+7BJqg5n6NeslN9wv8VuSc5JG6\nd1Oru0VOU0IG+x8Emb6x7J+zQKdtjOIVLfm3Ryr7keXQI2xWW/1Ivq2FG640\ns+1rLUxgK4U430yqiJP2Vf/QMuU5nqbdW2BOeXEq6NQXjqwlLUtLyInq9x75\nq/iEfWrgfSIwZI6udt2ThFlO+7UowN7XrtbCRcQQ0+1awv14hymdqKnMNmoT\nzfCf0XJD5O+CJIwBK9qRZltRRS+fcsPKVSE8Jfe8DsKMJi/SJ1DOg0TpB3NA\ng4ae1DuaQG4/NkUXnBmhtsx5EVtBBKoR9xxYJCI+Zmw4VBLcMyPYZ+alsjSo\noiq99uMLQXAu2Og+lxoK1q7jUAADk7fQTqGVaR9Iu4Px0MeXvlKAZB17nj3d\nnS2T\r\n=QLio\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.cjs","type":"module","types":"lib/index.d.ts","engines":{"node":"^12.20 || ^14.14.0 || ^16"},"exports":{".":{"import":"./es6/index.js","require":"./lib/index.cjs"},"./util":{"import":"./es6/util.js","require":"./lib/util.cjs"},"./parser/*":{"import":"./es6/parser/*.js","require":"./lib/parser/*.cjs"},"./primitives":{"import":"./es6/primitives.js","require":"./lib/primitives.cjs"},"./transforms/*":{"import":"./es6/transforms/*.js","require":"./lib/transforms/*.cjs"},"./stringifier/*":{"import":"./es6/stringifier/*.js","require":"./lib/stringifier/*.cjs"}},"gitHead":"bcb2c2fbb256b62741a6fc7933b4d5d8537ae4eb","scripts":{"test":"prettier --check src tests && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/ && cd es6 && replace \"from '(\\.[^']*)'\" \"from '\\$1.js'\" * -r --include=\"*.js\"","format":"prettier --write src tests","pretest":"rimraf coverage; npm run build","preversion":"npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"7.19.1","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^27.0.5","rimraf":"^3.0.2","rollup":"^2.52.2","replace":"^1.2.1","ts-jest":"^27.0.3","prettier":"2.3.1","typescript":"^4.3.4","@types/jest":"^26.0.23","convert-extension":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.2.3_1627453429928_0.4302682213889608","host":"s3://npm-registry-packages"}},"1.2.4":{"name":"comment-parser","version":"1.2.4","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.2.4","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"489f3ee55dfd184a6e4bffb31baba284453cb760","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.2.4.tgz","fileCount":148,"integrity":"sha512-pm0b+qv+CkWNriSTMsfnjChF9kH0kxz55y44Wo5le9qLxMj5xDQAaEd9ZN1ovSuk9CsrncWaFwgpOMg7ClJwkw==","signatures":[{"sig":"MEYCIQDNAOwYD+f5R9n/Oi0wCLE4dHUWfsorLB/zSXTn0b89nQIhAMbX5nDzgL/AuMRprOtKxfex455MKZ6GHctd7aoHq03t","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":355591,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhIrg7CRA9TVsSAnZWagAAi08P/2SF3SBbxGCW3SWw8NTz\nOOHG/ZcL72uEYLf/vMY8Np1oPANWMMR1RNMWOST/MRWnuj17Y4eDx+y3twIl\nlk6tTh4lDzHnimkayzIqbbt4zx1XPVTtx/M9pPg+ldlIzLirz+0ZFm93V8ro\nhPCmZZmva/aP9kfMS5TB68XHlNqnV/6tS7CrnQc5zDNddj39ut29UJ00xrdQ\nMJTJLmZEnzLJ4n7Zjl5sSRshgVExVmlfVUvOfEZNqL9upbiKH+th1oUuf4JN\n9iluEQbkQFJjuG6W6J352tDEZfiFWPbApTI5SE/sE8u2q7ajR6lVxz4s7lHP\nB431KSdsVbwFGULnvBTEnQ4Wsc3lGDF5cmhm+ecH37uzSv6SeQNDZgaJsUq2\n+oDUem10wInYiVSZdUitnR+IGqzRyR0vg4vr6z4ZjbucARb5+b3oTzDg8WVm\nm3OIlRWXbWWoLZPkpL9NjgQEWvOLsABpQ06b+JdMHfvGE9V9wJ+DsEm3G7tu\nqN8F3w3dik3aA7L4eLkX53mXvEGZ/VLWw7N9quDyfv0byaTb62V22hv/M48J\n1vgOFfhzvdAHMH8e6qsQEJMR81bivkbzE7zjHiSMMGul/Txm3uVIb4XPAEGG\nh4hG1icoONQZPFXMftSXurHWWgaRaRTHi5joeZEFNHLo7l0jV1PKzomyjzMs\nKhMN\r\n=9wcB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.cjs","type":"module","types":"lib/index.d.ts","engines":{"node":">= 12.0.0"},"exports":{".":{"import":"./es6/index.js","require":"./lib/index.cjs"},"./util":{"import":"./es6/util.js","require":"./lib/util.cjs"},"./parser/*":{"import":"./es6/parser/*.js","require":"./lib/parser/*.cjs"},"./primitives":{"import":"./es6/primitives.js","require":"./lib/primitives.cjs"},"./transforms/*":{"import":"./es6/transforms/*.js","require":"./lib/transforms/*.cjs"},"./stringifier/*":{"import":"./es6/stringifier/*.js","require":"./lib/stringifier/*.cjs"}},"gitHead":"b39ebd85810a41e3ccce111fea51c8abe9a89880","scripts":{"test":"prettier --check src tests && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/ && cd es6 && replace \"from '(\\.[^']*)'\" \"from '\\$1.js'\" * -r --include=\"*.js\"","format":"prettier --write src tests","pretest":"rimraf coverage; npm run build","preversion":"npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"7.19.1","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^27.0.5","rimraf":"^3.0.2","rollup":"^2.52.2","replace":"^1.2.1","ts-jest":"^27.0.3","prettier":"2.3.1","typescript":"^4.3.4","@types/jest":"^26.0.23","convert-extension":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.2.4_1629665339591_0.7559463539589915","host":"s3://npm-registry-packages"}},"1.3.0":{"name":"comment-parser","version":"1.3.0","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.3.0","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/alexgrozav","name":"Alex Grozav"},{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"68beb7dbe0849295309b376406730cd16c719c44","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.3.0.tgz","fileCount":148,"integrity":"sha512-hRpmWIKgzd81vn0ydoWoyPoALEOnF4wt8yKD35Ib1D6XC2siLiYaiqfGkYrunuKdsXGwpBpHU3+9r+RVw2NZfA==","signatures":[{"sig":"MEYCIQCG3ne5I2XrFX1vpnx/cbgVXo637Or50EcUUkLU3uTk+AIhAP4U5QfsSiWjq/z09a2EkYoM5WFna/xnkTiUjMD2fVkO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":361222,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhlKa7CRA9TVsSAnZWagAAgC4QAI0/8u6Q8kro/1/tv3QT\nK/5TdqbcJ8LXderolhJe6GDcUeXmtoTobiltUhVqF3MeTk2myYAfzBByGk39\nBpzup2xfwAOSWtTN0d5rpJBIqE2pZ1oNgUUMPLIMtRJ9D6zSGe9JiICjanNE\nDBUGJDok4wgYUcdddZcMjxFg8yL4WbbAWCm9lp4VZTlg7lBpGiN/sW2f1Z7Q\nxcWPnd6M4A+VKwNOKmSNsVFAeuS/gUxENptfrHM7zgekej/uRPEs9PSpaJ8U\nVW/z0dAcec5CZc1v/cph1PRCVgD7OytE8FqTPhjpqSp/v9y4dsgKhiR6oMqN\nyDZpAXhMwquJIdygo5JgVCjKXwysnWU67L1G0WPjr06DMTAs+TKRmM9oDypO\njPdgfrD63QJNGO7p1O7NQZpbiONUL9MiQx3NOzC2nn33TJDOgEYkkFv/gNLu\nvvHYm8qE6eByB7Rp/4pLmYNUvfMNyPc6RFdXcJGs4OT5rHhYkhOsYROJp0b+\nxmDULhwxYfkrfl45M6WTfCGnoBUn0JRISqj+1Hv6Xj2Rn80wAbLoMhUE2Axz\nqCVuwyTyD4LUz8T8xsF83N591Tmb4gOeG8vqYRViSlyyXzNL5tKiQ24yV+Gi\nrGLOqfy4vLqO+m2xYJHvqg/BxI+TmCflQxtaBcKGWpKoPb+JpZZegRDtrInv\ndGR1\r\n=9hL4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.cjs","type":"module","types":"lib/index.d.ts","engines":{"node":">= 12.0.0"},"exports":{".":{"import":"./es6/index.js","require":"./lib/index.cjs"},"./util":{"import":"./es6/util.js","require":"./lib/util.cjs"},"./parser/*":{"import":"./es6/parser/*.js","require":"./lib/parser/*.cjs"},"./primitives":{"import":"./es6/primitives.js","require":"./lib/primitives.cjs"},"./transforms/*":{"import":"./es6/transforms/*.js","require":"./lib/transforms/*.cjs"},"./stringifier/*":{"import":"./es6/stringifier/*.js","require":"./lib/stringifier/*.cjs"}},"gitHead":"9b7b865d7958e1c0d85f975c7c5e93f44fe34144","scripts":{"test":"prettier --check src tests && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/ && cd es6 && replace \"from '(\\.[^']*)'\" \"from '\\$1.js'\" * -r --include=\"*.js\"","format":"prettier --write src tests","pretest":"rimraf coverage; npm run build","preversion":"npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"7.19.1","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"jest":"^27.0.5","rimraf":"^3.0.2","rollup":"^2.52.2","replace":"^1.2.1","ts-jest":"^27.0.3","prettier":"2.3.1","typescript":"^4.3.4","@types/jest":"^26.0.23","convert-extension":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.3.0_1637131963071_0.8925834221805913","host":"s3://npm-registry-packages"}},"1.3.1":{"name":"comment-parser","version":"1.3.1","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.3.1","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/alexgrozav","name":"Alex Grozav"},{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"3d7ea3adaf9345594aedee6563f422348f165c1b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.3.1.tgz","fileCount":148,"integrity":"sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==","signatures":[{"sig":"MEQCIG/asQNkwj6RiKg4sPqorG77ZHAGXqaPPth8JDorUI0FAiA5y+1mjxJqlnn9c3LLtn3UN5bgi7QmKIHrUS/rgK64DQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":362504,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiNXk+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqhPQ/8CEEToA9OtE/cch7ryD6jbSHupYG2Rfnvl8WEb9YIYrUhqhNf\r\nLCB+3F450QpTLTFtAJ2eHL10dq61aJE0LHvLL9Xn+yjoqhQmlb3acT0oUk0X\r\niJCoYPgCtD3jLxmXTT+NjXwXCab9VnYzDmGMMU70OCc1AzOmvpM8f7acEACm\r\n9dLZ10W+rua/Bhuar/FBSYbZliegcCaLshHIp8Pu7FClTlCdvJQPj9xc7Dna\r\n4SDbfvnLhn62vBvhMqlo8NOBvwIzYyh8Clq8WwaU6FptZuEpsB0QagkRt92h\r\nq2pgD1LdPBtwxZJ4CmcrQ37+Pb4QEwgB/tWJaEPEMiO0uBO39tndNbNaMD1I\r\n30b8bfTp+nfr9lOC+t9+qKJrj/swd2RXRTEWoynfpeU4ILs7jGCMJLV3sZtI\r\n1ch1yquMw6kGGiG7K37keF1ke0DxMjUIIt0zH09RN5M9/00YW6hxhicSNLX4\r\nYvdz9fC3kptTQD8tXQ59yhB43B5mLbwpW2TYqEi6NWRjpkM6x46pnU62Gkbh\r\n9Dju2N8YW6WvaT9KhUoYRTXMvdGSEDtxdh7bVKM++9xszqvOj/zg6IppQFw1\r\nY0MH0xMGD7M36+5XHOSgUmoOpBJFFmHb8quYGauLYfcdPtDixb8Gu1f89S7u\r\nh3bBjGL2gXJitoEU78tkc9u+o/aIC7Va3mw=\r\n=GpPa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.cjs","type":"module","types":"lib/index.d.ts","engines":{"node":">= 12.0.0"},"exports":{".":{"import":"./es6/index.js","require":"./lib/index.cjs"},"./util":{"import":"./es6/util.js","require":"./lib/util.cjs"},"./parser/*":{"import":"./es6/parser/*.js","require":"./lib/parser/*.cjs"},"./primitives":{"import":"./es6/primitives.js","require":"./lib/primitives.cjs"},"./transforms/*":{"import":"./es6/transforms/*.js","require":"./lib/transforms/*.cjs"},"./stringifier/*":{"import":"./es6/stringifier/*.js","require":"./lib/stringifier/*.cjs"}},"gitHead":"3e664ab3a4e52424886fe25698c9603cec39f3dd","scripts":{"test":"prettier --check src tests && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/ && cd es6 && replace \"from '(\\.[^']*)'\" \"from '\\$1.js'\" * -r --include=\"*.js\"","format":"prettier --write src tests","pretest":"rimraf coverage; npm run build","preversion":"npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"8.1.2","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"16.13.2","_hasShrinkwrap":false,"devDependencies":{"jest":"^27.0.5","rimraf":"^3.0.2","rollup":"^2.52.2","replace":"^1.2.1","ts-jest":"^27.0.3","prettier":"2.3.1","typescript":"^4.3.4","@types/jest":"^26.0.23","convert-extension":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.3.1_1647671614464_0.17181988121703617","host":"s3://npm-registry-packages"}},"1.4.0":{"name":"comment-parser","version":"1.4.0","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.4.0","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/alexgrozav","name":"Alex Grozav"},{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"0f8c560f59698193854f12884c20c0e39a26d32c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.4.0.tgz","fileCount":148,"integrity":"sha512-QLyTNiZ2KDOibvFPlZ6ZngVsZ/0gYnE6uTXi5aoDg8ed3AkJAz4sEje3Y8a29hQ1s6A99MZXe47fLAXQ1rTqaw==","signatures":[{"sig":"MEQCICJdVfCU2hhGk+X6tMhkIo15c2jaQrVEI6jLvOomV/JuAiAhKLYpJWndPDLqAPorYiyl8LFFxL08kplAoo03iuNfyQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":364649},"main":"lib/index.cjs","type":"module","types":"lib/index.d.ts","engines":{"node":">= 12.0.0"},"exports":{".":{"import":"./es6/index.js","require":"./lib/index.cjs"},"./util":{"import":"./es6/util.js","require":"./lib/util.cjs"},"./parser/*":{"import":"./es6/parser/*.js","require":"./lib/parser/*.cjs"},"./primitives":{"import":"./es6/primitives.js","require":"./lib/primitives.cjs"},"./transforms/*":{"import":"./es6/transforms/*.js","require":"./lib/transforms/*.cjs"},"./stringifier/*":{"import":"./es6/stringifier/*.js","require":"./lib/stringifier/*.cjs"}},"gitHead":"dd8dc86253c530672b91da24ebe5e2d6fa76301b","scripts":{"test":"prettier --check src tests && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/","format":"prettier --write src tests","pretest":"rimraf coverage; npm run build","preversion":"npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"8.19.4","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"16.20.1","_hasShrinkwrap":false,"devDependencies":{"jest":"^27.0.5","rimraf":"^3.0.2","rollup":"^2.52.2","ts-jest":"^27.0.3","prettier":"2.3.1","typescript":"^4.9.5","@types/jest":"^26.0.23","convert-extension":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.4.0_1690871338693_0.37743817007979885","host":"s3://npm-registry-packages"}},"1.4.1":{"name":"comment-parser","version":"1.4.1","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.4.1","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/alexgrozav","name":"Alex Grozav"},{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"bdafead37961ac079be11eb7ec65c4d021eaf9cc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.4.1.tgz","fileCount":148,"integrity":"sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==","signatures":[{"sig":"MEQCICPDbOaTop2M5xzpjvMx59/KcTbJOF/r4t30yut2RwI+AiBxx8VxGF913q0sXvgAjoaOAwz8mcL37jS3wpIeugX/ww==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":365999},"main":"lib/index.cjs","type":"module","types":"lib/index.d.ts","engines":{"node":">= 12.0.0"},"exports":{".":{"import":"./es6/index.js","require":"./lib/index.cjs"},"./util":{"import":"./es6/util.js","require":"./lib/util.cjs"},"./parser/*":{"import":"./es6/parser/*.js","require":"./lib/parser/*.cjs"},"./primitives":{"import":"./es6/primitives.js","require":"./lib/primitives.cjs"},"./transforms/*":{"import":"./es6/transforms/*.js","require":"./lib/transforms/*.cjs"},"./stringifier/*":{"import":"./es6/stringifier/*.js","require":"./lib/stringifier/*.cjs"}},"gitHead":"0d210d3ddc5863137850716b2c581f27cc9de617","scripts":{"test":"prettier --check src tests && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/","format":"prettier --write src tests","pretest":"rimraf coverage; npm run build","preversion":"npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"6.14.17","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"14.20.0","_hasShrinkwrap":false,"devDependencies":{"jest":"^27.0.5","rimraf":"^3.0.2","rollup":"^2.52.2","ts-jest":"^27.0.3","prettier":"2.3.1","typescript":"^4.9.5","@types/jest":"^26.0.23","convert-extension":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.4.1_1698200552304_0.9785465489341616","host":"s3://npm-registry-packages"}},"1.4.2":{"name":"comment-parser","version":"1.4.2","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.4.2","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/alexgrozav","name":"Alex Grozav"},{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"55e471b14d1fbc5577de180c7ec80323d0a31239","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.4.2.tgz","fileCount":93,"integrity":"sha512-bm63OZFy8PkeZgRiLqJvtZHGLHaaws2WVZaTtSgqk3Cna47QhciTRSb0SSmYS1AzstC0zw1+9RncmhmWIaWwqA==","signatures":[{"sig":"MEYCIQCxIB+GglPngSVUgdmYrhXg6KcACf1e8wm4Eyg9B5aeTAIhALJBZmmSsITziPu3NYeTYst/uNfQLrVr2hkpwbUKBe4d","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":241638},"main":"lib/index.cjs","type":"module","types":"lib/index.d.ts","engines":{"node":">= 12.0.0"},"exports":{".":{"import":"./es6/index.js","require":"./lib/index.cjs"},"./util":{"import":"./es6/util.js","require":"./lib/util.cjs"},"./parser/*":{"import":"./es6/parser/*.js","require":"./lib/parser/*.cjs"},"./primitives":{"import":"./es6/primitives.js","require":"./lib/primitives.cjs"},"./transforms/*":{"import":"./es6/transforms/*.js","require":"./lib/transforms/*.cjs"},"./stringifier/*":{"import":"./es6/stringifier/*.js","require":"./lib/stringifier/*.cjs"}},"gitHead":"81597e9c6a724a8036ba4be5044193f06751ec77","scripts":{"test":"prettier --check src tests && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/","format":"prettier --write src tests","pretest":"rimraf coverage; npm run build","preversion":"npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"10.2.4","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"20.11.1","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^30.1.3","rimraf":"^6.0.1","rollup":"^4.52.0","ts-jest":"^29.4.4","prettier":"3.6.2","typescript":"^5.9.2","@types/jest":"^30.0.0","@changesets/cli":"^2.29.8","convert-extension":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.4.2_1768601462127_0.2877981581582618","host":"s3://npm-registry-packages-npm-production"}},"1.4.3":{"name":"comment-parser","version":"1.4.3","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.4.3","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/alexgrozav","name":"Alex Grozav"},{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"abd9076d8f83a809c573c304e2e1eba09d2362c4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.4.3.tgz","fileCount":148,"integrity":"sha512-qvEp8Hk/uxsIbBe2gnu87CrP2wSFLzG0fIgcxF27DiBlD12Nlyydt91T4KQNiRxfebMxU5QEoWQBNiha+A9I3A==","signatures":[{"sig":"MEUCIFLo/UZTmeXMwKEf5VabRIwSjNVYrkBUfm9ToVkzhknuAiEAwIM0K+/K4Nuz5xcgNmd+ddj4o+a8CXW5+XdSEk3BXlM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":374124},"main":"lib/index.cjs","type":"module","types":"lib/index.d.ts","engines":{"node":">= 12.0.0"},"exports":{".":{"import":"./es6/index.js","require":"./lib/index.cjs"},"./util":{"import":"./es6/util.js","require":"./lib/util.cjs"},"./parser/*":{"import":"./es6/parser/*.js","require":"./lib/parser/*.cjs"},"./primitives":{"import":"./es6/primitives.js","require":"./lib/primitives.cjs"},"./transforms/*":{"import":"./es6/transforms/*.js","require":"./lib/transforms/*.cjs"},"./stringifier/*":{"import":"./es6/stringifier/*.js","require":"./lib/stringifier/*.cjs"}},"gitHead":"4093060bf4801581c75c97c92a3b83a7f5e73958","scripts":{"test":"prettier --check src tests && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/","format":"prettier --write src tests","prepare":"npm run build","pretest":"rimraf coverage; npm run build","preversion":"npm run build","prepublishOnly":"npm run build"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"10.2.4","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"20.11.1","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^30.1.3","rimraf":"^6.0.1","rollup":"^4.52.0","ts-jest":"^29.4.4","prettier":"3.6.2","typescript":"^5.9.2","@types/jest":"^30.0.0","@changesets/cli":"^2.29.8","convert-extension":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.4.3_1768605325751_0.27928673014821226","host":"s3://npm-registry-packages-npm-production"}},"1.4.4":{"name":"comment-parser","version":"1.4.4","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.4.4","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/alexgrozav","name":"Alex Grozav"},{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"45b16f7d9de769b1271ba22e8a3ecf2bb0873c63","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.4.4.tgz","fileCount":148,"integrity":"sha512-0D6qSQ5IkeRrGJFHRClzaMOenMeT0gErz3zIw3AprKMqhRN6LNU2jQOdkPG/FZ+8bCgXE1VidrgSzlBBDZRr8A==","signatures":[{"sig":"MEQCIF9jz6YyjY5s25anTGf3LXVCz7+hpPwCuyjsIFBdNYxbAiA5MpBRph8CSBElCwWPMBSj1QreswmbMiEKjjOvpu1sjg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":376647},"main":"lib/index.cjs","type":"module","types":"lib/index.d.ts","engines":{"node":">= 12.0.0"},"exports":{".":{"import":"./es6/index.js","require":"./lib/index.cjs"},"./util":{"import":"./es6/util.js","require":"./lib/util.cjs"},"./parser/*":{"import":"./es6/parser/*.js","require":"./lib/parser/*.cjs"},"./primitives":{"import":"./es6/primitives.js","require":"./lib/primitives.cjs"},"./transforms/*":{"import":"./es6/transforms/*.js","require":"./lib/transforms/*.cjs"},"./stringifier/*":{"import":"./es6/stringifier/*.js","require":"./lib/stringifier/*.cjs"}},"gitHead":"d5aa705ca623ec20921fa85d26257fe073384b21","scripts":{"test":"prettier --check src tests && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/","format":"prettier --write src tests","prepare":"npm run build","pretest":"rimraf coverage; npm run build","preversion":"npm run build","postversion":"git add . && git commit -m \"chore: release v$(node -p \"require('./package.json').version\")\"","release:add":"git pull origin master && changeset","prepublishOnly":"npm run build","release:publish":"git pull origin master && npm run build && changeset publish && git push --follow-tags","release:version":"git pull origin master && changeset version && npm install"},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"10.2.4","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"20.11.1","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^30.1.3","rimraf":"^6.0.1","rollup":"^4.52.0","ts-jest":"^29.4.4","prettier":"3.6.2","typescript":"^5.9.2","@types/jest":"^30.0.0","@changesets/cli":"^2.29.8","convert-extension":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.4.4_1768688676038_0.2995631196429045","host":"s3://npm-registry-packages-npm-production"}},"1.4.5":{"name":"comment-parser","version":"1.4.5","keywords":["jsdoc","comments","parser"],"author":{"url":"https://github.com/syavorsky","name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me"},"license":"MIT","_id":"comment-parser@1.4.5","maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"contributors":[{"url":"https://github.com/alexgrozav","name":"Alex Grozav"},{"url":"https://github.com/zxqfox","name":"Alexej Yaroshevich"},{"url":"https://github.com/blutorange","name":"Andre Wachsmuth"},{"url":"https://github.com/brettz9","name":"Brett Zamir"},{"url":"https://github.com/doberkofler","name":"Dieter Oberkofler"},{"url":"https://github.com/zxcabs","name":"Evgeny Reznichenko"},{"url":"https://github.com/jhm-ciberman","name":"Javier \"Ciberma\" Mora"},{"url":"https://github.com/jaydenseric","name":"Jayden Seric"},{"url":"https://github.com/ljharb","name":"Jordan Harband"},{"url":"https://github.com/tengattack","name":"tengattack"}],"homepage":"https://github.com/syavorsky/comment-parser","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"dist":{"shasum":"6c595cd090737a1010fe5ff40d86e1d21b7bd6ce","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.4.5.tgz","fileCount":148,"integrity":"sha512-aRDkn3uyIlCFfk5NUA+VdwMmMsh8JGhc4hapfV4yxymHGQ3BVskMQfoXGpCo5IoBuQ9tS5iiVKhCpTcB4pW4qw==","signatures":[{"sig":"MEQCIG/XCgmSJZu9xi4u4WUopdHkzYDh+OA93UA2JJhl8PopAiBALYgkxpJ+yK6YEWqeyRa9XF/uzAEt4a0qfvwdRqHqAg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":379295},"main":"lib/index.cjs","type":"module","types":"lib/index.d.ts","engines":{"node":">= 12.0.0"},"exports":{".":{"import":"./es6/index.js","require":"./lib/index.cjs"},"./util":{"import":"./es6/util.js","require":"./lib/util.cjs"},"./parser/*":{"import":"./es6/parser/*.js","require":"./lib/parser/*.cjs"},"./primitives":{"import":"./es6/primitives.js","require":"./lib/primitives.cjs"},"./transforms/*":{"import":"./es6/transforms/*.js","require":"./lib/transforms/*.cjs"},"./stringifier/*":{"import":"./es6/stringifier/*.js","require":"./lib/stringifier/*.cjs"}},"gitHead":"cdd18d4d60d38f9c77206692224182063336673b","scripts":{"test":"prettier --check src tests && jest --verbose","build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/","format":"prettier --write src tests","prepare":"npm run build","pretest":"rimraf coverage; npm run build","preversion":"npm run build","release:add":"changeset","prepublishOnly":"npm run build","release:publish":"git pull origin main && changeset publish && git push --follow-tags","release:version":"git pull origin main && changeset version && npm install && git add . && git commit -m \"release v$(node -p \"require('./package.json').version\")\""},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"repository":{"url":"git+ssh://git@github.com/yavorskiy/comment-parser.git","type":"git"},"_npmVersion":"10.2.4","description":"Generic JSDoc-like comment parser","directories":{"test":"tests"},"_nodeVersion":"20.11.1","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^30.1.3","rimraf":"^6.0.1","rollup":"^4.52.0","ts-jest":"^29.4.4","prettier":"3.6.2","typescript":"^5.9.2","@types/jest":"^30.0.0","@changesets/cli":"^2.29.8","convert-extension":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/comment-parser_1.4.5_1769112603269_0.7626464331798426","host":"s3://npm-registry-packages-npm-production"}},"1.4.6":{"name":"comment-parser","version":"1.4.6","description":"Generic JSDoc-like comment parser","type":"module","main":"lib/index.cjs","publishConfig":{"access":"public"},"exports":{".":{"import":"./es6/index.js","require":"./lib/index.cjs"},"./primitives":{"import":"./es6/primitives.js","require":"./lib/primitives.cjs"},"./util":{"import":"./es6/util.js","require":"./lib/util.cjs"},"./parser/*":{"import":"./es6/parser/*.js","require":"./lib/parser/*.cjs"},"./stringifier/*":{"import":"./es6/stringifier/*.js","require":"./lib/stringifier/*.cjs"},"./transforms/*":{"import":"./es6/transforms/*.js","require":"./lib/transforms/*.cjs"}},"types":"lib/index.d.ts","directories":{"test":"tests"},"devDependencies":{"@changesets/cli":"^2.29.8","@types/jest":"^30.0.0","convert-extension":"^0.3.0","jest":"^30.1.3","prettier":"3.6.2","rimraf":"^6.0.1","rollup":"^4.52.0","ts-jest":"^29.4.4","typescript":"^5.9.2"},"engines":{"node":">= 12.0.0"},"scripts":{"build":"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/","format":"prettier --write src tests","pretest":"rimraf coverage; npm run build","test":"prettier --check src tests && jest --verbose","preversion":"npm run build","prepare":"npm run build","prepublishOnly":"npm run build","release:add":"changeset","release:version":"git pull origin main && changeset version && npm install && git add . && git commit -m \"release v$(node -p \"require('./package.json').version\")\"","release:publish":"git pull origin main && changeset publish && git push --follow-tags"},"repository":{"type":"git","url":"git+ssh://git@github.com/yavorskiy/comment-parser.git"},"keywords":["jsdoc","comments","parser"],"author":{"name":"Sergiy Yavorsky","email":"sergiy@yavorsky.me","url":"https://github.com/syavorsky"},"contributors":[{"name":"Alex Grozav","url":"https://github.com/alexgrozav"},{"name":"Alexej Yaroshevich","url":"https://github.com/zxqfox"},{"name":"Andre Wachsmuth","url":"https://github.com/blutorange"},{"name":"Brett Zamir","url":"https://github.com/brettz9"},{"name":"Dieter Oberkofler","url":"https://github.com/doberkofler"},{"name":"Evgeny Reznichenko","url":"https://github.com/zxcabs"},{"name":"Javier \"Ciberma\" Mora","url":"https://github.com/jhm-ciberman"},{"name":"Jayden Seric","url":"https://github.com/jaydenseric"},{"name":"Jordan Harband","url":"https://github.com/ljharb"},{"name":"tengattack","url":"https://github.com/tengattack"}],"license":"MIT","bugs":{"url":"https://github.com/syavorsky/comment-parser/issues"},"homepage":"https://github.com/syavorsky/comment-parser","gitHead":"e6415d55e63424fe9b946a5ed23e75de75d483a1","_id":"comment-parser@1.4.6","_nodeVersion":"24.14.0","_npmVersion":"11.9.0","dist":{"integrity":"sha512-ObxuY6vnbWTN6Od72xfwN9DbzC7Y2vv8u1Soi9ahRKL37gb6y1qk6/dgjs+3JWuXJHWvsg3BXIwzd/rkmAwavg==","shasum":"49a6b1d53fa563324f7577ab8c0b26db4e7d1f9a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/comment-parser/-/comment-parser-1.4.6.tgz","fileCount":149,"unpackedSize":395957,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQCEZBftD8R92oew5Vov7NJZMqY1kK+9kWA4pfk0dUoCDgIhANLbf6lPJgxz8K/yJ1KEkxWltez/4+tUzbyjXHjxZnuW"}]},"_npmUser":{"name":"anonymous","email":"sergiy@yavorsky.me"},"maintainers":[{"name":"anonymous","email":"sergiy@yavorsky.me"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/comment-parser_1.4.6_1774730991870_0.6048795320950895"},"_hasShrinkwrap":false}},"name":"comment-parser","time":{"created":"2014-03-09T08:30:52.879Z","modified":"2026-03-28T20:49:52.125Z","0.1.0":"2014-03-09T08:30:54.041Z","0.1.1":"2014-03-10T07:59:49.575Z","0.1.2":"2014-03-12T06:14:06.201Z","0.2.0":"2014-09-21T21:52:56.952Z","0.2.1":"2014-11-02T18:37:21.828Z","0.2.2":"2014-11-04T03:47:59.057Z","0.2.3":"2014-11-26T20:12:59.536Z","0.2.4":"2015-01-06T20:21:50.801Z","0.3.0":"2015-01-26T08:30:09.604Z","0.3.1":"2015-11-25T16:50:08.959Z","0.4.0":"2016-02-08T18:49:31.695Z","0.3.2":"2017-07-12T16:39:33.649Z","0.4.1":"2017-09-19T07:20:29.649Z","0.4.2":"2017-09-24T00:26:14.581Z","0.5.0":"2017-11-09T03:10:47.088Z","0.5.1":"2018-12-09T21:54:51.871Z","0.5.2":"2019-01-02T10:27:02.752Z","0.5.3":"2019-01-06T18:09:24.679Z","0.5.4":"2019-01-07T10:40:25.952Z","0.5.5":"2019-06-20T05:26:32.347Z","0.6.0":"2019-07-15T21:40:03.103Z","0.6.1":"2019-07-16T22:18:38.735Z","0.6.2":"2019-08-19T06:07:15.987Z","0.7.0":"2019-11-03T03:20:51.830Z","0.7.1":"2019-12-04T05:38:04.286Z","0.7.2":"2019-12-19T19:09:04.795Z","0.7.3":"2020-05-06T06:41:19.640Z","0.7.4":"2020-05-06T08:27:37.994Z","0.7.5":"2020-05-30T05:10:19.638Z","0.7.6":"2020-08-15T20:58:32.147Z","1.0.0-beta":"2020-11-16T08:56:11.426Z","1.0.0-beta.0":"2020-11-16T09:02:20.802Z","1.0.0-beta.1":"2020-12-25T22:09:29.818Z","1.0.0-beta.2":"2020-12-25T22:38:39.313Z","1.0.0":"2021-01-06T07:57:31.653Z","1.0.1":"2021-01-08T21:14:39.089Z","1.1.0":"2021-01-17T10:39:53.920Z","1.1.1":"2021-01-18T06:32:35.764Z","1.1.2":"2021-02-07T08:58:22.853Z","1.1.3":"2021-03-20T19:25:31.312Z","1.1.4":"2021-03-23T06:25:15.021Z","1.1.5":"2021-04-22T09:15:57.891Z","1.1.6-beta.0":"2021-07-05T20:38:30.958Z","1.1.6-beta.1":"2021-07-22T06:03:54.575Z","1.1.6-beta.2":"2021-07-24T08:32:01.583Z","1.1.6-beta.3":"2021-07-24T10:08:46.476Z","1.2.0":"2021-07-26T05:33:32.409Z","1.2.1":"2021-07-26T06:09:13.591Z","1.2.2":"2021-07-28T06:12:20.725Z","1.2.3":"2021-07-28T06:23:50.147Z","1.2.4":"2021-08-22T20:48:59.738Z","1.3.0":"2021-11-17T06:52:43.245Z","1.3.1":"2022-03-19T06:33:34.607Z","1.4.0":"2023-08-01T06:28:58.933Z","1.4.1":"2023-10-25T02:22:32.537Z","1.4.2":"2026-01-16T22:11:02.287Z","1.4.3":"2026-01-16T23:15:25.929Z","1.4.4":"2026-01-17T22:24:36.175Z","1.4.5":"2026-01-22T20:10:03.436Z","1.4.6":"2026-03-28T20:49:52.014Z"},"contributors":[{"name":"Alex Grozav","url":"https://github.com/alexgrozav"},{"name":"Alexej Yaroshevich","url":"https://github.com/zxqfox"},{"name":"Andre Wachsmuth","url":"https://github.com/blutorange"},{"name":"Brett Zamir","url":"https://github.com/brettz9"},{"name":"Dieter Oberkofler","url":"https://github.com/doberkofler"},{"name":"Evgeny Reznichenko","url":"https://github.com/zxcabs"},{"name":"Javier \"Ciberma\" Mora","url":"https://github.com/jhm-ciberman"},{"name":"Jayden Seric","url":"https://github.com/jaydenseric"},{"name":"Jordan Harband","url":"https://github.com/ljharb"},{"name":"tengattack","url":"https://github.com/tengattack"}],"readmeFilename":"README.md","homepage":"https://github.com/syavorsky/comment-parser"}