├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .mocharc.yml ├── .nycrc.yml ├── .sonarcloud.properties ├── .travis.yml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── ci-analysis.js ├── package.json ├── specs ├── .eslintrc.js ├── index-test.js ├── resources │ ├── fake_project_with_basic_package_file │ │ ├── coverage │ │ │ └── lcov.info │ │ └── package.json │ ├── fake_project_with_complete_package_file │ │ ├── package.json │ │ └── xunit.xml │ ├── fake_project_with_jest_report_file │ │ ├── jest-coverage │ │ │ └── lcov.info │ │ └── package.json │ ├── fake_project_with_no_package_file │ │ └── index.js │ ├── fake_project_with_nyc_report_file │ │ ├── nyc-coverage │ │ │ └── lcov.info │ │ └── package.json │ ├── fake_project_with_scoped_package_name │ │ └── package.json │ └── fake_project_with_sonar_properties_file │ │ └── sonar-project.properties ├── sonar-scanner-executable-test.js └── sonar-scanner-params-test.js └── src ├── bin └── sonar-scanner ├── index.js ├── sonar-scanner-executable.js └── sonar-scanner-params.js /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/.mocharc.yml -------------------------------------------------------------------------------- /.nycrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/.nycrc.yml -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/.sonarcloud.properties -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/README.md -------------------------------------------------------------------------------- /ci-analysis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/ci-analysis.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/package.json -------------------------------------------------------------------------------- /specs/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/specs/.eslintrc.js -------------------------------------------------------------------------------- /specs/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/specs/index-test.js -------------------------------------------------------------------------------- /specs/resources/fake_project_with_basic_package_file/coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/specs/resources/fake_project_with_basic_package_file/coverage/lcov.info -------------------------------------------------------------------------------- /specs/resources/fake_project_with_basic_package_file/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/specs/resources/fake_project_with_basic_package_file/package.json -------------------------------------------------------------------------------- /specs/resources/fake_project_with_complete_package_file/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/specs/resources/fake_project_with_complete_package_file/package.json -------------------------------------------------------------------------------- /specs/resources/fake_project_with_complete_package_file/xunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/specs/resources/fake_project_with_complete_package_file/xunit.xml -------------------------------------------------------------------------------- /specs/resources/fake_project_with_jest_report_file/jest-coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/specs/resources/fake_project_with_jest_report_file/jest-coverage/lcov.info -------------------------------------------------------------------------------- /specs/resources/fake_project_with_jest_report_file/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/specs/resources/fake_project_with_jest_report_file/package.json -------------------------------------------------------------------------------- /specs/resources/fake_project_with_no_package_file/index.js: -------------------------------------------------------------------------------- 1 | // some code 2 | -------------------------------------------------------------------------------- /specs/resources/fake_project_with_nyc_report_file/nyc-coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/specs/resources/fake_project_with_nyc_report_file/nyc-coverage/lcov.info -------------------------------------------------------------------------------- /specs/resources/fake_project_with_nyc_report_file/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/specs/resources/fake_project_with_nyc_report_file/package.json -------------------------------------------------------------------------------- /specs/resources/fake_project_with_scoped_package_name/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/specs/resources/fake_project_with_scoped_package_name/package.json -------------------------------------------------------------------------------- /specs/resources/fake_project_with_sonar_properties_file/sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/specs/resources/fake_project_with_sonar_properties_file/sonar-project.properties -------------------------------------------------------------------------------- /specs/sonar-scanner-executable-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/specs/sonar-scanner-executable-test.js -------------------------------------------------------------------------------- /specs/sonar-scanner-params-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/specs/sonar-scanner-params-test.js -------------------------------------------------------------------------------- /src/bin/sonar-scanner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/src/bin/sonar-scanner -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/src/index.js -------------------------------------------------------------------------------- /src/sonar-scanner-executable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/src/sonar-scanner-executable.js -------------------------------------------------------------------------------- /src/sonar-scanner-params.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellingard/sonar-scanner-npm/HEAD/src/sonar-scanner-params.js --------------------------------------------------------------------------------