dart_pubspec_licenses 1.0.1 dart_pubspec_licenses: ^1.0.1 copied to clipboard
A library to make it easy to extract OSS license information from Dart packages using pubspec.yaml
Introduction #
dart_pubspec_licenses is a package that helps gather and assemble OSS license info using pubspec.lock
.
Installation #
dependencies:
dart_pubspec_licenses: ^1.0.1
Usage #
import 'package:dart_pubspec_licenses/dart_pubspec_licenses.dart' as oss;
void main() async {
final pubspecLockPath = "path/to/pubspec.lock";
final info = await oss.generateLicenseInfo(
pubspecLockPath: project.pubspecLockPath);
print(info);
}
Reporting issues #
Report any bugs on the project's issues.