{"maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"keywords":["typescript","tsx","webhint","webhint-parser"],"dist-tags":{"latest":"1.0.26"},"description":"webhint parser needed to analyze TypeScript files","readme":"# TypeScript (`@hint/parser-typescript`)\n\nThe `typescript` parser emits the same events as `@hint/parser-javascript`\nso existing hints targeting JavaScript files can analyze TypeScript files\nwithout modification. Existing hints targeting HTML files can also analyze\nTSX content without modification if `@hint/parser-jsx` is active in addition\nto this parser.\n\nThis package is installed automatically by webhint:\n\n```bash\nnpm install hint --save-dev\n```\n\nTo use it, activate it via the [`.hintrc`][hintrc] configuration file:\n\n```json\n{\n    \"connector\": {...},\n    \"formatters\": [...],\n    \"hints\": {\n        ...\n    },\n    \"parsers\": [\"jsx\", \"typescript\"],\n    ...\n}\n```\n\n**Note**: The recommended way of running webhint is as a `devDependency` of\nyour project.\n\n## Events emitted\n\nThis `parser` emits the following events:\n\n* `parse::start::javascript` of type `Event` which contains the following\n  information:\n\n  * `resource`: the resource we are going to parse.\n\n* `parse::end::javascript`, of type `ScriptParse` which contains the following\n  information:\n\n  * `ast`: an `ESTree` AST generated from the script.\n  * `element`: an `HTMLElement` reference if the source was inline\n    in HTML; `null` otherwise.\n  * `resource`: the parsed resource. If the script is in\n    a `script tag` and not a file, the value will refer to the\n    HTML document containing the script.\n  * `sourceCode`: the raw source code that was parsed.\n  * `tokens`: a list of tokens generated from the source code.\n  * `walk`: helper methods for walking the AST.\n\n<!-- Link labels: -->\n\n[hintrc]: https://webhint.io/docs/user-guide/configuring-webhint/summary/\n","repository":{"directory":"packages/parser-typescript","type":"git","url":"git+https://github.com/webhintio/hint.git"},"bugs":{"url":"https://github.com/webhintio/hint/issues"},"license":"Apache-2.0","versions":{"1.0.0":{"name":"@hint/parser-typescript","version":"1.0.0","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.0","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"33d120899ec9e70ce1110b435bbb72694e7e7169","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.0.tgz","fileCount":7,"integrity":"sha512-q5sA+9HzW9eR2vCXsLVdQcb9Y2143FUrXk5R3TrPg+zv+PfKICeUcWdns9qGFDBsy1++Z2S+kJ7Tq8vG0Y61vA==","signatures":[{"sig":"MEYCIQC8Z644tTl+RxrVcrHAr95e2LRiiC0OawWPrYA4mkp9TwIhAMgx6A9dW0kSKZDbGaxvBNZ0dhaUkaki1uoXfm5U64oZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18364,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduL35CRA9TVsSAnZWagAAd5EP/jgUeUlJYOdDIFDyHwdc\nBTFCFGuvnCyL1lEa0cm4iWwwGT31iQCX8JgArLm9J7r1iPOSoBcu00Ku9VU/\nP+2bafKUQmXfJ5z1iuchh7UY0ijWKod1babiilpQQJvjo3w2Ap+dP2tEJvy2\nHNmJyHWFlywtwcIfHuMHkJrMDxhtCVHg5qtcs/tODH1UEMZ2km/UUdzHT6vv\nBuVQWjDcx6DCIrjcj6XZDnypwTgBW+wCwGm7pVWuXhBNDm6URfl8czMLTZhC\nV0r9J3DJPp5DfKKgp0Lj00fHLjEItfu/R1xg974BiR9dpWGWmDGagdCPVlQa\nb8lh3WN0f0J6I0DiAiiC4r6evA1JROUdf7ggIsmdibwWgaIF7JHky0ETwVww\ntywW8JHe+DJoRVB5CDZm8sJhF6kGVEGM9OE77kMfogwdrr8sT19SMpO2I2Q2\ng9vNDDt2etNs1je7Y4O4Ej3+EhVScpKMd8EX9n08UE/m+BYf6cmbCWMlhsFk\nvMV0efH9qXc2c7eE+zg+SZuaNvAGYK8+Fdxqpq/+KybY4dovXr5zDpsEWehe\naRU+qZi6OpY3Kvlg2E49rawQFHY3V9YJgLBLPSfGQIjC/ogPvWpa+bv9nGOT\nA0bo9FvYm/rvfzLAftcJQ+NHl+Cv/ece2V9WfQi3oRDCN7BPoeAe/GuJzOq0\nBYU5\r\n=N+4J\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"6.9.0","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^6.1.0","@hint/parser-javascript":"^3.1.0","@typescript-eslint/typescript-estree":"^2.5.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","rimraf":"^3.0.0","typescript":"^3.6.4","@types/node":"^12.7.5","npm-run-all":"^4.1.5","eventemitter2":"^5.0.1","@hint/parser-jsx":"^1.0.0","@hint/parser-html":"^3.0.11","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.0_1572388345485_0.18704875159674295","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"@hint/parser-typescript","version":"1.0.1","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.1","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"19a460d64739ec3f193409863e6271c75560ec50","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.1.tgz","fileCount":7,"integrity":"sha512-3tgmOZelebvUVmKMP7Pwou/NEZc6FMMbVZuRZN/+2z0EZuVJE8NXjLOK+FQFHzzNC1U1MezMS19SzkzdvHl5Bg==","signatures":[{"sig":"MEYCIQCA7WjZLoMQ6m1JJQqRa3/+utZs738FYx5RNFdKPvpf6AIhAK21s1Syt3VMZ4WP6YVv2f5tv2UNww0m6QiFWbONYSW0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19274,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJducmCCRA9TVsSAnZWagAAX/QP/3A8CdIHLzvDFQrB1Fn5\n2e1isge8GnGuVhHRD1+ZMFNZPHPm6Vp3em2fr+1kIYKiiimuuvdHhafVgfJO\nDPARbrwLT/TgF31JL+mEhgmwk+1tF6NRxvKrIqhhhIZbbs+KwzFTNYO0yiOo\nt3ImN8l3GXdbaxabuug/Jobz7VcvKbuAymHzWYGVVGFNn6J0+tMvPPsKIXy5\n7NbiS+mQbthYm8vTD4QsG5CPGViBFplIStnTn0uRkoBOuFq0Dhbm/A+JarSJ\n84CT/6cAJ+mO0NN1Kt5zb+hUd6AdC+YRX/4o40uQwO50Y0R4uM+NLfOpBqKg\nZ5WyhZ3PNPg89Eqgxqx6OaxyrZigQJCoHK/cPhUc5XpbBFMeiCaeKzdmgSaN\nih2xp5KhAc9wqn1MKjeM8ZVniK3b+HOBxKpyUK/RZugDOfK69BgMU6feBCR7\nzJaKxN2rZyyebk/Y5unIJS5qi40pDJ+2lS0KoB49085DfQbbOP7QYe2BAs08\nSCjNIaFOPbEo8vj80KejgcUw924f+Xk7di48gWCPw2Ca3a8HEeAxmRMbb5mR\nOe7AAptx2IfkK7LNi5yGK8vrdoFLg1usyo1MfMqU1l5jRqNywSx2y8bzTpMV\nswTbgBRsR3DiyS0wh/SZ+S9p4luS77Ryf40Zx/YWdgCw4ZNYzk6MBd00RfhF\nz5p0\r\n=6Xqj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"6.9.0","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils":"^6.1.0","@hint/parser-javascript":"^3.1.0","@typescript-eslint/typescript-estree":"^2.5.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","rimraf":"^3.0.0","proxyquire":"^2.1.3","typescript":"^3.6.4","@types/node":"^12.7.5","npm-run-all":"^4.1.5","eventemitter2":"^5.0.1","@hint/parser-jsx":"^1.0.1","@hint/parser-html":"^3.0.11","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.0","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^5.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.1_1572456834119_0.041713381202604705","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"@hint/parser-typescript","version":"1.0.2","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.2","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"261f098f25f6879c2a5b3015337a5a098a5f9e03","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.2.tgz","fileCount":7,"integrity":"sha512-BBQuZmgSD2IqvQ5tsBJgMJVG3LREGGvJw2XmjEjL/T5t+jXCmuK85p0fxlHtdpxcL4yULyfe0eMi1QscHUgYxg==","signatures":[{"sig":"MEUCIC1EYRYxmOPOLqzkxMgp2L1/NTcxQUvpzAoSPimLgzsmAiEAmWpirsNsvjgB8Rla7uouO9pErrH0Q5JCznIMcZBVZl0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20288,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5bSTCRA9TVsSAnZWagAAYWQP/jwWOQAV3JsNMZ5lC5jb\nlgwRx+1Kqj6S7vV9rFt5YwqsvYei4pA5YRs0MlXAnSQs3OprYcOzpvwdkaP+\nup/0G+8ODzjjKwp0RqFqea8th1uQ+LExKDSLG1qA5cgU73Fyjayfu9eeRs/X\nVkioBjg0S+l27pxcmwNBhDq6wlbEplhI5Ol/oG81Pdx9lETso3O96Zz2sZFz\nucTt+kst6tZf3nTzuluA+pX4XuAEGiFFjIwevSbRdnJUUZlg41DR4vCdUuGM\nSEhB6FQDqaQ5Tq9HtWDL21wvTtJXOX+9Z6LyfJLz/cUeiKgJdJ/oLU9Zgswm\nChJpNU66lfnx+x0ILkYp3977+ZBn2vTInKcfyt3nqahHnBCJfn835JkMU3GW\nN8tESk059Ph+xMkya1lYq66SJdpAzeiWCcgnuFITtbubOkQixCVAj1gZet3p\nVBszN+vXPbQCSzioAC3dkIywRyneN7mMXsS0WFtDTTJZdC0TUYMVrl9wEx8u\nF3tknLyfn7u1D8NUepVJFoxTw1S6Kd5GodM5vfuYlBuv/6PrEyr6wigkwsJf\nDJSfAMAqCLF0uodQ0AWMmvUmYtAO+yNSBgRJRrDhQg43W7fo7HCIwvrKZuck\nveBO0jL+a3sfUKeBPDLIaq/lUeqpoSksPPP7+fspHCi5YMSzgBJwmEV6uBdR\nW20b\r\n=M9Vd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"6.9.0","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils-debug":"^1.0.0","@hint/parser-javascript":"^3.1.1","@typescript-eslint/typescript-estree":"^2.8.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","rimraf":"^3.0.0","proxyquire":"^2.1.3","typescript":"^3.6.4","@types/node":"^12.12.12","npm-run-all":"^4.1.5","eventemitter2":"^5.0.1","@hint/parser-jsx":"^1.0.2","@hint/parser-html":"^3.0.12","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.1","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.2_1575335058836_0.8048915442031221","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"@hint/parser-typescript","version":"1.0.3","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.3","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"e72a7678426ed6e36dfcb2949c18c89bb429ba40","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.3.tgz","fileCount":7,"integrity":"sha512-meiMcq5uHZU2ZR+0dszvsQ9KBVPURmBrMXzZBQq5Mj30fWUeuw80IFoNmR6z8cPEnU4OOVE31kU0YeRAuxyoTg==","signatures":[{"sig":"MEUCIHqEnLfjeRFQi4n8LQ21bEiumHnKtxSxG5HlJNVH9k6sAiEAtz05AL9t89M1QzoJ62JzxvMQTnhShkARiQYeSjG+7qo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23055,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd6FSGCRA9TVsSAnZWagAA8UUP/j99dP6kFUE9X98Zbr+r\nR7qn4o1OaFS6KKwC7OpySdsqLZDk2s6MXglbg4uw7YEyary1V42hSthw70Gx\nPfZnBe/tjdJFf79D+KE1JKi2nDHcoL7+S6o0WLkjQXiffh66EuHdDCcZ7lHr\n7jJuw42CCPA1zck7n9u+OhZhxW+Tbqi8WyURS/9sxkZ1bZ4gRWoGdDDV9SJ9\nlSt6dFnvb8gylROVTjM9lHWQj3JgTjBe0B3U3CcBYm9uspS3E9y8pavG8cW2\n/qK3yfbOGGEeWk0SBoyQH+YOaj7G4YegHKOUgrVZlvAL8/eJQagZ3t20iixy\ncXvW+1nhbW8KxXbB1TfVgGNSgGCaDhhi6voCNoa5kXJV6ixrqtbNHtgKav6J\nd+YQYUeGYPy9NDCtPH/dJZg6gsaKxNA3DWqrZ1YPeq/PLdI/z6kDD3LNk+ry\ngcnSL3sFLthmgjcC01/fJmMPHTZnJbYEL6+zfNHHnUyjGUBQ0iASzVefT1LE\nAEARE2fnC0CmxlHk7x2zrCWVKjJxTRjz+i6poM84lVNWyLLrVxv1HS5G5OFR\nGhLzdVN10SbZlFqjVuTze3JmaohFCMTzyT0bzfsUksfV+K3kFV5d1WkipaYO\nctrTG2O1ppbHrmm/zePbuWBqVzuULkmRnPGq8rKI8Qix7EMHHQ5kl5ZqKW3I\nhiLs\r\n=6Uiu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext js --ext md --ext ts --ignore-path ../../.eslintignore --report-unused-disable-directives","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"amolleda@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"6.9.0","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"10.16.0","dependencies":{"@hint/utils-debug":"^1.0.0","@hint/parser-javascript":"^3.1.2","@typescript-eslint/typescript-estree":"^2.8.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","cpx":"^1.5.0","nyc":"^14.1.0","rimraf":"^3.0.0","proxyquire":"^2.1.3","typescript":"^3.6.4","@types/node":"^12.12.12","npm-run-all":"^4.1.5","eventemitter2":"^5.0.1","@hint/parser-jsx":"^1.0.3","@hint/parser-html":"^3.0.12","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.1","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.3_1575507077707_0.15153207773617106","host":"s3://npm-registry-packages"}},"1.0.4":{"name":"@hint/parser-typescript","version":"1.0.4","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.4","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"c37bcb2ae6734822252b120ccdcb171b11c51642","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.4.tgz","fileCount":7,"integrity":"sha512-WET23reixk4ubp/6pXxKXnlwK41FrDLBBzkQMmaPNzqyprndIvl81zo4XVyjI/YcL7kqbL55Bx68/cJbZvXeEA==","signatures":[{"sig":"MEUCIQCWHn2YGjNq14IqWJ8g36Rnd+YVkPHEBADujTCQgnLilwIgGp38OYisZArjSl0wwhGBp7mTE3N1fxBMJt8i1WUiI6c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23650,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecpmQCRA9TVsSAnZWagAAOl0P/0oTB88YUijDYGRJbOOX\ngrY065v6Z7rljEcklSIRN3PkyrwOw2rjA5qUd0VpSvzMfFTEk1a7/z0KUOSv\nyZ73ideO1sn0Ac1R+SIUsUWhOJfqgL2/BwR8SxGryV4aYZYF4mRd4GJ+8O+d\nrY+FcpFdM2+QTG8F1ISM8Vfrz7hseGhChtYHPSxh06LOXe1C2K/ltmwRH8qM\nSv9az05Deqxvgm9OKQYN858KbwykYVZ4Vvgbv8VfuNV7OEU6flv3/o6GuKem\nfEC5zBtip1CkwFN6VCQm181dCfAWjU17rocQU0APuRVozWLek1e263Q026c8\nhiUm0faMZsDelma7XiPUe+2DeTxu36TXIRN32iup0z72OJ4Kd1aiQKCQUnEB\n1G175Op04lh8CKRlnlU0Qh1QaQJjy1eTpv+uv01EcMbfHovMdxlH2XMhl5yo\nsgvoPJ9GL3EVn8qUiHCuIuhSRRtmNZXDCcAh7UFTYIQggSMG7+f/RXJJOYxs\nSIgEkPrdx2QyLiEVljsp6ZiqMMu7ZF0HfP0x302dokXR28LPmyAaG8Oz606S\nvQUiWTgfml4cvmkuDgdB5/51jkp9sbSTZVmqq0eihi7fFiAEBCqNbEuqq5Ed\nr4YTnNMRt8rWa6/kzeXqFUH1fRC/DNSiN8bC5a1X8fjSblgkobvmAS3zKMNR\n88Ln\r\n=594N\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"6.13.4","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"12.16.1","dependencies":{"@hint/utils-debug":"^1.0.1","@hint/parser-javascript":"^3.1.3","@typescript-eslint/typescript-estree":"^2.23.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.4.0","cpx":"^1.5.0","nyc":"^15.0.0","rimraf":"^3.0.2","proxyquire":"^2.1.3","typescript":"^3.8.3","@types/node":"^12.12.14","npm-run-all":"^4.1.5","eventemitter2":"^6.0.0","@hint/parser-jsx":"^1.0.4","@hint/parser-html":"^3.0.13","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.4_1584568719529_0.23616106488077993","host":"s3://npm-registry-packages"}},"1.0.5":{"name":"@hint/parser-typescript","version":"1.0.5","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.5","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"9a2d77ca561b667741db68f6eb0cfd5220ccc920","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.5.tgz","fileCount":7,"integrity":"sha512-whCFwCezgCUNHmY9dSlf6jKov7HsW3u/XP4BRzuAXOecsxNQVR+txiiChlm/Zivht29vcgj3mcv6/+YLEy03DQ==","signatures":[{"sig":"MEUCIQCn0/NBn1GzO6AdQe91MM++pdlt9kJ3J6nFsGfwE6KaXwIgLuYJbppxQpHIEOn9g+GzwKinU9CkaYCQPnGcciYrNUM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24394,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJel16wCRA9TVsSAnZWagAAdkYP/3W1oChil9T9gAz2ItT8\ntubpbTHEFs8ykwUVQv2UIbB3YUTIXU2FEsfeCFDNzkOVuepDPC1F7HzhAi9B\nhYgioSgsk1UeqKvSFqcuHI21TZpC56RA10UW5b17VopaQk+AEgUpmGI9DGd6\nbPQevo6WLCBz+W//Jz2s9Ae9ptxbr/AnvY+4RYmtXHNOY4/P9hEaeDWOJ7lP\nCM6cBhPCOCP5/Ueh9ToSM+HQkEz2R6aJEubZbDLGjfLJ7lOjICcHsvY2zede\ni8BgFQZHaZGcc1eZO9Ev7Kslv8ai9jp+rz498sKhpvyKDTtj+pEd9OwL4UTA\nGY08H1yMWdjtQ3jAA+D+WEshRlY6SURa6hNMlP/RGwCQ20rvUUFcOwdMBc0w\nLKcr6v6XY2DHeeRLA5Om3iTGtCntgYJYXAz9m7s2ntEBnUE55R8gvuALRLXL\nAbrOT3/3eM1GB4KBtJyRffTrWxghhKif5UqQJnKdpAaGnMCfwqSbtET1hSMX\ny4Fe8ns7FDRbq4V3WGTt/8l+hfKjehs4BEJmS9EAMRAIqz8wlWamlxegAMIY\nkGPuoJJSRpwwcgWJM22YqJ6uOaaVvzWtFe1wjKJ3Zwf42FRYltQNUHSC3Z9a\nMMhW/SUHXGXZbAyoZmGLlppKTXh2nIUGog6e4m8pmilK7IgFTZ7Ukn9XaNML\np2ui\r\n=toEK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"6.14.4","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"12.16.2","dependencies":{"@hint/utils-debug":"^1.0.1","@hint/parser-javascript":"^3.1.4","@typescript-eslint/typescript-estree":"^2.27.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.5.2","cpx":"^1.5.0","nyc":"^15.0.0","rimraf":"^3.0.2","proxyquire":"^2.1.3","typescript":"^3.8.3","@types/node":"^13.9.2","npm-run-all":"^4.1.5","eventemitter2":"^6.0.0","@hint/parser-jsx":"^1.0.5","@hint/parser-html":"^3.0.14","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.5_1586978480284_0.06606745735070607","host":"s3://npm-registry-packages"}},"1.0.6":{"name":"@hint/parser-typescript","version":"1.0.6","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.6","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"b3e8ab43bb52cbc10c9fee815ed6798750256014","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.6.tgz","fileCount":7,"integrity":"sha512-R9spRAyMzg2o1ajMLih7jIivlor8Wx175BttqANCXNw8LaxrPpuEpQ/ypo5lZO/FC9xMwntEYi0rooDoj+DtTw==","signatures":[{"sig":"MEYCIQCe33yeSgqXTZ4cGdwv0l17SHYOyK/epmobFLTbSC5nHgIhAO1GwKQkIjPwC/NJ/JPExBn5K/AcfpOYMabO0tZkkxQU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25337,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewwnGCRA9TVsSAnZWagAAhqUP/REH799+d8iaeSLHo9MQ\nSFfLu2F3zBJhR4ndDkTHZBS7DDjslG3kmYpO7CP9x2kikM4aXXVMWrM1vod0\nKhmzfA+bM0E2atPKQ6ehVj3yzWmkGootdLBEg2nyN12hSMDHD0HGAZsh6chT\nvKihY3deff9cLyMOlcakG7QJ0YQfOehrJACHLETtos+YkB77fSBL7aQGNtU+\nTkfZJh7jStRnda+5LNuWL+F4yVTHAQ//fspDAHLx02EHzGrCF6p8UBzmKZe7\nd26UplIcr3mRW3eIKOkIxarMS8Tj85ZwximJueY2Apwyz1yln6VbbzN9gJMW\nuKgLbclnkjJZTHKNvHTQJgM62GuGdkpJEMpYGhsh6ZYJu5Mwl07/nSW9Tyrq\nSAgouhGE0n1Ec67quTz+iWE4FugXrCIviekZGG7SkAIUip8JY8KhW661L6vH\nQiwrCp/jt5ykFEy3a5uw7v5LQHYVk3n4O6sG1pGY2EOg5oHpxnjxEndlca3w\n86QTev8oFTF8NqUJ50wc2pBrxFwTt3OrRlqDruYYtPUV4C2G5IDlf0fmLzMg\nZWNAzSM71uMuujQd8/nXDfZTkr4kQ/LxiBkgxQbw0VLPyoL874kGQeiOMuvb\ncwOzlvdN3lLb2tTRyZrTau8fOwAhUg+RGAzReWPB5PeYhOGagaa9R2hOZIlu\n0L+r\r\n=epA1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"John.Emau@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"6.14.4","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"10.19.0","dependencies":{"@hint/utils-debug":"^1.0.1","@hint/parser-javascript":"^3.1.5","@typescript-eslint/typescript-estree":"^2.27.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.8.2","cpx":"^1.5.0","nyc":"^15.0.1","rimraf":"^3.0.2","proxyquire":"^2.1.3","typescript":"^3.8.3","@types/node":"^13.13.4","npm-run-all":"^4.1.5","eventemitter2":"^6.0.0","@hint/parser-jsx":"^1.0.6","@hint/parser-html":"^3.0.15","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.6_1589840325477_0.0932631552024692","host":"s3://npm-registry-packages"}},"1.0.7":{"name":"@hint/parser-typescript","version":"1.0.7","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.7","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"ef68ac294abc5b95db257e6982db448ba5c83482","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.7.tgz","fileCount":7,"integrity":"sha512-Zno1Qe7NpbarT284UZxB5oiuCIuVMp/PMMtfU1ObqWhgRI4dmQEnCq2ddbhouxkiSjxdTvFMFwHPyKAjRzY5KA==","signatures":[{"sig":"MEQCIBG7tAm12WEEJYdshQv3fCAUtqq9Hmjgu+yhgdCkkSYeAiAiO1zZsUp4ALZucjwJXsaubOw6pN3OXl6EEsJTWeHnOA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26017,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHzucCRA9TVsSAnZWagAABogP/2Ai2fQiMRXfJ3DkcZW9\nz+X3J0AmJfy8IPjwAtm36VHQBjMoeTkhhQK9Lq6GnsnT7BZ+SNgEIdTSFOGj\nZ5GGucOsn/vyOksAnbuqJt02V3H+vdCAQXqA3b3S0nlV9WJd1MPXbDEzmnEe\nfXmlBrjeu2cj+mXfCV6rXLIrPxwZ3CRyAxe8cr1arduW8AHXGKs4WLrBUWGn\n1UrJ2GkhDWrkPMTDpyFfGt9077EDl1U7X84/ySbdt/2w3MWx3+chIZ7AKpZ4\nhFke2PJ6yB5BLNMeH9qlyeEPzfD7KuGxBlQpDagcaCwQF+LYzcGY5xhe7Bc/\n/TbKGs+yKOkQqtHrpDyfGEhyQB/VSkktol8hK9PT521s6wIlZOjnAzttFa0S\nJBAJ7JcLeIIQ1si++t3KYl13PSvKX+aOIID9l7/e+Hvpj+ElG+xrPJFdei4W\n0OCH8GIFedE6Ue8kAckVr1+p+NAhf6sRZk2qixAf9BHFj3inTpzKD2pTwqaG\nF94ONgAPJMsiNgvQIvom760JyotNbAEZw+PAol+qdTJrzdRUn/iOgfvJNA4X\ngMWy01jYIuwSE9W6KJRyLLm7wNUrqrALfuCOrwkK2+jk1jYCz+dTVpoma2s2\nqCWEr48kgBTvxE08qNHjkC0h8eWMI3fsXrzffOt+1MSr2Gx60z88hPTRGH05\n0ZzT\r\n=IiWI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"6.14.4","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"10.19.0","dependencies":{"@hint/utils-debug":"^1.0.1","@hint/parser-javascript":"^3.1.6","@typescript-eslint/typescript-estree":"^3.2.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.10.1","cpx":"^1.5.0","nyc":"^15.1.0","rimraf":"^3.0.2","proxyquire":"^2.1.3","typescript":"^3.8.3","@types/node":"^13.13.4","npm-run-all":"^4.1.5","eventemitter2":"^6.0.0","@hint/parser-jsx":"^1.0.7","@hint/parser-html":"^3.0.16","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.7_1595882395916_0.9483365699020134","host":"s3://npm-registry-packages"}},"1.0.8":{"name":"@hint/parser-typescript","version":"1.0.8","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.8","maintainers":[{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"c97d5ce14554e623fa17009d10a6edbc208ca9b8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.8.tgz","fileCount":7,"integrity":"sha512-FrlMdEVJ260EcbHSFXUGTS5QgmN6yAMnY3MR3DTHImqe7Xqc6uZqzWpsB9u5E5hg0/CRa5D2O0gDd+2hAnnM7w==","signatures":[{"sig":"MEYCIQCBBK9GxbYge5iG29+sGJ02iJEmd0aj7ZhWhEK73/yWHQIhAPbgUD8lP73RmwWT+ZSqxwmRG5Hfe8EgCfcW87DXfQdE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26999,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRDgBCRA9TVsSAnZWagAAG4MP/RUSeQARW7TM15AhHkkj\n+FcaGGOC5dDvDmhibwVs64yC849RQjOetkp37fIshck9q1KnaSaymgfljloF\nkTe09yVTFbt4biVinsoxfY5r5oDDMn9PJ0+yhd3wpYXmEpRhSwOPk1rlJ/P+\nJ0CrADU3WylMv7UWsGej7NLCyX+tXEZTbwUiheXpOxwDF8NQxRG8KgdFG3Zt\nigqoQFmlLcOF8CcP7BwxluFDsF3LV8Qd+VCZt00kC+Ohr1tC+/GJINzeYbn6\nA0abEcbJVUBfEmhILb6diQA+CBLdjsxnySKNQ6fxEjm47SpaTjuyWBCkzE/J\nWkOXRunsvZ6fe9j28E4H3VxzpB+8uJayp8i9XdUnf1LpzkiAasdEddY1F1pP\naPRIG/oHkFEcVqvKL0ZgLXAM9y9Ak3SzL/znazzbtGF5eTPvDeI6np4IxaE2\nI+3p2CPmysTen22gKKaxdw3Fwh0hes4mzCKUlf2+4WEUr1WN2jGPVbtHyHWk\nSC+7/AUaX2ge2WonWH0f97CpA1GtHNmioaUhGozmt8MoYYDC2/YuYDqHttS5\n6V1/u1hTcznukHFcDqfXSsSHLppNM7I814me9T225pjbl6vKmX9Io1ccK5M8\nWQemL0ENtXsTJJRo6Z3PaP3gJzsbEUn/iXi9m2/8pSunr6aKemC5CVXp7/4q\npLN9\r\n=DqOH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"6.14.6","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@hint/utils-debug":"^1.0.2","@hint/parser-javascript":"^3.1.7","@typescript-eslint/typescript-estree":"^3.7.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.10.1","cpx":"^1.5.0","nyc":"^15.1.0","rimraf":"^3.0.2","proxyquire":"^2.1.3","typescript":"^3.9.7","@types/node":"^14.0.26","npm-run-all":"^4.1.5","eventemitter2":"^6.4.3","@hint/parser-jsx":"^1.0.8","@hint/parser-html":"^3.0.17","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.18.2","eslint-plugin-markdown":"^1.0.2","@typescript-eslint/parser":"^1.12.0","@typescript-eslint/eslint-plugin":"^1.13.0"},"peerDependencies":{"hint":"^6.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.8_1598306304736_0.10139221632562445","host":"s3://npm-registry-packages"}},"1.0.9":{"name":"@hint/parser-typescript","version":"1.0.9","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.9","maintainers":[{"name":"anonymous","email":"jdgarcia@outlook.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"amolleda@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"c55af128728b347f116768cdc7d3b3a6cc66052f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.9.tgz","fileCount":7,"integrity":"sha512-FisssI/JmfG5/q9z2yd0X/wSC//1A1YPWAljlWVTvKNaEYmm1WiMhbSjkSgmmxD96elQ33hHK9XT7qOvNJcshw==","signatures":[{"sig":"MEYCIQCxg4NDR/4wmzig6hSWXXcXojYw1cSW0MXf2NMEi1/+EAIhAJpAYAGq6FazeWktrcekWd62bPz68cZkVwtsstTjEAvT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28221,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfrE09CRA9TVsSAnZWagAA+u4P/Rv/bB8PDFKblPzpgQT4\nBKenxYzabzz5Qn2Qa0bMdP2CLYEla5xEfmfe9mkrtYO9sfZ+Qn6/aojvnMge\nMo5DRdvsdxCtnE/S6YK4f2N2xNAjNs+HWmbAJen2eWitSWKxbpp4k93Bgh2T\nZ8damA0gXB+33MadeOWkA1gancNuQWDGE7WRRRPTwrCdyLFAMV7F/X58xG0W\nC4nhPJYq7IsBlFeLZXOe6957VRH6zG6zGgh5XZosLzTx000bqV9AtfxcrvrI\nATDmRa0WZUj0kYoTm5t2oYsZas1c2/kF8mVg37X37DjWpyU46l/sYU7sux3J\nkm2kKMKGlhwVt4izBeh5YTgifD4UE2xSAcEwFO27THshsuTdwy8WfCrEaaDI\nECZO1VdKKoWfIXc5j4R0U5BUgCRGnragU8BQUIP+jlfzexpndKI5/TJU/n9R\nUzQlKtyfPnqqtbeZ6ur3TDJIBIA+aoSkrKE6nDnPhonLc5Xv34rtCw6RMweH\nQAcqHvuGxj4lpKe5d8+9uertH9NlnxP+nfNnyLeoc6Mg7mb1ZMpY76Y/jOVu\nBqaBm1qYdNg3n0JvHU8xhxZM3CaRbpll9xIlvl7KUEPclWy134HJgS3ArHB4\nACSoCZRcDFsHyj72CrtcBoTbygem4UCcDlR6Q0ZyPPrcK0LlpCBV36Nktbn6\nWRaT\r\n=oGH0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"6.14.6","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@hint/utils-debug":"^1.0.3","@hint/parser-javascript":"^3.1.8","@typescript-eslint/typescript-estree":"^4.6.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.12.1","cpx":"^1.5.0","nyc":"^15.1.0","rimraf":"^3.0.2","proxyquire":"^2.1.3","typescript":"^4.0.2","@types/node":"^14.11.2","npm-run-all":"^4.1.5","eventemitter2":"^6.4.3","@hint/parser-jsx":"^1.0.9","@hint/parser-html":"^3.0.18","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.22.1","eslint-plugin-markdown":"^1.0.2","@typescript-eslint/parser":"^4.0.1","@typescript-eslint/eslint-plugin":"^4.0.1"},"peerDependencies":{"hint":"^6.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.9_1605127484633_0.8085222434819905","host":"s3://npm-registry-packages"}},"1.0.10":{"name":"@hint/parser-typescript","version":"1.0.10","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.10","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"3bd6af76fe8cacc0adfaf2aab130e0c0d627d1b9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.10.tgz","fileCount":7,"integrity":"sha512-gU0AbGWIhcSBnk4UgwdsN9dzsKcJ3HZkewEZDNfuvvVKm2Yc/V40BkMCIPvQcJg82IGIJOzw5NOvZOR37W+zQg==","signatures":[{"sig":"MEQCIB+Dn/RuTbF6irFzLpDLiFyhCuCrN087kCppCJ6yPaT0AiBXcvM9+0hsWYQ1HKwMTL1P/omqXfQTdGm+7jKxA4SZDg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31866,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHEvyCRA9TVsSAnZWagAAO8IP/1ntX1z8PgzjWhLdgi27\nsVSTldEQ2z/zxjx9WiG0Pa/S3P4LbbQMTc6J3E1S5yNXxCeI1xKnu5Z4yMyO\nRfit346BMvAOFibZreHF3WNzEfu8YoviwvSwBTwIkp8GdKcFGUT2YvN1ZqdA\n6uj8CtHcmajeRhRwMGG6y5IAleR4CRX8bFRK55EiWprJU8MSRjW3xM8K8qLl\ncE6BYezBBKe+Wkiqe0wO1ncwAQJlBHxzdzeV3lFm3bi7Ji7XWlNdDLTHUcQn\nLIRuO9zYheq76KBnhnJvm/o340AkNV0WRvDLZx04/FK7xVfmyZc15LsQXTWC\nNbfiP2bnO5eoqTJ1t4MlN88wuehvR6z7/0ec/cQ2a5nnUI8C5v1m2mylStvo\nUKNfewS4waJk4hgjC8hFzDpN2XpLjpWSZwztEVEtXiitXyESjDbzy0tiE8dc\nMnZg9kYdCgYuI6mTcAPO2DPvKsFSCHllL2tnqt8/lb22LCobtx2BhPlMl0Bk\nqA7BNcAWHH+ndBMNq1uI3Fcc//Be8FklTa8unOjFiE8j7wCtTdBmH8kr2KkP\n9c8rkssMdzJ/amcpjOaF1bcw/Ih5eWXu3XFzq3eeDPiC2B5FlUh4xvCo7eFE\ntoiULnDzc6/GrpxZkOAggUR+0xLeKQ54UcFmuVG4EtEkf80XXverzJjGLUq/\n6gNF\r\n=t+3l\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"6.14.6","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@hint/utils-debug":"^1.0.4","@hint/parser-javascript":"^3.1.9","@typescript-eslint/typescript-estree":"^4.14.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","cpx":"^1.5.0","nyc":"^15.1.0","rimraf":"^3.0.2","proxyquire":"^2.1.3","typescript":"^4.1.3","@types/node":"^14.14.22","npm-run-all":"^4.1.5","eventemitter2":"^6.4.3","@hint/parser-jsx":"^1.0.10","@hint/parser-html":"^3.0.19","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.22.1","eslint-plugin-markdown":"^1.0.2","@typescript-eslint/parser":"^4.14.1","@typescript-eslint/eslint-plugin":"^4.14.1"},"peerDependencies":{"hint":"^6.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.10_1612467186555_0.2257184018605043","host":"s3://npm-registry-packages"}},"1.0.11":{"name":"@hint/parser-typescript","version":"1.0.11","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.11","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"08c84c1f9b54994365add7da809de1d376a78583","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.11.tgz","fileCount":7,"integrity":"sha512-hu6bkhNAGGgRz2z5v+S295IrXFO5kgt+SQPcSEz+XRWCvunkWnRGCk7MXDdrbxJYMtnJF+kjerhl6LIPADs2oQ==","signatures":[{"sig":"MEUCIHSlkqAxRU9L8EH/wKCUOiRyE/nhwTe31THm0CRxVacSAiEAlVDKEf7Q0eM1qUuoQLKlcYN2AZodwoA5PoRnY/Qlv44=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31867,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHeZ/CRA9TVsSAnZWagAA3jwP/jYFPAIWf8MMyFDKomhL\nq5lNLkzP/3ImC3swIkgG8ItLJrZVsWM0uRZizd3Jd2h/c2q2boJcZt2pXAa0\n3aSpnt1bBpXRwVb/XXSM+Gjmbk/J4I84LrF+om4qYRcNwmiZ3cR0lwC5WjVo\nP0fagNPHqHCkb91tXLJj2UnRz+aEWAy+nIo9KVEsDiZpyuM1mgZUN9phcmys\nYwKvx3hdgEwQYGjxQeURPTyFqw0lhhMEfdSNeED9wk5t5a4pfrnhFrfQWtTX\nKVDpPyCDywMgGfTla0BKp4uN1IIOPYpe1gbovau7vNyVzG2KBO+tEVvjJbvZ\n72LF5WLmz7xy6iF0bEbEowVGWJOz3HZEisVsHF7rY32Uik/t8Zc35GI9y84r\nQMJDDq9QPlvzprB3GWFAGIDimhJgCxPHXyZIfXAQElWLBE65FcupR8dE9bJy\n2MopcegMqjQ7MBkRTJdrc5CBWadSBPtkoD8zl9eNSm4NkhoPH27FiY1dtll3\npfEkhvk2l8FcizuZNOL/UUU/APvejZ5wFx7GAt2m8sChvZyI9Q3zyDbkU/Cv\nRyLoDYlNK1V/89bD6ITy9lX2s5ixjg/s6RPWEWsnbVwQ+QvSDAGihX9lMLPF\nMNWDESAjS3PDC6OypdV4mFCwoaMuCAEnxllxRlGh2XkKnMgTFUZu0qekFCi0\nvIOu\r\n=fyUh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"6.14.6","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"10.22.0","dependencies":{"@hint/utils-debug":"^1.0.4","@hint/parser-javascript":"^3.1.10","@typescript-eslint/typescript-estree":"^4.14.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","cpx":"^1.5.0","nyc":"^15.1.0","rimraf":"^3.0.2","proxyquire":"^2.1.3","typescript":"^4.1.3","@types/node":"^14.14.22","npm-run-all":"^4.1.5","eventemitter2":"^6.4.3","@hint/parser-jsx":"^1.0.11","@hint/parser-html":"^3.0.19","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.22.1","eslint-plugin-markdown":"^1.0.2","@typescript-eslint/parser":"^4.14.1","@typescript-eslint/eslint-plugin":"^4.14.1"},"peerDependencies":{"hint":"^6.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.11_1612572286664_0.6459007072192475","host":"s3://npm-registry-packages"}},"1.0.12":{"name":"@hint/parser-typescript","version":"1.0.12","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.12","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"f207f03ef0d47c0c928b58f84ff9fd0d70307753","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.12.tgz","fileCount":7,"integrity":"sha512-pSAe9S0ZOfK7Brwvbh+5JIWK/Whphii+pYbVRgc3PwsRPYaiQib7/2yVOBCCsQaQN65C9O7hEqXXbQtjMTh2rw==","signatures":[{"sig":"MEUCIQDfgwucXDU4XBdTV2PskSxtyzJgxMjGxDhHb04kosQpKwIgLx+G5vv3OGyUujHiKUq3ulvgVt3llVMou2zeOlWmvgs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39781,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgwRK9CRA9TVsSAnZWagAANEwP/2Nc0bm/wawmNB4CPnq1\nqFKEFTdjv8D8Q6v5VAdSVJDKpkdpVl/VVAbD/xMmUXTdP/zfLsMZvmvopva0\ni2/SR3gxvBn4WhPZRt94TpzAbfbmpPWGtURcybhdj//6MpxIW2tLqKP16ARN\nFzJ0y+Zed8rkXYuRwmywq3ZBqHRlWxy1jPcTVzyRQd3IZfy1cHn6empb5irz\ns4wYrepkmViq7/RpgB9fT1bnuoZsN0gzLvHT+5Dbr+IxDS1FkZqOXclyqTvm\nwEs0a7Aw724T/phON0oPSkGxzQ2M1oESUK9u/q7SimbLwnaOHaeJn0MlagXx\nLe/JexNP+AWIIZaWCWpQIMVDYJ2oKgxP9cs6VgfrZK1eBIjBVXpt/z1yaRm0\ncAzcPrKZuqM9FG9vEi3U7k3T0tM8QnA2lO/qGjhkDKAYZtKNeGIkQ7fE55SK\ne3Hq9XDWUuQfzwXDDCYfzq2vqhX9O/PbOqnN8Jd2OjW31NvnEgqka2+89w7b\nVqOOXygdyZNF9UbLt81KAZNUlr8lNabkOXGbizoI4HBnxB9kRWo0WhTJU3wj\nEvllk5IH52bHzpKynF0vZ+IgAzx7R0SJBZQX544a2QIdezAEos6Bc7wblZnC\nEjYJZaIrvJDMSm/vdKGhsd4OBf5NW+TbwxfbX34TXAr8eTondo9ScA0dIDOk\n3cGO\r\n=KB6I\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"6.14.12","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"12.22.1","dependencies":{"@hint/utils-debug":"^1.0.5","@hint/parser-javascript":"^3.1.11","@typescript-eslint/typescript-estree":"^4.25.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","proxyquire":"^2.1.3","typescript":"^4.2.4","@types/node":"^15.6.1","npm-run-all":"^4.1.5","eventemitter2":"^6.4.4","@hint/parser-jsx":"^1.0.12","@hint/parser-html":"^3.0.20","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.22.1","eslint-plugin-markdown":"^2.2.0","@typescript-eslint/parser":"^4.26.0","@typescript-eslint/eslint-plugin":"^4.22.0"},"peerDependencies":{"hint":"^6.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.12_1623265980995_0.816045680897326","host":"s3://npm-registry-packages"}},"1.0.13":{"name":"@hint/parser-typescript","version":"1.0.13","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.13","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"38efd9ebb1a6be79cdba02eb0f0eea6c906e55de","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.13.tgz","fileCount":7,"integrity":"sha512-OLQhNZr4yqjTYuNZJ7lPC7YwRtDUZg+DB1ARkvwMkb2OUNPkA185t2mDnfG/F8FGaj/7OjeagWf8uZxHWBQaiA==","signatures":[{"sig":"MEYCIQCdpILxidN7r89iOy4wepJ9qI7oFjbKxlP3alHRJiiRyQIhAJNNmhN7/BkP33huMkmvPXgPMvAohdDz3ZfCwLEVdFY+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41582},"main":"dist/src/parser.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"6.14.15","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"14.18.1","dependencies":{"@hint/utils-debug":"^1.0.6","@hint/parser-javascript":"^3.1.12","@typescript-eslint/typescript-estree":"^4.26.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","proxyquire":"^2.1.3","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","eventemitter2":"^6.4.4","@hint/parser-jsx":"^1.0.13","@hint/parser-html":"^3.0.21","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.23.4","eslint-plugin-markdown":"^2.2.1","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.28.5"},"peerDependencies":{"hint":"^6.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.13_1634833238446_0.6976055887136894","host":"s3://npm-registry-packages"}},"1.0.14":{"name":"@hint/parser-typescript","version":"1.0.14","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.14","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"41f1f41f456274656e3948a946d5a77a875dab0e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.14.tgz","fileCount":7,"integrity":"sha512-XZC7DUbWWM84uNgkbmZB5EuteRvx9v0P4HA1zSc09tOkKosm90hVGoNO9itZiO8ePQmsmC4dlTJpZAL0p9jIyg==","signatures":[{"sig":"MEUCIE8DJkPYxhG5gZpLknicbKdYVqxvn76VXVwT8WaJW/jZAiEA2p5JMu5h/C442IPpkEj5mJBgR79aiPYKEHUe5W1MEaE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41847},"main":"dist/src/parser.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"jdgarcia@outlook.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"7.5.2","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"14.18.0","dependencies":{"@hint/utils-debug":"^1.0.7","@hint/parser-javascript":"^3.1.13","@typescript-eslint/typescript-estree":"^4.26.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","proxyquire":"^2.1.3","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","eventemitter2":"^6.4.4","@hint/parser-jsx":"^1.0.14","@hint/parser-html":"^3.0.22","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.25.2","eslint-plugin-markdown":"^2.2.1","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.28.5"},"peerDependencies":{"hint":"^6.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.14_1636050638605_0.06466573573399437","host":"s3://npm-registry-packages"}},"1.0.15":{"name":"@hint/parser-typescript","version":"1.0.15","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.15","maintainers":[{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"49f13f2bb039f029bb1637786e8a003959671b3b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.15.tgz","fileCount":7,"integrity":"sha512-VKv7h1wiNVGUFnrinsndC4BI+OviTf3TGahwjEbDQ5Sj9Xlt64rBPLCkIjyeY+ulHWs5NiuDkTdNW44TRMomEQ==","signatures":[{"sig":"MEUCIESlLzJy9o5JC6P//B73wBdA+CSdEmncb1H8PlhsLYaOAiEAiY1Cs4TEJm6x+modYpCezA4s2SPoG76MqLkl6Kdunkg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42339,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2KTtCRA9TVsSAnZWagAA5rkP/i+iceBQVUT+oT1fnMyh\nUJcG9Uh/PKfHkMyJD7/22YouFfz0F/MLYuB6YKK5vUrpj1Byznk2ONcRWq//\nc8XaB0dVuAv7a3LcbVMmJRt3O7ams6oYaDoBudi/vNr20b4BUtjZR6kYYgIP\ne9pWzJkVHAFRBmlmAhqIChjpCISnhZjBG4VYAQJfGD2lD/gZQzTUVFmTy2pT\nskclA2xV/D+rVEd7u8O2ZI2b2PffTAhnA2GTHh5y0TxlciRWEoddZuC9dyL/\nShHiipnB+FWu2FnqdDnGz39/hHsVdadGWiByfR2d5Xn4heJqAXorD0xtYZTX\nL3G4/7BQjGBVHrZZn6HkjR9DstiQg63Gt0453BMJdmVU8ITMm94mGsiODENt\nX+RLK/SiNTDeCz3iwDdkmZtlh2oaP8mz+nOlJv5tLvw0TaxKSShRZarKlBe7\nlS84L9DeW/f8Q1X9IDG+p8Eu02SHQU8FWsW64Xy8rKkEJb+JjMOgsUaXmuL3\ny2YyadD34zf7Mw4Mn90CcjvxYfJdv4QzQUSJ1dwjX3e5rH7s0Ggk0Flww6lw\n9qelv5pIx4iePYkhJCkb4GKZyEf9luEnOTpljJmh4f9xPqN2g7Dz1Jw33bfz\nE8f+ljZSEd5XJ8+InikwaafZ7G2VggmVSqH6R/JyGPBSVizS1p7u0ytPQwd2\npQha\r\n=pYPZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","engines":{"node":">=8.0.0"},"scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"antross@gmail.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"6.14.15","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"14.18.1","dependencies":{"@hint/utils-debug":"^1.0.7","@hint/parser-javascript":"^3.1.14","@typescript-eslint/typescript-estree":"^4.26.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.15.0","nyc":"^15.1.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","proxyquire":"^2.1.3","typescript":"^4.3.5","@types/node":"^15.6.1","npm-run-all":"^4.1.5","eventemitter2":"^6.4.5","@hint/parser-jsx":"^1.0.15","@hint/parser-html":"^3.0.23","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.25.2","eslint-plugin-markdown":"^2.2.1","@typescript-eslint/parser":"^4.28.1","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.15_1637007089394_0.6163784670167347","host":"s3://npm-registry-packages"}},"1.0.16":{"name":"@hint/parser-typescript","version":"1.0.16","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.16","maintainers":[{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"},{"name":"anonymous","email":"jdgarcia@outlook.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"1193f2a31d2a7d0c994d921d05de717c473a9a79","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.16.tgz","fileCount":6,"integrity":"sha512-bnNDmIE9wAcliDcsju6JcYNPtYFHEG8kkSjj2WTDPSqpYZEhmvZDOhnK4kUZ3dz5sFJElQ19R0fCwS1tUjXDiw==","signatures":[{"sig":"MEQCIHhvWv71xHf/0CHiUhOhw+38xzdGnsVXJtU40PXduGY0AiA4xPjnY15WHajTITuomieMCuhnv+MH8472xC5VkI4Pdg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18396,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKkZfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpEgxAApBuLPTk+ekcTRU0WxdByeFiHT26768+QGAypIIobKxuLolyS\r\nq96pFEN8kxXOaktEu76/sGru/sfhQeR75e9OHkSDvhhpKvxEYcWM69jcW8r0\r\nadSYp+965w0QLsomEzfRXd0E++oWrJaStVbnZ9LOmXEpj8Vl4UrypT8c20BI\r\nBcoKnyeFd7hvZHD7l1QAGZDuubGsAngp25ZeKugdpgmISgSprCQvIexGm6N/\r\nqpSGC+ibjogikhhIcITECbCl4nzrF/xpwpt3NPsytPaLZb0//ILJHfiH8L7U\r\nVUhrKoNsl7bQUv/uZuAG4mawBK9GLAHj0fllraQWdmJjokKAY2IEMP345ymK\r\ng3cCcFAYxsLUCDhB/obF4+UwpKNrB2N3uc2lrX6zXZtweSO8SlxJzgxLwZSb\r\nc0maVSqg32z+uqmXC4jRIvZhYfzdzvNSrTKxmHss0/s9ANmt6UzTjLj07bhq\r\n3rpxr//4ocxKRUW9YF/3VQqUae2sVbau3fJyW6Ex7rHVdholwPnf/Yr/2kXz\r\nKmK2xgVBMxqalBZ2WHhKKnxkgIfFHV2/5/KTA4xlgctp0WBcjaTBZyIAUzlT\r\n/lh/594DagiyRsFnRHa/LbxrvWjf60uuRYUHeTezenaHk5a3pizoxL6/KXKh\r\n/LczUnyfFtyMTetjGHO+bDfMOeI/peLMIpg=\r\n=7E2J\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","types":"./dist/src/parser.d.ts","engines":{"node":">=8.0.0"},"gitHead":"259226d420ada93e86c1ee0e5876251967abcf04","scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"flynnolivia@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"8.3.1","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"16.14.0","dependencies":{"@hint/utils-debug":"^1.0.8","@hint/parser-javascript":"^3.1.15","@typescript-eslint/typescript-estree":"^5.13.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","eventemitter2":"^6.4.5","@hint/parser-jsx":"^1.0.16","@hint/parser-html":"^3.0.24","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.25.4","eslint-plugin-markdown":"^2.2.1","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.16_1646937695660_0.6149695456799757","host":"s3://npm-registry-packages"}},"1.0.17":{"name":"@hint/parser-typescript","version":"1.0.17","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.17","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"e203a05d2b9750496ac3a34d59c107ef2d77e405","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.17.tgz","fileCount":6,"integrity":"sha512-mQDww1wlkGZEhoiRIzme4wwLKwy0En5yCUjioWE4vHGNvcSSTVpLYaSuMndQvlWBdDl0NPJTv0TkuolZS2k3zw==","signatures":[{"sig":"MEYCIQDu/xHU/9uAvttzBW5kd8ZwXVjM1XSgyKvBB/4iRkdwTAIhAJ+gyctCsB5pRFiGpSvKLtxEvgSl6MAuQm9+kXM3xgQS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18396,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaG42ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpZIRAAiVhVxMP6eneTKXP2jC0vwc+qG4iP3YuxumlSRrFIJqnGH+rk\r\nEK22t5rPCkmiXnvI+Gw00l5dGYkwE6zANsMjTlWZKT3D3FdG30LOX3CugwRt\r\nep0gPPg7ZAchvtHD0hgbCGlt+DzPfwmjP4WVvC9dTVZiAJiXd0mCsQrPr4wv\r\nAAbuoSbGezCF07TBBF1tva6vK6c9Fb1ng4M+B3VD3y+NQYH+um9rMPB1e4bm\r\naMkQaz8uX7QFWtyMOmph0UPCuIZqEvUTriY6FTwgORUKFViGMZZ54Lr2wxo+\r\nlT8gAIvMSZ4gIKGi0xYw/ThczgtjVpj1bvUuBPU40zbMU2b7i5DXi0VShf8B\r\n6arv31Rd+WQKVvVb/I0ETNyPVehGKFtyPjdWfRJS4ULPtl3cDDe691f9hOAc\r\nlVY9gTFvbIp76lIXWbDPTcb8VtaJAo7GaQy09nShTIucUSN/GGlWnZN4B/hj\r\nnF36c230BCnTPMZzsYScYMyPhoo/X3NtME/OPIFZrl3ksGYh4NCkMFjpGdtt\r\nTuaaz5OD5SZ9Dey1NlMNKxuQiOQPEa7YratLB/NxUhUcsQZ76FeTskZ5OIhQ\r\nBsAwZqhWrqy8omyaI9SiTBpnZ+8Z6wvwjdEZ2eIxkx9MWABxp5xRr3jHWQQ4\r\n/wmXNcRGb79BPTTTnLbCmhu9f3F4gy6v5Q8=\r\n=AzTf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","types":"./dist/src/parser.d.ts","engines":{"node":">=8.0.0"},"gitHead":"ed090aaf89fa89e6575bca6c116251a40266ae8c","scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"8.5.0","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"@hint/utils-debug":"^1.0.9","@hint/parser-javascript":"^3.1.16","@typescript-eslint/typescript-estree":"^5.17.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","eventemitter2":"^6.4.5","@hint/parser-jsx":"^1.0.17","@hint/parser-html":"^3.0.25","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.25.4","eslint-plugin-markdown":"^2.2.1","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.17_1651011126092_0.8518863545280688","host":"s3://npm-registry-packages"}},"1.0.18":{"name":"@hint/parser-typescript","version":"1.0.18","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.18","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"d189a10be12fc94a93c8e118bbb80c6fb8121fa6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.18.tgz","fileCount":6,"integrity":"sha512-ySYaOmq5Y2ZlIhslBys3claJn22/8a0MhqP5RvuNItfK65e2HzB3/baQKCCA12m1APEbeGbT6qhysYcGxnSePw==","signatures":[{"sig":"MEQCIHAqmIUO+jtc0lWchiPUY+j4L+kgFIyxzGrYxx0lV3KkAiB2nA4jOWCQF7AqoXF9V3NnHgR2cO77qNxX+CC7gi3L2Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18397,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicdqMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmoz4A//RphLnRzR2yTq8dRUmocnZaX5lvbKz6m9b3qCrgTNSNHFPAWX\r\nUSW+KuQF3+K1tUnOo8RoXQ9MV5A1bfyMRL5YmGvwMNy3kFGQc/NpTsz+3uLn\r\ny1G8WOP5z3l7AmqOHKtXYFa7V9Mqi2SqgQr3uAWImjeSPBbY4TSiWbItVf/A\r\nNYXiV7efj7okTPyxlBpBkB23RPHvnNXZKoglBhyO8KMecs1iwKOJ84s56grj\r\n4SkDXH/zieetmJeTlIc5e2Po5ALis8+0PxdjiTzSZoRS6RLaDfdHjbC0CcHZ\r\nysfHlFvXJKklLUBQZAgaEaEO4aw/pM1vPw+Nk71Pl+HO2vrF1Ya+jUIJequU\r\nFFvAT7a/0poAGDD8R0aY3G+eEKWfoFxeIREmkWKYy0JuhT+mNyEsy1peOhPE\r\nJ2H0FjGOByXPU/jxGDERVnoEeq6fx+QTdsI73Tg3G00S5z6PA4drZkVvaQ+6\r\n3D/N/IxTI/hS27rr0VOYihOaG10zM6fWSqYG51HF9SIAD4S5c8G+LwPjgWkd\r\nx56VZhcDHDNQYSSBWsHnssacdocbGqE50NNUY+84UkWjDMKbiDZyq6gJjFOS\r\nQ2pNGRFgBurXStzOCdQb8i+q/UphO0GvQur5OjRxS+kSlsa48mJyzBU8ipzQ\r\nAQp4W354T2NEYNGyK2HD+PyFY3ZBCrJ9A2g=\r\n=oEVH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","types":"./dist/src/parser.d.ts","engines":{"node":">=8.0.0"},"gitHead":"86a21f9d09e2e0c824fff06081f329f0382af256","scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"8.5.0","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"16.14.2","dependencies":{"@hint/utils-debug":"^1.0.10","@hint/parser-javascript":"^3.1.17","@typescript-eslint/typescript-estree":"^5.17.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","eventemitter2":"^6.4.5","@hint/parser-jsx":"^1.0.18","@hint/parser-html":"^3.0.26","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^6.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.18_1651628684621_0.8266702973268456","host":"s3://npm-registry-packages"}},"1.0.19":{"name":"@hint/parser-typescript","version":"1.0.19","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.19","maintainers":[{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"215fdc05ea59867961c356197e015f89cfb92c0e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.19.tgz","fileCount":7,"integrity":"sha512-ThfeM3RUoSrSyQV7Irx9pcLfUgmAn0l8jbfF2gpNrKj0w+icOm0mpkjDRryT4mV/cAi8gzcG57kFf56ildGIAw==","signatures":[{"sig":"MEYCIQDZtVLwj7sJBnU9KfZIoHt/eHonmIPf09aZkzyUauIQcQIhAMFKQ81QEHfQFhJAel845yuMeYqUmTGCcLa0CO72n5Za","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45195,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJinn+OACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq5QA//X1woZxwoTSQnILPbZz26YtdmvQlhgVJE/wT70hcjy+e2SWUu\r\ncOejHEZ+adp19rpPIIomPTwOJK2FNcIC1Mgup0atEVVtIrKj3bnptJ9oaPSP\r\n2/odNUnb9XQPoOiOogomaux9CT8jjucAz4Ay58K/N3ccHsbZpTt9Pzac8wHa\r\nKPgLis5Lqw+oeqACfO9tu1cLw7YVOFwWeXQH1e+RPkGrMDFsMCEo8zyuBXQQ\r\nQ5Q+9IJ8fCpRjJcF/bz0tzJoA13apLSsRw0KEbjHu9y2DMNbxth6oOgmVfML\r\nMnfducaMGpIqGIMxkEcjNuF0+Zg1YMGvaB1Eo9t+9H+j2lkVsllAw3WfYj+w\r\n9AYHp/XhBXlMYINB5ZTZAGCpGeanzqh4F+XkplzO3pffPwMeEfEFiJefaOcJ\r\npsxeHJlQy54AXnPplwp507KYHau5/rfh9E7c6nOs3uIRMDVgSHKDcslw06Vx\r\nhmsNtj4Fh3ogLAwOMkERndWBHq+sZCGBSMtq2zT3FKKJAXaopyCpZYqoJoSx\r\nhWRX5Z3UaeTt44JyPle0qSZPoqBxgRCicmJVwU2v4QhUUG74oy0sy14df1c0\r\nexRXSAd5Dj2bOvehD+Yiz+sGvXIhLXUUsohlveh5dXRSVsQxGhDBEVSY8Y4L\r\nrL2Ebh84yY5r6LiL0PIWlpGlMvYKspAjwZs=\r\n=pS0k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"6.14.17","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"14.19.3","dependencies":{"@hint/utils-debug":"^1.0.10","@hint/parser-javascript":"^3.1.18","@typescript-eslint/typescript-estree":"^5.17.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","eventemitter2":"^6.4.5","@hint/parser-jsx":"^1.0.19","@hint/parser-html":"^3.0.27","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.19_1654554510656_0.20079635183931832","host":"s3://npm-registry-packages"}},"1.0.20":{"name":"@hint/parser-typescript","version":"1.0.20","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.20","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"dbeaf2422edeb7f3b659419147821c483496d5f4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.20.tgz","fileCount":6,"integrity":"sha512-zP7X316V54mXspNPDyTAesSow6KbnMvB93rsTgCPht9EbM0lOf8vwXmTF8yW/EQeVtV6tuYakQdraytJ3NdRkg==","signatures":[{"sig":"MEQCIGQk+l7lAdbtkNWuLUpP8vq5E2yfdinO2akwbHiwTmAfAiAmQTsoOqwS7nRh0g1WoLGYuSFkuExbr9X+DDXfn3vIrA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18353,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiyFSBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpdIQ/9FA00noi/qig03t5cYK1Xu73fGyA9ghvvEtYhOrdeTowMtqlc\r\nQbT7kXB5dzihLSYujZCtXRr1bT209JDoa6LeNXsyO6rGbvkBk/h/TASdVW49\r\nCzofMdY2e3Yt/9bBh61vSyAud8OnIL/1rOF3m4P9OZlJlV9q2GbpLoOnIeVX\r\nsDPKGiNiw1sNBN8zRamKp+ycXlwLJ3sXLcXHcicBnph35CekNpI7hstKUJcV\r\nll1orXQrbiPSKvCQHSp/STn3MbU+EAXD3O/pIhZ6lvI8bTMVnCpAmZC/NOa0\r\n8f6mEWWeXZsWfQtggBRSxUlMFBDlWRWZ0ohVp8NesaAGLGhcNKHQ5CX0hB4Q\r\nXVYE7JV2LKahFdWjz8y+44ir1i67li6lVKzQVH7Cgal3QxcLtScErnDVDjCo\r\nQYttxhcEfbDe/3nJ2fP5oGRpmYVnMQGnlxpHLDhOPrv/ce2468xIOMFlmysM\r\nOuQkWEmVHvHMYYnq5zLBSaVWtiBVw/mIFekaGdzTVJtF5KLEBZccnTV0EWOP\r\nQ6etjrlAWQhOfsutBf2eMbCLYXO87+Pkw1sDyb5sFHbprJLc/3njIdNmmjAr\r\nIX3aSsIyrPme4sD5vAmbZdkjUoN4X2gCGDEtj0CeaUrO772tu3n+wt6Dby8B\r\nRohPNiPyCZTyqtJA1k/ZEK920rlKIP3m57k=\r\n=EqSk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","types":"./dist/src/parser.d.ts","gitHead":"50e8485324a6c885c736d0b4d1ac8513d875f5c4","scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"8.12.1","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"14.19.3","dependencies":{"@hint/utils-debug":"^1.0.10","@hint/parser-javascript":"^3.1.19","@typescript-eslint/typescript-estree":"^5.17.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","eventemitter2":"^6.4.5","@hint/parser-jsx":"^1.1.0","@hint/parser-html":"^3.1.0","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.20_1657296001087_0.28957841805271123","host":"s3://npm-registry-packages"}},"1.0.21":{"name":"@hint/parser-typescript","version":"1.0.21","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.21","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"},{"name":"anonymous","email":"John.Emau@microsoft.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"585c75dd03980fcc42f642e842b241a2018a421f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.21.tgz","fileCount":6,"integrity":"sha512-vCU5/Yc6Qy45XHDV+iZHUmGle6Odh5AT94sHL7oJS1ff1hjVj0Xr++Cd2B+4z+j24dpRBXZv901cLKsq8E6kZg==","signatures":[{"sig":"MEYCIQC1AjrVkzy/K+dyLQLhOMnT6KTcLGQJds47yIoZEQ4oSgIhANEDMw+gd1tQayRkIJHmp+lBgDdrQEJ2pwiOb/0V3OtR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18353,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2ywSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpMURAApPCasyfCy1v61IsyLwQMvFf3BujGWc9iQA+yAPTolCnkbPVH\r\nJwkCQqPV7YsaCzfec8Q80S4O+SHrAHTA1TjhjNHAUv6eBCi54ZwjG8ciAQK4\r\n/AgJOLcKN6JoBJJ/OlVTwbRphEVIeM5wV4J/sV8utV4vjZQgRTsTiiff8yx4\r\nf/b0AIYIW+uPenMWtDjdbOJedCkVVB1KdRNUu1ebbdqNox54GpIjVVclD3ik\r\nnLfHTZXdM1RTTzDUgBFGFVQvXhNqm1arGYUHk66gzQESAbGAqBp6V2IZRMxQ\r\nK5hTIZrnr+nqXDhCSbIvPsM5ohuLT5MdJB/S9JP1aFrkBAS0tnbd9D6qgGLK\r\nD4s2aRYGLN1Q+860Fx1DmkACUiAl6ULStBu4KGHH7pB4UCApYUM+Qly4n69L\r\nJXK5lyTfSkBJVbhcOsYL5Mviojhn43Jd84sChlflrtu3yohNsUEQAJBB2zsF\r\nfZ28Hq7lZ7ZxtfFiKV8FBEq5xhEUvS3HerixnVZsL/tEPYTWCZKAqrpszali\r\nkdU1MlPyn7Hg1TzL7eJHYO4NURwl8ZNn3KBQseLsglo3nBpOgo4ZovyNizkQ\r\nC5ahKPpOM05gn+qAajE0jPMBY5iMg2AhUR5hWObEGLgxJUvcfyUSqY/AbkFY\r\npyWFpFml0iw4ADStSFZrF8I0q/yrZTWx6uw=\r\n=ABB5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","types":"./dist/src/parser.d.ts","gitHead":"3747703aad67205d4aaac4b74e7f78ed86402c0d","scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"8.14.0","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils-debug":"^1.0.10","@hint/parser-javascript":"^3.1.20","@typescript-eslint/typescript-estree":"^5.17.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","eventemitter2":"^6.4.5","@hint/parser-jsx":"^1.1.1","@hint/parser-html":"^3.1.0","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.21_1658530834413_0.3215943765777567","host":"s3://npm-registry-packages"}},"1.0.22":{"name":"@hint/parser-typescript","version":"1.0.22","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.22","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"f00513ea3f9f06d8a361346a2500d48207e90ad4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.22.tgz","fileCount":6,"integrity":"sha512-/f99YhwFzO12kLQn/9weS/6Ja4Nh2VwyLRKAzz3NMQJgOXMzcD+YRw8/GQbN+lw0Hj4MlYk80RlnRJMdXa9Irg==","signatures":[{"sig":"MEUCIQCgieckwh6dyVcD2GzMx6BdjDyYthj2+VoYjupUdn+t3AIgThzTtpPIkQxDZX6KhpC7DRsbGqdUq9mlrhiUe8Z4OXM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18353,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjF3hNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqLag//bAJ4CP0h4hZ+ELHyKtPQI6qs5BYDsWd4re+1E9c8Zf1zDTjj\r\nN8qjA1gRgNTurTPk3Sm7x7mpu543S1yitNqiFM4m8qcKcKyeEa+TrezDW8u+\r\naz9g3yjbedY6VDgDAUigHRV+AXg6Z9iLGP8NOsRKgZBBZpliLHivnGE92YdP\r\n6m4E3mC0Z8HFtjhbW6LM5oLag6y9B//hEofal5Nh/L1oOi7iq3adSIQzaW62\r\nUB3I8waXl07ekanJDsyJIOvkCphi+3Xm9u8DmIwFCUGEZwdlFBFzzsim4K93\r\n92b5q/Ojqkmj4NJ67IFkZ+oyU6lEsT6r/FA47xmoSPpjIJ52upU7PgoWCPlZ\r\nLxGPLLs1+AMayku7Fg2uecI48/gIwhEKlqAEYcr8EWkRqipWILWCRIh5GvsS\r\nVFRsTJ6VtLQnQjoVTxr/KCRiNOS7nMEUM3HeLpL+qj4GZnjZVdd4YLfMe4Y8\r\nIHwxaAQAVz5EQ8xjIosenyUYycEHujKaPm/ay7wwtM0bCgRxWAixVHAFHufD\r\n9AJx5cNHDS8dZBitMblMJTAma2k+Az/ZQfA+Nzcj3wXRnM/oDkIqb3c6X0QA\r\nIE55ZfuyWyKTYU49x6xXrh83rEAT8IGv6mDho9/SKy6nSg97cEE8iBiFz77E\r\nFFTQ2SUcNYWKHQmqzML0YLahjXW4aGxl4ls=\r\n=HZA4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","types":"./dist/src/parser.d.ts","gitHead":"64f0d5cf033aa97b12ef161d91e00bd2f750da6f","scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"8.14.0","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils-debug":"^1.0.10","@hint/parser-javascript":"^3.1.21","@typescript-eslint/typescript-estree":"^5.17.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.0.1","nyc":"^15.1.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","eventemitter2":"^6.4.5","@hint/parser-jsx":"^1.1.2","@hint/parser-html":"^3.1.1","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.22_1662482509424_0.22709643014018077","host":"s3://npm-registry-packages"}},"1.0.23":{"name":"@hint/parser-typescript","version":"1.0.23","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.23","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"ee16622a9474864916416f3292c85867cd440955","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.23.tgz","fileCount":6,"integrity":"sha512-89DNDmHC3OFjMk4OS0rkuNpTUd4VhfYu5LNNXHhnvH4oCMdxeNMWqHdelk+As6BRURmAvgHn15Ay9LdiFMbNRQ==","signatures":[{"sig":"MEUCIF+PN9MEbzkHfnj3wXSqUTBQwRQUC3bFgquDxFH2QR9MAiEA+FDdFs9LgcTvlqYcIXiACSmrTS1clRyNm6da3ZbLjZ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18353,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPzBBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmohqA/9EWqK7b6VSD/D8hfjRwJBxpc/CLwrwGl86M6jMZoymn8J+oKr\r\nRxetgxxM94m7a7cv+m5zAT4s2ipGptp/EwrLnYsP7puN3klwnM/uN6FR2I6g\r\naKQzuSSOJ0E9RndW9HD6OL0TC0IAVTnZu8q3wVjhvKaBTE2HidD+4CSp/IAO\r\nda9ibii0qEixCxJWUejTMgXsn7CeZNVXOurIO2ko6HaHtjJzUGHMlelbQCfW\r\nxGeP3lhnhKn4jLqk1UhT9PBiRyE117S/UdajMoVyocHLaYf654m0SdO1s0m7\r\nbdxNknP7jgLs8UdjH6Ep0ktcoZTpdCS8SD94Z785Ky1ZTXZcaeIAvPOxgZmK\r\nl6lFUbfORqtGwt5w2quK+CWEZRmFMmDNDLsxwBXI8NCIkyHWJK28TAjZbKG5\r\nu7H75ZLeUbuD9I9rWD1vuqVqxIPNCfP5We6CQ5K5sJJf2OHpKJ+qY+yEUVdJ\r\nr24PngWUd3S85scnPjPAgSaaRaHVi/TZpvUmDkBHCWhDhPHA1rDJB7MK9Aoe\r\nZ5/9lNME8xa4p11eTroHIIEgPj9RzpFO7j0iFARH8cGp/4+XbYBNDQeOn5+J\r\nL2OUU238nQHwY37k/pWUg4frRVi+3s4CYTadzskTygoFFPFcZBMwXJ342jii\r\nbMJN6QtZf15XQwrV/O13zU/vOMq5H+T521w=\r\n=OlPA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","types":"./dist/src/parser.d.ts","gitHead":"8869f1b823276a7cf0417925b78b6aba21d4ee2b","scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"8.14.0","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils-debug":"^1.0.10","@hint/parser-javascript":"^3.1.22","@typescript-eslint/typescript-estree":"^5.17.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^17.0.14","npm-run-all":"^4.1.5","eventemitter2":"^6.4.5","@hint/parser-jsx":"^1.1.3","@hint/parser-html":"^3.1.2","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.23_1665085505381_0.24848317763175776","host":"s3://npm-registry-packages"}},"1.0.24":{"name":"@hint/parser-typescript","version":"1.0.24","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.24","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"1da6ea7c772b82b6e4c9ec180a1a77a325dcfaae","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.24.tgz","fileCount":6,"integrity":"sha512-exIFHKO4l6enfPU2CeEOT4GjjEDo8XX5QE4DlLECCkL6UBb+rdQRSc/lfU2nl0iIqINPpms2YRgom3jIdm8KjQ==","signatures":[{"sig":"MEYCIQDqbfA+3j75b837b8h2CQvOxkUnKcocQG/3kogNceJJRgIhAPV5DzYyYYzrhR6qP9o9I6sEdXO9qy7hSDezYK8ppd9E","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18353,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkE51hACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpefxAAk6j6WKEGOY1lSFGqbl83gStITlYZYOSs1/Bhpx1hPtqGI0Q3\r\nenrH0TB3pgs5uTMldM9AcTRyZj+uhmKv4FeW9Qqp7B6k3r9bSR8Uh8NsQoEh\r\n4wWwz/95E4ON6Y2/kxv5Caj8f/LcmplBywfERIZu/3JzTmxiINZKLZ6ucWUZ\r\ny0L3W4VE0Zi5KXYjgIDP4vPmAtrPXom0yLeALqNBALPMGrLxggCjID6qhMc9\r\ndmb6KRp6xW83yLZOL3QSoYfrdZD0tWtAttg1dGhZlcu172PqlKHNrSsfahTH\r\n/Qz51UCB9ovW7zZ6wQjSt3SVN3lsMrSTlfgvSbjKj9ncBiWB9oMzqnV7fW1C\r\nH89zZJKtB/JNfEP+jwYadFhKlwNIGfIJjyFXjGYiB6WPc3FlZz2ONSSluwDR\r\nd9RreMiNdOvX7D1cQa7DrAAjDqLrISzcTw0hd41qLV7uNeFm6MK8bOgE1tWN\r\nQg7JwSDuovG8rNqJw+4QsSI4cvyCdlnohKXU5yNqqJ0CaLPq+6FkuIhE+8ni\r\n5dyD8/MkSB+TBnGzz/yyzDRZhoNkJwQYv3H5UID6IWatyk3BnLq8RAaAVUnL\r\nS1vj28aBcFoqJNb6tkoMyZmndFnyzMdGSCTk3Y80UbkAQ+vZN7utb+XGO2Kk\r\nFf9EEqhw+Nid33kHAAdQx6K09HKS8ldmXiA=\r\n=86Wa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/src/parser.js","types":"./dist/src/parser.d.ts","gitHead":"722be1b4c0836d5c0adacfb00c8c4f6bc5d1e707","scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"8.14.0","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils-debug":"^1.0.10","@hint/parser-javascript":"^3.1.23","@typescript-eslint/typescript-estree":"^5.50.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","rimraf":"^3.0.2","copyfiles":"^2.4.1","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^18.13.0","npm-run-all":"^4.1.5","eventemitter2":"^6.4.5","@hint/parser-jsx":"^1.1.4","@hint/parser-html":"^3.1.3","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.26.0","eslint-plugin-markdown":"^2.2.1","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^4.33.0"},"peerDependencies":{"hint":"^7.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.24_1679007073518_0.46195416693524227","host":"s3://npm-registry-packages"}},"1.0.25":{"name":"@hint/parser-typescript","version":"1.0.25","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","_id":"@hint/parser-typescript@1.0.25","maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"homepage":"https://webhint.io/","bugs":{"url":"https://github.com/webhintio/hint/issues"},"ava":{"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","failFast":false,"workerThreads":false},"nyc":{"extends":"../../.nycrc"},"dist":{"shasum":"62de507675097e4c4fe0b25cda5043f21a49bde3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.25.tgz","fileCount":6,"integrity":"sha512-tdB30AevFaLwcyG/pimsUWccArRSRa18e3Gx1QfqO43gW+bNTrgrV9I4SiLrglgBIkMT6sbR9cyawY9NPeKXQQ==","signatures":[{"sig":"MEUCIEWsLuiZowJt8AKnGq6Pe/LDi7UhOcZfwUb7meqAkYTKAiEAsRVcRj2D/sI4Qzk6U8I3stK95OJDlSPoeRSAaPGs6Uk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18352},"main":"dist/src/parser.js","types":"./dist/src/parser.d.ts","gitHead":"fe6feadb1f77798203ea9d75edd88cf2fcfd1b61","scripts":{"lint":"npm-run-all lint:*","test":"npm run lint && npm run build && npm run test-only","build":"npm-run-all build:*","clean":"rimraf dist","watch":"npm run build && npm-run-all --parallel -c watch:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:md":"node ../../scripts/lint-markdown.js","build:ts":"tsc -b","watch:ts":"npm run build:ts -- --watch","test-only":"nyc ava","watch:test":"ava --watch","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","test-release":"npm run lint && npm run build-release && ava","watch:assets":"npm run build:assets -- -w --no-initial","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","lint:dependencies":"node ../../scripts/lint-dependencies.js"},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"repository":{"url":"git+https://github.com/webhintio/hint.git","type":"git","directory":"packages/parser-typescript"},"_npmVersion":"8.14.0","description":"webhint parser needed to analyze TypeScript files","directories":{},"_nodeVersion":"14.20.0","dependencies":{"@hint/utils-debug":"^1.0.11","@hint/parser-javascript":"^3.1.24","@typescript-eslint/typescript-estree":"^5.59.5"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^4.3.3","nyc":"^15.1.0","rimraf":"^5.0.0","copyfiles":"^2.4.1","proxyquire":"^2.1.3","typescript":"^4.5.5","@types/node":"^20.1.1","npm-run-all":"^4.1.5","eventemitter2":"^6.4.9","@hint/parser-jsx":"^1.1.5","@hint/parser-html":"^3.1.4","@types/proxyquire":"^1.3.28","eslint-plugin-import":"^2.27.5","eslint-plugin-markdown":"^2.2.1","@typescript-eslint/parser":"^4.33.0","@typescript-eslint/eslint-plugin":"^5.59.2"},"peerDependencies":{"hint":"^7.0.0","@hint/parser-javascript":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/parser-typescript_1.0.25_1686328246302_0.07902433385365648","host":"s3://npm-registry-packages"}},"1.0.26":{"ava":{"failFast":false,"files":["dist/tests/**/*.js","!dist/tests/**/fixtures/**/*.js"],"timeout":"1m","workerThreads":false},"dependencies":{"@hint/parser-javascript":"^3.1.25","@hint/utils-debug":"^1.0.11","@typescript-eslint/typescript-estree":"^5.59.5"},"description":"webhint parser needed to analyze TypeScript files","devDependencies":{"@hint/parser-html":"^3.1.4","@hint/parser-jsx":"^1.1.6","@types/node":"^20.1.1","@types/proxyquire":"^1.3.28","@typescript-eslint/eslint-plugin":"^5.59.2","@typescript-eslint/parser":"^4.33.0","ava":"^4.3.3","copyfiles":"^2.4.1","eslint-plugin-import":"^2.27.5","eslint-plugin-markdown":"^2.2.1","eventemitter2":"^6.4.9","npm-run-all":"^4.1.5","nyc":"^15.1.0","proxyquire":"^2.1.3","rimraf":"^5.0.0","typescript":"^4.5.5"},"homepage":"https://webhint.io/","keywords":["typescript","tsx","webhint","webhint-parser"],"license":"Apache-2.0","main":"dist/src/parser.js","name":"@hint/parser-typescript","nyc":{"extends":"../../.nycrc"},"peerDependencies":{"@hint/parser-javascript":"^3.0.0","hint":"^7.0.0"},"repository":{"directory":"packages/parser-typescript","type":"git","url":"git+https://github.com/webhintio/hint.git"},"scripts":{"build":"npm-run-all build:*","build-release":"npm run clean && npm run build:assets && tsc --inlineSourceMap false --removeComments true","build:assets":"copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist","build:ts":"tsc -b","clean":"rimraf dist","lint":"npm-run-all lint:*","lint:js":"eslint . --cache --ext .js,.md,.ts --ignore-path ../../.eslintignore","lint:dependencies":"node ../../scripts/lint-dependencies.js","lint:md":"node ../../scripts/lint-markdown.js","test":"npm run lint && npm run build && npm run test-only","test-only":"nyc ava","test-release":"npm run lint && npm run build-release && ava","watch":"npm run build && npm-run-all --parallel -c watch:*","watch:assets":"npm run build:assets -- -w --no-initial","watch:test":"ava --watch","watch:ts":"npm run build:ts -- --watch"},"version":"1.0.26","_id":"@hint/parser-typescript@1.0.26","gitHead":"5db0e7f01a05fcd6ebfefe154a75a6d4a3cf3201","types":"./dist/src/parser.d.ts","bugs":{"url":"https://github.com/webhintio/hint/issues"},"_nodeVersion":"18.19.1","_npmVersion":"10.5.0","dist":{"integrity":"sha512-G5NAnM17eeCScoFvdZiUJcde7QJRPLCk6p+Nr0ZHCWe+qPevBOc2p/Dfw+tgbe4NAWgAnRSSRse1Ipq7yvDzXg==","shasum":"fde0c0c4dde23fbec80f7911cd7ba7d88ee0f77a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@hint/parser-typescript/-/parser-typescript-1.0.26.tgz","fileCount":6,"unpackedSize":18352,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC3QUh0J3mkHt+t6w/grIgVCyWJ+Iol9AmeNa1uW5y4lQIgaIh/QFpsEk9SYkYpGdarKdXGqbN49WNTlJmrNSTKjBc="}]},"_npmUser":{"name":"anonymous","email":"vidorteg@microsoft.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"leolee@microsoft.com"},{"name":"anonymous","email":"vidorteg@microsoft.com"},{"name":"anonymous","email":"flynnolivia@microsoft.com"},{"name":"anonymous","email":"amolleda@gmail.com"},{"name":"anonymous","email":"antross@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/parser-typescript_1.0.26_1724949441203_0.04033603050396062"},"_hasShrinkwrap":false}},"name":"@hint/parser-typescript","time":{"created":"2019-10-29T22:32:25.432Z","modified":"2024-08-29T16:37:21.670Z","1.0.0":"2019-10-29T22:32:25.615Z","1.0.1":"2019-10-30T17:33:54.232Z","1.0.2":"2019-12-03T01:04:18.941Z","1.0.3":"2019-12-05T00:51:17.823Z","1.0.4":"2020-03-18T21:58:39.979Z","1.0.5":"2020-04-15T19:21:20.477Z","1.0.6":"2020-05-18T22:18:45.618Z","1.0.7":"2020-07-27T20:39:56.025Z","1.0.8":"2020-08-24T21:58:24.869Z","1.0.9":"2020-11-11T20:44:44.835Z","1.0.10":"2021-02-04T19:33:06.698Z","1.0.11":"2021-02-06T00:44:46.866Z","1.0.12":"2021-06-09T19:13:01.164Z","1.0.13":"2021-10-21T16:20:38.776Z","1.0.14":"2021-11-04T18:30:38.720Z","1.0.15":"2021-11-15T20:11:29.545Z","1.0.16":"2022-03-10T18:41:35.787Z","1.0.17":"2022-04-26T22:12:06.266Z","1.0.18":"2022-05-04T01:44:44.802Z","1.0.19":"2022-06-06T22:28:30.786Z","1.0.20":"2022-07-08T16:00:01.265Z","1.0.21":"2022-07-22T23:00:34.623Z","1.0.22":"2022-09-06T16:41:49.576Z","1.0.23":"2022-10-06T19:45:05.562Z","1.0.24":"2023-03-16T22:51:13.685Z","1.0.25":"2023-06-09T16:30:46.451Z","1.0.26":"2024-08-29T16:37:21.402Z"},"readmeFilename":"README.md","homepage":"https://webhint.io/"}