Once you’ve created the map (which you’ve already done, you don’t need to repeat for Lists), it’s as easy as:
List<PersonView> personViews =
Mapper.Map<List<Person>, List<PersonView>>(people);
You can read more in the AutoMapper documentation for Lists and Arrays.