gitextract_ufb8xnx0/ ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── support.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .markdownlint.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── bin/ │ ├── dev/ │ │ └── release │ └── n ├── docs/ │ ├── changing-node-location.md │ └── proxy-server.md ├── package.json └── test/ ├── bin/ │ └── run-all-tests ├── docker-base.yml ├── docker-compose.yml ├── dockerfiles/ │ ├── Dockerfile-fedora-curl │ ├── Dockerfile-ubuntu-curl │ └── Dockerfile-ubuntu-wget ├── tests/ │ ├── install-contents.bats │ ├── install-options.bats │ ├── install-versions.bats │ ├── lookup.bats │ ├── ls.bats │ ├── lsr.bats │ ├── offline.bats │ ├── run-which.bats │ ├── shared-functions.bash │ ├── uninstall.bats │ ├── version-auto-priority.bats │ ├── version-resolve-auto-engine.bats │ ├── version-resolve-auto-file.bats │ ├── version-resolve-auto-nvmrc.bats │ └── version-resolve.bats └── tests.md