in case anyone is looking, this works:
if ( is_front_page() && post_type_exists('featured_post') ) { // We are at the front page, and the post type 'featured_post' is registered.
$hasposts = get_posts( 'post_type=featured_post' ); // lets check if there is any posts in the 'featured_post' post type.
if( $hasposts ) { // If we found some posts, lets enqueue the script
wp_enqueue_script ('flexslider-js');
}
}