Fix the confusing `_lib` names in //scouting

After helping Wesley with a question, I realized that calling the
libraries `_lib` is not helpful. Instead, we should just use the names
specified in the BUILD files.

Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: I936ba1316fd1d38cc592fd512aeea8e50411c6c4
diff --git a/scouting/www/BUILD b/scouting/www/BUILD
index 93bcbb2..04cd677 100644
--- a/scouting/www/BUILD
+++ b/scouting/www/BUILD
@@ -15,12 +15,12 @@
     ],
     deps = [
         "//:node_modules/@angular/animations",
-        "//scouting/www/driver_ranking:_lib",
-        "//scouting/www/entry:_lib",
-        "//scouting/www/match_list:_lib",
-        "//scouting/www/notes:_lib",
-        "//scouting/www/shift_schedule:_lib",
-        "//scouting/www/view:_lib",
+        "//scouting/www/driver_ranking",
+        "//scouting/www/entry",
+        "//scouting/www/match_list",
+        "//scouting/www/notes",
+        "//scouting/www/shift_schedule",
+        "//scouting/www/view",
     ],
 )