thirdparties-generator
v1.1.0
Published
Thirdparties file generator for node projects
Downloads
9
Readme
Thirdparties generator
Generate a thirdparties file with all direct dependencies listed under the proper license.
Usage
Install globally with npm and then run it
npm install -g thirdparties-generator
thirdparties-generator
Or run directly with npx
npx thirdparties-generator
| Arg | Alias | Description | |--------------|-------|------------------------------------------------------------------------------------------------| | --projectDir | -p | Project directory in which the dependencies are searched for and the output file is created | | --outFile | -o | Name of the file which is generated by the script | | --verbose | | Verbose mode, log some additional information | | --debug | | Debug mode, log the additional information and the more details on the status of the execution |
Examples
Generate a file THIRDPARTIES in the current folder project
npx thirdparties-generator
Generate a file THIRDPARTIES in the specified project folder in verbose mode
npx thirdparties-generator -p path/to/project --verbose
Generate a file with the given name in the specified project folder
npx thirdparties-generator -p path/to/project -o something