gitextract_002anttn/ ├── .asf.yaml ├── .eslintignore ├── .eslintrc.yml ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── BUG_REPORT.md │ │ ├── FEATURE_REQUEST.md │ │ └── SUPPORT_QUESTION.md │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── ci.yml │ └── release-audit.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .ratignore ├── CONTRIBUTING.md ├── DOCUMENTATION.md ├── LICENSE ├── NOTICE ├── README.md ├── RELEASENOTES.md ├── bin/ │ └── templates/ │ ├── cordova/ │ │ ├── Api.js │ │ ├── defaults.xml │ │ ├── version │ │ └── version.bat │ └── platform_www/ │ ├── cdv-electron-main.js │ ├── cdv-electron-preload.js │ ├── cdv-electron-settings.json │ ├── cdv-reserved-scheme.json │ └── config.xml ├── cordova-js-src/ │ ├── confighelper.js │ ├── exec.js │ └── platform.js ├── lib/ │ ├── Api.js │ ├── ManifestJsonParser.js │ ├── PackageJsonParser.js │ ├── SettingJsonParser.js │ ├── build/ │ │ ├── base.json │ │ ├── darwin.json │ │ ├── linux.json │ │ └── win32.json │ ├── build.js │ ├── check_reqs.js │ ├── clean.js │ ├── create.js │ ├── handler.js │ ├── parser.js │ ├── prepare.js │ ├── run.js │ └── util.js ├── licence_checker.yml ├── package.json └── tests/ └── spec/ ├── coverage.json ├── fixtures/ │ ├── test-app-with-electron-plugin/ │ │ ├── config.xml │ │ ├── package.json │ │ ├── platforms/ │ │ │ └── electron/ │ │ │ ├── config.xml │ │ │ ├── cordova/ │ │ │ │ ├── Api.js │ │ │ │ ├── defaults.xml │ │ │ │ ├── version │ │ │ │ └── version.bat │ │ │ ├── electron.json │ │ │ ├── platform_www/ │ │ │ │ └── config.xml │ │ │ └── www/ │ │ │ ├── config.xml │ │ │ ├── cordova_plugins.js │ │ │ └── package.json │ │ ├── plugins/ │ │ │ └── cordova-plugin-sample/ │ │ │ ├── package.json │ │ │ ├── plugin.xml │ │ │ ├── src/ │ │ │ │ └── electron/ │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ └── www/ │ │ │ └── sample.js │ │ └── www/ │ │ └── index.html │ ├── test-browser-plugin/ │ │ ├── plugin.xml │ │ └── www/ │ │ └── plugin.js │ ├── test-config-1.xml │ ├── test-config-2.xml │ ├── test-config-custom-scheme.xml │ ├── test-config-empty.xml │ ├── test-config-no-author-custom-email.xml │ ├── test-non-electron-plugin/ │ │ └── plugin.xml │ ├── testapp/ │ │ ├── config.xml │ │ └── cordova/ │ │ └── .gitkeep │ ├── testplugin/ │ │ ├── plugin.xml │ │ ├── src/ │ │ │ └── electron/ │ │ │ └── sample.json │ │ └── www/ │ │ └── plugin.js │ └── testplugin-empty-jsmodule/ │ ├── plugin.xml │ └── www/ │ └── MyTestPlugin2.js ├── unit/ │ └── lib/ │ ├── Api.spec.js │ ├── ManifestJsonParser.spec.js │ ├── PackageJsonParser.spec.js │ ├── SettingJsonParser.spec.js │ ├── build.spec.js │ ├── clean.spec.js │ ├── create.spec.js │ ├── handler.spec.js │ ├── parser.spec.js │ ├── prepare.spec.js │ ├── run.spec.js │ └── util.spec.js └── unit.json