Skip to content

Instantly share code, notes, and snippets.

@renevo
Created August 27, 2015 05:48
Show Gist options
  • Save renevo/f13a2ecec36810859492 to your computer and use it in GitHub Desktop.
Save renevo/f13a2ecec36810859492 to your computer and use it in GitHub Desktop.
Simple way to output all licenses
console.log('This is how wars begin');
var checker = require('license-checker');
checker.init({
start: './'
}, function(json) {
Object.keys(json).forEach(function(license) {
console.log('%s License: %s', license, json[license].licenses);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment