{"maintainers":[{"name":"anonymous","email":"npm@joshuakgoldberg.com"}],"keywords":["eslint","tslint","lint","configuration"],"dist-tags":{"beta":"2.0.0-beta2","alpha":"3.0.0-alpha.1","latest":"2.16.0"},"description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","readme":"# tslint-to-eslint-config\n\n[![Code Style: Prettier](https://img.shields.io/badge/code_style-prettier-e72163.svg)](https://prettier.io)\n![Coverage: 100%](https://img.shields.io/badge/coverage-100%25-orange.svg)\n![TypeScript: Strict](https://img.shields.io/badge/typescript-strict-yellow.svg)\n[![NPM version](https://badge.fury.io/js/tslint-to-eslint-config.svg)](http://badge.fury.io/js/tslint-to-eslint-config)\n[![Circle CI](https://img.shields.io/circleci/build/github/typescript-eslint/tslint-to-eslint-config.svg)](https://circleci.com/gh/typescript-eslint/tslint-to-eslint-config)\n[![Join the chat at https://gitter.im/tslint-to-eslint-config/community](https://img.shields.io/badge/chat-gitter-informational.svg)](https://gitter.im/tslint-to-eslint-config/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n[![Speed: Blazingly Fast](https://img.shields.io/badge/speed-blazingly_fast-blueviolet.svg)](#)\n\nConverts your TSLint configuration to the closest reasonable ESLint equivalent.\n\n👉 Did you know [TSLint is deprecated](https://github.com/palantir/tslint/issues/4534)?\nHooray!\nUse `tslint-to-eslint-config` to expedite migrating your project onto ESLint.\n\nConsider taking a peek at the relevant documentation:\n\n-   [ESLint](https://eslint.org/docs) itself\n-   [typescript-eslint](https://typescript-eslint.io), which allows TypeScript files to be linted by ESLint\n\n## Usage\n\n> ⚠ Coming from Angular? Use **[angular-eslint](https://github.com/angular-eslint/angular-eslint/blob/main/docs/MIGRATING_FROM_TSLINT.md)** instead to coordinate around this tool and others.\n\n```shell\nnpx tslint-to-eslint-config\n```\n\n_⚡ (wow, so simple!) ⚡_\n\nThe `tslint-to-eslint-config` command reads in any existing linter, TypeScript, and package configuration files, then creates an `.eslintrc.js` result based on them.\n\nFor any TSLint rules with corresponding ESLint equivalents, those equivalents will be used in the new configuration.\nTSLint rules without ESLint equivalents will be wrapped with [eslint-plugin-tslint](https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin-tslint).\n\n> Requires Node 14+ (LTS) and TSLint 5.18+\n\n### FAQs\n\nWe **strongly** advise reading [docs/FAQs.md](./docs/FAQs.md) before planning your conversion from TSLint to ESLint.\n\n### CLI Flags\n\nEach of these flags is optional:\n\n-   **[`comments`](#comments)**: TypeScript configuration or file glob path(s) to convert TSLint rule flags to ESLint within.\n-   **[`config`](#config)**: Path to print the generated ESLint configuration file to.\n-   **[`editor`](#editor)**: Path to an editor configuration file to convert linter settings within.\n-   **[`eslint`](#eslint)**: Path to an ESLint configuration file to read settings from.\n-   **[`package`](#package)**: Path to a package.json file to read dependencies from.\n-   **[`prettier`](#prettier)**: Add [`eslint-config-prettier`](https://github.com/prettier/eslint-config-prettier) to the plugins list.\n-   **[`tslint`](#tslint)**: Path to a TSLint configuration file to read settings from.\n-   **[`typescript`](#typescript)**: Path to a TypeScript configuration file to read TypeScript compiler options from.\n\n#### `comments`\n\n```shell\nnpx tslint-to-eslint-config --comments\n```\n\n_Default: none_\n\nIndicates to convert from [TSLint rule flags](https://palantir.github.io/tslint/usage/rule-flags) to [ESLint inline comments](https://eslint.org/docs/user-guide/configuring#disabling-rules-with-inline-comments).\nComments such as `// tslint:disable: tslint-rule-name` will be converted to equivalents like `// eslint-disable eslint-rule-name`.\n\nIf passed without arguments, respects the `exclude`, `files`, and `include` in your TypeScript configuration.\n\nIf passed a single file path ending with `.json`, that is treated as a TypeScript configuration file describing with files to convert.\n\n```shell\nnpx tslint-to-eslint-config --comments tsconfig.json\n```\n\nIf passed any other arguments, those are treated as glob paths for file paths to convert:\n\n```shell\nnpx tslint-to-eslint-config --comments 'src/**/*.ts'\n```\n\n#### `config`\n\n```shell\nnpx tslint-to-eslint-config --config .eslintrc.json\n```\n\n_Default: `.eslintrc.js`_\n\nPath to print the generated ESLint configuration file to.\n\nThe file extension of this path will be used to determine the format of the created file:\n\n-   `.js` file paths will be written `module.exports = ...` JavaScript\n-   Other file paths will default to JSON\n\n#### `editor`\n\n```shell\nnpx tslint-to-eslint-config --editor ./path/to/.vscode/settings.json\n```\n\n_Default: `.vscode/settings.json`_\n\nPath to an editor configuration file to convert settings settings within.\nAny VS Code style editor settings for TSLint will be converted to their ESLint equivalents.\n\n#### `eslint`\n\n```shell\nnpx tslint-to-eslint-config --eslint ./path/to/eslintrc.js\n```\n\n_Default: `--config`'s value_\n\nPath to an ESLint configuration file to read settings from.\nThe generated ESLint configuration file will include any settings `import`ed from this file.\n\n#### `package`\n\n```shell\nnpx tslint-to-eslint-config --package ./path/to/package.json\n```\n\n_Default: `package.json`_\n\nPath to a `package.json` file to read dependencies from.\nThis will help inform the generated ESLint configuration file's [env](https://eslint.org/docs/user-guide/configuring#specifying-parser-options) settings.\n\n#### `prettier`\n\n```shell\nnpx tslint-to-eslint-config --prettier\n```\n\n_Default: `false`_\n\nAdd [`eslint-config-prettier`](https://github.com/prettier/eslint-config-prettier) to the list of ESLint plugins.\nWe [highly recommend](./docs/FAQs.md#should-i-use-prettier) you use [Prettier](http://prettier.io) for code formatting.\n\nWhen `--prettier` isn't enabled:\n\n-   If the output configuration already doesn't enable any formatting rules, it'll extend from `eslint-config-prettier`.\n-   Otherwise, a CLI message will suggest running with `--prettier`.\n\n#### `tslint`\n\n```shell\nnpx tslint-to-eslint-config --tslint ./path/to/tslint.json\n```\n\n_Default: `tslint.json`_\n\nPath to a TSLint configuration file to read settings from.\nThis file is piped into TSLint's `--print-config` to generate the list of rules to enable in the generated ESLint configuration file.\n\n#### `typescript`\n\n```shell\nnpx tslint-to-eslint-config --typescript ./path/to/tsconfig.json\n```\n\n_Default: `tsconfig.json`_\n\nPath to a TypeScript configuration file to read TypeScript compiler options from.\nThis will help inform the generated ESLint configuration file's [env](https://eslint.org/docs/user-guide/configuring#specifying-parser-options) settings.\n\n## Node API\n\nYou can use `tslint-to-eslint-config` programmatically via its exported functions.\nSee [docs/API](./docs/API.md) for details.\n\n```ts\nimport { convertLintConfig } from \"tslint-to-eslint-config\";\n\nconst result = await convertLintConfig();\n```\n\n## Development\n\nSee the [Code of Conduct](./.github/CODE_OF_CONDUCT.md) and [general development docs](./docs/Development.md). 💖\n","repository":{"type":"git","url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git"},"users":{"flumpus-dev":true},"bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"license":"MIT","versions":{"0.1.0":{"name":"tslint-to-eslint-config","version":"0.1.0","keywords":["eslint","tslint","lint","configuration"],"author":{"name":"Josh Goldberg","email":"me@joshuakgoldberg.com"},"license":"MIT","_id":"tslint-to-eslint-config@0.1.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"490ed03c18f9c038e14a86c48279b7293c975afa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.1.0.tgz","fileCount":273,"integrity":"sha512-LfyxS65oLKc40V8oVVvaWvWGbNJr/tN9MfqVys93lC6s8Rb/SW760pE8x8LvDoVY89aDtEMe570w6tCJeHW6iQ==","signatures":[{"sig":"MEYCIQCVlLLxyaOwq15hptsdpKEkwgxbQIC1mBgtauLDC9BhogIhANJWjPYiU1usK3WhHxSbXMBwJ1pRuaIfq6rbXSK8+To+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":212941,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGW0mCRA9TVsSAnZWagAAfosP/1K8NJJE+SFUxz9IpRqJ\nGJDRt1Kn+xpmKjbuQsljwaNYNDHzWCB+8qAO7jmPC6tkxvYUN9vVIuBREM6C\nZOGHBPv2afoCxwi/13FvdDHdDxKDkPl3NTx3rNaLLXFQgCLdROvWjmo90eHv\nkLkdSWpS7fVwzwEV8LMX/WQ07DCfQEMDfJVqePmnv8sYjCmK3pqNiSGQ1d+2\nAqxojpOYTWHXx58Pypm9YZau7g50xeBJZQnQx9PK4/jgsSvBpv/Yj350SDog\ngnLePGPSUbGNQEpVnsmv0Rga3LzngEE1aavVxFht1tVIcbs1c555PkhJPzHB\nWlOdigRQVaz6sFOArbBlAt5GAs1ZGDjz3uSqx6r41fofiP5WVktfBcjStb0f\nQl7xLx4cO3jT3n/tgo/QnBDklye0rAKRGSufN8jXVzA6gSJbLFzViM6QoWLh\nuuRjG0DIKfUbf+GY8SdxnwVxsoL5syzVStCh7Ea+dOMfithA7UHAMdLwHyW6\nxFBYjiNcvULnhYaMIkrkzof3tRKBX+MVamogCNgxu7/XOZ/t1ao/oevFX+qc\nxwe24iPh+Cd1ydGsfzW0UG6m0Zs9ZurCIb2Ts/AqYujKR4OfrJNyL3oLF1XG\nSfL+sbSRpmgoCWE2hvr2u9Uw7F9sfYCJxhKUMyCxce1Y4E3hkJK8jHX5E48v\nxaaG\r\n=z2A5\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"2c449cf8c51d8ec9683d23ba8423757c66e18fd7","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\"","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"2.4.2","commander":"2.20.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","husky":"2.7.0","eslint":"6.0.1","tslint":"5.18.0","prettier":"1.18.2","babel-jest":"24.8.0","strip-ansi":"5.2.0","typescript":"3.5.2","@babel/core":"7.4.5","@types/jest":"24.0.15","@types/node":"12.0.10","lint-staged":"8.2.1","@babel/preset-env":"7.4.5","eslint-config-airbnb":"17.1.0","eslint-plugin-import":"2.18.0","eslint-config-prettier":"6.0.0","@babel/preset-typescript":"7.3.3","@typescript-eslint/parser":"1.11.0","eslint-config-airbnb-base":"13.1.0","@typescript-eslint/eslint-plugin":"1.11.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.1.0_1561947429515_0.3814305621184566","host":"s3://npm-registry-packages"}},"0.1.1":{"name":"tslint-to-eslint-config","version":"0.1.1","keywords":["eslint","tslint","lint","configuration"],"author":{"name":"Josh Goldberg","email":"me@joshuakgoldberg.com"},"license":"MIT","_id":"tslint-to-eslint-config@0.1.1","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"6f525a450e28c9c05b63e3dc5e4d8be552237a06","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.1.1.tgz","fileCount":682,"integrity":"sha512-rjjyGf1fahW4nilfJYNwJ1CjbshKfgzhTc1OP5ecle9JJlx+1gMQ+GGWz/HDSLHSw77bbWwiED2+wUEXJnN+fw==","signatures":[{"sig":"MEUCIQCLRCSETDVZVgy30Y8LAfgHp5ewoINhOmXelfaSLBW0vwIgDqMrHMJKGAxKvQNgRKTRejvlSYSV1MS6CUOqrDqIisU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":348522,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGW7qCRA9TVsSAnZWagAAn20P/1FEJPBTg77wH6XnTVMo\nVWNH+AiWHcxmrWU91a5cMVuPaHYiqXrBb47UT1gR12hAWpHWqD2HM/cZP8pC\n8D69gJTbXjaYk9QjIEauZOx1VhYizZEo0IAZHFf2yNIcCL7s1fkJmzjxs2IS\niuVB1/5J8FWfIFXKslDCQvJoj0TgqYqOyn8TWzjX5jRQtRVP+yzTCxqn+0jd\nevWoDIzwrVxxQKSDxVmh7/8i+Ndn/7tLAYOYY305JDHPqCXX+F2XayZDWnFR\nkf4rl+2ul3JZ/WGqT7g7MhnM+iVoKaK+/C+TtBOqNRkO2Zy2N6rftH1U/+Qe\nthaUdiEnvprpKTHpO25QBea2tto8XCuE8IiwTxWHR8mYZuVJh7VerbMcBGcG\niNdptB4fuz9UX2HhijsEIuf1n0CXjWVKz46nJTuXdArWecwekg/cFxwjuVbH\n1+wDwseEpQny6ybPtSZ5gcj8lODAqPZt8crxJUNNhvljERpVpQ2SDeFCpNeS\nnyVfQ+RXk2VK+csyIpZ4wguouTijpqHmz2YDbDNkmlrMSd2r0Gc0jJOYBXEm\n70EOOYMUG7wPNrNGFFBsDa5Oc6CJ8+dhAXcPYyGX8oc5FEQ/i82I2IC6WYvS\nDXPt3UTAQ2+vI+om8x1EPU9tVGtOZUdl7LkRCQ0/gQRXe9Pl18VzRPxW6xj6\nbS42\r\n=+1yb\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"8af2c429b15400ebfe96f8da58cb3e6fffd03ee9","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\"","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/JoshuaKGoldberg/tslint-to-eslint.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"2.4.2","commander":"2.20.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","husky":"2.7.0","eslint":"6.0.1","tslint":"5.18.0","prettier":"1.18.2","babel-jest":"24.8.0","strip-ansi":"5.2.0","typescript":"3.5.2","@babel/core":"7.4.5","@types/jest":"24.0.15","@types/node":"12.0.10","lint-staged":"8.2.1","@babel/preset-env":"7.4.5","eslint-config-airbnb":"17.1.0","eslint-plugin-import":"2.18.0","eslint-config-prettier":"6.0.0","@babel/preset-typescript":"7.3.3","@typescript-eslint/parser":"1.11.0","eslint-config-airbnb-base":"13.1.0","@typescript-eslint/eslint-plugin":"1.11.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.1.1_1561947881010_0.7739783584836166","host":"s3://npm-registry-packages"}},"0.1.2":{"name":"tslint-to-eslint-config","version":"0.1.2","keywords":["eslint","tslint","lint","configuration"],"author":{"name":"Josh Goldberg","email":"me@joshuakgoldberg.com"},"license":"MIT","_id":"tslint-to-eslint-config@0.1.2","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"821a916de2c9d70f8e60e96709cfe89f81697835","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.1.2.tgz","fileCount":545,"integrity":"sha512-nudv9XWYE2y9etfwfrCLgWlMDuzvnZyabZg4rMii/gSo/r3TJA4gFBUbihfzWHPnXHf+0aCCXnsMrB1NjQqrIA==","signatures":[{"sig":"MEUCIGXO7pIUIYhmKL/whImHvi+U6qhPNoeXmyU+GuuMviPWAiEA8i0ls9PNnZOnJ+axc2F/shjALtUm1lLhyKVVcrVGV6g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":267128,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGW9KCRA9TVsSAnZWagAAOqUP/A+Pr3ZfNOaE3MTIjZyf\n7b+psK9GDEEtiPWi9JVMIXPHc1nbs90ITPsDp+d3pVl3vhF/Mcff+FDD7fmE\n/1vIPMCONT/v/MkBhimMdmh7L3pvCgUlkPuGjVOeuBbzrEoQgLw7KQqJag74\nrdGR4u1j6MGUuDP/f+dacgwofERSOnlkH5lp2Pjjj9xNcaeTaxAymLH3VA49\nlTXuxuXybFkYrsazHUNI8jwGu6WjAkZP8rqVnAhtxxpjPsTd+Ao8Fhp5nxt+\n2I3BJ8XII2MbO19MzveV1NBScbOQjFS4pG1K95POQJ4z7U7aHSKw+zJ3rHtv\n7fsZ3F4VaN+pLiH9tayq5Li9N2Nq74p902EwkJOL+M5kHLnBGRB6wdoSKAHX\nEiT9HzTy5Dt3ilAjC8BJzfBVH32Hr1wGvvi1SR9OiBlheNKZYlouuBo+q1sg\nuyd265lNUZ5DkV8rS+ntFQbT1pF+vxo7LZCvnXLlLebPHXDgtRBAhjP2XA+p\nSMmIRoJTIKkRW8gNypFZcANJSTFKfZywXSZWo7/XxQbpxmZyS+81+yGKwqV1\nNCJU3TICmSv7Xco/LUFx+Ff6bYBMJ3h6308SB4SQvcfCrWiFk+/UPYp77nsu\nwYg/YA94IsMBiZzLV+RIcdQ+L4W/ouR5gsGaANJAJ+beNIKndNr3JSBTW6QZ\nkibf\r\n=f+Fx\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"4d8fa704858590bcf6efe21e3e4f27d0bf2132f5","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\"","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/JoshuaKGoldberg/tslint-to-eslint.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"2.4.2","commander":"2.20.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","husky":"2.7.0","eslint":"6.0.1","tslint":"5.18.0","prettier":"1.18.2","babel-jest":"24.8.0","strip-ansi":"5.2.0","typescript":"3.5.2","@babel/core":"7.4.5","@types/jest":"24.0.15","@types/node":"12.0.10","lint-staged":"8.2.1","@babel/preset-env":"7.4.5","eslint-config-airbnb":"17.1.0","eslint-plugin-import":"2.18.0","eslint-config-prettier":"6.0.0","@babel/preset-typescript":"7.3.3","@typescript-eslint/parser":"1.11.0","eslint-config-airbnb-base":"13.1.0","@typescript-eslint/eslint-plugin":"1.11.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.1.2_1561947976837_0.9608208968504199","host":"s3://npm-registry-packages"}},"0.1.3":{"name":"tslint-to-eslint-config","version":"0.1.3","keywords":["eslint","tslint","lint","configuration"],"author":{"name":"Josh Goldberg","email":"me@joshuakgoldberg.com"},"license":"MIT","_id":"tslint-to-eslint-config@0.1.3","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"4296f784aca0f592c4f0685c0bb8e981a742e4ff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.1.3.tgz","fileCount":442,"integrity":"sha512-SIzU/W+uAtHVw11QFaIgaucq4S/UtbYh+kDJ0ptW1muqTsIlvjAo7OZw5TpqN5r6juL+PbpTWdmUUOHaxJ3RVQ==","signatures":[{"sig":"MEQCIEtXh79LM9KFDjFMXBCU3C4/TNPEGl/fLm0yFr09EpbBAiBhJwuyAUNn19Gc+bi3OK12Ugg7zfmKd5oeg7d2WrMAXA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":255945,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGW+LCRA9TVsSAnZWagAAb1UP/iX2cldWeZX7FEbY+a/B\nU3JTx4+MesR55iBxMBu3CJe/7Z7J9Bcn7RfGyyjs3JD+RYfniT5xkBzZBF5x\n04k5wOdTOz+0gRWQYNFcnD5sEruEdAIjC3SD/Aa5AE60rnd/TOYAVKIZSBP6\nfrTa1NuEdqTfCCyJOwnZtVwlJ45jk+SMiExAl9dqrfc9+vPcVGJXkEgFOA1O\nxk/sGo2JX7ux/VNF5kmxWgfJOetb7iQJ5p/wOIizWLPQ38zKhE1pe/T5zt+4\nbC8lIw2F8B53hKUqqf7+rJn5cje85263hd2ZoJpOv9/pfURTOqinR/j2ncuQ\n4suJlkoK3pSncS8RAE3EpA2U3BV7EwbXS5YrD5XQaaoEMpkrHKNfntbvDdZY\nrOX0R+ubUGQKA9pLhKw+aOcvCqeZZRc1JblgOnyZie5iQaFF5aR9ltpQ5zCp\nTtjjT7eJA1TpYNxKBEZErtbH9sdBih7tU/jGcF5TzAq8qURnL9nmpMcLrT7j\noLbS3zFV7YehOq1f5c12BEOWMYN0jMEEhG7dup27D/kTClfT7j5pmTSHsfdr\npwWk2A3DgxkAHUiGX0yLCQ4ERPRZFZ79y4wG3PFEBKPiwWAO3twrfHAj7M0I\nKlKxBrjQf17c6/1hGJJeszAdOKqd5kkA2+rZNkkOeH9GsHSdzk891zLpkBEl\nAM1v\r\n=pUWF\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"ccf02d2dc153133a6c43d14c1b5119bc0c6f2c4b","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\"","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/JoshuaKGoldberg/tslint-to-eslint.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"2.4.2","commander":"2.20.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","husky":"2.7.0","eslint":"6.0.1","tslint":"5.18.0","prettier":"1.18.2","babel-jest":"24.8.0","strip-ansi":"5.2.0","typescript":"3.5.2","@babel/core":"7.4.5","@types/jest":"24.0.15","@types/node":"12.0.10","lint-staged":"8.2.1","@babel/preset-env":"7.4.5","eslint-config-airbnb":"17.1.0","eslint-plugin-import":"2.18.0","eslint-config-prettier":"6.0.0","@babel/preset-typescript":"7.3.3","@typescript-eslint/parser":"1.11.0","eslint-config-airbnb-base":"13.1.0","@typescript-eslint/eslint-plugin":"1.11.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.1.3_1561948043240_0.18191428039425528","host":"s3://npm-registry-packages"}},"0.1.4":{"name":"tslint-to-eslint-config","version":"0.1.4","keywords":["eslint","tslint","lint","configuration"],"author":{"name":"Josh Goldberg","email":"me@joshuakgoldberg.com"},"license":"MIT","_id":"tslint-to-eslint-config@0.1.4","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"30b1426cfd6bca1bcb91d1caf2e6fa9ec86041eb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.1.4.tgz","fileCount":442,"integrity":"sha512-J3NEtNyZjEVdm8sYpKPW7R3kS88e55EDcuxnLHqt46DeQu96DnwSlEB29ROb1SsxXLM8Er7hwweusFVPiPaVYw==","signatures":[{"sig":"MEQCIAPNrBPHzyHjkOqy3qDnDMJVvQoDmTkogUltR3NvM7jFAiA7xoZtDKJIkKV1EzPm4xUlKiuC/ppyrdSaWeDj9h09AQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":255945,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGW/LCRA9TVsSAnZWagAAbJMP/16oRIH6SWJdXxTFyPJB\n5pTBi1bKyWmoey/awq1r9yLO3v/Z0fu5lyFocgBfdQLkummaMDrxl79uhwzZ\nU8xCkyo94Dzl5w+xe0OtnZ+5expRFGX36iiOmPii7OhmKGZfzggTR/5zZ/Il\nwPA1w60Osmu8B2D48BCDKc+Ku68r8znyFkGvICihL27DgH5/27L1wLCeeleX\n5jlaAOqi7anwgNmwnCwrg2qgmMtS5SRFaE+V6IT1EvSl+HJiKwdzikhNUzb+\nSPtOa0L709mHn8EV14YseXMxvX3dzveS9HL3pkXg5tMBHc5h47NG5ObKq87g\nidARK9n2+KPwLi/5wE9nx6p5yIuw9U8RCliKYUuCkKLqGtIc4FrDAADFlr4R\nXUbOPDVfF6BtexLSPgONo+ENulRXZaxtkHiB/2sLQzSQKtqbCZgAbhd5fpoD\nl325AZT/EGn7/MEUoVaK6BCejz2eQnTTNeEL8Df5RqaQYt6hIU/ZNufFdszO\niQBtzwMGUA2YQH5fp0Cirrj1XxaD85ZCORFMo+d3I4ZBZJHTjHXPN8G+ugc7\nmM5csB8LS4O/W9pkOW07PEXtvXCVGljwGkRr7jj9rpBFAgSLgeKys49rPXx2\nEtLMmWFTfSFp58yN+r9aIr6D5hoVrmIGBzIIwcXcOPKLt0AS7d9nVpPHl6d2\ndms2\r\n=N/3a\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"d5f8b76d921ebdc4eb4859f91b2ebfd26e45d9a9","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\"","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/JoshuaKGoldberg/tslint-to-eslint.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"2.4.2","commander":"2.20.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","husky":"2.7.0","eslint":"6.0.1","tslint":"5.18.0","prettier":"1.18.2","babel-jest":"24.8.0","strip-ansi":"5.2.0","typescript":"3.5.2","@babel/core":"7.4.5","@types/jest":"24.0.15","@types/node":"12.0.10","lint-staged":"8.2.1","@babel/preset-env":"7.4.5","eslint-config-airbnb":"17.1.0","eslint-plugin-import":"2.18.0","eslint-config-prettier":"6.0.0","@babel/preset-typescript":"7.3.3","@typescript-eslint/parser":"1.11.0","eslint-config-airbnb-base":"13.1.0","@typescript-eslint/eslint-plugin":"1.11.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.1.4_1561948107058_0.8776308195528126","host":"s3://npm-registry-packages"}},"0.1.5":{"name":"tslint-to-eslint-config","version":"0.1.5","keywords":["eslint","tslint","lint","configuration"],"author":{"name":"Josh Goldberg","email":"me@joshuakgoldberg.com"},"license":"MIT","_id":"tslint-to-eslint-config@0.1.5","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"4178badeb750b09b1cf430518eea41f16cdd6683","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.1.5.tgz","fileCount":234,"integrity":"sha512-F59T1t7thzc5gqqRiELK0D4VFCBVexsk5TxP8LuSHxDWUlthoMQpn54kxl1dnbuOug5qFdqbY577lc/U2f8TTQ==","signatures":[{"sig":"MEYCIQCK6xzQwRXiAj3l4b51mNKelQGz9+4+HC066cKenqVyHQIhAOl9ss+F797lSC2BtuwPgDUifCHkRGTsg51Ve5HTFo+U","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":174749,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGXALCRA9TVsSAnZWagAAoGAQAJtZ0677/MiHeMIoyg6z\nex2YdIlkvikWZi2pRaUejrjMocrySFLaO+GRKKRodx/vudiEzgROpEDtDYKQ\ne9nA4pDbmpTc/pHvR44ZWcJw8cZ7U9o+mQpUSsNIw7h3XXX4DoxtalaMGh0B\n3843Meg0Ub0cv83xKZjk5kADs9dYmaS7I3MeZLIoHLBn8N+Q5bPzTsA7KiHP\nQXHGzprqNOSFK7Yvxa50jnv1UqU+7b+qTKtRXwDjXwvN8W9KZPeWtWFO9O7B\nJ82CvwXNV3fvEDoOXhQY+uTzTSQwQ25Le2B150d6pPxGEUvMcYcU2zDfEGOv\ntzkozSRCs2tTKK/Nf0Tp3mwThP5++7bsVXIdmiViiW4dDuT7V/XYFDe1olaO\nllhn/mOH+uk70oqMm2RY8jvTsG7u5hSEvPpORWItbDnb/87qOT494Nf9KCTr\nQdjYutPilKFld8Qkpkgny2PDIbrgacfnRVRUqIy1YtFXeL1/gj5un5DMGqVm\n5FRQZG5V5YoM8R/qmaj2UoZR06iFVtBNCftdpG0IqjE1jeIKx5ZNAZlC56BP\nEUxMBdbdjgVbm4fHPdmPCU9IGTwnS6iHiraTDvUqSpzw9wcf0cZMaX7KUQBP\nKG5RVJy4hqh5p2Ybv9x2mGiQaXSGeiv5DWA7EOFRpVMY585654u7qaxn035H\nqCFg\r\n=BwHI\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"1a3ed02baa9bd3c4c592d88914c0a224a58e0cbe","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\"","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/JoshuaKGoldberg/tslint-to-eslint.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"2.4.2","commander":"2.20.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","husky":"2.7.0","eslint":"6.0.1","tslint":"5.18.0","prettier":"1.18.2","babel-jest":"24.8.0","strip-ansi":"5.2.0","typescript":"3.5.2","@babel/core":"7.4.5","@types/jest":"24.0.15","@types/node":"12.0.10","lint-staged":"8.2.1","@babel/preset-env":"7.4.5","eslint-config-airbnb":"17.1.0","eslint-plugin-import":"2.18.0","eslint-config-prettier":"6.0.0","@babel/preset-typescript":"7.3.3","@typescript-eslint/parser":"1.11.0","eslint-config-airbnb-base":"13.1.0","@typescript-eslint/eslint-plugin":"1.11.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.1.5_1561948171096_0.7151126484259878","host":"s3://npm-registry-packages"}},"0.1.6":{"name":"tslint-to-eslint-config","version":"0.1.6","keywords":["eslint","tslint","lint","configuration"],"author":{"name":"Josh Goldberg","email":"me@joshuakgoldberg.com"},"license":"MIT","_id":"tslint-to-eslint-config@0.1.6","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"8a3a5ca09a384780ad1288cf87d6ab1517e34b4d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.1.6.tgz","fileCount":215,"integrity":"sha512-mwgEz2YQnxKrn+3LSQmKHUFwcWvv0ZyGCgCn3As4HSfq8X+U+PeaG/XTp4aZeSreAil7LafENad6lBjeTG9gAg==","signatures":[{"sig":"MEYCIQCuex+UA1DFbz3cxfSnB4D6D/zNwv7ZMpp7CkE1rSQjiwIhANmhMEajnbUL0OZQ5533aK3oPDyDGRNEDqx+Nr9YOdar","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":174521,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGXBNCRA9TVsSAnZWagAAuysQAIggHvEhCjWG7Yg+Ka+K\ng0e35FKeecqnnHZtJUVLlpa9Stt8nSwhSeQOo2a7kK9rAVj8Xf3gsvE1txps\n5RQyL7miYh3PsrWKTMNfxA51TJBuD5Evt9haiDna6dlaw6hUmWzneBEY9QHR\nMYvjLMT4T2Q5kuRD6hc6p+ln/Q+meiL/M1fTAexV4YAaCwWtxaoFR5y5kzCL\niJiJIgt1Q9GHVqZfW1u5bmwLnjcgzPTyGZaBFUr8eApNbF0mecadabcLRs9d\nfnQAvfkEL0IODhmwdhOn7ZP5TithGG8GS1reqlucffnsrbrgn9JipyKx2teE\nbtqgrNChMJz+dOtJ1M2CdQY+quLkVZ/xXO2D/iqvOMqmyZAuvAkPNDIrNV0I\n6bIYHqhWgaUiArVqZ6T07nsEU/kSWBh9lAvRSf/hd1du0709y8dr/rw/KkL0\n9TU/WNGxBAZa4A02FUPtFE9CN5fkDPI5xEvJ1Kbv/XmGg7GwxGw8cMIy8vdF\nsOjFAch0AZ77jDtIw1/yRBWTKrS8mDFINwIIF3RAvBLzUcD/ePpMaRA/nCff\nDXSs856Qh7VIYgbTsktFT91DHsbQbssgq2/broApuDPeaPY8wLNrF5ckOBmQ\nlRcz+JBa5HxGsotI4xD1oghkMQQTPaIQJdcohGYC78tEv8vWUGjko8f5KXyo\nMGqf\r\n=AhEm\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"a0f3e0ada038bb763eba56da8c05db4f921c08fc","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\"","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/JoshuaKGoldberg/tslint-to-eslint.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"2.4.2","commander":"2.20.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","husky":"2.7.0","eslint":"6.0.1","tslint":"5.18.0","prettier":"1.18.2","babel-jest":"24.8.0","strip-ansi":"5.2.0","typescript":"3.5.2","@babel/core":"7.4.5","@types/jest":"24.0.15","@types/node":"12.0.10","lint-staged":"8.2.1","@babel/preset-env":"7.4.5","eslint-config-airbnb":"17.1.0","eslint-plugin-import":"2.18.0","eslint-config-prettier":"6.0.0","@babel/preset-typescript":"7.3.3","@typescript-eslint/parser":"1.11.0","eslint-config-airbnb-base":"13.1.0","@typescript-eslint/eslint-plugin":"1.11.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.1.6_1561948236973_0.5208209550799654","host":"s3://npm-registry-packages"}},"0.1.7":{"name":"tslint-to-eslint-config","version":"0.1.7","keywords":["eslint","tslint","lint","configuration"],"author":{"name":"Josh Goldberg","email":"me@joshuakgoldberg.com"},"license":"MIT","_id":"tslint-to-eslint-config@0.1.7","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"c3399d931da8bf79c99bb102955a44b6074874da","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.1.7.tgz","fileCount":215,"integrity":"sha512-VfB1v7RA/JONikHHkRzb0NGBqMA/MKwvN1n4zG6NJcNFNpUMKZcvypHqkHo3h6lt3usDkouamCBDe4D+4o/f8g==","signatures":[{"sig":"MEUCIQCoqeg2w1+F9z3KWZTTxAfrMZagmISdYpQNo9JHXykWrgIgJvmyZUYXtUID+FiYQLdc24/POjIJcSUs3pLHHjHxPEg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":174602,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGYadCRA9TVsSAnZWagAAliYP/3MxD3InHd4JdIV1rJSL\nGi04o4nI4UGBBOABPL8AjmlI+iizCQDAwcpzo38Zac3Q0xT4y0yzbbmYzwEt\n8HJ/e4lJ7S7SkuopeS5/eC0HAeoZiAWV8WHuta8ODQ1OkFW1g5jrl3dQZnXv\nH8Vb2uZCFv7Y2LGe+14A/BoRPv483+sQ81x97f47iSyy83GxC+ysU2nmeF3Q\nPBlfEPYoPUnDaSuejuP/gRFiwL7/hnHWI9/PPwFsvHtU1+oTSYiyfIwq2G6N\n4a+ApykvyADqGR+hLFzAJeKPU7i317H5cT6NoRzJ5l2cO1GYki0Eg17qpNtV\nF0yuPAahzQahXYqKdkugHjJZu+z5OTW3G55Xno2EMa3Egz6kPmHXsxRRaYNE\n5pA5TGKtmj9OZ4TOnp6CKXnFrMeKjKghr4h8lZcEDB5HrW4ZPkPxRiXz5r98\n5ir/SOrZfTjtFaBh3g6diSBvYsox6FzbQJb3jZnUKS9iKWfPDSVYmBJP0NWU\nk1ijAwe58XiDGPV/v7rMPGdW2W6W/dDg5G9zazLB/agJfVbj393la4UaGZb6\nh3z3nUeulMti8QIhIzTGUxY4jrXnfHGeHEyx2H46vdnJ5zV+0R/sTlukW0bw\nEhHYUAn30qu62kHq1QJfT/UYHu3GaSDxGdlMp3pSjv67pR2ULUow1Jvhq3/p\nCwgK\r\n=w26y\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"12b59d60b5bfc1127ecda1fe2e94d7e3c830bc1e","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\"","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/JoshuaKGoldberg/tslint-to-eslint.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"2.4.2","commander":"2.20.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","husky":"2.7.0","eslint":"6.0.1","tslint":"5.18.0","prettier":"1.18.2","babel-jest":"24.8.0","strip-ansi":"5.2.0","typescript":"3.5.2","@babel/core":"7.4.5","@types/jest":"24.0.15","@types/node":"12.0.10","lint-staged":"8.2.1","@babel/preset-env":"7.4.5","eslint-config-airbnb":"17.1.0","eslint-plugin-import":"2.18.0","eslint-config-prettier":"6.0.0","@babel/preset-typescript":"7.3.3","@typescript-eslint/parser":"1.11.0","eslint-config-airbnb-base":"13.1.0","@typescript-eslint/eslint-plugin":"1.11.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.1.7_1561953948379_0.28044632590803587","host":"s3://npm-registry-packages"}},"0.1.8":{"name":"tslint-to-eslint-config","version":"0.1.8","keywords":["eslint","tslint","lint","configuration"],"author":{"name":"Josh Goldberg","email":"me@joshuakgoldberg.com"},"license":"MIT","_id":"tslint-to-eslint-config@0.1.8","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"e5b46f62407a4036ccc158a96559202d6be8ebd0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.1.8.tgz","fileCount":33,"integrity":"sha512-RbUlKrI5j3RWSLXup2VwG6BVINE74PLZ+go6XfB19jxZAM5I/snihO/SN7j07+h/G1/nALxbbFMBMu9CBjbKpA==","signatures":[{"sig":"MEUCIDY3yqlVW/+Zls/nnFBGZqcD6sEwkydPqlK6yfzJjXYDAiEA33iKnjNiH9105pNOc7FaTpF4HMYF9Yvf1VTcAo87LGY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30408,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdH9UbCRA9TVsSAnZWagAAUEQQAJxaPm8tGKLtWxhbz7Lo\nq1nfC3aXegGdnTqSv6Efb85LdcMnBlPS/e2Z9L3A6dX2iA58oZi7HUhaQjsz\nDEHXK6PDihkq1l4gFcVjeDsvMcMz7O5Png2HG/E04osaP1oRYGLeaDEAEHS5\nCx5FXzmcMtri7pyixLZEYvoMEKEogx/TLSitR4ECFKNs2qalAMyOichJmTIe\nn9fLvOoMX/SwIkclczUsbfCF8+8xo5hvt9GcWnIIqK06uRwUCCcLdhaqC+WC\n3zC1nay4cG2Kw1B8BvNxgaYTLB4U5cGTuzi7pTMTtD6OTs5MuMnI9/0WqY3v\nVx127VdrxfYYkZow1hbOIOH8ut48Pa2739WNvHjnKYjKVSY7VO9eWohC9X8f\nuK2EAyIwaRWVRnpMQvZTgdmHFDk3B30LYbNlWxDNl8+cDq3HcgLw5yWacu8D\niCBlyMzQTWSEC3zpIB+vTw3orCrupYMpV68ejds1yAYKZLYHkitaGBJG6YDH\ndmsAp8YlhlQ0gcuKum7ZTkbJTGUUUgWhI/2+OmsdUkI+DWcWKTNfjcWqWXvP\nwxM4JEDsS/aAuxmqhwOpxRMFAy3t5kJ4gsIJ7v25sufPE+Ih3Ku+jLJvAZoB\nLEEh2MXh+Dmc5b2GFT2wzHi9Rmd2LmUU6OhsxjYXLL2RxNh2VoWgUJ6iWOMW\nr/9e\r\n=kBKX\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"65975194028174a5e98881e110bb6ec4849d14e5","scripts":{"tsc":"tsc","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","test:unit":"jest","prettier:write":"npm run prettier -- --write","test:end-to-end":"jest --config=test/jest.config.js","test:end-to-end:accept":"jest --config=test/jest.config.js --globals=\"{\\\"acceptTestChanges\\\": true }\""},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/JoshuaKGoldberg/tslint-to-eslint.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.6.0","dependencies":{"chalk":"2.4.2","commander":"2.20.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","husky":"3.0.0","eslint":"6.0.1","tslint":"5.18.0","prettier":"1.18.2","babel-jest":"24.8.0","strip-ansi":"5.2.0","typescript":"3.5.2","@babel/core":"7.5.0","@types/jest":"24.0.15","@types/node":"12.0.12","lint-staged":"9.0.2","@babel/preset-env":"7.5.0","eslint-config-airbnb":"17.1.1","eslint-plugin-import":"2.18.0","eslint-config-prettier":"6.0.0","@babel/preset-typescript":"7.3.3","@typescript-eslint/parser":"1.11.0","eslint-config-airbnb-base":"13.2.0","@typescript-eslint/eslint-plugin":"1.11.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.1.8_1562367258641_0.0848776067707595","host":"s3://npm-registry-packages"}},"0.1.9":{"name":"tslint-to-eslint-config","version":"0.1.9","keywords":["eslint","tslint","lint","configuration"],"author":{"name":"Josh Goldberg","email":"me@joshuakgoldberg.com"},"license":"MIT","_id":"tslint-to-eslint-config@0.1.9","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"33ec803dda6998dc7b4739b887b51189dc2be2ad","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.1.9.tgz","fileCount":243,"integrity":"sha512-2kclojLxKJ6pjNWjv0tfyqybaJpsP8vtH54frGaAQnFyWIECYyhLqH7REGRXf1E9UJN4zcWsbITP/TNj+5ETDQ==","signatures":[{"sig":"MEYCIQDhhZJPSIh3P5PQEOZ9K4X1KT/eZaZtoB5e1250z0P2rgIhAK9C1tkBPVK1BuHYeNRsWV7J7U4VFs3Gp8SYggNkvshG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":152137,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdI19ACRA9TVsSAnZWagAAVTUP/32wXLmuXgf8t47g3Mti\nD0rHr4NzXQsBNu8470Mmx6Yn5/OxrIuzOx680EkivY5DeiXMyber+LnXhK71\nPtZAUDq1R7R84VrWCRJLDTrimmyWHgpUsIkxVWjNmakBJYwty8uDBsfewA6L\nvam+Fhm0wntCNWaDffmjkU9hEYRe3MEJ8xqZtO6EIQELtAwtKyzhfNm1NsFh\nKIwvBQk0+Sbc2Kmt6XKrgsfjqm4D3E4pqcvwIx3iZQBvdPQP4r++4L4ztX3N\n3/cUgbcqQkNoDqogK4TwvYIZ5hJBNuXjs1TopOXg1vYfVGaCGAiG3D4Dh75l\nfZjupoVSSN8H5Ha7imMVCIqFf80m5aRHebQht9UGepRtaRmtFEzmmQ1BQjLU\nKniEmOYUSERW5KQRlcEN34MBaims+DQabzgdMcptd3+bOEDMzSY1ACh+5oA/\nMPy5dwmhCP3uiWfDAix3G5oV7GBAnbWrZy9qElZYsvCxwhaJ++MdQnBmFmf3\nHpaojiydrt2pUBK4aK6XX121ryKZJcV0QQ5Ru1f9Wm7IrYX5kbiVRnReMjET\nC6DlROZNjpq+jRB/t0S3BONuLGhGHuk4oYYsIZTlwataRl/PgwjGsGSwHE+g\nNaPekDIwsMaYRkP54527nFwieI2v/C31BM+Cp5Jwd0nI93A3rEk7qI6WVu68\n7X4/\r\n=6VyD\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"3b851287b4f568d717f3e9baaeee18d1c52e5dc2","scripts":{"tsc":"tsc","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","test:unit":"jest","prettier:write":"npm run prettier -- --write","test:end-to-end":"jest --config=test/jest.config.js","test:end-to-end:accept":"jest --config=test/jest.config.js --globals=\"{\\\"acceptTestChanges\\\": true }\""},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/JoshuaKGoldberg/tslint-to-eslint.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"2.4.2","commander":"2.20.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","husky":"3.0.0","eslint":"6.0.1","tslint":"5.18.0","prettier":"1.18.2","babel-jest":"24.8.0","strip-ansi":"5.2.0","typescript":"3.5.2","@babel/core":"7.5.0","@types/jest":"24.0.15","@types/node":"12.0.12","lint-staged":"9.1.0","@babel/preset-env":"7.5.0","eslint-config-airbnb":"17.1.1","eslint-plugin-import":"2.18.0","eslint-config-prettier":"6.0.0","@babel/preset-typescript":"7.3.3","@typescript-eslint/parser":"1.11.0","eslint-config-airbnb-base":"13.2.0","@typescript-eslint/eslint-plugin":"1.11.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.1.9_1562599231382_0.8515299895448747","host":"s3://npm-registry-packages"}},"0.2.0":{"name":"tslint-to-eslint-config","version":"0.2.0","keywords":["eslint","tslint","lint","configuration"],"author":{"name":"Josh Goldberg","email":"me@joshuakgoldberg.com"},"license":"MIT","_id":"tslint-to-eslint-config@0.2.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"963ef08dded6b245bdd7513c0ec65be0ada98167","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.2.0.tgz","fileCount":243,"integrity":"sha512-YeYlb9Elt9smQN0LiCOfhPhuPCNmPnZrCgbYaT8HJjMzgzQKzOkCiev8achumDrddWUZYnswCrz/lwX3gex72Q==","signatures":[{"sig":"MEUCIEZdzHnyNlrKwuVCiHJGTCPfoROtutIWjuRu0Wt4XcY7AiEAtVL2vEWc2kmkZzMKgdHUhqcOd5VIiCun5n7rfEJCQ4Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":152138,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLgfRCRA9TVsSAnZWagAAXkoQAIqUMpZAiYXT7dCJ/0K6\nW9+paHyOSpW3CpMYGqV6sirDIRJGmR79PLKQcCivDJEcxtAWo5IIJL7GGgI4\nbJlUNYbg30i39rYH1E5MWsO/2al44e1Fx860MyPh54YPKyJuGKXRwjdhrdhW\nh4/PMY9+N0kGFkZfq7558Jhm5YLsqecsvdDurhV90egx7x6l8SH79SIFJgJi\nYcv1PHGwW4ACzyfa7BnLpLPUmjHy2uGrYSk7Ezg6i86PC+I+LZWGmxJdJKUL\nNqE/l8i/cccishSLmD1DFafth2Qrbv5Ze2yrNiJYl7qx5VIYox5xqrhwOoMf\nAcuRnhhu5lPwhW9M23fxbtf7Djo0KzHVwy84yb+byf80WEbBCGaNu37Rktlz\ndYOFH4MM9xRKWSswUdCTDnr1pxj0QGst2nQjzM7GaNImN7dpRFd+kFz5kc3S\nYsUJ8pKNFSHk9Jy/cFAGep5Wq4hK3gTEKa/Xgy7sXEGFJNF65dFqBWPR023P\n/JXodNFPQAFH0anLMWz2YNDb8q9Ow4QBkEcWqwwvtknnU9lBpddl2e5FGh2I\nsLVmpk3FgGfhcPiV49c67NVSAqfKy20dHXzyaFetm4RguCIRR81m66DRTAdu\nZyCGOWv6leCh/wXiYBgZn2k4jzkkmkC121bS7g5ulG8ymHDwQnj8cBl8j8vl\nV+u+\r\n=6t2k\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"bdaa964059c45c8189297f37b0437c6a2356de31","scripts":{"tsc":"tsc","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","test:unit":"jest","prettier:write":"npm run prettier -- --write","test:end-to-end":"jest --config=test/jest.config.js","test:end-to-end:accept":"jest --config=test/jest.config.js --globals=\"{\\\"acceptTestChanges\\\": true }\""},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/JoshuaKGoldberg/tslint-to-eslint.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"2.4.2","tslint":"^5.18.0","commander":"2.20.0","typescript":"^3.5.3"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","husky":"3.0.0","eslint":"6.0.1","prettier":"1.18.2","babel-jest":"24.8.0","strip-ansi":"5.2.0","@babel/core":"7.5.4","@types/jest":"24.0.15","@types/node":"12.6.3","lint-staged":"9.2.0","@babel/preset-env":"7.5.4","eslint-config-airbnb":"17.1.1","eslint-plugin-import":"2.18.0","eslint-config-prettier":"6.0.0","@babel/preset-typescript":"7.3.3","@typescript-eslint/parser":"1.12.0","eslint-config-airbnb-base":"13.2.0","@typescript-eslint/eslint-plugin":"1.12.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.2.0_1563297744179_0.9141856917096245","host":"s3://npm-registry-packages"}},"0.2.1":{"name":"tslint-to-eslint-config","version":"0.2.1","keywords":["eslint","tslint","lint","configuration"],"author":{"name":"Josh Goldberg","email":"me@joshuakgoldberg.com"},"license":"MIT","_id":"tslint-to-eslint-config@0.2.1","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"0d79dcc8954a076085dab31de85f5308f1ddb85f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.2.1.tgz","fileCount":222,"integrity":"sha512-89PD/x2HEoSgZc5FAgZW00oJvxmS4aeJudC5wQOL0UNag0v1skLb+vXJziNdYh8iOcWWzfKBAQREVEm6MWdiDw==","signatures":[{"sig":"MEUCIQCduC6+W3oJbwqZBFuslscwRUEIZZNcFZCcjGEh4sX35wIgAeYRGhhgr/JegrhNZDoHDyJQLTPird6W4CAEZeF+GJQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140496,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdM5AJCRA9TVsSAnZWagAAd3wP/0e+0jy5C1BWa7C5Ofv0\nWVla1BC0E2XsKnnx5RRbTmcS4/spm9XdwjkKvd39fsuRJ+j/Xe/aYlutqXNG\nD4msr7b9CMIo+5Z2VKBiTEk7OGVz2N9Mik/vgVZZfg5nXk39BfVTG7hi7vCf\ne12iM1uvZGhZlSY1Rci5pM6aHNggUNUa3XbvJrFuKzRwW2htTLEGHUj0kV4+\n8DLWTUggv2D5moFCCWypLsqP4L0B/5qmEhukWT9hCm7uJD2vI1nLuVzYq1WK\n/p2+77ruYHWDVzqvULYjyL9g6fAzM+MW9fOk1dnR+S3HJMD/1KLbCC4W2Ncx\nDc0w/bSk0BEZWRNesisGpVrh0b9gPJtGyuzvuWNkznUUDb+MbGt2oasup5HT\n3V/mRTddeo7zNAcjDFZ30sgZy47Z6W+jM9RWKeI4JH4joau/Qi1LEYmSzAgt\nBo7S/Fl8dF8drDDHKsKm+oZRxfENaJ4In0a3hHbZE/mRVrEl4Ufk7NG4bN3H\nRJSFaIboQqm34t0vtJgkwJc4VeotKs6f93V9FTvy58RkDoaXMFnpZceM61cc\nQmPJMfKQgWkMHncOt91cSi3K6v0vDzvGIbz11bpQYR9d9h6sHGXpAen+Dlvd\nIcbU4CMAsGU5i7FYjJidPN6Fq7xkWY+/z/KAxzvmEhJ8eY207rBhoF7jPmSx\nTEyH\r\n=WUrv\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"0c95c3f83e9ab70e77d552210f94928fce6808b3","scripts":{"tsc":"tsc","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","test:unit":"jest","prettier:write":"npm run prettier -- --write","test:end-to-end":"jest --config=test/jest.config.js","test:end-to-end:accept":"jest --config=test/jest.config.js --globals=\"{\\\"acceptTestChanges\\\": true }\""},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/JoshuaKGoldberg/tslint-to-eslint.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.6.0","dependencies":{"chalk":"2.4.2","tslint":"5.18.0","commander":"2.20.0","typescript":"3.5.3"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","husky":"3.0.1","eslint":"6.0.1","prettier":"1.18.2","babel-jest":"24.8.0","strip-ansi":"5.2.0","@babel/core":"7.5.5","@types/jest":"24.0.15","@types/node":"12.6.8","lint-staged":"9.2.0","@babel/preset-env":"7.5.5","eslint-config-airbnb":"17.1.1","eslint-plugin-import":"2.18.2","eslint-config-prettier":"6.0.0","@babel/preset-typescript":"7.3.3","@typescript-eslint/parser":"1.12.0","eslint-config-airbnb-base":"13.2.0","@typescript-eslint/eslint-plugin":"1.12.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.2.1_1563660296449_0.3114337301595478","host":"s3://npm-registry-packages"}},"0.2.2":{"name":"tslint-to-eslint-config","version":"0.2.2","keywords":["eslint","tslint","lint","configuration"],"author":{"name":"Josh Goldberg","email":"me@joshuakgoldberg.com"},"license":"MIT","_id":"tslint-to-eslint-config@0.2.2","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/JoshuaKGoldberg/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"219d7783b88719836409a93d4de358dbbf912511","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.2.2.tgz","fileCount":222,"integrity":"sha512-wXvIYPOMu8+bC+0OG3qxI/FN7ZaGexXNhOoqQ+PI27q0eAO9ksZnDj21qGXH8H96xDDaXo1iVJqEClVS2gqMnw==","signatures":[{"sig":"MEYCIQDs7sbtBPsecgl3xB2S8zAXMW2aCHvp/ds/2QJy/Q0fsQIhAMZK2SYCKR5v8HKaTuZ0I7vagpJ4DZYXfQQjgr4pSgIJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140675,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdM5baCRA9TVsSAnZWagAAs7cP/0Sq9NzaKR9xfgZ4ezjd\nxzkWgLihhmblu6F3NsSB0mKFgCyCYdBNms1P+G6HQSDvpucsONWieyhg645W\n7t32JZTvVCGE6vDDzFRSz3YXcWDPV3wMw+DaIzRPPFNllqXW5OOaBIbu+Jlp\nKkThiXjbO+AWY9ECd1Wkq0xYKDaTUddn/jMGpbisOG4dnGrQXTT9tc+uEd5g\nEyENblKtGl8MnjJoaiPsuv+cXyWsS60141ICOBRmQVYKQQOoWz6on2ONgavQ\nWfRi4u90K42egf1a8Q3LlZDbtEWTksK96lggZqbfrFmuKwc6eGvsnSQ1o16V\npGOCm5TXtCCh9vlxquOx4G3JDphBZjp6k/QR/Sdk4FZQsLQKk7Md7xuaf+lg\nH1yng7vZf9FrN7LFHwwtICvIBz7gG4Q0UlLVFAHq8LvBrxm5vRF/TgNOeoy7\naANbl7b/iuT3lAOjPIEq82ffRYCEu8jAWN0kj4Lk7O1iE1piElinAFHHlQ4A\nwRNe3utrxJUAup/rbFN7g3J74mVb2JA3fEg48bxwu38FZY68d7rzJTZjBKia\n+Xp+lcnD7gfM3iFjxfexA9JRwWinq5KmybSlEnNy2GqUxitEc9yprOzWsOvR\n9KbBaLHS6NbnqQH/EF5ziYO3dRM5gYSksiLy0MdeUH6dtr6rEE8FKQUA7Jft\n2//K\r\n=N9vO\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"abd6440f5054be7de7acbf4181d37e01fcff01d4","scripts":{"tsc":"tsc","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","test:unit":"jest","prettier:write":"npm run prettier -- --write","test:end-to-end":"jest --config=test/jest.config.js","test:end-to-end:accept":"jest --config=test/jest.config.js --globals=\"{\\\"acceptTestChanges\\\": true }\""},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/JoshuaKGoldberg/tslint-to-eslint.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.6.0","dependencies":{"chalk":"2.4.2","tslint":"5.18.0","commander":"2.20.0","typescript":"3.5.3"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","husky":"3.0.1","eslint":"6.0.1","prettier":"1.18.2","babel-jest":"24.8.0","strip-ansi":"5.2.0","@babel/core":"7.5.5","@types/jest":"24.0.15","@types/node":"12.6.8","lint-staged":"9.2.0","@babel/preset-env":"7.5.5","eslint-config-airbnb":"17.1.1","eslint-plugin-import":"2.18.2","eslint-config-prettier":"6.0.0","@babel/preset-typescript":"7.3.3","@typescript-eslint/parser":"1.12.0","eslint-config-airbnb-base":"13.2.0","@typescript-eslint/eslint-plugin":"1.12.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.2.2_1563662041359_0.9848628812255911","host":"s3://npm-registry-packages"}},"0.2.3":{"name":"tslint-to-eslint-config","version":"0.2.3","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@0.2.3","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"190c01281b110ff5a331fe003a74dc2325baf7ae","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.2.3.tgz","fileCount":275,"integrity":"sha512-WhuAEWdrNaqCBr3Hx4YjNBjia0FZm7YcJZYVGNSkEJ0W/yX1smijhJ0LlSL4u4Xd1fpB95m83tvGXCmtS/0yDQ==","signatures":[{"sig":"MEUCIHGE8Pr8ZqrqdwOfOGzD4XAw9PcYP4HvRtiXqbfR3D/CAiEA59+RYxb+PTkif/JNrOSv5MS7IzqH+x+8ykVGgk4b1wc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":180287,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSXbQCRA9TVsSAnZWagAAdiIP/2hm1KzdLAEyvt3Ec2Rd\nUKFA5xcScKyA3eWCgsMyzEJBLWzeZNjOuAASjbhisvJJM5FMMubPHs5iCViy\nhgKee97mIaS5vh8mB3poaDGOf3Amh/KuGg0rcJT16VIqoG5vHIyK9or99ecD\nx65/akVuJ/J3dTtQkf5uIEcCy9JySecxGc9BJBzLQ6iQrxZeeJokLgwW7ULI\nOIGtmpykSvN4lzENVpoJgAV/Oo8yNcPBZM65R5jHbkGkv0o6xLa1LQHsRGDa\nhZ+UNYLmNEc8icnN7hJewkzczMl9lR4ReZV0J5y+T8iExnii/X8AFTNW8OjP\n7UKJB5z1jM1ofUyVJKNE0Gv4dEToevUjTl0fNNzhRTJ6pQCZwCtiLygLjXUg\nQA5l1qV42Q2vnIm9xPdcFj+3Q55KcCBxT7UZCDT2w0/TdskFDDW1tIe8x8TE\ndVpcFaONs7r6Qn9eGdwKHvnlYw1+jyb2vIrnRtcvzmHhEaTEOKuzswcA5XaF\n9oX+u0xlhdjxP4fd+FBTL4+amb1qGlpbxOHc0sslOucPGaZWj7xUsN3vvO8S\n0VGZkjQG22NBeoRljzNwXHkFxOetkzNgMdMnsXsmUJCZKclhhLOsU/rp3PbS\nj9Ow1FjFjWpSZbsl57dTvY+WIsSGxKYJhLNdEYjtxmFsyjC1whjwftyEanat\nVXME\r\n=VUZp\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"29b1e1fc09b91a8209573d5579cbbeddacfaf12d","scripts":{"tsc":"tsc","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","test:unit":"jest","prettier:write":"npm run prettier -- --write","test:end-to-end":"jest --config=test/jest.config.js --runInBand","test:end-to-end:accept":"jest --config=test/jest.config.js --globals=\"{\\\"acceptTestChanges\\\": true }\"  --runInBand"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"2.4.2","tslint":"5.18.0","commander":"2.20.0","typescript":"3.5.3"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","husky":"3.0.1","eslint":"6.0.1","prettier":"1.18.2","babel-jest":"24.8.0","strip-ansi":"5.2.0","@babel/core":"7.5.5","@types/jest":"24.0.15","@types/node":"12.6.8","lint-staged":"9.2.0","@babel/preset-env":"7.5.5","eslint-config-airbnb":"17.1.1","eslint-plugin-import":"2.18.2","eslint-config-prettier":"6.0.0","@babel/preset-typescript":"7.3.3","@typescript-eslint/parser":"1.12.0","eslint-config-airbnb-base":"13.2.0","@typescript-eslint/eslint-plugin":"1.12.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.2.3_1565095631312_0.057056850359448186","host":"s3://npm-registry-packages"}},"0.2.4":{"name":"tslint-to-eslint-config","version":"0.2.4","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@0.2.4","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"b978d3f5a07f882b65d88dc8c656c645aa6118cc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.2.4.tgz","fileCount":275,"integrity":"sha512-Pflp9eFds75t08Q96HESsJ+SNCK/5Wtms1D7yZC/Dzz3GOvr94XdKq0UbXHjLkoCbuu8EoU7tXwu4dZN0HBbEA==","signatures":[{"sig":"MEUCIQDl/Nvs7htCj5dLp5ebTJFpO66faH8hTJBiMuF09tGydQIgWdbC9vxmvsO2oHXHTkwrLOAy48syo6edEX+7z84xCvY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":180308,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdVAVtCRA9TVsSAnZWagAALZgQAIEw2Ub+UJKYIojdkf9z\nNMJWwjjWnufmjSznwoqAvVqS1YSxcrzp/XkVHEyN6onsLkkiyvkjCrLw4t7S\nQyTwdn20iPOy8DCUl5/1HkoPQ2kjKWGthjuSssXkfeU8/3fD0c2arPG19uhj\neOTeilrYH5H82/sWardY3ykk0ceKLUvDAePNh2vbjVWytpO/mYmRdn5i23hM\nRFbEGpsdAOdJeRZ+4hH1XIaJ1l5Ac6NtDoXFqAIFf0hk+wtNGmnTzSMcyw0O\nhrVysId2WaFavN1wGlG5KhdZpSUiFMAWct+2bJlGyLzverMT8awqU6VodSSS\n1KQl+TeIS0UVFdu0dw/ry4prfqM3NFK6rX3aH91JZkm4/DdmMBjtfRK6WsEn\nngPHNpfkmNbSCmcbTva+Wv6YGsUQ4GQoOT0Kujyuq4MsZQPn8wAa4FxzoE57\nB5QMfylRwhwOETlNDqCwlecb9pWpaGVTA7/+UzyPHFcaaGW3BlntncsIC460\nqJxWtmM4t48NGmRO7fbBPdWvgAEDjjOYMWd7UHPA/h4emNdZ4sl0z9t3t8XA\nmZ0TKVc8DoOGOHdnsaVnUUeRgm3TwEGM0WFQFH9gIQiNaO05woMkLsOYS4gv\nXxon/Yj1XlR/AzyMOWlN7SGJMeGWgAEpnM9FKIZgn2NjUytY9oLHbAsZB2Dv\nneQt\r\n=CPdJ\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"861ac754d686d4b3aab96996726c6c08093121fa","scripts":{"tsc":"tsc","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","test:unit":"jest","prettier:write":"npm run prettier -- --write","test:end-to-end":"jest --config=test/jest.config.js --runInBand","test:end-to-end:accept":"jest --config=test/jest.config.js --globals=\"{\\\"acceptTestChanges\\\": true }\"  --runInBand"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"2.4.2","tslint":"5.18.0","commander":"2.20.0","typescript":"3.5.3"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","husky":"3.0.1","eslint":"6.0.1","prettier":"1.18.2","babel-jest":"24.8.0","strip-ansi":"5.2.0","@babel/core":"7.5.5","@types/jest":"24.0.15","@types/node":"12.6.8","lint-staged":"9.2.0","@babel/preset-env":"7.5.5","eslint-config-airbnb":"17.1.1","eslint-plugin-import":"2.18.2","eslint-config-prettier":"6.0.0","@babel/preset-typescript":"7.3.3","@typescript-eslint/parser":"1.12.0","eslint-config-airbnb-base":"13.2.0","@typescript-eslint/eslint-plugin":"1.12.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.2.4_1565787500649_0.9658440759567164","host":"s3://npm-registry-packages"}},"0.2.5":{"name":"tslint-to-eslint-config","version":"0.2.5","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@0.2.5","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"5065283f7bc71076cff252b2e0ce25e51e94d689","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.2.5.tgz","fileCount":278,"integrity":"sha512-a1fNRtKkcsOIQdyOpMmRyf+99pzYqLTx9ItI4qNv50wUNqPmuDrM+W2sfZJYjckkZBZAzcM76JPL2w6vC2YRvw==","signatures":[{"sig":"MEYCIQCdXalhtERyHcrr+vYixLcQn3sZskGqWkLbcBTesKnQKgIhALYlsxZ0n91T/GbO7JL/6akHCfbKl3IW6Fz+ZoMBCYXS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":181712,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZR2BCRA9TVsSAnZWagAAM18P+gJ71rpS2C/nSTpRohf+\n1e+ZGeUPlWlsBOlTjVr+8BkTuVjS4q71VDT6fDDBZ9bxY4ZleaHeC7LDuYLB\neKtS6/hS9PijLsBlp91FUs0eAu523AG+I+f81DndvpotzKFLmINKCWkp2iy1\nYUOGE246CnpNLWtLi5wkVV+hOMgwjzNKFVB3e579ieEhKBor8Hxf+no0WmND\nggkV+k1mMdOl6qX02wmZiMQzyVR2loATPpEOg636lFo3XyduiUtjpH7bO0en\nmLKll7AJ5+G/sBEHeG5t9Pcrt3906Kv2+hEJv+0qwccP4BvKqaYhUk3KjlPf\ncmLbM8KAJ7ce6h08C9nTIaluu6dWtT3geMoTMHDO8EW1hePWAnFotkfGwmks\nNhfFqNUubnSkhEFmoKo6nAo19nGA2aMR0+rt/TfsbPIalJYaQ3/nKqeGe+9o\nJ1MozIRVy5SyuFMjKCBeTBCZyaNePLO9eDwZqeaod9j5EXpM5y70QegHoe1L\n3EeAEWOT9NjDl14JkQNTj3gkJLNfWY56HelK5+irV3Pqxy2BQl9FYiflkNFr\nB4zUbVVkq7uW6HNxdKRJngJ04EqC0C+6T8O+H05mWiQm/R+HSNUwBWC0HOF9\nvjGdmm6jLb4cePRwki+EorbWP1d+0d5r4y/1rEJUClvl9/o/lWJ8+Sfh90lv\n3Wn7\r\n=TvRl\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"a6bff63b4ba05f1f217d5df7163c38206ea8bda0","scripts":{"tsc":"tsc","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","test:unit":"jest","prettier:write":"npm run prettier -- --write","test:end-to-end":"jest --config=test/jest.config.js --runInBand","test:end-to-end:accept":"jest --config=test/jest.config.js --globals=\"{\\\"acceptTestChanges\\\": true }\"  --runInBand"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"2.4.2","tslint":"5.18.0","commander":"2.20.0","typescript":"3.5.3"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","husky":"3.0.1","eslint":"6.0.1","prettier":"1.18.2","babel-jest":"24.8.0","strip-ansi":"5.2.0","@babel/core":"7.5.5","@types/jest":"24.0.15","@types/node":"12.6.8","lint-staged":"9.2.0","@babel/preset-env":"7.5.5","eslint-config-airbnb":"17.1.1","eslint-plugin-import":"2.18.2","eslint-config-prettier":"6.0.0","@babel/preset-typescript":"7.3.3","@typescript-eslint/parser":"1.12.0","eslint-config-airbnb-base":"13.2.0","@typescript-eslint/eslint-plugin":"1.12.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.2.5_1566907776670_0.9914776829938099","host":"s3://npm-registry-packages"}},"0.2.6":{"name":"tslint-to-eslint-config","version":"0.2.6","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@0.2.6","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"b706f25ad010e93b0445b336b6463fc9b30ca13c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.2.6.tgz","fileCount":278,"integrity":"sha512-j4m3GJwg6NgIQ8YzRfiKTQ2JxBqHJIK5w9cdKP6CJiyd4vXSPFcQL+OEbJOl7FGhbpn3goKQX/7faaynxN6VIA==","signatures":[{"sig":"MEYCIQDjcxdbF4pvaXzt/Xk5SV5iVe2ohCFlgsuDSP/aZkScIAIhAPTsuMFZldqAE2oiHEscNkx/rBifwxPV9y7DUeYxDnxy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":181723,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdgqN3CRA9TVsSAnZWagAAGaIP/0X5Dg/dG5QFS1Vtmp0B\nGciYLQNXxKlPifXe+RseqwvflK/brfvUvMZCqoP7gglpfLxQuXYNyvrKOvRr\nVr+6klQg/F33pcSVb0mnJNrs14KGbcelnBLz2DoBhKB/fLHrLuDDGIQ43X4K\nMUoT1apUJ0zXedbhLJAixUHckIhPp7E1KR2ZUtnJqyQ2Z+8LatgYjsC6nIWu\nugElmPM5A03Aa+SuamyFYtlDRZkmN0DSOOYNLdPMngKyqUbjQyKI3VvSrgum\nq86jSXAYvw5fEnVB+t5S5AreogoX9e0EqYFMU3GPP5I4akwQ8c+fsUkKFLA3\nEag0TxxBumfq52H73yyRrOviJsuDhkWC1PubZBjg44Ux642fp2NdW92LKDyC\njgcFMShlbYAab6UgEY3qhFdRzxG0VCEGoBynM8Z18TJrW1fXPxxmOclYuqed\n2INs3SxDcJ3LnvFuSU00WHU3yj3CZRKiSjJAuR/68uIILVeIvoC/LyBMxd67\nmlp042IcN3nCVUhplSmczmKmOQdXTw90UKZGEYge+opI/s9uhq87910+Xpll\n7A+UufEtx5himfiQsfRv2TcWzAuTMrpE2bmIwBNwNwKAugSpRzNf/qO0tTPm\njZVoDowJ/r4BGQVzcSOUAoLDf3o6dPwwYs2fLZ2TgWUtw6KmrNdllGDiXR0z\n7E1X\r\n=znkt\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"605b57b0488d51f11143b3b6636e48b13d5cd204","scripts":{"tsc":"tsc","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","test:unit":"jest","prettier:write":"npm run prettier -- --write","test:end-to-end":"jest --config=test/jest.config.js --runInBand","test:end-to-end:accept":"jest --config=test/jest.config.js --globals=\"{\\\"acceptTestChanges\\\": true }\"  --runInBand"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"2.4.2","tslint":"5.18.0","commander":"2.20.0","typescript":"3.5.3"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","husky":"3.0.1","eslint":"6.0.1","prettier":"1.18.2","babel-jest":"24.8.0","strip-ansi":"5.2.0","@babel/core":"7.5.5","@types/jest":"24.0.15","@types/node":"12.6.8","lint-staged":"9.2.0","@babel/preset-env":"7.5.5","eslint-config-airbnb":"17.1.1","eslint-plugin-import":"2.18.2","eslint-config-prettier":"6.0.0","@babel/preset-typescript":"7.3.3","@typescript-eslint/parser":"1.12.0","eslint-config-airbnb-base":"13.2.0","@typescript-eslint/eslint-plugin":"1.12.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.2.6_1568842615102_0.9102708768415999","host":"s3://npm-registry-packages"}},"0.2.7":{"name":"tslint-to-eslint-config","version":"0.2.7","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@0.2.7","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"b4a38b9a9fdf761ad5238b307c0214c46c002b96","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.2.7.tgz","fileCount":288,"integrity":"sha512-BLUFJK12hxfDlGj5DLMGtxOgPIp6wHCkN0lHekR9ya+bRJmZ7H4PrHaVR6YrmKN1e8ozXsqi1DN4bdMzwjAKLQ==","signatures":[{"sig":"MEUCIFKlkNhsHmvzysNcl7KupPt1FzOOXSNhoH6O00R1qnf3AiEAjo0OvgntObsoFmZoWxtOaX2Mg0y3hYnmkwPctXg3oLc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":196088,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdl99ICRA9TVsSAnZWagAAqxsP/jqS97ZUG/4lH1fnfcGC\n0BPww5Xn6zseaWW3b4kWWcvW5C9HF5UUXxp1gCuy9aKYoOLzoGzN3zwRaRo8\nZFfnE4l+n2ukArpS84grpd+A6Jg0shfObopbd+5krZvCbD/+Y+/qVgNTxA3Y\nrCjOhYxJGUNlwveV1ZODLHPuJreK/h7Jd9BankWjoKgiIqofYXOd0LTfAtl3\nC2b+QQhnkYVkzAdH7sMWcAuMIZTaWqQCpe3Z6demdqic8i/rUJ7M5lJUleLJ\nDxxdIKdd3/cMig+OtWb5xC9mUMon0W6UBiV8w271w3lOJFcqf+VftcVO4LN8\nYr7NSLpnDn/JbX8frWwnJWw/xv3aw3G4WwvQvdyQb29ibSGabrizcqI4crvZ\ni7oWR38f/QIsvZj8m8hvQmd8u2dtNT4UjWPDWZKULnzuyIzq3pWayHOgKQ5P\n4BCBEZwhSNfG1rWhpv8/DfhnXk2OEYWMytV+ZnVhadpzuZ3plxT/mcogmRKu\nWCbeuaayKcyTK7GoYVXdeX0dNx0Ie1Zi7oV9EcIn6IoZ9w2UFX/+YmFko5XN\nDbYjae1xVtgKL2R7md7FwAaj8BSA/2LXrNNGcyUcIng7V/mAu2eJYbciM+Gb\nuHrU2aXFRbAG7U+OBhRTXA+Jyoa+A/4bxFtWASMwaSQtDl5805JeAXs9y4qN\nLEfq\r\n=kKac\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"1d899c89aa83df9529bc0ba1e9eda5805823be1c","scripts":{"tsc":"tsc","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","test:unit":"jest","prettier:write":"npm run prettier -- --write","test:end-to-end":"jest --config=test/jest.config.js --runInBand","test:end-to-end:accept":"jest --config=test/jest.config.js --globals=\"{\\\"acceptTestChanges\\\": true }\"  --runInBand"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"2.4.2","tslint":"5.20.0","commander":"3.0.2","typescript":"3.6.3"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","husky":"3.0.7","eslint":"6.5.0","prettier":"1.18.2","babel-jest":"24.9.0","strip-ansi":"5.2.0","@babel/core":"7.6.2","@types/jest":"24.0.18","@types/node":"12.7.8","lint-staged":"9.4.0","@babel/preset-env":"7.6.2","eslint-config-airbnb":"18.0.1","eslint-plugin-import":"2.18.2","eslint-config-prettier":"6.3.0","@babel/preset-typescript":"7.6.0","@typescript-eslint/parser":"2.3.1","eslint-config-airbnb-base":"14.0.0","@typescript-eslint/eslint-plugin":"2.3.1"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.2.7_1570234183536_0.8226313592715764","host":"s3://npm-registry-packages"}},"0.2.8":{"name":"tslint-to-eslint-config","version":"0.2.8","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@0.2.8","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"17b855963f4b048800346601d481fe28814f6a28","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.2.8.tgz","fileCount":244,"integrity":"sha512-QAbudNJvW4X6S1RRMQVSAhLj6SWTTL0I1IzEamK3oGPm/hzTAiWz6cFRsDKZaU75gD4cwxBFZVo+W+CqTuEuGA==","signatures":[{"sig":"MEUCIHVF5qP4NUempACMpivoyN0ugLGHwQ1r/7ZTjRrtyxrkAiEAxSMoayWBVqgJei/BvUl4bgWk5YFO5EwUDVoeOxlSw1M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":163769,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdn27ECRA9TVsSAnZWagAA6RYP/0UmApXb6A3dU4GVOKDj\nrUdAJ2sdrYrfkeSvGgRif6tP6gzz2K0uOM85LyiUC+zL4+to1Jwbm5egCKXw\n3ofIV0t8nU0BLJdAjKdMzWCr1T45vVB2F/82QPz+uiEta/3m1q0Y3wQHrkAQ\nSEQhYtA9h5DwG9HBAab9Xp0buC7xkGxu5e0qUMdbwuwcoc9WIS+NWVQtlSft\nzzACQtK8+X21b/PnkhKT0LgBvYmLf8NVmphTvQFXDXzklEiMrEGZQngG3O26\nyGVKQJZ5VoUcKF+xAsuhZReewO3K/oNbz0Lf3Jy7PQitGcFYMvT4Tr4BJ/wg\nhb3gH4BO2uOz3jqYT0apUjxlWDP0LyG34S5Y1rF2G9csq6qgYcmOKWN5dlmb\n2xlA2ux5N/KBYjVAHQZfmULlj13kVehJcAb9dNF2g4YcRJvXUXi3WjpmOqYT\nqDgXAvk4vqTmG5wQILnrditbRsWev7NP9EyGnmBduCwggMhRAx1auHlaDoSR\nX1pdANV5M2uv/fjboQqnwuSNq8iFp0CnQD59YNjaNgc+fHvjEev9yfZuNamg\ncA5WJjR6+mUV0wbG1ZPGNzKEd5OBheReOtwvt93l7IwUvzxuumVLSzA4+vLn\nWPF2AKeRfX7UI30GEqTbT5LKh820yO8MeI7s0f2VWQ/HRkZhuKKcE5im+hvk\nV/aR\r\n=fuhw\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"bcfa3490c994e0a9ee1c5a8a31f11adfb35f6821","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.11.3","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.11.1","dependencies":{"chalk":"2.4.2","tslint":"5.20.0","commander":"3.0.2","typescript":"3.6.3"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","husky":"3.0.7","eslint":"6.5.1","prettier":"1.18.2","babel-jest":"24.9.0","strip-ansi":"5.2.0","@babel/core":"7.6.2","@types/jest":"24.0.18","@types/node":"12.7.8","lint-staged":"9.4.0","@babel/preset-env":"7.6.2","eslint-config-prettier":"6.4.0","@babel/preset-typescript":"7.6.0","@typescript-eslint/parser":"2.3.2","@typescript-eslint/eslint-plugin":"2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.2.8_1570729667787_0.5467325732482868","host":"s3://npm-registry-packages"}},"0.2.9":{"name":"tslint-to-eslint-config","version":"0.2.9","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@0.2.9","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"f0709e50e64ebb3822f581eca10dff92762cee41","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.2.9.tgz","fileCount":275,"integrity":"sha512-Sl2r/pJDcvqH2Mv5r119hTM2WFE1PkRNE6bqOKNupmnHyFUIfafhGs4SoeXaNs7jzluyzdVC8eGimPHfzZpmZw==","signatures":[{"sig":"MEYCIQDD9LMxeEcAgJcGcoAOmwr3hvw2SDxlGlbyKPWq/Nhz1gIhAJlc4GkaXfHVDtSvO0v5imNQyV+rcMV7GOtv6ccK4gx1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":195935,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJds6hkCRA9TVsSAnZWagAA+dkP/1RAzABGuCIwWXGGB2c6\nSvqvTYQL2mcnnFr/yNuOZ2/+kaJbDvJFy5bX37DbARo9NKMgzkD+9WKpkXNt\nwteqSc6FHS+TMAV9KfFeElQLWkwreiDYmImAs+YiQn3tNDWDotyocz4orapr\nhVFfA+4B/uWcf1rrhIqsh6+V1fwGxudcmdGrKBzTbGKhlPSng4ZoinLhw41J\nZJbUojs7OiSsSnvTqdZWVdi27+DZD5R4MMD+tg3LhuHha6fBM9ttsQ/kgu98\nI24D0bw2JQuFdtIZKOC5orOf66BkEyuwCDrq80vdkdYdiZBqoRo1bGRpA5wG\nxrv3WOQW89QkhFz/T+fI5T6/PMOrEDWwoK1zlXnjw/lAFr+gkC2RYm+6TeDz\nLc+v/j4ZKsoJGdX+4BQMqkm4JzCD7qTlQ8tOYD5r+R0a0JEDqoQpmunYqQtb\nAUAjcKGIsSdQOwWF6dFEcQJLTUtVLf4Y1CENlOy1eoUPnOQb7acfyk4LrcRg\n7qRXa/j1HMayaZcRlvlQENN6AAfJeyj15q+jWNRVUoPI9tcSa4wuvNdWNbcx\n0FSSZKcagt4VvaKRPqHmLf1EaT1a1dFCPZ2ag0FCzQIk5o8ogNMC1A+4nQ9c\nSA3Rl1srZ7x6y1WUesYln0rMwQktfA4WZabj8anbvlQYe2tPTroG/Y9xeqw4\nNlKq\r\n=eFQF\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"35ebbe9509f51890b774b8a13f978ec803f60329","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"2.4.2","tslint":"5.20.0","commander":"3.0.2","typescript":"3.6.3","strip-json-comments":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","husky":"3.0.7","eslint":"6.5.1","prettier":"1.18.2","babel-jest":"24.9.0","strip-ansi":"5.2.0","@babel/core":"7.6.2","@types/jest":"24.0.18","@types/node":"12.7.8","lint-staged":"9.4.0","@babel/preset-env":"7.6.2","eslint-config-prettier":"6.4.0","@babel/preset-typescript":"7.6.0","@typescript-eslint/parser":"2.3.2","@typescript-eslint/eslint-plugin":"2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.2.9_1572055139706_0.6903838703260279","host":"s3://npm-registry-packages"}},"0.2.10":{"name":"tslint-to-eslint-config","version":"0.2.10","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@0.2.10","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"418f080318ff38465003b314f58553b07138620b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.2.10.tgz","fileCount":257,"integrity":"sha512-ljOle7D9UXXA+DbyvFjES0GVpQfBjgKYnqcKv2Xd6Fv1Fbb+kaSN3nRtqEcfh16cjZqyPeOHYBjv4TMW0jGTMQ==","signatures":[{"sig":"MEQCHypuZ5OgQBq3alv3UiGlro8Xu0POPsBIZnqDMmU7t/ECIQDEpYVpEhLrsCBNDPLr87hBru7FE+Z7xY7GT0O2CahSLw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":182594,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdteQTCRA9TVsSAnZWagAA88UP/jKScvkXlg0FqfTeB4yf\nQa65r8vg0HEw+y3F0Dd4L+37Npzt7+DOrJ2miM1QMDLum11Y7XShCP5T+PGT\nND4auurHQnAD6L/6LU4d9Y539t1wxH7NTyQ8W7Na5pC/qEtCs4o7pG6TGwGD\nXgp+ayhxKO+jTIdTMBLpgbXJBawisGMmnXlCNEI8TspfYCDVrjF/QY/QApdt\nGQFdo1fubQdiAdEYcDfkfBOhUNHlccujeDpGtSDRWbO42iRKsgnOiMLnxEFq\nPSgdLr/5kyeUA1JUx1gPdA7s/1SauZntEKdNoJlImj7l2aEQi9jspD05rfTF\ne6pelLoE6pxzxM0cebqEdJ6xr1msvCzUvfMv9qjkg5MXkEK3BTzWwB1ZyhXr\nviob4PzqH9Yu6PVk3RerTa5wdGp0p0hGy3/1HfbIFaw9P6746hsM8hw0Ox40\nacPDg9AuY+OZ2pXVheRxujqgPYQ/rZwGq9sofz72lvgaMAdCqdBzzQ8Bnq2C\nh9wFGx58P9bgHXgQmU9lpcULhlR4cxQ3zrQRuXAHWOh2rsEzcv6HKsSRa5a7\nCQKcOT9/Ey8FXDeKS45zGiHbFrS7j3uua1Pz41YDOposEkmGlQqBT+WGWzxt\nMOZ2kF9l9MZROSEq3pXOLBgskXLYKDdimCf56ZtyFGt6Aff0UVyyVSavaDpR\ndJ7e\r\n=lIBV\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"13ca7fcdf5ac568908b2dab3acbb9e37c6265607","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.12.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"13.0.1","dependencies":{"chalk":"2.4.2","tslint":"5.20.0","commander":"3.0.2","typescript":"3.6.3","strip-json-comments":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","husky":"3.0.7","eslint":"6.5.1","prettier":"1.18.2","babel-jest":"24.9.0","strip-ansi":"5.2.0","@babel/core":"7.6.2","@types/jest":"24.0.18","@types/node":"12.7.8","lint-staged":"9.4.0","@babel/preset-env":"7.6.2","eslint-config-prettier":"6.4.0","@babel/preset-typescript":"7.6.0","@typescript-eslint/parser":"2.3.2","@typescript-eslint/eslint-plugin":"2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.2.10_1572201491128_0.8998569163966912","host":"s3://npm-registry-packages"}},"0.2.11":{"name":"tslint-to-eslint-config","version":"0.2.11","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@0.2.11","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"164cab83399a6d93ea83dad3cb1a1a927535688a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.2.11.tgz","fileCount":271,"integrity":"sha512-Dd/iGxleiaYWwkX2CPSEr+RTfzqffbN2fpWWipwZjz7eQhBcCRHoUWoOTFzKwfbzXMjwuHuQ1dbs9tek9vHQpg==","signatures":[{"sig":"MEQCIAkVacA4OUt0+dRwpINgvl+jkrYegjpLMiGfYuwn5Pw4AiB7Dj/RxmbCWpVIfbiiuaYGdJLkwkpZTflbm60CzXZyBA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":196579,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduMR/CRA9TVsSAnZWagAAYWEP/0399rEF5u4XH6tvzKl4\n9nJJpeY6+BrPUo5cTWY9ul4ZdgkF42Xp/eo/fdqnxTsinnDqUfuXNH2G9NNt\nWwrA/VhVbkQOPUd9aiv7X4SHCKUd5Bq7GTHYR1xpbFArfm4MIRc804BK/jbC\nydMZtaMLnAJht7QjSNCVC7nby0aX3CTxqNJZ10b7a7rzR+mDTjR72xV9aug/\nYSt/B8vKxLPOK/oPS/OBTlQrXE3p+KTQIrA+NBj8+f32z1QsJd/1zpEAnP+2\n03Hhv3Dx0LoH4HxQzsmFfTv83n5WAV8frL+Re5dlIqEZH5PJFz1RGIbCsymG\nh4fIXr7S7HwUR6mPmANw9MQeKtLXj+lIkwOO+k2fGf36eE6Yhjo3UHbQ6pqN\nS/E1yWh5Nhy7vKe7yfZiBNe6ou47rVgma9YiqPverFtrnFO/U6/Uo84QpKAG\nU0vryVfzk+395Uu0fOojNEW+ATBBINB4HnVj3LGtdSGO3eS/MGzKchv+6Wdv\nBFt4KV/8ThLbQO9WGOx0/VIr7BOEwB7GfXuK1MnGQq7++UuOuzp3x048IW00\nPUjqYOibLS69WVpCKgTzBPjwVXOd18YeefksArf6bACPbEG7s8t2bbvVfe+x\n3J3Jv0Ok2hu0jY48g4c1UpT46Ph2Tw/JTcFvUbfE7CW+O+xEASoTVPPYcgTG\nzjxi\r\n=p4ok\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"e453505ed4ee017f7cf5257da74c52f072e7e064","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"2.4.2","tslint":"5.20.0","commander":"3.0.2","typescript":"3.6.3","strip-json-comments":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","husky":"3.0.7","eslint":"6.5.1","prettier":"1.18.2","babel-jest":"24.9.0","strip-ansi":"5.2.0","@babel/core":"7.6.2","@types/jest":"24.0.18","@types/node":"12.7.8","lint-staged":"9.4.0","@babel/preset-env":"7.6.2","eslint-config-prettier":"6.4.0","@babel/preset-typescript":"7.6.0","@typescript-eslint/parser":"2.3.2","@typescript-eslint/eslint-plugin":"2.3.2"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.2.11_1572390014848_0.23613057779795366","host":"s3://npm-registry-packages"}},"0.3.0":{"name":"tslint-to-eslint-config","version":"0.3.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@0.3.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"03f781ba71e04eb60bc11ee95dbff59e72fb3df1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.3.0.tgz","fileCount":258,"integrity":"sha512-XIbSaIQpRpxYgfQCCF4h7TfPPzHlU3CJ2MYUFxjIxOn9Na0XDNhn0D8SbSFxVssXbdNXnZzsB6xuFQLoL/SpeQ==","signatures":[{"sig":"MEUCIQDTwZePFWC2eW7k5AwBrDcR9vu40MlCc6SWyGnh5mCJdAIgeadMbcXj/FhJPgiWFjLdm1JynY1znhc+Cb5kJRBRw/Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":197315,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdz1QECRA9TVsSAnZWagAAE98P/1TnZPRv2LcRTVCg6e9v\nd0+qKXw2zgVljZT9BgOFydwxTUEYhHeNueodtBhn7ONIqYUiYCpU8sUSqPrm\nYT1ryejGgJbL9El3PaKo+Zri89kuMpJA8sm/GpF0osfFZBFPoRRMugu9x3bt\nW83TRORra7dCJQYWVCBhjq3DFnu/QzXkDRNWPokQNHpY8/2jHV9oiEgq++K0\nGaOC7lfzv/ZeIrzEXakWSgDjIEWFaAg02cjvz9KsluMjjXAe7ZV9Y2NWJJRX\nOXYA/Xrp0S8lcBhpSrHYfJcTDmh9Wz/+mr9cOXbX7dEivdQSbBPDjYh/wPb6\ntG5kN1M1VyByQ5/W5WjejeVZRFZ8/oThgt+OICz/cUb9I9YstefBfrPRomC+\nZqTc95WOzXor8Qy6jL4b8RGOwwEMQChXkXYWcGNQB5QzXziW6unPj8DMHUSI\nYdj6Yh22po/sBYI4LsICFvr9+JMUIUJ9sjeT2p2UDZE6LG9suGPJDolWhrDG\nijV3/Eru7i79SeGP0s4U1zYmZ+aaRUUaqk+7JSXF487BkgHGZTukYelpKWrv\nGXJ3PNZwLtVwdhT68ZYwhX558/6qcxfG4P5VCEOoKm9f7u0/+NSDfBThZVwJ\nEp25m7koGIVPgVEOwBa7GM7Sx+W95rlD/5OvqNf2w1x/pBzNzPcfWK1MaIvu\ndXvc\r\n=m/rm\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"d81d2625931a29d3e43dc27ff4f6c74ccecbf2df","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.12.1","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"13.1.0","dependencies":{"chalk":"3.0.0","tslint":"5.20.1","commander":"4.0.1","typescript":"3.7.2","strip-json-comments":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","husky":"3.0.9","eslint":"6.6.0","prettier":"1.19.1","babel-jest":"24.9.0","strip-ansi":"6.0.0","@babel/core":"7.7.2","@types/jest":"24.0.23","@types/node":"12.12.7","lint-staged":"9.4.3","@babel/preset-env":"7.7.1","eslint-config-prettier":"6.5.0","@babel/preset-typescript":"7.7.2","@typescript-eslint/parser":"2.7.0","@typescript-eslint/eslint-plugin":"2.7.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.3.0_1573868548207_0.7731147999671455","host":"s3://npm-registry-packages"}},"0.3.1":{"name":"tslint-to-eslint-config","version":"0.3.1","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@0.3.1","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"da04d946c6e3eec0acbef57561e82ab21dcba35e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.3.1.tgz","fileCount":273,"integrity":"sha512-QbTQr2V2/UsfUTjcczAqVEbb4csA+nTCSRxEzfRLFrpUDXrkmIsQLei2uCGx+zZljCt0f/TrOywD+hW67l1tAA==","signatures":[{"sig":"MEYCIQCJFDwfcQz1TwGCAC7a5o05p1qcvkvtno05PNJ9BhTDWAIhAKvuTF6wq03vXJ7FCIpcGDzKIsIeDE61NWO/OqeqhXL5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":210239,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdz/rbCRA9TVsSAnZWagAA9WIQAJgTiOEyG0N0GZBhnIGS\nvidOsfoCwvoxW2tJyLmHlOWu9n8sg7ky4+OlPCJUcOJuuEvNJAhmQ3Pos2xi\nlWuh6Vxhfo5kAAmHh4M2r9ZfTXMJ4N0YJKlbEhyOcxSEjJOo4QgsOjyAqQge\n0bhIitGzwuERMOVtgKvBO+rEyl3p0ko+VgXGmHKc32B1U6k5drIU6ThJ29z/\nnIl3wXJLLZXRPSTIaq5tbHsyhmEkRQSNNj9wKqfoO5vKQKLWGwyzQEVI3HLB\ntJG8l6TEv5Ph5byb/iDAVgNK1X5nrI0a7EB6eNLXLOwp4n0NM01c7Gy6TU9S\ngIOKQ4+j4b+YaSmLXw6xdZgX1m/vIOvp7DuJJuLjVEyCqhwm8N7HIT9TS0DF\nuNclali6jQH4uC2UfNRGB6ScJ4d5BPdTE4tgWdbYavGD3n1IJ7OT7D4+oVS1\neKwXYBTupy0w7+dV6Xg1jzKwk86dn0SPpbivGBzQYc7ejNCvBqJkCGeqPqDc\nj3RCDrgJNYi8c506EuwDuzfK6+BLC/mL0158wnz2cS4rUYuvWbpwthm1XwKT\nndDOCqTRJ48aT4Z49WaFa2lT5JGZoZ3m+NTebs/jT8ILJBJMl0bRN3JKBnEH\nTSQqHXD1jPqC6e1p3vdHKjHz5R5X6FRmYsoJmUqguiUZSJTNi4HmnIJIweXZ\n4E2X\r\n=P1QH\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"2cccfd0f744db746601c9389cd1323d043e295f0","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"3.0.0","tslint":"5.20.1","commander":"4.0.1","typescript":"3.7.2","strip-json-comments":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","husky":"3.0.9","eslint":"6.6.0","prettier":"1.19.1","babel-jest":"24.9.0","strip-ansi":"6.0.0","@babel/core":"7.7.2","@types/jest":"24.0.23","@types/node":"12.12.7","lint-staged":"9.4.3","@babel/preset-env":"7.7.1","eslint-config-prettier":"6.5.0","@babel/preset-typescript":"7.7.2","@typescript-eslint/parser":"2.7.0","@typescript-eslint/eslint-plugin":"2.7.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.3.1_1573911258588_0.30197338357527514","host":"s3://npm-registry-packages"}},"0.4.0":{"name":"tslint-to-eslint-config","version":"0.4.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@0.4.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"dfb0c842eaa39b58b167a44a59442963bb1eaaed","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.4.0.tgz","fileCount":323,"integrity":"sha512-EzbO3Hi1BgiQXQATq3xUbyuiReCY4jdmqy+n+96ekEQ3g6O9W3DMWSU9bg29XT+EpYJucPxoTsFNQze6jXoYAw==","signatures":[{"sig":"MEYCIQDnAWpX5KRA8grnZACdKHBGv3HwvWW6+bVeYlos+hVH0QIhAI0ShM1xjHrktdnjr65QJSqKdNxRAJhj6FmTttMoIQfh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":263144,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd+DGOCRA9TVsSAnZWagAA0SQP/2tue4ojVIQ59JUxq/P1\nLLjvVK1CcKqehQFFmRiNG7npgVj/KB5Wsh353PzDYJgytuepziw5CZTQlQIY\nUjAyGpP2W5jZC+zikChOjiFlZ4Wtwniz6umzS+TH6wC9LJC7UI1kIpJS5myk\npXndYWBdKFwJWu+k0N/NOfhWoT2SrotksjlRJ8rKtDm6y4z8llO6cYqo3NyM\nOwHYsRMlNZNknD9DjnMt+boKdccS9dEc9gVAezXMzG3iPlVxrtR9EBFh0+3f\nhP7kdIqaYO68sgcpH5ea3lXBJKt3MN9e56PiA592vdgTWa61io6Gi5EKumHq\n4HQ1Mw0cpk47+21j67P1Fp2V/kmhb6py5XBoNvh2fjk/1FPqmWRKspqqyBhP\n9u0mEP7onjyPR6YfM1OxRZ1pmHQ/2zrBWILM/KAvLLWEtE779UD9nBPOcdeS\nHBoIkA7fycg7ntvhjH85wt/ptscZMQFt3iNsSUgnJGtwze0isQI0+JQ/0OaJ\neU2dYDF12DumU6XK2lsAGIxASUeZzQSTwni14vWymtVgLlI0W5SGRJy3DDMF\njYxqghB4XZCEfAfAN+adB8ier47nmj5BqKK/p/rimkKQxV5pqNMG78WshoBc\nUDv/ur6yqWgurXCI0KBr9/ZPcF8qRQyvc48R1kb3ukXr0PkKjrEZMJCqdxB7\nvNtr\r\n=pAGo\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"82646aa4551818d3e2c643ed6c178040dad18e0e","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest possible ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"3.0.0","tslint":"5.20.1","commander":"4.0.1","typescript":"3.7.2","strip-json-comments":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","husky":"3.0.9","eslint":"6.6.0","prettier":"1.19.1","babel-jest":"24.9.0","strip-ansi":"6.0.0","@babel/core":"7.7.2","@types/jest":"24.0.23","@types/node":"12.12.7","lint-staged":"9.4.3","@babel/preset-env":"7.7.1","eslint-config-prettier":"6.5.0","@babel/preset-typescript":"7.7.2","@typescript-eslint/parser":"2.7.0","@typescript-eslint/eslint-plugin":"2.7.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.4.0_1576546701497_0.5486820885043724","host":"s3://npm-registry-packages"}},"0.5.0":{"name":"tslint-to-eslint-config","version":"0.5.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@0.5.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"357dc9663eca2ba3d324914856147e9ac02c87c2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.5.0.tgz","fileCount":292,"integrity":"sha512-nsznC1b5dIL1rUNLVIMccooaJuMFuxWNkTwr9C3XceaPPPmqmPyVn+XWtfNITqaypvhmg2ly70ie2wzyaduJjQ==","signatures":[{"sig":"MEYCIQCCBcJr7IeOgOVoZY86wJu0AEeOAqPtYoXVL9+fHf1VzgIhAMFOQXMglbXey0cjXI9c3QiqnabTG1eR7O1Svrb97old","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":227361,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeAkF7CRA9TVsSAnZWagAANGgP/3QdL+varzG5ExfqRM1x\nFLQ7fag/Lk6r2iAuFd/39J70OXkEqvfW8lFzTZhd6n8+7EPPX7kggTBPsIGq\n7AkRvD0s/mufFs1hTVYgPhHsaCEnEDOo/qY07xBBDDSfyaZ519kPaDs5sXDM\n0MvcvCqO6B9RF4hLgBXEM8gmclRX2k1JSN7Bzg1U2Xjfu+KYDJu7PQzZZ4kt\nkcWAGdL8YpzwunV3LIYQLQFM0+bt9sSN08Yqa0h0JiMuLI29a+YDTrycGvZE\nqLS0wgfAMjztwJ/8p9SpsANemB55Lawk20WsszAJuMaU7lWGSEg+B2jFo85T\nlEjPZr/o3k5XM6PX3bnannlJew0c6vP1iyiB8Z3isoNw3TN2eKHv1ZNuP8OA\niyZ7NJVhwK9yuYhG1Tbw7Xukk80c6V/RZAxZtPRVdiClHNHpuzR/1nDIs9eS\n5vQYK4Dwq4Ve435C8JPhM3oSV6egFyUq+R32xAJTV1uUADAmZzZ1ADOqvX0o\nbB0ONyCI6dnCmLw4zLwDjVbjCl2MKRsi1zyS9PM47F1GeTDxIIFWX/yLpCgA\nnnRQstMhCLqjMUlu3/83U17vmm94JVVMcuonJ2wuekvOOS5TgsYufO2h8kaX\nOoc6TYGeDFo+VVeuzQ/ul+p0TiP2MzYKMuNSt0FTt1a1goaidHp5M1uZ42Tg\nnVfc\r\n=iNY2\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"88b5a618d217dadcde2bbeeeed808be5704ffe27","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.13.4","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"13.5.0","dependencies":{"chalk":"3.0.0","tslint":"5.20.1","commander":"4.0.1","typescript":"3.7.4","strip-json-comments":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","husky":"3.1.0","eslint":"6.8.0","prettier":"1.19.1","babel-jest":"24.9.0","strip-ansi":"6.0.0","@babel/core":"7.7.7","@types/jest":"24.0.24","@types/node":"12.12.21","lint-staged":"9.5.0","@babel/preset-env":"7.7.7","eslint-config-prettier":"6.7.0","@babel/preset-typescript":"7.7.7","@typescript-eslint/parser":"2.12.0","@typescript-eslint/eslint-plugin":"2.12.0","@babel/plugin-proposal-optional-chaining":"^7.7.5","@babel/plugin-proposal-nullish-coalescing-operator":"^7.7.4"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.5.0_1577206138726_0.7131917699750701","host":"s3://npm-registry-packages"}},"0.5.1":{"name":"tslint-to-eslint-config","version":"0.5.1","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@0.5.1","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"012051015dda3444b585ef144d8aa5e50f6c4e05","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.5.1.tgz","fileCount":325,"integrity":"sha512-1t/PjJM+urhonfImLUh9PK3NSNUtoDoCDiIiYg+WnwaNUgEiWiGkepqgjw/49mImfzh+XYlYL/dOXqzHUEpg+A==","signatures":[{"sig":"MEQCIEzbBSacdEJ+vy5Co+T2iy59TV81K6qlwDDS3+2eZk8XAiATqQ7ELCmi1wm8gEncjXd6pR2MOf6vuHCud05Vu0v/NA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":271376,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeQJ7uCRA9TVsSAnZWagAA2CIQAJxYn3UMDz/Y03ieWEYi\nByTQipFIP5dcnVBY0fOSKtuBiQvqTN8uO3mU87Xj2BN1B9+4yfvNv9/MaDMk\n5M6ep10Zh9qR9aF+9Uf7WZA239xBesfjf6tRjkgN45J+o8Et5X6nit7aY9QU\nnAW3Kek5vmWuQNlPVSorKekkXJoWDtWWoJGJc/jEb781KrYjDm9P1aFgXZBd\nItrtRlObf8RieVetJ/mHbYP8Dl5oxr9AN3/34q9oRkdOomP+Vvi6bqkFVWdE\nsbtaIPfJdKw7HAh25ADA3R4IlpuxTiGcMXbt0KuOqAmD30/ea68rV1tkuGOa\nFctk2QYUFlu5U6Bw8h9aT+GlpvFfz16fKdDy1ISEYzn3H678/iQ9qSp+qxqi\nmpo7/PBUCkxOXPp9F6O/NM6bFzqqXTsSxVHo7Qcd5IuyxuMPrdzP17Y0nO0J\nLppe+csxGxON3vwuGWSCAAh4C8HYv/Ophl9IPl+xrpQjfkMpdfylcMbTffd2\nFsCCjWj68cJLn5clzf5lXHc44fCfjnto6YKW/P95ROWIrOh8ME/iPGFudbOa\nt3RjbpqKBSsiHD38i3BpL/qzNK16wGVkmIq7hmTaPELQElMu0oyCSeEl1fGO\nc+0Mpg0eL9+7jnW89yFGl54nBPtNt28tKeNQ1T7hjPo5Wy7FEbdFl+9Rj8L4\nTsLD\r\n=OzDQ\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"gitHead":"3be930d53539660ddd1b0f4456a5e85336f7977b","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.9.0","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write","git add"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"3.0.0","tslint":"5.20.1","commander":"4.0.1","typescript":"3.7.4","strip-json-comments":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","husky":"3.1.0","eslint":"6.8.0","prettier":"1.19.1","babel-jest":"24.9.0","strip-ansi":"6.0.0","@babel/core":"7.7.7","@types/jest":"24.0.24","@types/node":"12.12.21","lint-staged":"9.5.0","@babel/preset-env":"7.7.7","eslint-config-prettier":"6.7.0","@babel/preset-typescript":"7.7.7","@typescript-eslint/parser":"2.12.0","@typescript-eslint/eslint-plugin":"2.12.0","@babel/plugin-proposal-optional-chaining":"^7.7.5","@babel/plugin-proposal-nullish-coalescing-operator":"^7.7.4"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.5.1_1581293294464_0.34476991898768383","host":"s3://npm-registry-packages"}},"0.6.0":{"name":"tslint-to-eslint-config","version":"0.6.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@0.6.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"7323ff7c7031f19c9d95f896e5ae9cf0452a00ad","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.6.0.tgz","fileCount":333,"integrity":"sha512-Hv75V8fFVBo//zU8OxXSnPuvA0aAgdktBqNhecWXm3W5OVDGEUY9xnUFAmQNpg3jxz4uXRmzr4VuXe6DgpIHrw==","signatures":[{"sig":"MEUCIFcm3vGVCCTr02QmZ2v6bX1X3Bv2d3n9TWFQOW7r/uvJAiEAtDdrxZGvxxRE8+TqcTG5RTVi6iHqXgjHFDQwvBQ0YdY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":276122,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJenglUCRA9TVsSAnZWagAA+x4P/Rz7S9Pog3wDmtA2853a\nIsxdkr7y2JeOL42Yj+0+aN/CVSMMQouhf2vcD8LHCbJ/03eJlxpu6M4rJ9VS\nNDDxpa08XTlFh3tj4Y+6OoWmTjz1njti20TuCN1+OFndPiprmD62255XO6uE\n2TSACKKu3+/XkHDMftF8nY0qdVtQcZ8qlD0jZlApTizgMPHDUOSENGk7aJpN\nGTPpgYJNWNy+8eS7PX6kQyu3EBMlRCbEsnvXb9UGj+jiQueKyy0VMu993b4n\nwh4OyCxpouWILwUWY/Vru0664lUDa+s2sLROJaDEQGZdBPSsPTfbqGnV1cDZ\nS6Lfb+/ES7ZOZ6feW0ZZNj+PT/WC432/a2XaDsV9VOnwV+KULbsamNwzK3BH\ntx9zxrH9C/Mzdngp6J6SrslUQwxmlno0WVQNW2Hq41H2a8aOXIUKHs8Cebx4\n36TRFlV5Ch53iYbIKezpmGJyDR6puOujORXmmO/O3jSZa6mNBkgaKCvQvdsl\nrc+Fe1hjxq2AwImsNR4kifOEODGj73mKLn8pQ25fIRA1AnV4T24D8ndRG3PP\n7eP+X07IwgctaeDqnBV6b3c6sCMjq7yqd+IiFcVlBpJ0THx/B6L3lNRPaPjt\ncj1548HdfM08ZfleYlQ3ENcHe2imdgB7E7vZt6ugz7GQ/QSAoSnGnOjhKu5X\nuCsP\r\n=ZwPr\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"c906d50c49fb2718abc1d59b9ccd8d076df0c855","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.4","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"4.0.0","tslint":"6.1.1","commander":"5.0.0","typescript":"3.8.3","strip-json-comments":"3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"25.4.0","husky":"4.2.5","eslint":"6.8.0","prettier":"2.0.4","babel-jest":"25.4.0","strip-ansi":"6.0.0","@babel/core":"7.9.0","@types/jest":"25.2.1","@types/node":"12.12.21","lint-staged":"10.1.6","@babel/preset-env":"7.9.5","eslint-config-prettier":"6.10.1","@babel/preset-typescript":"7.9.0","@typescript-eslint/parser":"2.28.0","@typescript-eslint/eslint-plugin":"2.28.0","@babel/plugin-proposal-optional-chaining":"7.9.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.8.3"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.6.0_1587415380054_0.7104618666040003","host":"s3://npm-registry-packages"}},"0.7.0":{"name":"tslint-to-eslint-config","version":"0.7.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@0.7.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"00703aeeca86a776a1871563b688300692001167","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.7.0.tgz","fileCount":335,"integrity":"sha512-8Mqzh6XmePXzPIFjduq689tZl+cp4BLHQ/3OxP/u1ARBNZChsmlbJs2Rsw4nzbTeRj95HpADjcbR5JZbD+ZpGw==","signatures":[{"sig":"MEUCIQDeg8fdUOc+mTVo0HEI3KbmBvLiy+CNJtH1MmRG68XezAIgGPd64kIs0cHS5N4BWscdq7kzhL98kgpmZpSNCHyWkjg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":261274,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJepgXZCRA9TVsSAnZWagAAfVMP+wTEXe+NsbnsqHy7y+Se\nJ41Is+iFfR2LMeto3krjQbh/b1DggrC7YdxaWrVcyYYHp5gG90AzJ4ErER+U\n46Z9hiKfOEwNZlKM8klHIQ8b9qWWd/F/YU+F1A02YaFeJ+Tocxq5ckMQqmnl\nguirn7ZHwd54MFLd60pDcU7Rk8Afsa5FgrA0UwXvcE/vSCug+s5MXbQaawep\nAhfH01+z0xS0AOd4QYAOG1kH2b6zVNKEJfB5weaw589iCkFUlluplm7zahqJ\nh//kz8K9T8dE4bfyTj6W1AAPDEI9WatMr/VQGg8qDWMwknEKoN1Q7lxiEHso\n+V8pndvDlc0FDDGRDsGCRABLcwOD+Ub5Z81/Ea3+HLkA5cv8dh1oOF2N47X/\nMucNkGXzWisE9pmbZRfxVRne//0cApZc3z53JoxKFdek2cDEzkcti8HHob6K\n3Y+e/Q0OHeHwKROx/zmi5C/NqE6Yi3Ac0/22M1OWo6ZmehDCtSo3pU86Ui7m\nkU3H554gKb+rA9B5i8n0V/A8JHD27CNgA+6i8o2WWyZUfwb12AHyAuu2xfOh\nFt4tWeYBWSMU7XkhKVlpNIqXDmdIN/U12uyxCbGUQXvZ3BeEJfvVhMrFlhqT\nUFYkpImL56QwaR7DH64JR3mrRb1CswRF0WpFppFi0rVtZN69/kKpEL276Uq8\nznAS\r\n=7dM/\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"d35a7ba05bee089911c13b5f53ea0f5bbe4633b5","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.4","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"4.0.0","tslint":"6.1.1","commander":"5.1.0","typescript":"3.8.3","strip-json-comments":"3.1.0","eslint-config-prettier":"6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"25.4.0","husky":"4.2.5","eslint":"6.8.0","prettier":"2.0.5","babel-jest":"25.4.0","strip-ansi":"6.0.0","@babel/core":"7.9.0","@types/jest":"25.2.1","@types/node":"12.12.21","lint-staged":"10.1.7","@babel/preset-env":"7.9.5","@babel/preset-typescript":"7.9.0","@typescript-eslint/parser":"2.29.0","@typescript-eslint/eslint-plugin":"2.29.0","@babel/plugin-proposal-optional-chaining":"7.9.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.8.3"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.7.0_1587938776347_0.9563953302389476","host":"s3://npm-registry-packages"}},"0.7.1":{"name":"tslint-to-eslint-config","version":"0.7.1","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@0.7.1","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"95984eb9c9f22c23a56ec577f973f70c341f7e2f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-0.7.1.tgz","fileCount":342,"integrity":"sha512-lpMjBJeDCLd+fs+hQ/F2UN/ypAPWS1VW/nc9tr2JKA3rQlLWzmrCjuO6EUnOrq8ATR8ZabgVMwEK8M6LFZZ5Dg==","signatures":[{"sig":"MEYCIQC/X+3ducJjVOX0dVtpaO01rVQ9nIH1rZLPAL6cLLRAUQIhAPWSUwkTTapmsf92Gl69oDBn1fGSxmjDFtgCBvSzIEzK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":265066,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJepu/2CRA9TVsSAnZWagAAQfwP/3CS8w3WTzR8RLKrBEAt\n9ll4aGVytA/We4a0LGYZYrktGjOmYxV3pTl3Pdj2nnLn1SzSe4HzcztvDAVn\nIpjlJnB1J9d7odMANth6LbrF16PQkv1Z2lW7NfPeuU3dfRJcNB931zzJOU2c\ngB2lgdUIg3wUpS7s5McRbCn6+k3Dl0CKuLBUmtGS8s+czMjJzwk9U6uF0Ouo\nPFAnDvWx9a6oj2bp6MtS4Te14Cjd4TleBWptmJXiGEDM+NvF4GF0JRCJjepZ\nrKe4KFXyYlFZ7NJCcLxmPv7nifdwrNuKrSCQDDcGGcmj40lXVZujqXYHh6sV\nIPXMlpVFvunhTNXgHLt1Us3BEI/EC1qKZrMZBpQQOHk1bD7NZjrZOpMGG0aT\n8BMk7uRzwIfj5YTqHV/i7ONhjVJgQ9mjFfRgC8qs51aUP1ZYGTK72XcZzLmu\nPtU8F36pP/G83BAZCnNcGUYZGZNJZ+fpTzQeAVLRH58rm6AMbWm/x/ylpO5r\nOdxo6F6w6896+UbA7lKkehpA5a1UlpLx2VvwdUnE+Qewd43XNZ5kq9Cdkr/k\nG6XIy82C7K00Ne5hhI9j7tn8R7i3NgreaL6J09DQyK5WD5Fe/0yKPH0/tB5s\neN15t6yKKtpDujiaraXfzXRwPI6u265bB3vJbl3OyJH+3R3ZxoI8t0pyT+pU\nNM4e\r\n=8lnL\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"3c6fdb639044704f1c85aa335ad19ad406d78192","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.4","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"12.0.0","dependencies":{"chalk":"4.0.0","tslint":"6.1.2","commander":"5.1.0","typescript":"3.8.3","strip-json-comments":"3.1.0","eslint-config-prettier":"6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"25.4.0","husky":"4.2.5","eslint":"6.8.0","prettier":"2.0.5","babel-jest":"25.4.0","strip-ansi":"6.0.0","@babel/core":"7.9.0","@types/jest":"25.2.1","@types/node":"12.12.21","lint-staged":"10.1.7","@babel/preset-env":"7.9.5","@babel/preset-typescript":"7.9.0","@typescript-eslint/parser":"2.29.0","@typescript-eslint/eslint-plugin":"2.29.0","@babel/plugin-proposal-optional-chaining":"7.9.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.8.3"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_0.7.1_1587998709878_0.2813809424768019","host":"s3://npm-registry-packages"}},"1.0.0-beta":{"name":"tslint-to-eslint-config","version":"1.0.0-beta","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@1.0.0-beta","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"59e09e9e29fb05d17679d3d079a9104ba88008aa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-1.0.0-beta.tgz","fileCount":342,"integrity":"sha512-q73jbZ2awXJt6piwv3TVbCyWR7zejKU8+jmqwlFfGM80WlqA4jq5ZOYxUwfYKTMe8wLPtaP3yRqoR92loksxRg==","signatures":[{"sig":"MEQCIGrfgbgsqNoodoapRhb27wMqACI1em+UvnTix4IOfEkoAiBWSfRr3uANCScylHfSep/vLT9Jk+7pTQmgER6zX3WIMA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":267331,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJepvA3CRA9TVsSAnZWagAAiR4P/icqi5jlsaki2jk+zRbf\nCZ/kNvTHMfCYpDTt8Si/ytE0ihhRkWc4OUcuIIb4pnzzWJdrH4wgcqulSZJX\nUME8PKA9gYMcfif0FziUq61ypGiuYvOqYloLadTR5jlHZ5GrJbGR53Ed14+T\npzsJ7RKZiEyH2UaTzWbZYYLhlc6jK8LQF9cvALIye9re2nOZv2TBroEUOCh6\nJfchQlhd3v6ciQjm6oLiqQSyf0LlY3lCXmMEEmYra3pKTc7xNw/UCq5DWkNf\nU0OZEZclY2cS29AhX6mW4z2KHetdc9Eoy9sdlwZUdaElK+Yr+omIB1K7Zdep\ndSQWosso8kuWt2YqeZd/b10PZhIOaXjvdry2yeMcxcVEsFN7KEBWDsd77pet\n7eZXdkaFC0BeGA9i3sr3is2pl2QxWuZVreAwHNZPeuiA3KIEmM5VbvRHcMpe\nsQFLghFnwhjdHmg4t8Qtcfp4mH5QK/FQ9bjza9X5Zie0BbC2JqwY7IUy3Pb5\nais7Y/X/DBMl6QmgYUTFgFrNI/QXnORMow3A74muDbmf4w0k4Y7mxOr187dz\ncKE+6lR6cMzISeIVpdqoC5THVm8J9Z8AVgDBOBoBUlmNb5vf6tF0dn/UvI5t\nEXt+YbbmGVYgpi2uyHwfnF+cTREBPyXoJjjED791bRDrqvD8Uq9fjCUQkAFP\n15MK\r\n=veMN\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"064f639eb7c52ec1dcb68543766e61d09ddf694a","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.4","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"12.0.0","dependencies":{"glob":"7.1.6","chalk":"4.0.0","tslint":"6.1.2","commander":"5.1.0","typescript":"3.8.3","strip-json-comments":"3.1.0","eslint-config-prettier":"6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"25.4.0","husky":"4.2.5","eslint":"6.8.0","prettier":"2.0.5","babel-jest":"25.4.0","strip-ansi":"6.0.0","@babel/core":"7.9.0","@types/glob":"^7.1.1","@types/jest":"25.2.1","@types/node":"12.12.21","lint-staged":"10.1.7","@babel/preset-env":"7.9.5","@babel/preset-typescript":"7.9.0","@typescript-eslint/parser":"2.29.0","@typescript-eslint/eslint-plugin":"2.29.0","@babel/plugin-proposal-optional-chaining":"7.9.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.8.3"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_1.0.0-beta_1587998775449_0.3953737470163128","host":"s3://npm-registry-packages"}},"1.0.0-beta1":{"name":"tslint-to-eslint-config","version":"1.0.0-beta1","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@1.0.0-beta1","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"9242d81be5f092da5138cceee62d4cad151ac2bf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-1.0.0-beta1.tgz","fileCount":401,"integrity":"sha512-lU8Mt9NQVdU8My3qdxlTrnZC89jomFF/M0lHEyIOLFzhj5J3q0w3jLjnI8r1kkd04uBGcEqchwkytMe/lI8Crg==","signatures":[{"sig":"MEUCIQDYycYvGuek1fIfUcAgb64uDvC4PfkHelByByGccPJ13QIgRe5gHpI7to3e6zwVRV2Uk+Q7ywCeaZa0Si3FFUu3l20=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":299281,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJetzXhCRA9TVsSAnZWagAAE0wQAIxDJcBbBjfNpHggAVdg\ndbeOyt9htWLMGL/+dvbLkuO43nzH/ajyvCTMAnS+DlGBVdQmqk/JDt28jPdT\nMWuPmZ+eagAFw0dxJbWjJhLMQ51DWAjojZ9Ek0mgvsuycwU+sDkd/Ru2nERu\nTgQFsdCZWu2N4BQlDVb3wCltI3cmD9knWF2Tta/hqmiXlnia5roNME4GmKoG\nVgwBhWlXrecFZJ3ZjWyOZWlJ/V2hjZVSiN2pSvNFLfybGUOqxHz8iCqlw+Wb\nzc1RpSpA3799Jh48ZbT4bwIUXNtnwKFSOPPAbeJKkLJfK2C/fy86QRodH/rt\nRrDJ0vJUJhC3etfE/WzvrT+zvDhrvTQO5OY+sU4mT6KRVXWHxDghA3dwDKB1\nRYTIi7pLjt9aUv6hmaiQZPOqBflm1U8LZyJ58TUJFkXAuGOklxyvxJR+OzuD\n/oguLNoqtHg/MNz5jOzpQ08/1SYl4wKy5kI6YDYtvBi01rQIOHK4C6KbuAx/\nszmZA7bL3CxBVOZb6Fdl7aWX93OhhmMi9kUEmr31zH2VkRZ6j5MmM+5SgZ+P\nDi2IkUF9TrkUEfP4QCsu3+wiuAnVcLr7R3VPPIaCpLmKCdqzf01p/eqE7kan\nt0mXKI+waP2tABI9xqejDhGQjBX02lTD87PvVquVuu7ohjoK21c/6gN52oZF\nf/DE\r\n=kfCK\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"61bbffb21b9a2f9cb0c306eb914ffda8f4c2ef3a","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.4","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"12.0.0","dependencies":{"glob":"7.1.6","chalk":"4.0.0","tslint":"6.1.2","commander":"5.1.0","typescript":"3.8.3","strip-json-comments":"3.1.0","eslint-config-prettier":"6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.0.1","husky":"4.2.5","eslint":"7.0.0","prettier":"2.0.5","babel-jest":"26.0.1","strip-ansi":"6.0.0","@babel/core":"7.9.6","@types/glob":"7.1.1","@types/jest":"25.2.1","@types/node":"12.12.21","lint-staged":"10.2.2","@babel/preset-env":"7.9.6","@babel/preset-typescript":"7.9.0","@typescript-eslint/parser":"2.31.0","@typescript-eslint/eslint-plugin":"2.31.0","@babel/plugin-proposal-optional-chaining":"7.9.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.8.3"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_1.0.0-beta1_1589065184759_0.6747193257104793","host":"s3://npm-registry-packages"}},"1.0.0-beta2":{"name":"tslint-to-eslint-config","version":"1.0.0-beta2","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@1.0.0-beta2","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"540bf4cd734683f82f3eb472f69b92470af53262","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-1.0.0-beta2.tgz","fileCount":465,"integrity":"sha512-sR5WbuJBpvtdFS9ECaa7lNa/RoxmrhASDm5P8GnRB8KRXZjeal7R1FvAWhl1/sRYNFxa9JI0nsftGsyN5fGXrQ==","signatures":[{"sig":"MEUCIBkvNpPFIZar3K2z0oElRl40HjXQ9XCwxeJN3U9cXg86AiEA8XJ1vA9vAKYj0b2oq86I0unT8HunsICx2+lq/Sc7Kos=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":319206,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeuNU9CRA9TVsSAnZWagAAJ6AQAJGdqtFhnw5mzwvCkWMF\nhCvsTO4Pjw0/2/KhDaJvCvZvLCIdgQQDlGZeiGWtjyWfRwUgiNciJjiw1hlL\nDXWf/u5xZjeBzYKQpAHIPJU5GS/Dn8mb1+RPfT24pJQ1go9LVMJkVGia+BQ4\nUSehLEGwqloFSaQSYC/kpruz2eS5w4GmF86ZEasu0FSk0RqXTagrmWwWSK2m\nllI1dMNbpCcChch5kxKmFgZZbOS/wF5m+jPA6wOTq0bf506qbOAWE8hwpHX2\nQ/JZ4cHRLaL8kE1dYiLCaXdBIkldEW9C0MizUdVhwYKfY8XsIxGktiuvaRtF\nJ7OCGmMLNtKuBd0LKJsC6laf9jewuhnNOuMD3LoYrWeWdgCZAXss8iLQaP69\nKN7mlwNYtShx4u4JReqgrwc26ahEhy9wpcDAIOD8KnkQUtiy9Wm8hdaFb3f7\nTJ3dPawoMat/DmxY5awcgGYlLAcsn0m7xffPWXPYGXDDLBsigpklM6TmtmqZ\nwmZxt5ANOwugTX1dOCOdAJqz2WOI1Py43RZDgzqC98+0pi2F7imTHiBxQp+n\nsp797NQii2IoWUlJlAx6ZWHZ2DkuCeGFx2vHt8AhsQrkEcM5cZqzHsHUnLur\n3I7/vqGVpAWOLplPG1rNQ3Nnz33S0vu1MqJrpwe6tcRWxZD0/qyaqkux5ndd\na7NI\r\n=ABk3\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"077afbbb95e73f516063844e06cc377ac7ee70ad","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.4","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"12.0.0","dependencies":{"glob":"7.1.6","chalk":"4.0.0","tslint":"6.1.2","commander":"5.1.0","typescript":"3.8.3","strip-json-comments":"3.1.0","eslint-config-prettier":"6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.0.1","husky":"4.2.5","eslint":"7.0.0","prettier":"2.0.5","babel-jest":"26.0.1","strip-ansi":"6.0.0","@babel/core":"7.9.6","@types/glob":"7.1.1","@types/jest":"25.2.1","@types/node":"12.12.21","lint-staged":"10.2.2","@babel/preset-env":"7.9.6","@babel/preset-typescript":"7.9.0","@typescript-eslint/parser":"2.31.0","@typescript-eslint/eslint-plugin":"2.31.0","@babel/plugin-proposal-optional-chaining":"7.9.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.8.3"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_1.0.0-beta2_1589171517009_0.9913096923956641","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"tslint-to-eslint-config","version":"1.0.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@1.0.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"9283649f035c62acfe0f1f5bfe1cc052705c734f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-1.0.0.tgz","fileCount":397,"integrity":"sha512-BNvXP3EQX6BMcOgp5OqYWcKrYhfaW3sFjeNjf5HVQRbFTdzeJrtaBO9C4MGl5d9iVnOleaOCAyMX9MZA5SZTfQ==","signatures":[{"sig":"MEQCIAYgOvfoy0DhEPLjaxaU6E5dSMgXVRMqMk8OA5BECSpDAiBhufGjwUX8ogaCB8yALUcDK1HO71us6QwNPOmVo4UHqA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":293503,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeyZ0uCRA9TVsSAnZWagAASLAP+gLBN7LDOnKZr75b+G9W\naHI+Vl0kzAjOu7m7xDWtmqeGQVxQJbabkuuM9Cdi2a6QcEFC8r7XQGTZn7DN\n7z5vBf8djyH4jPxTjdvTG/AkeOI75ktE+WPLGxQxY20F7b5N8IVbWdPtEmkf\nQpd+Qa5R6QMypXhWAEebZVCUPXZA4SoCKzJOjKi05uSgp8HaEnWAY6fdDOH3\nV7TlMAS1tMh4/o6n3tQ9vKOFhUAxgvDm1zPmuSRkTxtnIhMYPv2GSPDQYcx0\nDZWVUPMYlu5KpFe2HpvyxceMmwn2/fTOlHJ43C9PQyyAC/BoaZv8if/Bnevw\nVQkGDyhelzMkclzvq5IQBP45Jay+tSoqd6hzXZ4zzIe6e5EssZAKZpd/i7YN\nBSo0pcxyN00ZoA3uULM/P0S4jArdcw5TymJx9qTxM1f2IyJoPfIdSAYLhxbc\neuRBztgf7Otb1ORVCEke8Je5gVJEM5xYf+giIvrjcxnskdboY3nCVlbKMxHW\ncbzyfwLV+58X8H5/Zr4Ea049Rz/ZYJW2w/ca+BpvsZZeh0f442ZlEU1hzKGd\nVnSC8O0za+jPd5NnzbkBeFGirFCTQUvbFh0I/YtC/JAgsmXuwj+VqSUxEcfc\njWuLckdATtNybzqOB7D1x3sGBt6+Wi7J1V0ijIXIvCE0MvnQcIM/sG1wQrU8\n89sC\r\n=nMFM\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"1e1b11b917d36cd4aab69a64620dd64853e71887","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.5","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"14.3.0","dependencies":{"glob":"7.1.6","chalk":"4.0.0","tslint":"6.1.2","commander":"5.1.0","typescript":"3.9.3","strip-json-comments":"3.1.0","eslint-config-prettier":"6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.0.1","husky":"4.2.5","eslint":"7.1.0","prettier":"2.0.5","babel-jest":"26.0.1","strip-ansi":"6.0.0","@babel/core":"7.9.6","@types/glob":"7.1.1","@types/jest":"25.2.3","@types/node":"12.12.21","lint-staged":"10.2.6","@babel/preset-env":"7.9.6","@babel/preset-typescript":"7.9.0","@typescript-eslint/parser":"3.0.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"3.0.0","@babel/plugin-proposal-optional-chaining":"7.9.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.8.3"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_1.0.0_1590271277837_0.39499853942183405","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"tslint-to-eslint-config","version":"1.1.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@1.1.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"2097095ee3041d27e2ae27560e8da452cdf67da2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-1.1.0.tgz","fileCount":405,"integrity":"sha512-WbImTH1noAwjr7HRNxVxHUqw6B6USfUxdlNYij/KFBJXuG/bIrzLatOq/v7mtrpfJMUMpRAO0UQ1d9H5RCZxzw==","signatures":[{"sig":"MEUCIE95pt0U/MCTHzPKdfhKsM/mQUhSCQ9+y7WAUPPnJJwNAiEAqELLNt9aZiUw9WlTbqn66fggAjz0nHM1nK/jIZ5mwSM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":298001,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfINMhCRA9TVsSAnZWagAAaIcP/2xQpRIdUHJEGtCmc5Z1\n8m4HP3v1N7Cx8nkbehYkd9Y2BiKcDfxOlZvUmsRJH5zuoIpqMGJzO4p1GP5V\nPyjtb3HsT5XwN2C2NcuxE+Pp7Zr86aEehwTET1pYlnKYqlt1IHTsDvHnbJO+\nSZxBW4Tor+Px5vg1JcsV9134gS3LPU2qzs6ocGylVmhhMriFLU52Zl3e/v7z\njhmsiOtTree0h0+HSxATFzdvWxfp6TBcy0w4W47f46+A9DzkA/0A9a/d83jJ\ncDlM9cCXIJHV7emzSQ5dSJycZU+X3PGwLFnE03Vx9BusrohXiII16XAx4zeX\nDVRyC6a0SBRKT01Y+jY6qndmnTiDQPxJ1pJJqt2FAi9hxkhuek3H/PTywSYM\nqckn/E4V9wzmKfkRrhWYJceSXNWc8MVZYV8HaE860eclD9Gy7dMGz3cyKBjy\nJ3O0FOWgVS78IWzx69qwA55d+0SYWM4PfIrAkxQ+rQe32CDJFThvGe12IGcC\n5LRTuwbG5yZmw166UjLOMs2RiV+Hs248Rpop7r51NjjmSHfTf1GAUhAtKzi2\nxfJnR80O5p0cKCzGWsWktyaMmZx/ZX0iyjR8PikYuyKHmmV3kTUMPiJH8O6n\nYWp3szXW2RTQe5GuOzTZWiqmTjLHfxCeEmidNiRiQP/Ro4Lo/sJGAltPJpcZ\n2MWY\r\n=JJxj\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"899c4923ba68cbdaa768e46799a7ea7b9254f144","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.6","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"14.6.0","dependencies":{"glob":"7.1.6","chalk":"4.1.0","tslint":"6.1.2","commander":"6.0.0","typescript":"3.9.7","strip-json-comments":"3.1.1","eslint-config-prettier":"6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.1.0","husky":"4.2.5","eslint":"7.5.0","prettier":"2.0.5","babel-jest":"26.1.0","strip-ansi":"6.0.0","@babel/core":"7.10.5","@types/glob":"7.1.3","@types/jest":"26.0.7","@types/node":"12.12.21","lint-staged":"10.2.11","@babel/preset-env":"7.10.4","@babel/preset-typescript":"7.10.4","@typescript-eslint/parser":"3.7.1","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"3.7.1","@babel/plugin-proposal-optional-chaining":"7.10.4","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_1.1.0_1595986720479_0.7840201141216774","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"tslint-to-eslint-config","version":"1.2.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@1.2.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"3c612fe946d8fbd0ffb13af81c56a2d59af33a28","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-1.2.0.tgz","fileCount":409,"integrity":"sha512-CNO3fwOfLw/oF8uhajEWI9szsvEQl5tV3N4RsJ3MLyqfoYS4aRj4Zg5VGd6bGrUsoW4u+B96p6vgrgOmbbG2MA==","signatures":[{"sig":"MEUCIQCWliJ8KXrRn6wEaveQFwxfiD3BF5haXzDHDUc9fqqDjgIgYv3ueJK7l10d6S1LSAPPyy7Bd1ncscr3tE8wmUtxGdA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":300068,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfMDT7CRA9TVsSAnZWagAA0xQP/0zyAUe1N9zb0B+WFFMH\nDefDZdZlXDknBP68J0JDzdfqEdQ2cfrT07Hd2cleNSw5gTdC77QEv9Gxl+OV\n6eRDAoVsmT5zyFszrNZUAscFuk8IyYR+CSyORHWGBdWPM+hzfeC7vty4E2Rh\n5MBaceaucL4z+YPHan/L8B2RWUsAZK/9Avgx9HDZiwCYGSjHumQVn3blCz0r\nqemiyQKbbcyvvlKvzPESOgYYXaGFT6RpdWZyevuPzF0/2BdLPPgnyxUfFEnm\nC2P4ITUFEPM5esxfKk9V4X+p6p9Re6sDE7eDJTXV7reZ7fbqm+NNaeZnjd2n\n0PyjRqd98bihlpSk3xbF6rFJ2Q/Dv2Fd7+temT4mmZq0sg7vOLacyuAR8xTt\nUPkoL6F8bcKN85ri5QoCDj5xswxHeQhhBy8SofYBgOlauTOEk5+Q/TGEKcsz\nqOLyVK0DWG2LYNvT52dDJNrDZT/bg20awaNTM03HAuZwUQQtyX7ZQSDVtEMo\nIkh8OFkqGA2KSSi8MLXK+Sxw3eqJMO5Im6zbDHPb1Ztk+uVkCMJKRPUFMen/\nJZSPygffDtIFgkHySmGk48GDi37jifybjA5gukT7aTRtarDRtlI8VCWlubiF\nOhFDLr17QUQre60KKJFRSeZxMLwMi9SPFumQF6sm3NaMX3QX1zWnAXeQhJDO\nRFBO\r\n=+L86\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"ed90d948274d0815abb27f79370af12f226b1ecb","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.7","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"14.7.0","dependencies":{"glob":"7.1.6","chalk":"4.1.0","tslint":"6.1.3","commander":"6.0.0","typescript":"3.9.7","strip-json-comments":"3.1.1","eslint-config-prettier":"6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.2.2","husky":"4.2.5","eslint":"7.6.0","prettier":"2.0.5","babel-jest":"26.2.2","strip-ansi":"6.0.0","@babel/core":"7.11.1","@types/glob":"7.1.3","@types/jest":"26.0.9","@types/node":"12.12.21","lint-staged":"10.2.11","@babel/preset-env":"7.11.0","@babel/preset-typescript":"7.10.4","@typescript-eslint/parser":"3.8.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"3.8.0","@babel/plugin-proposal-optional-chaining":"7.11.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_1.2.0_1596994810570_0.5100844114295471","host":"s3://npm-registry-packages"}},"1.3.0":{"name":"tslint-to-eslint-config","version":"1.3.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@1.3.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"af9079a7b23879b22e5712e39791390ef984970c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-1.3.0.tgz","fileCount":482,"integrity":"sha512-lGT7zMFBWiqxxd1nUhlBadMGmbWtuWc/wRDaqcqzx1FUrS2ySPlc24R3Wl4MG7lCl1gyd6HVoZ7lAh/bDlRcaQ==","signatures":[{"sig":"MEQCIAu5Gt8kKp1z1CFdzM3iVHL0dLvlaaHBzMW6zvvSOZvJAiAEKcXIHUTNNGG+KRFpPJbc414uTHkbBBWEcNeQmOLdRA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":344193,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfMsSXCRA9TVsSAnZWagAA7KgP/2tZ8anKNVAAh/5FS+IC\nzvshUHAPCpXl5d4uUMboKFaWIftXftcEOIEl4mVnBaXloHA4h2iKCYAEpJnf\nrq0sBru9W8qKpWcF4TdJn7iaNnZ5wHrm8D7lwv9LEFAnNnHHNvE3bl1mxWXu\n5FAceI29xqMCoFWP9mGYhTyrhaVYN9sZVg2NP6qlkI9Hor9IRwv/eOjfLyg8\naYT4H1yohfIHBG6KgUhGP7t8FkJ8IZf36PHXiTW3BvIdja0TwiEGBxCU3bM8\nvvlV+KuV+HlKIWjavU3/ugf1CRJofIy9SisshksszbQYeKBFBpeNjvNkyAHA\nCiJrKMoCtAc7z2zTRSEolRhEJCmlZjwEAK8vIpbAYlkopvppf34kPhdwZN2R\n0f9XSRod9GiE9yVK6naY5z9v0C587X9JmH0oM9efwf+5Yp7h7dONyHilcvKO\nCXiBgIx3g366pHcu34nc08c3fLShveUd6NSie6Ju3kEHGZGuHJ89VV3Pn0F1\nEvaxGrdt/+uOsuKgNHmR1ldfL8jtwPpHeDoskDtFiVxngxOTw3moHc3LCrRy\nWLbLtgBJ8K7hic9QVPbSPGv4M+Ni/ufHI8H/EeY3gaa371+sS5baBAzqK/JF\nv29V0wWMsH5gKoFpdB9qcBtRV7HV75fjgYiogz29S84PIGimsWjgorD6DcC5\n+84e\r\n=ruL1\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"02cfbea3fd923ebcce912399cefb824d1ca60ba4","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.5","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"14.7.0","dependencies":{"glob":"7.1.6","chalk":"4.1.0","tslint":"6.1.3","commander":"6.0.0","typescript":"3.9.7","strip-json-comments":"3.1.1","eslint-config-prettier":"6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.3.0","husky":"4.2.5","eslint":"7.6.0","prettier":"2.0.5","babel-jest":"26.3.0","strip-ansi":"6.0.0","@babel/core":"7.11.1","@types/glob":"7.1.3","@types/jest":"26.0.9","@types/node":"12.12.21","lint-staged":"10.2.11","@babel/preset-env":"7.11.0","@babel/preset-typescript":"7.10.4","@typescript-eslint/parser":"3.9.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"3.9.0","@babel/plugin-proposal-optional-chaining":"7.11.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_1.3.0_1597162646768_0.008651237052027971","host":"s3://npm-registry-packages"}},"1.4.0":{"name":"tslint-to-eslint-config","version":"1.4.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@1.4.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"4b135f78775a3cb4feead1140bf80b129301b128","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-1.4.0.tgz","fileCount":899,"integrity":"sha512-dE/vhtwk5w47Wef+jXwxAdn0nVmmG5YMEs/obHtAuhLq/bHJG5bJxwdLg3LI5jx4Ps75Un6Aib0GCvJ9Wt+TfQ==","signatures":[{"sig":"MEQCIBg+qrpx5uia11GUHEdmchoGGbRNS/I0w/LKS4K4OkK3AiBbKlPneIhPw7RQbDQTp4UHiBaiNNZm0aYTZM3zBikgGw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":560320,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfYQDWCRA9TVsSAnZWagAA6WYP+QAd0/VB+yFC6npyjqJW\nweCqqoihiOXWvl5Ao9DFhGBCKJhampwtIAOS82WRyN9ldoYsBxtM5L/UOM3w\n4MwZEmprrcYVBsuW+8H4gfPvRjQFc4a3GOOTaWBauQW8sDeBqdOaJh9x5kAq\nIMfj2xqqZrDHCQPkHSDsk/IbGeJoLdKyoP3zHrlr5QVhEr7frZxeHd9NCuxP\nnoMPx2Yl+dAmoZNp3+9MNC2X2CUYSPPhESaGc+GRPk/pDrsoQKDwPjYRvTQ7\nMt1IELS4rVCcjxAxrij6lMuep0dg0fKJvC0ks741EmZRPW+In5VfOi58b+TG\ny21zB7l12Qh7sq8xsJAqJ2WOrhSoCW42Cs30vIxm1rL9p1Lf5qgq/IhsYbEc\n3xwl7liq43S98QFJhWntDhTjXTdvvozJTLgHna+1LcOk01EBkoyPczCGbWZY\nXOc3lY4LYUXpt/6qkDCXNsZ3yWdIwjzndqkdUSDn+ldV7uvlo+yQpt6nXUly\nUXKUj0ssgdka6ukeqHg5m1wjCr5eeK4sgPn3MMWWYQg3zYY+EQvzSMJIAnJr\n0F9H3Bu85ynbUKNn1TEzv8ogu+yfDFIWbpAZbp23ok8C93gtHl/Tse83fbwv\nBND36CmjXqj5E50iAeUGI6fT6jcS2n6sZh4cqL3lu2kizZpOgY2/ygwJaVAb\n+9r1\r\n=Niwl\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"5100832091b94ec302b9afb17aa511091cb9cad0","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.5","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"14.7.0","dependencies":{"glob":"7.1.6","chalk":"4.1.0","tslint":"6.1.3","commander":"6.1.0","minimatch":"3.0.4","typescript":"4.0.2","strip-json-comments":"3.1.1","eslint-config-prettier":"6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.4.2","husky":"4.3.0","eslint":"7.9.0","prettier":"2.1.1","babel-jest":"26.3.0","strip-ansi":"6.0.0","@babel/core":"7.11.6","@types/glob":"7.1.3","@types/jest":"26.0.13","@types/node":"12.12.21","lint-staged":"10.3.0","@types/minimatch":"3.0.3","@babel/preset-env":"7.11.5","@babel/preset-typescript":"7.10.4","@typescript-eslint/parser":"4.1.1","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.1.1","@babel/plugin-proposal-optional-chaining":"7.11.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_1.4.0_1600192726092_0.20714135251328303","host":"s3://npm-registry-packages"}},"1.5.0":{"name":"tslint-to-eslint-config","version":"1.5.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@1.5.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"fb06d616232929bdf12554b12093fd0f1933dc6d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-1.5.0.tgz","fileCount":896,"integrity":"sha512-dKni28hxeet8hc5DtLFFYlvaJg7sj7DSvP152+vfjaliKq38CDrh/siDI1iJJ0yLXfX/JKAGiu2qYFHzAGP0xg==","signatures":[{"sig":"MEQCIBt9s8hHafzSLMW6Y6EbLspcRBS13eZ8A0qTFW11PEXJAiBujgkc8kO3m0OTqyONQsqTn4TaCGN0JyTOu74DKgV3ug==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":563655,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfZkpCCRA9TVsSAnZWagAAk40P/jPlLO0MkzFCHz+Azesi\nXW5I58B4BF6PUOjZNQjCmUeb7oqaf8pge3ZZvMAh8OopKISyicjHZbYawLP6\noUwSd2At37OV+KRfBfOTUFpCcc46NVulZfSLtF8H2ya1tkBZZfVvyRM+aghg\nFW/U9treFdRSJcLo0o2MECITqwikrsZXAeypbGcWZozERINl2GOlzK38Sqx8\nzPhWZWHxkDBfP+qYLSQTzk2qEG0B5+NDWbSTla6eT4sBIxht3Pa2P2N8PzJX\nM22ZfqzTIYmnHYIM8BgnVfjVe9qWHdrQtZ+NSnJHS3tuwfbd8rBPf01HwjGR\nKfSYaJ+rGP+AGiqKJ0+mTEF/Yx/mwRc/bFkRzivh2GXveaslATcqN/f0LZ8R\n2FapTFRVRTlq6W6AFH1afXk4e6+/UMA2BGzJKS5GS8sMXMoG3zoFZKdV20rX\njfgk4EMhPYuLShjv4aBU73C3WaizXW65XqIAVRVQx2av1OmcQjt3KsmsYHlG\nM6s4/K9pt7LJHZTxKiZXvzZolPLmE+mDzAnpblYBQZEoh2UdsHIt6Ncp/Xtn\nsAaMz5Fb24QtEJr+txJZPgO8ewYoAqtjnPvEEefHImvsD9GD3PxIWPsjuLnn\nZwuKJFTj3hoTWNP38fi33EgN2kx8IUgYw5sFc3dU66wa2kBZC1rbB/ewiaRy\nsGwP\r\n=N2dx\r\n-----END PGP SIGNATURE-----\r\n"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"6c72e6fcf1a2dd8917cd43dd0e87ef411be1e66d","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.5","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"14.7.0","dependencies":{"glob":"7.1.6","chalk":"4.1.0","tslint":"6.1.3","commander":"6.1.0","minimatch":"3.0.4","typescript":"4.0.3","strip-json-comments":"3.1.1","eslint-config-prettier":"6.11.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.4.2","husky":"4.3.0","eslint":"7.9.0","prettier":"2.1.2","babel-jest":"26.3.0","strip-ansi":"6.0.0","@babel/core":"7.11.6","@types/glob":"7.1.3","@types/jest":"26.0.14","@types/node":"12.12.21","lint-staged":"10.4.0","@types/minimatch":"3.0.3","@babel/preset-env":"7.11.5","@babel/preset-typescript":"7.10.4","@typescript-eslint/parser":"4.1.1","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.1.1","@babel/plugin-proposal-optional-chaining":"7.11.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_1.5.0_1600539201564_0.14729648337787227","host":"s3://npm-registry-packages"}},"2.0.0-beta0":{"name":"tslint-to-eslint-config","version":"2.0.0-beta0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.0.0-beta0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"25c02f2b11d1f3c6eba777fee6bb8526f42c04c3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.0.0-beta0.tgz","fileCount":806,"integrity":"sha512-4pzyv1s8vCtDHEnsTlpo+ccbMBB9BBHxfpr56FpoNuMkWtiXQ/XGap29dFwAs3iGYfrdkdbjMxFg3pC2zRv+eQ==","signatures":[{"sig":"MEUCIQCxODZaA4n5Tln45oubI1ugwJu2z3eLg76WrGTcCn0tDgIgYtE9jFZDC9jxI9yC+BeZimYATToa/H5rsyAOaTXItxg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":528829,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfh2TPCRA9TVsSAnZWagAAxS0QAIIb/WhgxtyZr2ouxPIP\nMvZznrz9s2v5QYwE5R05vlVc8+qJNE4eXz9Heq+YBNCelklZbk90n9HuvYyX\nmhlZH1y7ZgoUqL1nq4oDmOeo7w+U/mTAFjARWwVSR0A0oX+HDq+q6WyiWObV\nFPuDEp5DM+a6o/2Df5omBqW6d6x7g7bb3SwoztVSFOdXLs5cY6mCdlTGVUtV\nIiS4Yak30tfDae8QJxsRNqYEH4HHbEOECvvnaVGgW80fvfLjF/SHYbqss0ik\noyH5Xl7/XM6PKwZe3vGCwDRHmZmI1shE+kyXglsKbSL41Lp7PCfWbPTiQoOB\ndL4rVUJNcZPhiGlEmI8whRd6QCIKmEcyFUFCaPJOzcW164fiPkCLfyqabozl\nR7HumU7EsNieheNXvFwZxwFiq5j/OMbrvGChRyzsrl0PBfng6mTDY7isGa9f\nANVKG5YGizX/nPVBw1M4FlJOMiE4FjwkKeELHx4OcXxIVwt+gYfXR/UncQ7z\nGp5Y3NQEDXIJ4/WASM2QXPJez0ziTKbFKOkro8V1v7Kg0wk1YGgX7pOos6vY\nuW81WMF0TSajOaFuY6NQWt4V2t3lDyYcjJbJBfoHH2xxQffGGA9/EywJRYPN\nvCX+jSAmmlxBqv7J2BU02Wn9+liy3ewSYnbA9Ihbtu7zEijqy5Vqiv8La3Og\ndHL1\r\n=WDP1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"327cd65eed18fdece7395f0f4bcc84e280720509","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.5","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"14.7.0","dependencies":{"glob":"7.1.6","chalk":"4.1.0","tslint":"6.1.3","commander":"6.1.0","minimatch":"3.0.4","typescript":"4.0.3","strip-json-comments":"3.1.1","eslint-config-prettier":"6.12.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"26.4.2","husky":"4.3.0","eslint":"7.10.0","prettier":"2.1.2","babel-jest":"26.3.0","strip-ansi":"6.0.0","@babel/core":"7.11.6","@types/glob":"7.1.3","@types/jest":"26.0.14","@types/node":"12.12.21","lint-staged":"10.4.0","@types/minimatch":"3.0.3","@babel/preset-env":"7.11.5","@babel/preset-typescript":"7.10.4","@typescript-eslint/parser":"4.3.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.3.0","@babel/plugin-proposal-optional-chaining":"7.11.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.0.0-beta0_1602708686802_0.04295121761301157","host":"s3://npm-registry-packages"}},"2.0.0-beta1":{"name":"tslint-to-eslint-config","version":"2.0.0-beta1","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.0.0-beta1","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"06d410e160d74516d566485bead82205c43a7bd7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.0.0-beta1.tgz","fileCount":803,"integrity":"sha512-Vquj42jbsU+kQd7i7OIHshDNsv4xyiQcuNbv/2xeOs/0IgD0xz04XRVZb/6GyVVUnbJ4SiloEAE+QGioZFo2Zw==","signatures":[{"sig":"MEUCIQCziaVPKbnh6BULkrsn+XYZYL+FnF4m9ppvS2M1cE3LPwIgC+J+b9wq+fdiQmCdEps4v+Vfhb9Hn4QY6AtReDqDbEM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":514113,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfibglCRA9TVsSAnZWagAAxZEP+wQsGRkrltygAAdLaG5g\n+bMIbvQ3Z/Q+3tlZZNDNs1QWrbag/LI+GwJTDruw4MxFv4YF9L4uywS2kXjH\npGeRvjeF9HZcBqIm6TDof8r7hMxsyhuWtMvDI+RaT3Sy5YipmRpqtsEYAAeE\nWR0C/rBqexgGpd64u/2ANakHBqXGIPjmq2/uB/h1aWY44+xVBb5oNwUkaR1k\njDFhIvAmcpGh+TsDYMCtYWmJyMmmy0cpbWV77Yk+gQyqKphY5/ZaCoym94Kv\nJngzJoMCio+Aj2klJ/ZTRyvXFtfje9inm1Eaywckz4+ohVoMwB/5cuRtoDRN\ni743QUKVBIuZlOWanv2x+iSb0kuS8v+RbprSfu3fF7GOGiWjMRIGU/oDBt/i\nqUa1XQIZqsVs2Gqfs+CloZsLUHXQzkpKu3r0W4OLdD74z8jJQGt2VtJtEje2\ne5QX2UL4CEX0XnGfCD/LLjd+qkdK3l/Di9sQgJOJWSet24sG+NHHLTNCbCT+\ncpM0bd5HDC+v30jpx9pntcrQwSHhdIZ4Jxn2kFD1XTsLXpev0Xm4KGB1ffIn\nyc9+aR3+F3EU8CpvA+85zotmonXhens//I6T3DamseLPsJOEhj/IHBboS+Zq\nU+Ukt2KpkETjn7TJq+DaL9vEBUVuo4XyD3OyMJ/WVynQdWV13U+wf6UfRooB\nKqQz\r\n=UEVF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"c8447434eba559fc597341b3fa22d593632ea449","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.5","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"14.7.0","dependencies":{"glob":"7.1.6","chalk":"4.1.0","tslint":"6.1.3","commander":"6.1.0","minimatch":"3.0.4","typescript":"4.0.3","strip-json-comments":"3.1.1","eslint-config-prettier":"6.12.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"26.4.2","husky":"4.3.0","eslint":"7.10.0","prettier":"2.1.2","babel-jest":"26.3.0","strip-ansi":"6.0.0","@babel/core":"7.11.6","@types/glob":"7.1.3","@types/jest":"26.0.14","@types/node":"12.12.21","lint-staged":"10.4.0","@types/minimatch":"3.0.3","@babel/preset-env":"7.11.5","@babel/preset-typescript":"7.10.4","@typescript-eslint/parser":"4.3.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.3.0","@babel/plugin-proposal-optional-chaining":"7.11.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.0.0-beta1_1602861093120_0.8078257441584178","host":"s3://npm-registry-packages"}},"2.0.0-beta2":{"name":"tslint-to-eslint-config","version":"2.0.0-beta2","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.0.0-beta2","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"8acf26740200a674ddb5ad89dba960ca7ded7b79","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.0.0-beta2.tgz","fileCount":805,"integrity":"sha512-C/Lq+qNtxr9570b+2Das4ZIFBmD7lLikO7iaH1mruIRNQUgQlO19O1ES3Wb/VOZZ4v9oyZTNHTC1pJQdK7HbKg==","signatures":[{"sig":"MEYCIQDBx1/CPEZUY10kAv3dEnsRLdRZ3ZqjVYrdGEbfT7e8agIhAOrBd5q1E3aVIQlKvaJ+LCZ1DZIRvahFSZPIwv3o7gSE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":530320,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfpf8HCRA9TVsSAnZWagAAOC4P/ju8lzxKzwm14tZh3LNs\nQ7lWX7/XC5IrtHdlCV3OZUDJVAkM/YzeD+CM5vyuZCw64SJ4W31YMn4/CsRw\n9jRjh2oL0eIi2c5xy5WVrOP9dLiZ4/aCi4iZToT005oYeIvPom3pP7CvpO5o\nWYuEJ+ftytz9bjTvj8lWFXcKMsBQrl2W9f6dXURNXZIqu2hLjDQKqOL+GRSf\n1haxQekg87rnvA+krHRW1Ur8nHUHQkOFkGjC0Ify4WuYNLXkQzT7PLWl+e60\nIQorpG0pHDI4q4ViGrYjZGYBjCUV/81nRplfXpae91kr+inQJizFIkSjy8qA\nVQ6cVOKzg/ieHwNYexH7Sf+ftirBySVfY7KRyp5GFCbbeVGVvI3xG8jcBqmp\ndVz/wZukqszUo4MijiEHMSSBSGUq0YAoh83dQAXiCU3q1IcP5gc9GBd8kycD\nHY65j4uk20aoTuOF7DfYE33PVnr1c2Vvisngj0YQ7BGnBB3IGGCG2thDm2xs\nFXy9Xb5ZB0DCOfBUP3G/Ye/98MV+vNvqhsQXyboqRvHwQ6cbLJNc0LhplndK\nySSrPuOBY5wipOtowWQtwOrWGYB9d63JbUcqX4uWp4wkdgSBVYQQxc/hDVy+\n3pDdwXKDvD2e7Yhv4HoEnbK8lDNu3IL/y1ZcY954ya3/+whfN8r4z+uGWk/H\nUVhU\r\n=yZaJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"9be1186a6ac14a5ab3aeb4486b3b819e32b7c781","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.5","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"14.7.0","dependencies":{"glob":"7.1.6","chalk":"4.1.0","tslint":"6.1.3","commander":"6.1.0","minimatch":"3.0.4","typescript":"4.0.3","strip-json-comments":"3.1.1","eslint-config-prettier":"6.12.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"26.4.2","husky":"4.3.0","eslint":"7.10.0","prettier":"2.1.2","babel-jest":"26.3.0","strip-ansi":"6.0.0","@babel/core":"7.11.6","@types/glob":"7.1.3","@types/jest":"26.0.14","@types/node":"12.12.21","lint-staged":"10.4.0","@types/minimatch":"3.0.3","@babel/preset-env":"7.11.5","@babel/preset-typescript":"7.10.4","@typescript-eslint/parser":"4.3.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.3.0","@babel/plugin-proposal-optional-chaining":"7.11.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.0.0-beta2_1604714246692_0.27764656746018","host":"s3://npm-registry-packages"}},"2.0.0-beta3":{"name":"tslint-to-eslint-config","version":"2.0.0-beta3","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.0.0-beta3","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"35a64b2577908d242541e6d96f01bcb84628fd7a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.0.0-beta3.tgz","fileCount":796,"integrity":"sha512-XcW+zh6cdnHSYmM5tjkbNu0GmoI1hFs9xaMPkjLEojXmBjlpYePurYFEqppe32sXK4wnGlAcZyd47wbC/xWVJQ==","signatures":[{"sig":"MEUCIGQBWFfJhZEUru12HIrpJ3U9OF6/lPYHA1Yhdu65hCpMAiEA8mbpJwjB9unRHWJoAQ/pLO5S6RFsqSpmfw06JCKNbgw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":514588,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfqDUlCRA9TVsSAnZWagAA+uMP/iCg1uoDXrS56sJ62T0k\nssysdRZUWpS0Z17zf8bAFXkVxKPKUEsajqwzRiYxEfdzTgF9fIIWfzTY8ea2\nnujPHRMzroZLhiKvbhJ0lxOuSh8MG4Xq+a8pr+JXuvNeMM+hdZCxaKPAEypW\nd0K4KqRHPJUUxu/A+W/yosAi2nL98a+mcmPQ0Cj2lR4HB6sbTaf0cvll4ir9\nsczw1aIi7BhnOKJUJbCnkY42B6H7SXxCBT1BtmB9pmsUzVuRrUze5sQPv9lc\nndqr7gk9aPP3CpQzsU45xSflIR0fuwhPY2uKNx+ukxDs1Cyi7SnZDvq6offO\nQMK893kfCiqjIANP2YvAzF42c7aKe4NTE9qySd++yU5FCBSuRRouvuAJeKJe\nPYHQs34mjQQ/aORw3qvCKazi+NXT5cFkvLQNODcjIpT4H9JjM0M7TwHNh+PC\nl1YnRpMrvj4vViWKMTDE2EpR8GPOZN0L74hvyOd102taO4byb1zYXBgKegPc\nitHqL1kKzoInY++XxTA76c1b5Jpv4M3Mll/xh2haOc5tXlgO0y1uika4VRi5\nrLjJa3HIhKnWKZOb/Hcs8sRMIQ5dHh0OzJy44frmpsADBV8HtIzHafXsOeVV\nAf2oJLZ0o9vY0uChQbn1N2/WNfapq6WlACUkl6hgEA3L7OLOxR+Zvx90IrnH\nYbb2\r\n=57HX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"594569b5353292d7b453d0eb19a11bd95e6f6079","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.5","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"14.7.0","dependencies":{"glob":"7.1.6","chalk":"4.1.0","json5":"2.1.3","lodash":"4.17.20","tslint":"6.1.3","commander":"6.2.0","minimatch":"3.0.4","typescript":"4.0.5","cson-parser":"4.0.5","eslint-config-prettier":"6.15.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","husky":"4.3.0","eslint":"7.13.0","prettier":"2.1.2","babel-jest":"26.6.3","strip-ansi":"6.0.0","@babel/core":"7.12.3","@types/glob":"7.1.3","@types/jest":"26.0.15","@types/node":"12.12.21","lint-staged":"10.5.1","@types/json5":"0.0.30","@types/lodash":"4.14.165","@types/minimatch":"3.0.3","@babel/preset-env":"7.12.1","@babel/preset-typescript":"7.12.1","@typescript-eslint/parser":"4.6.1","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.6.1","@babel/plugin-proposal-optional-chaining":"7.12.1","@babel/plugin-proposal-nullish-coalescing-operator":"7.12.1"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.0.0-beta3_1604859172380_0.13868373256764777","host":"s3://npm-registry-packages"}},"2.0.0-beta4":{"name":"tslint-to-eslint-config","version":"2.0.0-beta4","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.0.0-beta4","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"644d6528fb8ea592daa8e3d5297c80f14ee64ced","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.0.0-beta4.tgz","fileCount":798,"integrity":"sha512-8KiTUmpuqlwmvVywo7q4z5N7YBwfzjS9lZ/Dc8npcE6+XEzhU8/jsTFmypLL3Jius34+nsoi3J8NURJ9qIOIoQ==","signatures":[{"sig":"MEUCIGzLj3Ts2w8p4e+Am5kxT1yJX7J4j05fQDj5d92m4v/iAiEAsgYhAFwMxvYDLXUpRDjpftXY+zikIVo4O519hvYBt6A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":518554,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfqEbICRA9TVsSAnZWagAAz6cQAJQKqF7qaDNVEPUKChL2\nY4/j+jl6BVo2TmF3vV2LK/ngC5LxipDymQ7IlwD2mEENpbtgprzcIclFfyDC\nILo2CKiFDzWVuiCC9H8fopAw6EdByVFdY1zoJ87KQqH8VTumgaobMtx2kniO\nqUTdZgAekr836W8ZG3lqCi7W1ME2jSSh0AzQ3Qoo7MoI7msvWZsdb/DbBId0\nXJpIDjrUBn3M+3/bc/LHeBVAeGM7AeYw0LwAsjJMqRezPiykZi9GL9FZCrJO\nUzNlu2txbY89IO7Dur7J4a00VTDSI57cccQlPsQR4M9cLLPhxp4GkSQ8hgal\nthRHM8hLBNFhzKHFv8UnrdshYUtBG4+dJ803cekyQf2a1eEzfKsZtQS4TZ90\n6MlxGbRaA+P8WXJdt7csKJpQRAcA8R0azqM2EiWqh7wKb/KRqSLXx2gyBZUC\n1bXV9bQTwYJeyE/wysF1TDPpKqrAFz2MvE+rPYAbw6W0ERYivVcd97VoUwNV\n8jl43TxphZSNbpHYeGq0pnyG7AvZEPoLhyjCwkKwVrrjh2Viu0/9M05wimoZ\n3RqjtQF/Gpp0HACLlG55OW1ujoYkuvkil06fyggOvCA7N6VvHRyZX5dI9Vxp\nN/jMfScW1wBlEKncaxF4DMRVK4YZ9IIyi/0pNxlPZasLaN08zNVQ8jJLsAEs\nZTk4\r\n=Ti3s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"4dd73aeca8bb6bae3ead90a451c8c7c455ace94e","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.5","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"14.7.0","dependencies":{"glob":"7.1.6","chalk":"4.1.0","json5":"2.1.3","lodash":"4.17.20","tslint":"6.1.3","commander":"6.2.0","minimatch":"3.0.4","typescript":"4.0.5","cson-parser":"4.0.5","eslint-config-prettier":"6.15.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","husky":"4.3.0","eslint":"7.13.0","prettier":"2.1.2","babel-jest":"26.6.3","strip-ansi":"6.0.0","@babel/core":"7.12.3","@types/glob":"7.1.3","@types/jest":"26.0.15","@types/node":"12.12.21","lint-staged":"10.5.1","@types/json5":"0.0.30","@types/lodash":"4.14.165","@types/minimatch":"3.0.3","@babel/preset-env":"7.12.1","@babel/preset-typescript":"7.12.1","@typescript-eslint/parser":"4.6.1","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.6.1","@babel/plugin-proposal-optional-chaining":"7.12.1","@babel/plugin-proposal-nullish-coalescing-operator":"7.12.1"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.0.0-beta4_1604863687928_0.11104538432068711","host":"s3://npm-registry-packages"}},"2.0.0-beta5":{"name":"tslint-to-eslint-config","version":"2.0.0-beta5","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.0.0-beta5","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"51dfd3061915886174b11575ebd1f8f6f3b4a52d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.0.0-beta5.tgz","fileCount":835,"integrity":"sha512-6v+jlBFT7fRLAR+MB1ptMtgcNVp+xRomtjPk2DIimZwydhBJBCp/j5gEKKIB1nankWPASDx9f5YUWOh/jwnuXg==","signatures":[{"sig":"MEQCICjmEHVx2g77olm43O6QWy3yAeYM/KevH6K5rjsqUzxLAiB/N1FHb7qC1Ww/MNsk2Xx0fsIMa8bCuS+c4q91Ai/BMA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":544500,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfqqqNCRA9TVsSAnZWagAAahsQAI9E1X7Kcs6MjhAaiiAu\nFjrPozfLMHYNfKZoMRgcITD23azjKZNLduXvnv8+d80FfPWPDmgFXQEwfR2X\nfCwiYqltUs17EDpIWpKm5bgWZxZ8iW1o2tVHys/sM6mdzYvDyy7hgDgoBZwG\nfAw3lSJkeukZbjNTV8WdvjYpJX5wF2ppx4WDoAEVO5XRX2/9viRbiWtwmc3Z\nqqqYct+xjPdLh0waLK7tIWUxwRUWjYhzb+WN/1IgceuzmTDgzX//E36jNxIq\nr8R++qaQ/+AlU13s7iT3BPDfds/cRTPvkZB6Z9TH5RQz+wxKr+CefR/p3mUy\nAMJJOg7sWNCaHfik2drR35x2qmEz8ZV3z9peo1+K0zH0EQqF/5/vgnyHNY1c\nQbrAPIoJGIA+2Q52qqQQ60aREuMUNasFrvd25IvjaU5eM12SpKHOn/5HRNO4\nbUxT/Y9MGqxWz3U9PFFE7Km0hre4ih7qXomjhWNA4gfZnYsfgvxmbD1U7s8R\nAFtB6LL64Lf0SR1UNKkkvASdyrk+zC2tuca6Hq3fs6fEa/otoLgBIhXCwohU\nyG4xFgRf7ncRC/+tbu7typfmmQHt+AP8U9uIWBnS8i++0TyPsfICh2YkBRGe\nkhxAt9eamCKiS26DgyBbt3uN1LAJrJ7hPuTsP3eRHOzJ6zmai/HQaHtIux5f\noKVb\r\n=ZbwS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"d60403fcd7c5143d27eeb4debf5bbac4c03a11f6","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.5","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"14.7.0","dependencies":{"glob":"7.1.6","chalk":"4.1.0","json5":"2.1.3","lodash":"4.17.20","tslint":"6.1.3","commander":"6.2.0","minimatch":"3.0.4","typescript":"4.0.5","cson-parser":"4.0.5","eslint-config-prettier":"6.15.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","husky":"4.3.0","eslint":"7.13.0","prettier":"2.1.2","babel-jest":"26.6.3","strip-ansi":"6.0.0","@babel/core":"7.12.3","@types/glob":"7.1.3","@types/jest":"26.0.15","@types/node":"12.12.21","lint-staged":"10.5.1","@types/json5":"0.0.30","@types/lodash":"4.14.165","@types/minimatch":"3.0.3","@babel/preset-env":"7.12.1","@babel/preset-typescript":"7.12.1","@typescript-eslint/parser":"4.7.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.7.0","@babel/plugin-proposal-optional-chaining":"7.12.1","@babel/plugin-proposal-nullish-coalescing-operator":"7.12.1"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.0.0-beta5_1605020300759_0.5213056594565375","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"tslint-to-eslint-config","version":"2.0.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.0.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"4252dfbfaf158d31af844cc2706fa907146182fb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.0.0.tgz","fileCount":612,"integrity":"sha512-ONgoriE3fmUHpw5ZgpF8N6qAaUniO30LRbcoELyxwlp2rKkRfUCIugHRZHVwS/kL68gcqVzeIAyMAX2P2PyPxg==","signatures":[{"sig":"MEUCICk5TJu0ZP7vfM+dC1MaAYBBgBL7n3DFNTTuBcoiviFdAiEAvH8Lm81uyJAnibk9GQSh7hS4Wyvk+uF9bAy5dc5eaeU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":372955,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfsW/FCRA9TVsSAnZWagAAr1MQAJ/suc5MvSIeBG2R7sB0\n2lKiP6xkMLaG2NjmA+AI4gVzMKW01tjYpKXfOJ5lFmG1eCEvT/7s52qGoDZ7\nrwc0ZiLTlRvhtTsjvmDAc6zT/1IPc/XgYZ+0zccqW7G1yYbfMH8q0Jsfc+b8\no6W9C/4LJfDhu8uTZjpbSJXpGu5dLu3703cRcM1pONuvwz3VmyZTUa7IX70I\n3AkoFUyTjWMhWy63Odj3t9/2ctzNNxBRYfX5RJ4TyT1/xs/hbqPsLo0ykkYe\nxpUTeYMF39vrCcj9cK7n/Hlbq/oxKvxU+68pZqVZCqVBiNPZgNdZkUBczYzD\nluwVbXgFu49Ua5MEI5pdoKg94ZdCakdObY91CGG1+tV83dTL8Qy2GzXzZ/a8\n9J82144HtsXa2K8UB9XBuIgNlluplqFqIalhsv/wzopob9qg5opyPm56p+gv\ngKHCfXIVmnRkXFfdSWJbSe6Yt8s34+hkRGLSnlgjtE/5rRsTesYHD8DwQkTI\nEhe0NEtM0T8Y1IoTmv98l8HTgWHlCBO7b4QcqX/euga+/J2a0MTcJ4MDxMUU\nM/ItTziOh+uXWo6EM5JSIX2fpAloraTMbKuQr2tfRAJeciT/mf2F8iV+u20r\nKacJgB+IRd14Gj8SNyvPkzbDpkDJyJ8MqNnfKiWu6GI9/CMnzlp951YCpuXu\nzk7N\r\n=KgYo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"6dccd581fdaf92809abe33070d53db94269e392d","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"7.0.8","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"15.2.0","dependencies":{"glob":"7.1.6","chalk":"4.1.0","json5":"2.1.3","lodash":"4.17.20","tslint":"6.1.3","commander":"6.2.0","minimatch":"3.0.4","typescript":"4.0.5","cson-parser":"4.0.5","eslint-config-prettier":"6.15.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","husky":"4.3.0","eslint":"7.13.0","prettier":"2.1.2","babel-jest":"26.6.3","strip-ansi":"6.0.0","@babel/core":"7.12.3","@types/glob":"7.1.3","@types/jest":"26.0.15","@types/node":"12.12.21","lint-staged":"10.5.1","@types/json5":"0.0.30","@types/lodash":"4.14.165","@types/minimatch":"3.0.3","@babel/preset-env":"7.12.1","@babel/preset-typescript":"7.12.1","@typescript-eslint/parser":"4.7.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.7.0","@babel/plugin-proposal-optional-chaining":"7.12.1","@babel/plugin-proposal-nullish-coalescing-operator":"7.12.1"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.0.0_1605464004463_0.19181472385967768","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"tslint-to-eslint-config","version":"2.0.1","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.0.1","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"c814513ed47cce47ebf89588806b7c607d06b59e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.0.1.tgz","fileCount":612,"integrity":"sha512-RURU/zcBQpW9jKS7H2J6of4+64npTb0nrH7ND8tNhagMwryVjVnUDcucsl8DQuD7tO9RgjFO9bmJfDhyP0yV1w==","signatures":[{"sig":"MEQCIEnq6b8tqUoTxQFUdgBFPbt5iLq/4xcM4TlDmqybF9S5AiB2CYIIWz+e2WXyEAxTm8SPZv/NV3SaaLboGRH7fB849w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":388508,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfvOKJCRA9TVsSAnZWagAAyPEP/0CwWQhoD9XGqj/m73nA\nvYUgkHRzaDkTZAZACvcutsbojPNhQ3CO9c8zhoRI5RbmtDbD/CNhNHoF69Si\nLNa+W1wWD9jKQLzFVMvL+CcrxrSR22gaoxdScHLBKOxTGwnPSkkpR+OyjX0A\nASYfcGpF41zdlp6Hb2Od4ZEMEwwrmA5KbpguNx2rmksJPzgEhQ37e+0ZbUPm\nbLH8SM4biG8OjBl0T1lQV6ihbGVcxXMdaj4RzU8bZ26FOhAiISBWOQMTELef\ndCo+kiG+MAF82Hc5WfgoDEK8PeexVIPZeehRcCs+/5m0VD/BuPtsy/dhZKcT\ng0hf2AkymVPRJPc42S8gkWSIkQS48ophYuZMVjtbZ+4twge1Djy7WvYrkNDG\nWfjCHWboO53n8+6JyBCrQXmR2j+FWS/IkxuPrnfaK7rz4gln++FGZZRGloj+\nnGoo4/AzzTl36FIARc3aZixiz53hTTM7A553KaB3CgVVt79uNcimDVnSmMwV\nfijy4Yo4uY5xstIAqWmmlG0xMp5ZxN1jibhd25yYvJsRlqJ7f8ohIfSx1FgJ\n2ELMZg5HPwHhyrPMDZ/Zb/b9indl36cwu/4VO78W+h++pS/+jIiSIlhBkz2E\nWVuaKx4W/rfyiwq9hHrJC40DB/O/GSzz3fW4IxBPSeyNKtYOhlEPkDdk5Ir9\nchUd\r\n=zATM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"408f0ecfe64d70e1fa6388bcde1a31e0dc254a49","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"7.0.8","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"15.2.1","dependencies":{"glob":"7.1.6","chalk":"4.1.0","json5":"2.1.3","lodash":"4.17.20","tslint":"6.1.3","commander":"6.2.0","minimatch":"3.0.4","typescript":"4.1.2","cson-parser":"4.0.7","eslint-config-prettier":"6.15.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","husky":"4.3.0","eslint":"7.14.0","prettier":"2.2.0","babel-jest":"26.6.3","strip-ansi":"6.0.0","@babel/core":"7.12.8","@types/glob":"7.1.3","@types/jest":"26.0.15","@types/node":"12.12.21","lint-staged":"10.5.2","@types/json5":"0.0.30","@types/lodash":"4.14.165","@types/minimatch":"3.0.3","@babel/preset-env":"7.12.7","@babel/preset-typescript":"7.12.7","@typescript-eslint/parser":"4.8.2","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.8.2","@babel/plugin-proposal-optional-chaining":"7.12.7","@babel/plugin-proposal-nullish-coalescing-operator":"7.12.1"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.0.1_1606214280549_0.2425641329020667","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"tslint-to-eslint-config","version":"2.1.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.1.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"344ed2b07d811ed5a06b1c49f5bee120fdec2b92","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.1.0.tgz","fileCount":843,"integrity":"sha512-Q1D4ueuJAnkajSFle30ahWE8BEQyUJKwXhP1SlxO8n3GrwlwfvlzkCZziafgHMV1iKHTUPRYdad2QKLrTChidw==","signatures":[{"sig":"MEQCIH9pv/le3E00gcQkTERTI3VZ/V7zdJlH0TEorGIzIyreAiBedoXAI/AlZvIzljn2vwSHJDFHezj1XVO5ERs3hsDC/Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":548397,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf+64kCRA9TVsSAnZWagAAlLkP/3DNOmJeLJDmd/46RSSh\nVXRXPuvTcuAW/+RlpLaHztJETbYGHl3Ti/FpZHfTw69tHVzqnl5BYXY5BJrp\nL/7DYWBfb+t4Rboux1gBh5+4qBLOX/JEJKLZeUonk57lEQTseRdFvTF/1Yy/\nZeGwK3t2SJHdXGm2jbIYVStUsOP9vjO2QuCqNb5VHUzlCme+wEOoUPsjPUrn\nx4U+joIZ0Olq5X6munUes5fc35TCWyVYACQ7pCHAGYCMRLdlP4bZa0wLdR5p\nVBSXIyMGnR/9/VY/An+sux/wuRfDJA1JotfFaPp15nS4wkBlNAZgfLen4LmZ\nhCTan/FTCV3zrtzIhJ3nnARTp8brdo1juvdyUASxO2fYNcE2lOb/aG8aRzp9\n17PD9nO+NhBAG3s0WHRVopiAlXj9wQCoVCV6Yx0LiTHzdx/amIaOlNE+NbSP\n1nYz1BuSeWi2q00YOvIay6/hv4l4qPtmzHBRrBEjNv+7uDx36E6jjjemLL9L\nhce9PG3jfNh1aAZ1RxAdeQFkWCXA/hyF8VETf3bLo+WlSsZOsdHNA0EXO7gs\ndAz5NRh1QgtzCL76Y5dDPzzI/F8cVlqB/9AA0YlvYFdkLwASPj2/FzCSb1eu\nooZjK7a4uEJNznB5S4QWHDZp1tGU06oKJpB1PPegefsaXxBedUSvPLS0YIE9\nDqyr\r\n=aRZn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"856cdd46bd789ce4dacea92cc381197be6d31bb8","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.5","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"14.7.0","dependencies":{"glob":"7.1.6","chalk":"4.1.0","json5":"2.1.3","lodash":"4.17.20","tslint":"6.1.3","commander":"6.2.1","minimatch":"3.0.4","typescript":"4.1.3","cson-parser":"4.0.7","eslint-config-prettier":"7.1.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","husky":"4.3.7","eslint":"7.17.0","prettier":"2.2.1","babel-jest":"26.6.3","strip-ansi":"6.0.0","@babel/core":"7.12.10","@types/glob":"7.1.3","@types/jest":"26.0.20","@types/node":"12.12.21","lint-staged":"10.5.3","@types/json5":"0.0.30","@types/lodash":"4.14.167","@types/minimatch":"3.0.3","@babel/preset-env":"7.12.11","@babel/preset-typescript":"7.12.7","@typescript-eslint/parser":"4.11.1","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.11.1","@babel/plugin-proposal-optional-chaining":"7.12.7","@babel/plugin-proposal-nullish-coalescing-operator":"7.12.1"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.1.0_1610329635926_0.5945773246457886","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"tslint-to-eslint-config","version":"2.2.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.2.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"711a1596b765175139193a3878a8a12ebdf91318","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.2.0.tgz","fileCount":644,"integrity":"sha512-ta+V1G8y431CPXuJHbzlYYxuAyvKZM8llLZnFN7jy0C98dMsz0jIQCZW7dH5I6wt10gTyMOw7h5W+JEeQumbfQ==","signatures":[{"sig":"MEQCIE2k30W3ojYRsZ57De6XXXDMwSl1gi+w00GCebW6oHC7AiAcyWf7gmqDWZJDfWo8zMHRRAh4Zez8oVGol6C816LALg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":403287,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgPGnTCRA9TVsSAnZWagAAcEIP/1VS1k2+k1FTefvuT01i\nkIf58GzUUcgbNaGSYpQSCLjbhAvq132/7hBXyjTcas4Z5WvK5666gNSk8rTx\nbJ3PoZ0qLnvvTbyZ6MpY0eiAUmIfVPD4qHbHkgEmrOddat/SP0NRESJTTY5S\n4wohIftqgXP3useojWYbm8wf3omH0+OLaa32/P/1IFrnmarqHxP7Rkc7fcAD\nCX+SXqBdhh8HWRxhd7Sq0hH53vsBJdn4xu154oxKpAUgTnrs0WigUF81iSMY\ngZlEydoC2+59LBFOdbG2X0+C3vIgjir8vdNIcUgwYEMKT1+VhmGWBHSsYta/\ndasWaxpIcQ2I4fjL5mQCjb+O26H70XKY7IxXasS+SGMrcJ2tdc3eebau0uYi\nF/vmCGA33YuvZr06New+eObxcEUoLNY6cot2MEHA02BGTRK9tpNMshJrOVeF\nzEIEMOYANLHaz5wA7kn2UnryN1LNj/Tr4hRALRn1xN5wHDqlnFZqPKOt/EVq\n/2ylyX54Cn+aygmgVe4vUgalofxTqlwO8Uojgk3qAQJXPh/IU84ZRA9yJPr2\nBo3yJ3tGMTGyCzspiU04ndU51eiqjp9i3eBkWEMtntfGdeKp3wjaHAyvNO4p\nSNyHaeQt8WO96jV/LxXFZh2zWODo7ke7q1ikLtoZPNEYtoFZprQ/z0/Alt/m\nK75a\r\n=J4Zz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"076e9ccef93faa42edc2652665f95b0c3f4756eb","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"7.5.3","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"15.10.0","dependencies":{"glob":"7.1.6","chalk":"4.1.0","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"7.1.0","minimatch":"3.0.4","typescript":"4.2.2","cson-parser":"4.0.8","eslint-config-prettier":"8.1.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","husky":"5.1.2","eslint":"7.21.0","prettier":"2.2.1","babel-jest":"26.6.3","strip-ansi":"6.0.0","@babel/core":"7.13.8","@types/glob":"7.1.3","@types/jest":"26.0.20","@types/node":"12.20.4","lint-staged":"10.5.4","@types/json5":"0.0.30","@types/lodash":"4.14.168","@types/minimatch":"3.0.3","@babel/preset-env":"7.13.8","@babel/preset-typescript":"7.13.0","@typescript-eslint/parser":"4.15.2","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.15.2","@babel/plugin-proposal-optional-chaining":"7.13.8","@babel/plugin-proposal-nullish-coalescing-operator":"7.13.8"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.2.0_1614571986640_0.07281944242238247","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"tslint-to-eslint-config","version":"2.3.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.3.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"9573200403f7ababfe865071e9113fc80dcde7ab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.3.0.tgz","fileCount":873,"integrity":"sha512-m4/6MNI9NADIpyAwpRxT5ouih5uJt2mmwqB4yKmbwOkuLF5w4jKVCw9nc8KTZz/i7TlFirvRCrpQJil9E2e+Ig==","signatures":[{"sig":"MEUCIQDkIo7fbLNvWNDjXk0c+IYmTR6faHTdm+xjYR0I1E4dFwIgPNcIHQt2sPeSfOYTEm0cQUs984lqH0OOvay9HYF+dIU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":564132,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgfDviCRA9TVsSAnZWagAA1iIQAJEplAE3LdTzzRJspSMc\nVmTBfnzLFpLyluG7UrZmqF4ejhstuIaSLBFytDwDm4os1bfLZU1VLx6K2HB2\ni4HgygSLqOP3d68hjF/MuDQL21LV0RuVhTqRJnl/32mTuF1FBxH6S18Wsurp\n+BmCXjhnxT+THSs+2+fa5tM5E/LLO0xtuqL7qp1Tk/mhpVrrD55Y2Em+uiK1\ngQzsROoel2bKq3xXazppw4HyrUjFFLmKg3bXAMiYEP2g8FLRubUR3MsdmlAX\n97d9y6xEk4+ZUO9vJsjlG6HUjEKY8A8pXMCjyDcifoFv+Oga56NjsoUb7xvZ\nT2LuF6tq4r6/EEshFJ15b3mEVU9Yplzoak4bqkOomFmZcNOxypaHxltFbYrw\nrVPPgmK43jwa8B/49l88eJxn1gmYcUcSxSUDplgv/ScazJ/7EI3XSgEWtBG5\nZRfZImi+yF6WjsUC5OwYKpwPB6mu8kkmGbUKGAR64OuXA7rl+L4PpNndBsw5\n8mjjpvHXn6/Dxsy7UMqYgYrk4cTpUkYE+BW0FaaLBFKj4q3Ho0avAzkw9zVe\n+usb264/3THRfyXYEPrm4m+UKuyYSZZ9sJ6RFHY8xArw9CyEvDsQd87wFJEP\nIWQ+uNT6aR+cjpdljKBnSEpauJ4dEPypjGSxCyA0GLsPGKxDrVjRMTZGFZq3\nLvVY\r\n=eftJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"be97a72c988f17a8b81bfbf48b66a1aaac6e1530","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"6.14.5","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"14.7.0","dependencies":{"glob":"7.1.6","chalk":"4.1.0","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"7.2.0","minimatch":"3.0.4","typescript":"4.2.4","cson-parser":"4.0.9","eslint-config-prettier":"8.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","husky":"6.0.0","eslint":"7.24.0","prettier":"2.2.1","babel-jest":"26.6.3","strip-ansi":"6.0.0","@babel/core":"7.13.15","@types/glob":"7.1.3","@types/jest":"26.0.22","@types/node":"12.20.10","lint-staged":"10.5.4","@types/json5":"0.0.30","@types/lodash":"4.14.168","@types/minimatch":"3.0.4","@babel/preset-env":"7.13.15","@babel/preset-typescript":"7.13.0","@typescript-eslint/parser":"4.20.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.20.0","@babel/plugin-proposal-optional-chaining":"7.13.12","@babel/plugin-proposal-nullish-coalescing-operator":"7.13.8"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.3.0_1618754530290_0.16053059026173","host":"s3://npm-registry-packages"}},"2.4.0":{"name":"tslint-to-eslint-config","version":"2.4.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.4.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"8975ab583378910b25ea5bd3efc6b8f06928dd24","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.4.0.tgz","fileCount":650,"integrity":"sha512-pXJz1JWwt9WD4lMnSIudh0S7z12AibNpNSTuaOwRT/9dd2VyP95kzG8ZktWTKDtMgJvbMHvBYp2TmerFrXNs6A==","signatures":[{"sig":"MEUCIFgPamkpmCozEBRmqxwubYo6X7aqIdhP4GFMQ/Y+9qHNAiEA53MF/E8vl6z3VCj+sxbyJ73QQnf5lKfavqdQRBrjBsk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":407751,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnVQtCRA9TVsSAnZWagAAbDMP/j+EJMnehloa73byUJBy\nrY82oJmUOcD6FrugMYo9vp8pXwZyyZQivAjPfWeRlfwefcael6XBvLdA7y31\niaiG4SOCJ0g8DNfOrssqmgweKaxCI1IOF4rRSOPLnISpg7p8WypsO4R98qr7\nyHDHf93BO5pD7rUkZRY6xvXRuqGfMc/TU86Z9t6CZ/pHlQ65iBAAmu16HqWf\nmkW5j53Nx+WoaH8gWIJ346dqbhkBLWLNijNwxpQ+PZIpzNUxMtydKg40yzpP\npOiz8kJMXc4FfIOGuVOlHlZO0E31TbF/BvAl/rBNFy4MHjV0GY1NHIg6hvFk\nJ0f3WLsbvcver1k94v2ky/RPSe+5yGbu4V6UjKZokweWiMwdMc1OmEy1iqHK\nsixUtjP28hv9n2bpofITK5IlRHEQK0cUVbM/k6DTAGxG4o7eAzrxsFOsowFy\nsJmdaGL7Hl7hha/yfkFUQQcMb9sZvyjxlZchNLJd4QbQUpzMjAx+rhnBbTif\nxE9j3+6qk+LLURhMrhdpxkeWDCGRvEjuB6JspWtyH/QbterWR74M4uriL+36\nGHaqw0t46zWG8NXyapRK+RO49TFkKHR3iL7tX6OMtwJS4ERR/LEPf+Ytnvlu\n24u9t0YclwXQovHGzr6IzgWclCTmQT17ZH+Bn4SWod6fvgHdiE+8t0Lb77J+\n0Gw4\r\n=IUlR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"d768c074a41791b1a4f45a7a0921715b9cb40be0","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"7.7.6","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"15.14.0","dependencies":{"glob":"7.1.7","chalk":"4.1.1","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"7.2.0","minimatch":"3.0.4","typescript":"4.2.4","cson-parser":"4.0.9","eslint-config-prettier":"8.3.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","husky":"6.0.0","eslint":"7.26.0","prettier":"2.3.0","babel-jest":"26.6.3","strip-ansi":"6.0.0","@babel/core":"7.14.2","@types/glob":"7.1.3","@types/jest":"26.0.23","@types/node":"12.20.13","lint-staged":"11.0.0","@types/json5":"0.0.30","@types/lodash":"4.14.169","@types/minimatch":"3.0.4","@babel/preset-env":"7.14.2","@babel/preset-typescript":"7.13.0","@typescript-eslint/parser":"4.20.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.20.0","@babel/plugin-proposal-optional-chaining":"7.14.2","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.2"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.4.0_1620923437102_0.7968041909390897","host":"s3://npm-registry-packages"}},"2.4.1":{"name":"tslint-to-eslint-config","version":"2.4.1","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.4.1","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"a2a21571aa6395083a1eec2bbc394f761f669456","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.4.1.tgz","fileCount":650,"integrity":"sha512-n/ynyD6EPj53i7+HBwL0iA3bqGuHbpMVFdGjBO3wk/iVXTXDIvd0gerLgAd3s3cLpFPMYbAbDBzn2Bg6Kop+1Q==","signatures":[{"sig":"MEQCIAm4uWTY3wGLRCP7vHIZrgak5p++UdW9aGlGq2ttIpu4AiANycZ90iJk9Tw9yEdpqbNv3c9HvaquZMtPHKm0XJLBdg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":407786,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgoWA+CRA9TVsSAnZWagAA54oQAJ6TT6HCSjhW5K0TrDoK\nNmOlImClnmcjNsZHbfgq1Ex9HJA5c99QEDkCFdCP31tT4Gk09itEUJb1To6D\neqDp90aWKPf2PnotAlTxfQLLU7qbkJYFN2mwZCcIj/oEwvMwbpmjEeQ3a6xF\nFG2mBrFhL8gTvrFUtVKT2MRYXPuNFNp3Y5EgjN+cW8uQxu3GjdKxKx05KHZe\nd/Q0VTYDU01UObhfasEQcMWWLc18youW8QBKs2j0g7P06am73CqCVyABhe58\n59jNGZlnEEKxG4nWUZ/YcTaf/q6ZRMJVezPX+Vdg6tYAuHKL2HjxSDDD9E+R\nn1VpoMd+SWqeTBo+tHq+ifNdMBM++7moUkmB68EBke0ntrLzRJWHB4BEE65q\nzNv/hX3oUm6UH1Vcxie3d+GYCZacQQ8kA/lFHVeEmj0xkmxa9ZYIndo+NYH+\n/S58KixifP19bQnNC8+3KjE1+oUGVmpY9cyda0t7rqZhwum9oMsJeEuuAMxa\n3i3gdmAzS/mIf3yPayPUkMnmCb08TqZcVMviEdouGb/0VEt5TI5Wdav3NfmT\nRseQfZmIqoUjGmgvHajuYx1T8FZpybrLivrONakm0DeUs+SxYAJSAJjwKTCO\nbJ8DzE4lBaLy5Hqug1q+dePzVblwVqZJv6NVYv9Mo3RM0YLRrXtaTUOjD6Vy\nMd7W\r\n=R0lZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"de624edf14f97ec83a5c860be510d7ee4b96d519","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"7.7.6","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"15.14.0","dependencies":{"glob":"7.1.7","chalk":"4.1.1","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"7.2.0","minimatch":"3.0.4","typescript":"4.2.4","cson-parser":"4.0.9","eslint-config-prettier":"8.3.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","husky":"6.0.0","eslint":"7.26.0","prettier":"2.3.0","babel-jest":"26.6.3","strip-ansi":"6.0.0","@babel/core":"7.14.2","@types/glob":"7.1.3","@types/jest":"26.0.23","@types/node":"12.20.13","lint-staged":"11.0.0","@types/json5":"0.0.30","@types/lodash":"4.14.169","@types/minimatch":"3.0.4","@babel/preset-env":"7.14.2","@babel/preset-typescript":"7.13.0","@typescript-eslint/parser":"4.20.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.20.0","@babel/plugin-proposal-optional-chaining":"7.14.2","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.2"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.4.1_1621188669560_0.8763060933347124","host":"s3://npm-registry-packages"}},"2.4.2":{"name":"tslint-to-eslint-config","version":"2.4.2","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.4.2","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"4f2195c3dc7041103dfd98908335be2b3e5e26c7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.4.2.tgz","fileCount":887,"integrity":"sha512-tvKwE7Ill5u2eUNIjvCQHjnDXEIQRbaB/JDQEnHGYkq0yUnXHJMU1tyvOzWymecUHor6jNIlT6ogDBztYBxsOw==","signatures":[{"sig":"MEUCIQC/iwtmvrJr8P/1XIAEhZVZ3IOEdWLbnh2/odFttRfyRQIgEpWliz4AbHBLcn1xtsCbGCgJrr+Fl+9VwNXsvN5Xtxk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":570464,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgpGJvCRA9TVsSAnZWagAAm+QP/29TzTnbTK8llPz2Iuiv\nzly4TY19oVde9Vxx/4OUrkXJqsRRyqsEdkVvbFyg7jEtt8nWk+XAF5y/WfWO\n0EiDsnRdJThYgkU808HB1qZ4ZNnkebcw8glT8ea+ZQyYGkzprfjG6g6V+ePF\nXU4BBNqDFQVaUwex3781cfMLt4WZjxOwXh6GpRzu0tEPypyTffzah/AyHmxu\n0TqoxHM6VJTpwBk9Q6AyspigJngh6mx+idx4hOIYikZ22I7Vtyojhgj5pfEA\ndgIlmeOa4yp0h0VOsTNkCdaLNACHoTpK1mXRGo5bYC9fIJ5v7ymc3u907boU\nU7TRVrzrLpAAeWKv2CQ0u4WI7kFaxG9B+Ihniii3lUKL6TFJ+6x88g1QXjjF\nPUgHTqR6cQ+jo60T7+qT5WwAiXGVLK6vK5j7MLPw0tOBpi9iPNlo68L3ToLM\nm3qVkEJL4uPiuAJ2UnBzLw9NabBetmKrVXY1B0xMKWt5yN0ht8sk6YTOVGkl\nnS2DQk7bCPaZZr0adPUTWFgPmL927OWXwsRfcTjLBa0zD8bS64nkH1Xel7NZ\ncErMQ9nhwWDIKtHBui/8o2QeFZ642c2XUHl3PjOz5Vn4cGCL+G+tv80la30A\n4ozD/1j2KmC4E9H9StxBH5GfZANnJtSSeGvnK1FXzLuUufpMjBAaTpFW1pke\nSDzk\r\n=uXkf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"bb27bc1804f9012497f8a329eed2544a96784b95","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"7.12.0","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"16.1.0","dependencies":{"glob":"7.1.7","chalk":"4.1.1","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"7.2.0","minimatch":"3.0.4","typescript":"4.2.4","cson-parser":"4.0.9","eslint-config-prettier":"8.3.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","husky":"6.0.0","eslint":"7.26.0","prettier":"2.3.0","babel-jest":"26.6.3","strip-ansi":"6.0.0","@babel/core":"7.14.3","@types/glob":"7.1.3","@types/jest":"26.0.23","@types/node":"12.20.13","lint-staged":"11.0.0","@types/json5":"0.0.30","@types/lodash":"4.14.169","@types/minimatch":"3.0.4","@babel/preset-env":"7.14.2","@babel/preset-typescript":"7.13.0","@typescript-eslint/parser":"4.24.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.24.0","@babel/plugin-proposal-optional-chaining":"7.14.2","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.2"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.4.2_1621385838996_0.28597536056971373","host":"s3://npm-registry-packages"}},"2.5.0":{"name":"tslint-to-eslint-config","version":"2.5.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.5.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"da257b87d3652728b0d0c73fa9d4070fc21211f4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.5.0.tgz","fileCount":672,"integrity":"sha512-hcLDbOs2di28qa7/a1V6rjWysxXouYni978aDk8eykITONL4WK2jLbUuq4l9tm2kLh0D8RTdynjrf4+4Gtp6jQ==","signatures":[{"sig":"MEUCIQCgISuBzB7ME2RXrl+yqu72jCNm85+BMy20qslI498YeAIgJKrFTOs4fzacZyTF6lSUuaT1+jFtzhbrRZjd+heXPoc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":421340,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgr+2mCRA9TVsSAnZWagAAFJ8P/Aj5LOe9vrRz+WNFo163\nJHMvYB+0qvs+u9nYAR0hz/lrvgK2uTU7Mrb+OxVqSj3ZCxU4DKKYpM41YDqK\n+F8eOQCsI1z6CHSukfhUynIj4konfq6L0oAFIQT/yeIaVkMa7V9umXAudmlR\ng0csB/wD7Gd4ykkpfdAWp3HHkfOk0G96S0gu6Ts2yMBF3smik9/diC9Y7km9\n9CfNDr7QjaaNOTfJF+syHDrUxqAwQfraTd0DGWg7y0zNH8uxAMVe39ZAWUCy\nyk0Pu9VDp2G+aQDl0yk0IwjWNX0dI9t5CsIde5BksZKkSAZVlrCMse/zYWPe\nt4sQDbnXBYd4wjGvIOuK7iun89ZphDVp6dGmtPQtJjbC8ToDX56w+Ulj8pnd\nAdXSwJIeBL6vWhJZDhHdKVFAnGGKSgDtnuNj8u5QjKSa0KntL8irh+w5J4Kn\n8MpYgwn5usjjjc50iEO11o0uv4brBmQCQIdKd5XsDSTvnoLQLBnFRn3g0Up2\nN7mye6Cd4k7bjyPpKq9lldsXhFbwUoAKJfPjhZKCo3OrJuuTrPNVBXq7eUw6\np3NFiAleojIzBpDUAdYDJtepNNLQSkJfktjhQyt52C3r9dMOEchUHryLgLtM\nXqPmrehAQLT5s6VPwaYNfUw5hxZgQiLup5ek/b/5Hs40ou8soOTffuYuXBq9\n1CgL\r\n=0wOp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=10.0.0"},"gitHead":"b9c6282730979c39fc0b8e31043e802b2826262f","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"7.7.6","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"15.14.0","dependencies":{"glob":"7.1.7","chalk":"4.1.1","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"7.2.0","minimatch":"3.0.4","typescript":"4.3.2","cson-parser":"4.0.9","eslint-config-prettier":"8.3.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.0.1","husky":"6.0.0","eslint":"7.27.0","prettier":"2.3.0","babel-jest":"27.0.1","strip-ansi":"6.0.0","@babel/core":"7.14.3","@types/glob":"7.1.3","@types/jest":"26.0.23","@types/node":"14.17.1","lint-staged":"11.0.0","@types/json5":"0.0.30","@types/lodash":"4.14.170","@types/minimatch":"3.0.4","@babel/preset-env":"7.14.2","@babel/preset-typescript":"7.13.0","@typescript-eslint/parser":"4.25.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.25.0","@babel/plugin-proposal-optional-chaining":"7.14.2","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.2"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.5.0_1622142374305_0.16647907370744663","host":"s3://npm-registry-packages"}},"2.6.0":{"name":"tslint-to-eslint-config","version":"2.6.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.6.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"95663968be89cc306357bfddad1f3dc934b2719d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.6.0.tgz","fileCount":750,"integrity":"sha512-xFY3SC2u8Nhm37VjT1KjA6HNo1678CD8q0nLhIw34zEO5k2Au361FzK98hFJC6hxh7mGHPLwU1yt8cziyD3z7g==","signatures":[{"sig":"MEYCIQCapUkNafqpvzJ7O0oFXm5xao3K3SPJqAqp4SX2WrMhxAIhAJFVqOb8C7ONYBRDYbyV1AjyKl5+ctFmj3B0kYc0V+ed","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":453720,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgsO8jCRA9TVsSAnZWagAACjoP/2oJI7s80QdSYPh6HRBV\nAoAwyB4oY72XNHpVJfBGUv9fdGEhiRkHNhKT66cBaQKcCUyVnMj5VIj1/LE/\nDYo6Q2sON0dQ7EybOdSPjSaB6MZ5GNGp7KujRPJgImlWm/Tg7O/XcyV044f+\noabIoURgs7027ARkhqGMc3JqQiOjfNHK6qtGf9xGcJPGMfcAtrrJFCfud6HU\nzgTgBLCV8JDm8jwJKD+ZjYzP8Fy2mpenWRsziM6wkRWSpXP5C99Us10l6hgv\nmRzutlIcL3ixJpWe7hx4i/zq6aSwNnU1GrngWStQK4XUPurEL9nBv8unjfNJ\nVdqyFhuDEidA0hMQ/IzdGLP0UltL8nnlHu1p36bhRCBOq8Ec3pZICcQdbjzT\nPP7Uci6SSvB1htL8kUIAhfzCx9gAg5K9pPiR71NxeGBbpOaCFbtXjFO3K5LM\n895L/QUPn3K7DKpNWBVZyA3ARwasKkuWmccM9UWpy+b+b55FK3qIXbkBZ19t\n3lgDopqEwUNsmSlDqQuoef6aDwQ3ot/0a3UAQykQypZqU6cYdNvYC7vThc5N\nl6yH0OqH3jM6xf+NZpWfsM5uNTSJvZ2sPHvz68SR5VMfhaWoCC02E0Kf69gV\ndNlV8m/TLEMWhIWa/ANlRefVQTQ10EhxExRwmBxqxAMgA20WIxej6Q0G9BTM\nMWZ6\r\n=rhFg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"engines":{"node":">=12.0.0"},"gitHead":"9f3180c20ca002d758140c3005da724ae9768158","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"7.7.6","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"15.14.0","dependencies":{"glob":"7.1.7","chalk":"4.1.1","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"7.2.0","minimatch":"3.0.4","typescript":"4.3.2","cson-parser":"4.0.9","eslint-config-prettier":"8.3.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.0.1","husky":"6.0.0","eslint":"7.27.0","prettier":"2.3.0","babel-jest":"27.0.1","strip-ansi":"6.0.0","@babel/core":"7.14.3","@types/glob":"7.1.3","@types/jest":"26.0.23","@types/node":"14.17.1","lint-staged":"11.0.0","@types/json5":"0.0.30","@types/lodash":"4.14.170","@types/minimatch":"3.0.4","@babel/preset-env":"7.14.2","@babel/preset-typescript":"7.13.0","@typescript-eslint/parser":"4.25.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.25.0","@babel/plugin-proposal-optional-chaining":"7.14.2","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.2"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.6.0_1622208289917_0.1949412451176873","host":"s3://npm-registry-packages"}},"2.7.0":{"name":"tslint-to-eslint-config","version":"2.7.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.7.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"43400f00cbede73941939cb3da6c121bd01b5577","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.7.0.tgz","fileCount":775,"integrity":"sha512-vhQZky/+4RvCmV7afDXIxm74dpUZXiJKnWP2zuicVL+WfmTqnl0VEeP5RvZK8TwY+n8XT74d2x9tjHkIsV/oCQ==","signatures":[{"sig":"MEUCIQCCzoWPRUm38aDMCR7//nIQVa96M5KdfuKGV+9u3RPlWgIgM9owrPV/qhbVh08+1CqUVILwdc8ho4adzFvnaT+uxtA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":465064,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg491iCRA9TVsSAnZWagAAYnIP/R++mASP9AA29iITG0hY\nLUuK5ZEvfxgLAmFUrgK+INd3cipl3kJlt8bw+/pnKHu3RxwNM1uFqCtEgSk2\nZ+TZHI0YjvT87J4vKYkzly9sAvjjOA5ZctCWYG2xsVTpD46+BwNi/cAiS9GR\niF4VYIRTNn7pvXXnNy3y8pgLjyUnioJlUG8FIpDuCP2oycRs3MSSteE2XkET\nuVFK6fMzEl02Jl50LAu92qiBdEcR+F3xmLvVvOJFHOOr8jys+QUHqUNqdylb\nAUCVqPQyzQgTEqm32SyL9G+u5+Md6YEBmk+6/8MG7h/KOsMntXS8CZY9rxVI\nEVc+je8XylNscDBIME7xPeXIJzu31LupbBdU6QVMjrWHJe+aq1H2er1jKurA\n503h9dyAJiUJgWFDrvYZIyD8TsTX388MtE4TPDE8dEZ42pObZe2y881GETCV\nlj5EakUYV25mAcGa7yNOxAR/AY5pMkxcYWRJhIfwoQb0V9VMOwiZOi8dxwmM\noS+hnHTyi+ZsgM9N+YJFzgWUdLW9vvTfUrnaCrfNMLx0q2VcT6Q1PX1sSHt7\n43SZDa+ciuQgl3L9/Ax50S5EYjhOt70xjjno5lJS+2ziLhgVgvGfsxYs5EvC\nrzfB6zTPMM4CITzn/7X43fPFrCkkksbhc064PsC1rpMxwjo9ilcU+UqwyYGP\nnO7m\r\n=nXNs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","engines":{"node":">=12.0.0"},"gitHead":"7a575a281f40858d90596acc44e506d61e6ce9ff","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prepare":"husky install","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"7.15.1","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"16.3.0","dependencies":{"glob":"7.1.7","chalk":"4.1.1","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"8.0.0","minimatch":"3.0.4","typescript":"4.3.5","cson-parser":"4.0.9","eslint-config-prettier":"8.3.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.0.6","husky":"7.0.0","eslint":"7.30.0","prettier":"2.3.2","babel-jest":"27.0.6","strip-ansi":"6.0.0","@babel/core":"7.14.6","@types/glob":"7.1.3","@types/jest":"26.0.23","@types/node":"16.0.0","lint-staged":"11.0.0","@types/json5":"0.0.30","@types/lodash":"4.14.170","@types/minimatch":"3.0.4","@babel/preset-env":"7.14.7","@babel/preset-typescript":"7.14.5","@typescript-eslint/parser":"4.28.2","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.28.2","eslint-plugin-simple-import-sort":"7.0.0","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.7.0_1625546081509_0.5288403680824718","host":"s3://npm-registry-packages"}},"2.8.0":{"name":"tslint-to-eslint-config","version":"2.8.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.8.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"4cabcabc2a87d486dedd8783cd766167c1f5b3c8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.8.0.tgz","fileCount":779,"integrity":"sha512-7WxDlooFHg11UaxXQNCs2KAhE4IXH92jMEmPPDiQjzGLqwKQwhBbko9zeCHVJz00Z4vA84poDYwRThvla9hp7Q==","signatures":[{"sig":"MEUCIQCfj6tCclGF0yBQAbxOz0YcQgijnmYbw603XcLRPC7OWAIgZKPOfNaGXn033hoKtIAVA3ba8C0SD3vE+MvdJPKrqX8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":467535,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg5ZV9CRA9TVsSAnZWagAAqqoP/A5Rsowszp3Wf0Ideetf\nV1iTGbbUsMvUu2Aik0mC1le6mXRE3UkHdpEdfZgYjoRTE5n8X3QS2WQ9UvjQ\nsRDi1HUvkMequRE8MOEwbO2jqLZAVlOJ/K3o9/c1+DYK4DHguivxGuzqpD4x\nj3SNlEnYUcDCOlHsKXGPj6EAsm58ijltHPlwDEOk8Pd34s25t0xHT870OzBx\nNaB14RPrAoccyOy2dg62VHCb4wsK83cgeeR0MbrsczijUVRmGvMrQFZMLdAP\nRYlCIOLuUXUwmhRvXO1BNNjGayiQFh0bqfPNIDNWvXvCee1tiUcgcoxo4ZWO\n3m/xYLaZmVH/yB+uYz+Mdm19fl184Q9xwULxkW/Q6nLJFesoGZY2UtGGCdzb\n8PuvTXqacqb3P76eLzbZtpObet3XmvhCc4EryQjvXIN5uouzjmN+NdeODgh/\nG/vx2jiturijv5bdzLWskk/pBjij8TkORtFrHk2ywnE+psKHVW0rpf50LQv9\nVr9IX+C++HDYW0bGkMzNHPph/norP6pyPPQz5yRPZSwQjQwi9xQa+e47bTwe\nEb14ZezpwpuMFkaIA/WCQLgxeomFp8ny7VpGgluia1gl4/RKIfiUl7mYlxZp\nU08VPNG8Xx4LRLmrAXp9BCLCgDDB7MTc/tSZoVFn8CoJ5EnTML8KWX6RrDFR\nzXYs\r\n=3OaX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","engines":{"node":">=12.0.0"},"gitHead":"b42d9f8a877f9bf3ac9915a77408c53158bdba4d","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prepare":"husky install","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"7.18.1","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"16.4.0","dependencies":{"glob":"7.1.7","chalk":"4.1.1","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"8.0.0","minimatch":"3.0.4","typescript":"4.3.5","cson-parser":"4.0.9","eslint-config-prettier":"8.3.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.0.6","husky":"7.0.1","eslint":"7.30.0","prettier":"2.3.2","babel-jest":"27.0.6","strip-ansi":"6.0.0","@babel/core":"7.14.6","@types/glob":"7.1.4","@types/jest":"26.0.24","@types/node":"16.0.0","lint-staged":"11.0.0","@types/json5":"0.0.30","@types/lodash":"4.14.171","@types/minimatch":"3.0.5","@babel/preset-env":"7.14.7","@babel/preset-typescript":"7.14.5","@typescript-eslint/parser":"4.28.2","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.28.2","eslint-plugin-simple-import-sort":"7.0.0","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.8.0_1625658749001_0.5033331424579004","host":"s3://npm-registry-packages"}},"2.9.0":{"name":"tslint-to-eslint-config","version":"2.9.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.9.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"5b9dc70df192aac72e0def560a210359654b18df","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.9.0.tgz","fileCount":779,"integrity":"sha512-e8sBMbQeBUY0SE9SMoOQCtlb60R/kXxs33MGsCEleZYfjZgz/m2O4pCARFxaz4oe7P/whoWn7Z8PaRXttXR8BA==","signatures":[{"sig":"MEQCIBkn3Hbl6KkclcMH1F2V1+MfHGYCGih8YXP4VR8yR7smAiBJHhMKWPlaSsxOGzn3CWmDCbW9Wm5eVPFgpxKF6e15Rg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":467314,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg5ZYzCRA9TVsSAnZWagAACcYP/RIfy+LW7zMF2fpv4S4I\n9CBLWAaAl54XrVxn+j/QkEJhCoVCuwVatqyqPk9fVsj8kZXZ+p3lE2zsAGo2\np4t1DNFHEea0i7gq3WD6qEhy6luSN6ZzwNYxEVvunTYmVcOwLaZtNOJ6iEuO\njsyCm4gf9CQmc7BLPhx0ahddD4C/e3GnU1yNsLaFGQHeTx1d4NSMUUIHJ/EH\nCbdVhNI3AgVnUeIyp5HR6fF+rZ89MRoOC8YdSyH960AkFz8qvsjUBPpHNvEO\nIyp43jv1SvDO4oUxHShAw4NlaydO2DrYG2E8vriPu6jgWW2Tk7SkSv6AQbhh\nTPWYR/y7rRdnFJ4pKJ4Yj0D4yyXTa206DamgMHZLfXRXduraPcMhYgLyH5Cx\naIGLlkLkSIiBYHhdOeNN4JplrXGJAvNiBL+fpAyCq9HpTSAIJ8EwbWsG7qxG\nyorSHLt9L2i2xdXSt+vu5o7UUitmkEoQ1pk+SPouYptm+UF/Y46FhRCyfayD\nPwqh1RKV2UP+ekVllQldnByrUyzUvr8zgtdVfKbubXRH+Vglqy7Bq8C2vA6X\n6wSrS2I6ZClNj+Xu+uiv6bovAUGa7j7Iu1svBR+LiEvKx93pjTEcndRRxTOS\nPmnYlTy5zwwNw2CEU34iMQrl6JTRQ7wTZks0io6y7hHOa8AW9a70GUzCrBHJ\nvyI1\r\n=Dhjx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","engines":{"node":">=12.0.0"},"gitHead":"ed4eaa1515a0ed5c8cf65f0bac6032b7490a0158","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prepare":"husky install","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"7.18.1","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"16.4.0","dependencies":{"glob":"7.1.7","chalk":"4.1.1","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"8.0.0","minimatch":"3.0.4","typescript":"4.3.5","cson-parser":"4.0.9","eslint-config-prettier":"8.3.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.0.6","husky":"7.0.1","eslint":"7.30.0","prettier":"2.3.2","babel-jest":"27.0.6","strip-ansi":"6.0.0","@babel/core":"7.14.6","@types/glob":"7.1.4","@types/jest":"26.0.24","@types/node":"16.0.0","lint-staged":"11.0.0","@types/json5":"0.0.30","@types/lodash":"4.14.171","@types/minimatch":"3.0.5","@babel/preset-env":"7.14.7","@babel/preset-typescript":"7.14.5","@typescript-eslint/parser":"4.28.2","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.28.2","eslint-plugin-simple-import-sort":"7.0.0","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.9.0_1625658931442_0.6412616081876956","host":"s3://npm-registry-packages"}},"2.9.1":{"name":"tslint-to-eslint-config","version":"2.9.1","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.9.1","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"a6b755b559e2ff5d207df8eecabff33bb806edbf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.9.1.tgz","fileCount":803,"integrity":"sha512-h9Sc7Z8+yj8qNm11u2K9W6HYGRByB10hXZf+xImeGz1fWrwiHm7tuQu3Y5x7HXbPmRFfi8tPZ97pkifVJ7Eq6w==","signatures":[{"sig":"MEUCIQDA4EwUVUqfNdeshywCwWEAYk7RL6LvxS2fMBkSTUz5DgIgdiYz4p56DUNQB9iEGCr+VD0XvrXJhT1zemC6o/7ePV4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":477452,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg7xyACRA9TVsSAnZWagAAKFgP/jrJw+ZNnrbbsIsMi4Is\n5JJJppNnoW65/tdtQ2xMkPqU1I8c/g9MjDdb6SPj+L0SlH9tvSDdXQkErWt3\nRgFHXi5onRdB/DlzmtiIuIgk1xQrSOGAgiBZpkp0WrlnPg4N0m/tMdGud/mD\nMT4eQnKEg9yZhtj6sO74p7dhTN0k7/QX7FpfA9sxn72fgsIBYVWE4k+ueuuU\n1Em17pQZamFz/oJsFmuXLQdjTqvxkBQSrkLzSBtiaKS0tz6SU+LxTOn2AIHr\n/Mv+1uaMmGsPZ5MvlV9eO0RD2UjCGsuQOqjrtrDSIQe4GTsgpx7oJxaDBSek\nFcD0XLzAV9q04B4rgxuMAoVJUlNhjzbIVQr0kRnxIwjLTO+CY89g1Vo48SOF\nY1tAiRgCeTc+gU4rX5yPqv5VlPahSJQFPfYV6n4ytUECfySFkXpl7GlcdgHR\nfBU5vw7OibD0YvfvLRpgQLVnkgqEsaLCogJPrIVSpGwMluwI5v3lZZKp+QQG\n/XPfveaC+XGpggTTpsGvndd3W6wgZppzih59x3iw6EW80TiP62t3D6vyRElb\nPUcKT706f8PUjRgDABe4MXWiUv4OMUHc1UW9O/xDq1e45QFHEeUtwXE5BLtY\n6fdHN8Q7v+2KUbpDTKdb5EeIN9ti1T/8BZdg4VA2QDfZ7mtUImfPaRgT6vID\nwizQ\r\n=RcL2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","engines":{"node":">=12.0.0"},"gitHead":"7a48cb6e1f1769712c89226110eb82bef7354122","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prepare":"husky install","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"7.18.1","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"16.4.2","dependencies":{"glob":"7.1.7","chalk":"4.1.1","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"8.0.0","minimatch":"3.0.4","typescript":"4.3.5","cson-parser":"4.0.9","eslint-config-prettier":"8.3.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.0.6","husky":"7.0.1","eslint":"7.30.0","prettier":"2.3.2","babel-jest":"27.0.6","strip-ansi":"6.0.0","@babel/core":"7.14.6","@types/glob":"7.1.4","@types/jest":"26.0.24","@types/node":"16.0.0","lint-staged":"11.0.1","@types/json5":"0.0.30","@types/lodash":"4.14.171","@types/minimatch":"3.0.5","@babel/preset-env":"7.14.7","@babel/preset-typescript":"7.14.5","@typescript-eslint/parser":"4.28.3","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.28.3","eslint-plugin-simple-import-sort":"7.0.0","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.9.1_1626283136167_0.7695493377160045","host":"s3://npm-registry-packages"}},"2.9.2":{"name":"tslint-to-eslint-config","version":"2.9.2","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.9.2","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"4f45fd4048845e7163791f8622e02c39939d93dd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.9.2.tgz","fileCount":803,"integrity":"sha512-FxsolU5WdNQIPGiYi+3llcBGblYGRaVjzMjA7/u1jvwL21cH8L1kFZIrigFwou/PB+u1J2y7kkiSRu0WPTvjyw==","signatures":[{"sig":"MEYCIQDVHDRpPm0abAv7xAFIyFuVZ/I5ReFumDUhqhQxT3KsQwIhAIbpV7BdQu0YoPueUfwGLg8YUUCqBd4idYnmDW0UfHIH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":480497,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhKAuVCRA9TVsSAnZWagAAOZsP/1dpEUHC0kZfBWzr/lBI\nz29UeHkvgiZIXtOpfo+OqlUVHXNPSEH4jDvTL8CvIsBGuMSTrEnLIlC9nZzg\nm8bzwcrIow4HLeM/sQKDsIl0mabO2Z09HDlAxTiXj//c0DIkRLDIL7QtXuWA\np49VNFBa3m9rsE7PwofDhlIuPvF/1u3iuxmWSiGPpALRxgKc9HQmuBxdstnz\njm+PxsaoSX6352xTdRn+QcnlTETNWWtcEk9CdiG5hxUTKicWIdrK3tMh1+zb\ndYA2s0HvjFOTVMVdK1V0S1udmCh6Z91JLZ12kZQRFmu3A0dJM1OV3UDD490v\nwRM4/RT0NL5HqPeScO035jxwJ+vD5Q8dGq/xjq77FPelkyUdBwww9e/R9mhV\nxltXA7aMX7SDf57QF3TW2/q+OGYQJzxaO56E7LbjwwbLbUr2CsZnMKAU1AMl\nF/uGFgEkISTX262jiIXBgqTFU4ULeBeTy1bP4Fl6XOwl/+ecgOX3lPpu8XHh\nTyJLlc4hw8EpY9tn1MRYSn1BIsDz72pOxUil+48OkTIgBnkX0t3720mQLBum\niANVaefoymQtmT4lnaxsdQF+ZquNdj5O7qmN2LaaNtjI+P/qxVLaShcgy4ox\nr4RdkOTA0nAlm/I7V1oB+YO7oLBGfoSV28siXKNZmZNLZh1wBMtGQ44z/yxd\n4RUG\r\n=2uQ2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","engines":{"node":">=12.0.0"},"gitHead":"d45ed8932084d39eb837c0efbfccd7982d655751","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prepare":"husky install","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"7.20.3","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"16.7.0","dependencies":{"glob":"7.1.7","chalk":"4.1.2","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"8.1.0","minimatch":"3.0.4","typescript":"4.3.5","cson-parser":"4.0.9","eslint-config-prettier":"8.3.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.0.6","husky":"7.0.2","eslint":"7.32.0","prettier":"2.3.2","babel-jest":"27.0.6","strip-ansi":"6.0.0","@babel/core":"7.15.0","@types/glob":"7.1.4","@types/jest":"27.0.1","@types/node":"16.0.0","lint-staged":"11.1.2","@types/json5":"0.0.30","@types/lodash":"4.14.172","@types/minimatch":"3.0.5","@babel/preset-env":"7.15.0","@babel/preset-typescript":"7.15.0","@typescript-eslint/parser":"4.29.3","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.29.3","eslint-plugin-simple-import-sort":"7.0.0","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.9.2_1630014357526_0.5853297110427962","host":"s3://npm-registry-packages"}},"2.10.0":{"name":"tslint-to-eslint-config","version":"2.10.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.10.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"a65c47a0887105d35b97052a71aeabc3ef6309a9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.10.0.tgz","fileCount":907,"integrity":"sha512-rNsg8PUkaW7SzO6O/WP/1ZU3yaLPd+y+Ssv8rziZmXZCRyQ3uIeTs0HWq6t+C97XjOz0xqrdLkkEl43onK3Y2Q==","signatures":[{"sig":"MEQCIEoiCOwnQzQuoaDBVn0mbs6Qd9fnkD2L6zC7sEa6xSypAiBZozojoHYLzUDE0x8o/7e1438m8ksVT0zZBelz/pv7SA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":517290},"main":"./src/index.js","engines":{"node":">=12.0.0"},"gitHead":"b4251990e035fb2820ac90a388a60ce2ef398e7e","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prepare":"husky install","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"7.21.1","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"16.9.1","dependencies":{"glob":"7.1.7","chalk":"4.1.2","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"8.2.0","minimatch":"3.0.4","typescript":"4.4.3","cson-parser":"4.0.9","eslint-config-prettier":"8.3.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.2.0","husky":"7.0.2","eslint":"7.32.0","prettier":"2.4.1","babel-jest":"27.2.0","strip-ansi":"6.0.0","@babel/core":"7.15.5","@types/glob":"7.1.4","@types/jest":"27.0.1","@types/node":"16.0.0","lint-staged":"11.1.2","@types/json5":"0.0.30","@types/lodash":"4.14.173","@types/minimatch":"3.0.5","@babel/preset-env":"7.15.6","@babel/preset-typescript":"7.15.0","@typescript-eslint/parser":"4.31.1","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"4.31.1","eslint-plugin-simple-import-sort":"7.0.0","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.10.0_1632109311280_0.14469388169859076","host":"s3://npm-registry-packages"}},"2.10.1":{"name":"tslint-to-eslint-config","version":"2.10.1","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.10.1","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"56b44f0a66effcabc5e75e8d9576fec1a32989e4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.10.1.tgz","fileCount":908,"integrity":"sha512-RMM6YKKCK0gMRi0G+5Dnc21xM8MB8T8Ky8Y0805vv04qICk2lPn7AmUCEznFiBHlgIsjSpHz9q1L2lBFJyYpHA==","signatures":[{"sig":"MEUCIAJVvYAwHoQJyA+2+B/gfoQrgq3nwk32POlXNH4hyXxvAiEAozMk4hJ6GKz/PFGgum3rf2+TGimxyfmMwab16Tv2soM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":517038,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2+czCRA9TVsSAnZWagAAVRYQAKDnOFvLDE24Q33FKR2b\ndvL0UE54/JkLMoPYEkjv1LuaV6bm2AJlxCK3431+1aFP3CtARzDGj0urcvVf\n0xWT0HK0tuuX+aO5lJ/CHA2rRQWLFLVrD4Wwq9rzoqzGDWA3GOJyQlGiy6sV\nZoX/uKVvkrSd04Pr6rtgPHo5PG0jzMd6x1CImMTTlZliGXjrgeBDTmRXFjAc\nR1uXfv9qd+GwqR/Oewgy5kXKwYjVQ+/DMBtwT8Wh2OFVKPp29ef1cuyeU3nw\nmCDhQtJFkgaZqLt1oMywAdCubDzk55s3NPY6fsary5sUlCDxpkREe3EjKYAY\nRBBbWBcam1mixkbNHgEi3Df2KWOXKkjwMjBVMxdyWCYk8sCHTvQ2g9iElDBC\nKxuqoQXpUmc/cygcuUhGZ7qXSmjpLl6nJL3YLzFHjhdFCHc0M/dkssjTKvhG\nfdS8R/iQm6maSAUSrEeWVgNuJEkps4N40BaNN8mEzm9boDPbnXqZs41+MOh3\nIMl3UlJ+Id0AezuVTKUkTFAfNboRIPU8t97huF1NIaQSSjqKXlb3LefNa6xk\nfQ8lUsrtJSCsZJuq0fh3ZdoYwGJ/BQIQQ51XXXH5nhqHg8WRF2kZp8nN7090\nIMHSAU3Mo0ZaoQrhQkUAZ1bZKK2uwehJwafEF965/Gk58Bhq4lcaaMtqBSTL\nQxfX\r\n=iV/j\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","types":"./src/index.d.ts","engines":{"node":">=12.0.0"},"gitHead":"e2c00603fd8b479ace6a875da8edebdf43d81fab","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prepare":"husky install","test:ci":"NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"8.0.0","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"16.11.1","dependencies":{"glob":"7.2.0","chalk":"4.1.2","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"8.2.0","minimatch":"3.0.4","typescript":"4.4.4","cson-parser":"4.0.9","eslint-config-prettier":"8.3.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.2.5","husky":"7.0.2","eslint":"8.0.1","prettier":"2.4.1","ansi-regex":"6.0.1","babel-jest":"27.2.5","@babel/core":"7.15.8","@types/glob":"7.1.4","@types/jest":"27.0.2","@types/node":"16.0.0","lint-staged":"11.2.3","@types/json5":"0.0.30","@types/lodash":"4.14.175","@types/minimatch":"3.0.5","@babel/preset-env":"7.15.8","@babel/preset-typescript":"7.15.0","@typescript-eslint/parser":"5.0.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"5.0.0","eslint-plugin-simple-import-sort":"7.0.0","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.10.1_1634513450127_0.31850614171739555","host":"s3://npm-registry-packages"}},"2.11.0":{"name":"tslint-to-eslint-config","version":"2.11.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.11.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"fd2651e3075a0987e02b29a5a23aadf6cf2146ab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.11.0.tgz","fileCount":910,"integrity":"sha512-FDQc9p1GFAAPOX75MyA4L6juEV3vIC3xl3r4VbmH9SWXMtvVOIFnFY/QDgguYvLkJTeLKMy43sCSOF9c655w/w==","signatures":[{"sig":"MEQCIEFwqS8HQHFIw+DK1GPWi2mE/uSCKYT0xSNW8xo3FiEiAiBUaM9/pPqaFwhuOehiUKR2wKbDluaRL8aXmU+zJw6i/A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":517596,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiFQB0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqRgBAAoPEdxDtbiZt2LTQDnfcwh5tGUQmIZ1v7OMBXZQD/OoJhiHGe\r\nwEfHgP1GS+qtac0x54eVxiRNuTtLeLA3u5QodZz1kk2yADyLfaqvXHOG+1Wn\r\nBo6oTSKxf0//wm6i7haANSfCqZXzro4pNkZdIs/YjWlTeAhSlodvuMisvSje\r\nkYhqGwLfkqbjWI3fAcdlJCRZHOWIedndg3gH2gkdyac4RwFXQWefKMe6ttcc\r\n58rCz8/Vy0KWMYoGoJZ5yciY0a1rKT4V5l2k3WxrVqr7lJpxotdx+qj6jH+X\r\nYTz519VY9Lc8COii+2fjAwgGGQ/hXUHXpHH+PLuL1BHkm1XbMIBcJ50K/YIt\r\nW+06EgE3fqud4+2tzyYnm1V4aP/uAFlmmLa92FNfstKoMQvThEpWTfkqn4jt\r\nGnt881D710xIgQfOhhuuijsOF+HWP7uJzFZL3fhJPYLqlm22Mue7mbggppBh\r\nPBb6Xmystm69Wkwdp4SZWMhIE1RW1IlNJae9TUGhFD61Vwjm6RA7Mo7ruU53\r\n8wimlnmw8IEXtcVExDHMDIi2L7hdIGX/S0be81YiBhUixkyqja8u/rKrWyyk\r\nW2r8+ZgSohX4YgJp4sxSsjX4Dh/pICCf0/VJGKXvcmP7RfLjzAtm1CpGHHdl\r\nMnM87S0R94EHrMyhWSWIN3vbQjS8aV6Jyvw=\r\n=bsBd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","types":"./src/index.d.ts","engines":{"node":">=12.0.0"},"gitHead":"3686e552dc1d49de2c4847c3cbe5236e96e73acd","scripts":{"tsc":"tsc","test":"jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prepare":"husky install","test:ci":"jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"8.1.0","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"16.13.0","dependencies":{"glob":"7.2.0","chalk":"4.1.2","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"9.0.0","minimatch":"5.0.0","typescript":"4.5.5","cson-parser":"4.0.9","eslint-config-prettier":"8.4.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.5.1","husky":"7.0.4","eslint":"8.9.0","prettier":"2.5.1","ansi-regex":"6.0.1","babel-jest":"27.5.1","@babel/core":"7.17.5","@types/glob":"7.2.0","@types/jest":"27.4.0","@types/node":"16.11.25","lint-staged":"12.3.4","@types/json5":"0.0.30","@types/lodash":"4.14.178","@types/minimatch":"3.0.5","@babel/preset-env":"7.16.11","@babel/preset-typescript":"7.16.7","@typescript-eslint/parser":"5.12.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"5.12.0","eslint-plugin-simple-import-sort":"7.0.0","@babel/plugin-proposal-optional-chaining":"7.16.7","@babel/plugin-proposal-nullish-coalescing-operator":"7.16.7"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.11.0_1645543540643_0.6087898821357749","host":"s3://npm-registry-packages"}},"3.0.0-alpha.0":{"name":"tslint-to-eslint-config","version":"3.0.0-alpha.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@3.0.0-alpha.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"252180d815f1bfc8aa2834feb909df6d7ab7d04d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-3.0.0-alpha.0.tgz","fileCount":911,"integrity":"sha512-uQTkZ4OgzstGR+x7ApDVAvf+HJ3Sld4KektVGkts+ucxgQANyEKkMXktTpE3Ky9yPs/Nv2/doFtS0nuEyE8BsA==","signatures":[{"sig":"MEYCIQDk21coyi2ISse5/DpDhlMgAx2piSEpGFVkn1YcupELdgIhAMQNMK+dmRja/Er4maSQRaesD+CcKS71tUScnxVAR6uG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":419702,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiGEaaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr3Tw/7B1IdpBz2n53oSupsPCUYQHi35Z0hq01ZEjJZqeIcS8kJtW+2\r\nuURVj7CqeqMQx1k+uK3F6ouOSsZWAzmu0YFFTh+rx1QHj+rkA1aUBTY/OEXw\r\nYwkO3c+BrRcZi9ujsxjOWOaJfcFCnqZTbnj++HZCL5mQNRxI6Ttt9ADI/l3I\r\n8fSYOzvvY+f2uMomlwTWyPxV+gcpg0vtuOZ9TVTJV43fFXx9RkjiBnW++vya\r\nRMY2sV0zebNx1bSdPKO4LlfTAweO0dP3He1hEME/8dmVjidxx2RKVTDG2OHq\r\nv5xQ2I7ZNmvAoyFZkz/X9/nBvxOPO18Syo/xTw/ussXsh2u3ATjRg19euWhF\r\nKlQ0ag7r4ECzqYJ5DVISimtvyJoUPfVCRXfmYH/HYjVJ9zl0xgiRH+FU3sS9\r\nQ82Y/KpuFOmiLOF9q3Iiqe9oMmWqcZm2oI3ZbkJtFCRK3gUDjXxZxlPmEmAf\r\nLpLgZ37KlzqXvJ8ClCXJJn/mZwWV+rD5EwzDLej1N13dJBIrvvmAyn+I6Xcs\r\nMbFJ3JwaikccUQGZKVmi4eunCpbXHV5qezqhFsEvUco76L1vx2WNz5USzwv1\r\ndxzxL1WJ//BlF2O0aoYR/rQSRqbzKIvsbfYyVgYNEybiJXy2OMf1BODfwG6g\r\nBv0lvY69z9zuXzm8bwEeBBD/ZOlfNboeNs4=\r\n=OYVB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","type":"module","types":"./src/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"885e6649539aca255865284261af16714522f2bc","scripts":{"tsc":"tsc","test":"cross-env NODE_OPTIONS=--experimental-vm-modules jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prepare":"husky install","test:ci":"cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"8.1.0","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"16.13.0","dependencies":{"glob":"7.2.0","chalk":"5.0.0","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"9.0.0","minimatch":"5.0.1","typescript":"4.5.5","cson-parser":"4.0.9","eslint-config-prettier":"8.4.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"27.5.1","husky":"7.0.4","eslint":"8.9.0","prettier":"2.5.1","@swc/core":"1.2.145","@swc/jest":"0.2.17","cross-env":"^7.0.3","ansi-regex":"6.0.1","@types/glob":"7.2.0","@types/node":"17.0.18","lint-staged":"12.3.4","@types/json5":"0.0.30","@types/lodash":"4.14.178","@types/minimatch":"3.0.5","@typescript-eslint/parser":"5.12.1","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"5.12.1","eslint-plugin-simple-import-sort":"7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_3.0.0-alpha.0_1645758106256_0.7089569779792526","host":"s3://npm-registry-packages"}},"3.0.0-alpha.1":{"name":"tslint-to-eslint-config","version":"3.0.0-alpha.1","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@3.0.0-alpha.1","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"b4e7eb29b8eb880efc2d70d9bf3d21cdcd24c794","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-3.0.0-alpha.1.tgz","fileCount":911,"integrity":"sha512-xq4nXicwPDwf9qUdCCgEWy3wH03n5HAmmVx9Mts810YSFPOLKaaZEg7wOUugXCBIN1qMaXaXdtNJqBoXCbMHlA==","signatures":[{"sig":"MEUCICBBGRfNa1u4RcHYYGEb8mG2E6ng3qENfhIo5f9KGYKdAiEAinf81l/iti9TuQLDVQqF26jp67RGieDsK36FtATqZlA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":422734,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiGSR4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrwShAAlJV2Wc6fASbMMS6iD1TQccFTbB/xQ5flsSQ0L4HkhCtNoNqq\r\nH99Qnud9qucHaI5vHhC18RudKxZx/ig+9+3dmPV8EBM2Nz6BbGapRG95WZaO\r\nZ9QJrsFSbLdyxiNhVdaB99BqCYIrneV2idOiUEeMNAwvLjH+l3H+RNRbtOtl\r\nSHAi/ZEa/M7P0t6mJLnlA39EgZ8h2QG0ErC2wMGApZdoNoL5KQzP6KPQwTRc\r\n1AGZdhP9QbQEv2oiRoSwTsRJLlqctmdp90p1H15w6oqnhqIMVAKYtjD2gGw1\r\nWl4jSJSOrycosamkLSYrdp4uykdNgrfoWJb9T7uAfIHIsLn5ARNwDdZf9+ZP\r\nes7mnU80M3Sph8MVt5q6Exs5740ObXMaYN7bbDd/1iPqnysaInL+7h+Upzbz\r\nX2ai7SJmT0gVCXtEHufa4sKxaWALSTyuC5kTqhM4EwioQIPU50dz4mO1Zc+7\r\nOG3gPdNraATB/g4KWpS7rzcc6hc90N5LFwF/ABySwhkYzJu3zOFPmuKsUO3B\r\nluH+DbASLxqTaFZQiAQWdKdDlGxIPweNQk0TiTZD1KIkUIkw8zFHxBo5wHdg\r\nZzuzmj4IMazUWKsvX3tLihrDvqSudFPxHi2CBdrm015IEnzRjrga1YbM7fz3\r\nXeMDznnhSm4j77V9xKUaYsIdhl6YTTvm4HU=\r\n=J3G1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","type":"module","types":"./src/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"426b755a38603815593c35325815a7bdef2a643f","scripts":{"tsc":"tsc","test":"cross-env NODE_OPTIONS=--experimental-vm-modules jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","prepare":"husky install","test:ci":"cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"8.1.0","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"16.13.0","dependencies":{"glob":"7.2.0","chalk":"5.0.0","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"9.0.0","minimatch":"5.0.1","typescript":"4.5.5","cson-parser":"4.0.9","eslint-config-prettier":"8.4.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"jest":"27.5.1","husky":"7.0.4","eslint":"8.9.0","prettier":"2.5.1","@swc/core":"1.2.145","@swc/jest":"0.2.17","cross-env":"7.0.3","ansi-regex":"6.0.1","@types/glob":"7.2.0","@types/node":"17.0.18","lint-staged":"12.3.4","@types/json5":"0.0.30","@types/lodash":"4.14.178","@types/minimatch":"3.0.5","@typescript-eslint/parser":"5.12.1","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"5.12.1","eslint-plugin-simple-import-sort":"7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_3.0.0-alpha.1_1645814904208_0.7565205402586304","host":"s3://npm-registry-packages"}},"2.12.0":{"name":"tslint-to-eslint-config","version":"2.12.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.12.0","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"868525d1b95b4cc675f8736902233f94dd90b18c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.12.0.tgz","fileCount":917,"integrity":"sha512-J68F6ABFWBqWOPPLn2WBwsdIkyIUkRYJ6U17ZKYpmLRQZFU2W9UmV3oXLGbza+5LyTE6oXYWlzbNPx2Rd2TjJw==","signatures":[{"sig":"MEUCIQCpK8PeWvwZY2GFNYyuvSLI1SYo99YSL7oBUhhChgm35AIgMLA13/GfC9yYUKx5NYmm95NFAwHHaHXlIKQrN9WLuXQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":523485,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiHp8/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrg7A/9H/kiOlgb5kBXj/dQDwclpWNuzYljGBruRpaBTmbpBrnkzNX0\r\nnW5nDcD5aqFn9ryE5gkizy7q7+85nEMJe5p6YFiwm8IyErQ4RuItTZEI+6qU\r\nT2jsU0XJ4HOGU16jYsRp826UXUYSlLzP1QRSfjwm8y/aYQwNJYVfPLixfl/i\r\nsw9BsmhOFw4TKdUOqP4qOQzY/GG6V9R44fInkZb0QApNULOBtLyA6QFxywMY\r\nfcDOtM0Fe0wUbyoIs7FhB6rFi64229HgpvFoXmQJCvd/m8GT9NCWCKnbfocT\r\nJpAwmn6M3yKKppn8xKWDzNRk33fwSjoUkBvgGRP+gyBgjqYIK5SwjktE/p6q\r\nWjljDI0mEbSB6ey5nQIaZw/iKiu4VKE2jVD94/MeOK5AkbchfG5AkFYZ6oil\r\nepsWfA2L/v9nQfLiGsZxcm37xLPU2VOyKFWNeP/JR0VIDkejv1iQjnkWI2jF\r\nb+7DXE9inAJsvzn+IrZWDErcIQFyO9fakyvw0SHC0j36pvINChzLZAj0FmtF\r\nZdwM4SglMFPYt/KzCLEn9zf632sig0TQjMtJRrlTHXuM3iGsxDO8CsAwxzh7\r\nh4qkZgEBcos369nKQ95rn2jJKGpLIatYv5zPTSBcrDFQXkPLhrycR2IhDIAH\r\nJogsBxmWIcymJuMqHdBzEO7hWquAxZz+foA=\r\n=iymJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","type":"module","types":"./src/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"878b55613cf3efe2db40fc3754308c5d52be984a","scripts":{"test":"cross-env NODE_OPTIONS=--experimental-vm-modules jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","compile":"tsc -b","prepare":"husky install","test:ci":"cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"8.1.0","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"16.13.0","dependencies":{"glob":"7.2.0","chalk":"5.0.0","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"9.0.0","minimatch":"5.0.1","typescript":"4.6.2","cson-parser":"4.0.9","eslint-config-prettier":"8.4.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.5.1","husky":"7.0.4","eslint":"8.10.0","prettier":"2.5.1","@swc/core":"1.2.146","@swc/jest":"0.2.20","cross-env":"7.0.3","ansi-regex":"6.0.1","@types/glob":"7.2.0","@types/node":"17.0.18","lint-staged":"12.3.4","@types/json5":"0.0.30","@types/lodash":"4.14.179","@types/minimatch":"3.0.5","@typescript-eslint/parser":"5.13.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"5.13.0","eslint-plugin-simple-import-sort":"7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.12.0_1646174015679_0.2509311956423752","host":"s3://npm-registry-packages"}},"2.12.1":{"name":"tslint-to-eslint-config","version":"2.12.1","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.12.1","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"064e8c4ef931b522cc4bf206f8b3c84795895d53","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.12.1.tgz","fileCount":917,"integrity":"sha512-I9ZwfBuA26lgbet/xoV6ZdYj8+Eh1Ag+GR/HEe/2+v/DOx3AwwYqZQWbOlwmQleqT+IziHQHmXX7U2lPkvLdFw==","signatures":[{"sig":"MEQCID//LKjzCRvhjfNmLZG02wx3JMcIK5WDS+Zbfs9FrygmAiBTPDukXMTyC8WmLiHXzTqzprVScDRlYy/NKyIwJIlX6Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":523463,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiHqBSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqTqw/+NwBZSDF0aUBUwcf/MRnVB+cWbd42xkRJ18qts+Tjm765AZ2d\r\nl9rusb8q8yuu49orBVlNO14BSkOKYWcfWyFVJz696JwepFfasaaYqaXsPOMA\r\n6RhiX07N8U4YFabeVg2ADIWbg70ZlXNvcjLEadhfIQ5+G58Tyac1f48krFKn\r\nOJ1wqjYCoVGfAM4aLLBko/6qUGSH/vpkyWOs7lzFCKNtj7zOdLJ/px8gACTq\r\nOnSVFdeoxuhNfoJVFXf1yzsPSvvieITSMKMc+iXf22x659DjqWp4/DD79A8D\r\nCKQAI9WGd0EKJMB0meEI6m+6ORBKFab7tsYMWBQp8mQ7Zf8O6NRUO2tsvIh2\r\nQSmFQX1EmWxHAZSEBk4z5nxGjXYnXxlj+tLZIuSEzE2xdBTx/d17M8MGkgEc\r\nnKZ7CpBSxyylYWi+DjiNttWgMtabvTfnm8vUtfQqlJS9tySZ80C3or7XuD1s\r\nigjDiFHTE8axF8Efkoe2XLGPRKIP/jYINAKCi23/+DqLEpwC4cYEOCCnvH0+\r\n4+TzandlgnpMqPg5JAEcynEwHG0H2POSEUeI57xtfmN6omltRTF2X5Grem25\r\nYwFJWEwEcqTR+If1QfBf1CPVfDdH3J5Y5iYDxnHPyv7dn1pEPAb75w0W8itY\r\np0cISS/nSjzSVhv0iAXw95o/7ClfGxiebKc=\r\n=VWqv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","types":"./src/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"4ae2b4827d6e350d1c2052106738bda3e330371d","scripts":{"test":"cross-env NODE_OPTIONS=--experimental-vm-modules jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","compile":"tsc -b","prepare":"husky install","test:ci":"cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"8.1.0","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"16.13.0","dependencies":{"glob":"7.2.0","chalk":"5.0.0","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"9.0.0","minimatch":"5.0.1","typescript":"4.6.2","cson-parser":"4.0.9","eslint-config-prettier":"8.4.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.5.1","husky":"7.0.4","eslint":"8.10.0","prettier":"2.5.1","@swc/core":"1.2.146","@swc/jest":"0.2.20","cross-env":"7.0.3","ansi-regex":"6.0.1","@types/glob":"7.2.0","@types/node":"17.0.18","lint-staged":"12.3.4","@types/json5":"0.0.30","@types/lodash":"4.14.179","@types/minimatch":"3.0.5","@typescript-eslint/parser":"5.13.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"5.13.0","eslint-plugin-simple-import-sort":"7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.12.1_1646174289842_0.4500340289056104","host":"s3://npm-registry-packages"}},"2.12.2":{"name":"tslint-to-eslint-config","version":"2.12.2","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.12.2","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"d077a2885fe877b802caf2af12addf9fbf0785c5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.12.2.tgz","fileCount":917,"integrity":"sha512-5ai0hX9NmshLliT5utLJrufmGdqqbok8HYAT+C56NnkIUsAlFv91rMsZwMADQm4GIsAAIPYIBZ0PTIeIL3E69w==","signatures":[{"sig":"MEUCIQCWnv8kLHngLCukoklMxfs3UYwe7+romeLz3iZPTUNTUAIgQnPRu0eOI2F4rQCc7xfXYKCx9a23TEs/hZmsTLECEGU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":523463,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiHqCcACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrJfhAAi/R+4yoLEOnF/u8ehHpL1t/Fq3CovjkbGWj5Nt3BG501IiOE\r\npGvqqpvj+YWn0HdEgibMyMfWGzx7MHlolU7fcz0Zx6nReEUnsUCQ5XkZRdmh\r\nk+zRgBP7jWXBOd4/ad37w2t2h59iUJcXUlFOThHSmdVUG0wzWMIlFFni+Meq\r\nnHfTNQjwpdgs/VG1Tc/gEpo5DFW/ef7hgfk1GaxHEvpQGKWtPTtKlg/PdOKB\r\n4PrEyeAx/jjo2SjJoZfzxQsnY0BPLdIbmuwLySPrqVj/JFa780+DscGn+clg\r\nr4pf7ioDTkYjccCRkQXXtS/2BDdOyXCdj037+ycRQo5POFZc6hJmI/uUF7+k\r\nUKw+2MoXs9Qe8a3fCd5YziNlzItfyCDtgnLAc53ZoB+hTzBXeRJfePtfha/X\r\nh2lOct800anlX5FJT0RP6kVYS30lYoq4+U/VoJCLKgNZ7kYBGVzJb7SVhZ7n\r\nAlQGs7SYzgpranYFxNiwnX4/2W/uwd+LG6F9H6NEl4SezOec+NPTiSkBDuuv\r\nk62KI4Ql9SY20ahJd8/ZZiNsGmQv2XkhhJ5yHs9qUmFq58a8BqlHVmPr+7Gg\r\nMJ7Uc+9GLfqjB7MR0+PNPidss/VJ2bUcOjmPBP78DSBhz9xKknI8w5Z0U1BC\r\nl61Qerhsw9f1kU96wo7V1hCK2apY6uDBpSY=\r\n=M9VM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","types":"./src/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"185a0c02c2f5625013405fc4fc44222b57b9b346","scripts":{"test":"cross-env NODE_OPTIONS=--experimental-vm-modules jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","compile":"tsc -b","prepare":"husky install","test:ci":"cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"8.1.0","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"16.13.0","dependencies":{"glob":"7.2.0","chalk":"4.1.2","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"9.0.0","minimatch":"5.0.1","typescript":"4.6.2","cson-parser":"4.0.9","eslint-config-prettier":"8.4.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.5.1","husky":"7.0.4","eslint":"8.10.0","prettier":"2.5.1","@swc/core":"1.2.146","@swc/jest":"0.2.20","cross-env":"7.0.3","ansi-regex":"6.0.1","@types/glob":"7.2.0","@types/node":"17.0.18","lint-staged":"12.3.4","@types/json5":"0.0.30","@types/lodash":"4.14.179","@types/minimatch":"3.0.5","@typescript-eslint/parser":"5.13.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"5.13.0","eslint-plugin-simple-import-sort":"7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.12.2_1646174364586_0.5436858421523261","host":"s3://npm-registry-packages"}},"2.12.3":{"name":"tslint-to-eslint-config","version":"2.12.3","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.12.3","maintainers":[{"name":"anonymous","email":"joshuakgoldberg@outlook.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"7c4cc1fcf97328de84510debef373e44e1d43894","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.12.3.tgz","fileCount":917,"integrity":"sha512-zljQeOMPdWKzeJ9SsJVLLmwHvoa73iYXKcCGZxqbYw8k9TgF3mCVrmGge0dqURvqTfhzrhm8Rx7b9Mh9sf9izw==","signatures":[{"sig":"MEQCIHdP24Kcpl3kDhgUa3/eKRE1n6OyqxPrloBqLXe+MlDoAiAKmCDOI1q867HlwRRULt2+IUv5i10KNtNSCBu4Ygl4mA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":523428,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiI5o1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoM3A//Qz84ignMKNBnpQxpw9eyozGxS4cP954D2Ue/KJDqPiu6mcwz\r\n4rOi/9SekjR2qnWpL5VzIxnqA1XvSsQNvxsREyQ1Wi0Ysk0s0zRyFq+vu6oL\r\n1uuve+rRUXY71ATsM0X7rcY4CaSlHYryuAXMtUJV7CHhWSYgeqckDB140GUU\r\nBv7CtMy07h1GoWPETV+jos48dyrk+jL/ARM/7z1s9KGgbpM2LQvOkbUUXkvc\r\nd/4n/LEQP1BlyKVDyVdQ7fQkfHaCKlJiX1caoHIgqLmpWw+34AfIBsHUCZGc\r\nxZqm9eOamdE5XM+HGEG1JDTNcOOokPjvWX3qGrybbGyL8I+pjwZ3Qx31Umn+\r\ng2Qfx659ILOVSIYfZNk510kf7lb8hb6kbIoTtU9bbiq6VvC3zVlE03Wamiv3\r\nTblYt3Y0asuoibQ8WCq8LLXl+tnDvl9pf3mca1gyOXNFmNJguxjasqhA+pP1\r\nUp+8CFVkz8ZhLxj8sHbwQ9zMgAtS2rHRS59i1swoh0lveJPgA9tKB4QPPN2N\r\nW7gm9FGl4db5QGLNR6A6V8xWKg2B9bqa/e+kPlcGiCYlW5snrjs+o6ZdEYWJ\r\n+yDc51fTFOWVzYSQVUjj6+RfN639SNQBEJSXFsQxPLji3t9AbWP0g+2RevLm\r\nwnHyI79NVmOQ25eWVNyKgyH3Z+8mySjgKR0=\r\n=6ZZw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","types":"./src/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"ecba795758a1150014e6d88817e82842d9a92710","scripts":{"test":"cross-env NODE_OPTIONS=--experimental-vm-modules jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","compile":"tsc -b","prepare":"husky install","test:ci":"cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"joshuakgoldberg@outlook.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"8.5.1","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"17.6.0","dependencies":{"glob":"7.2.0","chalk":"4.1.2","json5":"2.2.0","lodash":"4.17.21","tslint":"6.1.3","commander":"9.0.0","minimatch":"5.0.1","typescript":"4.6.2","cson-parser":"4.0.9","eslint-config-prettier":"8.5.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.5.1","husky":"7.0.4","eslint":"8.10.0","prettier":"2.5.1","@swc/core":"1.2.148","@swc/jest":"0.2.20","cross-env":"7.0.3","ansi-regex":"6.0.1","@types/glob":"7.2.0","@types/node":"17.0.18","lint-staged":"12.3.5","@types/json5":"0.0.30","@types/lodash":"4.14.179","@types/minimatch":"3.0.5","@typescript-eslint/parser":"5.13.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"5.13.0","eslint-plugin-simple-import-sort":"7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.12.3_1646500405344_0.8206222428099861","host":"s3://npm-registry-packages"}},"2.13.0":{"name":"tslint-to-eslint-config","version":"2.13.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.13.0","maintainers":[{"name":"anonymous","email":"npm@joshuakgoldberg.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"b1fd1bd31aa18cc81d84de84aec5b2c10b7b7295","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.13.0.tgz","fileCount":917,"integrity":"sha512-1RzwB0BP5/oavCB+68bPGd0AbMjlkBNzGCw/sPor4WQ2o8cT1/fb8bE7kaxAvOySjRCMAgPGHeuGWaNBgPrpuQ==","signatures":[{"sig":"MEUCIFKdyJ/eD9neNJ6ClHwUSEmp2nTigsGxGPMTzuBxzHiDAiEAohPPEugmpQNgZeTmmEXpklXnzjUgHVB+KZ2S0JX0f4I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":527683,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicXlzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqgZBAAo1Xz7mEVZVDoqOfkqDvazbRuj9C+zdr/isTRJjey5jwBUnbI\r\nrMhc2roXkiPnJR4P+Qi55c+dquSGKKRu2NoJZD/DG9KlGuEaD/wzSyZb71g6\r\nigvttRHlZ3ttZvC3e8X9iq3Uhps/QLCAMV5uAtR5hS1DXncvROEjsA9XgVUf\r\nhzUm2qITjltB20/TVqQqqB/QBJ+us/BUkLRmJBJnBUcfVknTqWvX9STdPoVP\r\neLMuhEe5X2KTm7Ux/7OU3uVSFJNoKNV2mdXKlUrk46k59xcK0EJQ/9dEDUnv\r\nC2s72jRQEDDGi8YFCrqQdgNS0A4Fcp/niL4+GHRQge/0i2AXRM2TTiVIkrA9\r\niAkll9dGe1PaDE3hMAT41JjnSvMxAL+A8s4xZZr3GSJ+dxHLoAgFZdVhwEPj\r\n/xuRMh1w5RN/lKBdbLhwIxZe+RVUFtxhAiJmZSfJ29yBOzUjbPPLwQN+8bE9\r\nw3rtXZYpvqOcWuRkDDrO60qy655CbTQ6eFm6SZq2VNBHI8LPbY/LpBc2vjIL\r\nSP1EJ9/7Ihv2CJDtfGHhcFNtsyQn0BuNK1e8LcOqRT+TcyQIc6w7NHxIJJHx\r\narDrqXdYw/VFqfojy4Ax53TMmJskfx1w5v9OrXilosZRMqz2ZRg4a0+cZN+F\r\nE/Ho4tfNM8DP73mwN+ovyG1d8TfB/+lqchA=\r\n=PU7s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","types":"./src/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"0c3b5421442f7abd7172a786c5e2ee44aad43031","scripts":{"test":"cross-env NODE_OPTIONS=--experimental-vm-modules jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","compile":"tsc -b","prepare":"husky install","test:ci":"cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"npm@joshuakgoldberg.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"8.6.0","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"18.0.0","dependencies":{"glob":"8.0.1","chalk":"4.1.2","json5":"2.2.1","lodash":"4.17.21","tslint":"6.1.3","commander":"9.2.0","minimatch":"5.0.1","typescript":"4.6.4","cson-parser":"4.0.9","eslint-config-prettier":"8.5.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.5.1","husky":"7.0.4","eslint":"8.14.0","prettier":"2.6.2","@swc/core":"1.2.175","@swc/jest":"0.2.20","cross-env":"7.0.3","ansi-regex":"6.0.1","@types/glob":"7.2.0","@types/node":"17.0.18","lint-staged":"12.4.1","@types/json5":"0.0.30","@types/lodash":"4.14.182","@types/minimatch":"3.0.5","@typescript-eslint/parser":"5.22.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"5.22.0","eslint-plugin-simple-import-sort":"7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.13.0_1651603827504_0.04623396294499482","host":"s3://npm-registry-packages"}},"2.13.1":{"name":"tslint-to-eslint-config","version":"2.13.1","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.13.1","maintainers":[{"name":"anonymous","email":"npm@joshuakgoldberg.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"5637edbccf7b85fbbf211080e8605da9eeff68dd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.13.1.tgz","fileCount":37,"integrity":"sha512-RsUfgAYyHIUxr8UXvhvMv3wvLXPq93x6mwAszcLEscfBJs+ltWbe1gVq5bZC3Q9i2tZ57RbDR1XjiEAi2tgk7Q==","signatures":[{"sig":"MEQCIGAk/whp0rfR+yvfAsv+RtRnMh+9qobufSa5/+FZ95slAiAbw3U0hLMo8sX+IniYq5P4bZTdm4zQazDBOQkSZFLD8g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49624,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2q6zACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpYBQ//eP4I5W396/PTcWzadlZkIYOoWPNXs/u14z7gq5TG3hOvWufl\r\nP+Mf7pYfO/JKRFIL3wpD6bdK2ffVTGu6WhF007prR+3btcvS56I8DSXv0oC6\r\npF4dqEDEOmLgPhkp1t/ZtoeQW9ENU5U7Kt8eMMpxMLng5/R7503CjwPN+xSz\r\n/J89Lnv5AHdJdW2bqw34LJ4Kkrs7KIbKNDlx/5EzxQCtnZ50bq3COSEi9Kfm\r\ncaeI7ku5R2y9WSXE48nxwta679KDfhF2immt8yL1ChIqYhbMENFf9KDElxTe\r\nIVZV5oyWiLsk06V41JvmL0dWyZW6qg8C56u5w/duWI+pDidHlSNQzK8TTIYZ\r\ncmTPmn0ClenrOJLHerE6jDJgf54l0bT6PQlosju22u24zQ8h5YGksB6i/ddS\r\ni6vHd/c2re3hH/3XkXZUZH8qbkyUc0jtNl6MIOV8K3EAIKdxm/hlEV9f7cj7\r\nw43P1+feEuT72hIciiSiK73huTrxOKzJKlbbb5LFp0sfr4npDz4xEDc3ETew\r\nze/5WempBM4jzFWv/c7WP8iLJCZIkRo+x6DeEbaJE9lc6VmsFHAacbUHMZZP\r\nPYJ/q6Y0m44GyC1PxQxYBtaXG7JKQaGBv2YQWC1zkouhA4hZOaHkfp3/VsQ5\r\nRC69JwhtKzyztsMv/deX4bV2zJV6AtmXtZM=\r\n=Mi59\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","engines":{"node":">=14.0.0"},"gitHead":"71b89d608670f612cf45d21265c550aea619e815","scripts":{"test":"cross-env NODE_OPTIONS=--experimental-vm-modules jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","compile":"tsc -b","prepare":"husky install","test:ci":"cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"npm@joshuakgoldberg.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"8.11.0","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"16.16.0","dependencies":{"glob":"8.0.3","chalk":"4.1.2","json5":"2.2.1","lodash":"4.17.21","tslint":"6.1.3","commander":"9.4.0","minimatch":"5.1.0","typescript":"4.7.4","cson-parser":"4.0.9","eslint-config-prettier":"8.5.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.5.1","husky":"8.0.1","eslint":"8.20.0","prettier":"2.7.1","@swc/core":"1.2.218","@swc/jest":"0.2.22","cross-env":"7.0.3","ansi-regex":"6.0.1","@types/glob":"7.2.0","@types/node":"17.0.18","lint-staged":"13.0.3","@types/json5":"0.0.30","@types/lodash":"4.14.182","@types/minimatch":"3.0.5","@typescript-eslint/parser":"5.30.7","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"5.30.7","eslint-plugin-simple-import-sort":"7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.13.1_1658498739185_0.8555659348134099","host":"s3://npm-registry-packages"}},"2.13.2":{"name":"tslint-to-eslint-config","version":"2.13.2","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.13.2","maintainers":[{"name":"anonymous","email":"npm@joshuakgoldberg.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"a5f51b455c53a0984a2a500f331e80ec04345bf7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.13.2.tgz","fileCount":917,"integrity":"sha512-JhP7evc1LceyvS14g3RyyiFtd0jJVz/n+2WW9eR6BOjeksLX1l9IpZSfbVAhPY6kKg4ijrd/hovjwV3AhB/T/w==","signatures":[{"sig":"MEUCIQCSntOy0gy7xi+7sWz9fELJhLv27h6UfAjGm623qLK9gQIgfO3qJ3QrQ10ujTSUb5ABtoTgErTQD9aAwzCcPlkfJRA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":523504,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi3/VVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoEiw/+M8zDDOQToP/MpF62yWqTEoDwJGsJE33/0KCznkh2fO03KhW0\r\nETpVhau6dnzcqdHhcm0AYuX95Rdin1Gw02Uij4UKSz6QkVh/hWz+rAyVsb2F\r\nQVV04cSu4uyKNOso6iUpGw0lVvQ5w24E7qPtEwj/oRDHk3mXu7EergTe16Sh\r\nTw7wsAKX5TtLmlJJIvbNLgjIEKgwcMlDAhnzDh0PyEdy/csmFzm+UZDbLSK9\r\n8Tr1halS6XN4gtZlVRpxn2yTQLUUf70CXy6CRDH5xd0sSevRCgPobwUD0uip\r\nuXa9/lC/JfbAswmODKBk0haz1M+JaUiNM7fNw4lukaoTaOmXylDTpwhPGaSl\r\nvmrV6xrzvscsqodAbipcVeOiD2QxEmg2oYfUgOsjI2KXa57vNaKFUEM7Epac\r\nlL6K4imv/U18O+GpH+KGLFbPGORIrRqcxQ+Cv51ZtOpaQ5/zRsw0iuNjeNGn\r\nwIZrpg1ayi+A6lw6Vi0xYJiUNgHZy5u9RfMI8gXpFn2WCvvbLCmfmQbULSP8\r\nwlnrogF4QGmz6vBg2cWTEFzTjVKXK/aCCNd8Y6pXe+W9+4SPAs3OMNkKJ3TY\r\nq2/ws4EZfP0f4mQqC3yWgcViS2/f7Xtz1dqkcnIi4xwwf1gtTpndB6nUC9d2\r\nuXTYrRjKAPL0/pZLAJbJqXWxY/weZ1HVIeQ=\r\n=DI36\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","types":"./src/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"8e6d3f10024e4de8a259f4f0c07e6739c00885e8","scripts":{"test":"cross-env NODE_OPTIONS=--experimental-vm-modules jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","compile":"tsc -b","prepare":"husky install","test:ci":"cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"npm@joshuakgoldberg.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"8.11.0","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"16.16.0","dependencies":{"glob":"8.0.3","chalk":"4.1.2","json5":"2.2.1","lodash":"4.17.21","tslint":"6.1.3","commander":"9.4.0","minimatch":"5.1.0","typescript":"4.7.4","cson-parser":"4.0.9","eslint-config-prettier":"8.5.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.5.1","husky":"8.0.1","eslint":"8.20.0","prettier":"2.7.1","@swc/core":"1.2.218","@swc/jest":"0.2.22","cross-env":"7.0.3","ansi-regex":"6.0.1","@types/glob":"7.2.0","@types/node":"17.0.18","lint-staged":"13.0.3","@types/json5":"0.0.30","@types/lodash":"4.14.182","@types/minimatch":"3.0.5","@typescript-eslint/parser":"5.31.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"5.31.0","eslint-plugin-simple-import-sort":"7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.13.2_1658844501468_0.5728848489935716","host":"s3://npm-registry-packages"}},"2.13.3":{"name":"tslint-to-eslint-config","version":"2.13.3","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.13.3","maintainers":[{"name":"anonymous","email":"npm@joshuakgoldberg.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"f57d53918ad0662fca7a5b67b4dbf05fd9c5627e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.13.3.tgz","fileCount":917,"integrity":"sha512-rIzyHJlClLuvtAfJijl0seqrx20OlEOz6CnMYG6j4wupy7IP4oPSgqz3J72d7MCUIiUKqM9bMNrlvGWyuhHEVw==","signatures":[{"sig":"MEUCIQDdR6lp7r6KzwX7nBAOqF8zDCF6NJNH+OSuUn1glUMOygIgNuf9Ytmm/XhL2Fy4xRGmyu7KueNSWOBKognKrkrhWG4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":523512,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjFAMwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoPqw//WyhqBtxto9hRoiQYf3tsmW3wzA1Y7YpE3tPFzHqJkF+7DhON\r\nwaqCT+q2jB5cOdGjS5dsLuUZ8dFSReeRb9UXMu3ZWAdfpYC52fa1Ttrf6hcl\r\nwzG0qEu31pceSB2BhhWRVD1bKknx3Ig2O3wBfpj/bxBu8GYfoPddvQz54Cmj\r\ngiz7aO+5Da0SQMX+JBxG5uZDxbXJNO7JmPKu3C2x52xzxurgqQbuaGlDQ+4Q\r\nYvku8CiN99zAzcgYv/Z6+rhoPhOYlfeBeekbfQ82VdQdEQoWXMOm8IP4KNJd\r\n475Nu3m8FR84akWRJg4C/Y/ppx29uqSshI4c70pRM2nOJfYbqKxc8OC32e9/\r\ntVwFxXpzfSsilnaDq7TNZojA9rlDfKXODf70DNJg0C2mt7XC/o4r1GPPTNXO\r\n5m75oK7BW9tpHqWuu9yvTCTRkrwFFv6uqimhnhryqFCngjy5Udcwk08c7uze\r\nlRqBrt3+orw4IOquwsFU7tz5YupHDqwqe/RCWekkyQhINgb3IHBLJhbhbUSf\r\ngh9ZJkhRQ0r+1ieOOP9FxhvQi3ywIOGc/WnH467+AFhNjOYqeDJpu39+2u2o\r\ntkDTwQmINv3XQbbrRhfdcU2V7LpsNnNDXAQBqWc2IoshHwREfj0FM82kepT6\r\nRcemX87HQYAoEAcIFdClAyOn7axjls/HXJI=\r\n=eFi4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","types":"./src/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"2d110ab9aadfbbf6522b1557433dd2cacbf0e6b2","scripts":{"test":"cross-env NODE_OPTIONS=--experimental-vm-modules jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","compile":"tsc -b","prepare":"husky install","test:ci":"cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"npm@joshuakgoldberg.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"8.15.1","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"18.7.0","dependencies":{"glob":"8.0.3","chalk":"4.1.2","json5":"2.2.1","lodash":"4.17.21","tslint":"6.1.3","commander":"9.4.0","minimatch":"5.1.0","typescript":"4.8.2","cson-parser":"4.0.9","eslint-config-prettier":"8.5.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.5.1","husky":"8.0.1","eslint":"8.23.0","prettier":"2.7.1","@swc/core":"1.2.246","@swc/jest":"0.2.22","cross-env":"7.0.3","ansi-regex":"6.0.1","@types/glob":"8.0.0","@types/node":"17.0.18","lint-staged":"13.0.3","@types/json5":"0.0.30","@types/lodash":"4.14.184","@types/minimatch":"5.1.2","@typescript-eslint/parser":"5.36.1","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"5.36.1","eslint-plugin-simple-import-sort":"8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.13.3_1662255920140_0.2705840299844866","host":"s3://npm-registry-packages"}},"2.13.4":{"name":"tslint-to-eslint-config","version":"2.13.4","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.13.4","maintainers":[{"name":"anonymous","email":"npm@joshuakgoldberg.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"2e94a9266410b387c6b508443510a545efa3130e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.13.4.tgz","fileCount":917,"integrity":"sha512-8IDtCdiGJSJ3srY2Ule6/aincGTS/sXxm0QOxrzd5RHcodOOh6hcUuuaUdVhf6nVqri9B71DuRYvyHLYOkYbPA==","signatures":[{"sig":"MEQCIQDXBB2DDIqqCpXgi2/kZ1aEShxYCy1BsxA1pOkAjIdzQwIffRUgjJ4ZAvBnup+kNXNAdNxsFmh/+4suNihZWrma+A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":523588,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjt0/JACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr0kg/9GnUXPlMqv8/2GELB5jrJVbqf35SBT7+bfuQyWi8R9fKTZpTd\r\nFmSQy8BHk+viHihVa7ZuZuvdCEq4XAUGzUU7lUeHiSIcApZ2LNMCBIoqXAxE\r\nfSaJ4Yv6LgQJEOCgYgCrXJ1WD48FMw2AnWVJ27EKWYtXwZkBFu5WZHJP78ME\r\nl8PEe4shbzftS9kbxj1A1PugwQlEK2IIKAsPNITHbmJz8g3CcJ3D71RdZa1m\r\nlDtRb7Yk5/8URXemyf94H7boD9HvM3NLpXc0urPKC+kLvDoPKEjAU5BHbwC9\r\nPbFLW9XkS7fE20Xr8p61xduoHo6Bzy82fYqMUHCuxyBXNNcwXUZAz/gjaDWO\r\nY1lhNUU7+sMkA/ISUYdzrWflM30PK/7sAKpXFuqQjhJwzN+vZZSTxuS9IVnQ\r\nBTOIOAPhbCwNTNUOwvJZKIxKoJH3ve+GTFvBFDX4xwM6WWjYOetzTH+reVPP\r\nO+8GwaMW5PEKgOIZamwt9fF+QVpmJwIcRr+qUQDMD2owUJFJCD0FY7WHUK6N\r\nONBvTldvEXExlvmGiYoOCBTRiDfFb5XRoe1rJBry3X4WkJgvcsL7gimuWWYg\r\nQgq9Nh3fA59kUGg87ikOvTxBArjT78iW25YYz1VkBgg0bW0GBPO1d4LES5MW\r\n29cy0PUQioGgVrosV8AZUkJmqO6LkwxbYJ8=\r\n=C904\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","types":"./src/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"1f36477ec6626dd18b2f58cc880fc22a8cb766ce","scripts":{"test":"cross-env NODE_OPTIONS=--experimental-vm-modules jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","compile":"tsc -b","prepare":"husky install","test:ci":"cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"npm@joshuakgoldberg.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"8.15.1","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"18.7.0","dependencies":{"glob":"8.0.3","chalk":"4.1.2","json5":"2.2.3","lodash":"4.17.21","tslint":"6.1.3","commander":"9.4.1","minimatch":"5.1.2","typescript":"4.9.4","cson-parser":"4.0.9","eslint-config-prettier":"8.6.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.5.1","husky":"8.0.3","eslint":"8.31.0","prettier":"2.8.1","@swc/core":"1.3.24","@swc/jest":"0.2.24","cross-env":"7.0.3","ansi-regex":"6.0.1","@types/glob":"8.0.0","@types/node":"18.11.18","lint-staged":"13.1.0","@types/json5":"0.0.30","@types/lodash":"4.14.191","@types/minimatch":"5.1.2","@typescript-eslint/parser":"5.41.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"5.41.0","eslint-plugin-simple-import-sort":"8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.13.4_1672957897633_0.5501809148257204","host":"s3://npm-registry-packages"}},"2.14.0":{"name":"tslint-to-eslint-config","version":"2.14.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.14.0","maintainers":[{"name":"anonymous","email":"npm@joshuakgoldberg.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"bbcd05389b62e2c98ded9499e147d8e44fba7a6c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.14.0.tgz","fileCount":917,"integrity":"sha512-rQVB4U9/bkQbvRsoz9XyKky2BVaeCIW1NXT4P/dUamvtRDmmPrBpOt6OAhCj+Wcs0IEcsb2eV6/Ojy+VFYX+DQ==","signatures":[{"sig":"MEUCIQCZv9WjekaeLN/rH0iXkpoBMGdpt1SCuLRHLPnBFdHIbAIgXnvRt+/yklnDcijXf62WnkK5BB3idS+aut2tpS4MrA8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":526053,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj9TAxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoMRg/9G1yi+qCxMgcUJfQHj4Oz1oUyJRVxEQL81u7qavy6LfkV0F1t\r\nO6daV1hUEvRxhEogN14JLumr9s4VFuj7olJrr6eyDEn0KmpMILCiK2fGlrAl\r\nJPo+fZtxcA40dZ3G8UGdoMIPQtBUxiRlWVmsm4+wiKGxqvMm90M29oqkXRcL\r\nPQTDJiryM2gEbDnLNgYjprOcpXSDNKG/vj9dEbywamSgK9D8MFiybjb6EYT0\r\njK/IQp8z1LiDo0BySvmv9/Pl3pPafCDm77NPfBHaQ5lOWoyaw95siqiNPQ+T\r\nLYPm+Ihsj0wzly5303uF2GoVxISGo/TYeXxZ8N4I0ACqb5/BjCfrn66cW9v3\r\n/md7xGzQA0bsPKELvrhwtWWXu8AYF5egDWALspxvh/ZiI99uRrlFe2WcWg4s\r\n/GNb+5pg6BPti3keuCw+/nQsA0iVCnZFChxcoYkjix5nExV131k03CrnWQe0\r\nqRVTL3lDB63aBOKCaC/X2vqXFt5/IPBGyO3LavzPeb9D8wgKE4hfrTWG1o7X\r\nrdvjOF2VVzX9xTliYkhCtq1PvFfgcEs3mb8xXZcCqS8dpv3C4CTNlZSoaCfE\r\nPTBF6Xi3tjj/f0qtmPYzmt1BKOBeitFBbhRUj9BDC7xx8WuhTDPbHEttDBDh\r\nd0L01Nz7W7O9l9IeeyUiliVkjSH+VQ612ZQ=\r\n=Bpvu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./src/index.js","types":"./src/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"b2a9332572d1e8a3f52de0400843d1b9fd97eaa0","scripts":{"test":"cross-env NODE_OPTIONS=--experimental-vm-modules jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","compile":"tsc -b","prepare":"husky install","test:ci":"cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"npm@joshuakgoldberg.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"8.15.0","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"18.7.0","dependencies":{"glob":"8.1.0","chalk":"4.1.2","json5":"2.2.3","lodash":"4.17.21","tslint":"6.1.3","commander":"10.0.0","minimatch":"5.1.6","typescript":"4.9.5","cson-parser":"4.0.9","eslint-config-prettier":"8.6.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.5.1","husky":"8.0.3","eslint":"8.34.0","prettier":"2.8.4","@swc/core":"1.3.36","@swc/jest":"0.2.24","cross-env":"7.0.3","ansi-regex":"6.0.1","@types/glob":"8.0.1","@types/node":"18.14.0","lint-staged":"13.1.2","@types/json5":"0.0.30","@types/lodash":"4.14.191","@types/minimatch":"5.1.2","@typescript-eslint/parser":"5.41.0","@types/eslint-config-prettier":"6.11.0","@typescript-eslint/eslint-plugin":"5.41.0","eslint-plugin-simple-import-sort":"10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.14.0_1677013041388_0.5550544819012888","host":"s3://npm-registry-packages"}},"2.14.1":{"name":"tslint-to-eslint-config","version":"2.14.1","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.14.1","maintainers":[{"name":"anonymous","email":"npm@joshuakgoldberg.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"032bf4e5323791ac2f8f02c916b9f2998b46b659","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.14.1.tgz","fileCount":918,"integrity":"sha512-CwTd9NH+fYPYHY27fiyD2YJ63R/yf2hh3V1DktoyIiAMtyYjA6zbFYEabn24RUfFM3n9sS4gmmfWnS+Bx/2HGw==","signatures":[{"sig":"MEQCIDeghAi4s1DeUbSET/DTaAS01o/SFP87ppW9AII42CBcAiAseA1wAkft+JTPqnukyKUcV3vI/rjt61KU+N6DnMSuEw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":527602},"main":"./src/index.js","types":"./src/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"f4912a177a0de1395d6471bf61a7dfe8f632afb5","scripts":{"test":"cross-env NODE_OPTIONS=--experimental-vm-modules jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","compile":"tsc -b","prepare":"husky install","test:ci":"cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"npm@joshuakgoldberg.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"9.6.6","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"20.2.0","dependencies":{"glob":"10.3.9","chalk":"4.1.2","json5":"2.2.3","lodash":"4.17.21","tslint":"6.1.3","commander":"11.0.0","minimatch":"5.1.6","typescript":"4.9.5","cson-parser":"4.0.9","eslint-config-prettier":"9.0.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.5.1","husky":"8.0.3","eslint":"8.51.0","prettier":"3.0.3","@swc/core":"1.3.92","@swc/jest":"0.2.29","cross-env":"7.0.3","ansi-regex":"6.0.1","@types/glob":"8.1.0","@types/node":"18.18.4","lint-staged":"13.1.2","@types/json5":"0.0.30","@types/lodash":"4.14.199","@types/minimatch":"5.1.2","@typescript-eslint/parser":"5.53.0","@types/eslint-config-prettier":"6.11.1","@typescript-eslint/eslint-plugin":"5.53.0","eslint-plugin-simple-import-sort":"10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.14.1_1696888016542_0.1997570337006127","host":"s3://npm-registry-packages"}},"2.14.2":{"name":"tslint-to-eslint-config","version":"2.14.2","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.14.2","maintainers":[{"name":"anonymous","email":"npm@joshuakgoldberg.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"1c2f6d5e1c7c1a1f3d221c0a28da513ca192e28a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.14.2.tgz","fileCount":918,"integrity":"sha512-+Qwd3EDjSkyRAjZWa/amrazE2zWt4frckPwEKyrjP1Ib5rLTI8GA2o6wt1o/bGTSXBsgFGlkU2SWpPJ3cyLU0g==","signatures":[{"sig":"MEYCIQD/GhDmsChBt2VkDcTKmLDktAoRLx9gy1tWhMHduZJWAwIhAJ8u3g8ZClvicfM/w/OCmnkq96JU18oYPVqEmZ055nGg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":527603},"main":"./src/index.js","types":"./src/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"539ff5f366e0b7740a26c65fe6c32f7fa396c9bb","scripts":{"test":"cross-env NODE_OPTIONS=--experimental-vm-modules jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","compile":"tsc -b","prepare":"husky install","test:ci":"cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"npm@joshuakgoldberg.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"9.6.6","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"20.2.0","dependencies":{"glob":"10.3.9","chalk":"4.1.2","json5":"2.2.3","lodash":"4.17.21","tslint":"6.1.3","commander":"11.1.0","minimatch":"5.1.6","typescript":"4.9.5","cson-parser":"4.0.9","eslint-config-prettier":"9.1.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.5.1","husky":"8.0.3","eslint":"8.55.0","prettier":"3.1.0","@swc/core":"1.3.100","@swc/jest":"0.2.29","cross-env":"7.0.3","ansi-regex":"6.0.1","@types/glob":"8.1.0","@types/node":"20.10.4","lint-staged":"13.1.2","@types/json5":"0.0.30","@types/lodash":"4.14.202","@types/minimatch":"5.1.2","@typescript-eslint/parser":"5.53.0","@types/eslint-config-prettier":"6.11.3","@typescript-eslint/eslint-plugin":"5.53.0","eslint-plugin-simple-import-sort":"10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.14.2_1702065766275_0.5901128210267905","host":"s3://npm-registry-packages"}},"2.14.3":{"name":"tslint-to-eslint-config","version":"2.14.3","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.14.3","maintainers":[{"name":"anonymous","email":"npm@joshuakgoldberg.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"2521b84fdc74f139cbb09ba830a96ad9ae73e7f8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.14.3.tgz","fileCount":918,"integrity":"sha512-OltqwZArgvxeNWAZbi9KnJWNa+ASt6ilEhiCRXmDnOAx8OaWzmlWL/93suuZG18dfgAYqZrNuE8HM6cZW2Dzdg==","signatures":[{"sig":"MEUCIAl8HkzTlPTBWdznUo2UT1LavuBlcpVD/xXj6o4dtd3cAiEAuZIe1FA3lLP+UVWJS80rV5EkOnvTZSPwuMyd7ZCFnHk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":527444},"main":"./src/index.js","types":"./src/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"b72bea2879c6c009106da1c03ef9b098480225d8","scripts":{"test":"cross-env NODE_OPTIONS=--experimental-vm-modules jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","compile":"tsc -b","prepare":"husky install","test:ci":"cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"npm@joshuakgoldberg.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"9.6.6","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"20.2.0","dependencies":{"glob":"10.3.9","chalk":"4.1.2","json5":"2.2.3","lodash":"4.17.21","tslint":"6.1.3","commander":"11.1.0","minimatch":"5.1.6","typescript":"4.9.5","cson-parser":"4.0.9","eslint-config-prettier":"9.1.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.5.1","husky":"8.0.3","eslint":"8.55.0","prettier":"3.1.0","@swc/core":"1.3.100","@swc/jest":"0.2.29","cross-env":"7.0.3","ansi-regex":"6.0.1","@types/glob":"8.1.0","@types/node":"20.10.4","lint-staged":"13.1.2","@types/json5":"0.0.30","@types/lodash":"4.14.202","@types/minimatch":"5.1.2","@typescript-eslint/parser":"5.53.0","@types/eslint-config-prettier":"6.11.3","@typescript-eslint/eslint-plugin":"5.53.0","eslint-plugin-simple-import-sort":"10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.14.3_1702065804655_0.17690904150988063","host":"s3://npm-registry-packages"}},"2.15.0":{"name":"tslint-to-eslint-config","version":"2.15.0","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","_id":"tslint-to-eslint-config@2.15.0","maintainers":[{"name":"anonymous","email":"npm@joshuakgoldberg.com"}],"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"dist":{"shasum":"f4602e72f4a03b964a72440034c2e18981df469b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.15.0.tgz","fileCount":918,"integrity":"sha512-QqFTtCdIg5MDvpoGp8uApXIYdEtcA4QKmjdOFvefzRdnCSFTqT2rTUhdtE/CZjgVQ/8Ka5ZcYlwsdaYCNRK1hg==","signatures":[{"sig":"MEUCIQCmkUSmG31LsZtGkcMHDWHfyB22jG+bx/HSu+Yw1tj4AQIgNuwTqIM9KExaDtKfsBvU/XqzQ/b/6VSEfFkx5zXKVAM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":527542},"main":"./src/index.js","types":"./src/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"e29a0b5ea4392b516c1f18c0a045b14e49d282c1","scripts":{"test":"cross-env NODE_OPTIONS=--experimental-vm-modules jest","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","compile":"tsc -b","prepare":"husky install","test:ci":"cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","precommit":"lint-staged","prettier:write":"npm run prettier -- --write"},"_npmUser":{"name":"anonymous","email":"npm@joshuakgoldberg.com"},"repository":{"url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git","type":"git"},"_npmVersion":"11.4.2","description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","directories":{},"lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"_nodeVersion":"24.3.0","dependencies":{"glob":"10.3.9","chalk":"4.1.2","json5":"2.2.3","lodash":"4.17.21","tslint":"6.1.3","commander":"11.1.0","minimatch":"5.1.6","typescript":"4.9.5","cson-parser":"4.0.9","eslint-config-prettier":"9.1.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.5.1","husky":"8.0.3","eslint":"8.57.1","prettier":"3.5.3","@swc/core":"1.3.104","@swc/jest":"0.2.29","cross-env":"7.0.3","ansi-regex":"6.1.0","@types/glob":"8.1.0","@types/node":"22.15.18","lint-staged":"13.1.2","@types/json5":"2.2.0","@types/lodash":"4.17.16","@types/minimatch":"5.1.2","@typescript-eslint/parser":"5.53.0","@types/eslint-config-prettier":"6.11.3","@typescript-eslint/eslint-plugin":"5.53.0","eslint-plugin-simple-import-sort":"12.1.1"},"_npmOperationalInternal":{"tmp":"tmp/tslint-to-eslint-config_2.15.0_1762295380658_0.7398857716520735","host":"s3://npm-registry-packages-npm-production"}},"2.16.0":{"bin":{"tslint-to-eslint-config":"bin/tslint-to-eslint-config"},"bugs":{"url":"https://github.com/typescript-eslint/tslint-to-eslint-config/issues"},"description":"Converts your TSLint configuration to the closest reasonable ESLint equivalent.","engines":{"node":">=14.0.0"},"dependencies":{"chalk":"4.1.2","commander":"14.0.2","cson-parser":"4.0.9","eslint-config-prettier":"10.1.8","glob":"13.0.0","json5":"2.2.3","lodash":"4.17.21","minimatch":"5.1.6","tslint":"6.1.3","typescript":"4.9.5"},"devDependencies":{"@swc/core":"1.15.7","@swc/jest":"0.2.39","@types/eslint-config-prettier":"6.11.3","@types/json5":"2.2.0","@types/lodash":"4.17.21","@types/minimatch":"5.1.2","@types/node":"22.19.3","@typescript-eslint/eslint-plugin":"5.53.0","@typescript-eslint/parser":"5.53.0","ansi-regex":"6.2.2","cross-env":"10.1.0","eslint":"8.57.1","eslint-plugin-simple-import-sort":"12.1.1","husky":"9.1.7","jest":"27.5.1","lint-staged":"16.2.7","prettier":"3.7.4"},"homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme","keywords":["eslint","tslint","lint","configuration"],"license":"MIT","lint-staged":{"**/*.{js,json,ts,xml,yaml}":["prettier --write"]},"main":"./src/index.js","name":"tslint-to-eslint-config","repository":{"type":"git","url":"git+https://github.com/typescript-eslint/tslint-to-eslint-config.git"},"scripts":{"compile":"tsc -b","eslint":"eslint \"./src/*.ts\" \"./src/**/*.ts\" --report-unused-disable-directives","precommit":"lint-staged","prepare":"husky install","prettier":"prettier \"./src/*.{js,json,ts,xml,yaml}\" \"./src/**/*.{js,json,ts,xml,yaml}\" --ignore-path .prettierignore","prettier:write":"npm run prettier -- --write","test":"cross-env NODE_OPTIONS=--experimental-vm-modules jest","test:ci":"cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --maxWorkers=2"},"version":"2.16.0","_id":"tslint-to-eslint-config@2.16.0","gitHead":"c8aea27f19f77be72cec3d28f71939984a20f595","types":"./src/index.d.ts","_nodeVersion":"24.3.0","_npmVersion":"11.4.2","dist":{"integrity":"sha512-9i9eyxL7DygpPq/GqnDXJ9iYw0ydqXw/VzlmH0GQUFSR+VAfkcEy4LBJXwW5FDG8JI7+EF42HPI3FFdusP3CDw==","shasum":"167894ac762276ffefecc05e71fbac83ce3a0e43","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/tslint-to-eslint-config/-/tslint-to-eslint-config-2.16.0.tgz","fileCount":917,"unpackedSize":538088,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIHcHotilNZqgWw05EYDGkYWfw/Ado5MlJLbA2e+NREx4AiEAtTvNm1ue6Qy4xD95nkwz8z3+ZWsluTKAVtgl3XZmD74="}]},"_npmUser":{"name":"anonymous","email":"npm@joshuakgoldberg.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"npm@joshuakgoldberg.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/tslint-to-eslint-config_2.16.0_1766246363968_0.8537547531447942"},"_hasShrinkwrap":false}},"name":"tslint-to-eslint-config","time":{"created":"2019-07-01T02:17:09.515Z","modified":"2025-12-20T15:59:24.322Z","0.1.0":"2019-07-01T02:17:09.708Z","0.1.1":"2019-07-01T02:24:41.175Z","0.1.2":"2019-07-01T02:26:17.550Z","0.1.3":"2019-07-01T02:27:23.332Z","0.1.4":"2019-07-01T02:28:27.411Z","0.1.5":"2019-07-01T02:29:31.225Z","0.1.6":"2019-07-01T02:30:37.086Z","0.1.7":"2019-07-01T04:05:48.648Z","0.1.8":"2019-07-05T22:54:18.818Z","0.1.9":"2019-07-08T15:20:31.482Z","0.2.0":"2019-07-16T17:22:24.364Z","0.2.1":"2019-07-20T22:04:56.720Z","0.2.2":"2019-07-20T22:34:01.503Z","0.2.3":"2019-08-06T12:47:11.816Z","0.2.4":"2019-08-14T12:58:20.788Z","0.2.5":"2019-08-27T12:09:36.810Z","0.2.6":"2019-09-18T21:36:55.251Z","0.2.7":"2019-10-05T00:09:43.703Z","0.2.8":"2019-10-10T17:47:47.962Z","0.2.9":"2019-10-26T01:58:59.874Z","0.2.10":"2019-10-27T18:38:11.252Z","0.2.11":"2019-10-29T23:00:15.068Z","0.3.0":"2019-11-16T01:42:28.424Z","0.3.1":"2019-11-16T13:34:18.765Z","0.4.0":"2019-12-17T01:38:21.705Z","0.5.0":"2019-12-24T16:48:58.895Z","0.5.1":"2020-02-10T00:08:14.643Z","0.6.0":"2020-04-20T20:43:00.259Z","0.7.0":"2020-04-26T22:06:16.543Z","0.7.1":"2020-04-27T14:45:10.208Z","1.0.0-beta":"2020-04-27T14:46:15.636Z","1.0.0-beta1":"2020-05-09T22:59:44.937Z","1.0.0-beta2":"2020-05-11T04:31:57.105Z","1.0.0":"2020-05-23T22:01:17.959Z","1.1.0":"2020-07-29T01:38:40.686Z","1.2.0":"2020-08-09T17:40:10.709Z","1.3.0":"2020-08-11T16:17:26.992Z","1.4.0":"2020-09-15T17:58:46.192Z","1.5.0":"2020-09-19T18:13:21.725Z","2.0.0-beta0":"2020-10-14T20:51:26.997Z","2.0.0-beta1":"2020-10-16T15:11:33.296Z","2.0.0-beta2":"2020-11-07T01:57:26.847Z","2.0.0-beta3":"2020-11-08T18:12:52.632Z","2.0.0-beta4":"2020-11-08T19:28:08.067Z","2.0.0-beta5":"2020-11-10T14:58:20.920Z","2.0.0":"2020-11-15T18:13:24.648Z","2.0.1":"2020-11-24T10:38:00.775Z","2.1.0":"2021-01-11T01:47:16.072Z","2.2.0":"2021-03-01T04:13:06.809Z","2.3.0":"2021-04-18T14:02:10.453Z","2.4.0":"2021-05-13T16:30:37.284Z","2.4.1":"2021-05-16T18:11:09.755Z","2.4.2":"2021-05-19T00:57:19.101Z","2.5.0":"2021-05-27T19:06:14.480Z","2.6.0":"2021-05-28T13:24:50.073Z","2.7.0":"2021-07-06T04:34:41.745Z","2.8.0":"2021-07-07T11:52:29.225Z","2.9.0":"2021-07-07T11:55:31.700Z","2.9.1":"2021-07-14T17:18:56.306Z","2.9.2":"2021-08-26T21:45:57.676Z","2.10.0":"2021-09-20T03:41:51.508Z","2.10.1":"2021-10-17T23:30:50.361Z","2.11.0":"2022-02-22T15:25:40.793Z","3.0.0-alpha.0":"2022-02-25T03:01:46.533Z","3.0.0-alpha.1":"2022-02-25T18:48:24.370Z","2.12.0":"2022-03-01T22:33:35.843Z","2.12.1":"2022-03-01T22:38:10.049Z","2.12.2":"2022-03-01T22:39:24.711Z","2.12.3":"2022-03-05T17:13:25.790Z","2.13.0":"2022-05-03T18:50:27.696Z","2.13.1":"2022-07-22T14:05:39.320Z","2.13.2":"2022-07-26T14:08:21.662Z","2.13.3":"2022-09-04T01:45:20.346Z","2.13.4":"2023-01-05T22:31:37.822Z","2.14.0":"2023-02-21T20:57:21.514Z","2.14.1":"2023-10-09T21:46:56.765Z","2.14.2":"2023-12-08T20:02:46.478Z","2.14.3":"2023-12-08T20:03:25.042Z","2.15.0":"2025-11-04T22:29:40.922Z","2.16.0":"2025-12-20T15:59:24.122Z"},"readmeFilename":"README.md","homepage":"https://github.com/typescript-eslint/tslint-to-eslint-config#readme"}