https://github.com/defuncart/dart_dependencies_report
A package which generates a report of all a project's dependencies.
https://github.com/defuncart/dart_dependencies_report
Last synced: 2 months ago
JSON representation
A package which generates a report of all a project's dependencies.
- Host: GitHub
- URL: https://github.com/defuncart/dart_dependencies_report
- Owner: defuncart
- License: mit
- Created: 2020-06-21T10:52:27.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-20T15:32:26.000Z (over 4 years ago)
- Last Synced: 2025-02-16T04:29:03.950Z (4 months ago)
- Language: Dart
- Size: 69.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# dart_dependencies_report
A package which generates a report of all a project's dependencies.
## Example
Firstly add `dart_dependencies_report` as a dev dependency:
```yml
dart_dependencies_report:
git:
url: https://github.com/defuncart/dart_dependencies_report
```From the project's root run
```sh
flutter pub run dart_dependencies_report
```which will create `dependencies_report.md` in `/reports`. To optionally specify output path, filename and filetypes, add the following settings to `pubspec.yaml`:
```yaml
dart_dependencies_report:
title: Dependencies Report
output_dir: ''
output_filename: dependencies_report
generate_pdf: true
generate_md: true
```