├── .asf.yaml ├── .eslintrc.yml ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ ├── FEATURE_REQUEST.md │ └── SUPPORT_QUESTION.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ └── release-audit.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .ratignore ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── RELEASENOTES.md ├── bin.js ├── doc ├── create.txt ├── createpackagejson.txt ├── install.txt ├── platform.txt ├── summary.txt └── uninstall.txt ├── licence_checker.yml ├── main.js ├── package.json ├── plugman.js ├── spec ├── nopt.interface.spec.js └── support │ └── jasmine.json └── src ├── commands.js └── help.js /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release-audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/.github/workflows/release-audit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/.npmrc -------------------------------------------------------------------------------- /.ratignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/.ratignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/README.md -------------------------------------------------------------------------------- /RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/RELEASENOTES.md -------------------------------------------------------------------------------- /bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/bin.js -------------------------------------------------------------------------------- /doc/create.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/doc/create.txt -------------------------------------------------------------------------------- /doc/createpackagejson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/doc/createpackagejson.txt -------------------------------------------------------------------------------- /doc/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/doc/install.txt -------------------------------------------------------------------------------- /doc/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/doc/platform.txt -------------------------------------------------------------------------------- /doc/summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/doc/summary.txt -------------------------------------------------------------------------------- /doc/uninstall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/doc/uninstall.txt -------------------------------------------------------------------------------- /licence_checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/licence_checker.yml -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/package.json -------------------------------------------------------------------------------- /plugman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/plugman.js -------------------------------------------------------------------------------- /spec/nopt.interface.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/spec/nopt.interface.spec.js -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/spec/support/jasmine.json -------------------------------------------------------------------------------- /src/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/src/commands.js -------------------------------------------------------------------------------- /src/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-plugman/HEAD/src/help.js --------------------------------------------------------------------------------