├── .github └── CODEOWNERS ├── .gitignore ├── LICENSE ├── README.md ├── docs └── getting-started.md ├── examples └── npm-mime-types-2.1.26-scan-result.json ├── orthw └── orthwconfig-template /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @fviernau @tsteenbe 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oss-review-toolkit/orthw-shell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oss-review-toolkit/orthw-shell/HEAD/README.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oss-review-toolkit/orthw-shell/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /examples/npm-mime-types-2.1.26-scan-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oss-review-toolkit/orthw-shell/HEAD/examples/npm-mime-types-2.1.26-scan-result.json -------------------------------------------------------------------------------- /orthw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oss-review-toolkit/orthw-shell/HEAD/orthw -------------------------------------------------------------------------------- /orthwconfig-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oss-review-toolkit/orthw-shell/HEAD/orthwconfig-template --------------------------------------------------------------------------------