Update the README and pubspec for this package.
diff --git a/README.md b/README.md
index 289911b..9a832fd 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,6 @@
-# sample
+# Conversion utilities package
 
-A library for Dart developers. It is awesome.
-
-## Features and bugs
-
-Please file feature requests and bugs at the [issue tracker][tracker].
-
-[tracker]: https://github.com/dart-lang/sample/issues
+This package contains encoders and decoders for converting between different
+data representations. It's the external counterpart of the `dart:convert` core
+library, and contains less-central APIs and APIs that need more flexible
+versioning.
diff --git a/pubspec.yaml b/pubspec.yaml
index 212a763..a7b179c 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,14 +1,11 @@
-name: sample
+name: convert
 version: 0.0.1
-description: A sample library.
+description: Utilities for converting between data representations.
 author: Dart Team <misc@dartlang.org>
-homepage: https://github.com/dart-lang/sample
+homepage: https://github.com/dart-lang/convert
 
 environment:
-  sdk: '>=1.0.0 <2.0.0'
+  sdk: '>=1.8.0 <2.0.0'
 
-#dependencies:
-#  lib_name: any
 dev_dependencies:
-# change this to a specific version range when you create your project
-  test: any
+  test: '^1.12.0'