├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── file-type-icons.png ├── fonts ├── devicons.woff ├── font-mfizz.woff └── fontawesome-webfont.woff ├── package.json ├── styles ├── file-type-icons.less ├── fonts.less ├── icons.less └── nuclide-file-type-icons.less └── test-files ├── .test ├── .yardopts ├── package.json └── test-symlink.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/file-type-icons/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/file-type-icons/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/file-type-icons/HEAD/README.md -------------------------------------------------------------------------------- /file-type-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/file-type-icons/HEAD/file-type-icons.png -------------------------------------------------------------------------------- /fonts/devicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/file-type-icons/HEAD/fonts/devicons.woff -------------------------------------------------------------------------------- /fonts/font-mfizz.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/file-type-icons/HEAD/fonts/font-mfizz.woff -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/file-type-icons/HEAD/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/file-type-icons/HEAD/package.json -------------------------------------------------------------------------------- /styles/file-type-icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/file-type-icons/HEAD/styles/file-type-icons.less -------------------------------------------------------------------------------- /styles/fonts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/file-type-icons/HEAD/styles/fonts.less -------------------------------------------------------------------------------- /styles/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/file-type-icons/HEAD/styles/icons.less -------------------------------------------------------------------------------- /styles/nuclide-file-type-icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/file-type-icons/HEAD/styles/nuclide-file-type-icons.less -------------------------------------------------------------------------------- /test-files/.test: -------------------------------------------------------------------------------- 1 | This file should have the configuration sliders icon. 2 | -------------------------------------------------------------------------------- /test-files/.yardopts: -------------------------------------------------------------------------------- 1 | This file should have the settings "gear" icon. 2 | -------------------------------------------------------------------------------- /test-files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-dohm/file-type-icons/HEAD/test-files/package.json -------------------------------------------------------------------------------- /test-files/test-symlink.json: -------------------------------------------------------------------------------- 1 | package.json --------------------------------------------------------------------------------