Update template files.
diff --git a/.test_config b/.test_config
index 352d2fe..f49dd2f 100644
--- a/.test_config
+++ b/.test_config
@@ -1,3 +1,5 @@
 { 
-  "test_package": true
+  "test_package": {
+    "platforms": ["vm"]
+  }
 }
diff --git a/README.md b/README.md
index 289911b..f1f3bfd 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,7 @@
-# sample
+A package that provides a [shelf][] handler for serving a `packages/` directory.
+It's intended to be usable as the first handler in a [`Cascade`][cascade], where
+any requests that include `/packages/` are served package assets, and all other
+requests cascade to additional handlers.
 
-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
+[shelf]: http://github.com/dart-lang/shelf
+[cascade]: http://www.dartdocs.org/documentation/shelf/latest/index.html#shelf/shelf.Cascade
diff --git a/pubspec.yaml b/pubspec.yaml
index 212a763..33b3459 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,14 +1,11 @@
-name: sample
-version: 0.0.1
-description: A sample library.
+name: shelf_packages_handler
+version: 1.0.0-dev
+description: A shelf handler for serving a `packages/` directory.
 author: Dart Team <misc@dartlang.org>
-homepage: https://github.com/dart-lang/sample
+homepage: https://github.com/dart-lang/shelf_packages_handler
 
 environment:
-  sdk: '>=1.0.0 <2.0.0'
+  sdk: '>=1.9.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: '^0.12.0'