Remove Javascript generated by Comments

You could remove scripts in the following manner.

function custom_remove_scripts() {
    wp_dequeue_script('comment-reply');
}
add_action( 'wp_enqueue_scripts', 'custom_remove_scripts' );