Switch from package:html5lib to package:html. Fixes https://github.com/dart-lang/initialize/issues/35
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6c50378..097eb20 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.6.0+4
+
+* Switch `html5lib` package dependency to `html`.
+
 ## 0.6.0+3
 
 * Make sure to always use the canonical libraries and super declarations in
diff --git a/lib/transformer.dart b/lib/transformer.dart
index 078c34d..bf4520f 100644
--- a/lib/transformer.dart
+++ b/lib/transformer.dart
@@ -13,8 +13,8 @@
 import 'package:code_transformers/src/dart_sdk.dart' as dart_sdk;
 import 'package:dart_style/dart_style.dart';
 import 'package:glob/glob.dart';
-import 'package:html5lib/dom.dart' as dom;
-import 'package:html5lib/parser.dart' show parse;
+import 'package:html/dom.dart' as dom;
+import 'package:html/parser.dart' show parse;
 import 'package:path/path.dart' as path;
 
 import 'build/initializer_plugin.dart';
diff --git a/pubspec.yaml b/pubspec.yaml
index a05326e..3374d3c 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: initialize
-version: 0.6.0+3
+version: 0.6.0+4
 author: Polymer.dart Authors <web@dartlang.org>
 description: Generic building blocks for doing static initialization.
 homepage: https://github.com/dart-lang/initialize
@@ -9,7 +9,7 @@
   code_transformers: '>=0.2.7 <0.3.0'
   dart_style: '>=0.1.3 <0.2.0'
   glob: ">=1.0.4 <2.0.0"
-  html5lib: '>=0.12.0 <0.13.0'
+  html: '>=0.12.0 <0.13.0'
   path: '>=1.3.0 <2.0.0'
 dev_dependencies:
   test_package: