├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── freedesktop.org.xml ├── mimetype-descriptions-map.js ├── mimetype-descriptions.js ├── package.json └── shared-mime-info-to-json.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myhau/mimetype-descriptions/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | freedesktop.org.xml 2 | shared-mime-info-to-json.py 3 | .idea/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myhau/mimetype-descriptions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myhau/mimetype-descriptions/HEAD/README.md -------------------------------------------------------------------------------- /freedesktop.org.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myhau/mimetype-descriptions/HEAD/freedesktop.org.xml -------------------------------------------------------------------------------- /mimetype-descriptions-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myhau/mimetype-descriptions/HEAD/mimetype-descriptions-map.js -------------------------------------------------------------------------------- /mimetype-descriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myhau/mimetype-descriptions/HEAD/mimetype-descriptions.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myhau/mimetype-descriptions/HEAD/package.json -------------------------------------------------------------------------------- /shared-mime-info-to-json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myhau/mimetype-descriptions/HEAD/shared-mime-info-to-json.py --------------------------------------------------------------------------------