0.3.0 • Published 2 years ago

monorepo-license-checker v0.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

monorepo-license-checker

This is a simple wrapper for license-checker-rseidelsohn that allows you to check the license of your monorepo.

CLI Usage

$ npm install -g monorepo-license-checker
$ cd your-monorepo
$ monorepo-license-checker

CLI Options

$ monorepo-license-checker --help

Options:
  --json                        Output in JSON format.
  --csv                         Output in CSV format.
  --markdown                    Output in markdown list format.
  --markdown-table              Output in markdown table format.
  --exclude-private-packages    Restrict output to not include any package marked as private.
  --help                        The text you are reading right now :)

Call programmatically

import { checkLicenses } from 'monorepo-license-checker';

const cwd = process.cwd();
checkLicenses(cwd).then((models) => {
    console.log(models);
})
0.3.0

2 years ago

0.2.0

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago