third-party-license-generator
v1.0.6
Published
this scrip will generate the third party license as a txt file based on the softwares from your application
Downloads
14
Maintainers
Readme
tpl-generator
this scrip will generate third party license content as a txt file based on the included softwares from your application
how to use it
- install the package
npm install third-party-license-generator
oryarn add third-party-license-generator
- go to your scripts folder and create a file
tplGenerator.js
. In this file, you can write:
import tplGenerator from 'third-party-license-generator';
tplGenerator()
- at your app package.json file, you can add
"generate:tpl": "babel-node --presets=es2015 scripts/tplGenerator.js"
to your scripts. Then you can runyarn generate:tpl
to generate txt file.