Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pdehaan/grunt-contrib-license-report
Discovers all licenses used in one package and generates a small HTML report
https://github.com/pdehaan/grunt-contrib-license-report
Last synced: 15 days ago
JSON representation
Discovers all licenses used in one package and generates a small HTML report
- Host: GitHub
- URL: https://github.com/pdehaan/grunt-contrib-license-report
- Owner: pdehaan
- License: mit
- Created: 2014-11-10T02:35:32.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-10T16:38:38.000Z (about 10 years ago)
- Last Synced: 2024-10-31T13:13:55.903Z (2 months ago)
- Homepage:
- Size: 95.7 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# grunt-contrib-license-report
[![NPM version](https://badge.fury.io/js/grunt-contrib-license-report.svg)](http://badge.fury.io/js/grunt-contrib-license-report)
[![dependencies](https://david-dm.org/fkscorpion/grunt-contrib-license-report.svg)](https://david-dm.org/fkscorpion/grunt-contrib-license-report)
[![devDependency Status](https://david-dm.org/fkscorpion/grunt-contrib-license-report/dev-status.svg?theme=shields.io)](https://david-dm.org/fkscorpion/grunt-contrib-license-report#info=devDependencies)Discovers all licenses used in one package and generates a small HTML report
## Usage
npm install grunt-contrib-license-report --save-dev
## Configuration
### Load task
grunt.loadNpmTasks('grunt-contrib-license-report');
### Set task options
- `target` (mandatory): relative path to the location, where the report file will be stored.
// Plugin configuration(s).
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),"license-report": {
target: './report/licenses.html'
}
});