You could create an extension method to do something like this using existing mappings for individual items:
public static class AutoMapperExtensions
{
public static List MapList(this IMapper mapper, List source)
{
return mapper.Map>(source);
}
}
Usage:
List peopleVM = _mapper.MapList(people);