UNPKG

generate-license-file

Version:

Generates a text file containing all of the licenses for your production dependencies

14 lines (13 loc) 459 B
import { LineEnding } from "../lineEndings"; export type LineEndingOption = { /** * Specify the line ending to use in the generated license file: either "lf" or "crlf" * * If you don't specify a line ending then line ending of the operating * system will be used * * This is useful if different operating systems are used by different * people who are working of the same project */ lineEnding?: LineEnding; };