diff --git a/.gitignore b/.gitignore index b509c88..c2658d7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ -coverage/ node_modules/ diff --git a/.travis.yml b/.travis.yml index ec3d575..149c84a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,11 @@ language: node_js node_js: -- stable +- "8" script: -- yarn run lint -- yarn run test -- --verbose --coverage +- yarn lint +- yarn test --ci after_success: - if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then bash ./scripts/deploy.sh; fi diff --git a/LICENSE b/LICENSE index f1b366f..a3ae447 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017 Ika +Copyright (c) Ika (https://github.com/ikatyang) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/jest.json b/jest.json deleted file mode 100644 index 7097e62..0000000 --- a/jest.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "testEnvironment": "node", - "moduleFileExtensions": ["ts", "js", "json"], - "mapCoverage": true, - "coverageReporters": ["lcov", "text-summary"], - "transform": { "\\.ts$": "ts-jest/preprocessor" }, - "testMatch": ["**/*.test.ts"], - "collectCoverageFrom": ["src/**/*.ts"], - "coverageThreshold": { - "global": { - "branches": 100, - "functions": 100, - "lines": 100, - "statements": 100 - } - }, - "reporters": [ - "default", - "jest-playback" - ] -} diff --git a/package.json b/package.json index 8a8adda..313769b 100644 --- a/package.json +++ b/package.json @@ -2,34 +2,38 @@ "name": "emoji-cheat-sheet", "version": "0.0.0-dev", "private": true, - "author": "ikatyang", - "license": "MIT", - "repository": "https://github.com/ikatyang/emoji-cheat-sheet", + "repository": "ikatyang/emoji-cheat-sheet", "homepage": "https://github.com/ikatyang/emoji-cheat-sheet#readme", + "author": { + "name": "Ika", + "email": "ikatyang@gmail.com", + "url": "https://github.com/ikatyang" + }, + "license": "MIT", "scripts": { - "lint": "tslint -p ./tsconfig.json", - "test": "jest -c ./jest.json", - "generate": "ts-node ./scripts/generate.ts ./README.md" + "lint": "tslint -p . --type-check", + "test": "jest", + "generate": "node ./scripts/generate.js > ./README.md" }, "dependencies": { "cheerio": "^0.22.0", - "request": "^2.82.0" + "dedent": "^0.7.0", + "request": "^2.88.0" }, "devDependencies": { "@types/cheerio": "0.22.11", - "@types/jest": "21.1.10", + "@types/dedent": "0.7.0", + "@types/jest": "24.0.11", "@types/node": "8.10.44", "@types/request": "2.48.1", - "jest": "21.2.1", - "jest-playback": "1.0.1", - "prettier": "1.14.3", - "prettier-config-ikatyang": "1.1.1", - "ts-jest": "21.2.4", - "ts-node": "4.1.0", - "tslint": "5.14.0", - "tslint-config-ikatyang": "2.5.1", - "tslint-config-prettier": "1.18.0", + "jest": "24.7.1", + "jest-playback": "2.0.2", + "prettier": "1.16.4", + "tslint": "5.15.0", "tslint-plugin-prettier": "2.0.1", - "typescript": "2.9.2" + "typescript": "3.4.2" + }, + "engines": { + "node": ">= 8" } } diff --git a/playbacks/api.github.com/get+emojis+29da119697.nock.json b/scripts/__playbacks__/api.github.com/get+emojis+29da119697.nock.json similarity index 100% rename from playbacks/api.github.com/get+emojis+29da119697.nock.json rename to scripts/__playbacks__/api.github.com/get+emojis+29da119697.nock.json diff --git a/playbacks/www.emoji-cheat-sheet.com/get+0843d93979.nock.json b/scripts/__playbacks__/www.emoji-cheat-sheet.com/get+0843d93979.nock.json similarity index 100% rename from playbacks/www.emoji-cheat-sheet.com/get+0843d93979.nock.json rename to scripts/__playbacks__/www.emoji-cheat-sheet.com/get+0843d93979.nock.json diff --git a/playbacks/www.webpagefx.com/get+tools-emoji-cheat-sheet+299378c4a2.nock.json b/scripts/__playbacks__/www.webpagefx.com/get+tools-emoji-cheat-sheet+299378c4a2.nock.json similarity index 100% rename from playbacks/www.webpagefx.com/get+tools-emoji-cheat-sheet+299378c4a2.nock.json rename to scripts/__playbacks__/www.webpagefx.com/get+tools-emoji-cheat-sheet+299378c4a2.nock.json diff --git a/playbacks/www.webpagefx.com/get+tools-emoji-cheat-sheet+d1924c8483.nock.json b/scripts/__playbacks__/www.webpagefx.com/get+tools-emoji-cheat-sheet+d1924c8483.nock.json similarity index 100% rename from playbacks/www.webpagefx.com/get+tools-emoji-cheat-sheet+d1924c8483.nock.json rename to scripts/__playbacks__/www.webpagefx.com/get+tools-emoji-cheat-sheet+d1924c8483.nock.json diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 786a71e..e1457c1 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -1,4 +1,4 @@ -yarn run generate +yarn generate git config --global user.name ikatyang-bot git config --global user.email ikatyang+bot@gmail.com diff --git a/scripts/generate.js b/scripts/generate.js new file mode 100644 index 0000000..a3f39f8 --- /dev/null +++ b/scripts/generate.js @@ -0,0 +1,153 @@ +const $ = require("cheerio"); +const dedent = require("dedent"); +const request = require("request"); +const packageJson = require("../package.json"); + +const apiUrl = "https://api.github.com/emojis"; +const sheetUrl = "http://www.emoji-cheat-sheet.com"; + +const columns = 2; + +/** + * @typedef {string} EmojiId + * @typedef {{ [category: string]: EmojiId[] }} EmojiData + */ + +const tocName = "Table of Contents"; +const topName = "top"; +const topHref = "#table-of-contents"; + +async function generateCheatSheet() { + return buildTable(await getData()); +} + +/** + * @returns {Promise} + */ +async function getData() { + const apiHtml = await fetchHtml(apiUrl); + const sheetHtml = await fetchHtml(sheetUrl); + + const apiJson = /** @type {Record} */ (JSON.parse(apiHtml)); + + const emojiIds = Object.keys(apiJson); + const emojiData = /** @type {EmojiData} */ ({}); + + const $html = $.load(sheetHtml).root(); + $html.find("h2").each((_, $category) => { + const localEmojiIds = /** @type {string[]} */ ([]); + const category = $($category).text(); + $html + .find(`#emoji-${category.toLowerCase()} li .name`) + .each((_, $emoji) => { + const emoji = $($emoji).text(); + const index = emojiIds.indexOf(emoji); + if (index !== -1) { + localEmojiIds.push(...emojiIds.splice(index, 1)); + } + }); + emojiData[category] = localEmojiIds; + }); + + if (emojiIds.length !== 0) { + emojiData["Uncategorized"] = emojiIds; + } + + return emojiData; +} + +/** + * @param {EmojiData} emojiData + * @returns {string} + */ +function buildTable(emojiData) { + const travisRepoUrl = `https://travis-ci.org/${packageJson.repository}`; + const travisBadgeUrl = `${travisRepoUrl}.svg?branch=master`; + const categories = Object.keys(emojiData); + return dedent(` + # ${packageJson.name} + + [![build](${travisBadgeUrl})](${travisRepoUrl}) + + This cheat sheet is automatically generated from ${[ + ["GitHub Emoji API", apiUrl], + ["Emoji Cheat Sheet", sheetUrl] + ] + .map(([siteName, siteUrl]) => `[${siteName}](${siteUrl})`) + .join(" and ")}. + + ## ${tocName} + + ${categories + .map(category => `- [${category}](#${category.toLowerCase()})`) + .join("\n")} + + ${categories + .map(category => { + const emojis = emojiData[category]; + return dedent(` + ### ${category} + + ${buildTableHead()} + ${buildTableContent(emojis)} + `); + }) + .join("\n".repeat(2))} + `); +} + +/** + * @param {string[]} emojis + */ +function buildTableContent(emojis) { + let tableContent = ""; + for (let i = 0; i < emojis.length; i += columns) { + const rowEmojis = emojis.slice(i, i + columns); + while (rowEmojis.length < columns) { + rowEmojis.push(""); + } + tableContent += `| [${topName}](${topHref}) |${rowEmojis + .map(x => (x.length !== 0 ? ` :${x}: | \`:${x}:\` ` : " | ")) + .join("|")}|\n`; + } + return tableContent; +} + +function buildTableHead() { + return dedent(` + | |${" ico | emoji |".repeat(columns)} + | - |${" --- | ----- |".repeat(columns)} + `); +} + +/** + * @param {string} url + * @returns {Promise} + */ +async function fetchHtml(url) { + return new Promise((resolve, reject) => { + const options = /** @type {request.Options} */ ({ url }); + if (url === apiUrl) { + options.headers = { + "User-Agent": "https://github.com/ikatyang/emoji-cheat-sheet" + }; + } + request.get(options, (error, response, html) => { + if (!error && response.statusCode === 200) { + resolve(html); + } else { + reject( + error + ? error + : `Unexpected response status code: ${response.statusCode}` + ); + } + }); + }); +} + +if (require.main === /** @type {unknown} */ (module)) { + generateCheatSheet().then(cheatSheet => console.log(cheatSheet)); +} else { + module.exports = generateCheatSheet; +} diff --git a/scripts/generate.test.js b/scripts/generate.test.js new file mode 100644 index 0000000..a6d0c13 --- /dev/null +++ b/scripts/generate.test.js @@ -0,0 +1,807 @@ +require("jest-playback").setup(__dirname); + +const generate = require("./generate"); + +test("emoji-cheat-sheet", async () => { + expect(await generate()).toMatchInlineSnapshot(` + "# emoji-cheat-sheet + + [![build](https://travis-ci.org/ikatyang/emoji-cheat-sheet.svg?branch=master)](https://travis-ci.org/ikatyang/emoji-cheat-sheet) + + This cheat sheet is automatically generated from [GitHub Emoji API](https://api.github.com/emojis) and [Emoji Cheat Sheet](http://www.emoji-cheat-sheet.com). + + ## Table of Contents + + - [People](#people) + - [Nature](#nature) + - [Objects](#objects) + - [Places](#places) + - [Symbols](#symbols) + - [Uncategorized](#uncategorized) + + ### People + + | | ico | emoji | ico | emoji | + | - | --- | ----- | --- | ----- | + | [top](#table-of-contents) | :bowtie: | \`:bowtie:\` | :smile: | \`:smile:\` | + | [top](#table-of-contents) | :laughing: | \`:laughing:\` | :blush: | \`:blush:\` | + | [top](#table-of-contents) | :smiley: | \`:smiley:\` | :relaxed: | \`:relaxed:\` | + | [top](#table-of-contents) | :smirk: | \`:smirk:\` | :heart_eyes: | \`:heart_eyes:\` | + | [top](#table-of-contents) | :kissing_heart: | \`:kissing_heart:\` | :kissing_closed_eyes: | \`:kissing_closed_eyes:\` | + | [top](#table-of-contents) | :flushed: | \`:flushed:\` | :relieved: | \`:relieved:\` | + | [top](#table-of-contents) | :satisfied: | \`:satisfied:\` | :grin: | \`:grin:\` | + | [top](#table-of-contents) | :wink: | \`:wink:\` | :stuck_out_tongue_winking_eye: | \`:stuck_out_tongue_winking_eye:\` | + | [top](#table-of-contents) | :stuck_out_tongue_closed_eyes: | \`:stuck_out_tongue_closed_eyes:\` | :grinning: | \`:grinning:\` | + | [top](#table-of-contents) | :kissing: | \`:kissing:\` | :kissing_smiling_eyes: | \`:kissing_smiling_eyes:\` | + | [top](#table-of-contents) | :stuck_out_tongue: | \`:stuck_out_tongue:\` | :sleeping: | \`:sleeping:\` | + | [top](#table-of-contents) | :worried: | \`:worried:\` | :frowning: | \`:frowning:\` | + | [top](#table-of-contents) | :anguished: | \`:anguished:\` | :open_mouth: | \`:open_mouth:\` | + | [top](#table-of-contents) | :grimacing: | \`:grimacing:\` | :confused: | \`:confused:\` | + | [top](#table-of-contents) | :hushed: | \`:hushed:\` | :expressionless: | \`:expressionless:\` | + | [top](#table-of-contents) | :unamused: | \`:unamused:\` | :sweat_smile: | \`:sweat_smile:\` | + | [top](#table-of-contents) | :sweat: | \`:sweat:\` | :disappointed_relieved: | \`:disappointed_relieved:\` | + | [top](#table-of-contents) | :weary: | \`:weary:\` | :pensive: | \`:pensive:\` | + | [top](#table-of-contents) | :disappointed: | \`:disappointed:\` | :confounded: | \`:confounded:\` | + | [top](#table-of-contents) | :fearful: | \`:fearful:\` | :cold_sweat: | \`:cold_sweat:\` | + | [top](#table-of-contents) | :persevere: | \`:persevere:\` | :cry: | \`:cry:\` | + | [top](#table-of-contents) | :sob: | \`:sob:\` | :joy: | \`:joy:\` | + | [top](#table-of-contents) | :astonished: | \`:astonished:\` | :scream: | \`:scream:\` | + | [top](#table-of-contents) | :neckbeard: | \`:neckbeard:\` | :tired_face: | \`:tired_face:\` | + | [top](#table-of-contents) | :angry: | \`:angry:\` | :rage: | \`:rage:\` | + | [top](#table-of-contents) | :triumph: | \`:triumph:\` | :sleepy: | \`:sleepy:\` | + | [top](#table-of-contents) | :yum: | \`:yum:\` | :mask: | \`:mask:\` | + | [top](#table-of-contents) | :sunglasses: | \`:sunglasses:\` | :dizzy_face: | \`:dizzy_face:\` | + | [top](#table-of-contents) | :imp: | \`:imp:\` | :smiling_imp: | \`:smiling_imp:\` | + | [top](#table-of-contents) | :neutral_face: | \`:neutral_face:\` | :no_mouth: | \`:no_mouth:\` | + | [top](#table-of-contents) | :innocent: | \`:innocent:\` | :alien: | \`:alien:\` | + | [top](#table-of-contents) | :yellow_heart: | \`:yellow_heart:\` | :blue_heart: | \`:blue_heart:\` | + | [top](#table-of-contents) | :purple_heart: | \`:purple_heart:\` | :heart: | \`:heart:\` | + | [top](#table-of-contents) | :green_heart: | \`:green_heart:\` | :broken_heart: | \`:broken_heart:\` | + | [top](#table-of-contents) | :heartbeat: | \`:heartbeat:\` | :heartpulse: | \`:heartpulse:\` | + | [top](#table-of-contents) | :two_hearts: | \`:two_hearts:\` | :revolving_hearts: | \`:revolving_hearts:\` | + | [top](#table-of-contents) | :cupid: | \`:cupid:\` | :sparkling_heart: | \`:sparkling_heart:\` | + | [top](#table-of-contents) | :sparkles: | \`:sparkles:\` | :star: | \`:star:\` | + | [top](#table-of-contents) | :star2: | \`:star2:\` | :dizzy: | \`:dizzy:\` | + | [top](#table-of-contents) | :boom: | \`:boom:\` | :collision: | \`:collision:\` | + | [top](#table-of-contents) | :anger: | \`:anger:\` | :exclamation: | \`:exclamation:\` | + | [top](#table-of-contents) | :question: | \`:question:\` | :grey_exclamation: | \`:grey_exclamation:\` | + | [top](#table-of-contents) | :grey_question: | \`:grey_question:\` | :zzz: | \`:zzz:\` | + | [top](#table-of-contents) | :dash: | \`:dash:\` | :sweat_drops: | \`:sweat_drops:\` | + | [top](#table-of-contents) | :notes: | \`:notes:\` | :musical_note: | \`:musical_note:\` | + | [top](#table-of-contents) | :fire: | \`:fire:\` | :hankey: | \`:hankey:\` | + | [top](#table-of-contents) | :poop: | \`:poop:\` | :shit: | \`:shit:\` | + | [top](#table-of-contents) | :+1: | \`:+1:\` | :thumbsup: | \`:thumbsup:\` | + | [top](#table-of-contents) | :-1: | \`:-1:\` | :thumbsdown: | \`:thumbsdown:\` | + | [top](#table-of-contents) | :ok_hand: | \`:ok_hand:\` | :punch: | \`:punch:\` | + | [top](#table-of-contents) | :facepunch: | \`:facepunch:\` | :fist: | \`:fist:\` | + | [top](#table-of-contents) | :v: | \`:v:\` | :wave: | \`:wave:\` | + | [top](#table-of-contents) | :hand: | \`:hand:\` | :raised_hand: | \`:raised_hand:\` | + | [top](#table-of-contents) | :open_hands: | \`:open_hands:\` | :point_up: | \`:point_up:\` | + | [top](#table-of-contents) | :point_down: | \`:point_down:\` | :point_left: | \`:point_left:\` | + | [top](#table-of-contents) | :point_right: | \`:point_right:\` | :raised_hands: | \`:raised_hands:\` | + | [top](#table-of-contents) | :pray: | \`:pray:\` | :point_up_2: | \`:point_up_2:\` | + | [top](#table-of-contents) | :clap: | \`:clap:\` | :muscle: | \`:muscle:\` | + | [top](#table-of-contents) | :metal: | \`:metal:\` | :fu: | \`:fu:\` | + | [top](#table-of-contents) | :runner: | \`:runner:\` | :running: | \`:running:\` | + | [top](#table-of-contents) | :couple: | \`:couple:\` | :family: | \`:family:\` | + | [top](#table-of-contents) | :two_men_holding_hands: | \`:two_men_holding_hands:\` | :two_women_holding_hands: | \`:two_women_holding_hands:\` | + | [top](#table-of-contents) | :dancer: | \`:dancer:\` | :dancers: | \`:dancers:\` | + | [top](#table-of-contents) | :ok_woman: | \`:ok_woman:\` | :no_good: | \`:no_good:\` | + | [top](#table-of-contents) | :information_desk_person: | \`:information_desk_person:\` | :raising_hand: | \`:raising_hand:\` | + | [top](#table-of-contents) | :bride_with_veil: | \`:bride_with_veil:\` | :person_with_pouting_face: | \`:person_with_pouting_face:\` | + | [top](#table-of-contents) | :person_frowning: | \`:person_frowning:\` | :bow: | \`:bow:\` | + | [top](#table-of-contents) | :couple_with_heart: | \`:couple_with_heart:\` | :massage: | \`:massage:\` | + | [top](#table-of-contents) | :haircut: | \`:haircut:\` | :nail_care: | \`:nail_care:\` | + | [top](#table-of-contents) | :boy: | \`:boy:\` | :girl: | \`:girl:\` | + | [top](#table-of-contents) | :woman: | \`:woman:\` | :man: | \`:man:\` | + | [top](#table-of-contents) | :baby: | \`:baby:\` | :older_woman: | \`:older_woman:\` | + | [top](#table-of-contents) | :older_man: | \`:older_man:\` | :person_with_blond_hair: | \`:person_with_blond_hair:\` | + | [top](#table-of-contents) | :man_with_gua_pi_mao: | \`:man_with_gua_pi_mao:\` | :man_with_turban: | \`:man_with_turban:\` | + | [top](#table-of-contents) | :construction_worker: | \`:construction_worker:\` | :cop: | \`:cop:\` | + | [top](#table-of-contents) | :angel: | \`:angel:\` | :princess: | \`:princess:\` | + | [top](#table-of-contents) | :smiley_cat: | \`:smiley_cat:\` | :smile_cat: | \`:smile_cat:\` | + | [top](#table-of-contents) | :heart_eyes_cat: | \`:heart_eyes_cat:\` | :kissing_cat: | \`:kissing_cat:\` | + | [top](#table-of-contents) | :smirk_cat: | \`:smirk_cat:\` | :scream_cat: | \`:scream_cat:\` | + | [top](#table-of-contents) | :crying_cat_face: | \`:crying_cat_face:\` | :joy_cat: | \`:joy_cat:\` | + | [top](#table-of-contents) | :pouting_cat: | \`:pouting_cat:\` | :japanese_ogre: | \`:japanese_ogre:\` | + | [top](#table-of-contents) | :japanese_goblin: | \`:japanese_goblin:\` | :see_no_evil: | \`:see_no_evil:\` | + | [top](#table-of-contents) | :hear_no_evil: | \`:hear_no_evil:\` | :speak_no_evil: | \`:speak_no_evil:\` | + | [top](#table-of-contents) | :guardsman: | \`:guardsman:\` | :skull: | \`:skull:\` | + | [top](#table-of-contents) | :feet: | \`:feet:\` | :lips: | \`:lips:\` | + | [top](#table-of-contents) | :kiss: | \`:kiss:\` | :droplet: | \`:droplet:\` | + | [top](#table-of-contents) | :ear: | \`:ear:\` | :eyes: | \`:eyes:\` | + | [top](#table-of-contents) | :nose: | \`:nose:\` | :tongue: | \`:tongue:\` | + | [top](#table-of-contents) | :love_letter: | \`:love_letter:\` | :bust_in_silhouette: | \`:bust_in_silhouette:\` | + | [top](#table-of-contents) | :busts_in_silhouette: | \`:busts_in_silhouette:\` | :speech_balloon: | \`:speech_balloon:\` | + | [top](#table-of-contents) | :thought_balloon: | \`:thought_balloon:\` | :feelsgood: | \`:feelsgood:\` | + | [top](#table-of-contents) | :finnadie: | \`:finnadie:\` | :goberserk: | \`:goberserk:\` | + | [top](#table-of-contents) | :godmode: | \`:godmode:\` | :hurtrealbad: | \`:hurtrealbad:\` | + | [top](#table-of-contents) | :rage1: | \`:rage1:\` | :rage2: | \`:rage2:\` | + | [top](#table-of-contents) | :rage3: | \`:rage3:\` | :rage4: | \`:rage4:\` | + | [top](#table-of-contents) | :suspect: | \`:suspect:\` | :trollface: | \`:trollface:\` | + + ### Nature + + | | ico | emoji | ico | emoji | + | - | --- | ----- | --- | ----- | + | [top](#table-of-contents) | :sunny: | \`:sunny:\` | :umbrella: | \`:umbrella:\` | + | [top](#table-of-contents) | :cloud: | \`:cloud:\` | :snowflake: | \`:snowflake:\` | + | [top](#table-of-contents) | :snowman: | \`:snowman:\` | :zap: | \`:zap:\` | + | [top](#table-of-contents) | :cyclone: | \`:cyclone:\` | :foggy: | \`:foggy:\` | + | [top](#table-of-contents) | :ocean: | \`:ocean:\` | :cat: | \`:cat:\` | + | [top](#table-of-contents) | :dog: | \`:dog:\` | :mouse: | \`:mouse:\` | + | [top](#table-of-contents) | :hamster: | \`:hamster:\` | :rabbit: | \`:rabbit:\` | + | [top](#table-of-contents) | :wolf: | \`:wolf:\` | :frog: | \`:frog:\` | + | [top](#table-of-contents) | :tiger: | \`:tiger:\` | :koala: | \`:koala:\` | + | [top](#table-of-contents) | :bear: | \`:bear:\` | :pig: | \`:pig:\` | + | [top](#table-of-contents) | :pig_nose: | \`:pig_nose:\` | :cow: | \`:cow:\` | + | [top](#table-of-contents) | :boar: | \`:boar:\` | :monkey_face: | \`:monkey_face:\` | + | [top](#table-of-contents) | :monkey: | \`:monkey:\` | :horse: | \`:horse:\` | + | [top](#table-of-contents) | :racehorse: | \`:racehorse:\` | :camel: | \`:camel:\` | + | [top](#table-of-contents) | :sheep: | \`:sheep:\` | :elephant: | \`:elephant:\` | + | [top](#table-of-contents) | :panda_face: | \`:panda_face:\` | :snake: | \`:snake:\` | + | [top](#table-of-contents) | :bird: | \`:bird:\` | :baby_chick: | \`:baby_chick:\` | + | [top](#table-of-contents) | :hatched_chick: | \`:hatched_chick:\` | :hatching_chick: | \`:hatching_chick:\` | + | [top](#table-of-contents) | :chicken: | \`:chicken:\` | :penguin: | \`:penguin:\` | + | [top](#table-of-contents) | :turtle: | \`:turtle:\` | :bug: | \`:bug:\` | + | [top](#table-of-contents) | :honeybee: | \`:honeybee:\` | :ant: | \`:ant:\` | + | [top](#table-of-contents) | :beetle: | \`:beetle:\` | :snail: | \`:snail:\` | + | [top](#table-of-contents) | :octopus: | \`:octopus:\` | :tropical_fish: | \`:tropical_fish:\` | + | [top](#table-of-contents) | :fish: | \`:fish:\` | :whale: | \`:whale:\` | + | [top](#table-of-contents) | :whale2: | \`:whale2:\` | :dolphin: | \`:dolphin:\` | + | [top](#table-of-contents) | :cow2: | \`:cow2:\` | :ram: | \`:ram:\` | + | [top](#table-of-contents) | :rat: | \`:rat:\` | :water_buffalo: | \`:water_buffalo:\` | + | [top](#table-of-contents) | :tiger2: | \`:tiger2:\` | :rabbit2: | \`:rabbit2:\` | + | [top](#table-of-contents) | :dragon: | \`:dragon:\` | :goat: | \`:goat:\` | + | [top](#table-of-contents) | :rooster: | \`:rooster:\` | :dog2: | \`:dog2:\` | + | [top](#table-of-contents) | :pig2: | \`:pig2:\` | :mouse2: | \`:mouse2:\` | + | [top](#table-of-contents) | :ox: | \`:ox:\` | :dragon_face: | \`:dragon_face:\` | + | [top](#table-of-contents) | :blowfish: | \`:blowfish:\` | :crocodile: | \`:crocodile:\` | + | [top](#table-of-contents) | :dromedary_camel: | \`:dromedary_camel:\` | :leopard: | \`:leopard:\` | + | [top](#table-of-contents) | :cat2: | \`:cat2:\` | :poodle: | \`:poodle:\` | + | [top](#table-of-contents) | :paw_prints: | \`:paw_prints:\` | :bouquet: | \`:bouquet:\` | + | [top](#table-of-contents) | :cherry_blossom: | \`:cherry_blossom:\` | :tulip: | \`:tulip:\` | + | [top](#table-of-contents) | :four_leaf_clover: | \`:four_leaf_clover:\` | :rose: | \`:rose:\` | + | [top](#table-of-contents) | :sunflower: | \`:sunflower:\` | :hibiscus: | \`:hibiscus:\` | + | [top](#table-of-contents) | :maple_leaf: | \`:maple_leaf:\` | :leaves: | \`:leaves:\` | + | [top](#table-of-contents) | :fallen_leaf: | \`:fallen_leaf:\` | :herb: | \`:herb:\` | + | [top](#table-of-contents) | :mushroom: | \`:mushroom:\` | :cactus: | \`:cactus:\` | + | [top](#table-of-contents) | :palm_tree: | \`:palm_tree:\` | :evergreen_tree: | \`:evergreen_tree:\` | + | [top](#table-of-contents) | :deciduous_tree: | \`:deciduous_tree:\` | :chestnut: | \`:chestnut:\` | + | [top](#table-of-contents) | :seedling: | \`:seedling:\` | :blossom: | \`:blossom:\` | + | [top](#table-of-contents) | :ear_of_rice: | \`:ear_of_rice:\` | :shell: | \`:shell:\` | + | [top](#table-of-contents) | :globe_with_meridians: | \`:globe_with_meridians:\` | :sun_with_face: | \`:sun_with_face:\` | + | [top](#table-of-contents) | :full_moon_with_face: | \`:full_moon_with_face:\` | :new_moon_with_face: | \`:new_moon_with_face:\` | + | [top](#table-of-contents) | :new_moon: | \`:new_moon:\` | :waxing_crescent_moon: | \`:waxing_crescent_moon:\` | + | [top](#table-of-contents) | :first_quarter_moon: | \`:first_quarter_moon:\` | :waxing_gibbous_moon: | \`:waxing_gibbous_moon:\` | + | [top](#table-of-contents) | :full_moon: | \`:full_moon:\` | :waning_gibbous_moon: | \`:waning_gibbous_moon:\` | + | [top](#table-of-contents) | :last_quarter_moon: | \`:last_quarter_moon:\` | :waning_crescent_moon: | \`:waning_crescent_moon:\` | + | [top](#table-of-contents) | :last_quarter_moon_with_face: | \`:last_quarter_moon_with_face:\` | :first_quarter_moon_with_face: | \`:first_quarter_moon_with_face:\` | + | [top](#table-of-contents) | :crescent_moon: | \`:crescent_moon:\` | :earth_africa: | \`:earth_africa:\` | + | [top](#table-of-contents) | :earth_americas: | \`:earth_americas:\` | :earth_asia: | \`:earth_asia:\` | + | [top](#table-of-contents) | :volcano: | \`:volcano:\` | :milky_way: | \`:milky_way:\` | + | [top](#table-of-contents) | :partly_sunny: | \`:partly_sunny:\` | :octocat: | \`:octocat:\` | + | [top](#table-of-contents) | :squirrel: | \`:squirrel:\` | | | + + ### Objects + + | | ico | emoji | ico | emoji | + | - | --- | ----- | --- | ----- | + | [top](#table-of-contents) | :bamboo: | \`:bamboo:\` | :gift_heart: | \`:gift_heart:\` | + | [top](#table-of-contents) | :dolls: | \`:dolls:\` | :school_satchel: | \`:school_satchel:\` | + | [top](#table-of-contents) | :mortar_board: | \`:mortar_board:\` | :flags: | \`:flags:\` | + | [top](#table-of-contents) | :fireworks: | \`:fireworks:\` | :sparkler: | \`:sparkler:\` | + | [top](#table-of-contents) | :wind_chime: | \`:wind_chime:\` | :rice_scene: | \`:rice_scene:\` | + | [top](#table-of-contents) | :jack_o_lantern: | \`:jack_o_lantern:\` | :ghost: | \`:ghost:\` | + | [top](#table-of-contents) | :santa: | \`:santa:\` | :christmas_tree: | \`:christmas_tree:\` | + | [top](#table-of-contents) | :gift: | \`:gift:\` | :bell: | \`:bell:\` | + | [top](#table-of-contents) | :no_bell: | \`:no_bell:\` | :tanabata_tree: | \`:tanabata_tree:\` | + | [top](#table-of-contents) | :tada: | \`:tada:\` | :confetti_ball: | \`:confetti_ball:\` | + | [top](#table-of-contents) | :balloon: | \`:balloon:\` | :crystal_ball: | \`:crystal_ball:\` | + | [top](#table-of-contents) | :cd: | \`:cd:\` | :dvd: | \`:dvd:\` | + | [top](#table-of-contents) | :floppy_disk: | \`:floppy_disk:\` | :camera: | \`:camera:\` | + | [top](#table-of-contents) | :video_camera: | \`:video_camera:\` | :movie_camera: | \`:movie_camera:\` | + | [top](#table-of-contents) | :computer: | \`:computer:\` | :tv: | \`:tv:\` | + | [top](#table-of-contents) | :iphone: | \`:iphone:\` | :phone: | \`:phone:\` | + | [top](#table-of-contents) | :telephone: | \`:telephone:\` | :telephone_receiver: | \`:telephone_receiver:\` | + | [top](#table-of-contents) | :pager: | \`:pager:\` | :fax: | \`:fax:\` | + | [top](#table-of-contents) | :minidisc: | \`:minidisc:\` | :vhs: | \`:vhs:\` | + | [top](#table-of-contents) | :sound: | \`:sound:\` | :speaker: | \`:speaker:\` | + | [top](#table-of-contents) | :mute: | \`:mute:\` | :loudspeaker: | \`:loudspeaker:\` | + | [top](#table-of-contents) | :mega: | \`:mega:\` | :hourglass: | \`:hourglass:\` | + | [top](#table-of-contents) | :hourglass_flowing_sand: | \`:hourglass_flowing_sand:\` | :alarm_clock: | \`:alarm_clock:\` | + | [top](#table-of-contents) | :watch: | \`:watch:\` | :radio: | \`:radio:\` | + | [top](#table-of-contents) | :satellite: | \`:satellite:\` | :loop: | \`:loop:\` | + | [top](#table-of-contents) | :mag: | \`:mag:\` | :mag_right: | \`:mag_right:\` | + | [top](#table-of-contents) | :unlock: | \`:unlock:\` | :lock: | \`:lock:\` | + | [top](#table-of-contents) | :lock_with_ink_pen: | \`:lock_with_ink_pen:\` | :closed_lock_with_key: | \`:closed_lock_with_key:\` | + | [top](#table-of-contents) | :key: | \`:key:\` | :bulb: | \`:bulb:\` | + | [top](#table-of-contents) | :flashlight: | \`:flashlight:\` | :high_brightness: | \`:high_brightness:\` | + | [top](#table-of-contents) | :low_brightness: | \`:low_brightness:\` | :electric_plug: | \`:electric_plug:\` | + | [top](#table-of-contents) | :battery: | \`:battery:\` | :calling: | \`:calling:\` | + | [top](#table-of-contents) | :email: | \`:email:\` | :mailbox: | \`:mailbox:\` | + | [top](#table-of-contents) | :postbox: | \`:postbox:\` | :bath: | \`:bath:\` | + | [top](#table-of-contents) | :bathtub: | \`:bathtub:\` | :shower: | \`:shower:\` | + | [top](#table-of-contents) | :toilet: | \`:toilet:\` | :wrench: | \`:wrench:\` | + | [top](#table-of-contents) | :nut_and_bolt: | \`:nut_and_bolt:\` | :hammer: | \`:hammer:\` | + | [top](#table-of-contents) | :seat: | \`:seat:\` | :moneybag: | \`:moneybag:\` | + | [top](#table-of-contents) | :yen: | \`:yen:\` | :dollar: | \`:dollar:\` | + | [top](#table-of-contents) | :pound: | \`:pound:\` | :euro: | \`:euro:\` | + | [top](#table-of-contents) | :credit_card: | \`:credit_card:\` | :money_with_wings: | \`:money_with_wings:\` | + | [top](#table-of-contents) | :e-mail: | \`:e-mail:\` | :inbox_tray: | \`:inbox_tray:\` | + | [top](#table-of-contents) | :outbox_tray: | \`:outbox_tray:\` | :envelope: | \`:envelope:\` | + | [top](#table-of-contents) | :incoming_envelope: | \`:incoming_envelope:\` | :postal_horn: | \`:postal_horn:\` | + | [top](#table-of-contents) | :mailbox_closed: | \`:mailbox_closed:\` | :mailbox_with_mail: | \`:mailbox_with_mail:\` | + | [top](#table-of-contents) | :mailbox_with_no_mail: | \`:mailbox_with_no_mail:\` | :package: | \`:package:\` | + | [top](#table-of-contents) | :door: | \`:door:\` | :smoking: | \`:smoking:\` | + | [top](#table-of-contents) | :bomb: | \`:bomb:\` | :gun: | \`:gun:\` | + | [top](#table-of-contents) | :hocho: | \`:hocho:\` | :pill: | \`:pill:\` | + | [top](#table-of-contents) | :syringe: | \`:syringe:\` | :page_facing_up: | \`:page_facing_up:\` | + | [top](#table-of-contents) | :page_with_curl: | \`:page_with_curl:\` | :bookmark_tabs: | \`:bookmark_tabs:\` | + | [top](#table-of-contents) | :bar_chart: | \`:bar_chart:\` | :chart_with_upwards_trend: | \`:chart_with_upwards_trend:\` | + | [top](#table-of-contents) | :chart_with_downwards_trend: | \`:chart_with_downwards_trend:\` | :scroll: | \`:scroll:\` | + | [top](#table-of-contents) | :clipboard: | \`:clipboard:\` | :calendar: | \`:calendar:\` | + | [top](#table-of-contents) | :date: | \`:date:\` | :card_index: | \`:card_index:\` | + | [top](#table-of-contents) | :file_folder: | \`:file_folder:\` | :open_file_folder: | \`:open_file_folder:\` | + | [top](#table-of-contents) | :scissors: | \`:scissors:\` | :pushpin: | \`:pushpin:\` | + | [top](#table-of-contents) | :paperclip: | \`:paperclip:\` | :black_nib: | \`:black_nib:\` | + | [top](#table-of-contents) | :pencil2: | \`:pencil2:\` | :straight_ruler: | \`:straight_ruler:\` | + | [top](#table-of-contents) | :triangular_ruler: | \`:triangular_ruler:\` | :closed_book: | \`:closed_book:\` | + | [top](#table-of-contents) | :green_book: | \`:green_book:\` | :blue_book: | \`:blue_book:\` | + | [top](#table-of-contents) | :orange_book: | \`:orange_book:\` | :notebook: | \`:notebook:\` | + | [top](#table-of-contents) | :notebook_with_decorative_cover: | \`:notebook_with_decorative_cover:\` | :ledger: | \`:ledger:\` | + | [top](#table-of-contents) | :books: | \`:books:\` | :bookmark: | \`:bookmark:\` | + | [top](#table-of-contents) | :name_badge: | \`:name_badge:\` | :microscope: | \`:microscope:\` | + | [top](#table-of-contents) | :telescope: | \`:telescope:\` | :newspaper: | \`:newspaper:\` | + | [top](#table-of-contents) | :football: | \`:football:\` | :basketball: | \`:basketball:\` | + | [top](#table-of-contents) | :soccer: | \`:soccer:\` | :baseball: | \`:baseball:\` | + | [top](#table-of-contents) | :tennis: | \`:tennis:\` | :8ball: | \`:8ball:\` | + | [top](#table-of-contents) | :rugby_football: | \`:rugby_football:\` | :bowling: | \`:bowling:\` | + | [top](#table-of-contents) | :golf: | \`:golf:\` | :mountain_bicyclist: | \`:mountain_bicyclist:\` | + | [top](#table-of-contents) | :bicyclist: | \`:bicyclist:\` | :horse_racing: | \`:horse_racing:\` | + | [top](#table-of-contents) | :snowboarder: | \`:snowboarder:\` | :swimmer: | \`:swimmer:\` | + | [top](#table-of-contents) | :surfer: | \`:surfer:\` | :ski: | \`:ski:\` | + | [top](#table-of-contents) | :spades: | \`:spades:\` | :hearts: | \`:hearts:\` | + | [top](#table-of-contents) | :clubs: | \`:clubs:\` | :diamonds: | \`:diamonds:\` | + | [top](#table-of-contents) | :gem: | \`:gem:\` | :ring: | \`:ring:\` | + | [top](#table-of-contents) | :trophy: | \`:trophy:\` | :musical_score: | \`:musical_score:\` | + | [top](#table-of-contents) | :musical_keyboard: | \`:musical_keyboard:\` | :violin: | \`:violin:\` | + | [top](#table-of-contents) | :space_invader: | \`:space_invader:\` | :video_game: | \`:video_game:\` | + | [top](#table-of-contents) | :black_joker: | \`:black_joker:\` | :flower_playing_cards: | \`:flower_playing_cards:\` | + | [top](#table-of-contents) | :game_die: | \`:game_die:\` | :dart: | \`:dart:\` | + | [top](#table-of-contents) | :mahjong: | \`:mahjong:\` | :clapper: | \`:clapper:\` | + | [top](#table-of-contents) | :memo: | \`:memo:\` | :pencil: | \`:pencil:\` | + | [top](#table-of-contents) | :book: | \`:book:\` | :art: | \`:art:\` | + | [top](#table-of-contents) | :microphone: | \`:microphone:\` | :headphones: | \`:headphones:\` | + | [top](#table-of-contents) | :trumpet: | \`:trumpet:\` | :saxophone: | \`:saxophone:\` | + | [top](#table-of-contents) | :guitar: | \`:guitar:\` | :shoe: | \`:shoe:\` | + | [top](#table-of-contents) | :sandal: | \`:sandal:\` | :high_heel: | \`:high_heel:\` | + | [top](#table-of-contents) | :lipstick: | \`:lipstick:\` | :boot: | \`:boot:\` | + | [top](#table-of-contents) | :shirt: | \`:shirt:\` | :tshirt: | \`:tshirt:\` | + | [top](#table-of-contents) | :necktie: | \`:necktie:\` | :womans_clothes: | \`:womans_clothes:\` | + | [top](#table-of-contents) | :dress: | \`:dress:\` | :running_shirt_with_sash: | \`:running_shirt_with_sash:\` | + | [top](#table-of-contents) | :jeans: | \`:jeans:\` | :kimono: | \`:kimono:\` | + | [top](#table-of-contents) | :bikini: | \`:bikini:\` | :ribbon: | \`:ribbon:\` | + | [top](#table-of-contents) | :tophat: | \`:tophat:\` | :crown: | \`:crown:\` | + | [top](#table-of-contents) | :womans_hat: | \`:womans_hat:\` | :mans_shoe: | \`:mans_shoe:\` | + | [top](#table-of-contents) | :closed_umbrella: | \`:closed_umbrella:\` | :briefcase: | \`:briefcase:\` | + | [top](#table-of-contents) | :handbag: | \`:handbag:\` | :pouch: | \`:pouch:\` | + | [top](#table-of-contents) | :purse: | \`:purse:\` | :eyeglasses: | \`:eyeglasses:\` | + | [top](#table-of-contents) | :fishing_pole_and_fish: | \`:fishing_pole_and_fish:\` | :coffee: | \`:coffee:\` | + | [top](#table-of-contents) | :tea: | \`:tea:\` | :sake: | \`:sake:\` | + | [top](#table-of-contents) | :baby_bottle: | \`:baby_bottle:\` | :beer: | \`:beer:\` | + | [top](#table-of-contents) | :beers: | \`:beers:\` | :cocktail: | \`:cocktail:\` | + | [top](#table-of-contents) | :tropical_drink: | \`:tropical_drink:\` | :wine_glass: | \`:wine_glass:\` | + | [top](#table-of-contents) | :fork_and_knife: | \`:fork_and_knife:\` | :pizza: | \`:pizza:\` | + | [top](#table-of-contents) | :hamburger: | \`:hamburger:\` | :fries: | \`:fries:\` | + | [top](#table-of-contents) | :poultry_leg: | \`:poultry_leg:\` | :meat_on_bone: | \`:meat_on_bone:\` | + | [top](#table-of-contents) | :spaghetti: | \`:spaghetti:\` | :curry: | \`:curry:\` | + | [top](#table-of-contents) | :fried_shrimp: | \`:fried_shrimp:\` | :bento: | \`:bento:\` | + | [top](#table-of-contents) | :sushi: | \`:sushi:\` | :fish_cake: | \`:fish_cake:\` | + | [top](#table-of-contents) | :rice_ball: | \`:rice_ball:\` | :rice_cracker: | \`:rice_cracker:\` | + | [top](#table-of-contents) | :rice: | \`:rice:\` | :ramen: | \`:ramen:\` | + | [top](#table-of-contents) | :stew: | \`:stew:\` | :oden: | \`:oden:\` | + | [top](#table-of-contents) | :dango: | \`:dango:\` | :egg: | \`:egg:\` | + | [top](#table-of-contents) | :bread: | \`:bread:\` | :doughnut: | \`:doughnut:\` | + | [top](#table-of-contents) | :custard: | \`:custard:\` | :icecream: | \`:icecream:\` | + | [top](#table-of-contents) | :ice_cream: | \`:ice_cream:\` | :shaved_ice: | \`:shaved_ice:\` | + | [top](#table-of-contents) | :birthday: | \`:birthday:\` | :cake: | \`:cake:\` | + | [top](#table-of-contents) | :cookie: | \`:cookie:\` | :chocolate_bar: | \`:chocolate_bar:\` | + | [top](#table-of-contents) | :candy: | \`:candy:\` | :lollipop: | \`:lollipop:\` | + | [top](#table-of-contents) | :honey_pot: | \`:honey_pot:\` | :apple: | \`:apple:\` | + | [top](#table-of-contents) | :green_apple: | \`:green_apple:\` | :tangerine: | \`:tangerine:\` | + | [top](#table-of-contents) | :lemon: | \`:lemon:\` | :cherries: | \`:cherries:\` | + | [top](#table-of-contents) | :grapes: | \`:grapes:\` | :watermelon: | \`:watermelon:\` | + | [top](#table-of-contents) | :strawberry: | \`:strawberry:\` | :peach: | \`:peach:\` | + | [top](#table-of-contents) | :melon: | \`:melon:\` | :banana: | \`:banana:\` | + | [top](#table-of-contents) | :pear: | \`:pear:\` | :pineapple: | \`:pineapple:\` | + | [top](#table-of-contents) | :sweet_potato: | \`:sweet_potato:\` | :eggplant: | \`:eggplant:\` | + | [top](#table-of-contents) | :tomato: | \`:tomato:\` | :corn: | \`:corn:\` | + + ### Places + + | | ico | emoji | ico | emoji | + | - | --- | ----- | --- | ----- | + | [top](#table-of-contents) | :house: | \`:house:\` | :house_with_garden: | \`:house_with_garden:\` | + | [top](#table-of-contents) | :school: | \`:school:\` | :office: | \`:office:\` | + | [top](#table-of-contents) | :post_office: | \`:post_office:\` | :hospital: | \`:hospital:\` | + | [top](#table-of-contents) | :bank: | \`:bank:\` | :convenience_store: | \`:convenience_store:\` | + | [top](#table-of-contents) | :love_hotel: | \`:love_hotel:\` | :hotel: | \`:hotel:\` | + | [top](#table-of-contents) | :wedding: | \`:wedding:\` | :church: | \`:church:\` | + | [top](#table-of-contents) | :department_store: | \`:department_store:\` | :european_post_office: | \`:european_post_office:\` | + | [top](#table-of-contents) | :city_sunrise: | \`:city_sunrise:\` | :city_sunset: | \`:city_sunset:\` | + | [top](#table-of-contents) | :japanese_castle: | \`:japanese_castle:\` | :european_castle: | \`:european_castle:\` | + | [top](#table-of-contents) | :tent: | \`:tent:\` | :factory: | \`:factory:\` | + | [top](#table-of-contents) | :tokyo_tower: | \`:tokyo_tower:\` | :japan: | \`:japan:\` | + | [top](#table-of-contents) | :mount_fuji: | \`:mount_fuji:\` | :sunrise_over_mountains: | \`:sunrise_over_mountains:\` | + | [top](#table-of-contents) | :sunrise: | \`:sunrise:\` | :stars: | \`:stars:\` | + | [top](#table-of-contents) | :statue_of_liberty: | \`:statue_of_liberty:\` | :bridge_at_night: | \`:bridge_at_night:\` | + | [top](#table-of-contents) | :carousel_horse: | \`:carousel_horse:\` | :rainbow: | \`:rainbow:\` | + | [top](#table-of-contents) | :ferris_wheel: | \`:ferris_wheel:\` | :fountain: | \`:fountain:\` | + | [top](#table-of-contents) | :roller_coaster: | \`:roller_coaster:\` | :ship: | \`:ship:\` | + | [top](#table-of-contents) | :speedboat: | \`:speedboat:\` | :boat: | \`:boat:\` | + | [top](#table-of-contents) | :sailboat: | \`:sailboat:\` | :rowboat: | \`:rowboat:\` | + | [top](#table-of-contents) | :anchor: | \`:anchor:\` | :rocket: | \`:rocket:\` | + | [top](#table-of-contents) | :airplane: | \`:airplane:\` | :helicopter: | \`:helicopter:\` | + | [top](#table-of-contents) | :steam_locomotive: | \`:steam_locomotive:\` | :tram: | \`:tram:\` | + | [top](#table-of-contents) | :mountain_railway: | \`:mountain_railway:\` | :bike: | \`:bike:\` | + | [top](#table-of-contents) | :aerial_tramway: | \`:aerial_tramway:\` | :suspension_railway: | \`:suspension_railway:\` | + | [top](#table-of-contents) | :mountain_cableway: | \`:mountain_cableway:\` | :tractor: | \`:tractor:\` | + | [top](#table-of-contents) | :blue_car: | \`:blue_car:\` | :oncoming_automobile: | \`:oncoming_automobile:\` | + | [top](#table-of-contents) | :car: | \`:car:\` | :red_car: | \`:red_car:\` | + | [top](#table-of-contents) | :taxi: | \`:taxi:\` | :oncoming_taxi: | \`:oncoming_taxi:\` | + | [top](#table-of-contents) | :articulated_lorry: | \`:articulated_lorry:\` | :bus: | \`:bus:\` | + | [top](#table-of-contents) | :oncoming_bus: | \`:oncoming_bus:\` | :rotating_light: | \`:rotating_light:\` | + | [top](#table-of-contents) | :police_car: | \`:police_car:\` | :oncoming_police_car: | \`:oncoming_police_car:\` | + | [top](#table-of-contents) | :fire_engine: | \`:fire_engine:\` | :ambulance: | \`:ambulance:\` | + | [top](#table-of-contents) | :minibus: | \`:minibus:\` | :truck: | \`:truck:\` | + | [top](#table-of-contents) | :train: | \`:train:\` | :station: | \`:station:\` | + | [top](#table-of-contents) | :train2: | \`:train2:\` | :bullettrain_front: | \`:bullettrain_front:\` | + | [top](#table-of-contents) | :bullettrain_side: | \`:bullettrain_side:\` | :light_rail: | \`:light_rail:\` | + | [top](#table-of-contents) | :monorail: | \`:monorail:\` | :railway_car: | \`:railway_car:\` | + | [top](#table-of-contents) | :trolleybus: | \`:trolleybus:\` | :ticket: | \`:ticket:\` | + | [top](#table-of-contents) | :fuelpump: | \`:fuelpump:\` | :vertical_traffic_light: | \`:vertical_traffic_light:\` | + | [top](#table-of-contents) | :traffic_light: | \`:traffic_light:\` | :warning: | \`:warning:\` | + | [top](#table-of-contents) | :construction: | \`:construction:\` | :beginner: | \`:beginner:\` | + | [top](#table-of-contents) | :atm: | \`:atm:\` | :slot_machine: | \`:slot_machine:\` | + | [top](#table-of-contents) | :busstop: | \`:busstop:\` | :barber: | \`:barber:\` | + | [top](#table-of-contents) | :hotsprings: | \`:hotsprings:\` | :checkered_flag: | \`:checkered_flag:\` | + | [top](#table-of-contents) | :crossed_flags: | \`:crossed_flags:\` | :izakaya_lantern: | \`:izakaya_lantern:\` | + | [top](#table-of-contents) | :moyai: | \`:moyai:\` | :circus_tent: | \`:circus_tent:\` | + | [top](#table-of-contents) | :performing_arts: | \`:performing_arts:\` | :round_pushpin: | \`:round_pushpin:\` | + | [top](#table-of-contents) | :triangular_flag_on_post: | \`:triangular_flag_on_post:\` | :jp: | \`:jp:\` | + | [top](#table-of-contents) | :kr: | \`:kr:\` | :cn: | \`:cn:\` | + | [top](#table-of-contents) | :us: | \`:us:\` | :fr: | \`:fr:\` | + | [top](#table-of-contents) | :es: | \`:es:\` | :it: | \`:it:\` | + | [top](#table-of-contents) | :ru: | \`:ru:\` | :gb: | \`:gb:\` | + | [top](#table-of-contents) | :uk: | \`:uk:\` | :de: | \`:de:\` | + + ### Symbols + + | | ico | emoji | ico | emoji | + | - | --- | ----- | --- | ----- | + | [top](#table-of-contents) | :one: | \`:one:\` | :two: | \`:two:\` | + | [top](#table-of-contents) | :three: | \`:three:\` | :four: | \`:four:\` | + | [top](#table-of-contents) | :five: | \`:five:\` | :six: | \`:six:\` | + | [top](#table-of-contents) | :seven: | \`:seven:\` | :eight: | \`:eight:\` | + | [top](#table-of-contents) | :nine: | \`:nine:\` | :keycap_ten: | \`:keycap_ten:\` | + | [top](#table-of-contents) | :1234: | \`:1234:\` | :zero: | \`:zero:\` | + | [top](#table-of-contents) | :hash: | \`:hash:\` | :symbols: | \`:symbols:\` | + | [top](#table-of-contents) | :arrow_backward: | \`:arrow_backward:\` | :arrow_down: | \`:arrow_down:\` | + | [top](#table-of-contents) | :arrow_forward: | \`:arrow_forward:\` | :arrow_left: | \`:arrow_left:\` | + | [top](#table-of-contents) | :capital_abcd: | \`:capital_abcd:\` | :abcd: | \`:abcd:\` | + | [top](#table-of-contents) | :abc: | \`:abc:\` | :arrow_lower_left: | \`:arrow_lower_left:\` | + | [top](#table-of-contents) | :arrow_lower_right: | \`:arrow_lower_right:\` | :arrow_right: | \`:arrow_right:\` | + | [top](#table-of-contents) | :arrow_up: | \`:arrow_up:\` | :arrow_upper_left: | \`:arrow_upper_left:\` | + | [top](#table-of-contents) | :arrow_upper_right: | \`:arrow_upper_right:\` | :arrow_double_down: | \`:arrow_double_down:\` | + | [top](#table-of-contents) | :arrow_double_up: | \`:arrow_double_up:\` | :arrow_down_small: | \`:arrow_down_small:\` | + | [top](#table-of-contents) | :arrow_heading_down: | \`:arrow_heading_down:\` | :arrow_heading_up: | \`:arrow_heading_up:\` | + | [top](#table-of-contents) | :leftwards_arrow_with_hook: | \`:leftwards_arrow_with_hook:\` | :arrow_right_hook: | \`:arrow_right_hook:\` | + | [top](#table-of-contents) | :left_right_arrow: | \`:left_right_arrow:\` | :arrow_up_down: | \`:arrow_up_down:\` | + | [top](#table-of-contents) | :arrow_up_small: | \`:arrow_up_small:\` | :arrows_clockwise: | \`:arrows_clockwise:\` | + | [top](#table-of-contents) | :arrows_counterclockwise: | \`:arrows_counterclockwise:\` | :rewind: | \`:rewind:\` | + | [top](#table-of-contents) | :fast_forward: | \`:fast_forward:\` | :information_source: | \`:information_source:\` | + | [top](#table-of-contents) | :ok: | \`:ok:\` | :twisted_rightwards_arrows: | \`:twisted_rightwards_arrows:\` | + | [top](#table-of-contents) | :repeat: | \`:repeat:\` | :repeat_one: | \`:repeat_one:\` | + | [top](#table-of-contents) | :new: | \`:new:\` | :top: | \`:top:\` | + | [top](#table-of-contents) | :up: | \`:up:\` | :cool: | \`:cool:\` | + | [top](#table-of-contents) | :free: | \`:free:\` | :ng: | \`:ng:\` | + | [top](#table-of-contents) | :cinema: | \`:cinema:\` | :koko: | \`:koko:\` | + | [top](#table-of-contents) | :signal_strength: | \`:signal_strength:\` | :u5272: | \`:u5272:\` | + | [top](#table-of-contents) | :u5408: | \`:u5408:\` | :u55b6: | \`:u55b6:\` | + | [top](#table-of-contents) | :u6307: | \`:u6307:\` | :u6708: | \`:u6708:\` | + | [top](#table-of-contents) | :u6709: | \`:u6709:\` | :u6e80: | \`:u6e80:\` | + | [top](#table-of-contents) | :u7121: | \`:u7121:\` | :u7533: | \`:u7533:\` | + | [top](#table-of-contents) | :u7a7a: | \`:u7a7a:\` | :u7981: | \`:u7981:\` | + | [top](#table-of-contents) | :sa: | \`:sa:\` | :restroom: | \`:restroom:\` | + | [top](#table-of-contents) | :mens: | \`:mens:\` | :womens: | \`:womens:\` | + | [top](#table-of-contents) | :baby_symbol: | \`:baby_symbol:\` | :no_smoking: | \`:no_smoking:\` | + | [top](#table-of-contents) | :parking: | \`:parking:\` | :wheelchair: | \`:wheelchair:\` | + | [top](#table-of-contents) | :metro: | \`:metro:\` | :baggage_claim: | \`:baggage_claim:\` | + | [top](#table-of-contents) | :accept: | \`:accept:\` | :wc: | \`:wc:\` | + | [top](#table-of-contents) | :potable_water: | \`:potable_water:\` | :put_litter_in_its_place: | \`:put_litter_in_its_place:\` | + | [top](#table-of-contents) | :secret: | \`:secret:\` | :congratulations: | \`:congratulations:\` | + | [top](#table-of-contents) | :m: | \`:m:\` | :passport_control: | \`:passport_control:\` | + | [top](#table-of-contents) | :left_luggage: | \`:left_luggage:\` | :customs: | \`:customs:\` | + | [top](#table-of-contents) | :ideograph_advantage: | \`:ideograph_advantage:\` | :cl: | \`:cl:\` | + | [top](#table-of-contents) | :sos: | \`:sos:\` | :id: | \`:id:\` | + | [top](#table-of-contents) | :no_entry_sign: | \`:no_entry_sign:\` | :underage: | \`:underage:\` | + | [top](#table-of-contents) | :no_mobile_phones: | \`:no_mobile_phones:\` | :do_not_litter: | \`:do_not_litter:\` | + | [top](#table-of-contents) | :non-potable_water: | \`:non-potable_water:\` | :no_bicycles: | \`:no_bicycles:\` | + | [top](#table-of-contents) | :no_pedestrians: | \`:no_pedestrians:\` | :children_crossing: | \`:children_crossing:\` | + | [top](#table-of-contents) | :no_entry: | \`:no_entry:\` | :eight_spoked_asterisk: | \`:eight_spoked_asterisk:\` | + | [top](#table-of-contents) | :sparkle: | \`:sparkle:\` | :eight_pointed_black_star: | \`:eight_pointed_black_star:\` | + | [top](#table-of-contents) | :heart_decoration: | \`:heart_decoration:\` | :vs: | \`:vs:\` | + | [top](#table-of-contents) | :vibration_mode: | \`:vibration_mode:\` | :mobile_phone_off: | \`:mobile_phone_off:\` | + | [top](#table-of-contents) | :chart: | \`:chart:\` | :currency_exchange: | \`:currency_exchange:\` | + | [top](#table-of-contents) | :aries: | \`:aries:\` | :taurus: | \`:taurus:\` | + | [top](#table-of-contents) | :gemini: | \`:gemini:\` | :cancer: | \`:cancer:\` | + | [top](#table-of-contents) | :leo: | \`:leo:\` | :virgo: | \`:virgo:\` | + | [top](#table-of-contents) | :libra: | \`:libra:\` | :scorpius: | \`:scorpius:\` | + | [top](#table-of-contents) | :sagittarius: | \`:sagittarius:\` | :capricorn: | \`:capricorn:\` | + | [top](#table-of-contents) | :aquarius: | \`:aquarius:\` | :pisces: | \`:pisces:\` | + | [top](#table-of-contents) | :ophiuchus: | \`:ophiuchus:\` | :six_pointed_star: | \`:six_pointed_star:\` | + | [top](#table-of-contents) | :negative_squared_cross_mark: | \`:negative_squared_cross_mark:\` | :a: | \`:a:\` | + | [top](#table-of-contents) | :b: | \`:b:\` | :ab: | \`:ab:\` | + | [top](#table-of-contents) | :o2: | \`:o2:\` | :diamond_shape_with_a_dot_inside: | \`:diamond_shape_with_a_dot_inside:\` | + | [top](#table-of-contents) | :recycle: | \`:recycle:\` | :end: | \`:end:\` | + | [top](#table-of-contents) | :back: | \`:back:\` | :on: | \`:on:\` | + | [top](#table-of-contents) | :soon: | \`:soon:\` | :clock1: | \`:clock1:\` | + | [top](#table-of-contents) | :clock130: | \`:clock130:\` | :clock10: | \`:clock10:\` | + | [top](#table-of-contents) | :clock1030: | \`:clock1030:\` | :clock11: | \`:clock11:\` | + | [top](#table-of-contents) | :clock1130: | \`:clock1130:\` | :clock12: | \`:clock12:\` | + | [top](#table-of-contents) | :clock1230: | \`:clock1230:\` | :clock2: | \`:clock2:\` | + | [top](#table-of-contents) | :clock230: | \`:clock230:\` | :clock3: | \`:clock3:\` | + | [top](#table-of-contents) | :clock330: | \`:clock330:\` | :clock4: | \`:clock4:\` | + | [top](#table-of-contents) | :clock430: | \`:clock430:\` | :clock5: | \`:clock5:\` | + | [top](#table-of-contents) | :clock530: | \`:clock530:\` | :clock6: | \`:clock6:\` | + | [top](#table-of-contents) | :clock630: | \`:clock630:\` | :clock7: | \`:clock7:\` | + | [top](#table-of-contents) | :clock730: | \`:clock730:\` | :clock8: | \`:clock8:\` | + | [top](#table-of-contents) | :clock830: | \`:clock830:\` | :clock9: | \`:clock9:\` | + | [top](#table-of-contents) | :clock930: | \`:clock930:\` | :heavy_dollar_sign: | \`:heavy_dollar_sign:\` | + | [top](#table-of-contents) | :copyright: | \`:copyright:\` | :registered: | \`:registered:\` | + | [top](#table-of-contents) | :tm: | \`:tm:\` | :x: | \`:x:\` | + | [top](#table-of-contents) | :heavy_exclamation_mark: | \`:heavy_exclamation_mark:\` | :bangbang: | \`:bangbang:\` | + | [top](#table-of-contents) | :interrobang: | \`:interrobang:\` | :o: | \`:o:\` | + | [top](#table-of-contents) | :heavy_multiplication_x: | \`:heavy_multiplication_x:\` | :heavy_plus_sign: | \`:heavy_plus_sign:\` | + | [top](#table-of-contents) | :heavy_minus_sign: | \`:heavy_minus_sign:\` | :heavy_division_sign: | \`:heavy_division_sign:\` | + | [top](#table-of-contents) | :white_flower: | \`:white_flower:\` | :100: | \`:100:\` | + | [top](#table-of-contents) | :heavy_check_mark: | \`:heavy_check_mark:\` | :ballot_box_with_check: | \`:ballot_box_with_check:\` | + | [top](#table-of-contents) | :radio_button: | \`:radio_button:\` | :link: | \`:link:\` | + | [top](#table-of-contents) | :curly_loop: | \`:curly_loop:\` | :wavy_dash: | \`:wavy_dash:\` | + | [top](#table-of-contents) | :part_alternation_mark: | \`:part_alternation_mark:\` | :trident: | \`:trident:\` | + | [top](#table-of-contents) | :black_small_square: | \`:black_small_square:\` | :white_small_square: | \`:white_small_square:\` | + | [top](#table-of-contents) | :black_medium_small_square: | \`:black_medium_small_square:\` | :white_medium_small_square: | \`:white_medium_small_square:\` | + | [top](#table-of-contents) | :black_medium_square: | \`:black_medium_square:\` | :white_medium_square: | \`:white_medium_square:\` | + | [top](#table-of-contents) | :black_large_square: | \`:black_large_square:\` | :white_large_square: | \`:white_large_square:\` | + | [top](#table-of-contents) | :white_check_mark: | \`:white_check_mark:\` | :black_square_button: | \`:black_square_button:\` | + | [top](#table-of-contents) | :white_square_button: | \`:white_square_button:\` | :black_circle: | \`:black_circle:\` | + | [top](#table-of-contents) | :white_circle: | \`:white_circle:\` | :red_circle: | \`:red_circle:\` | + | [top](#table-of-contents) | :large_blue_circle: | \`:large_blue_circle:\` | :large_blue_diamond: | \`:large_blue_diamond:\` | + | [top](#table-of-contents) | :large_orange_diamond: | \`:large_orange_diamond:\` | :small_blue_diamond: | \`:small_blue_diamond:\` | + | [top](#table-of-contents) | :small_orange_diamond: | \`:small_orange_diamond:\` | :small_red_triangle: | \`:small_red_triangle:\` | + | [top](#table-of-contents) | :small_red_triangle_down: | \`:small_red_triangle_down:\` | :shipit: | \`:shipit:\` | + + ### Uncategorized + + | | ico | emoji | ico | emoji | + | - | --- | ----- | --- | ----- | + | [top](#table-of-contents) | :1st_place_medal: | \`:1st_place_medal:\` | :2nd_place_medal: | \`:2nd_place_medal:\` | + | [top](#table-of-contents) | :3rd_place_medal: | \`:3rd_place_medal:\` | :afghanistan: | \`:afghanistan:\` | + | [top](#table-of-contents) | :aland_islands: | \`:aland_islands:\` | :albania: | \`:albania:\` | + | [top](#table-of-contents) | :alembic: | \`:alembic:\` | :algeria: | \`:algeria:\` | + | [top](#table-of-contents) | :american_samoa: | \`:american_samoa:\` | :amphora: | \`:amphora:\` | + | [top](#table-of-contents) | :andorra: | \`:andorra:\` | :angola: | \`:angola:\` | + | [top](#table-of-contents) | :anguilla: | \`:anguilla:\` | :antarctica: | \`:antarctica:\` | + | [top](#table-of-contents) | :antigua_barbuda: | \`:antigua_barbuda:\` | :argentina: | \`:argentina:\` | + | [top](#table-of-contents) | :armenia: | \`:armenia:\` | :artificial_satellite: | \`:artificial_satellite:\` | + | [top](#table-of-contents) | :aruba: | \`:aruba:\` | :asterisk: | \`:asterisk:\` | + | [top](#table-of-contents) | :athletic_shoe: | \`:athletic_shoe:\` | :atom: | \`:atom:\` | + | [top](#table-of-contents) | :atom_symbol: | \`:atom_symbol:\` | :australia: | \`:australia:\` | + | [top](#table-of-contents) | :austria: | \`:austria:\` | :avocado: | \`:avocado:\` | + | [top](#table-of-contents) | :azerbaijan: | \`:azerbaijan:\` | :bacon: | \`:bacon:\` | + | [top](#table-of-contents) | :badminton: | \`:badminton:\` | :baguette_bread: | \`:baguette_bread:\` | + | [top](#table-of-contents) | :bahamas: | \`:bahamas:\` | :bahrain: | \`:bahrain:\` | + | [top](#table-of-contents) | :balance_scale: | \`:balance_scale:\` | :ballot_box: | \`:ballot_box:\` | + | [top](#table-of-contents) | :bangladesh: | \`:bangladesh:\` | :barbados: | \`:barbados:\` | + | [top](#table-of-contents) | :basecamp: | \`:basecamp:\` | :basecampy: | \`:basecampy:\` | + | [top](#table-of-contents) | :basketball_man: | \`:basketball_man:\` | :basketball_woman: | \`:basketball_woman:\` | + | [top](#table-of-contents) | :bat: | \`:bat:\` | :beach_umbrella: | \`:beach_umbrella:\` | + | [top](#table-of-contents) | :bed: | \`:bed:\` | :bee: | \`:bee:\` | + | [top](#table-of-contents) | :belarus: | \`:belarus:\` | :belgium: | \`:belgium:\` | + | [top](#table-of-contents) | :belize: | \`:belize:\` | :bellhop_bell: | \`:bellhop_bell:\` | + | [top](#table-of-contents) | :benin: | \`:benin:\` | :bermuda: | \`:bermuda:\` | + | [top](#table-of-contents) | :bhutan: | \`:bhutan:\` | :biking_man: | \`:biking_man:\` | + | [top](#table-of-contents) | :biking_woman: | \`:biking_woman:\` | :biohazard: | \`:biohazard:\` | + | [top](#table-of-contents) | :black_flag: | \`:black_flag:\` | :black_heart: | \`:black_heart:\` | + | [top](#table-of-contents) | :blonde_man: | \`:blonde_man:\` | :blonde_woman: | \`:blonde_woman:\` | + | [top](#table-of-contents) | :bolivia: | \`:bolivia:\` | :bosnia_herzegovina: | \`:bosnia_herzegovina:\` | + | [top](#table-of-contents) | :botswana: | \`:botswana:\` | :bow_and_arrow: | \`:bow_and_arrow:\` | + | [top](#table-of-contents) | :bowing_man: | \`:bowing_man:\` | :bowing_woman: | \`:bowing_woman:\` | + | [top](#table-of-contents) | :boxing_glove: | \`:boxing_glove:\` | :brazil: | \`:brazil:\` | + | [top](#table-of-contents) | :british_indian_ocean_territory: | \`:british_indian_ocean_territory:\` | :british_virgin_islands: | \`:british_virgin_islands:\` | + | [top](#table-of-contents) | :brunei: | \`:brunei:\` | :building_construction: | \`:building_construction:\` | + | [top](#table-of-contents) | :bulgaria: | \`:bulgaria:\` | :burkina_faso: | \`:burkina_faso:\` | + | [top](#table-of-contents) | :burrito: | \`:burrito:\` | :burundi: | \`:burundi:\` | + | [top](#table-of-contents) | :business_suit_levitating: | \`:business_suit_levitating:\` | :butterfly: | \`:butterfly:\` | + | [top](#table-of-contents) | :call_me_hand: | \`:call_me_hand:\` | :cambodia: | \`:cambodia:\` | + | [top](#table-of-contents) | :camera_flash: | \`:camera_flash:\` | :cameroon: | \`:cameroon:\` | + | [top](#table-of-contents) | :camping: | \`:camping:\` | :canada: | \`:canada:\` | + | [top](#table-of-contents) | :canary_islands: | \`:canary_islands:\` | :candle: | \`:candle:\` | + | [top](#table-of-contents) | :canoe: | \`:canoe:\` | :cape_verde: | \`:cape_verde:\` | + | [top](#table-of-contents) | :card_file_box: | \`:card_file_box:\` | :card_index_dividers: | \`:card_index_dividers:\` | + | [top](#table-of-contents) | :caribbean_netherlands: | \`:caribbean_netherlands:\` | :carrot: | \`:carrot:\` | + | [top](#table-of-contents) | :cayman_islands: | \`:cayman_islands:\` | :central_african_republic: | \`:central_african_republic:\` | + | [top](#table-of-contents) | :chad: | \`:chad:\` | :chains: | \`:chains:\` | + | [top](#table-of-contents) | :champagne: | \`:champagne:\` | :cheese: | \`:cheese:\` | + | [top](#table-of-contents) | :chile: | \`:chile:\` | :chipmunk: | \`:chipmunk:\` | + | [top](#table-of-contents) | :christmas_island: | \`:christmas_island:\` | :cityscape: | \`:cityscape:\` | + | [top](#table-of-contents) | :clamp: | \`:clamp:\` | :classical_building: | \`:classical_building:\` | + | [top](#table-of-contents) | :clinking_glasses: | \`:clinking_glasses:\` | :cloud_with_lightning: | \`:cloud_with_lightning:\` | + | [top](#table-of-contents) | :cloud_with_lightning_and_rain: | \`:cloud_with_lightning_and_rain:\` | :cloud_with_rain: | \`:cloud_with_rain:\` | + | [top](#table-of-contents) | :cloud_with_snow: | \`:cloud_with_snow:\` | :clown_face: | \`:clown_face:\` | + | [top](#table-of-contents) | :cocos_islands: | \`:cocos_islands:\` | :coffin: | \`:coffin:\` | + | [top](#table-of-contents) | :colombia: | \`:colombia:\` | :comet: | \`:comet:\` | + | [top](#table-of-contents) | :comoros: | \`:comoros:\` | :computer_mouse: | \`:computer_mouse:\` | + | [top](#table-of-contents) | :congo_brazzaville: | \`:congo_brazzaville:\` | :congo_kinshasa: | \`:congo_kinshasa:\` | + | [top](#table-of-contents) | :construction_worker_man: | \`:construction_worker_man:\` | :construction_worker_woman: | \`:construction_worker_woman:\` | + | [top](#table-of-contents) | :control_knobs: | \`:control_knobs:\` | :cook_islands: | \`:cook_islands:\` | + | [top](#table-of-contents) | :costa_rica: | \`:costa_rica:\` | :cote_divoire: | \`:cote_divoire:\` | + | [top](#table-of-contents) | :couch_and_lamp: | \`:couch_and_lamp:\` | :couple_with_heart_man_man: | \`:couple_with_heart_man_man:\` | + | [top](#table-of-contents) | :couple_with_heart_woman_man: | \`:couple_with_heart_woman_man:\` | :couple_with_heart_woman_woman: | \`:couple_with_heart_woman_woman:\` | + | [top](#table-of-contents) | :couplekiss_man_man: | \`:couplekiss_man_man:\` | :couplekiss_man_woman: | \`:couplekiss_man_woman:\` | + | [top](#table-of-contents) | :couplekiss_woman_woman: | \`:couplekiss_woman_woman:\` | :cowboy_hat_face: | \`:cowboy_hat_face:\` | + | [top](#table-of-contents) | :crab: | \`:crab:\` | :crayon: | \`:crayon:\` | + | [top](#table-of-contents) | :cricket: | \`:cricket:\` | :croatia: | \`:croatia:\` | + | [top](#table-of-contents) | :croissant: | \`:croissant:\` | :crossed_fingers: | \`:crossed_fingers:\` | + | [top](#table-of-contents) | :crossed_swords: | \`:crossed_swords:\` | :cuba: | \`:cuba:\` | + | [top](#table-of-contents) | :cucumber: | \`:cucumber:\` | :curacao: | \`:curacao:\` | + | [top](#table-of-contents) | :cyprus: | \`:cyprus:\` | :czech_republic: | \`:czech_republic:\` | + | [top](#table-of-contents) | :dagger: | \`:dagger:\` | :dancing_men: | \`:dancing_men:\` | + | [top](#table-of-contents) | :dancing_women: | \`:dancing_women:\` | :dark_sunglasses: | \`:dark_sunglasses:\` | + | [top](#table-of-contents) | :deer: | \`:deer:\` | :denmark: | \`:denmark:\` | + | [top](#table-of-contents) | :derelict_house: | \`:derelict_house:\` | :desert: | \`:desert:\` | + | [top](#table-of-contents) | :desert_island: | \`:desert_island:\` | :desktop_computer: | \`:desktop_computer:\` | + | [top](#table-of-contents) | :detective: | \`:detective:\` | :djibouti: | \`:djibouti:\` | + | [top](#table-of-contents) | :dominica: | \`:dominica:\` | :dominican_republic: | \`:dominican_republic:\` | + | [top](#table-of-contents) | :dove: | \`:dove:\` | :drooling_face: | \`:drooling_face:\` | + | [top](#table-of-contents) | :drum: | \`:drum:\` | :duck: | \`:duck:\` | + | [top](#table-of-contents) | :eagle: | \`:eagle:\` | :ecuador: | \`:ecuador:\` | + | [top](#table-of-contents) | :egypt: | \`:egypt:\` | :el_salvador: | \`:el_salvador:\` | + | [top](#table-of-contents) | :electron: | \`:electron:\` | :envelope_with_arrow: | \`:envelope_with_arrow:\` | + | [top](#table-of-contents) | :equatorial_guinea: | \`:equatorial_guinea:\` | :eritrea: | \`:eritrea:\` | + | [top](#table-of-contents) | :estonia: | \`:estonia:\` | :ethiopia: | \`:ethiopia:\` | + | [top](#table-of-contents) | :eu: | \`:eu:\` | :european_union: | \`:european_union:\` | + | [top](#table-of-contents) | :eye: | \`:eye:\` | :eye_speech_bubble: | \`:eye_speech_bubble:\` | + | [top](#table-of-contents) | :face_with_head_bandage: | \`:face_with_head_bandage:\` | :face_with_thermometer: | \`:face_with_thermometer:\` | + | [top](#table-of-contents) | :falkland_islands: | \`:falkland_islands:\` | :family_man_boy: | \`:family_man_boy:\` | + | [top](#table-of-contents) | :family_man_boy_boy: | \`:family_man_boy_boy:\` | :family_man_girl: | \`:family_man_girl:\` | + | [top](#table-of-contents) | :family_man_girl_boy: | \`:family_man_girl_boy:\` | :family_man_girl_girl: | \`:family_man_girl_girl:\` | + | [top](#table-of-contents) | :family_man_man_boy: | \`:family_man_man_boy:\` | :family_man_man_boy_boy: | \`:family_man_man_boy_boy:\` | + | [top](#table-of-contents) | :family_man_man_girl: | \`:family_man_man_girl:\` | :family_man_man_girl_boy: | \`:family_man_man_girl_boy:\` | + | [top](#table-of-contents) | :family_man_man_girl_girl: | \`:family_man_man_girl_girl:\` | :family_man_woman_boy: | \`:family_man_woman_boy:\` | + | [top](#table-of-contents) | :family_man_woman_boy_boy: | \`:family_man_woman_boy_boy:\` | :family_man_woman_girl: | \`:family_man_woman_girl:\` | + | [top](#table-of-contents) | :family_man_woman_girl_boy: | \`:family_man_woman_girl_boy:\` | :family_man_woman_girl_girl: | \`:family_man_woman_girl_girl:\` | + | [top](#table-of-contents) | :family_woman_boy: | \`:family_woman_boy:\` | :family_woman_boy_boy: | \`:family_woman_boy_boy:\` | + | [top](#table-of-contents) | :family_woman_girl: | \`:family_woman_girl:\` | :family_woman_girl_boy: | \`:family_woman_girl_boy:\` | + | [top](#table-of-contents) | :family_woman_girl_girl: | \`:family_woman_girl_girl:\` | :family_woman_woman_boy: | \`:family_woman_woman_boy:\` | + | [top](#table-of-contents) | :family_woman_woman_boy_boy: | \`:family_woman_woman_boy_boy:\` | :family_woman_woman_girl: | \`:family_woman_woman_girl:\` | + | [top](#table-of-contents) | :family_woman_woman_girl_boy: | \`:family_woman_woman_girl_boy:\` | :family_woman_woman_girl_girl: | \`:family_woman_woman_girl_girl:\` | + | [top](#table-of-contents) | :faroe_islands: | \`:faroe_islands:\` | :female_detective: | \`:female_detective:\` | + | [top](#table-of-contents) | :ferry: | \`:ferry:\` | :field_hockey: | \`:field_hockey:\` | + | [top](#table-of-contents) | :fiji: | \`:fiji:\` | :file_cabinet: | \`:file_cabinet:\` | + | [top](#table-of-contents) | :film_projector: | \`:film_projector:\` | :film_strip: | \`:film_strip:\` | + | [top](#table-of-contents) | :finland: | \`:finland:\` | :fist_left: | \`:fist_left:\` | + | [top](#table-of-contents) | :fist_oncoming: | \`:fist_oncoming:\` | :fist_raised: | \`:fist_raised:\` | + | [top](#table-of-contents) | :fist_right: | \`:fist_right:\` | :fleur_de_lis: | \`:fleur_de_lis:\` | + | [top](#table-of-contents) | :flight_arrival: | \`:flight_arrival:\` | :flight_departure: | \`:flight_departure:\` | + | [top](#table-of-contents) | :flipper: | \`:flipper:\` | :fog: | \`:fog:\` | + | [top](#table-of-contents) | :footprints: | \`:footprints:\` | :fountain_pen: | \`:fountain_pen:\` | + | [top](#table-of-contents) | :fox_face: | \`:fox_face:\` | :framed_picture: | \`:framed_picture:\` | + | [top](#table-of-contents) | :french_guiana: | \`:french_guiana:\` | :french_polynesia: | \`:french_polynesia:\` | + | [top](#table-of-contents) | :french_southern_territories: | \`:french_southern_territories:\` | :fried_egg: | \`:fried_egg:\` | + | [top](#table-of-contents) | :frowning_face: | \`:frowning_face:\` | :frowning_man: | \`:frowning_man:\` | + | [top](#table-of-contents) | :frowning_woman: | \`:frowning_woman:\` | :funeral_urn: | \`:funeral_urn:\` | + | [top](#table-of-contents) | :gabon: | \`:gabon:\` | :gambia: | \`:gambia:\` | + | [top](#table-of-contents) | :gear: | \`:gear:\` | :georgia: | \`:georgia:\` | + | [top](#table-of-contents) | :ghana: | \`:ghana:\` | :gibraltar: | \`:gibraltar:\` | + | [top](#table-of-contents) | :goal_net: | \`:goal_net:\` | :golfing_man: | \`:golfing_man:\` | + | [top](#table-of-contents) | :golfing_woman: | \`:golfing_woman:\` | :gorilla: | \`:gorilla:\` | + | [top](#table-of-contents) | :greece: | \`:greece:\` | :green_salad: | \`:green_salad:\` | + | [top](#table-of-contents) | :greenland: | \`:greenland:\` | :grenada: | \`:grenada:\` | + | [top](#table-of-contents) | :guadeloupe: | \`:guadeloupe:\` | :guam: | \`:guam:\` | + | [top](#table-of-contents) | :guardswoman: | \`:guardswoman:\` | :guatemala: | \`:guatemala:\` | + | [top](#table-of-contents) | :guernsey: | \`:guernsey:\` | :guinea: | \`:guinea:\` | + | [top](#table-of-contents) | :guinea_bissau: | \`:guinea_bissau:\` | :guyana: | \`:guyana:\` | + | [top](#table-of-contents) | :haircut_man: | \`:haircut_man:\` | :haircut_woman: | \`:haircut_woman:\` | + | [top](#table-of-contents) | :haiti: | \`:haiti:\` | :hammer_and_pick: | \`:hammer_and_pick:\` | + | [top](#table-of-contents) | :hammer_and_wrench: | \`:hammer_and_wrench:\` | :handshake: | \`:handshake:\` | + | [top](#table-of-contents) | :heavy_heart_exclamation: | \`:heavy_heart_exclamation:\` | :hole: | \`:hole:\` | + | [top](#table-of-contents) | :honduras: | \`:honduras:\` | :hong_kong: | \`:hong_kong:\` | + | [top](#table-of-contents) | :hot_pepper: | \`:hot_pepper:\` | :hotdog: | \`:hotdog:\` | + | [top](#table-of-contents) | :houses: | \`:houses:\` | :hugs: | \`:hugs:\` | + | [top](#table-of-contents) | :hungary: | \`:hungary:\` | :ice_hockey: | \`:ice_hockey:\` | + | [top](#table-of-contents) | :ice_skate: | \`:ice_skate:\` | :iceland: | \`:iceland:\` | + | [top](#table-of-contents) | :india: | \`:india:\` | :indonesia: | \`:indonesia:\` | + | [top](#table-of-contents) | :iran: | \`:iran:\` | :iraq: | \`:iraq:\` | + | [top](#table-of-contents) | :ireland: | \`:ireland:\` | :isle_of_man: | \`:isle_of_man:\` | + | [top](#table-of-contents) | :israel: | \`:israel:\` | :jamaica: | \`:jamaica:\` | + | [top](#table-of-contents) | :jersey: | \`:jersey:\` | :jordan: | \`:jordan:\` | + | [top](#table-of-contents) | :joystick: | \`:joystick:\` | :kaaba: | \`:kaaba:\` | + | [top](#table-of-contents) | :kazakhstan: | \`:kazakhstan:\` | :kenya: | \`:kenya:\` | + | [top](#table-of-contents) | :keyboard: | \`:keyboard:\` | :kick_scooter: | \`:kick_scooter:\` | + | [top](#table-of-contents) | :kiribati: | \`:kiribati:\` | :kiwi_fruit: | \`:kiwi_fruit:\` | + | [top](#table-of-contents) | :knife: | \`:knife:\` | :kosovo: | \`:kosovo:\` | + | [top](#table-of-contents) | :kuwait: | \`:kuwait:\` | :kyrgyzstan: | \`:kyrgyzstan:\` | + | [top](#table-of-contents) | :label: | \`:label:\` | :lantern: | \`:lantern:\` | + | [top](#table-of-contents) | :laos: | \`:laos:\` | :latin_cross: | \`:latin_cross:\` | + | [top](#table-of-contents) | :latvia: | \`:latvia:\` | :lebanon: | \`:lebanon:\` | + | [top](#table-of-contents) | :lesotho: | \`:lesotho:\` | :level_slider: | \`:level_slider:\` | + | [top](#table-of-contents) | :liberia: | \`:liberia:\` | :libya: | \`:libya:\` | + | [top](#table-of-contents) | :liechtenstein: | \`:liechtenstein:\` | :lion: | \`:lion:\` | + | [top](#table-of-contents) | :lithuania: | \`:lithuania:\` | :lizard: | \`:lizard:\` | + | [top](#table-of-contents) | :loud_sound: | \`:loud_sound:\` | :luxembourg: | \`:luxembourg:\` | + | [top](#table-of-contents) | :lying_face: | \`:lying_face:\` | :macau: | \`:macau:\` | + | [top](#table-of-contents) | :macedonia: | \`:macedonia:\` | :madagascar: | \`:madagascar:\` | + | [top](#table-of-contents) | :malawi: | \`:malawi:\` | :malaysia: | \`:malaysia:\` | + | [top](#table-of-contents) | :maldives: | \`:maldives:\` | :male_detective: | \`:male_detective:\` | + | [top](#table-of-contents) | :mali: | \`:mali:\` | :malta: | \`:malta:\` | + | [top](#table-of-contents) | :man_artist: | \`:man_artist:\` | :man_astronaut: | \`:man_astronaut:\` | + | [top](#table-of-contents) | :man_cartwheeling: | \`:man_cartwheeling:\` | :man_cook: | \`:man_cook:\` | + | [top](#table-of-contents) | :man_dancing: | \`:man_dancing:\` | :man_facepalming: | \`:man_facepalming:\` | + | [top](#table-of-contents) | :man_factory_worker: | \`:man_factory_worker:\` | :man_farmer: | \`:man_farmer:\` | + | [top](#table-of-contents) | :man_firefighter: | \`:man_firefighter:\` | :man_health_worker: | \`:man_health_worker:\` | + | [top](#table-of-contents) | :man_in_tuxedo: | \`:man_in_tuxedo:\` | :man_judge: | \`:man_judge:\` | + | [top](#table-of-contents) | :man_juggling: | \`:man_juggling:\` | :man_mechanic: | \`:man_mechanic:\` | + | [top](#table-of-contents) | :man_office_worker: | \`:man_office_worker:\` | :man_pilot: | \`:man_pilot:\` | + | [top](#table-of-contents) | :man_playing_handball: | \`:man_playing_handball:\` | :man_playing_water_polo: | \`:man_playing_water_polo:\` | + | [top](#table-of-contents) | :man_scientist: | \`:man_scientist:\` | :man_shrugging: | \`:man_shrugging:\` | + | [top](#table-of-contents) | :man_singer: | \`:man_singer:\` | :man_student: | \`:man_student:\` | + | [top](#table-of-contents) | :man_teacher: | \`:man_teacher:\` | :man_technologist: | \`:man_technologist:\` | + | [top](#table-of-contents) | :mandarin: | \`:mandarin:\` | :mantelpiece_clock: | \`:mantelpiece_clock:\` | + | [top](#table-of-contents) | :marshall_islands: | \`:marshall_islands:\` | :martial_arts_uniform: | \`:martial_arts_uniform:\` | + | [top](#table-of-contents) | :martinique: | \`:martinique:\` | :massage_man: | \`:massage_man:\` | + | [top](#table-of-contents) | :massage_woman: | \`:massage_woman:\` | :mauritania: | \`:mauritania:\` | + | [top](#table-of-contents) | :mauritius: | \`:mauritius:\` | :mayotte: | \`:mayotte:\` | + | [top](#table-of-contents) | :medal_military: | \`:medal_military:\` | :medal_sports: | \`:medal_sports:\` | + | [top](#table-of-contents) | :men_wrestling: | \`:men_wrestling:\` | :menorah: | \`:menorah:\` | + | [top](#table-of-contents) | :mexico: | \`:mexico:\` | :micronesia: | \`:micronesia:\` | + | [top](#table-of-contents) | :middle_finger: | \`:middle_finger:\` | :milk_glass: | \`:milk_glass:\` | + | [top](#table-of-contents) | :moldova: | \`:moldova:\` | :monaco: | \`:monaco:\` | + | [top](#table-of-contents) | :money_mouth_face: | \`:money_mouth_face:\` | :mongolia: | \`:mongolia:\` | + | [top](#table-of-contents) | :montenegro: | \`:montenegro:\` | :montserrat: | \`:montserrat:\` | + | [top](#table-of-contents) | :moon: | \`:moon:\` | :morocco: | \`:morocco:\` | + | [top](#table-of-contents) | :mosque: | \`:mosque:\` | :motor_boat: | \`:motor_boat:\` | + | [top](#table-of-contents) | :motor_scooter: | \`:motor_scooter:\` | :motorcycle: | \`:motorcycle:\` | + | [top](#table-of-contents) | :motorway: | \`:motorway:\` | :mountain: | \`:mountain:\` | + | [top](#table-of-contents) | :mountain_biking_man: | \`:mountain_biking_man:\` | :mountain_biking_woman: | \`:mountain_biking_woman:\` | + | [top](#table-of-contents) | :mountain_snow: | \`:mountain_snow:\` | :mozambique: | \`:mozambique:\` | + | [top](#table-of-contents) | :mrs_claus: | \`:mrs_claus:\` | :myanmar: | \`:myanmar:\` | + | [top](#table-of-contents) | :namibia: | \`:namibia:\` | :national_park: | \`:national_park:\` | + | [top](#table-of-contents) | :nauru: | \`:nauru:\` | :nauseated_face: | \`:nauseated_face:\` | + | [top](#table-of-contents) | :nepal: | \`:nepal:\` | :nerd_face: | \`:nerd_face:\` | + | [top](#table-of-contents) | :netherlands: | \`:netherlands:\` | :new_caledonia: | \`:new_caledonia:\` | + | [top](#table-of-contents) | :new_zealand: | \`:new_zealand:\` | :newspaper_roll: | \`:newspaper_roll:\` | + | [top](#table-of-contents) | :next_track_button: | \`:next_track_button:\` | :ng_man: | \`:ng_man:\` | + | [top](#table-of-contents) | :ng_woman: | \`:ng_woman:\` | :nicaragua: | \`:nicaragua:\` | + | [top](#table-of-contents) | :niger: | \`:niger:\` | :nigeria: | \`:nigeria:\` | + | [top](#table-of-contents) | :night_with_stars: | \`:night_with_stars:\` | :niue: | \`:niue:\` | + | [top](#table-of-contents) | :no_good_man: | \`:no_good_man:\` | :no_good_woman: | \`:no_good_woman:\` | + | [top](#table-of-contents) | :norfolk_island: | \`:norfolk_island:\` | :north_korea: | \`:north_korea:\` | + | [top](#table-of-contents) | :northern_mariana_islands: | \`:northern_mariana_islands:\` | :norway: | \`:norway:\` | + | [top](#table-of-contents) | :oil_drum: | \`:oil_drum:\` | :ok_man: | \`:ok_man:\` | + | [top](#table-of-contents) | :old_key: | \`:old_key:\` | :om: | \`:om:\` | + | [top](#table-of-contents) | :oman: | \`:oman:\` | :open_book: | \`:open_book:\` | + | [top](#table-of-contents) | :open_umbrella: | \`:open_umbrella:\` | :orange: | \`:orange:\` | + | [top](#table-of-contents) | :orthodox_cross: | \`:orthodox_cross:\` | :owl: | \`:owl:\` | + | [top](#table-of-contents) | :paintbrush: | \`:paintbrush:\` | :pakistan: | \`:pakistan:\` | + | [top](#table-of-contents) | :palau: | \`:palau:\` | :palestinian_territories: | \`:palestinian_territories:\` | + | [top](#table-of-contents) | :panama: | \`:panama:\` | :pancakes: | \`:pancakes:\` | + | [top](#table-of-contents) | :paperclips: | \`:paperclips:\` | :papua_new_guinea: | \`:papua_new_guinea:\` | + | [top](#table-of-contents) | :paraguay: | \`:paraguay:\` | :parasol_on_ground: | \`:parasol_on_ground:\` | + | [top](#table-of-contents) | :passenger_ship: | \`:passenger_ship:\` | :pause_button: | \`:pause_button:\` | + | [top](#table-of-contents) | :peace_symbol: | \`:peace_symbol:\` | :peanuts: | \`:peanuts:\` | + | [top](#table-of-contents) | :pen: | \`:pen:\` | :person_fencing: | \`:person_fencing:\` | + | [top](#table-of-contents) | :peru: | \`:peru:\` | :philippines: | \`:philippines:\` | + | [top](#table-of-contents) | :pick: | \`:pick:\` | :ping_pong: | \`:ping_pong:\` | + | [top](#table-of-contents) | :pitcairn_islands: | \`:pitcairn_islands:\` | :place_of_worship: | \`:place_of_worship:\` | + | [top](#table-of-contents) | :plate_with_cutlery: | \`:plate_with_cutlery:\` | :play_or_pause_button: | \`:play_or_pause_button:\` | + | [top](#table-of-contents) | :poland: | \`:poland:\` | :policeman: | \`:policeman:\` | + | [top](#table-of-contents) | :policewoman: | \`:policewoman:\` | :popcorn: | \`:popcorn:\` | + | [top](#table-of-contents) | :portugal: | \`:portugal:\` | :potato: | \`:potato:\` | + | [top](#table-of-contents) | :pout: | \`:pout:\` | :pouting_man: | \`:pouting_man:\` | + | [top](#table-of-contents) | :pouting_woman: | \`:pouting_woman:\` | :prayer_beads: | \`:prayer_beads:\` | + | [top](#table-of-contents) | :pregnant_woman: | \`:pregnant_woman:\` | :previous_track_button: | \`:previous_track_button:\` | + | [top](#table-of-contents) | :prince: | \`:prince:\` | :printer: | \`:printer:\` | + | [top](#table-of-contents) | :puerto_rico: | \`:puerto_rico:\` | :qatar: | \`:qatar:\` | + | [top](#table-of-contents) | :racing_car: | \`:racing_car:\` | :radioactive: | \`:radioactive:\` | + | [top](#table-of-contents) | :railway_track: | \`:railway_track:\` | :rainbow_flag: | \`:rainbow_flag:\` | + | [top](#table-of-contents) | :raised_back_of_hand: | \`:raised_back_of_hand:\` | :raised_hand_with_fingers_splayed: | \`:raised_hand_with_fingers_splayed:\` | + | [top](#table-of-contents) | :raising_hand_man: | \`:raising_hand_man:\` | :raising_hand_woman: | \`:raising_hand_woman:\` | + | [top](#table-of-contents) | :record_button: | \`:record_button:\` | :reminder_ribbon: | \`:reminder_ribbon:\` | + | [top](#table-of-contents) | :rescue_worker_helmet: | \`:rescue_worker_helmet:\` | :reunion: | \`:reunion:\` | + | [top](#table-of-contents) | :rhinoceros: | \`:rhinoceros:\` | :right_anger_bubble: | \`:right_anger_bubble:\` | + | [top](#table-of-contents) | :robot: | \`:robot:\` | :rofl: | \`:rofl:\` | + | [top](#table-of-contents) | :roll_eyes: | \`:roll_eyes:\` | :romania: | \`:romania:\` | + | [top](#table-of-contents) | :rosette: | \`:rosette:\` | :rowing_man: | \`:rowing_man:\` | + | [top](#table-of-contents) | :rowing_woman: | \`:rowing_woman:\` | :running_man: | \`:running_man:\` | + | [top](#table-of-contents) | :running_woman: | \`:running_woman:\` | :rwanda: | \`:rwanda:\` | + | [top](#table-of-contents) | :samoa: | \`:samoa:\` | :san_marino: | \`:san_marino:\` | + | [top](#table-of-contents) | :sao_tome_principe: | \`:sao_tome_principe:\` | :saudi_arabia: | \`:saudi_arabia:\` | + | [top](#table-of-contents) | :scorpion: | \`:scorpion:\` | :selfie: | \`:selfie:\` | + | [top](#table-of-contents) | :senegal: | \`:senegal:\` | :serbia: | \`:serbia:\` | + | [top](#table-of-contents) | :seychelles: | \`:seychelles:\` | :shallow_pan_of_food: | \`:shallow_pan_of_food:\` | + | [top](#table-of-contents) | :shamrock: | \`:shamrock:\` | :shark: | \`:shark:\` | + | [top](#table-of-contents) | :shield: | \`:shield:\` | :shinto_shrine: | \`:shinto_shrine:\` | + | [top](#table-of-contents) | :shopping: | \`:shopping:\` | :shopping_cart: | \`:shopping_cart:\` | + | [top](#table-of-contents) | :shrimp: | \`:shrimp:\` | :sierra_leone: | \`:sierra_leone:\` | + | [top](#table-of-contents) | :singapore: | \`:singapore:\` | :sint_maarten: | \`:sint_maarten:\` | + | [top](#table-of-contents) | :skier: | \`:skier:\` | :skull_and_crossbones: | \`:skull_and_crossbones:\` | + | [top](#table-of-contents) | :sleeping_bed: | \`:sleeping_bed:\` | :slightly_frowning_face: | \`:slightly_frowning_face:\` | + | [top](#table-of-contents) | :slightly_smiling_face: | \`:slightly_smiling_face:\` | :slovakia: | \`:slovakia:\` | + | [top](#table-of-contents) | :slovenia: | \`:slovenia:\` | :small_airplane: | \`:small_airplane:\` | + | [top](#table-of-contents) | :sneezing_face: | \`:sneezing_face:\` | :snowman_with_snow: | \`:snowman_with_snow:\` | + | [top](#table-of-contents) | :solomon_islands: | \`:solomon_islands:\` | :somalia: | \`:somalia:\` | + | [top](#table-of-contents) | :south_africa: | \`:south_africa:\` | :south_georgia_south_sandwich_islands: | \`:south_georgia_south_sandwich_islands:\` | + | [top](#table-of-contents) | :south_sudan: | \`:south_sudan:\` | :speaking_head: | \`:speaking_head:\` | + | [top](#table-of-contents) | :spider: | \`:spider:\` | :spider_web: | \`:spider_web:\` | + | [top](#table-of-contents) | :spiral_calendar: | \`:spiral_calendar:\` | :spiral_notepad: | \`:spiral_notepad:\` | + | [top](#table-of-contents) | :spoon: | \`:spoon:\` | :squid: | \`:squid:\` | + | [top](#table-of-contents) | :sri_lanka: | \`:sri_lanka:\` | :st_barthelemy: | \`:st_barthelemy:\` | + | [top](#table-of-contents) | :st_helena: | \`:st_helena:\` | :st_kitts_nevis: | \`:st_kitts_nevis:\` | + | [top](#table-of-contents) | :st_lucia: | \`:st_lucia:\` | :st_pierre_miquelon: | \`:st_pierre_miquelon:\` | + | [top](#table-of-contents) | :st_vincent_grenadines: | \`:st_vincent_grenadines:\` | :stadium: | \`:stadium:\` | + | [top](#table-of-contents) | :star_and_crescent: | \`:star_and_crescent:\` | :star_of_david: | \`:star_of_david:\` | + | [top](#table-of-contents) | :stop_button: | \`:stop_button:\` | :stop_sign: | \`:stop_sign:\` | + | [top](#table-of-contents) | :stopwatch: | \`:stopwatch:\` | :studio_microphone: | \`:studio_microphone:\` | + | [top](#table-of-contents) | :stuffed_flatbread: | \`:stuffed_flatbread:\` | :sudan: | \`:sudan:\` | + | [top](#table-of-contents) | :sun_behind_large_cloud: | \`:sun_behind_large_cloud:\` | :sun_behind_rain_cloud: | \`:sun_behind_rain_cloud:\` | + | [top](#table-of-contents) | :sun_behind_small_cloud: | \`:sun_behind_small_cloud:\` | :surfing_man: | \`:surfing_man:\` | + | [top](#table-of-contents) | :surfing_woman: | \`:surfing_woman:\` | :suriname: | \`:suriname:\` | + | [top](#table-of-contents) | :swaziland: | \`:swaziland:\` | :sweden: | \`:sweden:\` | + | [top](#table-of-contents) | :swimming_man: | \`:swimming_man:\` | :swimming_woman: | \`:swimming_woman:\` | + | [top](#table-of-contents) | :switzerland: | \`:switzerland:\` | :synagogue: | \`:synagogue:\` | + | [top](#table-of-contents) | :syria: | \`:syria:\` | :taco: | \`:taco:\` | + | [top](#table-of-contents) | :taiwan: | \`:taiwan:\` | :tajikistan: | \`:tajikistan:\` | + | [top](#table-of-contents) | :tanzania: | \`:tanzania:\` | :thailand: | \`:thailand:\` | + | [top](#table-of-contents) | :thermometer: | \`:thermometer:\` | :thinking: | \`:thinking:\` | + | [top](#table-of-contents) | :tickets: | \`:tickets:\` | :timer_clock: | \`:timer_clock:\` | + | [top](#table-of-contents) | :timor_leste: | \`:timor_leste:\` | :tipping_hand_man: | \`:tipping_hand_man:\` | + | [top](#table-of-contents) | :tipping_hand_woman: | \`:tipping_hand_woman:\` | :togo: | \`:togo:\` | + | [top](#table-of-contents) | :tokelau: | \`:tokelau:\` | :tonga: | \`:tonga:\` | + | [top](#table-of-contents) | :tornado: | \`:tornado:\` | :tr: | \`:tr:\` | + | [top](#table-of-contents) | :trackball: | \`:trackball:\` | :trinidad_tobago: | \`:trinidad_tobago:\` | + | [top](#table-of-contents) | :tumbler_glass: | \`:tumbler_glass:\` | :tunisia: | \`:tunisia:\` | + | [top](#table-of-contents) | :turkey: | \`:turkey:\` | :turkmenistan: | \`:turkmenistan:\` | + | [top](#table-of-contents) | :turks_caicos_islands: | \`:turks_caicos_islands:\` | :tuvalu: | \`:tuvalu:\` | + | [top](#table-of-contents) | :uganda: | \`:uganda:\` | :ukraine: | \`:ukraine:\` | + | [top](#table-of-contents) | :unicorn: | \`:unicorn:\` | :united_arab_emirates: | \`:united_arab_emirates:\` | + | [top](#table-of-contents) | :upside_down_face: | \`:upside_down_face:\` | :uruguay: | \`:uruguay:\` | + | [top](#table-of-contents) | :us_virgin_islands: | \`:us_virgin_islands:\` | :uzbekistan: | \`:uzbekistan:\` | + | [top](#table-of-contents) | :vanuatu: | \`:vanuatu:\` | :vatican_city: | \`:vatican_city:\` | + | [top](#table-of-contents) | :venezuela: | \`:venezuela:\` | :vietnam: | \`:vietnam:\` | + | [top](#table-of-contents) | :volleyball: | \`:volleyball:\` | :vulcan_salute: | \`:vulcan_salute:\` | + | [top](#table-of-contents) | :walking: | \`:walking:\` | :walking_man: | \`:walking_man:\` | + | [top](#table-of-contents) | :walking_woman: | \`:walking_woman:\` | :wallis_futuna: | \`:wallis_futuna:\` | + | [top](#table-of-contents) | :wastebasket: | \`:wastebasket:\` | :weight_lifting_man: | \`:weight_lifting_man:\` | + | [top](#table-of-contents) | :weight_lifting_woman: | \`:weight_lifting_woman:\` | :western_sahara: | \`:western_sahara:\` | + | [top](#table-of-contents) | :wheel_of_dharma: | \`:wheel_of_dharma:\` | :white_flag: | \`:white_flag:\` | + | [top](#table-of-contents) | :wilted_flower: | \`:wilted_flower:\` | :wind_face: | \`:wind_face:\` | + | [top](#table-of-contents) | :woman_artist: | \`:woman_artist:\` | :woman_astronaut: | \`:woman_astronaut:\` | + | [top](#table-of-contents) | :woman_cartwheeling: | \`:woman_cartwheeling:\` | :woman_cook: | \`:woman_cook:\` | + | [top](#table-of-contents) | :woman_facepalming: | \`:woman_facepalming:\` | :woman_factory_worker: | \`:woman_factory_worker:\` | + | [top](#table-of-contents) | :woman_farmer: | \`:woman_farmer:\` | :woman_firefighter: | \`:woman_firefighter:\` | + | [top](#table-of-contents) | :woman_health_worker: | \`:woman_health_worker:\` | :woman_judge: | \`:woman_judge:\` | + | [top](#table-of-contents) | :woman_juggling: | \`:woman_juggling:\` | :woman_mechanic: | \`:woman_mechanic:\` | + | [top](#table-of-contents) | :woman_office_worker: | \`:woman_office_worker:\` | :woman_pilot: | \`:woman_pilot:\` | + | [top](#table-of-contents) | :woman_playing_handball: | \`:woman_playing_handball:\` | :woman_playing_water_polo: | \`:woman_playing_water_polo:\` | + | [top](#table-of-contents) | :woman_scientist: | \`:woman_scientist:\` | :woman_shrugging: | \`:woman_shrugging:\` | + | [top](#table-of-contents) | :woman_singer: | \`:woman_singer:\` | :woman_student: | \`:woman_student:\` | + | [top](#table-of-contents) | :woman_teacher: | \`:woman_teacher:\` | :woman_technologist: | \`:woman_technologist:\` | + | [top](#table-of-contents) | :woman_with_turban: | \`:woman_with_turban:\` | :women_wrestling: | \`:women_wrestling:\` | + | [top](#table-of-contents) | :world_map: | \`:world_map:\` | :writing_hand: | \`:writing_hand:\` | + | [top](#table-of-contents) | :yemen: | \`:yemen:\` | :yin_yang: | \`:yin_yang:\` | + | [top](#table-of-contents) | :zambia: | \`:zambia:\` | :zimbabwe: | \`:zimbabwe:\` | + | [top](#table-of-contents) | :zipper_mouth_face: | \`:zipper_mouth_face:\` | | |" + `); +}); diff --git a/scripts/generate.ts b/scripts/generate.ts deleted file mode 100644 index 6fffd84..0000000 --- a/scripts/generate.ts +++ /dev/null @@ -1,11 +0,0 @@ -import * as fs from 'fs'; -import {create_cheat_sheet} from '../src/create-cheat-sheet'; - -const output_filename = process.argv[2]; -if (output_filename === undefined) { - throw new Error(`Usage ts-node path/to/generate.ts path/to/output.md`); -} - -create_cheat_sheet().then(cheat_sheet => { - fs.writeFileSync(output_filename, cheat_sheet, 'utf8'); -}); diff --git a/src/__snapshots__/create-cheat-sheet.test.ts.snap b/src/__snapshots__/create-cheat-sheet.test.ts.snap deleted file mode 100644 index d30a1af..0000000 --- a/src/__snapshots__/create-cheat-sheet.test.ts.snap +++ /dev/null @@ -1,803 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`create-cheat-sheet 1`] = ` -"# emoji-cheat-sheet - -[![build](https://travis-ci.org/ikatyang/emoji-cheat-sheet.svg?branch=master)](https://travis-ci.org/ikatyang/emoji-cheat-sheet) - -This cheat sheet is automatically generated from [GitHub Emoji API](https://api.github.com/emojis) and [Emoji Cheat Sheet](http://www.emoji-cheat-sheet.com) - -## Table of Contents - -- [People](#people) -- [Nature](#nature) -- [Objects](#objects) -- [Places](#places) -- [Symbols](#symbols) -- [Uncategorized](#uncategorized) - -### People - -| | ico | emoji | ico | emoji | -| - | --- | ----- | --- | ----- | -| [top](#table-of-contents) | :bowtie: | \`:bowtie:\` | :smile: | \`:smile:\` | -| [top](#table-of-contents) | :laughing: | \`:laughing:\` | :blush: | \`:blush:\` | -| [top](#table-of-contents) | :smiley: | \`:smiley:\` | :relaxed: | \`:relaxed:\` | -| [top](#table-of-contents) | :smirk: | \`:smirk:\` | :heart_eyes: | \`:heart_eyes:\` | -| [top](#table-of-contents) | :kissing_heart: | \`:kissing_heart:\` | :kissing_closed_eyes: | \`:kissing_closed_eyes:\` | -| [top](#table-of-contents) | :flushed: | \`:flushed:\` | :relieved: | \`:relieved:\` | -| [top](#table-of-contents) | :satisfied: | \`:satisfied:\` | :grin: | \`:grin:\` | -| [top](#table-of-contents) | :wink: | \`:wink:\` | :stuck_out_tongue_winking_eye: | \`:stuck_out_tongue_winking_eye:\` | -| [top](#table-of-contents) | :stuck_out_tongue_closed_eyes: | \`:stuck_out_tongue_closed_eyes:\` | :grinning: | \`:grinning:\` | -| [top](#table-of-contents) | :kissing: | \`:kissing:\` | :kissing_smiling_eyes: | \`:kissing_smiling_eyes:\` | -| [top](#table-of-contents) | :stuck_out_tongue: | \`:stuck_out_tongue:\` | :sleeping: | \`:sleeping:\` | -| [top](#table-of-contents) | :worried: | \`:worried:\` | :frowning: | \`:frowning:\` | -| [top](#table-of-contents) | :anguished: | \`:anguished:\` | :open_mouth: | \`:open_mouth:\` | -| [top](#table-of-contents) | :grimacing: | \`:grimacing:\` | :confused: | \`:confused:\` | -| [top](#table-of-contents) | :hushed: | \`:hushed:\` | :expressionless: | \`:expressionless:\` | -| [top](#table-of-contents) | :unamused: | \`:unamused:\` | :sweat_smile: | \`:sweat_smile:\` | -| [top](#table-of-contents) | :sweat: | \`:sweat:\` | :disappointed_relieved: | \`:disappointed_relieved:\` | -| [top](#table-of-contents) | :weary: | \`:weary:\` | :pensive: | \`:pensive:\` | -| [top](#table-of-contents) | :disappointed: | \`:disappointed:\` | :confounded: | \`:confounded:\` | -| [top](#table-of-contents) | :fearful: | \`:fearful:\` | :cold_sweat: | \`:cold_sweat:\` | -| [top](#table-of-contents) | :persevere: | \`:persevere:\` | :cry: | \`:cry:\` | -| [top](#table-of-contents) | :sob: | \`:sob:\` | :joy: | \`:joy:\` | -| [top](#table-of-contents) | :astonished: | \`:astonished:\` | :scream: | \`:scream:\` | -| [top](#table-of-contents) | :neckbeard: | \`:neckbeard:\` | :tired_face: | \`:tired_face:\` | -| [top](#table-of-contents) | :angry: | \`:angry:\` | :rage: | \`:rage:\` | -| [top](#table-of-contents) | :triumph: | \`:triumph:\` | :sleepy: | \`:sleepy:\` | -| [top](#table-of-contents) | :yum: | \`:yum:\` | :mask: | \`:mask:\` | -| [top](#table-of-contents) | :sunglasses: | \`:sunglasses:\` | :dizzy_face: | \`:dizzy_face:\` | -| [top](#table-of-contents) | :imp: | \`:imp:\` | :smiling_imp: | \`:smiling_imp:\` | -| [top](#table-of-contents) | :neutral_face: | \`:neutral_face:\` | :no_mouth: | \`:no_mouth:\` | -| [top](#table-of-contents) | :innocent: | \`:innocent:\` | :alien: | \`:alien:\` | -| [top](#table-of-contents) | :yellow_heart: | \`:yellow_heart:\` | :blue_heart: | \`:blue_heart:\` | -| [top](#table-of-contents) | :purple_heart: | \`:purple_heart:\` | :heart: | \`:heart:\` | -| [top](#table-of-contents) | :green_heart: | \`:green_heart:\` | :broken_heart: | \`:broken_heart:\` | -| [top](#table-of-contents) | :heartbeat: | \`:heartbeat:\` | :heartpulse: | \`:heartpulse:\` | -| [top](#table-of-contents) | :two_hearts: | \`:two_hearts:\` | :revolving_hearts: | \`:revolving_hearts:\` | -| [top](#table-of-contents) | :cupid: | \`:cupid:\` | :sparkling_heart: | \`:sparkling_heart:\` | -| [top](#table-of-contents) | :sparkles: | \`:sparkles:\` | :star: | \`:star:\` | -| [top](#table-of-contents) | :star2: | \`:star2:\` | :dizzy: | \`:dizzy:\` | -| [top](#table-of-contents) | :boom: | \`:boom:\` | :collision: | \`:collision:\` | -| [top](#table-of-contents) | :anger: | \`:anger:\` | :exclamation: | \`:exclamation:\` | -| [top](#table-of-contents) | :question: | \`:question:\` | :grey_exclamation: | \`:grey_exclamation:\` | -| [top](#table-of-contents) | :grey_question: | \`:grey_question:\` | :zzz: | \`:zzz:\` | -| [top](#table-of-contents) | :dash: | \`:dash:\` | :sweat_drops: | \`:sweat_drops:\` | -| [top](#table-of-contents) | :notes: | \`:notes:\` | :musical_note: | \`:musical_note:\` | -| [top](#table-of-contents) | :fire: | \`:fire:\` | :hankey: | \`:hankey:\` | -| [top](#table-of-contents) | :poop: | \`:poop:\` | :shit: | \`:shit:\` | -| [top](#table-of-contents) | :+1: | \`:+1:\` | :thumbsup: | \`:thumbsup:\` | -| [top](#table-of-contents) | :-1: | \`:-1:\` | :thumbsdown: | \`:thumbsdown:\` | -| [top](#table-of-contents) | :ok_hand: | \`:ok_hand:\` | :punch: | \`:punch:\` | -| [top](#table-of-contents) | :facepunch: | \`:facepunch:\` | :fist: | \`:fist:\` | -| [top](#table-of-contents) | :v: | \`:v:\` | :wave: | \`:wave:\` | -| [top](#table-of-contents) | :hand: | \`:hand:\` | :raised_hand: | \`:raised_hand:\` | -| [top](#table-of-contents) | :open_hands: | \`:open_hands:\` | :point_up: | \`:point_up:\` | -| [top](#table-of-contents) | :point_down: | \`:point_down:\` | :point_left: | \`:point_left:\` | -| [top](#table-of-contents) | :point_right: | \`:point_right:\` | :raised_hands: | \`:raised_hands:\` | -| [top](#table-of-contents) | :pray: | \`:pray:\` | :point_up_2: | \`:point_up_2:\` | -| [top](#table-of-contents) | :clap: | \`:clap:\` | :muscle: | \`:muscle:\` | -| [top](#table-of-contents) | :metal: | \`:metal:\` | :fu: | \`:fu:\` | -| [top](#table-of-contents) | :runner: | \`:runner:\` | :running: | \`:running:\` | -| [top](#table-of-contents) | :couple: | \`:couple:\` | :family: | \`:family:\` | -| [top](#table-of-contents) | :two_men_holding_hands: | \`:two_men_holding_hands:\` | :two_women_holding_hands: | \`:two_women_holding_hands:\` | -| [top](#table-of-contents) | :dancer: | \`:dancer:\` | :dancers: | \`:dancers:\` | -| [top](#table-of-contents) | :ok_woman: | \`:ok_woman:\` | :no_good: | \`:no_good:\` | -| [top](#table-of-contents) | :information_desk_person: | \`:information_desk_person:\` | :raising_hand: | \`:raising_hand:\` | -| [top](#table-of-contents) | :bride_with_veil: | \`:bride_with_veil:\` | :person_with_pouting_face: | \`:person_with_pouting_face:\` | -| [top](#table-of-contents) | :person_frowning: | \`:person_frowning:\` | :bow: | \`:bow:\` | -| [top](#table-of-contents) | :couple_with_heart: | \`:couple_with_heart:\` | :massage: | \`:massage:\` | -| [top](#table-of-contents) | :haircut: | \`:haircut:\` | :nail_care: | \`:nail_care:\` | -| [top](#table-of-contents) | :boy: | \`:boy:\` | :girl: | \`:girl:\` | -| [top](#table-of-contents) | :woman: | \`:woman:\` | :man: | \`:man:\` | -| [top](#table-of-contents) | :baby: | \`:baby:\` | :older_woman: | \`:older_woman:\` | -| [top](#table-of-contents) | :older_man: | \`:older_man:\` | :person_with_blond_hair: | \`:person_with_blond_hair:\` | -| [top](#table-of-contents) | :man_with_gua_pi_mao: | \`:man_with_gua_pi_mao:\` | :man_with_turban: | \`:man_with_turban:\` | -| [top](#table-of-contents) | :construction_worker: | \`:construction_worker:\` | :cop: | \`:cop:\` | -| [top](#table-of-contents) | :angel: | \`:angel:\` | :princess: | \`:princess:\` | -| [top](#table-of-contents) | :smiley_cat: | \`:smiley_cat:\` | :smile_cat: | \`:smile_cat:\` | -| [top](#table-of-contents) | :heart_eyes_cat: | \`:heart_eyes_cat:\` | :kissing_cat: | \`:kissing_cat:\` | -| [top](#table-of-contents) | :smirk_cat: | \`:smirk_cat:\` | :scream_cat: | \`:scream_cat:\` | -| [top](#table-of-contents) | :crying_cat_face: | \`:crying_cat_face:\` | :joy_cat: | \`:joy_cat:\` | -| [top](#table-of-contents) | :pouting_cat: | \`:pouting_cat:\` | :japanese_ogre: | \`:japanese_ogre:\` | -| [top](#table-of-contents) | :japanese_goblin: | \`:japanese_goblin:\` | :see_no_evil: | \`:see_no_evil:\` | -| [top](#table-of-contents) | :hear_no_evil: | \`:hear_no_evil:\` | :speak_no_evil: | \`:speak_no_evil:\` | -| [top](#table-of-contents) | :guardsman: | \`:guardsman:\` | :skull: | \`:skull:\` | -| [top](#table-of-contents) | :feet: | \`:feet:\` | :lips: | \`:lips:\` | -| [top](#table-of-contents) | :kiss: | \`:kiss:\` | :droplet: | \`:droplet:\` | -| [top](#table-of-contents) | :ear: | \`:ear:\` | :eyes: | \`:eyes:\` | -| [top](#table-of-contents) | :nose: | \`:nose:\` | :tongue: | \`:tongue:\` | -| [top](#table-of-contents) | :love_letter: | \`:love_letter:\` | :bust_in_silhouette: | \`:bust_in_silhouette:\` | -| [top](#table-of-contents) | :busts_in_silhouette: | \`:busts_in_silhouette:\` | :speech_balloon: | \`:speech_balloon:\` | -| [top](#table-of-contents) | :thought_balloon: | \`:thought_balloon:\` | :feelsgood: | \`:feelsgood:\` | -| [top](#table-of-contents) | :finnadie: | \`:finnadie:\` | :goberserk: | \`:goberserk:\` | -| [top](#table-of-contents) | :godmode: | \`:godmode:\` | :hurtrealbad: | \`:hurtrealbad:\` | -| [top](#table-of-contents) | :rage1: | \`:rage1:\` | :rage2: | \`:rage2:\` | -| [top](#table-of-contents) | :rage3: | \`:rage3:\` | :rage4: | \`:rage4:\` | -| [top](#table-of-contents) | :suspect: | \`:suspect:\` | :trollface: | \`:trollface:\` | - -### Nature - -| | ico | emoji | ico | emoji | -| - | --- | ----- | --- | ----- | -| [top](#table-of-contents) | :sunny: | \`:sunny:\` | :umbrella: | \`:umbrella:\` | -| [top](#table-of-contents) | :cloud: | \`:cloud:\` | :snowflake: | \`:snowflake:\` | -| [top](#table-of-contents) | :snowman: | \`:snowman:\` | :zap: | \`:zap:\` | -| [top](#table-of-contents) | :cyclone: | \`:cyclone:\` | :foggy: | \`:foggy:\` | -| [top](#table-of-contents) | :ocean: | \`:ocean:\` | :cat: | \`:cat:\` | -| [top](#table-of-contents) | :dog: | \`:dog:\` | :mouse: | \`:mouse:\` | -| [top](#table-of-contents) | :hamster: | \`:hamster:\` | :rabbit: | \`:rabbit:\` | -| [top](#table-of-contents) | :wolf: | \`:wolf:\` | :frog: | \`:frog:\` | -| [top](#table-of-contents) | :tiger: | \`:tiger:\` | :koala: | \`:koala:\` | -| [top](#table-of-contents) | :bear: | \`:bear:\` | :pig: | \`:pig:\` | -| [top](#table-of-contents) | :pig_nose: | \`:pig_nose:\` | :cow: | \`:cow:\` | -| [top](#table-of-contents) | :boar: | \`:boar:\` | :monkey_face: | \`:monkey_face:\` | -| [top](#table-of-contents) | :monkey: | \`:monkey:\` | :horse: | \`:horse:\` | -| [top](#table-of-contents) | :racehorse: | \`:racehorse:\` | :camel: | \`:camel:\` | -| [top](#table-of-contents) | :sheep: | \`:sheep:\` | :elephant: | \`:elephant:\` | -| [top](#table-of-contents) | :panda_face: | \`:panda_face:\` | :snake: | \`:snake:\` | -| [top](#table-of-contents) | :bird: | \`:bird:\` | :baby_chick: | \`:baby_chick:\` | -| [top](#table-of-contents) | :hatched_chick: | \`:hatched_chick:\` | :hatching_chick: | \`:hatching_chick:\` | -| [top](#table-of-contents) | :chicken: | \`:chicken:\` | :penguin: | \`:penguin:\` | -| [top](#table-of-contents) | :turtle: | \`:turtle:\` | :bug: | \`:bug:\` | -| [top](#table-of-contents) | :honeybee: | \`:honeybee:\` | :ant: | \`:ant:\` | -| [top](#table-of-contents) | :beetle: | \`:beetle:\` | :snail: | \`:snail:\` | -| [top](#table-of-contents) | :octopus: | \`:octopus:\` | :tropical_fish: | \`:tropical_fish:\` | -| [top](#table-of-contents) | :fish: | \`:fish:\` | :whale: | \`:whale:\` | -| [top](#table-of-contents) | :whale2: | \`:whale2:\` | :dolphin: | \`:dolphin:\` | -| [top](#table-of-contents) | :cow2: | \`:cow2:\` | :ram: | \`:ram:\` | -| [top](#table-of-contents) | :rat: | \`:rat:\` | :water_buffalo: | \`:water_buffalo:\` | -| [top](#table-of-contents) | :tiger2: | \`:tiger2:\` | :rabbit2: | \`:rabbit2:\` | -| [top](#table-of-contents) | :dragon: | \`:dragon:\` | :goat: | \`:goat:\` | -| [top](#table-of-contents) | :rooster: | \`:rooster:\` | :dog2: | \`:dog2:\` | -| [top](#table-of-contents) | :pig2: | \`:pig2:\` | :mouse2: | \`:mouse2:\` | -| [top](#table-of-contents) | :ox: | \`:ox:\` | :dragon_face: | \`:dragon_face:\` | -| [top](#table-of-contents) | :blowfish: | \`:blowfish:\` | :crocodile: | \`:crocodile:\` | -| [top](#table-of-contents) | :dromedary_camel: | \`:dromedary_camel:\` | :leopard: | \`:leopard:\` | -| [top](#table-of-contents) | :cat2: | \`:cat2:\` | :poodle: | \`:poodle:\` | -| [top](#table-of-contents) | :paw_prints: | \`:paw_prints:\` | :bouquet: | \`:bouquet:\` | -| [top](#table-of-contents) | :cherry_blossom: | \`:cherry_blossom:\` | :tulip: | \`:tulip:\` | -| [top](#table-of-contents) | :four_leaf_clover: | \`:four_leaf_clover:\` | :rose: | \`:rose:\` | -| [top](#table-of-contents) | :sunflower: | \`:sunflower:\` | :hibiscus: | \`:hibiscus:\` | -| [top](#table-of-contents) | :maple_leaf: | \`:maple_leaf:\` | :leaves: | \`:leaves:\` | -| [top](#table-of-contents) | :fallen_leaf: | \`:fallen_leaf:\` | :herb: | \`:herb:\` | -| [top](#table-of-contents) | :mushroom: | \`:mushroom:\` | :cactus: | \`:cactus:\` | -| [top](#table-of-contents) | :palm_tree: | \`:palm_tree:\` | :evergreen_tree: | \`:evergreen_tree:\` | -| [top](#table-of-contents) | :deciduous_tree: | \`:deciduous_tree:\` | :chestnut: | \`:chestnut:\` | -| [top](#table-of-contents) | :seedling: | \`:seedling:\` | :blossom: | \`:blossom:\` | -| [top](#table-of-contents) | :ear_of_rice: | \`:ear_of_rice:\` | :shell: | \`:shell:\` | -| [top](#table-of-contents) | :globe_with_meridians: | \`:globe_with_meridians:\` | :sun_with_face: | \`:sun_with_face:\` | -| [top](#table-of-contents) | :full_moon_with_face: | \`:full_moon_with_face:\` | :new_moon_with_face: | \`:new_moon_with_face:\` | -| [top](#table-of-contents) | :new_moon: | \`:new_moon:\` | :waxing_crescent_moon: | \`:waxing_crescent_moon:\` | -| [top](#table-of-contents) | :first_quarter_moon: | \`:first_quarter_moon:\` | :waxing_gibbous_moon: | \`:waxing_gibbous_moon:\` | -| [top](#table-of-contents) | :full_moon: | \`:full_moon:\` | :waning_gibbous_moon: | \`:waning_gibbous_moon:\` | -| [top](#table-of-contents) | :last_quarter_moon: | \`:last_quarter_moon:\` | :waning_crescent_moon: | \`:waning_crescent_moon:\` | -| [top](#table-of-contents) | :last_quarter_moon_with_face: | \`:last_quarter_moon_with_face:\` | :first_quarter_moon_with_face: | \`:first_quarter_moon_with_face:\` | -| [top](#table-of-contents) | :crescent_moon: | \`:crescent_moon:\` | :earth_africa: | \`:earth_africa:\` | -| [top](#table-of-contents) | :earth_americas: | \`:earth_americas:\` | :earth_asia: | \`:earth_asia:\` | -| [top](#table-of-contents) | :volcano: | \`:volcano:\` | :milky_way: | \`:milky_way:\` | -| [top](#table-of-contents) | :partly_sunny: | \`:partly_sunny:\` | :octocat: | \`:octocat:\` | -| [top](#table-of-contents) | :squirrel: | \`:squirrel:\` | | | - -### Objects - -| | ico | emoji | ico | emoji | -| - | --- | ----- | --- | ----- | -| [top](#table-of-contents) | :bamboo: | \`:bamboo:\` | :gift_heart: | \`:gift_heart:\` | -| [top](#table-of-contents) | :dolls: | \`:dolls:\` | :school_satchel: | \`:school_satchel:\` | -| [top](#table-of-contents) | :mortar_board: | \`:mortar_board:\` | :flags: | \`:flags:\` | -| [top](#table-of-contents) | :fireworks: | \`:fireworks:\` | :sparkler: | \`:sparkler:\` | -| [top](#table-of-contents) | :wind_chime: | \`:wind_chime:\` | :rice_scene: | \`:rice_scene:\` | -| [top](#table-of-contents) | :jack_o_lantern: | \`:jack_o_lantern:\` | :ghost: | \`:ghost:\` | -| [top](#table-of-contents) | :santa: | \`:santa:\` | :christmas_tree: | \`:christmas_tree:\` | -| [top](#table-of-contents) | :gift: | \`:gift:\` | :bell: | \`:bell:\` | -| [top](#table-of-contents) | :no_bell: | \`:no_bell:\` | :tanabata_tree: | \`:tanabata_tree:\` | -| [top](#table-of-contents) | :tada: | \`:tada:\` | :confetti_ball: | \`:confetti_ball:\` | -| [top](#table-of-contents) | :balloon: | \`:balloon:\` | :crystal_ball: | \`:crystal_ball:\` | -| [top](#table-of-contents) | :cd: | \`:cd:\` | :dvd: | \`:dvd:\` | -| [top](#table-of-contents) | :floppy_disk: | \`:floppy_disk:\` | :camera: | \`:camera:\` | -| [top](#table-of-contents) | :video_camera: | \`:video_camera:\` | :movie_camera: | \`:movie_camera:\` | -| [top](#table-of-contents) | :computer: | \`:computer:\` | :tv: | \`:tv:\` | -| [top](#table-of-contents) | :iphone: | \`:iphone:\` | :phone: | \`:phone:\` | -| [top](#table-of-contents) | :telephone: | \`:telephone:\` | :telephone_receiver: | \`:telephone_receiver:\` | -| [top](#table-of-contents) | :pager: | \`:pager:\` | :fax: | \`:fax:\` | -| [top](#table-of-contents) | :minidisc: | \`:minidisc:\` | :vhs: | \`:vhs:\` | -| [top](#table-of-contents) | :sound: | \`:sound:\` | :speaker: | \`:speaker:\` | -| [top](#table-of-contents) | :mute: | \`:mute:\` | :loudspeaker: | \`:loudspeaker:\` | -| [top](#table-of-contents) | :mega: | \`:mega:\` | :hourglass: | \`:hourglass:\` | -| [top](#table-of-contents) | :hourglass_flowing_sand: | \`:hourglass_flowing_sand:\` | :alarm_clock: | \`:alarm_clock:\` | -| [top](#table-of-contents) | :watch: | \`:watch:\` | :radio: | \`:radio:\` | -| [top](#table-of-contents) | :satellite: | \`:satellite:\` | :loop: | \`:loop:\` | -| [top](#table-of-contents) | :mag: | \`:mag:\` | :mag_right: | \`:mag_right:\` | -| [top](#table-of-contents) | :unlock: | \`:unlock:\` | :lock: | \`:lock:\` | -| [top](#table-of-contents) | :lock_with_ink_pen: | \`:lock_with_ink_pen:\` | :closed_lock_with_key: | \`:closed_lock_with_key:\` | -| [top](#table-of-contents) | :key: | \`:key:\` | :bulb: | \`:bulb:\` | -| [top](#table-of-contents) | :flashlight: | \`:flashlight:\` | :high_brightness: | \`:high_brightness:\` | -| [top](#table-of-contents) | :low_brightness: | \`:low_brightness:\` | :electric_plug: | \`:electric_plug:\` | -| [top](#table-of-contents) | :battery: | \`:battery:\` | :calling: | \`:calling:\` | -| [top](#table-of-contents) | :email: | \`:email:\` | :mailbox: | \`:mailbox:\` | -| [top](#table-of-contents) | :postbox: | \`:postbox:\` | :bath: | \`:bath:\` | -| [top](#table-of-contents) | :bathtub: | \`:bathtub:\` | :shower: | \`:shower:\` | -| [top](#table-of-contents) | :toilet: | \`:toilet:\` | :wrench: | \`:wrench:\` | -| [top](#table-of-contents) | :nut_and_bolt: | \`:nut_and_bolt:\` | :hammer: | \`:hammer:\` | -| [top](#table-of-contents) | :seat: | \`:seat:\` | :moneybag: | \`:moneybag:\` | -| [top](#table-of-contents) | :yen: | \`:yen:\` | :dollar: | \`:dollar:\` | -| [top](#table-of-contents) | :pound: | \`:pound:\` | :euro: | \`:euro:\` | -| [top](#table-of-contents) | :credit_card: | \`:credit_card:\` | :money_with_wings: | \`:money_with_wings:\` | -| [top](#table-of-contents) | :e-mail: | \`:e-mail:\` | :inbox_tray: | \`:inbox_tray:\` | -| [top](#table-of-contents) | :outbox_tray: | \`:outbox_tray:\` | :envelope: | \`:envelope:\` | -| [top](#table-of-contents) | :incoming_envelope: | \`:incoming_envelope:\` | :postal_horn: | \`:postal_horn:\` | -| [top](#table-of-contents) | :mailbox_closed: | \`:mailbox_closed:\` | :mailbox_with_mail: | \`:mailbox_with_mail:\` | -| [top](#table-of-contents) | :mailbox_with_no_mail: | \`:mailbox_with_no_mail:\` | :package: | \`:package:\` | -| [top](#table-of-contents) | :door: | \`:door:\` | :smoking: | \`:smoking:\` | -| [top](#table-of-contents) | :bomb: | \`:bomb:\` | :gun: | \`:gun:\` | -| [top](#table-of-contents) | :hocho: | \`:hocho:\` | :pill: | \`:pill:\` | -| [top](#table-of-contents) | :syringe: | \`:syringe:\` | :page_facing_up: | \`:page_facing_up:\` | -| [top](#table-of-contents) | :page_with_curl: | \`:page_with_curl:\` | :bookmark_tabs: | \`:bookmark_tabs:\` | -| [top](#table-of-contents) | :bar_chart: | \`:bar_chart:\` | :chart_with_upwards_trend: | \`:chart_with_upwards_trend:\` | -| [top](#table-of-contents) | :chart_with_downwards_trend: | \`:chart_with_downwards_trend:\` | :scroll: | \`:scroll:\` | -| [top](#table-of-contents) | :clipboard: | \`:clipboard:\` | :calendar: | \`:calendar:\` | -| [top](#table-of-contents) | :date: | \`:date:\` | :card_index: | \`:card_index:\` | -| [top](#table-of-contents) | :file_folder: | \`:file_folder:\` | :open_file_folder: | \`:open_file_folder:\` | -| [top](#table-of-contents) | :scissors: | \`:scissors:\` | :pushpin: | \`:pushpin:\` | -| [top](#table-of-contents) | :paperclip: | \`:paperclip:\` | :black_nib: | \`:black_nib:\` | -| [top](#table-of-contents) | :pencil2: | \`:pencil2:\` | :straight_ruler: | \`:straight_ruler:\` | -| [top](#table-of-contents) | :triangular_ruler: | \`:triangular_ruler:\` | :closed_book: | \`:closed_book:\` | -| [top](#table-of-contents) | :green_book: | \`:green_book:\` | :blue_book: | \`:blue_book:\` | -| [top](#table-of-contents) | :orange_book: | \`:orange_book:\` | :notebook: | \`:notebook:\` | -| [top](#table-of-contents) | :notebook_with_decorative_cover: | \`:notebook_with_decorative_cover:\` | :ledger: | \`:ledger:\` | -| [top](#table-of-contents) | :books: | \`:books:\` | :bookmark: | \`:bookmark:\` | -| [top](#table-of-contents) | :name_badge: | \`:name_badge:\` | :microscope: | \`:microscope:\` | -| [top](#table-of-contents) | :telescope: | \`:telescope:\` | :newspaper: | \`:newspaper:\` | -| [top](#table-of-contents) | :football: | \`:football:\` | :basketball: | \`:basketball:\` | -| [top](#table-of-contents) | :soccer: | \`:soccer:\` | :baseball: | \`:baseball:\` | -| [top](#table-of-contents) | :tennis: | \`:tennis:\` | :8ball: | \`:8ball:\` | -| [top](#table-of-contents) | :rugby_football: | \`:rugby_football:\` | :bowling: | \`:bowling:\` | -| [top](#table-of-contents) | :golf: | \`:golf:\` | :mountain_bicyclist: | \`:mountain_bicyclist:\` | -| [top](#table-of-contents) | :bicyclist: | \`:bicyclist:\` | :horse_racing: | \`:horse_racing:\` | -| [top](#table-of-contents) | :snowboarder: | \`:snowboarder:\` | :swimmer: | \`:swimmer:\` | -| [top](#table-of-contents) | :surfer: | \`:surfer:\` | :ski: | \`:ski:\` | -| [top](#table-of-contents) | :spades: | \`:spades:\` | :hearts: | \`:hearts:\` | -| [top](#table-of-contents) | :clubs: | \`:clubs:\` | :diamonds: | \`:diamonds:\` | -| [top](#table-of-contents) | :gem: | \`:gem:\` | :ring: | \`:ring:\` | -| [top](#table-of-contents) | :trophy: | \`:trophy:\` | :musical_score: | \`:musical_score:\` | -| [top](#table-of-contents) | :musical_keyboard: | \`:musical_keyboard:\` | :violin: | \`:violin:\` | -| [top](#table-of-contents) | :space_invader: | \`:space_invader:\` | :video_game: | \`:video_game:\` | -| [top](#table-of-contents) | :black_joker: | \`:black_joker:\` | :flower_playing_cards: | \`:flower_playing_cards:\` | -| [top](#table-of-contents) | :game_die: | \`:game_die:\` | :dart: | \`:dart:\` | -| [top](#table-of-contents) | :mahjong: | \`:mahjong:\` | :clapper: | \`:clapper:\` | -| [top](#table-of-contents) | :memo: | \`:memo:\` | :pencil: | \`:pencil:\` | -| [top](#table-of-contents) | :book: | \`:book:\` | :art: | \`:art:\` | -| [top](#table-of-contents) | :microphone: | \`:microphone:\` | :headphones: | \`:headphones:\` | -| [top](#table-of-contents) | :trumpet: | \`:trumpet:\` | :saxophone: | \`:saxophone:\` | -| [top](#table-of-contents) | :guitar: | \`:guitar:\` | :shoe: | \`:shoe:\` | -| [top](#table-of-contents) | :sandal: | \`:sandal:\` | :high_heel: | \`:high_heel:\` | -| [top](#table-of-contents) | :lipstick: | \`:lipstick:\` | :boot: | \`:boot:\` | -| [top](#table-of-contents) | :shirt: | \`:shirt:\` | :tshirt: | \`:tshirt:\` | -| [top](#table-of-contents) | :necktie: | \`:necktie:\` | :womans_clothes: | \`:womans_clothes:\` | -| [top](#table-of-contents) | :dress: | \`:dress:\` | :running_shirt_with_sash: | \`:running_shirt_with_sash:\` | -| [top](#table-of-contents) | :jeans: | \`:jeans:\` | :kimono: | \`:kimono:\` | -| [top](#table-of-contents) | :bikini: | \`:bikini:\` | :ribbon: | \`:ribbon:\` | -| [top](#table-of-contents) | :tophat: | \`:tophat:\` | :crown: | \`:crown:\` | -| [top](#table-of-contents) | :womans_hat: | \`:womans_hat:\` | :mans_shoe: | \`:mans_shoe:\` | -| [top](#table-of-contents) | :closed_umbrella: | \`:closed_umbrella:\` | :briefcase: | \`:briefcase:\` | -| [top](#table-of-contents) | :handbag: | \`:handbag:\` | :pouch: | \`:pouch:\` | -| [top](#table-of-contents) | :purse: | \`:purse:\` | :eyeglasses: | \`:eyeglasses:\` | -| [top](#table-of-contents) | :fishing_pole_and_fish: | \`:fishing_pole_and_fish:\` | :coffee: | \`:coffee:\` | -| [top](#table-of-contents) | :tea: | \`:tea:\` | :sake: | \`:sake:\` | -| [top](#table-of-contents) | :baby_bottle: | \`:baby_bottle:\` | :beer: | \`:beer:\` | -| [top](#table-of-contents) | :beers: | \`:beers:\` | :cocktail: | \`:cocktail:\` | -| [top](#table-of-contents) | :tropical_drink: | \`:tropical_drink:\` | :wine_glass: | \`:wine_glass:\` | -| [top](#table-of-contents) | :fork_and_knife: | \`:fork_and_knife:\` | :pizza: | \`:pizza:\` | -| [top](#table-of-contents) | :hamburger: | \`:hamburger:\` | :fries: | \`:fries:\` | -| [top](#table-of-contents) | :poultry_leg: | \`:poultry_leg:\` | :meat_on_bone: | \`:meat_on_bone:\` | -| [top](#table-of-contents) | :spaghetti: | \`:spaghetti:\` | :curry: | \`:curry:\` | -| [top](#table-of-contents) | :fried_shrimp: | \`:fried_shrimp:\` | :bento: | \`:bento:\` | -| [top](#table-of-contents) | :sushi: | \`:sushi:\` | :fish_cake: | \`:fish_cake:\` | -| [top](#table-of-contents) | :rice_ball: | \`:rice_ball:\` | :rice_cracker: | \`:rice_cracker:\` | -| [top](#table-of-contents) | :rice: | \`:rice:\` | :ramen: | \`:ramen:\` | -| [top](#table-of-contents) | :stew: | \`:stew:\` | :oden: | \`:oden:\` | -| [top](#table-of-contents) | :dango: | \`:dango:\` | :egg: | \`:egg:\` | -| [top](#table-of-contents) | :bread: | \`:bread:\` | :doughnut: | \`:doughnut:\` | -| [top](#table-of-contents) | :custard: | \`:custard:\` | :icecream: | \`:icecream:\` | -| [top](#table-of-contents) | :ice_cream: | \`:ice_cream:\` | :shaved_ice: | \`:shaved_ice:\` | -| [top](#table-of-contents) | :birthday: | \`:birthday:\` | :cake: | \`:cake:\` | -| [top](#table-of-contents) | :cookie: | \`:cookie:\` | :chocolate_bar: | \`:chocolate_bar:\` | -| [top](#table-of-contents) | :candy: | \`:candy:\` | :lollipop: | \`:lollipop:\` | -| [top](#table-of-contents) | :honey_pot: | \`:honey_pot:\` | :apple: | \`:apple:\` | -| [top](#table-of-contents) | :green_apple: | \`:green_apple:\` | :tangerine: | \`:tangerine:\` | -| [top](#table-of-contents) | :lemon: | \`:lemon:\` | :cherries: | \`:cherries:\` | -| [top](#table-of-contents) | :grapes: | \`:grapes:\` | :watermelon: | \`:watermelon:\` | -| [top](#table-of-contents) | :strawberry: | \`:strawberry:\` | :peach: | \`:peach:\` | -| [top](#table-of-contents) | :melon: | \`:melon:\` | :banana: | \`:banana:\` | -| [top](#table-of-contents) | :pear: | \`:pear:\` | :pineapple: | \`:pineapple:\` | -| [top](#table-of-contents) | :sweet_potato: | \`:sweet_potato:\` | :eggplant: | \`:eggplant:\` | -| [top](#table-of-contents) | :tomato: | \`:tomato:\` | :corn: | \`:corn:\` | - -### Places - -| | ico | emoji | ico | emoji | -| - | --- | ----- | --- | ----- | -| [top](#table-of-contents) | :house: | \`:house:\` | :house_with_garden: | \`:house_with_garden:\` | -| [top](#table-of-contents) | :school: | \`:school:\` | :office: | \`:office:\` | -| [top](#table-of-contents) | :post_office: | \`:post_office:\` | :hospital: | \`:hospital:\` | -| [top](#table-of-contents) | :bank: | \`:bank:\` | :convenience_store: | \`:convenience_store:\` | -| [top](#table-of-contents) | :love_hotel: | \`:love_hotel:\` | :hotel: | \`:hotel:\` | -| [top](#table-of-contents) | :wedding: | \`:wedding:\` | :church: | \`:church:\` | -| [top](#table-of-contents) | :department_store: | \`:department_store:\` | :european_post_office: | \`:european_post_office:\` | -| [top](#table-of-contents) | :city_sunrise: | \`:city_sunrise:\` | :city_sunset: | \`:city_sunset:\` | -| [top](#table-of-contents) | :japanese_castle: | \`:japanese_castle:\` | :european_castle: | \`:european_castle:\` | -| [top](#table-of-contents) | :tent: | \`:tent:\` | :factory: | \`:factory:\` | -| [top](#table-of-contents) | :tokyo_tower: | \`:tokyo_tower:\` | :japan: | \`:japan:\` | -| [top](#table-of-contents) | :mount_fuji: | \`:mount_fuji:\` | :sunrise_over_mountains: | \`:sunrise_over_mountains:\` | -| [top](#table-of-contents) | :sunrise: | \`:sunrise:\` | :stars: | \`:stars:\` | -| [top](#table-of-contents) | :statue_of_liberty: | \`:statue_of_liberty:\` | :bridge_at_night: | \`:bridge_at_night:\` | -| [top](#table-of-contents) | :carousel_horse: | \`:carousel_horse:\` | :rainbow: | \`:rainbow:\` | -| [top](#table-of-contents) | :ferris_wheel: | \`:ferris_wheel:\` | :fountain: | \`:fountain:\` | -| [top](#table-of-contents) | :roller_coaster: | \`:roller_coaster:\` | :ship: | \`:ship:\` | -| [top](#table-of-contents) | :speedboat: | \`:speedboat:\` | :boat: | \`:boat:\` | -| [top](#table-of-contents) | :sailboat: | \`:sailboat:\` | :rowboat: | \`:rowboat:\` | -| [top](#table-of-contents) | :anchor: | \`:anchor:\` | :rocket: | \`:rocket:\` | -| [top](#table-of-contents) | :airplane: | \`:airplane:\` | :helicopter: | \`:helicopter:\` | -| [top](#table-of-contents) | :steam_locomotive: | \`:steam_locomotive:\` | :tram: | \`:tram:\` | -| [top](#table-of-contents) | :mountain_railway: | \`:mountain_railway:\` | :bike: | \`:bike:\` | -| [top](#table-of-contents) | :aerial_tramway: | \`:aerial_tramway:\` | :suspension_railway: | \`:suspension_railway:\` | -| [top](#table-of-contents) | :mountain_cableway: | \`:mountain_cableway:\` | :tractor: | \`:tractor:\` | -| [top](#table-of-contents) | :blue_car: | \`:blue_car:\` | :oncoming_automobile: | \`:oncoming_automobile:\` | -| [top](#table-of-contents) | :car: | \`:car:\` | :red_car: | \`:red_car:\` | -| [top](#table-of-contents) | :taxi: | \`:taxi:\` | :oncoming_taxi: | \`:oncoming_taxi:\` | -| [top](#table-of-contents) | :articulated_lorry: | \`:articulated_lorry:\` | :bus: | \`:bus:\` | -| [top](#table-of-contents) | :oncoming_bus: | \`:oncoming_bus:\` | :rotating_light: | \`:rotating_light:\` | -| [top](#table-of-contents) | :police_car: | \`:police_car:\` | :oncoming_police_car: | \`:oncoming_police_car:\` | -| [top](#table-of-contents) | :fire_engine: | \`:fire_engine:\` | :ambulance: | \`:ambulance:\` | -| [top](#table-of-contents) | :minibus: | \`:minibus:\` | :truck: | \`:truck:\` | -| [top](#table-of-contents) | :train: | \`:train:\` | :station: | \`:station:\` | -| [top](#table-of-contents) | :train2: | \`:train2:\` | :bullettrain_front: | \`:bullettrain_front:\` | -| [top](#table-of-contents) | :bullettrain_side: | \`:bullettrain_side:\` | :light_rail: | \`:light_rail:\` | -| [top](#table-of-contents) | :monorail: | \`:monorail:\` | :railway_car: | \`:railway_car:\` | -| [top](#table-of-contents) | :trolleybus: | \`:trolleybus:\` | :ticket: | \`:ticket:\` | -| [top](#table-of-contents) | :fuelpump: | \`:fuelpump:\` | :vertical_traffic_light: | \`:vertical_traffic_light:\` | -| [top](#table-of-contents) | :traffic_light: | \`:traffic_light:\` | :warning: | \`:warning:\` | -| [top](#table-of-contents) | :construction: | \`:construction:\` | :beginner: | \`:beginner:\` | -| [top](#table-of-contents) | :atm: | \`:atm:\` | :slot_machine: | \`:slot_machine:\` | -| [top](#table-of-contents) | :busstop: | \`:busstop:\` | :barber: | \`:barber:\` | -| [top](#table-of-contents) | :hotsprings: | \`:hotsprings:\` | :checkered_flag: | \`:checkered_flag:\` | -| [top](#table-of-contents) | :crossed_flags: | \`:crossed_flags:\` | :izakaya_lantern: | \`:izakaya_lantern:\` | -| [top](#table-of-contents) | :moyai: | \`:moyai:\` | :circus_tent: | \`:circus_tent:\` | -| [top](#table-of-contents) | :performing_arts: | \`:performing_arts:\` | :round_pushpin: | \`:round_pushpin:\` | -| [top](#table-of-contents) | :triangular_flag_on_post: | \`:triangular_flag_on_post:\` | :jp: | \`:jp:\` | -| [top](#table-of-contents) | :kr: | \`:kr:\` | :cn: | \`:cn:\` | -| [top](#table-of-contents) | :us: | \`:us:\` | :fr: | \`:fr:\` | -| [top](#table-of-contents) | :es: | \`:es:\` | :it: | \`:it:\` | -| [top](#table-of-contents) | :ru: | \`:ru:\` | :gb: | \`:gb:\` | -| [top](#table-of-contents) | :uk: | \`:uk:\` | :de: | \`:de:\` | - -### Symbols - -| | ico | emoji | ico | emoji | -| - | --- | ----- | --- | ----- | -| [top](#table-of-contents) | :one: | \`:one:\` | :two: | \`:two:\` | -| [top](#table-of-contents) | :three: | \`:three:\` | :four: | \`:four:\` | -| [top](#table-of-contents) | :five: | \`:five:\` | :six: | \`:six:\` | -| [top](#table-of-contents) | :seven: | \`:seven:\` | :eight: | \`:eight:\` | -| [top](#table-of-contents) | :nine: | \`:nine:\` | :keycap_ten: | \`:keycap_ten:\` | -| [top](#table-of-contents) | :1234: | \`:1234:\` | :zero: | \`:zero:\` | -| [top](#table-of-contents) | :hash: | \`:hash:\` | :symbols: | \`:symbols:\` | -| [top](#table-of-contents) | :arrow_backward: | \`:arrow_backward:\` | :arrow_down: | \`:arrow_down:\` | -| [top](#table-of-contents) | :arrow_forward: | \`:arrow_forward:\` | :arrow_left: | \`:arrow_left:\` | -| [top](#table-of-contents) | :capital_abcd: | \`:capital_abcd:\` | :abcd: | \`:abcd:\` | -| [top](#table-of-contents) | :abc: | \`:abc:\` | :arrow_lower_left: | \`:arrow_lower_left:\` | -| [top](#table-of-contents) | :arrow_lower_right: | \`:arrow_lower_right:\` | :arrow_right: | \`:arrow_right:\` | -| [top](#table-of-contents) | :arrow_up: | \`:arrow_up:\` | :arrow_upper_left: | \`:arrow_upper_left:\` | -| [top](#table-of-contents) | :arrow_upper_right: | \`:arrow_upper_right:\` | :arrow_double_down: | \`:arrow_double_down:\` | -| [top](#table-of-contents) | :arrow_double_up: | \`:arrow_double_up:\` | :arrow_down_small: | \`:arrow_down_small:\` | -| [top](#table-of-contents) | :arrow_heading_down: | \`:arrow_heading_down:\` | :arrow_heading_up: | \`:arrow_heading_up:\` | -| [top](#table-of-contents) | :leftwards_arrow_with_hook: | \`:leftwards_arrow_with_hook:\` | :arrow_right_hook: | \`:arrow_right_hook:\` | -| [top](#table-of-contents) | :left_right_arrow: | \`:left_right_arrow:\` | :arrow_up_down: | \`:arrow_up_down:\` | -| [top](#table-of-contents) | :arrow_up_small: | \`:arrow_up_small:\` | :arrows_clockwise: | \`:arrows_clockwise:\` | -| [top](#table-of-contents) | :arrows_counterclockwise: | \`:arrows_counterclockwise:\` | :rewind: | \`:rewind:\` | -| [top](#table-of-contents) | :fast_forward: | \`:fast_forward:\` | :information_source: | \`:information_source:\` | -| [top](#table-of-contents) | :ok: | \`:ok:\` | :twisted_rightwards_arrows: | \`:twisted_rightwards_arrows:\` | -| [top](#table-of-contents) | :repeat: | \`:repeat:\` | :repeat_one: | \`:repeat_one:\` | -| [top](#table-of-contents) | :new: | \`:new:\` | :top: | \`:top:\` | -| [top](#table-of-contents) | :up: | \`:up:\` | :cool: | \`:cool:\` | -| [top](#table-of-contents) | :free: | \`:free:\` | :ng: | \`:ng:\` | -| [top](#table-of-contents) | :cinema: | \`:cinema:\` | :koko: | \`:koko:\` | -| [top](#table-of-contents) | :signal_strength: | \`:signal_strength:\` | :u5272: | \`:u5272:\` | -| [top](#table-of-contents) | :u5408: | \`:u5408:\` | :u55b6: | \`:u55b6:\` | -| [top](#table-of-contents) | :u6307: | \`:u6307:\` | :u6708: | \`:u6708:\` | -| [top](#table-of-contents) | :u6709: | \`:u6709:\` | :u6e80: | \`:u6e80:\` | -| [top](#table-of-contents) | :u7121: | \`:u7121:\` | :u7533: | \`:u7533:\` | -| [top](#table-of-contents) | :u7a7a: | \`:u7a7a:\` | :u7981: | \`:u7981:\` | -| [top](#table-of-contents) | :sa: | \`:sa:\` | :restroom: | \`:restroom:\` | -| [top](#table-of-contents) | :mens: | \`:mens:\` | :womens: | \`:womens:\` | -| [top](#table-of-contents) | :baby_symbol: | \`:baby_symbol:\` | :no_smoking: | \`:no_smoking:\` | -| [top](#table-of-contents) | :parking: | \`:parking:\` | :wheelchair: | \`:wheelchair:\` | -| [top](#table-of-contents) | :metro: | \`:metro:\` | :baggage_claim: | \`:baggage_claim:\` | -| [top](#table-of-contents) | :accept: | \`:accept:\` | :wc: | \`:wc:\` | -| [top](#table-of-contents) | :potable_water: | \`:potable_water:\` | :put_litter_in_its_place: | \`:put_litter_in_its_place:\` | -| [top](#table-of-contents) | :secret: | \`:secret:\` | :congratulations: | \`:congratulations:\` | -| [top](#table-of-contents) | :m: | \`:m:\` | :passport_control: | \`:passport_control:\` | -| [top](#table-of-contents) | :left_luggage: | \`:left_luggage:\` | :customs: | \`:customs:\` | -| [top](#table-of-contents) | :ideograph_advantage: | \`:ideograph_advantage:\` | :cl: | \`:cl:\` | -| [top](#table-of-contents) | :sos: | \`:sos:\` | :id: | \`:id:\` | -| [top](#table-of-contents) | :no_entry_sign: | \`:no_entry_sign:\` | :underage: | \`:underage:\` | -| [top](#table-of-contents) | :no_mobile_phones: | \`:no_mobile_phones:\` | :do_not_litter: | \`:do_not_litter:\` | -| [top](#table-of-contents) | :non-potable_water: | \`:non-potable_water:\` | :no_bicycles: | \`:no_bicycles:\` | -| [top](#table-of-contents) | :no_pedestrians: | \`:no_pedestrians:\` | :children_crossing: | \`:children_crossing:\` | -| [top](#table-of-contents) | :no_entry: | \`:no_entry:\` | :eight_spoked_asterisk: | \`:eight_spoked_asterisk:\` | -| [top](#table-of-contents) | :sparkle: | \`:sparkle:\` | :eight_pointed_black_star: | \`:eight_pointed_black_star:\` | -| [top](#table-of-contents) | :heart_decoration: | \`:heart_decoration:\` | :vs: | \`:vs:\` | -| [top](#table-of-contents) | :vibration_mode: | \`:vibration_mode:\` | :mobile_phone_off: | \`:mobile_phone_off:\` | -| [top](#table-of-contents) | :chart: | \`:chart:\` | :currency_exchange: | \`:currency_exchange:\` | -| [top](#table-of-contents) | :aries: | \`:aries:\` | :taurus: | \`:taurus:\` | -| [top](#table-of-contents) | :gemini: | \`:gemini:\` | :cancer: | \`:cancer:\` | -| [top](#table-of-contents) | :leo: | \`:leo:\` | :virgo: | \`:virgo:\` | -| [top](#table-of-contents) | :libra: | \`:libra:\` | :scorpius: | \`:scorpius:\` | -| [top](#table-of-contents) | :sagittarius: | \`:sagittarius:\` | :capricorn: | \`:capricorn:\` | -| [top](#table-of-contents) | :aquarius: | \`:aquarius:\` | :pisces: | \`:pisces:\` | -| [top](#table-of-contents) | :ophiuchus: | \`:ophiuchus:\` | :six_pointed_star: | \`:six_pointed_star:\` | -| [top](#table-of-contents) | :negative_squared_cross_mark: | \`:negative_squared_cross_mark:\` | :a: | \`:a:\` | -| [top](#table-of-contents) | :b: | \`:b:\` | :ab: | \`:ab:\` | -| [top](#table-of-contents) | :o2: | \`:o2:\` | :diamond_shape_with_a_dot_inside: | \`:diamond_shape_with_a_dot_inside:\` | -| [top](#table-of-contents) | :recycle: | \`:recycle:\` | :end: | \`:end:\` | -| [top](#table-of-contents) | :back: | \`:back:\` | :on: | \`:on:\` | -| [top](#table-of-contents) | :soon: | \`:soon:\` | :clock1: | \`:clock1:\` | -| [top](#table-of-contents) | :clock130: | \`:clock130:\` | :clock10: | \`:clock10:\` | -| [top](#table-of-contents) | :clock1030: | \`:clock1030:\` | :clock11: | \`:clock11:\` | -| [top](#table-of-contents) | :clock1130: | \`:clock1130:\` | :clock12: | \`:clock12:\` | -| [top](#table-of-contents) | :clock1230: | \`:clock1230:\` | :clock2: | \`:clock2:\` | -| [top](#table-of-contents) | :clock230: | \`:clock230:\` | :clock3: | \`:clock3:\` | -| [top](#table-of-contents) | :clock330: | \`:clock330:\` | :clock4: | \`:clock4:\` | -| [top](#table-of-contents) | :clock430: | \`:clock430:\` | :clock5: | \`:clock5:\` | -| [top](#table-of-contents) | :clock530: | \`:clock530:\` | :clock6: | \`:clock6:\` | -| [top](#table-of-contents) | :clock630: | \`:clock630:\` | :clock7: | \`:clock7:\` | -| [top](#table-of-contents) | :clock730: | \`:clock730:\` | :clock8: | \`:clock8:\` | -| [top](#table-of-contents) | :clock830: | \`:clock830:\` | :clock9: | \`:clock9:\` | -| [top](#table-of-contents) | :clock930: | \`:clock930:\` | :heavy_dollar_sign: | \`:heavy_dollar_sign:\` | -| [top](#table-of-contents) | :copyright: | \`:copyright:\` | :registered: | \`:registered:\` | -| [top](#table-of-contents) | :tm: | \`:tm:\` | :x: | \`:x:\` | -| [top](#table-of-contents) | :heavy_exclamation_mark: | \`:heavy_exclamation_mark:\` | :bangbang: | \`:bangbang:\` | -| [top](#table-of-contents) | :interrobang: | \`:interrobang:\` | :o: | \`:o:\` | -| [top](#table-of-contents) | :heavy_multiplication_x: | \`:heavy_multiplication_x:\` | :heavy_plus_sign: | \`:heavy_plus_sign:\` | -| [top](#table-of-contents) | :heavy_minus_sign: | \`:heavy_minus_sign:\` | :heavy_division_sign: | \`:heavy_division_sign:\` | -| [top](#table-of-contents) | :white_flower: | \`:white_flower:\` | :100: | \`:100:\` | -| [top](#table-of-contents) | :heavy_check_mark: | \`:heavy_check_mark:\` | :ballot_box_with_check: | \`:ballot_box_with_check:\` | -| [top](#table-of-contents) | :radio_button: | \`:radio_button:\` | :link: | \`:link:\` | -| [top](#table-of-contents) | :curly_loop: | \`:curly_loop:\` | :wavy_dash: | \`:wavy_dash:\` | -| [top](#table-of-contents) | :part_alternation_mark: | \`:part_alternation_mark:\` | :trident: | \`:trident:\` | -| [top](#table-of-contents) | :black_small_square: | \`:black_small_square:\` | :white_small_square: | \`:white_small_square:\` | -| [top](#table-of-contents) | :black_medium_small_square: | \`:black_medium_small_square:\` | :white_medium_small_square: | \`:white_medium_small_square:\` | -| [top](#table-of-contents) | :black_medium_square: | \`:black_medium_square:\` | :white_medium_square: | \`:white_medium_square:\` | -| [top](#table-of-contents) | :black_large_square: | \`:black_large_square:\` | :white_large_square: | \`:white_large_square:\` | -| [top](#table-of-contents) | :white_check_mark: | \`:white_check_mark:\` | :black_square_button: | \`:black_square_button:\` | -| [top](#table-of-contents) | :white_square_button: | \`:white_square_button:\` | :black_circle: | \`:black_circle:\` | -| [top](#table-of-contents) | :white_circle: | \`:white_circle:\` | :red_circle: | \`:red_circle:\` | -| [top](#table-of-contents) | :large_blue_circle: | \`:large_blue_circle:\` | :large_blue_diamond: | \`:large_blue_diamond:\` | -| [top](#table-of-contents) | :large_orange_diamond: | \`:large_orange_diamond:\` | :small_blue_diamond: | \`:small_blue_diamond:\` | -| [top](#table-of-contents) | :small_orange_diamond: | \`:small_orange_diamond:\` | :small_red_triangle: | \`:small_red_triangle:\` | -| [top](#table-of-contents) | :small_red_triangle_down: | \`:small_red_triangle_down:\` | :shipit: | \`:shipit:\` | - -### Uncategorized - -| | ico | emoji | ico | emoji | -| - | --- | ----- | --- | ----- | -| [top](#table-of-contents) | :1st_place_medal: | \`:1st_place_medal:\` | :2nd_place_medal: | \`:2nd_place_medal:\` | -| [top](#table-of-contents) | :3rd_place_medal: | \`:3rd_place_medal:\` | :afghanistan: | \`:afghanistan:\` | -| [top](#table-of-contents) | :aland_islands: | \`:aland_islands:\` | :albania: | \`:albania:\` | -| [top](#table-of-contents) | :alembic: | \`:alembic:\` | :algeria: | \`:algeria:\` | -| [top](#table-of-contents) | :american_samoa: | \`:american_samoa:\` | :amphora: | \`:amphora:\` | -| [top](#table-of-contents) | :andorra: | \`:andorra:\` | :angola: | \`:angola:\` | -| [top](#table-of-contents) | :anguilla: | \`:anguilla:\` | :antarctica: | \`:antarctica:\` | -| [top](#table-of-contents) | :antigua_barbuda: | \`:antigua_barbuda:\` | :argentina: | \`:argentina:\` | -| [top](#table-of-contents) | :armenia: | \`:armenia:\` | :artificial_satellite: | \`:artificial_satellite:\` | -| [top](#table-of-contents) | :aruba: | \`:aruba:\` | :asterisk: | \`:asterisk:\` | -| [top](#table-of-contents) | :athletic_shoe: | \`:athletic_shoe:\` | :atom: | \`:atom:\` | -| [top](#table-of-contents) | :atom_symbol: | \`:atom_symbol:\` | :australia: | \`:australia:\` | -| [top](#table-of-contents) | :austria: | \`:austria:\` | :avocado: | \`:avocado:\` | -| [top](#table-of-contents) | :azerbaijan: | \`:azerbaijan:\` | :bacon: | \`:bacon:\` | -| [top](#table-of-contents) | :badminton: | \`:badminton:\` | :baguette_bread: | \`:baguette_bread:\` | -| [top](#table-of-contents) | :bahamas: | \`:bahamas:\` | :bahrain: | \`:bahrain:\` | -| [top](#table-of-contents) | :balance_scale: | \`:balance_scale:\` | :ballot_box: | \`:ballot_box:\` | -| [top](#table-of-contents) | :bangladesh: | \`:bangladesh:\` | :barbados: | \`:barbados:\` | -| [top](#table-of-contents) | :basecamp: | \`:basecamp:\` | :basecampy: | \`:basecampy:\` | -| [top](#table-of-contents) | :basketball_man: | \`:basketball_man:\` | :basketball_woman: | \`:basketball_woman:\` | -| [top](#table-of-contents) | :bat: | \`:bat:\` | :beach_umbrella: | \`:beach_umbrella:\` | -| [top](#table-of-contents) | :bed: | \`:bed:\` | :bee: | \`:bee:\` | -| [top](#table-of-contents) | :belarus: | \`:belarus:\` | :belgium: | \`:belgium:\` | -| [top](#table-of-contents) | :belize: | \`:belize:\` | :bellhop_bell: | \`:bellhop_bell:\` | -| [top](#table-of-contents) | :benin: | \`:benin:\` | :bermuda: | \`:bermuda:\` | -| [top](#table-of-contents) | :bhutan: | \`:bhutan:\` | :biking_man: | \`:biking_man:\` | -| [top](#table-of-contents) | :biking_woman: | \`:biking_woman:\` | :biohazard: | \`:biohazard:\` | -| [top](#table-of-contents) | :black_flag: | \`:black_flag:\` | :black_heart: | \`:black_heart:\` | -| [top](#table-of-contents) | :blonde_man: | \`:blonde_man:\` | :blonde_woman: | \`:blonde_woman:\` | -| [top](#table-of-contents) | :bolivia: | \`:bolivia:\` | :bosnia_herzegovina: | \`:bosnia_herzegovina:\` | -| [top](#table-of-contents) | :botswana: | \`:botswana:\` | :bow_and_arrow: | \`:bow_and_arrow:\` | -| [top](#table-of-contents) | :bowing_man: | \`:bowing_man:\` | :bowing_woman: | \`:bowing_woman:\` | -| [top](#table-of-contents) | :boxing_glove: | \`:boxing_glove:\` | :brazil: | \`:brazil:\` | -| [top](#table-of-contents) | :british_indian_ocean_territory: | \`:british_indian_ocean_territory:\` | :british_virgin_islands: | \`:british_virgin_islands:\` | -| [top](#table-of-contents) | :brunei: | \`:brunei:\` | :building_construction: | \`:building_construction:\` | -| [top](#table-of-contents) | :bulgaria: | \`:bulgaria:\` | :burkina_faso: | \`:burkina_faso:\` | -| [top](#table-of-contents) | :burrito: | \`:burrito:\` | :burundi: | \`:burundi:\` | -| [top](#table-of-contents) | :business_suit_levitating: | \`:business_suit_levitating:\` | :butterfly: | \`:butterfly:\` | -| [top](#table-of-contents) | :call_me_hand: | \`:call_me_hand:\` | :cambodia: | \`:cambodia:\` | -| [top](#table-of-contents) | :camera_flash: | \`:camera_flash:\` | :cameroon: | \`:cameroon:\` | -| [top](#table-of-contents) | :camping: | \`:camping:\` | :canada: | \`:canada:\` | -| [top](#table-of-contents) | :canary_islands: | \`:canary_islands:\` | :candle: | \`:candle:\` | -| [top](#table-of-contents) | :canoe: | \`:canoe:\` | :cape_verde: | \`:cape_verde:\` | -| [top](#table-of-contents) | :card_file_box: | \`:card_file_box:\` | :card_index_dividers: | \`:card_index_dividers:\` | -| [top](#table-of-contents) | :caribbean_netherlands: | \`:caribbean_netherlands:\` | :carrot: | \`:carrot:\` | -| [top](#table-of-contents) | :cayman_islands: | \`:cayman_islands:\` | :central_african_republic: | \`:central_african_republic:\` | -| [top](#table-of-contents) | :chad: | \`:chad:\` | :chains: | \`:chains:\` | -| [top](#table-of-contents) | :champagne: | \`:champagne:\` | :cheese: | \`:cheese:\` | -| [top](#table-of-contents) | :chile: | \`:chile:\` | :chipmunk: | \`:chipmunk:\` | -| [top](#table-of-contents) | :christmas_island: | \`:christmas_island:\` | :cityscape: | \`:cityscape:\` | -| [top](#table-of-contents) | :clamp: | \`:clamp:\` | :classical_building: | \`:classical_building:\` | -| [top](#table-of-contents) | :clinking_glasses: | \`:clinking_glasses:\` | :cloud_with_lightning: | \`:cloud_with_lightning:\` | -| [top](#table-of-contents) | :cloud_with_lightning_and_rain: | \`:cloud_with_lightning_and_rain:\` | :cloud_with_rain: | \`:cloud_with_rain:\` | -| [top](#table-of-contents) | :cloud_with_snow: | \`:cloud_with_snow:\` | :clown_face: | \`:clown_face:\` | -| [top](#table-of-contents) | :cocos_islands: | \`:cocos_islands:\` | :coffin: | \`:coffin:\` | -| [top](#table-of-contents) | :colombia: | \`:colombia:\` | :comet: | \`:comet:\` | -| [top](#table-of-contents) | :comoros: | \`:comoros:\` | :computer_mouse: | \`:computer_mouse:\` | -| [top](#table-of-contents) | :congo_brazzaville: | \`:congo_brazzaville:\` | :congo_kinshasa: | \`:congo_kinshasa:\` | -| [top](#table-of-contents) | :construction_worker_man: | \`:construction_worker_man:\` | :construction_worker_woman: | \`:construction_worker_woman:\` | -| [top](#table-of-contents) | :control_knobs: | \`:control_knobs:\` | :cook_islands: | \`:cook_islands:\` | -| [top](#table-of-contents) | :costa_rica: | \`:costa_rica:\` | :cote_divoire: | \`:cote_divoire:\` | -| [top](#table-of-contents) | :couch_and_lamp: | \`:couch_and_lamp:\` | :couple_with_heart_man_man: | \`:couple_with_heart_man_man:\` | -| [top](#table-of-contents) | :couple_with_heart_woman_man: | \`:couple_with_heart_woman_man:\` | :couple_with_heart_woman_woman: | \`:couple_with_heart_woman_woman:\` | -| [top](#table-of-contents) | :couplekiss_man_man: | \`:couplekiss_man_man:\` | :couplekiss_man_woman: | \`:couplekiss_man_woman:\` | -| [top](#table-of-contents) | :couplekiss_woman_woman: | \`:couplekiss_woman_woman:\` | :cowboy_hat_face: | \`:cowboy_hat_face:\` | -| [top](#table-of-contents) | :crab: | \`:crab:\` | :crayon: | \`:crayon:\` | -| [top](#table-of-contents) | :cricket: | \`:cricket:\` | :croatia: | \`:croatia:\` | -| [top](#table-of-contents) | :croissant: | \`:croissant:\` | :crossed_fingers: | \`:crossed_fingers:\` | -| [top](#table-of-contents) | :crossed_swords: | \`:crossed_swords:\` | :cuba: | \`:cuba:\` | -| [top](#table-of-contents) | :cucumber: | \`:cucumber:\` | :curacao: | \`:curacao:\` | -| [top](#table-of-contents) | :cyprus: | \`:cyprus:\` | :czech_republic: | \`:czech_republic:\` | -| [top](#table-of-contents) | :dagger: | \`:dagger:\` | :dancing_men: | \`:dancing_men:\` | -| [top](#table-of-contents) | :dancing_women: | \`:dancing_women:\` | :dark_sunglasses: | \`:dark_sunglasses:\` | -| [top](#table-of-contents) | :deer: | \`:deer:\` | :denmark: | \`:denmark:\` | -| [top](#table-of-contents) | :derelict_house: | \`:derelict_house:\` | :desert: | \`:desert:\` | -| [top](#table-of-contents) | :desert_island: | \`:desert_island:\` | :desktop_computer: | \`:desktop_computer:\` | -| [top](#table-of-contents) | :detective: | \`:detective:\` | :djibouti: | \`:djibouti:\` | -| [top](#table-of-contents) | :dominica: | \`:dominica:\` | :dominican_republic: | \`:dominican_republic:\` | -| [top](#table-of-contents) | :dove: | \`:dove:\` | :drooling_face: | \`:drooling_face:\` | -| [top](#table-of-contents) | :drum: | \`:drum:\` | :duck: | \`:duck:\` | -| [top](#table-of-contents) | :eagle: | \`:eagle:\` | :ecuador: | \`:ecuador:\` | -| [top](#table-of-contents) | :egypt: | \`:egypt:\` | :el_salvador: | \`:el_salvador:\` | -| [top](#table-of-contents) | :electron: | \`:electron:\` | :envelope_with_arrow: | \`:envelope_with_arrow:\` | -| [top](#table-of-contents) | :equatorial_guinea: | \`:equatorial_guinea:\` | :eritrea: | \`:eritrea:\` | -| [top](#table-of-contents) | :estonia: | \`:estonia:\` | :ethiopia: | \`:ethiopia:\` | -| [top](#table-of-contents) | :eu: | \`:eu:\` | :european_union: | \`:european_union:\` | -| [top](#table-of-contents) | :eye: | \`:eye:\` | :eye_speech_bubble: | \`:eye_speech_bubble:\` | -| [top](#table-of-contents) | :face_with_head_bandage: | \`:face_with_head_bandage:\` | :face_with_thermometer: | \`:face_with_thermometer:\` | -| [top](#table-of-contents) | :falkland_islands: | \`:falkland_islands:\` | :family_man_boy: | \`:family_man_boy:\` | -| [top](#table-of-contents) | :family_man_boy_boy: | \`:family_man_boy_boy:\` | :family_man_girl: | \`:family_man_girl:\` | -| [top](#table-of-contents) | :family_man_girl_boy: | \`:family_man_girl_boy:\` | :family_man_girl_girl: | \`:family_man_girl_girl:\` | -| [top](#table-of-contents) | :family_man_man_boy: | \`:family_man_man_boy:\` | :family_man_man_boy_boy: | \`:family_man_man_boy_boy:\` | -| [top](#table-of-contents) | :family_man_man_girl: | \`:family_man_man_girl:\` | :family_man_man_girl_boy: | \`:family_man_man_girl_boy:\` | -| [top](#table-of-contents) | :family_man_man_girl_girl: | \`:family_man_man_girl_girl:\` | :family_man_woman_boy: | \`:family_man_woman_boy:\` | -| [top](#table-of-contents) | :family_man_woman_boy_boy: | \`:family_man_woman_boy_boy:\` | :family_man_woman_girl: | \`:family_man_woman_girl:\` | -| [top](#table-of-contents) | :family_man_woman_girl_boy: | \`:family_man_woman_girl_boy:\` | :family_man_woman_girl_girl: | \`:family_man_woman_girl_girl:\` | -| [top](#table-of-contents) | :family_woman_boy: | \`:family_woman_boy:\` | :family_woman_boy_boy: | \`:family_woman_boy_boy:\` | -| [top](#table-of-contents) | :family_woman_girl: | \`:family_woman_girl:\` | :family_woman_girl_boy: | \`:family_woman_girl_boy:\` | -| [top](#table-of-contents) | :family_woman_girl_girl: | \`:family_woman_girl_girl:\` | :family_woman_woman_boy: | \`:family_woman_woman_boy:\` | -| [top](#table-of-contents) | :family_woman_woman_boy_boy: | \`:family_woman_woman_boy_boy:\` | :family_woman_woman_girl: | \`:family_woman_woman_girl:\` | -| [top](#table-of-contents) | :family_woman_woman_girl_boy: | \`:family_woman_woman_girl_boy:\` | :family_woman_woman_girl_girl: | \`:family_woman_woman_girl_girl:\` | -| [top](#table-of-contents) | :faroe_islands: | \`:faroe_islands:\` | :female_detective: | \`:female_detective:\` | -| [top](#table-of-contents) | :ferry: | \`:ferry:\` | :field_hockey: | \`:field_hockey:\` | -| [top](#table-of-contents) | :fiji: | \`:fiji:\` | :file_cabinet: | \`:file_cabinet:\` | -| [top](#table-of-contents) | :film_projector: | \`:film_projector:\` | :film_strip: | \`:film_strip:\` | -| [top](#table-of-contents) | :finland: | \`:finland:\` | :fist_left: | \`:fist_left:\` | -| [top](#table-of-contents) | :fist_oncoming: | \`:fist_oncoming:\` | :fist_raised: | \`:fist_raised:\` | -| [top](#table-of-contents) | :fist_right: | \`:fist_right:\` | :fleur_de_lis: | \`:fleur_de_lis:\` | -| [top](#table-of-contents) | :flight_arrival: | \`:flight_arrival:\` | :flight_departure: | \`:flight_departure:\` | -| [top](#table-of-contents) | :flipper: | \`:flipper:\` | :fog: | \`:fog:\` | -| [top](#table-of-contents) | :footprints: | \`:footprints:\` | :fountain_pen: | \`:fountain_pen:\` | -| [top](#table-of-contents) | :fox_face: | \`:fox_face:\` | :framed_picture: | \`:framed_picture:\` | -| [top](#table-of-contents) | :french_guiana: | \`:french_guiana:\` | :french_polynesia: | \`:french_polynesia:\` | -| [top](#table-of-contents) | :french_southern_territories: | \`:french_southern_territories:\` | :fried_egg: | \`:fried_egg:\` | -| [top](#table-of-contents) | :frowning_face: | \`:frowning_face:\` | :frowning_man: | \`:frowning_man:\` | -| [top](#table-of-contents) | :frowning_woman: | \`:frowning_woman:\` | :funeral_urn: | \`:funeral_urn:\` | -| [top](#table-of-contents) | :gabon: | \`:gabon:\` | :gambia: | \`:gambia:\` | -| [top](#table-of-contents) | :gear: | \`:gear:\` | :georgia: | \`:georgia:\` | -| [top](#table-of-contents) | :ghana: | \`:ghana:\` | :gibraltar: | \`:gibraltar:\` | -| [top](#table-of-contents) | :goal_net: | \`:goal_net:\` | :golfing_man: | \`:golfing_man:\` | -| [top](#table-of-contents) | :golfing_woman: | \`:golfing_woman:\` | :gorilla: | \`:gorilla:\` | -| [top](#table-of-contents) | :greece: | \`:greece:\` | :green_salad: | \`:green_salad:\` | -| [top](#table-of-contents) | :greenland: | \`:greenland:\` | :grenada: | \`:grenada:\` | -| [top](#table-of-contents) | :guadeloupe: | \`:guadeloupe:\` | :guam: | \`:guam:\` | -| [top](#table-of-contents) | :guardswoman: | \`:guardswoman:\` | :guatemala: | \`:guatemala:\` | -| [top](#table-of-contents) | :guernsey: | \`:guernsey:\` | :guinea: | \`:guinea:\` | -| [top](#table-of-contents) | :guinea_bissau: | \`:guinea_bissau:\` | :guyana: | \`:guyana:\` | -| [top](#table-of-contents) | :haircut_man: | \`:haircut_man:\` | :haircut_woman: | \`:haircut_woman:\` | -| [top](#table-of-contents) | :haiti: | \`:haiti:\` | :hammer_and_pick: | \`:hammer_and_pick:\` | -| [top](#table-of-contents) | :hammer_and_wrench: | \`:hammer_and_wrench:\` | :handshake: | \`:handshake:\` | -| [top](#table-of-contents) | :heavy_heart_exclamation: | \`:heavy_heart_exclamation:\` | :hole: | \`:hole:\` | -| [top](#table-of-contents) | :honduras: | \`:honduras:\` | :hong_kong: | \`:hong_kong:\` | -| [top](#table-of-contents) | :hot_pepper: | \`:hot_pepper:\` | :hotdog: | \`:hotdog:\` | -| [top](#table-of-contents) | :houses: | \`:houses:\` | :hugs: | \`:hugs:\` | -| [top](#table-of-contents) | :hungary: | \`:hungary:\` | :ice_hockey: | \`:ice_hockey:\` | -| [top](#table-of-contents) | :ice_skate: | \`:ice_skate:\` | :iceland: | \`:iceland:\` | -| [top](#table-of-contents) | :india: | \`:india:\` | :indonesia: | \`:indonesia:\` | -| [top](#table-of-contents) | :iran: | \`:iran:\` | :iraq: | \`:iraq:\` | -| [top](#table-of-contents) | :ireland: | \`:ireland:\` | :isle_of_man: | \`:isle_of_man:\` | -| [top](#table-of-contents) | :israel: | \`:israel:\` | :jamaica: | \`:jamaica:\` | -| [top](#table-of-contents) | :jersey: | \`:jersey:\` | :jordan: | \`:jordan:\` | -| [top](#table-of-contents) | :joystick: | \`:joystick:\` | :kaaba: | \`:kaaba:\` | -| [top](#table-of-contents) | :kazakhstan: | \`:kazakhstan:\` | :kenya: | \`:kenya:\` | -| [top](#table-of-contents) | :keyboard: | \`:keyboard:\` | :kick_scooter: | \`:kick_scooter:\` | -| [top](#table-of-contents) | :kiribati: | \`:kiribati:\` | :kiwi_fruit: | \`:kiwi_fruit:\` | -| [top](#table-of-contents) | :knife: | \`:knife:\` | :kosovo: | \`:kosovo:\` | -| [top](#table-of-contents) | :kuwait: | \`:kuwait:\` | :kyrgyzstan: | \`:kyrgyzstan:\` | -| [top](#table-of-contents) | :label: | \`:label:\` | :lantern: | \`:lantern:\` | -| [top](#table-of-contents) | :laos: | \`:laos:\` | :latin_cross: | \`:latin_cross:\` | -| [top](#table-of-contents) | :latvia: | \`:latvia:\` | :lebanon: | \`:lebanon:\` | -| [top](#table-of-contents) | :lesotho: | \`:lesotho:\` | :level_slider: | \`:level_slider:\` | -| [top](#table-of-contents) | :liberia: | \`:liberia:\` | :libya: | \`:libya:\` | -| [top](#table-of-contents) | :liechtenstein: | \`:liechtenstein:\` | :lion: | \`:lion:\` | -| [top](#table-of-contents) | :lithuania: | \`:lithuania:\` | :lizard: | \`:lizard:\` | -| [top](#table-of-contents) | :loud_sound: | \`:loud_sound:\` | :luxembourg: | \`:luxembourg:\` | -| [top](#table-of-contents) | :lying_face: | \`:lying_face:\` | :macau: | \`:macau:\` | -| [top](#table-of-contents) | :macedonia: | \`:macedonia:\` | :madagascar: | \`:madagascar:\` | -| [top](#table-of-contents) | :malawi: | \`:malawi:\` | :malaysia: | \`:malaysia:\` | -| [top](#table-of-contents) | :maldives: | \`:maldives:\` | :male_detective: | \`:male_detective:\` | -| [top](#table-of-contents) | :mali: | \`:mali:\` | :malta: | \`:malta:\` | -| [top](#table-of-contents) | :man_artist: | \`:man_artist:\` | :man_astronaut: | \`:man_astronaut:\` | -| [top](#table-of-contents) | :man_cartwheeling: | \`:man_cartwheeling:\` | :man_cook: | \`:man_cook:\` | -| [top](#table-of-contents) | :man_dancing: | \`:man_dancing:\` | :man_facepalming: | \`:man_facepalming:\` | -| [top](#table-of-contents) | :man_factory_worker: | \`:man_factory_worker:\` | :man_farmer: | \`:man_farmer:\` | -| [top](#table-of-contents) | :man_firefighter: | \`:man_firefighter:\` | :man_health_worker: | \`:man_health_worker:\` | -| [top](#table-of-contents) | :man_in_tuxedo: | \`:man_in_tuxedo:\` | :man_judge: | \`:man_judge:\` | -| [top](#table-of-contents) | :man_juggling: | \`:man_juggling:\` | :man_mechanic: | \`:man_mechanic:\` | -| [top](#table-of-contents) | :man_office_worker: | \`:man_office_worker:\` | :man_pilot: | \`:man_pilot:\` | -| [top](#table-of-contents) | :man_playing_handball: | \`:man_playing_handball:\` | :man_playing_water_polo: | \`:man_playing_water_polo:\` | -| [top](#table-of-contents) | :man_scientist: | \`:man_scientist:\` | :man_shrugging: | \`:man_shrugging:\` | -| [top](#table-of-contents) | :man_singer: | \`:man_singer:\` | :man_student: | \`:man_student:\` | -| [top](#table-of-contents) | :man_teacher: | \`:man_teacher:\` | :man_technologist: | \`:man_technologist:\` | -| [top](#table-of-contents) | :mandarin: | \`:mandarin:\` | :mantelpiece_clock: | \`:mantelpiece_clock:\` | -| [top](#table-of-contents) | :marshall_islands: | \`:marshall_islands:\` | :martial_arts_uniform: | \`:martial_arts_uniform:\` | -| [top](#table-of-contents) | :martinique: | \`:martinique:\` | :massage_man: | \`:massage_man:\` | -| [top](#table-of-contents) | :massage_woman: | \`:massage_woman:\` | :mauritania: | \`:mauritania:\` | -| [top](#table-of-contents) | :mauritius: | \`:mauritius:\` | :mayotte: | \`:mayotte:\` | -| [top](#table-of-contents) | :medal_military: | \`:medal_military:\` | :medal_sports: | \`:medal_sports:\` | -| [top](#table-of-contents) | :men_wrestling: | \`:men_wrestling:\` | :menorah: | \`:menorah:\` | -| [top](#table-of-contents) | :mexico: | \`:mexico:\` | :micronesia: | \`:micronesia:\` | -| [top](#table-of-contents) | :middle_finger: | \`:middle_finger:\` | :milk_glass: | \`:milk_glass:\` | -| [top](#table-of-contents) | :moldova: | \`:moldova:\` | :monaco: | \`:monaco:\` | -| [top](#table-of-contents) | :money_mouth_face: | \`:money_mouth_face:\` | :mongolia: | \`:mongolia:\` | -| [top](#table-of-contents) | :montenegro: | \`:montenegro:\` | :montserrat: | \`:montserrat:\` | -| [top](#table-of-contents) | :moon: | \`:moon:\` | :morocco: | \`:morocco:\` | -| [top](#table-of-contents) | :mosque: | \`:mosque:\` | :motor_boat: | \`:motor_boat:\` | -| [top](#table-of-contents) | :motor_scooter: | \`:motor_scooter:\` | :motorcycle: | \`:motorcycle:\` | -| [top](#table-of-contents) | :motorway: | \`:motorway:\` | :mountain: | \`:mountain:\` | -| [top](#table-of-contents) | :mountain_biking_man: | \`:mountain_biking_man:\` | :mountain_biking_woman: | \`:mountain_biking_woman:\` | -| [top](#table-of-contents) | :mountain_snow: | \`:mountain_snow:\` | :mozambique: | \`:mozambique:\` | -| [top](#table-of-contents) | :mrs_claus: | \`:mrs_claus:\` | :myanmar: | \`:myanmar:\` | -| [top](#table-of-contents) | :namibia: | \`:namibia:\` | :national_park: | \`:national_park:\` | -| [top](#table-of-contents) | :nauru: | \`:nauru:\` | :nauseated_face: | \`:nauseated_face:\` | -| [top](#table-of-contents) | :nepal: | \`:nepal:\` | :nerd_face: | \`:nerd_face:\` | -| [top](#table-of-contents) | :netherlands: | \`:netherlands:\` | :new_caledonia: | \`:new_caledonia:\` | -| [top](#table-of-contents) | :new_zealand: | \`:new_zealand:\` | :newspaper_roll: | \`:newspaper_roll:\` | -| [top](#table-of-contents) | :next_track_button: | \`:next_track_button:\` | :ng_man: | \`:ng_man:\` | -| [top](#table-of-contents) | :ng_woman: | \`:ng_woman:\` | :nicaragua: | \`:nicaragua:\` | -| [top](#table-of-contents) | :niger: | \`:niger:\` | :nigeria: | \`:nigeria:\` | -| [top](#table-of-contents) | :night_with_stars: | \`:night_with_stars:\` | :niue: | \`:niue:\` | -| [top](#table-of-contents) | :no_good_man: | \`:no_good_man:\` | :no_good_woman: | \`:no_good_woman:\` | -| [top](#table-of-contents) | :norfolk_island: | \`:norfolk_island:\` | :north_korea: | \`:north_korea:\` | -| [top](#table-of-contents) | :northern_mariana_islands: | \`:northern_mariana_islands:\` | :norway: | \`:norway:\` | -| [top](#table-of-contents) | :oil_drum: | \`:oil_drum:\` | :ok_man: | \`:ok_man:\` | -| [top](#table-of-contents) | :old_key: | \`:old_key:\` | :om: | \`:om:\` | -| [top](#table-of-contents) | :oman: | \`:oman:\` | :open_book: | \`:open_book:\` | -| [top](#table-of-contents) | :open_umbrella: | \`:open_umbrella:\` | :orange: | \`:orange:\` | -| [top](#table-of-contents) | :orthodox_cross: | \`:orthodox_cross:\` | :owl: | \`:owl:\` | -| [top](#table-of-contents) | :paintbrush: | \`:paintbrush:\` | :pakistan: | \`:pakistan:\` | -| [top](#table-of-contents) | :palau: | \`:palau:\` | :palestinian_territories: | \`:palestinian_territories:\` | -| [top](#table-of-contents) | :panama: | \`:panama:\` | :pancakes: | \`:pancakes:\` | -| [top](#table-of-contents) | :paperclips: | \`:paperclips:\` | :papua_new_guinea: | \`:papua_new_guinea:\` | -| [top](#table-of-contents) | :paraguay: | \`:paraguay:\` | :parasol_on_ground: | \`:parasol_on_ground:\` | -| [top](#table-of-contents) | :passenger_ship: | \`:passenger_ship:\` | :pause_button: | \`:pause_button:\` | -| [top](#table-of-contents) | :peace_symbol: | \`:peace_symbol:\` | :peanuts: | \`:peanuts:\` | -| [top](#table-of-contents) | :pen: | \`:pen:\` | :person_fencing: | \`:person_fencing:\` | -| [top](#table-of-contents) | :peru: | \`:peru:\` | :philippines: | \`:philippines:\` | -| [top](#table-of-contents) | :pick: | \`:pick:\` | :ping_pong: | \`:ping_pong:\` | -| [top](#table-of-contents) | :pitcairn_islands: | \`:pitcairn_islands:\` | :place_of_worship: | \`:place_of_worship:\` | -| [top](#table-of-contents) | :plate_with_cutlery: | \`:plate_with_cutlery:\` | :play_or_pause_button: | \`:play_or_pause_button:\` | -| [top](#table-of-contents) | :poland: | \`:poland:\` | :policeman: | \`:policeman:\` | -| [top](#table-of-contents) | :policewoman: | \`:policewoman:\` | :popcorn: | \`:popcorn:\` | -| [top](#table-of-contents) | :portugal: | \`:portugal:\` | :potato: | \`:potato:\` | -| [top](#table-of-contents) | :pout: | \`:pout:\` | :pouting_man: | \`:pouting_man:\` | -| [top](#table-of-contents) | :pouting_woman: | \`:pouting_woman:\` | :prayer_beads: | \`:prayer_beads:\` | -| [top](#table-of-contents) | :pregnant_woman: | \`:pregnant_woman:\` | :previous_track_button: | \`:previous_track_button:\` | -| [top](#table-of-contents) | :prince: | \`:prince:\` | :printer: | \`:printer:\` | -| [top](#table-of-contents) | :puerto_rico: | \`:puerto_rico:\` | :qatar: | \`:qatar:\` | -| [top](#table-of-contents) | :racing_car: | \`:racing_car:\` | :radioactive: | \`:radioactive:\` | -| [top](#table-of-contents) | :railway_track: | \`:railway_track:\` | :rainbow_flag: | \`:rainbow_flag:\` | -| [top](#table-of-contents) | :raised_back_of_hand: | \`:raised_back_of_hand:\` | :raised_hand_with_fingers_splayed: | \`:raised_hand_with_fingers_splayed:\` | -| [top](#table-of-contents) | :raising_hand_man: | \`:raising_hand_man:\` | :raising_hand_woman: | \`:raising_hand_woman:\` | -| [top](#table-of-contents) | :record_button: | \`:record_button:\` | :reminder_ribbon: | \`:reminder_ribbon:\` | -| [top](#table-of-contents) | :rescue_worker_helmet: | \`:rescue_worker_helmet:\` | :reunion: | \`:reunion:\` | -| [top](#table-of-contents) | :rhinoceros: | \`:rhinoceros:\` | :right_anger_bubble: | \`:right_anger_bubble:\` | -| [top](#table-of-contents) | :robot: | \`:robot:\` | :rofl: | \`:rofl:\` | -| [top](#table-of-contents) | :roll_eyes: | \`:roll_eyes:\` | :romania: | \`:romania:\` | -| [top](#table-of-contents) | :rosette: | \`:rosette:\` | :rowing_man: | \`:rowing_man:\` | -| [top](#table-of-contents) | :rowing_woman: | \`:rowing_woman:\` | :running_man: | \`:running_man:\` | -| [top](#table-of-contents) | :running_woman: | \`:running_woman:\` | :rwanda: | \`:rwanda:\` | -| [top](#table-of-contents) | :samoa: | \`:samoa:\` | :san_marino: | \`:san_marino:\` | -| [top](#table-of-contents) | :sao_tome_principe: | \`:sao_tome_principe:\` | :saudi_arabia: | \`:saudi_arabia:\` | -| [top](#table-of-contents) | :scorpion: | \`:scorpion:\` | :selfie: | \`:selfie:\` | -| [top](#table-of-contents) | :senegal: | \`:senegal:\` | :serbia: | \`:serbia:\` | -| [top](#table-of-contents) | :seychelles: | \`:seychelles:\` | :shallow_pan_of_food: | \`:shallow_pan_of_food:\` | -| [top](#table-of-contents) | :shamrock: | \`:shamrock:\` | :shark: | \`:shark:\` | -| [top](#table-of-contents) | :shield: | \`:shield:\` | :shinto_shrine: | \`:shinto_shrine:\` | -| [top](#table-of-contents) | :shopping: | \`:shopping:\` | :shopping_cart: | \`:shopping_cart:\` | -| [top](#table-of-contents) | :shrimp: | \`:shrimp:\` | :sierra_leone: | \`:sierra_leone:\` | -| [top](#table-of-contents) | :singapore: | \`:singapore:\` | :sint_maarten: | \`:sint_maarten:\` | -| [top](#table-of-contents) | :skier: | \`:skier:\` | :skull_and_crossbones: | \`:skull_and_crossbones:\` | -| [top](#table-of-contents) | :sleeping_bed: | \`:sleeping_bed:\` | :slightly_frowning_face: | \`:slightly_frowning_face:\` | -| [top](#table-of-contents) | :slightly_smiling_face: | \`:slightly_smiling_face:\` | :slovakia: | \`:slovakia:\` | -| [top](#table-of-contents) | :slovenia: | \`:slovenia:\` | :small_airplane: | \`:small_airplane:\` | -| [top](#table-of-contents) | :sneezing_face: | \`:sneezing_face:\` | :snowman_with_snow: | \`:snowman_with_snow:\` | -| [top](#table-of-contents) | :solomon_islands: | \`:solomon_islands:\` | :somalia: | \`:somalia:\` | -| [top](#table-of-contents) | :south_africa: | \`:south_africa:\` | :south_georgia_south_sandwich_islands: | \`:south_georgia_south_sandwich_islands:\` | -| [top](#table-of-contents) | :south_sudan: | \`:south_sudan:\` | :speaking_head: | \`:speaking_head:\` | -| [top](#table-of-contents) | :spider: | \`:spider:\` | :spider_web: | \`:spider_web:\` | -| [top](#table-of-contents) | :spiral_calendar: | \`:spiral_calendar:\` | :spiral_notepad: | \`:spiral_notepad:\` | -| [top](#table-of-contents) | :spoon: | \`:spoon:\` | :squid: | \`:squid:\` | -| [top](#table-of-contents) | :sri_lanka: | \`:sri_lanka:\` | :st_barthelemy: | \`:st_barthelemy:\` | -| [top](#table-of-contents) | :st_helena: | \`:st_helena:\` | :st_kitts_nevis: | \`:st_kitts_nevis:\` | -| [top](#table-of-contents) | :st_lucia: | \`:st_lucia:\` | :st_pierre_miquelon: | \`:st_pierre_miquelon:\` | -| [top](#table-of-contents) | :st_vincent_grenadines: | \`:st_vincent_grenadines:\` | :stadium: | \`:stadium:\` | -| [top](#table-of-contents) | :star_and_crescent: | \`:star_and_crescent:\` | :star_of_david: | \`:star_of_david:\` | -| [top](#table-of-contents) | :stop_button: | \`:stop_button:\` | :stop_sign: | \`:stop_sign:\` | -| [top](#table-of-contents) | :stopwatch: | \`:stopwatch:\` | :studio_microphone: | \`:studio_microphone:\` | -| [top](#table-of-contents) | :stuffed_flatbread: | \`:stuffed_flatbread:\` | :sudan: | \`:sudan:\` | -| [top](#table-of-contents) | :sun_behind_large_cloud: | \`:sun_behind_large_cloud:\` | :sun_behind_rain_cloud: | \`:sun_behind_rain_cloud:\` | -| [top](#table-of-contents) | :sun_behind_small_cloud: | \`:sun_behind_small_cloud:\` | :surfing_man: | \`:surfing_man:\` | -| [top](#table-of-contents) | :surfing_woman: | \`:surfing_woman:\` | :suriname: | \`:suriname:\` | -| [top](#table-of-contents) | :swaziland: | \`:swaziland:\` | :sweden: | \`:sweden:\` | -| [top](#table-of-contents) | :swimming_man: | \`:swimming_man:\` | :swimming_woman: | \`:swimming_woman:\` | -| [top](#table-of-contents) | :switzerland: | \`:switzerland:\` | :synagogue: | \`:synagogue:\` | -| [top](#table-of-contents) | :syria: | \`:syria:\` | :taco: | \`:taco:\` | -| [top](#table-of-contents) | :taiwan: | \`:taiwan:\` | :tajikistan: | \`:tajikistan:\` | -| [top](#table-of-contents) | :tanzania: | \`:tanzania:\` | :thailand: | \`:thailand:\` | -| [top](#table-of-contents) | :thermometer: | \`:thermometer:\` | :thinking: | \`:thinking:\` | -| [top](#table-of-contents) | :tickets: | \`:tickets:\` | :timer_clock: | \`:timer_clock:\` | -| [top](#table-of-contents) | :timor_leste: | \`:timor_leste:\` | :tipping_hand_man: | \`:tipping_hand_man:\` | -| [top](#table-of-contents) | :tipping_hand_woman: | \`:tipping_hand_woman:\` | :togo: | \`:togo:\` | -| [top](#table-of-contents) | :tokelau: | \`:tokelau:\` | :tonga: | \`:tonga:\` | -| [top](#table-of-contents) | :tornado: | \`:tornado:\` | :tr: | \`:tr:\` | -| [top](#table-of-contents) | :trackball: | \`:trackball:\` | :trinidad_tobago: | \`:trinidad_tobago:\` | -| [top](#table-of-contents) | :tumbler_glass: | \`:tumbler_glass:\` | :tunisia: | \`:tunisia:\` | -| [top](#table-of-contents) | :turkey: | \`:turkey:\` | :turkmenistan: | \`:turkmenistan:\` | -| [top](#table-of-contents) | :turks_caicos_islands: | \`:turks_caicos_islands:\` | :tuvalu: | \`:tuvalu:\` | -| [top](#table-of-contents) | :uganda: | \`:uganda:\` | :ukraine: | \`:ukraine:\` | -| [top](#table-of-contents) | :unicorn: | \`:unicorn:\` | :united_arab_emirates: | \`:united_arab_emirates:\` | -| [top](#table-of-contents) | :upside_down_face: | \`:upside_down_face:\` | :uruguay: | \`:uruguay:\` | -| [top](#table-of-contents) | :us_virgin_islands: | \`:us_virgin_islands:\` | :uzbekistan: | \`:uzbekistan:\` | -| [top](#table-of-contents) | :vanuatu: | \`:vanuatu:\` | :vatican_city: | \`:vatican_city:\` | -| [top](#table-of-contents) | :venezuela: | \`:venezuela:\` | :vietnam: | \`:vietnam:\` | -| [top](#table-of-contents) | :volleyball: | \`:volleyball:\` | :vulcan_salute: | \`:vulcan_salute:\` | -| [top](#table-of-contents) | :walking: | \`:walking:\` | :walking_man: | \`:walking_man:\` | -| [top](#table-of-contents) | :walking_woman: | \`:walking_woman:\` | :wallis_futuna: | \`:wallis_futuna:\` | -| [top](#table-of-contents) | :wastebasket: | \`:wastebasket:\` | :weight_lifting_man: | \`:weight_lifting_man:\` | -| [top](#table-of-contents) | :weight_lifting_woman: | \`:weight_lifting_woman:\` | :western_sahara: | \`:western_sahara:\` | -| [top](#table-of-contents) | :wheel_of_dharma: | \`:wheel_of_dharma:\` | :white_flag: | \`:white_flag:\` | -| [top](#table-of-contents) | :wilted_flower: | \`:wilted_flower:\` | :wind_face: | \`:wind_face:\` | -| [top](#table-of-contents) | :woman_artist: | \`:woman_artist:\` | :woman_astronaut: | \`:woman_astronaut:\` | -| [top](#table-of-contents) | :woman_cartwheeling: | \`:woman_cartwheeling:\` | :woman_cook: | \`:woman_cook:\` | -| [top](#table-of-contents) | :woman_facepalming: | \`:woman_facepalming:\` | :woman_factory_worker: | \`:woman_factory_worker:\` | -| [top](#table-of-contents) | :woman_farmer: | \`:woman_farmer:\` | :woman_firefighter: | \`:woman_firefighter:\` | -| [top](#table-of-contents) | :woman_health_worker: | \`:woman_health_worker:\` | :woman_judge: | \`:woman_judge:\` | -| [top](#table-of-contents) | :woman_juggling: | \`:woman_juggling:\` | :woman_mechanic: | \`:woman_mechanic:\` | -| [top](#table-of-contents) | :woman_office_worker: | \`:woman_office_worker:\` | :woman_pilot: | \`:woman_pilot:\` | -| [top](#table-of-contents) | :woman_playing_handball: | \`:woman_playing_handball:\` | :woman_playing_water_polo: | \`:woman_playing_water_polo:\` | -| [top](#table-of-contents) | :woman_scientist: | \`:woman_scientist:\` | :woman_shrugging: | \`:woman_shrugging:\` | -| [top](#table-of-contents) | :woman_singer: | \`:woman_singer:\` | :woman_student: | \`:woman_student:\` | -| [top](#table-of-contents) | :woman_teacher: | \`:woman_teacher:\` | :woman_technologist: | \`:woman_technologist:\` | -| [top](#table-of-contents) | :woman_with_turban: | \`:woman_with_turban:\` | :women_wrestling: | \`:women_wrestling:\` | -| [top](#table-of-contents) | :world_map: | \`:world_map:\` | :writing_hand: | \`:writing_hand:\` | -| [top](#table-of-contents) | :yemen: | \`:yemen:\` | :yin_yang: | \`:yin_yang:\` | -| [top](#table-of-contents) | :zambia: | \`:zambia:\` | :zimbabwe: | \`:zimbabwe:\` | -| [top](#table-of-contents) | :zipper_mouth_face: | \`:zipper_mouth_face:\` | | |" -`; diff --git a/src/create-cheat-sheet.test.ts b/src/create-cheat-sheet.test.ts deleted file mode 100644 index 2306164..0000000 --- a/src/create-cheat-sheet.test.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { create_cheat_sheet } from './create-cheat-sheet'; - -test('create-cheat-sheet', async () => { - const cheat_sheet = await create_cheat_sheet(); - expect(cheat_sheet).toMatchSnapshot(); -}); diff --git a/src/create-cheat-sheet.ts b/src/create-cheat-sheet.ts deleted file mode 100644 index 4a6e695..0000000 --- a/src/create-cheat-sheet.ts +++ /dev/null @@ -1,166 +0,0 @@ -import $ = require('cheerio'); -import request = require('request'); - -// tslint:disable-next-line:no-var-requires -const package_json = require('../package.json'); - -const repo_name = package_json.name; -const repo_author = package_json.author; - -const uncategorized = 'Uncategorized'; - -const api_url = 'https://api.github.com/emojis'; -const sheet_url = 'http://www.emoji-cheat-sheet.com'; - -const travis_repo_url = `https://travis-ci.org/${repo_author}/${repo_name}`; -const travis_badge_url = `https://travis-ci.org/${repo_author}/${repo_name}.svg?branch=master`; - -const url_descriptions = [ - ['GitHub Emoji API', api_url], - ['Emoji Cheat Sheet', sheet_url], -] - .map(([site_name, site_url]) => `[${site_name}](${site_url})`) - .join(' and '); - -// tslint:disable-next-line:max-line-length -const description = `This cheat sheet is automatically generated from ${url_descriptions}`; - -const toc_name = 'Table of Contents'; - -const top_name = 'top'; -const top_href = '#table-of-contents'; - -const column_divisions = 2; - -type Url = string; - -export interface Urls { - [site_name: string]: Url; -} - -export interface EmojiTable { - [category: string]: string[]; -} - -export async function create_cheat_sheet() { - const api_html = await get_html(api_url); - const sheet_html = await get_html(sheet_url); - - const api_emojis = Object.keys(JSON.parse(api_html)); - const emoji_table: EmojiTable = {}; - - const $html = $.load(sheet_html).root(); - $html.find('h2').each((_outer_index, category_element) => { - const emojis: string[] = []; - const category = $(category_element).text(); - $html - .find(`#emoji-${category.toLowerCase()} li .name`) - .each((_inner_index, emoji_element) => { - const emoji = $(emoji_element).text(); - const index = api_emojis.indexOf(emoji); - if (index !== -1) { - api_emojis.splice(index, 1); - emojis.push(emoji); - } - }); - emoji_table[category] = emojis; - }); - - // istanbul ignore next - if (api_emojis.length > 0) { - emoji_table[uncategorized] = api_emojis; - } - - return create_table(emoji_table); -} - -function create_table(emoji_table: EmojiTable) { - const categories = Object.keys(emoji_table); - return format(` - - # ${repo_name} - - [![build](${travis_badge_url})](${travis_repo_url}) - - ${description} - - ## ${toc_name} - - ${categories - .map(category => `- [${category}](#${category.toLowerCase()})`) - .join('\n')} - - ${categories - .map(category => { - const emojis = emoji_table[category]; - return format(` - - ### ${category} - - ${create_table_head()} - ${create_table_content(emojis)} - - `); - }) - .join('\n'.repeat(2))} - - `); -} - -function create_table_content(emojis: string[]) { - let table_content = ''; - for (let i = 0; i < emojis.length; i += column_divisions) { - const row_emojis = emojis.slice(i, i + column_divisions); - while (row_emojis.length < column_divisions) { - row_emojis.push(''); - } - table_content += `${format(` - - | [${top_name}](${top_href}) |${row_emojis - .map( - emoji => (emoji.length !== 0 ? ` :${emoji}: | \`:${emoji}:\` ` : ' | '), - ) - .join(' | ')}| - - `)}\n`; - } - return table_content; -} - -function create_table_head() { - return format(` - - | |${' ico | emoji |'.repeat(column_divisions)} - | - |${' --- | ----- |'.repeat(column_divisions)} - - `); -} - -function format(str: string) { - return str.trim().replace(/^ +/gm, ''); -} - -async function get_html(url: string) { - return new Promise((resolve, reject) => { - const options = { url }; - if (url === api_url) { - Object.assign(options, { - headers: { - 'User-Agent': 'https://github.com/ikatyang/emoji-cheat-sheet', - }, - }); - } - request.get(options, (error, response, html) => { - // istanbul ignore next - // tslint:disable-next-line:early-exit - if (!error && response.statusCode === 200) { - resolve(html); - } else { - const error_message = Boolean(error) - ? error - : `Unexpected response status code: ${response.statusCode}`; - reject(error_message); - } - }); - }); -} diff --git a/tsconfig.json b/tsconfig.json index 18d46f4..0266686 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,8 +1,12 @@ { "compilerOptions": { + "allowJs": true, + "checkJs": true, + "moduleResolution": "node", + "noEmit": true, + "resolveJsonModule": true, "strict": true, - "lib": ["es6"], - "module": "commonjs" + "target": "es2018" }, - "include": ["src/**/*.ts"] + "include": ["scripts/**/*.js"] } diff --git a/tslint.json b/tslint.json index 2f48699..a05cb23 100644 --- a/tslint.json +++ b/tslint.json @@ -1,8 +1,6 @@ { - "extends": [ - "tslint-config-ikatyang", - "tslint-config-prettier", - "tslint-plugin-prettier", - "prettier-config-ikatyang/tslint" - ] + "extends": ["tslint-plugin-prettier"], + "jsRules": { + "prettier": true + } } diff --git a/yarn.lock b/yarn.lock index 4da03c6..a3fd1ce 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,320 @@ # yarn lockfile v1 +"@babel/code-frame@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" + integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA== + dependencies: + "@babel/highlight" "^7.0.0" + +"@babel/core@^7.1.0": + version "7.4.3" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.4.3.tgz#198d6d3af4567be3989550d97e068de94503074f" + integrity sha512-oDpASqKFlbspQfzAE7yaeTmdljSH2ADIvBlb0RwbStltTuWa0+7CCI1fYVINNv9saHPa1W7oaKeuNuKj+RQCvA== + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/generator" "^7.4.0" + "@babel/helpers" "^7.4.3" + "@babel/parser" "^7.4.3" + "@babel/template" "^7.4.0" + "@babel/traverse" "^7.4.3" + "@babel/types" "^7.4.0" + convert-source-map "^1.1.0" + debug "^4.1.0" + json5 "^2.1.0" + lodash "^4.17.11" + resolve "^1.3.2" + semver "^5.4.1" + source-map "^0.5.0" + +"@babel/generator@^7.0.0", "@babel/generator@^7.4.0": + version "7.4.0" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.4.0.tgz#c230e79589ae7a729fd4631b9ded4dc220418196" + integrity sha512-/v5I+a1jhGSKLgZDcmAUZ4K/VePi43eRkUs3yePW1HB1iANOD5tqJXwGSG4BZhSksP8J9ejSlwGeTiiOFZOrXQ== + dependencies: + "@babel/types" "^7.4.0" + jsesc "^2.5.1" + lodash "^4.17.11" + source-map "^0.5.0" + trim-right "^1.0.1" + +"@babel/helper-function-name@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" + integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw== + dependencies: + "@babel/helper-get-function-arity" "^7.0.0" + "@babel/template" "^7.1.0" + "@babel/types" "^7.0.0" + +"@babel/helper-get-function-arity@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" + integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ== + dependencies: + "@babel/types" "^7.0.0" + +"@babel/helper-plugin-utils@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" + integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== + +"@babel/helper-split-export-declaration@^7.4.0": + version "7.4.0" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.0.tgz#571bfd52701f492920d63b7f735030e9a3e10b55" + integrity sha512-7Cuc6JZiYShaZnybDmfwhY4UYHzI6rlqhWjaIqbsJGsIqPimEYy5uh3akSRLMg65LSdSEnJ8a8/bWQN6u2oMGw== + dependencies: + "@babel/types" "^7.4.0" + +"@babel/helpers@^7.4.3": + version "7.4.3" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.4.3.tgz#7b1d354363494b31cb9a2417ae86af32b7853a3b" + integrity sha512-BMh7X0oZqb36CfyhvtbSmcWc3GXocfxv3yNsAEuM0l+fAqSO22rQrUpijr3oE/10jCTrB6/0b9kzmG4VetCj8Q== + dependencies: + "@babel/template" "^7.4.0" + "@babel/traverse" "^7.4.3" + "@babel/types" "^7.4.0" + +"@babel/highlight@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" + integrity sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw== + dependencies: + chalk "^2.0.0" + esutils "^2.0.2" + js-tokens "^4.0.0" + +"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.4.0", "@babel/parser@^7.4.3": + version "7.4.3" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.4.3.tgz#eb3ac80f64aa101c907d4ce5406360fe75b7895b" + integrity sha512-gxpEUhTS1sGA63EGQGuA+WESPR/6tz6ng7tSHFCmaTJK/cGK8y37cBTspX+U2xCAue2IQVvF6Z0oigmjwD8YGQ== + +"@babel/plugin-syntax-object-rest-spread@^7.0.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" + integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/template@^7.0.0", "@babel/template@^7.1.0", "@babel/template@^7.4.0": + version "7.4.0" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.0.tgz#12474e9c077bae585c5d835a95c0b0b790c25c8b" + integrity sha512-SOWwxxClTTh5NdbbYZ0BmaBVzxzTh2tO/TeLTbF6MO6EzVhHTnff8CdBXx3mEtazFBoysmEM6GU/wF+SuSx4Fw== + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/parser" "^7.4.0" + "@babel/types" "^7.4.0" + +"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3": + version "7.4.3" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.4.3.tgz#1a01f078fc575d589ff30c0f71bf3c3d9ccbad84" + integrity sha512-HmA01qrtaCwwJWpSKpA948cBvU5BrmviAief/b3AVw936DtcdsTexlbyzNuDnthwhOQ37xshn7hvQaEQk7ISYQ== + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/generator" "^7.4.0" + "@babel/helper-function-name" "^7.1.0" + "@babel/helper-split-export-declaration" "^7.4.0" + "@babel/parser" "^7.4.3" + "@babel/types" "^7.4.0" + debug "^4.1.0" + globals "^11.1.0" + lodash "^4.17.11" + +"@babel/types@^7.0.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0": + version "7.4.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.4.0.tgz#670724f77d24cce6cc7d8cf64599d511d164894c" + integrity sha512-aPvkXyU2SPOnztlgo8n9cEiXW755mgyvueUPcpStqdzoSPm0fjO0vQBjLkt3JKJW7ufikfcnMTTPsN1xaTsBPA== + dependencies: + esutils "^2.0.2" + lodash "^4.17.11" + to-fast-properties "^2.0.0" + +"@cnakazawa/watch@^1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef" + integrity sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA== + dependencies: + exec-sh "^0.3.2" + minimist "^1.2.0" + +"@jest/console@^24.7.1": + version "24.7.1" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.7.1.tgz#32a9e42535a97aedfe037e725bd67e954b459545" + integrity sha512-iNhtIy2M8bXlAOULWVTUxmnelTLFneTNEkHCgPmgd+zNwy9zVddJ6oS5rZ9iwoscNdT5mMwUd0C51v/fSlzItg== + dependencies: + "@jest/source-map" "^24.3.0" + chalk "^2.0.1" + slash "^2.0.0" + +"@jest/core@^24.7.1": + version "24.7.1" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-24.7.1.tgz#6707f50db238d0c5988860680e2e414df0032024" + integrity sha512-ivlZ8HX/FOASfHcb5DJpSPFps8ydfUYzLZfgFFqjkLijYysnIEOieg72YRhO4ZUB32xu40hsSMmaw+IGYeKONA== + dependencies: + "@jest/console" "^24.7.1" + "@jest/reporters" "^24.7.1" + "@jest/test-result" "^24.7.1" + "@jest/transform" "^24.7.1" + "@jest/types" "^24.7.0" + ansi-escapes "^3.0.0" + chalk "^2.0.1" + exit "^0.1.2" + graceful-fs "^4.1.15" + jest-changed-files "^24.7.0" + jest-config "^24.7.1" + jest-haste-map "^24.7.1" + jest-message-util "^24.7.1" + jest-regex-util "^24.3.0" + jest-resolve-dependencies "^24.7.1" + jest-runner "^24.7.1" + jest-runtime "^24.7.1" + jest-snapshot "^24.7.1" + jest-util "^24.7.1" + jest-validate "^24.7.0" + jest-watcher "^24.7.1" + micromatch "^3.1.10" + p-each-series "^1.0.0" + pirates "^4.0.1" + realpath-native "^1.1.0" + rimraf "^2.5.4" + strip-ansi "^5.0.0" + +"@jest/environment@^24.7.1": + version "24.7.1" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.7.1.tgz#9b9196bc737561f67ac07817d4c5ece772e33135" + integrity sha512-wmcTTYc4/KqA+U5h1zQd5FXXynfa7VGP2NfF+c6QeGJ7c+2nStgh65RQWNX62SC716dTtqheTRrZl0j+54oGHw== + dependencies: + "@jest/fake-timers" "^24.7.1" + "@jest/transform" "^24.7.1" + "@jest/types" "^24.7.0" + jest-mock "^24.7.0" + +"@jest/fake-timers@^24.7.1": + version "24.7.1" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.7.1.tgz#56e5d09bdec09ee81050eaff2794b26c71d19db2" + integrity sha512-4vSQJDKfR2jScOe12L9282uiwuwQv9Lk7mgrCSZHA9evB9efB/qx8i0KJxsAKtp8fgJYBJdYY7ZU6u3F4/pyjA== + dependencies: + "@jest/types" "^24.7.0" + jest-message-util "^24.7.1" + jest-mock "^24.7.0" + +"@jest/reporters@^24.7.1": + version "24.7.1" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.7.1.tgz#38ac0b096cd691bbbe3051ddc25988d42e37773a" + integrity sha512-bO+WYNwHLNhrjB9EbPL4kX/mCCG4ZhhfWmO3m4FSpbgr7N83MFejayz30kKjgqr7smLyeaRFCBQMbXpUgnhAJw== + dependencies: + "@jest/environment" "^24.7.1" + "@jest/test-result" "^24.7.1" + "@jest/transform" "^24.7.1" + "@jest/types" "^24.7.0" + chalk "^2.0.1" + exit "^0.1.2" + glob "^7.1.2" + istanbul-api "^2.1.1" + istanbul-lib-coverage "^2.0.2" + istanbul-lib-instrument "^3.0.1" + istanbul-lib-source-maps "^3.0.1" + jest-haste-map "^24.7.1" + jest-resolve "^24.7.1" + jest-runtime "^24.7.1" + jest-util "^24.7.1" + jest-worker "^24.6.0" + node-notifier "^5.2.1" + slash "^2.0.0" + source-map "^0.6.0" + string-length "^2.0.0" + +"@jest/source-map@^24.3.0": + version "24.3.0" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.3.0.tgz#563be3aa4d224caf65ff77edc95cd1ca4da67f28" + integrity sha512-zALZt1t2ou8le/crCeeiRYzvdnTzaIlpOWaet45lNSqNJUnXbppUUFR4ZUAlzgDmKee4Q5P/tKXypI1RiHwgag== + dependencies: + callsites "^3.0.0" + graceful-fs "^4.1.15" + source-map "^0.6.0" + +"@jest/test-result@^24.7.1": + version "24.7.1" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.7.1.tgz#19eacdb29a114300aed24db651e5d975f08b6bbe" + integrity sha512-3U7wITxstdEc2HMfBX7Yx3JZgiNBubwDqQMh+BXmZXHa3G13YWF3p6cK+5g0hGkN3iufg/vGPl3hLxQXD74Npg== + dependencies: + "@jest/console" "^24.7.1" + "@jest/types" "^24.7.0" + "@types/istanbul-lib-coverage" "^2.0.0" + +"@jest/test-sequencer@^24.7.1": + version "24.7.1" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-24.7.1.tgz#9c18e428e1ad945fa74f6233a9d35745ca0e63e0" + integrity sha512-84HQkCpVZI/G1zq53gHJvSmhUer4aMYp9tTaffW28Ih5OxfCg8hGr3nTSbL1OhVDRrFZwvF+/R9gY6JRkDUpUA== + dependencies: + "@jest/test-result" "^24.7.1" + jest-haste-map "^24.7.1" + jest-runner "^24.7.1" + jest-runtime "^24.7.1" + +"@jest/transform@^24.7.1": + version "24.7.1" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-24.7.1.tgz#872318f125bcfab2de11f53b465ab1aa780789c2" + integrity sha512-EsOUqP9ULuJ66IkZQhI5LufCHlTbi7hrcllRMUEV/tOgqBVQi93+9qEvkX0n8mYpVXQ8VjwmICeRgg58mrtIEw== + dependencies: + "@babel/core" "^7.1.0" + "@jest/types" "^24.7.0" + babel-plugin-istanbul "^5.1.0" + chalk "^2.0.1" + convert-source-map "^1.4.0" + fast-json-stable-stringify "^2.0.0" + graceful-fs "^4.1.15" + jest-haste-map "^24.7.1" + jest-regex-util "^24.3.0" + jest-util "^24.7.1" + micromatch "^3.1.10" + realpath-native "^1.1.0" + slash "^2.0.0" + source-map "^0.6.1" + write-file-atomic "2.4.1" + +"@jest/types@^24.7.0": + version "24.7.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.7.0.tgz#c4ec8d1828cdf23234d9b4ee31f5482a3f04f48b" + integrity sha512-ipJUa2rFWiKoBqMKP63Myb6h9+iT3FHRTF2M8OR6irxWzItisa8i4dcSg14IbvmXUnBlHBlUQPYUHWyX3UPpYA== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/yargs" "^12.0.9" + +"@types/babel__core@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.0.tgz#710f2487dda4dcfd010ca6abb2b4dc7394365c51" + integrity sha512-wJTeJRt7BToFx3USrCDs2BhEi4ijBInTQjOIukj6a/5tEkwpFMVZ+1ppgmE+Q/FQyc5P/VWUbx7I9NELrKruHA== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + version "7.0.2" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.0.2.tgz#d2112a6b21fad600d7674274293c85dce0cb47fc" + integrity sha512-NHcOfab3Zw4q5sEE2COkpfXjoE7o+PmqD9DQW4koUT3roNxwziUdXGnRndMat/LJNUtePwn1TlP4do3uoe3KZQ== + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__template@*": + version "7.0.2" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307" + integrity sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": + version "7.0.6" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.6.tgz#328dd1a8fc4cfe3c8458be9477b219ea158fd7b2" + integrity sha512-XYVgHF2sQ0YblLRMLNPB3CkFMewzFmlDsH/TneZFHUXDlABQgh88uOxuez7ZcXxayLFrqLwtDH1t+FmlFwNZxw== + dependencies: + "@babel/types" "^7.3.0" + "@types/caseless@*": version "0.12.2" resolved "https://registry.yarnpkg.com/@types/caseless/-/caseless-0.12.2.tgz#f65d3d6389e01eeb458bd54dc8f52b95a9463bc8" @@ -12,15 +326,33 @@ dependencies: "@types/node" "*" +"@types/dedent@0.7.0": + version "0.7.0" + resolved "https://registry.yarnpkg.com/@types/dedent/-/dedent-0.7.0.tgz#155f339ca404e6dd90b9ce46a3f78fd69ca9b050" + integrity sha512-EGlKlgMhnLt/cM4DbUSafFdrkeJoC9Mvnj0PUCU7tFmTjMjNRT957kXCx0wYm3JuEq4o4ZsS5vG+NlkM2DMd2A== + "@types/form-data@*": version "2.2.1" resolved "https://registry.yarnpkg.com/@types/form-data/-/form-data-2.2.1.tgz#ee2b3b8eaa11c0938289953606b745b738c54b1e" dependencies: "@types/node" "*" -"@types/jest@21.1.10": - version "21.1.10" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-21.1.10.tgz#dcacb5217ddf997a090cc822bba219b4b2fd7984" +"@types/istanbul-lib-coverage@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.0.tgz#1eb8c033e98cf4e1a4cedcaf8bcafe8cb7591e85" + integrity sha512-eAtOAFZefEnfJiRFQBGw1eYqa5GTLCZ1y86N0XSI/D6EB+E8z6VPV/UL7Gi5UEclFqoQk+6NRqEDsfmDLXn8sg== + +"@types/jest-diff@*": + version "20.0.1" + resolved "https://registry.yarnpkg.com/@types/jest-diff/-/jest-diff-20.0.1.tgz#35cc15b9c4f30a18ef21852e255fdb02f6d59b89" + integrity sha512-yALhelO3i0hqZwhjtcr6dYyaLoCHbAMshwtj6cGxTvHZAKXHsYGdff6E8EPw3xLKY0ELUTQ69Q1rQiJENnccMA== + +"@types/jest@24.0.11": + version "24.0.11" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-24.0.11.tgz#1f099bea332c228ea6505a88159bfa86a5858340" + integrity sha512-2kLuPC5FDnWIDvaJBzsGTBQaBbnDweznicvK7UGYzlIJP4RJR2a4A/ByLUXEyEgag6jz8eHdlWExGDtH3EYUXQ== + dependencies: + "@types/jest-diff" "*" "@types/node@*": version "11.11.3" @@ -39,35 +371,51 @@ "@types/node" "*" "@types/tough-cookie" "*" -"@types/strip-bom@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@types/strip-bom/-/strip-bom-3.0.0.tgz#14a8ec3956c2e81edb7520790aecf21c290aebd2" - -"@types/strip-json-comments@0.0.30": - version "0.0.30" - resolved "https://registry.yarnpkg.com/@types/strip-json-comments/-/strip-json-comments-0.0.30.tgz#9aa30c04db212a9a0649d6ae6fd50accc40748a1" +"@types/stack-utils@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" + integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== "@types/tough-cookie@*": version "2.3.5" resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-2.3.5.tgz#9da44ed75571999b65c37b60c9b2b88db54c585d" -abab@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" +"@types/yargs@^12.0.2", "@types/yargs@^12.0.9": + version "12.0.12" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-12.0.12.tgz#45dd1d0638e8c8f153e87d296907659296873916" + integrity sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw== + +abab@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f" + integrity sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w== abbrev@1: version "1.1.1" resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" -acorn-globals@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" +acorn-globals@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.0.tgz#e3b6f8da3c1552a95ae627571f7dd6923bb54103" + integrity sha512-hMtHj3s5RnuhvHPowpBYvJVj3rAar82JiDQHvGs1zO0l10ocX/xEdBShNHTJaboucJUsScghp74pH3s7EnHHQw== dependencies: - acorn "^4.0.4" + acorn "^6.0.1" + acorn-walk "^6.0.1" -acorn@^4.0.4: - version "4.0.13" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" +acorn-walk@^6.0.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.1.1.tgz#d363b66f5fac5f018ff9c3a1e7b6f8e310cc3913" + integrity sha512-OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw== + +acorn@^5.5.3: + version "5.7.3" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" + integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== + +acorn@^6.0.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.1.1.tgz#7d25ae05bb8ad1f9b699108e1094ecd7884adc1f" + integrity sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA== ajv@^6.5.5: version "6.10.0" @@ -90,6 +438,11 @@ ansi-regex@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" +ansi-regex@^4.0.0, ansi-regex@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" + integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== + ansi-styles@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" @@ -100,13 +453,6 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1: dependencies: color-convert "^1.9.0" -anymatch@^1.3.0: - version "1.3.2" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" - dependencies: - micromatch "^2.1.5" - normalize-path "^2.0.0" - anymatch@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" @@ -114,11 +460,12 @@ anymatch@^2.0.0: micromatch "^3.1.4" normalize-path "^2.1.1" -append-transform@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" +append-transform@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-1.0.0.tgz#046a52ae582a228bd72f58acfbe2967c678759ab" + integrity sha512-P009oYkeHyU742iSZJzZZywj4QRJdnTWffaKuJQLablCZ1uz6/cW4yaRgcDaoQ+uwOxxnt0gRUcwfsNP2ri0gw== dependencies: - default-require-extensions "^1.0.0" + default-require-extensions "^2.0.0" aproba@^1.0.3: version "1.2.0" @@ -137,17 +484,11 @@ argparse@^1.0.7: dependencies: sprintf-js "~1.0.2" -arr-diff@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" - dependencies: - arr-flatten "^1.0.1" - arr-diff@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" -arr-flatten@^1.0.1, arr-flatten@^1.1.0: +arr-flatten@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" @@ -159,27 +500,11 @@ array-equal@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" -array-filter@~0.0.0: - version "0.0.1" - resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" - -array-map@~0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" - -array-reduce@~0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" - -array-unique@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" - array-unique@^0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" -arrify@^1.0.0, arrify@^1.0.1: +arrify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" @@ -205,13 +530,15 @@ astral-regex@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" -async-each@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.2.tgz#8b8a7ca2a658f927e9f307d6d1a42f4199f0f735" +async-limiter@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" + integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg== -async@^2.1.4: +async@^2.6.1: version "2.6.2" resolved "https://registry.yarnpkg.com/async/-/async-2.6.2.tgz#18330ea7e6e313887f5d2f2a904bac6fe4dd5381" + integrity sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg== dependencies: lodash "^4.17.11" @@ -231,7 +558,7 @@ aws4@^1.8.0: version "1.8.0" resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" -babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: +babel-code-frame@^6.22.0: version "6.26.0" resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" dependencies: @@ -239,158 +566,42 @@ babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: esutils "^2.0.2" js-tokens "^3.0.2" -babel-core@^6.0.0, babel-core@^6.24.1, babel-core@^6.26.0: - version "6.26.3" - resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" +babel-jest@^24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.7.1.tgz#73902c9ff15a7dfbdc9994b0b17fcefd96042178" + integrity sha512-GPnLqfk8Mtt0i4OemjWkChi73A3ALs4w2/QbG64uAj8b5mmwzxc7jbJVRZt8NJkxi6FopVHog9S3xX6UJKb2qg== dependencies: - babel-code-frame "^6.26.0" - babel-generator "^6.26.0" - babel-helpers "^6.24.1" - babel-messages "^6.23.0" - babel-register "^6.26.0" - babel-runtime "^6.26.0" - babel-template "^6.26.0" - babel-traverse "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - convert-source-map "^1.5.1" - debug "^2.6.9" - json5 "^0.5.1" - lodash "^4.17.4" - minimatch "^3.0.4" - path-is-absolute "^1.0.1" - private "^0.1.8" - slash "^1.0.0" - source-map "^0.5.7" + "@jest/transform" "^24.7.1" + "@jest/types" "^24.7.0" + "@types/babel__core" "^7.1.0" + babel-plugin-istanbul "^5.1.0" + babel-preset-jest "^24.6.0" + chalk "^2.4.2" + slash "^2.0.0" -babel-generator@^6.18.0, babel-generator@^6.26.0: - version "6.26.1" - resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" +babel-plugin-istanbul@^5.1.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.1.tgz#7981590f1956d75d67630ba46f0c22493588c893" + integrity sha512-RNNVv2lsHAXJQsEJ5jonQwrJVWK8AcZpG1oxhnjCUaAjL7xahYLANhPUZbzEQHjKy1NMYUwn+0NPKQc8iSY4xQ== dependencies: - babel-messages "^6.23.0" - babel-runtime "^6.26.0" - babel-types "^6.26.0" - detect-indent "^4.0.0" - jsesc "^1.3.0" - lodash "^4.17.4" - source-map "^0.5.7" - trim-right "^1.0.1" + find-up "^3.0.0" + istanbul-lib-instrument "^3.0.0" + test-exclude "^5.0.0" -babel-helpers@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" +babel-plugin-jest-hoist@^24.6.0: + version "24.6.0" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.6.0.tgz#f7f7f7ad150ee96d7a5e8e2c5da8319579e78019" + integrity sha512-3pKNH6hMt9SbOv0F3WVmy5CWQ4uogS3k0GY5XLyQHJ9EGpAT9XWkFd2ZiXXtkwFHdAHa5j7w7kfxSP5lAIwu7w== dependencies: - babel-runtime "^6.22.0" - babel-template "^6.24.1" + "@types/babel__traverse" "^7.0.6" -babel-jest@^21.2.0: - version "21.2.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-21.2.0.tgz#2ce059519a9374a2c46f2455b6fbef5ad75d863e" +babel-preset-jest@^24.6.0: + version "24.6.0" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.6.0.tgz#66f06136eefce87797539c0d63f1769cc3915984" + integrity sha512-pdZqLEdmy1ZK5kyRUfvBb2IfTPb2BUvIJczlPspS8fWmBQslNNDBqVfh7BW5leOVJMDZKzjD8XEyABTk6gQ5yw== dependencies: - babel-plugin-istanbul "^4.0.0" - babel-preset-jest "^21.2.0" - -babel-messages@^6.23.0: - version "6.23.0" - resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" - dependencies: - babel-runtime "^6.22.0" - -babel-plugin-istanbul@^4.0.0, babel-plugin-istanbul@^4.1.4: - version "4.1.6" - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45" - dependencies: - babel-plugin-syntax-object-rest-spread "^6.13.0" - find-up "^2.1.0" - istanbul-lib-instrument "^1.10.1" - test-exclude "^4.2.1" - -babel-plugin-jest-hoist@^21.2.0: - version "21.2.0" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.2.0.tgz#2cef637259bd4b628a6cace039de5fcd14dbb006" - -babel-plugin-syntax-object-rest-spread@^6.13.0: - version "6.13.0" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" - -babel-plugin-transform-es2015-modules-commonjs@^6.24.1: - version "6.26.2" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" - dependencies: - babel-plugin-transform-strict-mode "^6.24.1" - babel-runtime "^6.26.0" - babel-template "^6.26.0" - babel-types "^6.26.0" - -babel-plugin-transform-strict-mode@^6.24.1: - version "6.24.1" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" - dependencies: - babel-runtime "^6.22.0" - babel-types "^6.24.1" - -babel-preset-jest@^21.2.0: - version "21.2.0" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-21.2.0.tgz#ff9d2bce08abd98e8a36d9a8a5189b9173b85638" - dependencies: - babel-plugin-jest-hoist "^21.2.0" - babel-plugin-syntax-object-rest-spread "^6.13.0" - -babel-register@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" - dependencies: - babel-core "^6.26.0" - babel-runtime "^6.26.0" - core-js "^2.5.0" - home-or-tmp "^2.0.0" - lodash "^4.17.4" - mkdirp "^0.5.1" - source-map-support "^0.4.15" - -babel-runtime@^6.22.0, babel-runtime@^6.26.0, babel-runtime@^6.9.2: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" - dependencies: - core-js "^2.4.0" - regenerator-runtime "^0.11.0" - -babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" - dependencies: - babel-runtime "^6.26.0" - babel-traverse "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - lodash "^4.17.4" - -babel-traverse@^6.18.0, babel-traverse@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" - dependencies: - babel-code-frame "^6.26.0" - babel-messages "^6.23.0" - babel-runtime "^6.26.0" - babel-types "^6.26.0" - babylon "^6.18.0" - debug "^2.6.8" - globals "^9.18.0" - invariant "^2.2.2" - lodash "^4.17.4" - -babel-types@^6.18.0, babel-types@^6.24.1, babel-types@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" - dependencies: - babel-runtime "^6.26.0" - esutils "^2.0.2" - lodash "^4.17.4" - to-fast-properties "^1.0.3" - -babylon@^6.18.0: - version "6.18.0" - resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" + "@babel/plugin-syntax-object-rest-spread" "^7.0.0" + babel-plugin-jest-hoist "^24.6.0" balanced-match@^1.0.0: version "1.0.0" @@ -414,10 +625,6 @@ bcrypt-pbkdf@^1.0.0: dependencies: tweetnacl "^0.14.3" -binary-extensions@^1.0.0: - version "1.13.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.0.tgz#9523e001306a32444b907423f1de2164222f6ab1" - boolbase@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" @@ -429,14 +636,6 @@ brace-expansion@^1.1.7: balanced-match "^1.0.0" concat-map "0.0.1" -braces@^1.8.2: - version "1.8.5" - resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" - dependencies: - expand-range "^1.8.1" - preserve "^0.2.0" - repeat-element "^1.1.2" - braces@^2.3.1: version "2.3.2" resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" @@ -452,9 +651,15 @@ braces@^2.3.1: split-string "^3.0.2" to-regex "^3.0.1" -browser-resolve@^1.11.2: +browser-process-hrtime@^0.1.2: + version "0.1.3" + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4" + integrity sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw== + +browser-resolve@^1.11.3: version "1.11.3" resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" + integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ== dependencies: resolve "1.1.7" @@ -468,7 +673,7 @@ buffer-from@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" -builtin-modules@^1.0.0, builtin-modules@^1.1.1: +builtin-modules@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" @@ -486,19 +691,22 @@ cache-base@^1.0.1: union-value "^1.0.0" unset-value "^1.0.0" -callsites@^2.0.0: +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase@^5.0.0: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +capture-exit@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" - -camelcase@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" - -capture-exit@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f" + resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" + integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== dependencies: - rsvp "^3.3.3" + rsvp "^4.8.4" caseless@~0.12.0: version "0.12.0" @@ -525,7 +733,7 @@ chalk@^1.1.3: strip-ansi "^3.0.0" supports-color "^2.0.0" -chalk@^2.0.1, chalk@^2.3.0: +chalk@^2.0.0, chalk@^2.0.1, chalk@^2.3.0, chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" dependencies: @@ -558,28 +766,14 @@ cheerio@^0.22.0: lodash.reject "^4.4.0" lodash.some "^4.4.0" -chokidar@^1.6.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" - dependencies: - anymatch "^1.3.0" - async-each "^1.0.0" - glob-parent "^2.0.0" - inherits "^2.0.1" - is-binary-path "^1.0.0" - is-glob "^2.0.0" - path-is-absolute "^1.0.0" - readdirp "^2.0.0" - optionalDependencies: - fsevents "^1.0.0" - chownr@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" -ci-info@^1.5.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497" +ci-info@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" + integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== class-utils@^0.3.5: version "0.3.6" @@ -590,14 +784,6 @@ class-utils@^0.3.5: isobject "^3.0.0" static-extend "^0.1.1" -cliui@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" - dependencies: - string-width "^1.0.1" - strip-ansi "^3.0.1" - wrap-ansi "^2.0.0" - cliui@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" @@ -606,6 +792,11 @@ cliui@^4.0.0: strip-ansi "^4.0.0" wrap-ansi "^2.0.0" +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= + code-point-at@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" @@ -637,6 +828,11 @@ commander@^2.12.1, commander@~2.19.0: version "2.19.0" resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" +compare-versions@^3.2.1: + version "3.4.0" + resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.4.0.tgz#e0747df5c9cb7f054d6d3dc3e1dbc444f9e92b26" + integrity sha512-tK69D7oNXXqUW3ZNo/z7NXTEz22TCF0pTE+YF9cxvaAM9XnkLo1fV621xCLrRR6aevJlKxExkss0vWqUCUpqdg== + component-emitter@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" @@ -649,11 +845,7 @@ console-control-strings@^1.0.0, console-control-strings@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" -content-type-parser@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7" - -convert-source-map@^1.4.0, convert-source-map@^1.5.1: +convert-source-map@^1.1.0, convert-source-map@^1.4.0: version "1.6.0" resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" dependencies: @@ -663,35 +855,18 @@ copy-descriptor@^0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" -core-js@^2.4.0, core-js@^2.5.0: - version "2.6.5" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.5.tgz#44bc8d249e7fb2ff5d00e0341a7ffb94fbf67895" - core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" -cpx@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/cpx/-/cpx-1.5.0.tgz#185be018511d87270dedccc293171e37655ab88f" +cross-spawn@^6.0.0: + version "6.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== dependencies: - babel-runtime "^6.9.2" - chokidar "^1.6.0" - duplexer "^0.1.1" - glob "^7.0.5" - glob2base "^0.0.12" - minimatch "^3.0.2" - mkdirp "^0.5.1" - resolve "^1.1.7" - safe-buffer "^5.0.1" - shell-quote "^1.6.1" - subarg "^1.0.0" - -cross-spawn@^5.0.1: - version "5.1.0" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" - dependencies: - lru-cache "^4.0.1" + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" shebang-command "^1.2.0" which "^1.2.9" @@ -712,9 +887,10 @@ cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": version "0.3.6" resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.6.tgz#f85206cee04efa841f3c5982a74ba96ab20d65ad" -"cssstyle@>= 0.2.37 < 0.3.0": - version "0.2.37" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" +cssstyle@^1.0.0: + version "1.2.2" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.2.2.tgz#427ea4d585b18624f6fdbf9de7a2a1a3ba713077" + integrity sha512-43wY3kl1CVQSvL7wUY1qXkxVGkStjpkDmVjiIKX8R97uhajy8Bybay78uOtqvh7Q5GK75dNPfW0geWjE6qQQow== dependencies: cssom "0.3.x" @@ -724,7 +900,16 @@ dashdash@^1.12.0: dependencies: assert-plus "^1.0.0" -debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: +data-urls@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" + integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== + dependencies: + abab "^2.0.0" + whatwg-mimetype "^2.2.0" + whatwg-url "^7.0.0" + +debug@^2.1.2, debug@^2.2.0, debug@^2.3.3: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" dependencies: @@ -736,14 +921,27 @@ debug@^3.1.0: dependencies: ms "^2.1.1" -decamelize@^1.1.1: +debug@^4.1.0, debug@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" + integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== + dependencies: + ms "^2.1.1" + +decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= decode-uri-component@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" +dedent@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" + integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= + deep-eql@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" @@ -762,11 +960,19 @@ deep-is@~0.1.3: version "0.1.3" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" -default-require-extensions@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" +default-require-extensions@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-2.0.0.tgz#f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7" + integrity sha1-9fj7sYp9bVCyH2QfZJ67Uiz+JPc= dependencies: - strip-bom "^2.0.0" + strip-bom "^3.0.0" + +define-properties@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== + dependencies: + object-keys "^1.0.12" define-property@^0.2.5: version "0.2.5" @@ -795,27 +1001,24 @@ delegates@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" -detect-indent@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" - dependencies: - repeating "^2.0.0" - detect-libc@^1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" -diff@^3.1.0, diff@^3.2.0: +detect-newline@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" + integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I= + +diff-sequences@^24.3.0: + version "24.3.0" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.3.0.tgz#0f20e8a1df1abddaf4d9c226680952e64118b975" + integrity sha512-xLqpez+Zj9GKSnPWS0WZw1igGocZ+uua8+y+5dDNTT934N3QuY1sp2LkHzwiaYQGz60hMq0pjAshdeXm5VUOEw== + +diff@^3.2.0: version "3.5.0" resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" -doctrine@^0.7.2: - version "0.7.2" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-0.7.2.tgz#7cb860359ba3be90e040b26b729ce4bfa654c523" - dependencies: - esutils "^1.1.6" - isarray "0.0.1" - dom-serializer@0, dom-serializer@~0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" @@ -827,6 +1030,13 @@ domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" +domexception@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" + integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== + dependencies: + webidl-conversions "^4.0.2" + domhandler@^2.3.0: version "2.4.2" resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" @@ -847,10 +1057,6 @@ domutils@^1.5.1: dom-serializer "0" domelementtype "1" -duplexer@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" - ecc-jsbn@~0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" @@ -858,29 +1064,53 @@ ecc-jsbn@~0.1.1: jsbn "~0.1.0" safer-buffer "^2.1.0" +end-of-stream@^1.1.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" + integrity sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q== + dependencies: + once "^1.4.0" + entities@^1.1.1, entities@~1.1.1: version "1.1.2" resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" -errno@~0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" - dependencies: - prr "~1.0.1" - -error-ex@^1.2.0: +error-ex@^1.3.1: version "1.3.2" resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== dependencies: is-arrayish "^0.2.1" +es-abstract@^1.5.1: + version "1.13.0" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" + integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== + dependencies: + es-to-primitive "^1.2.0" + function-bind "^1.1.1" + has "^1.0.3" + is-callable "^1.1.4" + is-regex "^1.0.4" + object-keys "^1.0.12" + +es-to-primitive@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" + integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" -escodegen@^1.6.1: +escodegen@^1.9.1: version "1.11.1" resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.1.tgz#c485ff8d6b4cdb89e27f4a856e91f118401ca510" + integrity sha512-JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw== dependencies: esprima "^3.1.3" estraverse "^4.2.0" @@ -908,37 +1138,32 @@ estraverse@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" -esutils@^1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-1.1.6.tgz#c01ccaa9ae4b897c6d0c3e210ae52f3c7a844375" - esutils@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" -exec-sh@^0.2.0: - version "0.2.2" - resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.2.tgz#2a5e7ffcbd7d0ba2755bdecb16e5a427dfbdec36" - dependencies: - merge "^1.2.0" +exec-sh@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b" + integrity sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg== -execa@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" +execa@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== dependencies: - cross-spawn "^5.0.1" - get-stream "^3.0.0" + cross-spawn "^6.0.0" + get-stream "^4.0.0" is-stream "^1.1.0" npm-run-path "^2.0.0" p-finally "^1.0.0" signal-exit "^3.0.0" strip-eof "^1.0.0" -expand-brackets@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" - dependencies: - is-posix-bracket "^0.1.0" +exit@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= expand-brackets@^2.1.4: version "2.1.4" @@ -952,22 +1177,17 @@ expand-brackets@^2.1.4: snapdragon "^0.8.1" to-regex "^3.0.1" -expand-range@^1.8.1: - version "1.8.2" - resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" - dependencies: - fill-range "^2.1.0" - -expect@^21.2.1: - version "21.2.1" - resolved "https://registry.yarnpkg.com/expect/-/expect-21.2.1.tgz#003ac2ac7005c3c29e73b38a272d4afadd6d1d7b" +expect@^24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/expect/-/expect-24.7.1.tgz#d91defbab4e627470a152feaf35b3c31aa1c7c14" + integrity sha512-mGfvMTPduksV3xoI0xur56pQsg2vJjNf5+a+bXOjqCkiCBbmCayrBbHS/75y9K430cfqyocPr2ZjiNiRx4SRKw== dependencies: + "@jest/types" "^24.7.0" ansi-styles "^3.2.0" - jest-diff "^21.2.1" - jest-get-type "^21.2.0" - jest-matcher-utils "^21.2.1" - jest-message-util "^21.2.1" - jest-regex-util "^21.2.0" + jest-get-type "^24.3.0" + jest-matcher-utils "^24.7.0" + jest-message-util "^24.7.1" + jest-regex-util "^24.3.0" extend-shallow@^2.0.1: version "2.0.1" @@ -986,12 +1206,6 @@ extend@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" -extglob@^0.3.1: - version "0.3.2" - resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" - dependencies: - is-extglob "^1.0.0" - extglob@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" @@ -1035,27 +1249,14 @@ fb-watchman@^2.0.0: dependencies: bser "^2.0.0" -filename-regex@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" - -fileset@^2.0.2: +fileset@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" + integrity sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA= dependencies: glob "^7.0.3" minimatch "^3.0.3" -fill-range@^2.1.0: - version "2.2.4" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" - dependencies: - is-number "^2.1.0" - isobject "^2.0.0" - randomatic "^3.0.0" - repeat-element "^1.1.2" - repeat-string "^1.5.2" - fill-range@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" @@ -1065,33 +1266,17 @@ fill-range@^4.0.0: repeat-string "^1.6.1" to-regex-range "^2.1.0" -find-index@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" - -find-up@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== dependencies: - path-exists "^2.0.0" - pinkie-promise "^2.0.0" + locate-path "^3.0.0" -find-up@^2.0.0, find-up@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" - dependencies: - locate-path "^2.0.0" - -for-in@^1.0.1, for-in@^1.0.2: +for-in@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" -for-own@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" - dependencies: - for-in "^1.0.1" - forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" @@ -1110,14 +1295,6 @@ fragment-cache@^0.2.1: dependencies: map-cache "^0.2.2" -fs-extra@^4.0.2: - version "4.0.3" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" - dependencies: - graceful-fs "^4.1.2" - jsonfile "^4.0.0" - universalify "^0.1.0" - fs-minipass@^1.2.5: version "1.2.5" resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" @@ -1128,13 +1305,19 @@ fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" -fsevents@^1.0.0, fsevents@^1.2.3: +fsevents@^1.2.7: version "1.2.7" resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.7.tgz#4851b664a3783e52003b3c66eb0eee1074933aa4" + integrity sha512-Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw== dependencies: nan "^2.9.2" node-pre-gyp "^0.10.0" +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + gauge@~2.7.3: version "2.7.4" resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" @@ -1156,9 +1339,12 @@ get-func-name@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" -get-stream@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" +get-stream@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== + dependencies: + pump "^3.0.0" get-value@^2.0.3, get-value@^2.0.6: version "2.0.6" @@ -1170,26 +1356,7 @@ getpass@^0.1.1: dependencies: assert-plus "^1.0.0" -glob-base@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" - dependencies: - glob-parent "^2.0.0" - is-glob "^2.0.0" - -glob-parent@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" - dependencies: - is-glob "^2.0.0" - -glob2base@^0.0.12: - version "0.0.12" - resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" - dependencies: - find-index "^0.1.1" - -glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3: +glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3: version "7.1.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" dependencies: @@ -1200,21 +1367,24 @@ glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3: once "^1.3.0" path-is-absolute "^1.0.0" -globals@^9.18.0: - version "9.18.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" +globals@^11.1.0: + version "11.11.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.11.0.tgz#dcf93757fa2de5486fbeed7118538adf789e9c2e" + integrity sha512-WHq43gS+6ufNOEqlrDBxVEbb8ntfXrfAUU2ZOpCxrBdGKW3gyv8mCxAfIBD0DroPKGrJ2eSsXsLtY9MPntsyTw== -graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: +graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2: version "4.1.15" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" + integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== growly@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" -handlebars@^4.0.3: +handlebars@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.1.tgz#6e4e41c18ebe7719ae4d38e5aca3d32fa3dd23d3" + integrity sha512-3Zhi6C0euYZL5sM0Zcy7lInLXKQ+YLcF/olbN010mzGQ4XVm50JeyBnMqofHh696GrciGruC7kCcApPDJvVgwA== dependencies: neo-async "^2.6.0" optimist "^0.6.1" @@ -1239,14 +1409,15 @@ has-ansi@^2.0.0: dependencies: ansi-regex "^2.0.0" -has-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" - has-flag@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" +has-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" + integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= + has-unicode@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" @@ -1278,26 +1449,21 @@ has-values@^1.0.0: is-number "^3.0.0" kind-of "^4.0.0" -home-or-tmp@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" - dependencies: - os-homedir "^1.0.0" - os-tmpdir "^1.0.1" - -homedir-polyfill@^1.0.1: +has@^1.0.1, has@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== dependencies: - parse-passwd "^1.0.0" + function-bind "^1.1.1" hosted-git-info@^2.1.4: version "2.7.1" resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" -html-encoding-sniffer@^1.0.1: +html-encoding-sniffer@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" + integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== dependencies: whatwg-encoding "^1.0.1" @@ -1332,6 +1498,14 @@ ignore-walk@^3.0.1: dependencies: minimatch "^3.0.4" +import-local@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" + integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== + dependencies: + pkg-dir "^3.0.0" + resolve-cwd "^2.0.0" + imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" @@ -1351,15 +1525,17 @@ ini@~1.3.0: version "1.3.5" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" -invariant@^2.2.2: +invariant@^2.2.4: version "2.2.4" resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== dependencies: loose-envify "^1.0.0" -invert-kv@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" +invert-kv@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" + integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== is-accessor-descriptor@^0.1.6: version "0.1.6" @@ -1377,27 +1553,21 @@ is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" -is-binary-path@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" - dependencies: - binary-extensions "^1.0.0" - is-buffer@^1.1.5: version "1.1.6" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" -is-builtin-module@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" - dependencies: - builtin-modules "^1.0.0" +is-callable@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" + integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== -is-ci@^1.0.10: - version "1.2.1" - resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c" +is-ci@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" + integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== dependencies: - ci-info "^1.5.0" + ci-info "^2.0.0" is-data-descriptor@^0.1.4: version "0.1.4" @@ -1411,6 +1581,11 @@ is-data-descriptor@^1.0.0: dependencies: kind-of "^6.0.0" +is-date-object@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" + integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= + is-descriptor@^0.1.0: version "0.1.6" resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" @@ -1427,16 +1602,6 @@ is-descriptor@^1.0.0, is-descriptor@^1.0.2: is-data-descriptor "^1.0.0" kind-of "^6.0.2" -is-dotfile@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" - -is-equal-shallow@^0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" - dependencies: - is-primitive "^2.0.0" - is-extendable@^0.1.0, is-extendable@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" @@ -1447,16 +1612,6 @@ is-extendable@^1.0.1: dependencies: is-plain-object "^2.0.4" -is-extglob@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" - -is-finite@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" - dependencies: - number-is-nan "^1.0.0" - is-fullwidth-code-point@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" @@ -1467,17 +1622,10 @@ is-fullwidth-code-point@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" -is-glob@^2.0.0, is-glob@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" - dependencies: - is-extglob "^1.0.0" - -is-number@^2.1.0: +is-generator-fn@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" - dependencies: - kind-of "^3.0.2" + resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" + integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== is-number@^3.0.0: version "3.0.0" @@ -1485,36 +1633,34 @@ is-number@^3.0.0: dependencies: kind-of "^3.0.2" -is-number@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" - is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" dependencies: isobject "^3.0.1" -is-posix-bracket@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" - -is-primitive@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" +is-regex@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" + integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= + dependencies: + has "^1.0.1" is-stream@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" +is-symbol@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" + integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== + dependencies: + has-symbols "^1.0.0" + is-typedarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" -is-utf8@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" - is-windows@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" @@ -1523,10 +1669,6 @@ is-wsl@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" -isarray@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" - isarray@1.0.0, isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" @@ -1549,305 +1691,444 @@ isstream@~0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" -istanbul-api@^1.1.1: - version "1.3.7" - resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.7.tgz#a86c770d2b03e11e3f778cd7aedd82d2722092aa" +istanbul-api@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-2.1.1.tgz#194b773f6d9cbc99a9258446848b0f988951c4d0" + integrity sha512-kVmYrehiwyeBAk/wE71tW6emzLiHGjYIiDrc8sfyty4F8M02/lrgXSm+R1kXysmF20zArvmZXjlE/mg24TVPJw== dependencies: - async "^2.1.4" - fileset "^2.0.2" - istanbul-lib-coverage "^1.2.1" - istanbul-lib-hook "^1.2.2" - istanbul-lib-instrument "^1.10.2" - istanbul-lib-report "^1.1.5" - istanbul-lib-source-maps "^1.2.6" - istanbul-reports "^1.5.1" - js-yaml "^3.7.0" - mkdirp "^0.5.1" + async "^2.6.1" + compare-versions "^3.2.1" + fileset "^2.0.3" + istanbul-lib-coverage "^2.0.3" + istanbul-lib-hook "^2.0.3" + istanbul-lib-instrument "^3.1.0" + istanbul-lib-report "^2.0.4" + istanbul-lib-source-maps "^3.0.2" + istanbul-reports "^2.1.1" + js-yaml "^3.12.0" + make-dir "^1.3.0" + minimatch "^3.0.4" once "^1.4.0" -istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz#ccf7edcd0a0bb9b8f729feeb0930470f9af664f0" +istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#0b891e5ad42312c2b9488554f603795f9a2211ba" + integrity sha512-dKWuzRGCs4G+67VfW9pBFFz2Jpi4vSp/k7zBcJ888ofV5Mi1g5CUML5GvMvV6u9Cjybftu+E8Cgp+k0dI1E5lw== -istanbul-lib-hook@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz#bc6bf07f12a641fbf1c85391d0daa8f0aea6bf86" +istanbul-lib-hook@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-2.0.3.tgz#e0e581e461c611be5d0e5ef31c5f0109759916fb" + integrity sha512-CLmEqwEhuCYtGcpNVJjLV1DQyVnIqavMLFHV/DP+np/g3qvdxu3gsPqYoJMXm15sN84xOlckFB3VNvRbf5yEgA== dependencies: - append-transform "^0.4.0" + append-transform "^1.0.0" -istanbul-lib-instrument@^1.10.1, istanbul-lib-instrument@^1.10.2, istanbul-lib-instrument@^1.4.2: - version "1.10.2" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz#1f55ed10ac3c47f2bdddd5307935126754d0a9ca" +istanbul-lib-instrument@^3.0.0, istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.1.0.tgz#a2b5484a7d445f1f311e93190813fa56dfb62971" + integrity sha512-ooVllVGT38HIk8MxDj/OIHXSYvH+1tq/Vb38s8ixt9GoJadXska4WkGY+0wkmtYCZNYtaARniH/DixUGGLZ0uA== dependencies: - babel-generator "^6.18.0" - babel-template "^6.16.0" - babel-traverse "^6.18.0" - babel-types "^6.18.0" - babylon "^6.18.0" - istanbul-lib-coverage "^1.2.1" - semver "^5.3.0" + "@babel/generator" "^7.0.0" + "@babel/parser" "^7.0.0" + "@babel/template" "^7.0.0" + "@babel/traverse" "^7.0.0" + "@babel/types" "^7.0.0" + istanbul-lib-coverage "^2.0.3" + semver "^5.5.0" -istanbul-lib-report@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz#f2a657fc6282f96170aaf281eb30a458f7f4170c" +istanbul-lib-report@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.4.tgz#bfd324ee0c04f59119cb4f07dab157d09f24d7e4" + integrity sha512-sOiLZLAWpA0+3b5w5/dq0cjm2rrNdAfHWaGhmn7XEFW6X++IV9Ohn+pnELAl9K3rfpaeBfbmH9JU5sejacdLeA== dependencies: - istanbul-lib-coverage "^1.2.1" - mkdirp "^0.5.1" - path-parse "^1.0.5" - supports-color "^3.1.2" + istanbul-lib-coverage "^2.0.3" + make-dir "^1.3.0" + supports-color "^6.0.0" -istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.6: - version "1.2.6" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz#37b9ff661580f8fca11232752ee42e08c6675d8f" +istanbul-lib-source-maps@^3.0.1, istanbul-lib-source-maps@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.2.tgz#f1e817229a9146e8424a28e5d69ba220fda34156" + integrity sha512-JX4v0CiKTGp9fZPmoxpu9YEkPbEqCqBbO3403VabKjH+NRXo72HafD5UgnjTEqHL2SAjaZK1XDuDOkn6I5QVfQ== dependencies: - debug "^3.1.0" - istanbul-lib-coverage "^1.2.1" - mkdirp "^0.5.1" - rimraf "^2.6.1" - source-map "^0.5.3" + debug "^4.1.1" + istanbul-lib-coverage "^2.0.3" + make-dir "^1.3.0" + rimraf "^2.6.2" + source-map "^0.6.1" -istanbul-reports@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.5.1.tgz#97e4dbf3b515e8c484caea15d6524eebd3ff4e1a" +istanbul-reports@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.1.1.tgz#72ef16b4ecb9a4a7bd0e2001e00f95d1eec8afa9" + integrity sha512-FzNahnidyEPBCI0HcufJoSEoKykesRlFcSzQqjH9x0+LC8tnnE/p/90PBLu8iZTxr8yYZNyTtiAujUqyN+CIxw== dependencies: - handlebars "^4.0.3" + handlebars "^4.1.0" -jest-changed-files@^21.2.0: - version "21.2.0" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-21.2.0.tgz#5dbeecad42f5d88b482334902ce1cba6d9798d29" +jest-changed-files@^24.7.0: + version "24.7.0" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.7.0.tgz#39d723a11b16ed7b373ac83adc76a69464b0c4fa" + integrity sha512-33BgewurnwSfJrW7T5/ZAXGE44o7swLslwh8aUckzq2e17/2Os1V0QU506ZNik3hjs8MgnEMKNkcud442NCDTw== dependencies: + "@jest/types" "^24.7.0" + execa "^1.0.0" throat "^4.0.0" -jest-cli@^21.2.1: - version "21.2.1" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-21.2.1.tgz#9c528b6629d651911138d228bdb033c157ec8c00" +jest-cli@^24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.7.1.tgz#6093a539073b6f4953145abeeb9709cd621044f1" + integrity sha512-32OBoSCVPzcTslGFl6yVCMzB2SqX3IrWwZCY5mZYkb0D2WsogmU3eV2o8z7+gRQa4o4sZPX/k7GU+II7CxM6WQ== dependencies: - ansi-escapes "^3.0.0" + "@jest/core" "^24.7.1" + "@jest/test-result" "^24.7.1" + "@jest/types" "^24.7.0" chalk "^2.0.1" - glob "^7.1.2" - graceful-fs "^4.1.11" - is-ci "^1.0.10" - istanbul-api "^1.1.1" - istanbul-lib-coverage "^1.0.1" - istanbul-lib-instrument "^1.4.2" - istanbul-lib-source-maps "^1.1.0" - jest-changed-files "^21.2.0" - jest-config "^21.2.1" - jest-environment-jsdom "^21.2.1" - jest-haste-map "^21.2.0" - jest-message-util "^21.2.1" - jest-regex-util "^21.2.0" - jest-resolve-dependencies "^21.2.0" - jest-runner "^21.2.1" - jest-runtime "^21.2.1" - jest-snapshot "^21.2.1" - jest-util "^21.2.1" - micromatch "^2.3.11" - node-notifier "^5.0.2" - pify "^3.0.0" - slash "^1.0.0" - string-length "^2.0.0" - strip-ansi "^4.0.0" - which "^1.2.12" - worker-farm "^1.3.1" - yargs "^9.0.0" + exit "^0.1.2" + import-local "^2.0.0" + is-ci "^2.0.0" + jest-config "^24.7.1" + jest-util "^24.7.1" + jest-validate "^24.7.0" + prompts "^2.0.1" + realpath-native "^1.1.0" + yargs "^12.0.2" -jest-config@^21.2.1: - version "21.2.1" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-21.2.1.tgz#c7586c79ead0bcc1f38c401e55f964f13bf2a480" +jest-config@^24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.7.1.tgz#6c1dd4db82a89710a3cf66bdba97827c9a1cf052" + integrity sha512-8FlJNLI+X+MU37j7j8RE4DnJkvAghXmBWdArVzypW6WxfGuxiL/CCkzBg0gHtXhD2rxla3IMOSUAHylSKYJ83g== dependencies: + "@babel/core" "^7.1.0" + "@jest/test-sequencer" "^24.7.1" + "@jest/types" "^24.7.0" + babel-jest "^24.7.1" chalk "^2.0.1" glob "^7.1.1" - jest-environment-jsdom "^21.2.1" - jest-environment-node "^21.2.1" - jest-get-type "^21.2.0" - jest-jasmine2 "^21.2.1" - jest-regex-util "^21.2.0" - jest-resolve "^21.2.0" - jest-util "^21.2.1" - jest-validate "^21.2.1" - pretty-format "^21.2.1" + jest-environment-jsdom "^24.7.1" + jest-environment-node "^24.7.1" + jest-get-type "^24.3.0" + jest-jasmine2 "^24.7.1" + jest-regex-util "^24.3.0" + jest-resolve "^24.7.1" + jest-util "^24.7.1" + jest-validate "^24.7.0" + micromatch "^3.1.10" + pretty-format "^24.7.0" + realpath-native "^1.1.0" -jest-diff@^21.2.1: - version "21.2.1" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-21.2.1.tgz#46cccb6cab2d02ce98bc314011764bb95b065b4f" +jest-diff@^24.7.0: + version "24.7.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.7.0.tgz#5d862899be46249754806f66e5729c07fcb3580f" + integrity sha512-ULQZ5B1lWpH70O4xsANC4tf4Ko6RrpwhE3PtG6ERjMg1TiYTC2Wp4IntJVGro6a8HG9luYHhhmF4grF0Pltckg== dependencies: chalk "^2.0.1" - diff "^3.2.0" - jest-get-type "^21.2.0" - pretty-format "^21.2.1" + diff-sequences "^24.3.0" + jest-get-type "^24.3.0" + pretty-format "^24.7.0" -jest-docblock@^21.0.0, jest-docblock@^21.2.0: +jest-docblock@^21.0.0: version "21.2.0" resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" -jest-environment-jsdom@^21.2.1: - version "21.2.1" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-21.2.1.tgz#38d9980c8259b2a608ec232deee6289a60d9d5b4" +jest-docblock@^24.3.0: + version "24.3.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.3.0.tgz#b9c32dac70f72e4464520d2ba4aec02ab14db5dd" + integrity sha512-nlANmF9Yq1dufhFlKG9rasfQlrY7wINJbo3q01tu56Jv5eBU5jirylhF2O5ZBnLxzOVBGRDz/9NAwNyBtG4Nyg== dependencies: - jest-mock "^21.2.0" - jest-util "^21.2.1" - jsdom "^9.12.0" + detect-newline "^2.1.0" -jest-environment-node@^21.2.1: - version "21.2.1" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-21.2.1.tgz#98c67df5663c7fbe20f6e792ac2272c740d3b8c8" +jest-each@^24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.7.1.tgz#fcc7dda4147c28430ad9fb6dc7211cd17ab54e74" + integrity sha512-4fsS8fEfLa3lfnI1Jw6NxjhyRTgfpuOVTeUZZFyVYqeTa4hPhr2YkToUhouuLTrL2eMGOfpbdMyRx0GQ/VooKA== dependencies: - jest-mock "^21.2.0" - jest-util "^21.2.1" + "@jest/types" "^24.7.0" + chalk "^2.0.1" + jest-get-type "^24.3.0" + jest-util "^24.7.1" + pretty-format "^24.7.0" -jest-get-type@^21.2.0: - version "21.2.0" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" - -jest-haste-map@^21.2.0: - version "21.2.0" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-21.2.0.tgz#1363f0a8bb4338f24f001806571eff7a4b2ff3d8" +jest-environment-jsdom@^24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.7.1.tgz#a40e004b4458ebeb8a98082df135fd501b9fbbd6" + integrity sha512-Gnhb+RqE2JuQGb3kJsLF8vfqjt3PHKSstq4Xc8ic+ax7QKo4Z0RWGucU3YV+DwKR3T9SYc+3YCUQEJs8r7+Jxg== dependencies: + "@jest/environment" "^24.7.1" + "@jest/fake-timers" "^24.7.1" + "@jest/types" "^24.7.0" + jest-mock "^24.7.0" + jest-util "^24.7.1" + jsdom "^11.5.1" + +jest-environment-node@^24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.7.1.tgz#fa2c047a31522a48038d26ee4f7c8fd9c1ecfe12" + integrity sha512-GJJQt1p9/C6aj6yNZMvovZuxTUd+BEJprETdvTKSb4kHcw4mFj8777USQV0FJoJ4V3djpOwA5eWyPwfq//PFBA== + dependencies: + "@jest/environment" "^24.7.1" + "@jest/fake-timers" "^24.7.1" + "@jest/types" "^24.7.0" + jest-mock "^24.7.0" + jest-util "^24.7.1" + +jest-get-type@^24.3.0: + version "24.3.0" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.3.0.tgz#582cfd1a4f91b5cdad1d43d2932f816d543c65da" + integrity sha512-HYF6pry72YUlVcvUx3sEpMRwXEWGEPlJ0bSPVnB3b3n++j4phUEoSPcS6GC0pPJ9rpyPSe4cb5muFo6D39cXow== + +jest-haste-map@^24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.7.1.tgz#772e215cd84080d4bbcb759cfb668ad649a21471" + integrity sha512-g0tWkzjpHD2qa03mTKhlydbmmYiA2KdcJe762SbfFo/7NIMgBWAA0XqQlApPwkWOF7Cxoi/gUqL0i6DIoLpMBw== + dependencies: + "@jest/types" "^24.7.0" + anymatch "^2.0.0" fb-watchman "^2.0.0" - graceful-fs "^4.1.11" - jest-docblock "^21.2.0" - micromatch "^2.3.11" - sane "^2.0.0" - worker-farm "^1.3.1" + graceful-fs "^4.1.15" + invariant "^2.2.4" + jest-serializer "^24.4.0" + jest-util "^24.7.1" + jest-worker "^24.6.0" + micromatch "^3.1.10" + sane "^4.0.3" + walker "^1.0.7" + optionalDependencies: + fsevents "^1.2.7" -jest-jasmine2@^21.2.1: - version "21.2.1" - resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-21.2.1.tgz#9cc6fc108accfa97efebce10c4308548a4ea7592" +jest-jasmine2@^24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.7.1.tgz#01398686dabe46553716303993f3be62e5d9d818" + integrity sha512-Y/9AOJDV1XS44wNwCaThq4Pw3gBPiOv/s6NcbOAkVRRUEPu+36L2xoPsqQXsDrxoBerqeyslpn2TpCI8Zr6J2w== + dependencies: + "@babel/traverse" "^7.1.0" + "@jest/environment" "^24.7.1" + "@jest/test-result" "^24.7.1" + "@jest/types" "^24.7.0" + chalk "^2.0.1" + co "^4.6.0" + expect "^24.7.1" + is-generator-fn "^2.0.0" + jest-each "^24.7.1" + jest-matcher-utils "^24.7.0" + jest-message-util "^24.7.1" + jest-runtime "^24.7.1" + jest-snapshot "^24.7.1" + jest-util "^24.7.1" + pretty-format "^24.7.0" + throat "^4.0.0" + +jest-leak-detector@^24.7.0: + version "24.7.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.7.0.tgz#323ff93ed69be12e898f5b040952f08a94288ff9" + integrity sha512-zV0qHKZGXtmPVVzT99CVEcHE9XDf+8LwiE0Ob7jjezERiGVljmqKFWpV2IkG+rkFIEUHFEkMiICu7wnoPM/RoQ== + dependencies: + pretty-format "^24.7.0" + +jest-matcher-utils@^24.7.0: + version "24.7.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.7.0.tgz#bbee1ff37bc8b2e4afcaabc91617c1526af4bcd4" + integrity sha512-158ieSgk3LNXeUhbVJYRXyTPSCqNgVXOp/GT7O94mYd3pk/8+odKTyR1JLtNOQSPzNi8NFYVONtvSWA/e1RDXg== dependencies: chalk "^2.0.1" - expect "^21.2.1" - graceful-fs "^4.1.11" - jest-diff "^21.2.1" - jest-matcher-utils "^21.2.1" - jest-message-util "^21.2.1" - jest-snapshot "^21.2.1" - p-cancelable "^0.3.0" + jest-diff "^24.7.0" + jest-get-type "^24.3.0" + pretty-format "^24.7.0" -jest-matcher-utils@^21.2.1: - version "21.2.1" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-21.2.1.tgz#72c826eaba41a093ac2b4565f865eb8475de0f64" +jest-message-util@^24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.7.1.tgz#f1dc3a6c195647096a99d0f1dadbc447ae547018" + integrity sha512-dk0gqVtyqezCHbcbk60CdIf+8UHgD+lmRHifeH3JRcnAqh4nEyPytSc9/L1+cQyxC+ceaeP696N4ATe7L+omcg== dependencies: + "@babel/code-frame" "^7.0.0" + "@jest/test-result" "^24.7.1" + "@jest/types" "^24.7.0" + "@types/stack-utils" "^1.0.1" chalk "^2.0.1" - jest-get-type "^21.2.0" - pretty-format "^21.2.1" + micromatch "^3.1.10" + slash "^2.0.0" + stack-utils "^1.0.1" -jest-message-util@^21.2.1: - version "21.2.1" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-21.2.1.tgz#bfe5d4692c84c827d1dcf41823795558f0a1acbe" +jest-mock@^24.7.0: + version "24.7.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.7.0.tgz#e49ce7262c12d7f5897b0d8af77f6db8e538023b" + integrity sha512-6taW4B4WUcEiT2V9BbOmwyGuwuAFT2G8yghF7nyNW1/2gq5+6aTqSPcS9lS6ArvEkX55vbPAS/Jarx5LSm4Fng== dependencies: - chalk "^2.0.1" - micromatch "^2.3.11" - slash "^1.0.0" + "@jest/types" "^24.7.0" -jest-mock@^21.2.0: - version "21.2.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-21.2.0.tgz#7eb0770e7317968165f61ea2a7281131534b3c0f" - -jest-playback@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/jest-playback/-/jest-playback-1.0.1.tgz#7d66056b4647d5248092e2cb582eefb70381b057" +jest-playback@2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/jest-playback/-/jest-playback-2.0.2.tgz#f5ae8b89676150d70dc857dce3706f5e515fccfa" + integrity sha512-75I2KkP1MaqcOUD5ZUcPRhfBMCEzIzP7Rrx8xVbjativ6GWm04tXXpWatLQuSca5vNkcx7RJkmW/XwMY5ADOTg== dependencies: - glob "^7.1.2" - lodash "^4.17.4" - make-dir "^1.0.0" + json-stable-stringify "^1.0.1" + lodash.kebabcase "^4.1.1" nock "^9.0.13" rev-hash "^2.0.0" -jest-regex-util@^21.2.0: - version "21.2.0" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-21.2.0.tgz#1b1e33e63143babc3e0f2e6c9b5ba1eb34b2d530" +jest-pnp-resolver@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a" + integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ== -jest-resolve-dependencies@^21.2.0: - version "21.2.0" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-21.2.0.tgz#9e231e371e1a736a1ad4e4b9a843bc72bfe03d09" - dependencies: - jest-regex-util "^21.2.0" +jest-regex-util@^24.3.0: + version "24.3.0" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.3.0.tgz#d5a65f60be1ae3e310d5214a0307581995227b36" + integrity sha512-tXQR1NEOyGlfylyEjg1ImtScwMq8Oh3iJbGTjN7p0J23EuVX1MA8rwU69K4sLbCmwzgCUbVkm0FkSF9TdzOhtg== -jest-resolve@^21.2.0: - version "21.2.0" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-21.2.0.tgz#068913ad2ba6a20218e5fd32471f3874005de3a6" +jest-resolve-dependencies@^24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.7.1.tgz#cf93bbef26999488a96a2b2012f9fe7375aa378f" + integrity sha512-2Eyh5LJB2liNzfk4eo7bD1ZyBbqEJIyyrFtZG555cSWW9xVHxII2NuOkSl1yUYTAYCAmM2f2aIT5A7HzNmubyg== dependencies: - browser-resolve "^1.11.2" + "@jest/types" "^24.7.0" + jest-regex-util "^24.3.0" + jest-snapshot "^24.7.1" + +jest-resolve@^24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.7.1.tgz#e4150198299298380a75a9fd55043fa3b9b17fde" + integrity sha512-Bgrc+/UUZpGJ4323sQyj85hV9d+ANyPNu6XfRDUcyFNX1QrZpSoM0kE4Mb2vZMAYTJZsBFzYe8X1UaOkOELSbw== + dependencies: + "@jest/types" "^24.7.0" + browser-resolve "^1.11.3" chalk "^2.0.1" - is-builtin-module "^1.0.0" + jest-pnp-resolver "^1.2.1" + realpath-native "^1.1.0" -jest-runner@^21.2.1: - version "21.2.1" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-21.2.1.tgz#194732e3e518bfb3d7cbfc0fd5871246c7e1a467" +jest-runner@^24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.7.1.tgz#41c8a02a06aa23ea82d8bffd69d7fa98d32f85bf" + integrity sha512-aNFc9liWU/xt+G9pobdKZ4qTeG/wnJrJna3VqunziDNsWT3EBpmxXZRBMKCsNMyfy+A/XHiV+tsMLufdsNdgCw== dependencies: - jest-config "^21.2.1" - jest-docblock "^21.2.0" - jest-haste-map "^21.2.0" - jest-jasmine2 "^21.2.1" - jest-message-util "^21.2.1" - jest-runtime "^21.2.1" - jest-util "^21.2.1" - pify "^3.0.0" + "@jest/console" "^24.7.1" + "@jest/environment" "^24.7.1" + "@jest/test-result" "^24.7.1" + "@jest/types" "^24.7.0" + chalk "^2.4.2" + exit "^0.1.2" + graceful-fs "^4.1.15" + jest-config "^24.7.1" + jest-docblock "^24.3.0" + jest-haste-map "^24.7.1" + jest-jasmine2 "^24.7.1" + jest-leak-detector "^24.7.0" + jest-message-util "^24.7.1" + jest-resolve "^24.7.1" + jest-runtime "^24.7.1" + jest-util "^24.7.1" + jest-worker "^24.6.0" + source-map-support "^0.5.6" throat "^4.0.0" - worker-farm "^1.3.1" -jest-runtime@^21.2.1: - version "21.2.1" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-21.2.1.tgz#99dce15309c670442eee2ebe1ff53a3cbdbbb73e" +jest-runtime@^24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.7.1.tgz#2ffd70b22dd03a5988c0ab9465c85cdf5d25c597" + integrity sha512-0VAbyBy7tll3R+82IPJpf6QZkokzXPIS71aDeqh+WzPRXRCNz6StQ45otFariPdJ4FmXpDiArdhZrzNAC3sj6A== dependencies: - babel-core "^6.0.0" - babel-jest "^21.2.0" - babel-plugin-istanbul "^4.0.0" + "@jest/console" "^24.7.1" + "@jest/environment" "^24.7.1" + "@jest/source-map" "^24.3.0" + "@jest/transform" "^24.7.1" + "@jest/types" "^24.7.0" + "@types/yargs" "^12.0.2" chalk "^2.0.1" - convert-source-map "^1.4.0" - graceful-fs "^4.1.11" - jest-config "^21.2.1" - jest-haste-map "^21.2.0" - jest-regex-util "^21.2.0" - jest-resolve "^21.2.0" - jest-util "^21.2.1" - json-stable-stringify "^1.0.1" - micromatch "^2.3.11" - slash "^1.0.0" - strip-bom "3.0.0" - write-file-atomic "^2.1.0" - yargs "^9.0.0" + exit "^0.1.2" + glob "^7.1.3" + graceful-fs "^4.1.15" + jest-config "^24.7.1" + jest-haste-map "^24.7.1" + jest-message-util "^24.7.1" + jest-mock "^24.7.0" + jest-regex-util "^24.3.0" + jest-resolve "^24.7.1" + jest-snapshot "^24.7.1" + jest-util "^24.7.1" + jest-validate "^24.7.0" + realpath-native "^1.1.0" + slash "^2.0.0" + strip-bom "^3.0.0" + yargs "^12.0.2" -jest-snapshot@^21.2.1: - version "21.2.1" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-21.2.1.tgz#29e49f16202416e47343e757e5eff948c07fd7b0" +jest-serializer@^24.4.0: + version "24.4.0" + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.4.0.tgz#f70c5918c8ea9235ccb1276d232e459080588db3" + integrity sha512-k//0DtglVstc1fv+GY/VHDIjrtNjdYvYjMlbLUed4kxrE92sIUewOi5Hj3vrpB8CXfkJntRPDRjCrCvUhBdL8Q== + +jest-snapshot@^24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.7.1.tgz#bd5a35f74aedff070975e9e9c90024f082099568" + integrity sha512-8Xk5O4p+JsZZn4RCNUS3pxA+ORKpEKepE+a5ejIKrId9CwrVN0NY+vkqEkXqlstA5NMBkNahXkR/4qEBy0t5yA== dependencies: + "@babel/types" "^7.0.0" + "@jest/types" "^24.7.0" chalk "^2.0.1" - jest-diff "^21.2.1" - jest-matcher-utils "^21.2.1" + expect "^24.7.1" + jest-diff "^24.7.0" + jest-matcher-utils "^24.7.0" + jest-message-util "^24.7.1" + jest-resolve "^24.7.1" mkdirp "^0.5.1" natural-compare "^1.4.0" - pretty-format "^21.2.1" + pretty-format "^24.7.0" + semver "^5.5.0" -jest-util@^21.2.1: - version "21.2.1" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-21.2.1.tgz#a274b2f726b0897494d694a6c3d6a61ab819bb78" +jest-util@^24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.7.1.tgz#b4043df57b32a23be27c75a2763d8faf242038ff" + integrity sha512-/KilOue2n2rZ5AnEBYoxOXkeTu6vi7cjgQ8MXEkih0oeAXT6JkS3fr7/j8+engCjciOU1Nq5loMSKe0A1oeX0A== dependencies: - callsites "^2.0.0" + "@jest/console" "^24.7.1" + "@jest/fake-timers" "^24.7.1" + "@jest/source-map" "^24.3.0" + "@jest/test-result" "^24.7.1" + "@jest/types" "^24.7.0" + callsites "^3.0.0" chalk "^2.0.1" - graceful-fs "^4.1.11" - jest-message-util "^21.2.1" - jest-mock "^21.2.0" - jest-validate "^21.2.1" + graceful-fs "^4.1.15" + is-ci "^2.0.0" mkdirp "^0.5.1" + slash "^2.0.0" + source-map "^0.6.0" -jest-validate@^21.2.1: - version "21.2.1" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7" +jest-validate@^24.7.0: + version "24.7.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.7.0.tgz#70007076f338528ee1b1c8a8258b1b0bb982508d" + integrity sha512-cgai/gts9B2chz1rqVdmLhzYxQbgQurh1PEQSvSgPZ8KGa1AqXsqC45W5wKEwzxKrWqypuQrQxnF4+G9VejJJA== dependencies: + "@jest/types" "^24.7.0" + camelcase "^5.0.0" chalk "^2.0.1" - jest-get-type "^21.2.0" + jest-get-type "^24.3.0" leven "^2.1.0" - pretty-format "^21.2.1" + pretty-format "^24.7.0" -jest@21.2.1: - version "21.2.1" - resolved "https://registry.yarnpkg.com/jest/-/jest-21.2.1.tgz#c964e0b47383768a1438e3ccf3c3d470327604e1" +jest-watcher@^24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.7.1.tgz#e161363d7f3f4e1ef3d389b7b3a0aad247b673f5" + integrity sha512-Wd6TepHLRHVKLNPacEsBwlp9raeBIO+01xrN24Dek4ggTS8HHnOzYSFnvp+6MtkkJ3KfMzy220KTi95e2rRkrw== dependencies: - jest-cli "^21.2.1" + "@jest/test-result" "^24.7.1" + "@jest/types" "^24.7.0" + "@types/yargs" "^12.0.9" + ansi-escapes "^3.0.0" + chalk "^2.0.1" + jest-util "^24.7.1" + string-length "^2.0.0" -"js-tokens@^3.0.0 || ^4.0.0": +jest-worker@^24.6.0: + version "24.6.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.6.0.tgz#7f81ceae34b7cde0c9827a6980c35b7cdc0161b3" + integrity sha512-jDwgW5W9qGNvpI1tNnvajh0a5IE/PuGLFmHk6aR/BZFz8tSgGw17GsDPXAJ6p91IvYDjOw8GpFbvvZGAK+DPQQ== + dependencies: + merge-stream "^1.0.1" + supports-color "^6.1.0" + +jest@24.7.1: + version "24.7.1" + resolved "https://registry.yarnpkg.com/jest/-/jest-24.7.1.tgz#0d94331cf510c75893ee32f87d7321d5bf8f2501" + integrity sha512-AbvRar5r++izmqo5gdbAjTeA6uNRGoNRuj5vHB0OnDXo2DXWZJVuaObiGgtlvhKb+cWy2oYbQSfxv7Q7GjnAtA== + dependencies: + import-local "^2.0.0" + jest-cli "^24.7.1" + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" @@ -1855,9 +2136,10 @@ js-tokens@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" -js-yaml@^3.7.0: - version "3.12.2" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.2.tgz#ef1d067c5a9d9cb65bd72f285b5d8105c77f14fc" +js-yaml@^3.12.0, js-yaml@^3.13.0: + version "3.13.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" + integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== dependencies: argparse "^1.0.7" esprima "^4.0.0" @@ -1866,33 +2148,47 @@ jsbn@~0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" -jsdom@^9.12.0: - version "9.12.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" +jsdom@^11.5.1: + version "11.12.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8" + integrity sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw== dependencies: - abab "^1.0.3" - acorn "^4.0.4" - acorn-globals "^3.1.0" + abab "^2.0.0" + acorn "^5.5.3" + acorn-globals "^4.1.0" array-equal "^1.0.0" - content-type-parser "^1.0.1" cssom ">= 0.3.2 < 0.4.0" - cssstyle ">= 0.2.37 < 0.3.0" - escodegen "^1.6.1" - html-encoding-sniffer "^1.0.1" - nwmatcher ">= 1.3.9 < 2.0.0" - parse5 "^1.5.1" - request "^2.79.0" - sax "^1.2.1" - symbol-tree "^3.2.1" - tough-cookie "^2.3.2" - webidl-conversions "^4.0.0" - whatwg-encoding "^1.0.1" - whatwg-url "^4.3.0" - xml-name-validator "^2.0.1" + cssstyle "^1.0.0" + data-urls "^1.0.0" + domexception "^1.0.1" + escodegen "^1.9.1" + html-encoding-sniffer "^1.0.2" + left-pad "^1.3.0" + nwsapi "^2.0.7" + parse5 "4.0.0" + pn "^1.1.0" + request "^2.87.0" + request-promise-native "^1.0.5" + sax "^1.2.4" + symbol-tree "^3.2.2" + tough-cookie "^2.3.4" + w3c-hr-time "^1.0.1" + webidl-conversions "^4.0.2" + whatwg-encoding "^1.0.3" + whatwg-mimetype "^2.1.0" + whatwg-url "^6.4.1" + ws "^5.2.0" + xml-name-validator "^3.0.0" -jsesc@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== json-schema-traverse@^0.4.1: version "0.4.1" @@ -1912,15 +2208,12 @@ json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" -json5@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" - -jsonfile@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" - optionalDependencies: - graceful-fs "^4.1.6" +json5@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" + integrity sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ== + dependencies: + minimist "^1.2.0" jsonify@~0.0.0: version "0.0.0" @@ -1955,11 +2248,22 @@ kind-of@^6.0.0, kind-of@^6.0.2: version "6.0.2" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" -lcid@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" +kleur@^3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + +lcid@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" + integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== dependencies: - invert-kv "^1.0.0" + invert-kv "^2.0.0" + +left-pad@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" + integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA== leven@^2.1.0: version "2.1.0" @@ -1976,30 +2280,22 @@ lines-and-columns@^1.1.6: version "1.1.6" resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" -load-json-file@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" +load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= dependencies: graceful-fs "^4.1.2" - parse-json "^2.2.0" - pify "^2.0.0" - pinkie-promise "^2.0.0" - strip-bom "^2.0.0" - -load-json-file@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" - dependencies: - graceful-fs "^4.1.2" - parse-json "^2.2.0" - pify "^2.0.0" + parse-json "^4.0.0" + pify "^3.0.0" strip-bom "^3.0.0" -locate-path@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== dependencies: - p-locate "^2.0.0" + p-locate "^3.0.0" path-exists "^3.0.0" lodash.assignin@^4.0.9: @@ -2010,10 +2306,6 @@ lodash.bind@^4.1.4: version "4.2.1" resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" -lodash.camelcase@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" - lodash.defaults@^4.0.1: version "4.2.0" resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" @@ -2033,6 +2325,7 @@ lodash.foreach@^4.3.0: lodash.kebabcase@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" + integrity sha1-hImxyw0p/4gZXM7KRI/21swpXDY= lodash.map@^4.4.0: version "4.6.0" @@ -2054,19 +2347,16 @@ lodash.reject@^4.4.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" -lodash.snakecase@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" - lodash.some@^4.4.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" -lodash.upperfirst@^4.3.1: - version "4.3.1" - resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" +lodash.sortby@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" + integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= -lodash@^4.17.11, lodash@^4.17.4, lodash@^4.17.5: +lodash@^4.17.11, lodash@^4.17.5: version "4.17.11" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" @@ -2076,29 +2366,26 @@ loose-envify@^1.0.0: dependencies: js-tokens "^3.0.0 || ^4.0.0" -lru-cache@^4.0.1: - version "4.1.5" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" - dependencies: - pseudomap "^1.0.2" - yallist "^2.1.2" - -make-dir@^1.0.0: +make-dir@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" + integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== dependencies: pify "^3.0.0" -make-error@^1.1.1: - version "1.3.5" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.5.tgz#efe4e81f6db28cadd605c70f29c831b58ef776c8" - makeerror@1.0.x: version "1.0.11" resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" dependencies: tmpl "1.0.x" +map-age-cleaner@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" + integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== + dependencies: + p-defer "^1.0.0" + map-cache@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" @@ -2109,37 +2396,21 @@ map-visit@^1.0.0: dependencies: object-visit "^1.0.0" -math-random@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c" - -mem@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" +mem@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" + integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w== dependencies: - mimic-fn "^1.0.0" + map-age-cleaner "^0.1.1" + mimic-fn "^2.0.0" + p-is-promise "^2.0.0" -merge@^1.2.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145" - -micromatch@^2.1.5, micromatch@^2.3.11: - version "2.3.11" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" +merge-stream@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" + integrity sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE= dependencies: - arr-diff "^2.0.0" - array-unique "^0.2.1" - braces "^1.8.2" - expand-brackets "^0.1.4" - extglob "^0.3.1" - filename-regex "^2.0.0" - is-extglob "^1.0.0" - is-glob "^2.0.1" - kind-of "^3.0.2" - normalize-path "^2.0.1" - object.omit "^2.0.0" - parse-glob "^3.0.4" - regex-cache "^0.4.2" + readable-stream "^2.0.1" micromatch@^3.1.10, micromatch@^3.1.4: version "3.1.10" @@ -2169,11 +2440,12 @@ mime-types@^2.1.12, mime-types@~2.1.19: dependencies: mime-db "~1.38.0" -mimic-fn@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" +mimic-fn@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== -minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: +minimatch@^3.0.3, minimatch@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" dependencies: @@ -2183,7 +2455,7 @@ minimist@0.0.8: version "0.0.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" -minimist@^1.1.0, minimist@^1.1.1, minimist@^1.2.0: +minimist@^1.1.1, minimist@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" @@ -2261,6 +2533,11 @@ neo-async@^2.6.0: version "2.6.0" resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.0.tgz#b9d15e4d71c6762908654b5183ed38b753340835" +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + nock@^9.0.13: version "9.6.1" resolved "https://registry.yarnpkg.com/nock/-/nock-9.6.1.tgz#d96e099be9bc1d0189a77f4490bbbb265c381b49" @@ -2279,9 +2556,15 @@ node-int64@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" -node-notifier@^5.0.2: +node-modules-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" + integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= + +node-notifier@^5.2.1: version "5.4.0" resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.0.tgz#7b455fdce9f7de0c63538297354f3db468426e6a" + integrity sha512-SUDEb+o71XR5lXSTyivXd9J7fCloE3SyP4lSgt3lU2oSANiox+SxlNRGPjDKrwU1YN3ix2KN/VGGCg0t01rttQ== dependencies: growly "^1.3.0" is-wsl "^1.1.0" @@ -2320,7 +2603,7 @@ normalize-package-data@^2.3.2: semver "2 || 3 || 4 || 5" validate-npm-package-license "^3.0.1" -normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1: +normalize-path@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" dependencies: @@ -2362,9 +2645,10 @@ number-is-nan@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" -"nwmatcher@>= 1.3.9 < 2.0.0": - version "1.4.4" - resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.4.tgz#2285631f34a95f0d0395cd900c96ed39b58f346e" +nwsapi@^2.0.7: + version "2.1.3" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.1.3.tgz#25f3a5cec26c654f7376df6659cdf84b99df9558" + integrity sha512-RowAaJGEgYXEZfQ7tvvdtAQUKPyTR6T6wNu0fwlNsGQYr/h3yQc6oI8WnVZh3Y/Sylwc+dtAlvPqfFZjhTyk3A== oauth-sign@~0.9.0: version "0.9.0" @@ -2382,18 +2666,24 @@ object-copy@^0.1.0: define-property "^0.2.5" kind-of "^3.0.3" +object-keys@^1.0.12: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + object-visit@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" dependencies: isobject "^3.0.0" -object.omit@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" +object.getownpropertydescriptors@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" + integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= dependencies: - for-own "^0.1.4" - is-extendable "^0.1.1" + define-properties "^1.1.2" + es-abstract "^1.5.1" object.pick@^1.3.0: version "1.3.0" @@ -2401,7 +2691,7 @@ object.pick@^1.3.0: dependencies: isobject "^3.0.1" -once@^1.3.0, once@^1.4.0: +once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" dependencies: @@ -2429,15 +2719,16 @@ os-homedir@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" -os-locale@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" +os-locale@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" + integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== dependencies: - execa "^0.7.0" - lcid "^1.0.0" - mem "^1.1.0" + execa "^1.0.0" + lcid "^2.0.0" + mem "^4.0.0" -os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: +os-tmpdir@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" @@ -2448,92 +2739,90 @@ osenv@^0.1.4: os-homedir "^1.0.0" os-tmpdir "^1.0.0" -p-cancelable@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" +p-defer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" + integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= + +p-each-series@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-1.0.0.tgz#930f3d12dd1f50e7434457a22cd6f04ac6ad7f71" + integrity sha1-kw89Et0fUOdDRFeiLNbwSsatf3E= + dependencies: + p-reduce "^1.0.0" p-finally@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" -p-limit@^1.1.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" - dependencies: - p-try "^1.0.0" +p-is-promise@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" + integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== -p-locate@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" - dependencies: - p-limit "^1.1.0" - -p-try@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" - -parse-glob@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" - dependencies: - glob-base "^0.3.0" - is-dotfile "^1.0.0" - is-extglob "^1.0.0" - is-glob "^2.0.0" - -parse-json@^2.2.0: +p-limit@^2.0.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" + integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ== dependencies: - error-ex "^1.2.0" + p-try "^2.0.0" -parse-passwd@^1.0.0: +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + +p-reduce@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" + resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa" + integrity sha1-GMKw3ZNqRpClKfgjH1ig/bakffo= -parse5@^1.5.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +parse5@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" + integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA== pascalcase@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" -path-exists@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" - dependencies: - pinkie-promise "^2.0.0" - path-exists@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" -path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: +path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" -path-key@^2.0.0: +path-key@^2.0.0, path-key@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" -path-parse@^1.0.5, path-parse@^1.0.6: +path-parse@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" -path-type@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" +path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== dependencies: - graceful-fs "^4.1.2" - pify "^2.0.0" - pinkie-promise "^2.0.0" - -path-type@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" - dependencies: - pify "^2.0.0" + pify "^3.0.0" pathval@^1.1.0: version "1.1.0" @@ -2543,29 +2832,28 @@ performance-now@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" -pify@^2.0.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" - pify@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" -pinkie-promise@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" +pirates@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" + integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== dependencies: - pinkie "^2.0.0" + node-modules-regexp "^1.0.0" -pinkie@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" - -pkg-dir@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" +pkg-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== dependencies: - find-up "^2.1.0" + find-up "^3.0.0" + +pn@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" + integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== posix-character-classes@^0.1.0: version "0.1.1" @@ -2575,49 +2863,49 @@ prelude-ls@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" -preserve@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" +prettier@1.16.4: + version "1.16.4" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.4.tgz#73e37e73e018ad2db9c76742e2647e21790c9717" + integrity sha512-ZzWuos7TI5CKUeQAtFd6Zhm2s6EpAD/ZLApIhsF9pRvRtM1RFo61dM/4MSRUA0SuLugA/zgrZD8m0BaY46Og7g== -prettier-config-ikatyang@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/prettier-config-ikatyang/-/prettier-config-ikatyang-1.1.1.tgz#9ccab4bc2d441e4c68b58dbe8f1a4e18213c3f2d" - -prettier@1.14.3: - version "1.14.3" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.14.3.tgz#90238dd4c0684b7edce5f83b0fb7328e48bd0895" - -pretty-format@^21.2.1: - version "21.2.1" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.2.1.tgz#ae5407f3cf21066cd011aa1ba5fce7b6a2eddb36" +pretty-format@^24.7.0: + version "24.7.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.7.0.tgz#d23106bc2edcd776079c2daa5da02bcb12ed0c10" + integrity sha512-apen5cjf/U4dj7tHetpC7UEFCvtAgnNZnBDkfPv3fokzIqyOJckAG9OlAPC1BlFALnqT/lGB2tl9EJjlK6eCsA== dependencies: - ansi-regex "^3.0.0" + "@jest/types" "^24.7.0" + ansi-regex "^4.0.0" ansi-styles "^3.2.0" - -private@^0.1.8: - version "0.1.8" - resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" + react-is "^16.8.4" process-nextick-args@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" +prompts@^2.0.1: + version "2.0.4" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.0.4.tgz#179f9d4db3128b9933aa35f93a800d8fce76a682" + integrity sha512-HTzM3UWp/99A0gk51gAegwo1QRYA7xjcZufMNe33rCclFszUYAuHe1fIN/3ZmiHeGPkUsNaRyQm1hHOfM0PKxA== + dependencies: + kleur "^3.0.2" + sisteransi "^1.0.0" + propagate@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/propagate/-/propagate-1.0.0.tgz#00c2daeedda20e87e3782b344adba1cddd6ad709" -prr@~1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" - -pseudomap@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" - psl@^1.1.24, psl@^1.1.28: version "1.1.31" resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.31.tgz#e9aa86d0101b5b105cbe93ac6b784cd547276184" +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + punycode@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" @@ -2634,14 +2922,6 @@ qs@~6.5.2: version "6.5.2" resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" -randomatic@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed" - dependencies: - is-number "^4.0.0" - kind-of "^6.0.0" - math-random "^1.0.1" - rc@^1.2.7: version "1.2.8" resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" @@ -2651,37 +2931,29 @@ rc@^1.2.7: minimist "^1.2.0" strip-json-comments "~2.0.1" -read-pkg-up@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" - dependencies: - find-up "^1.0.0" - read-pkg "^1.0.0" +react-is@^16.8.4: + version "16.8.6" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16" + integrity sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA== -read-pkg-up@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" +read-pkg-up@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978" + integrity sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA== dependencies: - find-up "^2.0.0" - read-pkg "^2.0.0" + find-up "^3.0.0" + read-pkg "^3.0.0" -read-pkg@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" +read-pkg@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" + integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= dependencies: - load-json-file "^1.0.0" + load-json-file "^4.0.0" normalize-package-data "^2.3.2" - path-type "^1.0.0" + path-type "^3.0.0" -read-pkg@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" - dependencies: - load-json-file "^2.0.0" - normalize-package-data "^2.3.2" - path-type "^2.0.0" - -readable-stream@^2.0.2, readable-stream@^2.0.6: +readable-stream@^2.0.1, readable-stream@^2.0.6: version "2.3.6" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" dependencies: @@ -2701,23 +2973,12 @@ readable-stream@^3.1.1: string_decoder "^1.1.1" util-deprecate "^1.0.1" -readdirp@^2.0.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" +realpath-native@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c" + integrity sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA== dependencies: - graceful-fs "^4.1.11" - micromatch "^3.1.10" - readable-stream "^2.0.2" - -regenerator-runtime@^0.11.0: - version "0.11.1" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" - -regex-cache@^0.4.2: - version "0.4.4" - resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" - dependencies: - is-equal-shallow "^0.1.3" + util.promisify "^1.0.0" regex-not@^1.0.0, regex-not@^1.0.2: version "1.0.2" @@ -2734,19 +2995,30 @@ repeat-element@^1.1.2: version "1.1.3" resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" -repeat-string@^1.5.2, repeat-string@^1.6.1: +repeat-string@^1.6.1: version "1.6.1" resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" -repeating@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" +request-promise-core@1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.2.tgz#339f6aababcafdb31c799ff158700336301d3346" + integrity sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag== dependencies: - is-finite "^1.0.0" + lodash "^4.17.11" -request@^2.79.0, request@^2.82.0: +request-promise-native@^1.0.5: + version "1.0.7" + resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.7.tgz#a49868a624bdea5069f1251d0a836e0d89aa2c59" + integrity sha512-rIMnbBdgNViL37nZ1b3L/VfPOpSi0TqVDQPAvO6U14lMzOLrt5nilxCQqtDKhZeDiW0/hkCXGoQjhgJd/tCh6w== + dependencies: + request-promise-core "1.1.2" + stealthy-require "^1.1.1" + tough-cookie "^2.3.3" + +request@^2.87.0, request@^2.88.0: version "2.88.0" resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" + integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== dependencies: aws-sign2 "~0.7.0" aws4 "^1.8.0" @@ -2777,6 +3049,18 @@ require-main-filename@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" +resolve-cwd@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" + integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= + dependencies: + resolve-from "^3.0.0" + +resolve-from@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" + integrity sha1-six699nWiBvItuZTM17rywoYh0g= + resolve-url@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" @@ -2785,7 +3069,7 @@ resolve@1.1.7: version "1.1.7" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" -resolve@^1.1.7, resolve@^1.10.0, resolve@^1.3.2: +resolve@^1.10.0, resolve@^1.3.2: version "1.10.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba" dependencies: @@ -2799,15 +3083,17 @@ rev-hash@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/rev-hash/-/rev-hash-2.0.0.tgz#7720a236ed0c258df3e64bec03ec048b05b924c4" -rimraf@^2.6.1: +rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2: version "2.6.3" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== dependencies: glob "^7.1.3" -rsvp@^3.3.3: - version "3.6.2" - resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a" +rsvp@^4.8.4: + version "4.8.4" + resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.4.tgz#b50e6b34583f3dd89329a2f23a8a2be072845911" + integrity sha512-6FomvYPfs+Jy9TfXmBpBuMWNH94SgCsZmJKcanySzgNNP6LjWxBvyLTa9KaMfDDM5oxRfrKDB0r/qeRsLwnBfA== safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" @@ -2823,22 +3109,22 @@ safe-regex@^1.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" -sane@^2.0.0: - version "2.5.2" - resolved "https://registry.yarnpkg.com/sane/-/sane-2.5.2.tgz#b4dc1861c21b427e929507a3e751e2a2cb8ab3fa" +sane@^4.0.3: + version "4.1.0" + resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" + integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== dependencies: + "@cnakazawa/watch" "^1.0.3" anymatch "^2.0.0" - capture-exit "^1.2.0" - exec-sh "^0.2.0" + capture-exit "^2.0.0" + exec-sh "^0.3.2" + execa "^1.0.0" fb-watchman "^2.0.0" micromatch "^3.1.4" minimist "^1.1.1" walker "~1.0.5" - watch "~0.18.0" - optionalDependencies: - fsevents "^1.2.3" -sax@^1.2.1, sax@^1.2.4: +sax@^1.2.4: version "1.2.4" resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" @@ -2846,6 +3132,11 @@ sax@^1.2.1, sax@^1.2.4: version "5.6.0" resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" +semver@^5.4.1: + version "5.7.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" + integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== + set-blocking@^2.0.0, set-blocking@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" @@ -2878,15 +3169,6 @@ shebang-regex@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" -shell-quote@^1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" - dependencies: - array-filter "~0.0.0" - array-map "~0.0.0" - array-reduce "~0.0.0" - jsonify "~0.0.0" - shellwords@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" @@ -2895,9 +3177,15 @@ signal-exit@^3.0.0, signal-exit@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" -slash@^1.0.0: +sisteransi@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.0.tgz#77d9622ff909080f1c19e5f4a1df0c1b0a27b88c" + integrity sha512-N+z4pHB4AmUv0SjveWRd6q1Nj5w62m5jodv+GD8lvmbY/83T/rpbJGZOnK5T149OldDj4Db07BSv9xY4K6NTPQ== + +slash@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" + integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== snapdragon-node@^2.0.1: version "2.1.1" @@ -2936,15 +3224,10 @@ source-map-resolve@^0.5.0: source-map-url "^0.4.0" urix "^0.1.0" -source-map-support@^0.4.15: - version "0.4.18" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" - dependencies: - source-map "^0.5.6" - -source-map-support@^0.5.0: - version "0.5.11" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.11.tgz#efac2ce0800355d026326a0ca23e162aeac9a4e2" +source-map-support@^0.5.6: + version "0.5.12" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.12.tgz#b4f3b10d51857a5af0138d3ce8003b201613d599" + integrity sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ== dependencies: buffer-from "^1.0.0" source-map "^0.6.0" @@ -2953,7 +3236,7 @@ source-map-url@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" -source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7: +source-map@^0.5.0, source-map@^0.5.6: version "0.5.7" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" @@ -3007,6 +3290,11 @@ sshpk@^1.7.0: safer-buffer "^2.0.2" tweetnacl "~0.14.0" +stack-utils@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8" + integrity sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA== + static-extend@^0.1.1: version "0.1.2" resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" @@ -3014,6 +3302,11 @@ static-extend@^0.1.1: define-property "^0.2.5" object-copy "^0.1.0" +stealthy-require@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" + integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= + string-length@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" @@ -3060,49 +3353,46 @@ strip-ansi@^4.0.0: dependencies: ansi-regex "^3.0.0" -strip-bom@3.0.0, strip-bom@^3.0.0: +strip-ansi@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + +strip-bom@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" -strip-bom@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" - dependencies: - is-utf8 "^0.2.0" - strip-eof@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" -strip-json-comments@^2.0.0, strip-json-comments@~2.0.1: +strip-json-comments@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" -subarg@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz#f62cf17581e996b48fc965699f54c06ae268b8d2" - dependencies: - minimist "^1.1.0" - supports-color@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" -supports-color@^3.1.2: - version "3.2.3" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" - dependencies: - has-flag "^1.0.0" - supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" dependencies: has-flag "^3.0.0" -symbol-tree@^3.2.1: +supports-color@^6.0.0, supports-color@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" + integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== + dependencies: + has-flag "^3.0.0" + +symbol-tree@^3.2.2: version "3.2.2" resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" + integrity sha1-rifbOPZgp64uHDt9G8KQgZuFGeY= tar@^4: version "4.4.8" @@ -3116,14 +3406,14 @@ tar@^4: safe-buffer "^5.1.2" yallist "^3.0.2" -test-exclude@^4.2.1: - version "4.2.3" - resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.3.tgz#a9a5e64474e4398339245a0a769ad7c2f4a97c20" +test-exclude@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.1.0.tgz#6ba6b25179d2d38724824661323b73e03c0c1de1" + integrity sha512-gwf0S2fFsANC55fSeSqpb8BYk6w3FDvwZxfNjeF6FRgvFa43r+7wRiA/Q0IxoRU37wB/LE8IQ4221BsNucTaCA== dependencies: arrify "^1.0.1" - micromatch "^2.3.11" - object-assign "^4.1.0" - read-pkg-up "^1.0.1" + minimatch "^3.0.4" + read-pkg-up "^4.0.0" require-main-filename "^1.0.1" throat@^4.0.0: @@ -3134,9 +3424,10 @@ tmpl@1.0.x: version "1.0.4" resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" -to-fast-properties@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= to-object-path@^0.3.0: version "0.3.0" @@ -3160,9 +3451,10 @@ to-regex@^3.0.1, to-regex@^3.0.2: regex-not "^1.0.2" safe-regex "^1.1.0" -tough-cookie@^2.3.2: +tough-cookie@^2.3.3, tough-cookie@^2.3.4: version "2.5.0" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== dependencies: psl "^1.1.28" punycode "^2.1.1" @@ -3174,95 +3466,21 @@ tough-cookie@~2.4.3: psl "^1.1.24" punycode "^1.4.1" -tr46@~0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" +tr46@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" + integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= + dependencies: + punycode "^2.1.0" trim-right@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" -ts-jest@21.2.4: - version "21.2.4" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-21.2.4.tgz#8fbcfbfbf0c58cced10dcc34a5190acc8c5312ef" - dependencies: - babel-core "^6.24.1" - babel-plugin-istanbul "^4.1.4" - babel-plugin-transform-es2015-modules-commonjs "^6.24.1" - babel-preset-jest "^21.2.0" - cpx "^1.5.0" - fs-extra "^4.0.2" - jest-config "^21.2.1" - pkg-dir "^2.0.0" - source-map-support "^0.5.0" - yargs "^10.0.3" - -ts-node@4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-4.1.0.tgz#36d9529c7b90bb993306c408cd07f7743de20712" - dependencies: - arrify "^1.0.0" - chalk "^2.3.0" - diff "^3.1.0" - make-error "^1.1.1" - minimist "^1.2.0" - mkdirp "^0.5.1" - source-map-support "^0.5.0" - tsconfig "^7.0.0" - v8flags "^3.0.0" - yn "^2.0.0" - -tsconfig@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/tsconfig/-/tsconfig-7.0.0.tgz#84538875a4dc216e5c4a5432b3a4dec3d54e91b7" - dependencies: - "@types/strip-bom" "^3.0.0" - "@types/strip-json-comments" "0.0.30" - strip-bom "^3.0.0" - strip-json-comments "^2.0.0" - -tslib@^1.0.0, tslib@^1.7.1, tslib@^1.8.0, tslib@^1.8.1: +tslib@^1.7.1, tslib@^1.8.0, tslib@^1.8.1: version "1.9.3" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" -tslint-config-ikatyang@2.5.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/tslint-config-ikatyang/-/tslint-config-ikatyang-2.5.1.tgz#d99a5479e5386f639b9a07e50a33588bc5c64070" - dependencies: - tslint-consistent-codestyle "~1.8.0" - tslint-eslint-rules "~4.1.0" - tslint-plugin-ikatyang "~1.1.1" - -tslint-config-prettier@1.18.0: - version "1.18.0" - resolved "https://registry.yarnpkg.com/tslint-config-prettier/-/tslint-config-prettier-1.18.0.tgz#75f140bde947d35d8f0d238e0ebf809d64592c37" - -tslint-consistent-codestyle@~1.8.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/tslint-consistent-codestyle/-/tslint-consistent-codestyle-1.8.0.tgz#ede0b5ec6777f8ff4426d9838bc9bf18e8174480" - dependencies: - tslib "^1.7.1" - tsutils "^2.12.0" - -tslint-eslint-rules@~4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/tslint-eslint-rules/-/tslint-eslint-rules-4.1.1.tgz#7c30e7882f26bc276bff91d2384975c69daf88ba" - dependencies: - doctrine "^0.7.2" - tslib "^1.0.0" - tsutils "^1.4.0" - -tslint-plugin-ikatyang@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/tslint-plugin-ikatyang/-/tslint-plugin-ikatyang-1.1.1.tgz#a7815bba6267b7f820fd52aa6baec5041ac721f5" - dependencies: - lodash.camelcase "^4.3.0" - lodash.kebabcase "^4.1.1" - lodash.snakecase "^4.1.1" - lodash.upperfirst "^4.3.1" - tslib "^1.7.1" - tsutils "^2.8.0" - tslint-plugin-prettier@2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/tslint-plugin-prettier/-/tslint-plugin-prettier-2.0.1.tgz#95b6a3b766622ffc44375825d7760225c50c3680" @@ -3271,9 +3489,10 @@ tslint-plugin-prettier@2.0.1: lines-and-columns "^1.1.6" tslib "^1.7.1" -tslint@5.14.0: - version "5.14.0" - resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.14.0.tgz#be62637135ac244fc9b37ed6ea5252c9eba1616e" +tslint@5.15.0: + version "5.15.0" + resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.15.0.tgz#6ffb180986d63afa1e531feb2a134dbf961e27d3" + integrity sha512-6bIEujKR21/3nyeoX2uBnE8s+tMXCQXhqMmaIPJpHmXJoBJPTLcI7/VHRtUwMhnLVdwLqqY3zmd8Dxqa5CVdJA== dependencies: babel-code-frame "^6.22.0" builtin-modules "^1.1.1" @@ -3281,7 +3500,7 @@ tslint@5.14.0: commander "^2.12.1" diff "^3.2.0" glob "^7.1.1" - js-yaml "^3.7.0" + js-yaml "^3.13.0" minimatch "^3.0.4" mkdirp "^0.5.1" resolve "^1.3.2" @@ -3289,11 +3508,7 @@ tslint@5.14.0: tslib "^1.8.0" tsutils "^2.29.0" -tsutils@^1.4.0: - version "1.9.1" - resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-1.9.1.tgz#b9f9ab44e55af9681831d5f28d0aeeaf5c750cb0" - -tsutils@^2.12.0, tsutils@^2.29.0, tsutils@^2.8.0: +tsutils@^2.29.0: version "2.29.0" resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.29.0.tgz#32b488501467acbedd4b85498673a0812aca0b99" dependencies: @@ -3319,9 +3534,10 @@ type-detect@^4.0.0, type-detect@^4.0.5: version "4.0.8" resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" -typescript@2.9.2: - version "2.9.2" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.9.2.tgz#1cbf61d05d6b96269244eb6a3bce4bd914e0f00c" +typescript@3.4.2: + version "3.4.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.4.2.tgz#9ed4e6475d906f589200193be056f5913caed481" + integrity sha512-Og2Vn6Mk7JAuWA1hQdDQN/Ekm/SchX80VzLhjKN9ETYrIepBFAd8PkOdOTK2nKt0FCkmMZKBJvQ1dV1gIxPu/A== uglify-js@^3.1.4: version "3.4.10" @@ -3339,10 +3555,6 @@ union-value@^1.0.0: is-extendable "^0.1.1" set-value "^0.4.3" -universalify@^0.1.0: - version "0.1.2" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" - unset-value@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" @@ -3368,16 +3580,18 @@ util-deprecate@^1.0.1, util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" +util.promisify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" + integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== + dependencies: + define-properties "^1.1.2" + object.getownpropertydescriptors "^2.0.3" + uuid@^3.3.2: version "3.3.2" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" -v8flags@^3.0.0: - version "3.1.2" - resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-3.1.2.tgz#fc5cd0c227428181e6c29b2992e4f8f1da5e0c9f" - dependencies: - homedir-polyfill "^1.0.1" - validate-npm-package-license@^3.0.1: version "3.0.4" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" @@ -3393,45 +3607,59 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" -walker@~1.0.5: +w3c-hr-time@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" + integrity sha1-gqwr/2PZUOqeMYmlimViX+3xkEU= + dependencies: + browser-process-hrtime "^0.1.2" + +walker@^1.0.7, walker@~1.0.5: version "1.0.7" resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" + integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= dependencies: makeerror "1.0.x" -watch@~0.18.0: - version "0.18.0" - resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" - dependencies: - exec-sh "^0.2.0" - minimist "^1.2.0" - -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" - -webidl-conversions@^4.0.0: +webidl-conversions@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" + integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== -whatwg-encoding@^1.0.1: +whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: version "1.0.5" resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" dependencies: iconv-lite "0.4.24" -whatwg-url@^4.3.0: - version "4.8.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" +whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" + integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== + +whatwg-url@^6.4.1: + version "6.5.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" + integrity sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ== dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + +whatwg-url@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.0.0.tgz#fde926fa54a599f3adf82dff25a9f7be02dc6edd" + integrity sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" which-module@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" -which@^1.2.12, which@^1.2.9, which@^1.3.0: +which@^1.2.9, which@^1.3.0: version "1.3.1" resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" dependencies: @@ -3451,12 +3679,6 @@ wordwrap@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" -worker-farm@^1.3.1: - version "1.6.0" - resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.6.0.tgz#aecc405976fab5a95526180846f0dba288f3a4a0" - dependencies: - errno "~0.1.7" - wrap-ansi@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" @@ -3468,77 +3690,58 @@ wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" -write-file-atomic@^2.1.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.2.tgz#a7181706dfba17855d221140a9c06e15fcdd87b9" +write-file-atomic@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.1.tgz#d0b05463c188ae804396fd5ab2a370062af87529" + integrity sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg== dependencies: graceful-fs "^4.1.11" imurmurhash "^0.1.4" signal-exit "^3.0.2" -xml-name-validator@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" +ws@^5.2.0: + version "5.2.2" + resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" + integrity sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA== + dependencies: + async-limiter "~1.0.0" -y18n@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" +xml-name-validator@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" + integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== -yallist@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" +"y18n@^3.2.1 || ^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" + integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== yallist@^3.0.0, yallist@^3.0.2: version "3.0.3" resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" -yargs-parser@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" +yargs-parser@^11.1.1: + version "11.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" + integrity sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ== dependencies: - camelcase "^4.1.0" + camelcase "^5.0.0" + decamelize "^1.2.0" -yargs-parser@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" - dependencies: - camelcase "^4.1.0" - -yargs@^10.0.3: - version "10.1.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.1.2.tgz#454d074c2b16a51a43e2fb7807e4f9de69ccb5c5" +yargs@^12.0.2: + version "12.0.5" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" + integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw== dependencies: cliui "^4.0.0" - decamelize "^1.1.1" - find-up "^2.1.0" + decamelize "^1.2.0" + find-up "^3.0.0" get-caller-file "^1.0.1" - os-locale "^2.0.0" + os-locale "^3.0.0" require-directory "^2.1.1" require-main-filename "^1.0.1" set-blocking "^2.0.0" string-width "^2.0.0" which-module "^2.0.0" - y18n "^3.2.1" - yargs-parser "^8.1.0" - -yargs@^9.0.0: - version "9.0.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" - dependencies: - camelcase "^4.1.0" - cliui "^3.2.0" - decamelize "^1.1.1" - get-caller-file "^1.0.1" - os-locale "^2.0.0" - read-pkg-up "^2.0.0" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^2.0.0" - which-module "^2.0.0" - y18n "^3.2.1" - yargs-parser "^7.0.0" - -yn@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/yn/-/yn-2.0.0.tgz#e5adabc8acf408f6385fc76495684c88e6af689a" + y18n "^3.2.1 || ^4.0.0" + yargs-parser "^11.1.1"