├── .commitlintrc.js ├── .eslintrc.js ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── config.yml ├── actions │ ├── create-check │ │ └── action.yml │ └── install-latest-npm │ │ └── action.yml ├── dependabot.yml ├── matchers │ └── tap.json ├── settings.yml └── workflows │ ├── audit.yml │ ├── ci-release.yml │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── post-dependabot.yml │ ├── pull-request.yml │ ├── release-integration.yml │ └── release.yml ├── .gitignore ├── .npmrc ├── .release-please-manifest.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── bin └── nopt.js ├── lib ├── debug.js ├── nopt-lib.js ├── nopt.js └── type-defs.js ├── package.json ├── release-please-config.json └── test ├── basic.js ├── dynamic-types.js ├── lib.js ├── resolve-short.js ├── type-default.js └── type-defs.js /.commitlintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.commitlintrc.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/actions/create-check/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.github/actions/create-check/action.yml -------------------------------------------------------------------------------- /.github/actions/install-latest-npm/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.github/actions/install-latest-npm/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/matchers/tap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.github/matchers/tap.json -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/workflows/audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.github/workflows/audit.yml -------------------------------------------------------------------------------- /.github/workflows/ci-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.github/workflows/ci-release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/post-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.github/workflows/post-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/release-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.github/workflows/release-integration.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/.npmrc -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "9.0.0" 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/nopt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/bin/nopt.js -------------------------------------------------------------------------------- /lib/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/lib/debug.js -------------------------------------------------------------------------------- /lib/nopt-lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/lib/nopt-lib.js -------------------------------------------------------------------------------- /lib/nopt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/lib/nopt.js -------------------------------------------------------------------------------- /lib/type-defs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/lib/type-defs.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/package.json -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/release-please-config.json -------------------------------------------------------------------------------- /test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/test/basic.js -------------------------------------------------------------------------------- /test/dynamic-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/test/dynamic-types.js -------------------------------------------------------------------------------- /test/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/test/lib.js -------------------------------------------------------------------------------- /test/resolve-short.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/test/resolve-short.js -------------------------------------------------------------------------------- /test/type-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/test/type-default.js -------------------------------------------------------------------------------- /test/type-defs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/nopt/HEAD/test/type-defs.js --------------------------------------------------------------------------------