JSON list of extensions with their mime types
npm install mime.json



This is the list of file extensions with their mime types, nothing more. The list is extracted from mime-db.
``js
import mime from 'mime.json';
mime['js']; // => 'application/javascript'
mime.json; // => 'application/json'
``