grunt-license-reportをREADME通りにインストールして使えない人向けの記事
Node.jsを使ってサービスを作っている時に、npmでインストールしたライブラリのライセンスを調べる必要性が出てきたので、ライセンスの一覧表的な物を生成できないか調べてみた。
結論
生成できた
レベルで言うとどの位の人向けの記事?
npmとgrunt-cliが分かるレベルの人向け
どのぐらい適当な記事?
動けば良いや程度の記事(Gruntfile.js以外は理解した上で書いています)
やり方
メモ: grunt-license-reportのリポジトリなのだが、少し修正しないと動かない部分があるので記事にした
https://github.com/Fkscorpion/grunt-license-report
{
"name": "必須",
"version": "必須",
"dependencies": {
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-license-report": "0.0.8"
}
}
↑dependenciesの部分に使いたいライブラリ名等を入れておくこと
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-license-report');
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
"grunt-license-report": {
output: {
path: './report/licenses',
format: 'html'
}
}
});
};
$ npm install
$ grunt grunt-license-report
↓Done.が出ればOK (入れてるライブラリで表示変わると思う)
Running "grunt-license-report" task
scanning ./
>> UNKNOWN LICENSE for [email protected]
>> UNKNOWN LICENSE for [email protected]
>> UNKNOWN LICENSE for [email protected]
>> UNKNOWN LICENSE for [email protected]
>> UNKNOWN LICENSE for [email protected]
>> UNKNOWN LICENSE for [email protected]
>> UNKNOWN LICENSE for [email protected]
>> UNKNOWN LICENSE for [email protected]
>> UNKNOWN LICENSE for [email protected]
>> UNKNOWN LICENSE for [email protected]
File ./report/licenses.html created.
Done.
./report/licenses.html
を見てこのような表が生成されていれば成功です。
参考にした記事
Author And Source
この問題について(grunt-license-reportをREADME通りにインストールして使えない人向けの記事), 我々は、より多くの情報をここで見つけました https://qiita.com/come25136/items/650fd34317b32f0c14bc著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .