{"id":20488162,"url":"https://github.com/mwittig/grunt-license-crawler","last_synced_at":"2025-08-07T04:38:59.757Z","repository":{"id":30396851,"uuid":"33949593","full_name":"mwittig/grunt-license-crawler","owner":"mwittig","description":"Grunt task for npm-license-crawler. Analyzes license information for multiple node.js modules (package.json files) as part of your software project.","archived":false,"fork":false,"pushed_at":"2020-03-17T03:02:10.000Z","size":14,"stargazers_count":1,"open_issues_count":2,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-19T04:41:44.131Z","etag":null,"topics":["grunt-plugin","license","license-management","license-scan","licensing"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mwittig.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-04-14T18:31:55.000Z","updated_at":"2019-03-17T01:04:48.000Z","dependencies_parsed_at":"2022-09-04T14:23:00.922Z","dependency_job_id":null,"html_url":"https://github.com/mwittig/grunt-license-crawler","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/mwittig/grunt-license-crawler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwittig%2Fgrunt-license-crawler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwittig%2Fgrunt-license-crawler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwittig%2Fgrunt-license-crawler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwittig%2Fgrunt-license-crawler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mwittig","download_url":"https://codeload.github.com/mwittig/grunt-license-crawler/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mwittig%2Fgrunt-license-crawler/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269201153,"owners_count":24377447,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-07T02:00:09.698Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["grunt-plugin","license","license-management","license-scan","licensing"],"created_at":"2024-11-15T16:55:39.823Z","updated_at":"2025-08-07T04:38:59.740Z","avatar_url":"https://github.com/mwittig.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# grunt-license-crawler\nGrunt task for [npm-license-crawler](https://www.npmjs.com/package/npm-license-crawler). Analyzes license information for multiple node.js modules (package.json files) as part of your software project.\n\n## Getting Started\nThis plugin requires Grunt `~0.4.1`\n\nIf you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out \nthe [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create \na [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. \nOnce you're familiar with that process, you may install this plugin with this command:\n\n```shell\nnpm install grunt-license-crawler --save-dev\n```\n\nOnce the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:\n\n```js\ngrunt.loadNpmTasks('grunt-license-crawler');\n```\n\n## The \"license-crawler\" task\n\n### Overview\n\nIn your project's Gruntfile, add a section named `license-crawler` to the data object passed into `grunt.initConfig()`.\n\n```js\ngrunt.initConfig({\n  'license-crawler': {\n    your_target: {\n      // Target-specific file lists and/or options go here.\n    },\n  },\n})\n```\n\n### Options\n\n#### options.start\nType: `Array\u003cString\u003e`\nDefault value: [ `.` ]\n\nPath to the directory the license search should start from. Multiple paths can be specified.\n\n#### options.exclude\n\nType: `Array\u003cString\u003e`\nDefault Value: `undefined`\n\nPath to a directory to be excluded (and its subdirectories) from the search. Multiple paths can be specified.\n\n#### options.unknown\nType: `Boolean`\nDefault value: `false`\n\nOnly generate a list of licenses that can't be determined or have been guessed.\n\n#### options.dependencies\nType: `Boolean`\nDefault value: `false`\n\nOnly generate a list of third-party licenses, i.e., only list the dependencies defined in package.json.\n\n#### options.json\nType: `String`\nDefault Value: `undefined`\n\nExport data as JSON to the given file path. Be cautious, the task will overwrite file if exists!\n\n#### options.csv\nType: `String`\nDefault Value: `undefined`\n\nExport data as CSV to the given file path. Be cautious, the task will overwrite file if exists!\n\n#### options.omitVersion\nType: `Boolean`\nDefault value: `false`\n\nDon't display versions in result (e.g. \"npm-license-crawler@0.1.5\" becomes \"npm-license-crawler\")\n\n#### options.onlyDirectDependencies\nType: `Boolean`\nDefault value: `false`\n\nShow only direct dependencies licenses, i.e., don't list dependencies of dependencies.\n\n#### options.relativeLicensePath\nType: `Boolean`\nDefault value: `false`\n\nOutput the relative file path for license files.\n\n\n## History\n\n* 20150414, V0.0.1\n    * Initial Version\n* 20150819, V0.0.2\n    * Updated to npm-license-crawler@0.1.0 (thanks @Kienz)\n* 20160108, V0.0.3\n    * Revised README\n    * Updated to npm-license-crawler@0.1.1\n    * Updated license info as part of package descriptor. Now using SPDX license tag.\n* 20160311, V0.0.4\n    * Updated to npm-license-crawler@0.1.3\n* 20160419, V0.0.5\n    * Updated to npm-license-crawler@0.1.4 which includes bug fix for CSV files\n    * Added travis-ci build descriptor\n* 20180220, V0.0.6\n    * Updated to npm-license-crawler@0.1.7 which includes new options\n    * Added documentation for new options","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmwittig%2Fgrunt-license-crawler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmwittig%2Fgrunt-license-crawler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmwittig%2Fgrunt-license-crawler/lists"}