{"_id":"famfamfam-flags","_rev":"31-22d54c5ba1b136359b30f78f815aabe2","name":"famfamfam-flags","time":{"modified":"2022-06-17T23:27:16.342Z","created":"2014-02-27T21:11:14.875Z","0.1.0":"2014-02-27T21:11:17.973Z","0.2.0":"2015-03-10T01:50:45.524Z","0.2.1":"2015-03-10T01:58:58.991Z","0.2.2":"2015-03-10T06:46:33.181Z","0.2.3":"2015-03-10T21:26:55.733Z","0.2.4":"2015-03-10T21:52:06.060Z","0.3.1":"2015-03-18T18:10:46.270Z","0.3.2":"2015-03-19T16:42:18.149Z","0.3.3":"2015-03-22T15:08:39.691Z","0.3.4":"2015-07-28T04:03:08.236Z","0.3.5":"2015-08-17T13:53:20.400Z","0.4.0":"2015-10-20T11:15:54.664Z","0.4.1":"2015-12-22T13:05:09.930Z","0.5.0":"2016-01-19T13:41:40.182Z","0.5.1":"2016-02-15T09:46:18.479Z","1.0.0":"2016-02-18T11:19:03.319Z"},"maintainers":[{"name":"t1st3","email":"contact@tiste.org"}],"dist-tags":{"latest":"1.0.0"},"description":"FamFamFam Flags icon pack","readme":"\n# famfamfam-flags\n\n[![NPM version](https://img.shields.io/npm/v/famfamfam-flags.svg)](https://www.npmjs.org/package/famfamfam-flags)\n[![Bower version](https://img.shields.io/bower/v/famfamfam-flags.svg)](http://bower.io/search/?q=famfamfam-flags)\n[![Packagist version](https://img.shields.io/packagist/v/legacy-icons/famfamfam-flags.svg)](https://packagist.org/packages/legacy-icons/famfamfam-flags)\n[![Nuget version](https://img.shields.io/nuget/v/famfamfam-flags.svg)](https://www.nuget.org/packages/famfamfam-flags/)\n\n[![Dependency Status](https://img.shields.io/david/dev/legacy-icons/famfamfam-flags.svg)](https://david-dm.org/legacy-icons/famfamfam-flags)\n[![Build Status](https://img.shields.io/travis/legacy-icons/famfamfam-flags.svg)](https://travis-ci.org/legacy-icons/famfamfam-flags)\n\n\n\n## About\n\nThe `Flags` icon pack, as available on [famfamfam website](http://www.famfamfam.com/lab/icons/flags/).\n\nAll credits for these icons go to their original author: Mark James (mjames@gmail.com)\n\nThe aim of this project is to make this icon pack available through various package managers, such as:\n\n- [NPM](https://npmjs.org)\n- [Bower](http://bower.io)\n- [Packagist](https://packagist.org)\n- [NuGet](https://www.nuget.org)\n\n\nAll icons are supplied in both PNG and GIF formats.\n\n\n## Extensions and updates\n\nA flag has been added to the original package: `gg.png` (or `gg.gif`).\nThis flag was created by [Damien Guard (@damieng)](https://github.com/damieng) (damieng@gmail.com), in the \"add-on\" package for FamFamFam icons named [Silk Companion](http://damieng.com/creative/icons/silk-companion-1-icons).\n\n\nThe flag for Myanmar has been updated: `mm.png` (or `mm.gif`).\nThis flag was updated by [@Lucas](https://github.com/lucas34), and was created from [Wikipedia](https://commons.wikimedia.org/wiki/File:Flag_of_Myanmar-new.jpg).\n\n\nThe project now supports aliases in CSS spritesheets (see below). The feature was brought by [@Rangoo94](https://github.com/Rangoo94). For example, `RE` ([Reunion](https://en.wikipedia.org/wiki/.re)) is an alias for `FR` ([France](https://en.wikipedia.org/wiki/.fr)), since Reunion shares the same flag as France. To see the aliases, please check the [aliases.json file](https://github.com/legacy-icons/famfamfam-flags/blob/master/aliases.json).\n\n\n## CSS spritesheets\n\nYou can insert the icons directly into your HTML with a common IMG tag:\n\n```html\n<img alt=\"French Flag\" src=\"dist/png/fr.png\" width=\"16\" height=\"11\">\n```\n\n\nIn addition to the icons by themselves, this project also ships a CSS spritesheet for the icon-pack. This spritesheet allows to load the entire icon-pack in just 1 image, and thus reduce HTTP calls.\n\nThis is what it actually looks:\n\n![Spritesheet](https://raw.githubusercontent.com/legacy-icons/famfamfam-flags/master/dist/sprite/famfamfam-flags.png)\n\n\nAll the positioning of the icons inside this alone image is made through CSS, which allows you to just add block-type tags with the proper class and get the same result:\n\n```html\n<div class=\"famfamfam-flags fr\"></div>\n```\n\nJust remember to add the CSS stylesheet to the HEAD of your HTML page!\n\n## Install\n\n### NPM\n\n> npm install famfamfam-flags\n\n\n### Bower\n\n> bower install famfamfam-flags\n\n\n### Composer / Packagist\n\n> composer require legacy-icons/famfamfam-flags\n\n\n### NuGet\n\n> Install-Package famfamfam-flags\n\n\n\n## Build the whole project or your custom project\n\nWe use [Gulp](http://gulpjs.com/) to build the project, so if you want to re-build or customize this project, you'll need Gulp.\n\nAfter gulp is installed, and your CLI is pointed to your work directory, first install the dependencies:\n\n**with NPM 2.x.x**\n\n> npm install\n\n**with NPM 3.x.x** (resolve dependencies for `node-spritesheet` before this module's ones)\n\n> npm install grunt grunt-contrib-coffee grunt-contrib-clean\n\n> npm install\n\nthen be sure that you have *[ImageMagick](http://www.imagemagick.org/script/binary-releases.php)* installed for building spritesheet.\n\nthen, you can run the `gulp build` task to build the project:\n\n> gulp build\n\n\n### What the build task does?\n\nFirst, it takes PNG and GIF files from the `src` folder, and tidies them to the `dist` folder.\n\nThen it creates a spritesheet from the PNG images located in the `src` folder, and thus creates the `sprite` folder in `dist`.\n\nIf, for example you just want `fr` and `gg` icons in a spritesheet, you just have to fork this project, point your CLI to the working directory, \nempty the `src` directory, except `fr` and `gg` icons in PNG format, and then run the `gulp build` task.\n\nYou'll get the proper spritesheet and copies of the icons directly in the `dist` folder.\n\n\n## License\n\nSee [License](https://github.com/legacy-icons/famfamfam-flags/blob/master/LICENSE.md)\n","versions":{"1.0.0":{"name":"famfamfam-flags","version":"1.0.0","homepage":"https://github.com/legacy-icons/famfamfam-flags","description":"FamFamFam Flags icon pack","keywords":["icon","flag","img","famfamfam","png","gif"],"license":"MIT","author":{"name":"t1st3","email":"contact@tiste.org","url":"http://www.tiste.org/"},"repository":{"type":"git","url":"git://github.com/legacy-icons/famfamfam-flags.git"},"bugs":{"url":"https://github.com/legacy-icons/famfamfam-flags/issues"},"engines":{"node":">= 0.10.0"},"dependencies":{},"devDependencies":{"chalk":"^1.1.1","del":"^2.2.0","gulp":"^3.9.1","gulp-cssnano":"^2.1.1","gulp-imagemin":"^2.4.0","gulp-rename":"^1.2.2","gulp-replace":"^0.5.4","node-spritesheet":"^0.4.2","qrcode-terminal":"^0.10.0","somebody":"^2.0.0"},"gitHead":"ab8e0ca8a08a3ecc0314452f4f518e24bda8e8ca","_id":"famfamfam-flags@1.0.0","scripts":{},"_shasum":"cd78f776173a2c5962713310dd70c1b141d1103c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.1","_npmUser":{"name":"t1st3","email":"contact@tiste.org"},"maintainers":[{"name":"t1st3","email":"contact@tiste.org"}],"dist":{"shasum":"cd78f776173a2c5962713310dd70c1b141d1103c","tarball":"https://registry.npmjs.org/famfamfam-flags/-/famfamfam-flags-1.0.0.tgz","integrity":"sha512-l7F0/L1I1eozNN9oLoXgqHzBCFjrhuuDwwZkuo9fOHPrreS61bV3Qft+IMyYAqjibnGjTU9/2WovGccSvNYahQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCLYr6dj8xzlsg0NOIxEu0gQhXRt7RwLHHNRL16uk95AgIhAOwJho2bPaj/0usJgxnLQ5Hyc/DPz5Vfd1HDWE9J5gQN"}]},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/famfamfam-flags-1.0.0.tgz_1455794338682_0.6901300323661417"}}},"homepage":"https://github.com/legacy-icons/famfamfam-flags","keywords":["icon","flag","img","famfamfam","png","gif"],"repository":{"type":"git","url":"git://github.com/legacy-icons/famfamfam-flags.git"},"author":{"name":"t1st3","email":"contact@tiste.org","url":"http://www.tiste.org/"},"bugs":{"url":"https://github.com/legacy-icons/famfamfam-flags/issues"},"license":"MIT","readmeFilename":"README.md"}