How/Where is editor.min.js Added to the wp-admin Post Page?

WordPress concatenates scripts via the script-loader.php file.

You can disable the concatenation of scripts by adding this to your wp-config.php:

define('CONCATENATE_SCRIPTS', false);

You can load the non-minified versions by adding this to wp-config.php:

define('SCRIPT_DEBUG', true);