Błąd Angularjs Nieznany dostawca

Próbuję wyświetlić skonfigurowane wartościauthor iversion w usłudze wartości kątowej na stronie html. Kod wersji jest wyświetlany dobrze, ale nie jest nazwą autora. Oto kod html

    <!doctype html>
<html lang="en" ng-app="myApp">
<head>
  <meta charset="utf-8">
  <title>My AngularJS App</title>
  <link rel="stylesheet" href="css/app.css"/>
</head>
<body>
  <ul class="menu">
    <li><a href="#/view1">view1</a></li>
    <li><a href="#/view2">view2</a></li>
  </ul>

  <div ng-view></div>

  <div>Angular seed app: v<span app-version></span></div>
  <div>Author is : <span app-author></span></div>


  <script src="lib/angular/angular.js"></script>
  <script src="js/app.js"></script>
  <script src="js/services.js"></script>
  <script src="js/controllers.js"></script>
  <script src="js/filters.js"></script>
  <script src="js/directives.js"></script>
</body>
</html>

Oto dyrektywa ...

angular.module('myApp.directives', []).
  directive('appVersion', ['version', function(version) {
    return function(scope, elm, attrs) {
      elm.text(version);
    };
  }])
  .directive('appAuthor', ['author', function(author) {
    return function(scope, elm, attrs){
        elm.text(author);
    };
  }]);

I tutaj jest część serwisowaauthor iversion wartości są skonfigurowane

    angular.module('myApp.services', []).
  value('version', '0.1')
  .value('author','JIM');

Błąd, który dostaję w konsoli programisty to

Error: Unknown provider: authorProvider <- author <- appAuthorDirective

questionAnswers(2)

yourAnswerToTheQuestion