Implements hook_library_info().
function file_library_info() {
$libraries['drupal.file'] = array(
'title' => 'File',
'version' => VERSION,
'js' => array(
drupal_get_path('module', 'file') . '/file.js' => array(),
),
'css' => array(
drupal_get_path('module', 'file') . '/file.admin.css',
),
'dependencies' => array(
array(
'system',
'jquery',
),
array(
'system',
'drupal',
),
array(
'system',
'drupalSettings',
),
),
);
return $libraries;
}