gitextract_c_u851k3/ ├── .babelrc ├── .github/ │ └── ISSUE_TEMPLATE.md ├── .gitignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── checkpoint/ │ ├── LICENSE │ ├── README.md │ ├── dist-node/ │ │ ├── index.bin.js │ │ └── index.js │ ├── dist-src/ │ │ ├── commands/ │ │ │ └── build.js │ │ ├── config.js │ │ ├── constants.js │ │ ├── errors.js │ │ ├── index.js │ │ ├── reporters/ │ │ │ ├── base-reporter.js │ │ │ ├── console/ │ │ │ │ ├── console-reporter.js │ │ │ │ ├── helpers/ │ │ │ │ │ └── tree-helper.js │ │ │ │ ├── progress-bar.js │ │ │ │ ├── spinner-progress.js │ │ │ │ └── util.js │ │ │ ├── format.js │ │ │ ├── index.js │ │ │ ├── json-reporter.js │ │ │ ├── lang/ │ │ │ │ ├── en.js │ │ │ │ └── index.js │ │ │ ├── noop-reporter.js │ │ │ └── types.js │ │ ├── types.js │ │ └── util/ │ │ ├── babel-plugin-import-rewrite.js │ │ ├── babel-validate-specifier.js │ │ ├── blocking-queue.js │ │ ├── child.js │ │ ├── conversion.js │ │ ├── execute-lifecycle-script.js │ │ ├── fix-cmd-win-slashes.js │ │ ├── fs-normalized.js │ │ ├── fs.js │ │ ├── map.js │ │ ├── misc.js │ │ ├── normalize-manifest/ │ │ │ ├── fix.js │ │ │ ├── for-publish.js │ │ │ ├── index.js │ │ │ ├── infer-license.js │ │ │ ├── licenses.js │ │ │ ├── typos.js │ │ │ ├── util.js │ │ │ └── validate.js │ │ ├── promise.js │ │ └── signal-handler.js │ ├── dist-types/ │ │ ├── commands/ │ │ │ └── build.d.ts │ │ ├── config.d.ts │ │ ├── constants.d.ts │ │ ├── errors.d.ts │ │ ├── index.d.ts │ │ ├── reporters/ │ │ │ ├── base-reporter.d.ts │ │ │ ├── console/ │ │ │ │ ├── console-reporter.d.ts │ │ │ │ ├── helpers/ │ │ │ │ │ └── tree-helper.d.ts │ │ │ │ ├── progress-bar.d.ts │ │ │ │ ├── spinner-progress.d.ts │ │ │ │ └── util.d.ts │ │ │ ├── format.d.ts │ │ │ ├── index.d.ts │ │ │ ├── json-reporter.d.ts │ │ │ ├── lang/ │ │ │ │ ├── en.d.ts │ │ │ │ └── index.d.ts │ │ │ ├── noop-reporter.d.ts │ │ │ └── types.d.ts │ │ ├── types.d.ts │ │ └── util/ │ │ ├── babel-plugin-import-rewrite.d.ts │ │ ├── babel-validate-specifier.d.ts │ │ ├── blocking-queue.d.ts │ │ ├── child.d.ts │ │ ├── conversion.d.ts │ │ ├── execute-lifecycle-script.d.ts │ │ ├── fix-cmd-win-slashes.d.ts │ │ ├── fs-normalized.d.ts │ │ ├── fs.d.ts │ │ ├── map.d.ts │ │ ├── misc.d.ts │ │ ├── normalize-manifest/ │ │ │ ├── fix.d.ts │ │ │ ├── for-publish.d.ts │ │ │ ├── index.d.ts │ │ │ ├── infer-license.d.ts │ │ │ ├── licenses.d.ts │ │ │ ├── typos.d.ts │ │ │ ├── util.d.ts │ │ │ └── validate.d.ts │ │ ├── promise.d.ts │ │ └── signal-handler.d.ts │ └── package.json ├── package.json ├── src/ │ ├── commands/ │ │ └── build.ts │ ├── config.ts │ ├── constants.ts │ ├── errors.ts │ ├── index.ts │ ├── reporters/ │ │ ├── base-reporter.ts │ │ ├── console/ │ │ │ ├── console-reporter.ts │ │ │ ├── helpers/ │ │ │ │ └── tree-helper.ts │ │ │ ├── progress-bar.ts │ │ │ ├── spinner-progress.ts │ │ │ └── util.ts │ │ ├── format.ts │ │ ├── index.ts │ │ ├── json-reporter.ts │ │ ├── lang/ │ │ │ ├── en.ts │ │ │ └── index.ts │ │ ├── noop-reporter.ts │ │ └── types.ts │ ├── types.ts │ └── util/ │ ├── babel-plugin-import-rewrite.ts │ ├── babel-validate-specifier.ts │ ├── blocking-queue.ts │ ├── child.ts │ ├── conversion.ts │ ├── execute-lifecycle-script.ts │ ├── fix-cmd-win-slashes.ts │ ├── fs-normalized.ts │ ├── fs.ts │ ├── map.ts │ ├── misc.ts │ ├── normalize-manifest/ │ │ ├── fix.ts │ │ ├── for-publish.ts │ │ ├── index.ts │ │ ├── infer-license.ts │ │ ├── licenses.ts │ │ ├── typos.ts │ │ ├── util.ts │ │ └── validate.ts │ ├── promise.ts │ └── signal-handler.ts └── tsconfig.json