├── .all-contributorsrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── ci.yml │ └── codeql-analysis.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── dist ├── npm-to-yarn.mjs ├── npm-to-yarn.mjs.map ├── npm-to-yarn.umd.js ├── npm-to-yarn.umd.js.map └── types │ ├── command.d.ts │ ├── index.d.ts │ ├── npmToBun.d.ts │ ├── npmToPnpm.d.ts │ ├── npmToYarn.d.ts │ ├── utils.d.ts │ └── yarnToNpm.d.ts ├── jest.config.js ├── package.json ├── rollup.config.mjs ├── src ├── command.ts ├── index.ts ├── npmToBun.ts ├── npmToPnpm.ts ├── npmToYarn.ts ├── utils.ts └── yarnToNpm.ts ├── test.html ├── test ├── commands.spec.ts └── index.spec.ts ├── tsconfig.eslint.json └── tsconfig.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/README.md -------------------------------------------------------------------------------- /dist/npm-to-yarn.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/dist/npm-to-yarn.mjs -------------------------------------------------------------------------------- /dist/npm-to-yarn.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/dist/npm-to-yarn.mjs.map -------------------------------------------------------------------------------- /dist/npm-to-yarn.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/dist/npm-to-yarn.umd.js -------------------------------------------------------------------------------- /dist/npm-to-yarn.umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/dist/npm-to-yarn.umd.js.map -------------------------------------------------------------------------------- /dist/types/command.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/dist/types/command.d.ts -------------------------------------------------------------------------------- /dist/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/dist/types/index.d.ts -------------------------------------------------------------------------------- /dist/types/npmToBun.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/dist/types/npmToBun.d.ts -------------------------------------------------------------------------------- /dist/types/npmToPnpm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/dist/types/npmToPnpm.d.ts -------------------------------------------------------------------------------- /dist/types/npmToYarn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/dist/types/npmToYarn.d.ts -------------------------------------------------------------------------------- /dist/types/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/dist/types/utils.d.ts -------------------------------------------------------------------------------- /dist/types/yarnToNpm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/dist/types/yarnToNpm.d.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /src/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/src/command.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/npmToBun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/src/npmToBun.ts -------------------------------------------------------------------------------- /src/npmToPnpm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/src/npmToPnpm.ts -------------------------------------------------------------------------------- /src/npmToYarn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/src/npmToYarn.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/yarnToNpm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/src/yarnToNpm.ts -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/test.html -------------------------------------------------------------------------------- /test/commands.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/test/commands.spec.ts -------------------------------------------------------------------------------- /test/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/test/index.spec.ts -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgub/npm-to-yarn/HEAD/tsconfig.json --------------------------------------------------------------------------------