Merge pull request #29 from dart-lang/repository_field

populate the repository field; switch to package:lints
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 714c392..e849917 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+## 2.1.1-dev
+
+* Populate the pubspec `repository` field.
+* Switch to using `package:lints`.
+
 ## 2.1.0
 
 * Stable release for null safety.
diff --git a/README.md b/README.md
index 86772e5..1a2c417 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,7 @@
+[![Dart CI](https://github.com/dart-lang/source_map_stack_trace/actions/workflows/test-package.yml/badge.svg)](https://github.com/dart-lang/source_map_stack_trace/actions/workflows/test-package.yml)
+[![pub package](https://img.shields.io/pub/v/source_map_stack_trace.svg)](https://pub.dev/packages/source_map_stack_trace)
+[![package publisher](https://img.shields.io/pub/publisher/source_map_stack_trace.svg)](https://pub.dev/packages/source_map_stack_trace/publisher)
+
 `source_map_stack_trace` is a package for converting stack traces generated by
 dart2js-compiled JavaScript code into readable native Dart stack traces using
 source maps. For example:
diff --git a/analysis_options.yaml b/analysis_options.yaml
index 76c449a..d5e9af7 100644
--- a/analysis_options.yaml
+++ b/analysis_options.yaml
@@ -1,4 +1,5 @@
-include: package:pedantic/analysis_options.yaml
+include: package:lints/recommended.yaml
+
 analyzer:
   strong-mode:
     implicit-casts: false
diff --git a/pubspec.yaml b/pubspec.yaml
index b4de173..e769a84 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,17 +1,17 @@
 name: source_map_stack_trace
-version: 2.1.0
+version: 2.1.1-dev
 description: A package for applying source maps to stack traces.
-homepage: https://github.com/dart-lang/source_map_stack_trace
+repository: https://github.com/dart-lang/source_map_stack_trace
 
 environment:
-  sdk: ">=2.12.0-0 <3.0.0"
+  sdk: ">=2.12.0 <3.0.0"
 
 dependencies:
   path: ^1.8.0
-  stack_trace: ^1.10.0
   source_maps: ^0.10.10
+  stack_trace: ^1.10.0
 
 dev_dependencies:
-  source_span: ^1.8.0-nullsafety
-  test: ^1.16.0-nullsafety
-  pedantic: ^1.10.0-nullsafety
+  lints: ^1.0.0
+  source_span: ^1.8.0
+  test: ^1.16.0