diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..3c611d4 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014-present Tim Carry (@pixelastic) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 4260c13..5e4bdf3 100644 --- a/README.md +++ b/README.md @@ -5,13 +5,14 @@ Recreating all the flags of the nations of the world in pure CSS, using only one You can see it live on [https://pixelastic.github.io/css-flags/](https://pixelastic.github.io/css-flags/) -This side-project has no real-world application, it was just an exercice to push +This side-project has no real-world application, it was just an exercise to push the boundaries of what I know about CSS. Trying to use the language to do things -it wasn't meant to do in the first place teached me a lot about the language. +it wasn't meant to do in the first place taught me a lot about the language. ## Running the project locally ```sh +bundle install npm install npm run serve ``` @@ -54,7 +55,7 @@ already exists in the UTF8 table, so I just have to grab them from existing fonts (or use [utf8icons.com][7]). But more often, I had to use Vexilla Mundi. The website provides nice png images -of all the symbols. Unfortunatly, the symbols they provide are already colored, +of all the symbols. Unfortunately, the symbols they provide are already colored, and I needed them black to use in the font so I was able to define the color myself. @@ -97,15 +98,13 @@ longer user percentage values, I need real, absolute, pixel values. -## Sibling projects - -Here are two others projects I did while working on CSS Flags. +## Related projects ### img2css [http://github.com/pixelastic/img2css/](http://github.com/pixelastic/img2css/) -Commanline tool to convert any image (jpg or png) to full CSS. This will +Commandline tool to convert any image (jpg or png) to full CSS. This will replicate all pixels of the initial image using numerous `box-shadows`. This works wel but results in really heavy generated CSS (several MB), so @@ -118,6 +117,13 @@ I choose not to use it in this project. Commandline tool to get an approximation in hexadecimal of a Pantone color value. Really useful as Vexilla Mundi gives color values in Pantone. + +### Vexillum + +[https://github.com/talgautb/vexillum](https://github.com/talgautb/vexillum) + +Someone else had the same idea. + ## Tips and tricks Here is an incomplete list of the tricks I had to use: @@ -125,7 +131,7 @@ Here is an incomplete list of the tricks I had to use: ### Invisible text-shadow I sometimes put an invisible symbol in an `after` or `before` element (through -`color: transparent`) and positionned it at `top:0; left: 0`. +`color: transparent`) and positioned it at `top:0; left: 0`. Then I added several `text-shadow` to it, with a full color. Doing so helped in getting the coordinates right because everything is then relative to the origin @@ -154,7 +160,7 @@ add: - Link to codepen to let users play with the code - Making it work on more browsers... - ...which implies that I need to add a visual testing framework on top if it -- Adding the missings flags +- Adding the missing flags - Using a clip-path when only one star instead of a font - Building the font with npm instead of icomoon.io - Adding stars to Brazil diff --git a/app/assets/fonts/Symbols.svg b/app/assets/fonts/Symbols.svg index b652c1a..5fff292 100644 --- a/app/assets/fonts/Symbols.svg +++ b/app/assets/fonts/Symbols.svg @@ -127,35 +127,41 @@ - + + diff --git a/app/assets/fonts/Symbols.ttf b/app/assets/fonts/Symbols.ttf index 181c374..506f4fb 100644 Binary files a/app/assets/fonts/Symbols.ttf and b/app/assets/fonts/Symbols.ttf differ diff --git a/app/assets/fonts/Symbols.woff b/app/assets/fonts/Symbols.woff index a2d255e..de9d71c 100644 Binary files a/app/assets/fonts/Symbols.woff and b/app/assets/fonts/Symbols.woff differ diff --git a/app/assets/index.html b/app/assets/index.html index 7267da3..e52209e 100644 --- a/app/assets/index.html +++ b/app/assets/index.html @@ -431,7 +431,7 @@

CS
- +
-
+
-
+
diff --git a/app/styles/_flags/aus.scss b/app/styles/_flags/aus.scss index 6822de7..e3f67a7 100644 --- a/app/styles/_flags/aus.scss +++ b/app/styles/_flags/aus.scss @@ -70,7 +70,7 @@ line-height: $star-commonwealth-small-size; // Offset from 0,0 - $offset-left: -$star-commonwealth-big-size / 2 - $star-commonwealth-small-size / 2; + $offset-left: -$star-commonwealth-big-size - $star-commonwealth-small-size / 2; $offset-top: -$star-commonwealth-big-size / 2 - $star-commonwealth-small-size / 2; $text-shadow-left1: $star-commonwealth-small-left1 + $offset-left; $text-shadow-top1: $star-commonwealth-small-top1 + $offset-top; diff --git a/app/styles/_flags/bra.scss b/app/styles/_flags/bra.scss index cf0cbdb..44d7e2c 100644 --- a/app/styles/_flags/bra.scss +++ b/app/styles/_flags/bra.scss @@ -78,7 +78,7 @@ // // top: ($height - $circle-width) / 2; // // left: ($width - $circle-width) / 2; // // background-color: $white; - // clip-path: five-pointed-star($circle-width, 100px, 100px); + // clip-path: polygon(five-pointed-star($circle-width, 100px, 100px)); // } }; diff --git a/app/styles/_flags/chn.scss b/app/styles/_flags/chn.scss index bd1b8df..9f67ac9 100644 --- a/app/styles/_flags/chn.scss +++ b/app/styles/_flags/chn.scss @@ -9,17 +9,21 @@ $star-offset-top: 5 * $unit; $star-offset-left: 5 * $unit; $star-size-small: 2 * $unit; - $star-offset-top-small: 2 * $unit; - $star-offset-left-small: 10 * $unit; background-color: $red; &:before { - @include star($yellow, $star-size, $star-offset-left, $star-offset-top); - } - &:after { - @include star($yellow, $star-size-small, $star-offset-left-small, $star-offset-top-small); - text-shadow:(2 * $unit) (2 * $unit) 0px $yellow, - (2 * $unit) (5 * $unit) 0px $yellow, - (0) (7 * $unit) 0px $yellow; + content: ''; + display: block; + position: relative; + width: $width; + height: $height; + background: $yellow; + clip-path: polygon(link_polygons( + five-pointed-star($star-size, $star-offset-left, $star-offset-top), + five-pointed-star($star-size-small, 10 * $unit, 2 * $unit, -120.96), + five-pointed-star($star-size-small, 12 * $unit, 4 * $unit, -98.13), + five-pointed-star($star-size-small, 12 * $unit, 7 * $unit, -74.055), + five-pointed-star($star-size-small, 10 * $unit, 9 * $unit, -54.34) + )); } }; diff --git a/app/styles/_flags/ind.scss b/app/styles/_flags/ind.scss index 56bd906..e90d019 100644 --- a/app/styles/_flags/ind.scss +++ b/app/styles/_flags/ind.scss @@ -1,5 +1,16 @@ // India // http://www.crwflags.com/fotw/flags/in.html +// http://www.vexilla-mundi.com/india_flag.html @mixin flag-ind() { @include ratio(2 / 3); -}; \ No newline at end of file + $orange: #ff671f; + $white: #FFF; + $green: #00843d; + $blue: #00263a; + $symbol-width: $w5; // Radius is 1/10 of the width + + @include three-lines($orange, $white, $green); + &:before { + @include centered-symbol($UTF8_IND, $blue, $symbol-width); + } +}; diff --git a/app/styles/_flags/npl.scss b/app/styles/_flags/npl.scss index fb2be0c..1584b72 100644 --- a/app/styles/_flags/npl.scss +++ b/app/styles/_flags/npl.scss @@ -1,5 +1,148 @@ // Nepal // http://www.crwflags.com/fotw/flags/np.html +// http://www.vexilla-mundi.com/nepal_flag.html +// http://crwflags.com/fotw/flags/np%27.html +// This one is one of the hardest of the lot. The peculiar shape is done +// through clip-path. We first cut the blue shape in the main div, then we cut +// the red one in an :after. The two symbols are positionned through :before +// and :first-letter. Symbols are simply displayed on the first line each one +// is then placed at the correct position using text-shadow. +// A lot of geometry is involved, don't hesitate to draw it on a sheet of +// paper. @mixin flag-npl() { @include ratio(2 / 3); -}; \ No newline at end of file + $unit: $h800; + $red: #c8102e; + $blue: #0c2340; + $white: #FFFFFF; + + + // We'll name points from A to E, starting on the top and rotating clockwise + $DE: 600 * $unit; + $CD: 600 * $unit; + $AE: 800 * $unit; + $A-x: 0; + $A-y: 0; + $D-x: $DE; + $D-y: $AE; + $E-x: 0; + $E-y: $AE; + + // To get the two missing points, we'll need to calculate the width of the + // inner triangle formed by (DC), (AE) and the perpendicular of (AE) coming + // through B. + // Let's consider K the intersection of (DC) with (AE) + $EK: 600 * $unit; + $AK: 200 * $unit; + $DK: hypotenuse($EK, $DE); + $CK: $DK - $CD; + + // Let's consider J the intersection of (CB) with (AE) + $alpha-DKE: asin($DE / $DK); + $alpha-CKJ: $alpha-DKE; + $JK: cos($alpha-CKJ) * $CK; + $CJ: sin($alpha-CKJ) * $CK; + $AJ: $AK + $JK; + $B-x: $DE; + $B-y: $AJ; + $C-x: $CJ; + $C-y: $AJ; + + background: $blue; + clip-path: polygon( + $A-x $A-y, + $B-x $B-y, + $C-x $C-y, + $D-x $D-y, + $E-x $E-y + ); + + // We need to add the blue border around the flag. The border size is + // consistent, but we need to re-calculate all the coordinates. + $border-width: 25 * $unit; + + $BJ: $DE; + $AB: hypotenuse($AJ, $BJ); + $alpha-JAB: asin($BJ / $AB); + $alpha-JAB-prime: $alpha-JAB / 2; + $A-x-offset: - $border-width; + $A-y-offset: - $border-width / tan($alpha-JAB-prime); + + $alpha-ABJ: 90deg - $alpha-JAB; + $alpha-ABJ-prime: $alpha-ABJ / 2; + $B-x-offset: $border-width / tan($alpha-ABJ-prime); + $B-y-offset: $border-width; + + $alpha-JCK: 90deg - $alpha-CKJ; + $alpha-BCD: $alpha-JCK; + $alpha-BCD-prime: $alpha-BCD / 2; + $C-x-offset: $border-width / tan($alpha-BCD-prime); + $C-y-offset: $border-width; + + $alpha-CDE: 90deg - $alpha-CKJ; + $alpha-CDE-prime: $alpha-CDE / 2; + $D-x-offset: $border-width / tan($alpha-CDE-prime); + $D-y-offset: $border-width; + + $E-x-offset: - $border-width; + $E-y-offset: $border-width; + + &:after { + content: ''; + z-index: 5; + position: absolute; + top: 0; + left: 0; + width: $width; + height: $height; + background-color: $red; + + clip-path: polygon( + ($A-x - $A-x-offset) ($A-y - $A-y-offset), + ($B-x - $B-x-offset) ($B-y - $B-y-offset), + ($C-x - $C-x-offset) ($C-y - $C-y-offset), + ($D-x - $D-x-offset) ($D-y - $D-y-offset), + ($E-x - $E-x-offset) ($E-y - $E-y-offset) + ); + } + + + // Let's roughly calculate the scale difference between the red and blue + // shapes and apply it to everything we calculated here. + $red-rectangle-area: $AE * $DE; + $blue-rectangle-area: ($AE + 2 * $border-width) * ($DE + 2 * $border-width); + $blue-red-ratio: $red-rectangle-area / $blue-rectangle-area; + + $star-width: 256 * $unit * $blue-red-ratio; + $star-height: $star-width; + $crescent-width: 240 * $unit * $blue-red-ratio; + $crescent-height: 80 * $unit * $blue-red-ratio; + $crescent-left: $border-width + 150 * $unit * $blue-red-ratio - $crescent-width / 2; + $crescent-top: - $star-height / 2 + 240 * $unit; + + // Let's consider M the center of [CD] and L the point where the + // perpendicular to (DE) goes through M + $DM: $CD / 2; + $LM: sin($alpha-CDE) * $DM; + $star-top: - $star-height / 2 + ($height - $LM) + $border-width; + $star-left: - $crescent-width + $crescent-left; + + &:before { + content: $UTF8_NPL_CRESCENT+$UTF8_NPL_STAR; + position: relative; // needed for first-letter and z-index to work + z-index: 10; + color: transparent; + font-family: Symbols; + font-size: $star-width; + line-height: $star-width; + text-shadow: $star-left $star-top 0 $white; + } + + &:first-letter { + font-family: Symbols; + color: transparent; + line-height: $star-width; // Use a line-height equal to the biggest of the two + font-size: $crescent-width; + text-shadow: $crescent-left $crescent-top 0 $white; + } +}; diff --git a/app/styles/_helpers/helper.scss b/app/styles/_helpers/helper.scss index 08a15ff..dd15f8d 100644 --- a/app/styles/_helpers/helper.scss +++ b/app/styles/_helpers/helper.scss @@ -5,6 +5,31 @@ @return $value / ($value * 0 + 1); } +// Link polygon point lists to a single one +// @args: lists with positions +// @returns: New single list which can be used in polygon() +// Inspired by: +// https://css-tricks.com/cutting-inner-part-element-using-clip-path/ +@function link_polygons($args...) { + $result: (); + $len: length($args); + + @for $i from 1 to $len + 1 { + $list: nth($args, $i); + $result: append($result, $list, comma); + } + + @if ($len <= 2) { + @return $result; + } + + @for $i from $len - 1 to 1 { + $list: nth($args, $i); + $result: append($result, nth($list, 1), comma); + } + @return $result; +} + // Sets the flag ratio and update all magic variables // @args ratio: Ratio of height / width @mixin ratio($ratio:1) { @@ -64,6 +89,7 @@ $h432:$height/432 !global; $h504:$height/504 !global; $h720:$height/720 !global; + $h800:$height/800 !global; $h1500:$height/1500 !global; $h2880:$height/2880 !global; $h6000:$height/6000 !global; diff --git a/app/styles/_helpers/stars.scss b/app/styles/_helpers/stars.scss index 267d1e5..f859c5b 100644 --- a/app/styles/_helpers/stars.scss +++ b/app/styles/_helpers/stars.scss @@ -2,98 +2,30 @@ // @args size: Diameter of the circle in which the star is // @args left: X coord of the star center // @args top: Y coord of the star center +// @args rotate: Angle to rotate the star // http://www.mathalino.com/sites/default/files/images/005-planegeom-pentagram.jpg // http://musicians4freedom.com/wp-content/uploads/2014/06/phi-dimentions-in-pentagram_0.gif // -@function five-pointed-star($diameter, $left, $top) { - $radius: _($diameter / 2); +@function five-pointed-star($diameter, $left, $top, $alpha:0) { + $result: (); + $whole-radius: _($diameter / 2); $golden-ratio: 1.618; // There are two circles that make a five pointed star. // A outer circle, where all the peaks are located // And an inner circle, where all the inner bases are located // Both radius have a ratio equal to the golden ratio - $inner-radius: $radius - $radius / $golden-ratio; - - // Whatever the size of the star, the inner angle of the peaks is always 36° - $teta: 36deg; - // The other angles of the triangles are 72° - $beta: 72deg; - $pentagram-side: 2 * (sin($teta) * $inner-radius); - // teta is also equal to the angle from the center of the star to one inner - // peak and with a right angle to the base of one of the triangles - $inner-top-padding-x: $pentagram-side / 2; - $inner-top-padding-y: cos($teta) * $inner-radius; - $outer-top-padding-x: sqrt($radius * $radius - $inner-top-padding-y * $inner-top-padding-y); - $outer-top-padding-y: $inner-top-padding-y; - $inner-bottom-padding-x: ($pentagram-side / 2) + (cos($beta) * $pentagram-side); - $inner-bottom-padding-y: sqrt($inner-radius * $inner-radius - $inner-bottom-padding-x * $inner-bottom-padding-x); - $outer-bottom-padding-x: sin($teta) * $radius; - $outer-bottom-padding-y: cos($teta) * $radius; - - // We'll name the points of the star starting from the top and in clockwise - // order - $A-x: 0; - $A-y: -$radius; - - $B-x: $inner-top-padding-x; - $B-y: -$inner-top-padding-y; - - $C-x: $outer-top-padding-x; - $C-y: -$outer-top-padding-y; - - $D-x: $inner-bottom-padding-x; - $D-y: $inner-bottom-padding-y; - - $E-x: $outer-bottom-padding-x; - $E-y: $outer-bottom-padding-y; - - $F-x: 0; - $F-y: $inner-radius; - - $G-x: -$outer-bottom-padding-x; - $G-y: $outer-bottom-padding-y; - - $H-x: -$inner-bottom-padding-x; - $H-y: $inner-bottom-padding-y; - - $I-x: -$outer-top-padding-x; - $I-y: -$outer-top-padding-y; - - $J-x: -$inner-top-padding-x; - $J-y: -$inner-top-padding-y; - - // Converting to px and placing relative to origin - $A-x: $A-x * 1px + $left; - $A-y: $A-y * 1px + $top; - $B-x: $B-x * 1px + $left; - $B-y: $B-y * 1px + $top; - $C-x: $C-x * 1px + $left; - $C-y: $C-y * 1px + $top; - $D-x: $D-x * 1px + $left; - $D-y: $D-y * 1px + $top; - $E-x: $E-x * 1px + $left; - $E-y: $E-y * 1px + $top; - $F-x: $F-x * 1px + $left; - $F-y: $F-y * 1px + $top; - $G-x: $G-x * 1px + $left; - $G-y: $G-y * 1px + $top; - $H-x: $H-x * 1px + $left; - $H-y: $H-y * 1px + $top; - $I-x: $I-x * 1px + $left; - $I-y: $I-y * 1px + $top; - $J-x: $J-x * 1px + $left; - $J-y: $J-y * 1px + $top; - - @return polygon( - $A-x $A-y, - $B-x $B-y, - $C-x $C-y, - $D-x $D-y, - $E-x $E-y, - $F-x $F-y, - $G-x $G-y, - $H-x $H-y, - $I-x $I-y, - $J-x $J-y - ); + $inner-radius: $whole-radius - $whole-radius / $golden-ratio; + + @for $i from 0 to 11 { + $radius: $whole-radius; + @if ($i % 2 == 1) { + $radius: $inner-radius; + } + $result: append($result, + ($left + $radius * sin($alpha) $top - $radius * cos($alpha)), + comma); + $alpha: $alpha + 36; + } + + @return $result; } diff --git a/app/styles/_helpers/symbol_codes.scss b/app/styles/_helpers/symbol_codes.scss index 48c7410..ca70f7d 100644 --- a/app/styles/_helpers/symbol_codes.scss +++ b/app/styles/_helpers/symbol_codes.scss @@ -41,13 +41,15 @@ $UTF8_MYS: '\e624'; $UTF8_NAM: '\e625'; $UTF8_NCL: '\e626'; $UTF8_NFK: '\e627'; -$UTF8_NRU: '\e628'; -$UTF8_PHL: '\e629'; -$UTF8_PNG: '\e62a'; -$UTF8_RWA: '\e62b'; -$UTF8_SAU: '\e62c'; -$UTF8_STAR_6_POINTS: '\e62d'; -$UTF8_STAR_COMMONWEALTH: '\e62e'; -$UTF8_TJK: '\e62f'; -$UTF8_TWN: '\e630'; -$UTF8_VUT: '\e631'; \ No newline at end of file +$UTF8_NPL_CRESCENT: '\e628'; +$UTF8_NPL_STAR: '\e629'; +$UTF8_NRU: '\e62a'; +$UTF8_PHL: '\e62b'; +$UTF8_PNG: '\e62c'; +$UTF8_RWA: '\e62d'; +$UTF8_SAU: '\e62e'; +$UTF8_STAR_6_POINTS: '\e62f'; +$UTF8_STAR_COMMONWEALTH: '\e630'; +$UTF8_TJK: '\e631'; +$UTF8_TWN: '\e632'; +$UTF8_VUT: '\e633'; \ No newline at end of file diff --git a/app/styles/yarn.lock b/app/styles/yarn.lock new file mode 100644 index 0000000..fb57ccd --- /dev/null +++ b/app/styles/yarn.lock @@ -0,0 +1,4 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + diff --git a/brunch-config.coffee b/brunch-config.coffee index e18287e..0af38d2 100644 --- a/brunch-config.coffee +++ b/brunch-config.coffee @@ -14,9 +14,8 @@ module.exports = config: pattern: /\.(js)$/ postcss: processors: [ - require('autoprefixer')(['Chrome > 44, last 8 versions']) + require('autoprefixer')(['last 8 versions']) require('postcss-round-subpixels'), - # require('cssnano') ] server: run: yes diff --git a/favicon.ico b/favicon.ico deleted file mode 100644 index e69de29..0000000 diff --git a/flags.json b/flags.json index 1629d92..15f97fb 100644 --- a/flags.json +++ b/flags.json @@ -1 +1,2741 @@ -[ { "name": "Afghanistan", "alpha-2": "AF", "alpha-3": "AFG", "country-code": "004", "iso_3166-2": "ISO 3166-2:AF", "region": "Asia", "sub-region": "Southern Asia", "region-code": "142", "sub-region-code": "034" }, { "name": "Åland Islands", "alpha-2": "AX", "alpha-3": "ALA", "country-code": "248", "iso_3166-2": "ISO 3166-2:AX", "sub-region-code": "154", "region-code": "150", "sub-region": "Northern Europe", "region": "Europe" }, { "name": "Albania", "alpha-2": "AL", "alpha-3": "ALB", "country-code": "008", "iso_3166-2": "ISO 3166-2:AL", "region": "Europe", "sub-region": "Southern Europe", "region-code": "150", "sub-region-code": "039" }, { "name": "Algeria", "alpha-2": "DZ", "alpha-3": "DZA", "country-code": "012", "iso_3166-2": "ISO 3166-2:DZ", "region": "Africa", "sub-region": "Northern Africa", "region-code": "002", "sub-region-code": "015" }, { "name": "American Samoa", "alpha-2": "AS", "alpha-3": "ASM", "country-code": "016", "iso_3166-2": "ISO 3166-2:AS", "region": "Oceania", "sub-region": "Polynesia", "region-code": "009", "sub-region-code": "061" }, { "name": "Andorra", "alpha-2": "AD", "alpha-3": "AND", "country-code": "020", "iso_3166-2": "ISO 3166-2:AD", "region": "Europe", "sub-region": "Southern Europe", "region-code": "150", "sub-region-code": "039" }, { "name": "Angola", "alpha-2": "AO", "alpha-3": "AGO", "country-code": "024", "iso_3166-2": "ISO 3166-2:AO", "region": "Africa", "sub-region": "Middle Africa", "region-code": "002", "sub-region-code": "017" }, { "name": "Anguilla", "alpha-2": "AI", "alpha-3": "AIA", "country-code": "660", "iso_3166-2": "ISO 3166-2:AI", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Antarctica", "alpha-2": "AQ", "alpha-3": "ATA", "country-code": "010", "iso_3166-2": "ISO 3166-2:AQ", "sub-region-code": null, "region-code": null, "sub-region": null, "region": null }, { "name": "Antigua and Barbuda", "alpha-2": "AG", "alpha-3": "ATG", "country-code": "028", "iso_3166-2": "ISO 3166-2:AG", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Argentina", "alpha-2": "AR", "alpha-3": "ARG", "country-code": "032", "iso_3166-2": "ISO 3166-2:AR", "region": "Americas", "sub-region": "South America", "region-code": "019", "sub-region-code": "005" }, { "name": "Armenia", "alpha-2": "AM", "alpha-3": "ARM", "country-code": "051", "iso_3166-2": "ISO 3166-2:AM", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "Aruba", "alpha-2": "AW", "alpha-3": "ABW", "country-code": "533", "iso_3166-2": "ISO 3166-2:AW", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Australia", "alpha-2": "AU", "alpha-3": "AUS", "country-code": "036", "iso_3166-2": "ISO 3166-2:AU", "region": "Oceania", "sub-region": "Australia and New Zealand", "region-code": "009", "sub-region-code": "053" }, { "name": "Austria", "alpha-2": "AT", "alpha-3": "AUT", "country-code": "040", "iso_3166-2": "ISO 3166-2:AT", "region": "Europe", "sub-region": "Western Europe", "region-code": "150", "sub-region-code": "155" }, { "name": "Azerbaijan", "alpha-2": "AZ", "alpha-3": "AZE", "country-code": "031", "iso_3166-2": "ISO 3166-2:AZ", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "Bahamas", "alpha-2": "BS", "alpha-3": "BHS", "country-code": "044", "iso_3166-2": "ISO 3166-2:BS", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Bahrain", "alpha-2": "BH", "alpha-3": "BHR", "country-code": "048", "iso_3166-2": "ISO 3166-2:BH", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "Bangladesh", "alpha-2": "BD", "alpha-3": "BGD", "country-code": "050", "iso_3166-2": "ISO 3166-2:BD", "region": "Asia", "sub-region": "Southern Asia", "region-code": "142", "sub-region-code": "034" }, { "name": "Barbados", "alpha-2": "BB", "alpha-3": "BRB", "country-code": "052", "iso_3166-2": "ISO 3166-2:BB", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Belarus", "alpha-2": "BY", "alpha-3": "BLR", "country-code": "112", "iso_3166-2": "ISO 3166-2:BY", "region": "Europe", "sub-region": "Eastern Europe", "region-code": "150", "sub-region-code": "151" }, { "name": "Belgium", "alpha-2": "BE", "alpha-3": "BEL", "country-code": "056", "iso_3166-2": "ISO 3166-2:BE", "region": "Europe", "sub-region": "Western Europe", "region-code": "150", "sub-region-code": "155" }, { "name": "Belize", "alpha-2": "BZ", "alpha-3": "BLZ", "country-code": "084", "iso_3166-2": "ISO 3166-2:BZ", "region": "Americas", "sub-region": "Central America", "region-code": "019", "sub-region-code": "013" }, { "name": "Benin", "alpha-2": "BJ", "alpha-3": "BEN", "country-code": "204", "iso_3166-2": "ISO 3166-2:BJ", "region": "Africa", "sub-region": "Western Africa", "region-code": "002", "sub-region-code": "011" }, { "name": "Bermuda", "alpha-2": "BM", "alpha-3": "BMU", "country-code": "060", "iso_3166-2": "ISO 3166-2:BM", "region": "Americas", "sub-region": "Northern America", "region-code": "019", "sub-region-code": "021" }, { "name": "Bhutan", "alpha-2": "BT", "alpha-3": "BTN", "country-code": "064", "iso_3166-2": "ISO 3166-2:BT", "region": "Asia", "sub-region": "Southern Asia", "region-code": "142", "sub-region-code": "034" }, { "name": "Bolivia (Plurinational State of)", "alpha-2": "BO", "alpha-3": "BOL", "country-code": "068", "iso_3166-2": "ISO 3166-2:BO", "region": "Americas", "sub-region": "South America", "region-code": "019", "sub-region-code": "005" }, { "name": "Bonaire, Sint Eustatius and Saba", "alpha-2": "BQ", "alpha-3": "BES", "country-code": "535", "iso_3166-2": "ISO 3166-2:BQ", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Bosnia and Herzegovina", "alpha-2": "BA", "alpha-3": "BIH", "country-code": "070", "iso_3166-2": "ISO 3166-2:BA", "region": "Europe", "sub-region": "Southern Europe", "region-code": "150", "sub-region-code": "039" }, { "name": "Botswana", "alpha-2": "BW", "alpha-3": "BWA", "country-code": "072", "iso_3166-2": "ISO 3166-2:BW", "region": "Africa", "sub-region": "Southern Africa", "region-code": "002", "sub-region-code": "018" }, { "name": "Bouvet Island", "alpha-2": "BV", "alpha-3": "BVT", "country-code": "074", "iso_3166-2": "ISO 3166-2:BV", "sub-region-code": null, "region-code": null, "sub-region": null, "region": null }, { "name": "Brazil", "alpha-2": "BR", "alpha-3": "BRA", "country-code": "076", "iso_3166-2": "ISO 3166-2:BR", "region": "Americas", "sub-region": "South America", "region-code": "019", "sub-region-code": "005" }, { "name": "British Indian Ocean Territory", "alpha-2": "IO", "alpha-3": "IOT", "country-code": "086", "iso_3166-2": "ISO 3166-2:IO", "sub-region-code": null, "region-code": null, "sub-region": null, "region": null }, { "name": "Brunei Darussalam", "alpha-2": "BN", "alpha-3": "BRN", "country-code": "096", "iso_3166-2": "ISO 3166-2:BN", "region": "Asia", "sub-region": "South-Eastern Asia", "region-code": "142", "sub-region-code": "035" }, { "name": "Bulgaria", "alpha-2": "BG", "alpha-3": "BGR", "country-code": "100", "iso_3166-2": "ISO 3166-2:BG", "region": "Europe", "sub-region": "Eastern Europe", "region-code": "150", "sub-region-code": "151" }, { "name": "Burkina Faso", "alpha-2": "BF", "alpha-3": "BFA", "country-code": "854", "iso_3166-2": "ISO 3166-2:BF", "region": "Africa", "sub-region": "Western Africa", "region-code": "002", "sub-region-code": "011" }, { "name": "Burundi", "alpha-2": "BI", "alpha-3": "BDI", "country-code": "108", "iso_3166-2": "ISO 3166-2:BI", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Cambodia", "alpha-2": "KH", "alpha-3": "KHM", "country-code": "116", "iso_3166-2": "ISO 3166-2:KH", "region": "Asia", "sub-region": "South-Eastern Asia", "region-code": "142", "sub-region-code": "035" }, { "name": "Cameroon", "alpha-2": "CM", "alpha-3": "CMR", "country-code": "120", "iso_3166-2": "ISO 3166-2:CM", "region": "Africa", "sub-region": "Middle Africa", "region-code": "002", "sub-region-code": "017" }, { "name": "Canada", "alpha-2": "CA", "alpha-3": "CAN", "country-code": "124", "iso_3166-2": "ISO 3166-2:CA", "region": "Americas", "sub-region": "Northern America", "region-code": "019", "sub-region-code": "021" }, { "name": "Cabo Verde", "alpha-2": "CV", "alpha-3": "CPV", "country-code": "132", "iso_3166-2": "ISO 3166-2:CV", "region": "Africa", "sub-region": "Western Africa", "region-code": "002", "sub-region-code": "011" }, { "name": "Cayman Islands", "alpha-2": "KY", "alpha-3": "CYM", "country-code": "136", "iso_3166-2": "ISO 3166-2:KY", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Central African Republic", "alpha-2": "CF", "alpha-3": "CAF", "country-code": "140", "iso_3166-2": "ISO 3166-2:CF", "region": "Africa", "sub-region": "Middle Africa", "region-code": "002", "sub-region-code": "017" }, { "name": "Chad", "alpha-2": "TD", "alpha-3": "TCD", "country-code": "148", "iso_3166-2": "ISO 3166-2:TD", "region": "Africa", "sub-region": "Middle Africa", "region-code": "002", "sub-region-code": "017" }, { "name": "Chile", "alpha-2": "CL", "alpha-3": "CHL", "country-code": "152", "iso_3166-2": "ISO 3166-2:CL", "region": "Americas", "sub-region": "South America", "region-code": "019", "sub-region-code": "005" }, { "name": "China", "alpha-2": "CN", "alpha-3": "CHN", "country-code": "156", "iso_3166-2": "ISO 3166-2:CN", "region": "Asia", "sub-region": "Eastern Asia", "region-code": "142", "sub-region-code": "030" }, { "name": "Christmas Island", "alpha-2": "CX", "alpha-3": "CXR", "country-code": "162", "iso_3166-2": "ISO 3166-2:CX", "sub-region-code": null, "region-code": null, "sub-region": null, "region": null }, { "name": "Cocos (Keeling) Islands", "alpha-2": "CC", "alpha-3": "CCK", "country-code": "166", "iso_3166-2": "ISO 3166-2:CC", "sub-region-code": null, "region-code": null, "sub-region": null, "region": null }, { "name": "Colombia", "alpha-2": "CO", "alpha-3": "COL", "country-code": "170", "iso_3166-2": "ISO 3166-2:CO", "region": "Americas", "sub-region": "South America", "region-code": "019", "sub-region-code": "005" }, { "name": "Comoros", "alpha-2": "KM", "alpha-3": "COM", "country-code": "174", "iso_3166-2": "ISO 3166-2:KM", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Congo", "alpha-2": "CG", "alpha-3": "COG", "country-code": "178", "iso_3166-2": "ISO 3166-2:CG", "region": "Africa", "sub-region": "Middle Africa", "region-code": "002", "sub-region-code": "017" }, { "name": "Congo (Democratic Republic of the)", "alpha-2": "CD", "alpha-3": "COD", "country-code": "180", "iso_3166-2": "ISO 3166-2:CD", "region": "Africa", "sub-region": "Middle Africa", "region-code": "002", "sub-region-code": "017" }, { "name": "Cook Islands", "alpha-2": "CK", "alpha-3": "COK", "country-code": "184", "iso_3166-2": "ISO 3166-2:CK", "region": "Oceania", "sub-region": "Polynesia", "region-code": "009", "sub-region-code": "061" }, { "name": "Costa Rica", "alpha-2": "CR", "alpha-3": "CRI", "country-code": "188", "iso_3166-2": "ISO 3166-2:CR", "region": "Americas", "sub-region": "Central America", "region-code": "019", "sub-region-code": "013" }, { "name": "Côte d'Ivoire", "alpha-2": "CI", "alpha-3": "CIV", "country-code": "384", "iso_3166-2": "ISO 3166-2:CI", "region": "Africa", "sub-region": "Western Africa", "region-code": "002", "sub-region-code": "011" }, { "name": "Croatia", "alpha-2": "HR", "alpha-3": "HRV", "country-code": "191", "iso_3166-2": "ISO 3166-2:HR", "region": "Europe", "sub-region": "Southern Europe", "region-code": "150", "sub-region-code": "039" }, { "name": "Cuba", "alpha-2": "CU", "alpha-3": "CUB", "country-code": "192", "iso_3166-2": "ISO 3166-2:CU", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Curaçao", "alpha-2": "CW", "alpha-3": "CUW", "country-code": "531", "iso_3166-2": "ISO 3166-2:CW", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Cyprus", "alpha-2": "CY", "alpha-3": "CYP", "country-code": "196", "iso_3166-2": "ISO 3166-2:CY", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "Czech Republic", "alpha-2": "CZ", "alpha-3": "CZE", "country-code": "203", "iso_3166-2": "ISO 3166-2:CZ", "region": "Europe", "sub-region": "Eastern Europe", "region-code": "150", "sub-region-code": "151" }, { "name": "Denmark", "alpha-2": "DK", "alpha-3": "DNK", "country-code": "208", "iso_3166-2": "ISO 3166-2:DK", "region": "Europe", "sub-region": "Northern Europe", "region-code": "150", "sub-region-code": "154" }, { "name": "Djibouti", "alpha-2": "DJ", "alpha-3": "DJI", "country-code": "262", "iso_3166-2": "ISO 3166-2:DJ", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Dominica", "alpha-2": "DM", "alpha-3": "DMA", "country-code": "212", "iso_3166-2": "ISO 3166-2:DM", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Dominican Republic", "alpha-2": "DO", "alpha-3": "DOM", "country-code": "214", "iso_3166-2": "ISO 3166-2:DO", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Ecuador", "alpha-2": "EC", "alpha-3": "ECU", "country-code": "218", "iso_3166-2": "ISO 3166-2:EC", "region": "Americas", "sub-region": "South America", "region-code": "019", "sub-region-code": "005" }, { "name": "Egypt", "alpha-2": "EG", "alpha-3": "EGY", "country-code": "818", "iso_3166-2": "ISO 3166-2:EG", "region": "Africa", "sub-region": "Northern Africa", "region-code": "002", "sub-region-code": "015" }, { "name": "El Salvador", "alpha-2": "SV", "alpha-3": "SLV", "country-code": "222", "iso_3166-2": "ISO 3166-2:SV", "region": "Americas", "sub-region": "Central America", "region-code": "019", "sub-region-code": "013" }, { "name": "Equatorial Guinea", "alpha-2": "GQ", "alpha-3": "GNQ", "country-code": "226", "iso_3166-2": "ISO 3166-2:GQ", "region": "Africa", "sub-region": "Middle Africa", "region-code": "002", "sub-region-code": "017" }, { "name": "Eritrea", "alpha-2": "ER", "alpha-3": "ERI", "country-code": "232", "iso_3166-2": "ISO 3166-2:ER", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Estonia", "alpha-2": "EE", "alpha-3": "EST", "country-code": "233", "iso_3166-2": "ISO 3166-2:EE", "region": "Europe", "sub-region": "Northern Europe", "region-code": "150", "sub-region-code": "154" }, { "name": "Ethiopia", "alpha-2": "ET", "alpha-3": "ETH", "country-code": "231", "iso_3166-2": "ISO 3166-2:ET", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Falkland Islands (Malvinas)", "alpha-2": "FK", "alpha-3": "FLK", "country-code": "238", "iso_3166-2": "ISO 3166-2:FK", "region": "Americas", "sub-region": "South America", "region-code": "019", "sub-region-code": "005" }, { "name": "Faroe Islands", "alpha-2": "FO", "alpha-3": "FRO", "country-code": "234", "iso_3166-2": "ISO 3166-2:FO", "region": "Europe", "sub-region": "Northern Europe", "region-code": "150", "sub-region-code": "154" }, { "name": "Fiji", "alpha-2": "FJ", "alpha-3": "FJI", "country-code": "242", "iso_3166-2": "ISO 3166-2:FJ", "region": "Oceania", "sub-region": "Melanesia", "region-code": "009", "sub-region-code": "054" }, { "name": "Finland", "alpha-2": "FI", "alpha-3": "FIN", "country-code": "246", "iso_3166-2": "ISO 3166-2:FI", "region": "Europe", "sub-region": "Northern Europe", "region-code": "150", "sub-region-code": "154" }, { "name": "France", "alpha-2": "FR", "alpha-3": "FRA", "country-code": "250", "iso_3166-2": "ISO 3166-2:FR", "region": "Europe", "sub-region": "Western Europe", "region-code": "150", "sub-region-code": "155" }, { "name": "French Guiana", "alpha-2": "GF", "alpha-3": "GUF", "country-code": "254", "iso_3166-2": "ISO 3166-2:GF", "region": "Americas", "sub-region": "South America", "region-code": "019", "sub-region-code": "005" }, { "name": "French Polynesia", "alpha-2": "PF", "alpha-3": "PYF", "country-code": "258", "iso_3166-2": "ISO 3166-2:PF", "region": "Oceania", "sub-region": "Polynesia", "region-code": "009", "sub-region-code": "061" }, { "name": "French Southern Territories", "alpha-2": "TF", "alpha-3": "ATF", "country-code": "260", "iso_3166-2": "ISO 3166-2:TF", "sub-region-code": null, "region-code": null, "sub-region": null, "region": null }, { "name": "Gabon", "alpha-2": "GA", "alpha-3": "GAB", "country-code": "266", "iso_3166-2": "ISO 3166-2:GA", "region": "Africa", "sub-region": "Middle Africa", "region-code": "002", "sub-region-code": "017" }, { "name": "Gambia", "alpha-2": "GM", "alpha-3": "GMB", "country-code": "270", "iso_3166-2": "ISO 3166-2:GM", "region": "Africa", "sub-region": "Western Africa", "region-code": "002", "sub-region-code": "011" }, { "name": "Georgia", "alpha-2": "GE", "alpha-3": "GEO", "country-code": "268", "iso_3166-2": "ISO 3166-2:GE", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "Germany", "alpha-2": "DE", "alpha-3": "DEU", "country-code": "276", "iso_3166-2": "ISO 3166-2:DE", "region": "Europe", "sub-region": "Western Europe", "region-code": "150", "sub-region-code": "155" }, { "name": "Ghana", "alpha-2": "GH", "alpha-3": "GHA", "country-code": "288", "iso_3166-2": "ISO 3166-2:GH", "region": "Africa", "sub-region": "Western Africa", "region-code": "002", "sub-region-code": "011" }, { "name": "Gibraltar", "alpha-2": "GI", "alpha-3": "GIB", "country-code": "292", "iso_3166-2": "ISO 3166-2:GI", "region": "Europe", "sub-region": "Southern Europe", "region-code": "150", "sub-region-code": "039" }, { "name": "Greece", "alpha-2": "GR", "alpha-3": "GRC", "country-code": "300", "iso_3166-2": "ISO 3166-2:GR", "region": "Europe", "sub-region": "Southern Europe", "region-code": "150", "sub-region-code": "039" }, { "name": "Greenland", "alpha-2": "GL", "alpha-3": "GRL", "country-code": "304", "iso_3166-2": "ISO 3166-2:GL", "region": "Americas", "sub-region": "Northern America", "region-code": "019", "sub-region-code": "021" }, { "name": "Grenada", "alpha-2": "GD", "alpha-3": "GRD", "country-code": "308", "iso_3166-2": "ISO 3166-2:GD", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Guadeloupe", "alpha-2": "GP", "alpha-3": "GLP", "country-code": "312", "iso_3166-2": "ISO 3166-2:GP", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Guam", "alpha-2": "GU", "alpha-3": "GUM", "country-code": "316", "iso_3166-2": "ISO 3166-2:GU", "region": "Oceania", "sub-region": "Micronesia", "region-code": "009", "sub-region-code": "057" }, { "name": "Guatemala", "alpha-2": "GT", "alpha-3": "GTM", "country-code": "320", "iso_3166-2": "ISO 3166-2:GT", "region": "Americas", "sub-region": "Central America", "region-code": "019", "sub-region-code": "013" }, { "name": "Guernsey", "alpha-2": "GG", "alpha-3": "GGY", "country-code": "831", "iso_3166-2": "ISO 3166-2:GG", "region": "Europe", "sub-region": "Northern Europe", "region-code": "150", "sub-region-code": "154" }, { "name": "Guinea", "alpha-2": "GN", "alpha-3": "GIN", "country-code": "324", "iso_3166-2": "ISO 3166-2:GN", "region": "Africa", "sub-region": "Western Africa", "region-code": "002", "sub-region-code": "011" }, { "name": "Guinea-Bissau", "alpha-2": "GW", "alpha-3": "GNB", "country-code": "624", "iso_3166-2": "ISO 3166-2:GW", "region": "Africa", "sub-region": "Western Africa", "region-code": "002", "sub-region-code": "011" }, { "name": "Guyana", "alpha-2": "GY", "alpha-3": "GUY", "country-code": "328", "iso_3166-2": "ISO 3166-2:GY", "region": "Americas", "sub-region": "South America", "region-code": "019", "sub-region-code": "005" }, { "name": "Haiti", "alpha-2": "HT", "alpha-3": "HTI", "country-code": "332", "iso_3166-2": "ISO 3166-2:HT", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Heard Island and McDonald Islands", "alpha-2": "HM", "alpha-3": "HMD", "country-code": "334", "iso_3166-2": "ISO 3166-2:HM", "sub-region-code": null, "region-code": null, "sub-region": null, "region": null }, { "name": "Holy See", "alpha-2": "VA", "alpha-3": "VAT", "country-code": "336", "iso_3166-2": "ISO 3166-2:VA", "region": "Europe", "sub-region": "Southern Europe", "region-code": "150", "sub-region-code": "039" }, { "name": "Honduras", "alpha-2": "HN", "alpha-3": "HND", "country-code": "340", "iso_3166-2": "ISO 3166-2:HN", "region": "Americas", "sub-region": "Central America", "region-code": "019", "sub-region-code": "013" }, { "name": "Hong Kong", "alpha-2": "HK", "alpha-3": "HKG", "country-code": "344", "iso_3166-2": "ISO 3166-2:HK", "region": "Asia", "sub-region": "Eastern Asia", "region-code": "142", "sub-region-code": "030" }, { "name": "Hungary", "alpha-2": "HU", "alpha-3": "HUN", "country-code": "348", "iso_3166-2": "ISO 3166-2:HU", "region": "Europe", "sub-region": "Eastern Europe", "region-code": "150", "sub-region-code": "151" }, { "name": "Iceland", "alpha-2": "IS", "alpha-3": "ISL", "country-code": "352", "iso_3166-2": "ISO 3166-2:IS", "region": "Europe", "sub-region": "Northern Europe", "region-code": "150", "sub-region-code": "154" }, { "name": "India", "alpha-2": "IN", "alpha-3": "IND", "country-code": "356", "iso_3166-2": "ISO 3166-2:IN", "region": "Asia", "sub-region": "Southern Asia", "region-code": "142", "sub-region-code": "034" }, { "name": "Indonesia", "alpha-2": "ID", "alpha-3": "IDN", "country-code": "360", "iso_3166-2": "ISO 3166-2:ID", "region": "Asia", "sub-region": "South-Eastern Asia", "region-code": "142", "sub-region-code": "035" }, { "name": "Iran (Islamic Republic of)", "alpha-2": "IR", "alpha-3": "IRN", "country-code": "364", "iso_3166-2": "ISO 3166-2:IR", "region": "Asia", "sub-region": "Southern Asia", "region-code": "142", "sub-region-code": "034" }, { "name": "Iraq", "alpha-2": "IQ", "alpha-3": "IRQ", "country-code": "368", "iso_3166-2": "ISO 3166-2:IQ", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "Ireland", "alpha-2": "IE", "alpha-3": "IRL", "country-code": "372", "iso_3166-2": "ISO 3166-2:IE", "region": "Europe", "sub-region": "Northern Europe", "region-code": "150", "sub-region-code": "154" }, { "name": "Isle of Man", "alpha-2": "IM", "alpha-3": "IMN", "country-code": "833", "iso_3166-2": "ISO 3166-2:IM", "region": "Europe", "sub-region": "Northern Europe", "region-code": "150", "sub-region-code": "154" }, { "name": "Israel", "alpha-2": "IL", "alpha-3": "ISR", "country-code": "376", "iso_3166-2": "ISO 3166-2:IL", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "Italy", "alpha-2": "IT", "alpha-3": "ITA", "country-code": "380", "iso_3166-2": "ISO 3166-2:IT", "region": "Europe", "sub-region": "Southern Europe", "region-code": "150", "sub-region-code": "039" }, { "name": "Jamaica", "alpha-2": "JM", "alpha-3": "JAM", "country-code": "388", "iso_3166-2": "ISO 3166-2:JM", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Japan", "alpha-2": "JP", "alpha-3": "JPN", "country-code": "392", "iso_3166-2": "ISO 3166-2:JP", "region": "Asia", "sub-region": "Eastern Asia", "region-code": "142", "sub-region-code": "030" }, { "name": "Jersey", "alpha-2": "JE", "alpha-3": "JEY", "country-code": "832", "iso_3166-2": "ISO 3166-2:JE", "region": "Europe", "sub-region": "Northern Europe", "region-code": "150", "sub-region-code": "154" }, { "name": "Jordan", "alpha-2": "JO", "alpha-3": "JOR", "country-code": "400", "iso_3166-2": "ISO 3166-2:JO", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "Kazakhstan", "alpha-2": "KZ", "alpha-3": "KAZ", "country-code": "398", "iso_3166-2": "ISO 3166-2:KZ", "region": "Asia", "sub-region": "Central Asia", "region-code": "142", "sub-region-code": "143" }, { "name": "Kenya", "alpha-2": "KE", "alpha-3": "KEN", "country-code": "404", "iso_3166-2": "ISO 3166-2:KE", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Kiribati", "alpha-2": "KI", "alpha-3": "KIR", "country-code": "296", "iso_3166-2": "ISO 3166-2:KI", "region": "Oceania", "sub-region": "Micronesia", "region-code": "009", "sub-region-code": "057" }, { "name": "Korea (Democratic People's Republic of)", "alpha-2": "KP", "alpha-3": "PRK", "country-code": "408", "iso_3166-2": "ISO 3166-2:KP", "region": "Asia", "sub-region": "Eastern Asia", "region-code": "142", "sub-region-code": "030" }, { "name": "Korea (Republic of)", "alpha-2": "KR", "alpha-3": "KOR", "country-code": "410", "iso_3166-2": "ISO 3166-2:KR", "region": "Asia", "sub-region": "Eastern Asia", "region-code": "142", "sub-region-code": "030" }, { "name": "Kuwait", "alpha-2": "KW", "alpha-3": "KWT", "country-code": "414", "iso_3166-2": "ISO 3166-2:KW", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "Kyrgyzstan", "alpha-2": "KG", "alpha-3": "KGZ", "country-code": "417", "iso_3166-2": "ISO 3166-2:KG", "region": "Asia", "sub-region": "Central Asia", "region-code": "142", "sub-region-code": "143" }, { "name": "Lao People's Democratic Republic", "alpha-2": "LA", "alpha-3": "LAO", "country-code": "418", "iso_3166-2": "ISO 3166-2:LA", "region": "Asia", "sub-region": "South-Eastern Asia", "region-code": "142", "sub-region-code": "035" }, { "name": "Latvia", "alpha-2": "LV", "alpha-3": "LVA", "country-code": "428", "iso_3166-2": "ISO 3166-2:LV", "region": "Europe", "sub-region": "Northern Europe", "region-code": "150", "sub-region-code": "154" }, { "name": "Lebanon", "alpha-2": "LB", "alpha-3": "LBN", "country-code": "422", "iso_3166-2": "ISO 3166-2:LB", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "Lesotho", "alpha-2": "LS", "alpha-3": "LSO", "country-code": "426", "iso_3166-2": "ISO 3166-2:LS", "region": "Africa", "sub-region": "Southern Africa", "region-code": "002", "sub-region-code": "018" }, { "name": "Liberia", "alpha-2": "LR", "alpha-3": "LBR", "country-code": "430", "iso_3166-2": "ISO 3166-2:LR", "region": "Africa", "sub-region": "Western Africa", "region-code": "002", "sub-region-code": "011" }, { "name": "Libya", "alpha-2": "LY", "alpha-3": "LBY", "country-code": "434", "iso_3166-2": "ISO 3166-2:LY", "region": "Africa", "sub-region": "Northern Africa", "region-code": "002", "sub-region-code": "015" }, { "name": "Liechtenstein", "alpha-2": "LI", "alpha-3": "LIE", "country-code": "438", "iso_3166-2": "ISO 3166-2:LI", "region": "Europe", "sub-region": "Western Europe", "region-code": "150", "sub-region-code": "155" }, { "name": "Lithuania", "alpha-2": "LT", "alpha-3": "LTU", "country-code": "440", "iso_3166-2": "ISO 3166-2:LT", "region": "Europe", "sub-region": "Northern Europe", "region-code": "150", "sub-region-code": "154" }, { "name": "Luxembourg", "alpha-2": "LU", "alpha-3": "LUX", "country-code": "442", "iso_3166-2": "ISO 3166-2:LU", "region": "Europe", "sub-region": "Western Europe", "region-code": "150", "sub-region-code": "155" }, { "name": "Macao", "alpha-2": "MO", "alpha-3": "MAC", "country-code": "446", "iso_3166-2": "ISO 3166-2:MO", "region": "Asia", "sub-region": "Eastern Asia", "region-code": "142", "sub-region-code": "030" }, { "name": "Macedonia (the former Yugoslav Republic of)", "alpha-2": "MK", "alpha-3": "MKD", "country-code": "807", "iso_3166-2": "ISO 3166-2:MK", "region": "Europe", "sub-region": "Southern Europe", "region-code": "150", "sub-region-code": "039" }, { "name": "Madagascar", "alpha-2": "MG", "alpha-3": "MDG", "country-code": "450", "iso_3166-2": "ISO 3166-2:MG", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Malawi", "alpha-2": "MW", "alpha-3": "MWI", "country-code": "454", "iso_3166-2": "ISO 3166-2:MW", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Malaysia", "alpha-2": "MY", "alpha-3": "MYS", "country-code": "458", "iso_3166-2": "ISO 3166-2:MY", "region": "Asia", "sub-region": "South-Eastern Asia", "region-code": "142", "sub-region-code": "035" }, { "name": "Maldives", "alpha-2": "MV", "alpha-3": "MDV", "country-code": "462", "iso_3166-2": "ISO 3166-2:MV", "region": "Asia", "sub-region": "Southern Asia", "region-code": "142", "sub-region-code": "034" }, { "name": "Mali", "alpha-2": "ML", "alpha-3": "MLI", "country-code": "466", "iso_3166-2": "ISO 3166-2:ML", "region": "Africa", "sub-region": "Western Africa", "region-code": "002", "sub-region-code": "011" }, { "name": "Malta", "alpha-2": "MT", "alpha-3": "MLT", "country-code": "470", "iso_3166-2": "ISO 3166-2:MT", "region": "Europe", "sub-region": "Southern Europe", "region-code": "150", "sub-region-code": "039" }, { "name": "Marshall Islands", "alpha-2": "MH", "alpha-3": "MHL", "country-code": "584", "iso_3166-2": "ISO 3166-2:MH", "region": "Oceania", "sub-region": "Micronesia", "region-code": "009", "sub-region-code": "057" }, { "name": "Martinique", "alpha-2": "MQ", "alpha-3": "MTQ", "country-code": "474", "iso_3166-2": "ISO 3166-2:MQ", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Mauritania", "alpha-2": "MR", "alpha-3": "MRT", "country-code": "478", "iso_3166-2": "ISO 3166-2:MR", "region": "Africa", "sub-region": "Western Africa", "region-code": "002", "sub-region-code": "011" }, { "name": "Mauritius", "alpha-2": "MU", "alpha-3": "MUS", "country-code": "480", "iso_3166-2": "ISO 3166-2:MU", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Mayotte", "alpha-2": "YT", "alpha-3": "MYT", "country-code": "175", "iso_3166-2": "ISO 3166-2:YT", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Mexico", "alpha-2": "MX", "alpha-3": "MEX", "country-code": "484", "iso_3166-2": "ISO 3166-2:MX", "region": "Americas", "sub-region": "Central America", "region-code": "019", "sub-region-code": "013" }, { "name": "Micronesia (Federated States of)", "alpha-2": "FM", "alpha-3": "FSM", "country-code": "583", "iso_3166-2": "ISO 3166-2:FM", "region": "Oceania", "sub-region": "Micronesia", "region-code": "009", "sub-region-code": "057" }, { "name": "Moldova (Republic of)", "alpha-2": "MD", "alpha-3": "MDA", "country-code": "498", "iso_3166-2": "ISO 3166-2:MD", "region": "Europe", "sub-region": "Eastern Europe", "region-code": "150", "sub-region-code": "151" }, { "name": "Monaco", "alpha-2": "MC", "alpha-3": "MCO", "country-code": "492", "iso_3166-2": "ISO 3166-2:MC", "region": "Europe", "sub-region": "Western Europe", "region-code": "150", "sub-region-code": "155" }, { "name": "Mongolia", "alpha-2": "MN", "alpha-3": "MNG", "country-code": "496", "iso_3166-2": "ISO 3166-2:MN", "region": "Asia", "sub-region": "Eastern Asia", "region-code": "142", "sub-region-code": "030" }, { "name": "Montenegro", "alpha-2": "ME", "alpha-3": "MNE", "country-code": "499", "iso_3166-2": "ISO 3166-2:ME", "region": "Europe", "sub-region": "Southern Europe", "region-code": "150", "sub-region-code": "039" }, { "name": "Montserrat", "alpha-2": "MS", "alpha-3": "MSR", "country-code": "500", "iso_3166-2": "ISO 3166-2:MS", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Morocco", "alpha-2": "MA", "alpha-3": "MAR", "country-code": "504", "iso_3166-2": "ISO 3166-2:MA", "region": "Africa", "sub-region": "Northern Africa", "region-code": "002", "sub-region-code": "015" }, { "name": "Mozambique", "alpha-2": "MZ", "alpha-3": "MOZ", "country-code": "508", "iso_3166-2": "ISO 3166-2:MZ", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Myanmar", "alpha-2": "MM", "alpha-3": "MMR", "country-code": "104", "iso_3166-2": "ISO 3166-2:MM", "region": "Asia", "sub-region": "South-Eastern Asia", "region-code": "142", "sub-region-code": "035" }, { "name": "Namibia", "alpha-2": "NA", "alpha-3": "NAM", "country-code": "516", "iso_3166-2": "ISO 3166-2:NA", "region": "Africa", "sub-region": "Southern Africa", "region-code": "002", "sub-region-code": "018" }, { "name": "Nauru", "alpha-2": "NR", "alpha-3": "NRU", "country-code": "520", "iso_3166-2": "ISO 3166-2:NR", "region": "Oceania", "sub-region": "Micronesia", "region-code": "009", "sub-region-code": "057" }, { "name": "Nepal", "alpha-2": "NP", "alpha-3": "NPL", "country-code": "524", "iso_3166-2": "ISO 3166-2:NP", "region": "Asia", "sub-region": "Southern Asia", "region-code": "142", "sub-region-code": "034" }, { "name": "Netherlands", "alpha-2": "NL", "alpha-3": "NLD", "country-code": "528", "iso_3166-2": "ISO 3166-2:NL", "region": "Europe", "sub-region": "Western Europe", "region-code": "150", "sub-region-code": "155" }, { "name": "New Caledonia", "alpha-2": "NC", "alpha-3": "NCL", "country-code": "540", "iso_3166-2": "ISO 3166-2:NC", "region": "Oceania", "sub-region": "Melanesia", "region-code": "009", "sub-region-code": "054" }, { "name": "New Zealand", "alpha-2": "NZ", "alpha-3": "NZL", "country-code": "554", "iso_3166-2": "ISO 3166-2:NZ", "region": "Oceania", "sub-region": "Australia and New Zealand", "region-code": "009", "sub-region-code": "053" }, { "name": "Nicaragua", "alpha-2": "NI", "alpha-3": "NIC", "country-code": "558", "iso_3166-2": "ISO 3166-2:NI", "region": "Americas", "sub-region": "Central America", "region-code": "019", "sub-region-code": "013" }, { "name": "Niger", "alpha-2": "NE", "alpha-3": "NER", "country-code": "562", "iso_3166-2": "ISO 3166-2:NE", "region": "Africa", "sub-region": "Western Africa", "region-code": "002", "sub-region-code": "011" }, { "name": "Nigeria", "alpha-2": "NG", "alpha-3": "NGA", "country-code": "566", "iso_3166-2": "ISO 3166-2:NG", "region": "Africa", "sub-region": "Western Africa", "region-code": "002", "sub-region-code": "011" }, { "name": "Niue", "alpha-2": "NU", "alpha-3": "NIU", "country-code": "570", "iso_3166-2": "ISO 3166-2:NU", "region": "Oceania", "sub-region": "Polynesia", "region-code": "009", "sub-region-code": "061" }, { "name": "Norfolk Island", "alpha-2": "NF", "alpha-3": "NFK", "country-code": "574", "iso_3166-2": "ISO 3166-2:NF", "region": "Oceania", "sub-region": "Australia and New Zealand", "region-code": "009", "sub-region-code": "053" }, { "name": "Northern Mariana Islands", "alpha-2": "MP", "alpha-3": "MNP", "country-code": "580", "iso_3166-2": "ISO 3166-2:MP", "region": "Oceania", "sub-region": "Micronesia", "region-code": "009", "sub-region-code": "057" }, { "name": "Norway", "alpha-2": "NO", "alpha-3": "NOR", "country-code": "578", "iso_3166-2": "ISO 3166-2:NO", "region": "Europe", "sub-region": "Northern Europe", "region-code": "150", "sub-region-code": "154" }, { "name": "Oman", "alpha-2": "OM", "alpha-3": "OMN", "country-code": "512", "iso_3166-2": "ISO 3166-2:OM", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "Pakistan", "alpha-2": "PK", "alpha-3": "PAK", "country-code": "586", "iso_3166-2": "ISO 3166-2:PK", "region": "Asia", "sub-region": "Southern Asia", "region-code": "142", "sub-region-code": "034" }, { "name": "Palau", "alpha-2": "PW", "alpha-3": "PLW", "country-code": "585", "iso_3166-2": "ISO 3166-2:PW", "region": "Oceania", "sub-region": "Micronesia", "region-code": "009", "sub-region-code": "057" }, { "name": "Palestine, State of", "alpha-2": "PS", "alpha-3": "PSE", "country-code": "275", "iso_3166-2": "ISO 3166-2:PS", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "Panama", "alpha-2": "PA", "alpha-3": "PAN", "country-code": "591", "iso_3166-2": "ISO 3166-2:PA", "region": "Americas", "sub-region": "Central America", "region-code": "019", "sub-region-code": "013" }, { "name": "Papua New Guinea", "alpha-2": "PG", "alpha-3": "PNG", "country-code": "598", "iso_3166-2": "ISO 3166-2:PG", "region": "Oceania", "sub-region": "Melanesia", "region-code": "009", "sub-region-code": "054" }, { "name": "Paraguay", "alpha-2": "PY", "alpha-3": "PRY", "country-code": "600", "iso_3166-2": "ISO 3166-2:PY", "region": "Americas", "sub-region": "South America", "region-code": "019", "sub-region-code": "005" }, { "name": "Peru", "alpha-2": "PE", "alpha-3": "PER", "country-code": "604", "iso_3166-2": "ISO 3166-2:PE", "region": "Americas", "sub-region": "South America", "region-code": "019", "sub-region-code": "005" }, { "name": "Philippines", "alpha-2": "PH", "alpha-3": "PHL", "country-code": "608", "iso_3166-2": "ISO 3166-2:PH", "region": "Asia", "sub-region": "South-Eastern Asia", "region-code": "142", "sub-region-code": "035" }, { "name": "Pitcairn", "alpha-2": "PN", "alpha-3": "PCN", "country-code": "612", "iso_3166-2": "ISO 3166-2:PN", "region": "Oceania", "sub-region": "Polynesia", "region-code": "009", "sub-region-code": "061" }, { "name": "Poland", "alpha-2": "PL", "alpha-3": "POL", "country-code": "616", "iso_3166-2": "ISO 3166-2:PL", "region": "Europe", "sub-region": "Eastern Europe", "region-code": "150", "sub-region-code": "151" }, { "name": "Portugal", "alpha-2": "PT", "alpha-3": "PRT", "country-code": "620", "iso_3166-2": "ISO 3166-2:PT", "region": "Europe", "sub-region": "Southern Europe", "region-code": "150", "sub-region-code": "039" }, { "name": "Puerto Rico", "alpha-2": "PR", "alpha-3": "PRI", "country-code": "630", "iso_3166-2": "ISO 3166-2:PR", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Qatar", "alpha-2": "QA", "alpha-3": "QAT", "country-code": "634", "iso_3166-2": "ISO 3166-2:QA", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "Réunion", "alpha-2": "RE", "alpha-3": "REU", "country-code": "638", "iso_3166-2": "ISO 3166-2:RE", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Romania", "alpha-2": "RO", "alpha-3": "ROU", "country-code": "642", "iso_3166-2": "ISO 3166-2:RO", "region": "Europe", "sub-region": "Eastern Europe", "region-code": "150", "sub-region-code": "151" }, { "name": "Russian Federation", "alpha-2": "RU", "alpha-3": "RUS", "country-code": "643", "iso_3166-2": "ISO 3166-2:RU", "region": "Europe", "sub-region": "Eastern Europe", "region-code": "150", "sub-region-code": "151" }, { "name": "Rwanda", "alpha-2": "RW", "alpha-3": "RWA", "country-code": "646", "iso_3166-2": "ISO 3166-2:RW", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Saint Barthélemy", "alpha-2": "BL", "alpha-3": "BLM", "country-code": "652", "iso_3166-2": "ISO 3166-2:BL", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Saint Helena, Ascension and Tristan da Cunha", "alpha-2": "SH", "alpha-3": "SHN", "country-code": "654", "iso_3166-2": "ISO 3166-2:SH", "region": "Africa", "sub-region": "Western Africa", "region-code": "002", "sub-region-code": "011" }, { "name": "Saint Kitts and Nevis", "alpha-2": "KN", "alpha-3": "KNA", "country-code": "659", "iso_3166-2": "ISO 3166-2:KN", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Saint Lucia", "alpha-2": "LC", "alpha-3": "LCA", "country-code": "662", "iso_3166-2": "ISO 3166-2:LC", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Saint Martin (French part)", "alpha-2": "MF", "alpha-3": "MAF", "country-code": "663", "iso_3166-2": "ISO 3166-2:MF", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Saint Pierre and Miquelon", "alpha-2": "PM", "alpha-3": "SPM", "country-code": "666", "iso_3166-2": "ISO 3166-2:PM", "region": "Americas", "sub-region": "Northern America", "region-code": "019", "sub-region-code": "021" }, { "name": "Saint Vincent and the Grenadines", "alpha-2": "VC", "alpha-3": "VCT", "country-code": "670", "iso_3166-2": "ISO 3166-2:VC", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Samoa", "alpha-2": "WS", "alpha-3": "WSM", "country-code": "882", "iso_3166-2": "ISO 3166-2:WS", "region": "Oceania", "sub-region": "Polynesia", "region-code": "009", "sub-region-code": "061" }, { "name": "San Marino", "alpha-2": "SM", "alpha-3": "SMR", "country-code": "674", "iso_3166-2": "ISO 3166-2:SM", "region": "Europe", "sub-region": "Southern Europe", "region-code": "150", "sub-region-code": "039" }, { "name": "Sao Tome and Principe", "alpha-2": "ST", "alpha-3": "STP", "country-code": "678", "iso_3166-2": "ISO 3166-2:ST", "region": "Africa", "sub-region": "Middle Africa", "region-code": "002", "sub-region-code": "017" }, { "name": "Saudi Arabia", "alpha-2": "SA", "alpha-3": "SAU", "country-code": "682", "iso_3166-2": "ISO 3166-2:SA", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "Senegal", "alpha-2": "SN", "alpha-3": "SEN", "country-code": "686", "iso_3166-2": "ISO 3166-2:SN", "region": "Africa", "sub-region": "Western Africa", "region-code": "002", "sub-region-code": "011" }, { "name": "Serbia", "alpha-2": "RS", "alpha-3": "SRB", "country-code": "688", "iso_3166-2": "ISO 3166-2:RS", "region": "Europe", "sub-region": "Southern Europe", "region-code": "150", "sub-region-code": "039" }, { "name": "Seychelles", "alpha-2": "SC", "alpha-3": "SYC", "country-code": "690", "iso_3166-2": "ISO 3166-2:SC", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Sierra Leone", "alpha-2": "SL", "alpha-3": "SLE", "country-code": "694", "iso_3166-2": "ISO 3166-2:SL", "region": "Africa", "sub-region": "Western Africa", "region-code": "002", "sub-region-code": "011" }, { "name": "Singapore", "alpha-2": "SG", "alpha-3": "SGP", "country-code": "702", "iso_3166-2": "ISO 3166-2:SG", "region": "Asia", "sub-region": "South-Eastern Asia", "region-code": "142", "sub-region-code": "035" }, { "name": "Sint Maarten (Dutch part)", "alpha-2": "SX", "alpha-3": "SXM", "country-code": "534", "iso_3166-2": "ISO 3166-2:SX", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Slovakia", "alpha-2": "SK", "alpha-3": "SVK", "country-code": "703", "iso_3166-2": "ISO 3166-2:SK", "region": "Europe", "sub-region": "Eastern Europe", "region-code": "150", "sub-region-code": "151" }, { "name": "Slovenia", "alpha-2": "SI", "alpha-3": "SVN", "country-code": "705", "iso_3166-2": "ISO 3166-2:SI", "region": "Europe", "sub-region": "Southern Europe", "region-code": "150", "sub-region-code": "039" }, { "name": "Solomon Islands", "alpha-2": "SB", "alpha-3": "SLB", "country-code": "090", "iso_3166-2": "ISO 3166-2:SB", "region": "Oceania", "sub-region": "Melanesia", "region-code": "009", "sub-region-code": "054" }, { "name": "Somalia", "alpha-2": "SO", "alpha-3": "SOM", "country-code": "706", "iso_3166-2": "ISO 3166-2:SO", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "South Africa", "alpha-2": "ZA", "alpha-3": "ZAF", "country-code": "710", "iso_3166-2": "ISO 3166-2:ZA", "region": "Africa", "sub-region": "Southern Africa", "region-code": "002", "sub-region-code": "018" }, { "name": "South Georgia and the South Sandwich Islands", "alpha-2": "GS", "alpha-3": "SGS", "country-code": "239", "iso_3166-2": "ISO 3166-2:GS", "sub-region-code": null, "region-code": null, "sub-region": null, "region": null }, { "name": "South Sudan", "alpha-2": "SS", "alpha-3": "SSD", "country-code": "728", "iso_3166-2": "ISO 3166-2:SS", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Spain", "alpha-2": "ES", "alpha-3": "ESP", "country-code": "724", "iso_3166-2": "ISO 3166-2:ES", "region": "Europe", "sub-region": "Southern Europe", "region-code": "150", "sub-region-code": "039" }, { "name": "Sri Lanka", "alpha-2": "LK", "alpha-3": "LKA", "country-code": "144", "iso_3166-2": "ISO 3166-2:LK", "region": "Asia", "sub-region": "Southern Asia", "region-code": "142", "sub-region-code": "034" }, { "name": "Sudan", "alpha-2": "SD", "alpha-3": "SDN", "country-code": "729", "iso_3166-2": "ISO 3166-2:SD", "region": "Africa", "sub-region": "Northern Africa", "region-code": "002", "sub-region-code": "015" }, { "name": "Suriname", "alpha-2": "SR", "alpha-3": "SUR", "country-code": "740", "iso_3166-2": "ISO 3166-2:SR", "region": "Americas", "sub-region": "South America", "region-code": "019", "sub-region-code": "005" }, { "name": "Svalbard and Jan Mayen", "alpha-2": "SJ", "alpha-3": "SJM", "country-code": "744", "iso_3166-2": "ISO 3166-2:SJ", "region": "Europe", "sub-region": "Northern Europe", "region-code": "150", "sub-region-code": "154" }, { "name": "Swaziland", "alpha-2": "SZ", "alpha-3": "SWZ", "country-code": "748", "iso_3166-2": "ISO 3166-2:SZ", "region": "Africa", "sub-region": "Southern Africa", "region-code": "002", "sub-region-code": "018" }, { "name": "Sweden", "alpha-2": "SE", "alpha-3": "SWE", "country-code": "752", "iso_3166-2": "ISO 3166-2:SE", "region": "Europe", "sub-region": "Northern Europe", "region-code": "150", "sub-region-code": "154" }, { "name": "Switzerland", "alpha-2": "CH", "alpha-3": "CHE", "country-code": "756", "iso_3166-2": "ISO 3166-2:CH", "region": "Europe", "sub-region": "Western Europe", "region-code": "150", "sub-region-code": "155" }, { "name": "Syrian Arab Republic", "alpha-2": "SY", "alpha-3": "SYR", "country-code": "760", "iso_3166-2": "ISO 3166-2:SY", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "Taiwan, Province of China", "alpha-2": "TW", "alpha-3": "TWN", "country-code": "158", "iso_3166-2": "ISO 3166-2:TW", "region": "Asia", "sub-region": "Eastern Asia", "region-code": "142", "sub-region-code": "030" }, { "name": "Tajikistan", "alpha-2": "TJ", "alpha-3": "TJK", "country-code": "762", "iso_3166-2": "ISO 3166-2:TJ", "region": "Asia", "sub-region": "Central Asia", "region-code": "142", "sub-region-code": "143" }, { "name": "Tanzania, United Republic of", "alpha-2": "TZ", "alpha-3": "TZA", "country-code": "834", "iso_3166-2": "ISO 3166-2:TZ", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Thailand", "alpha-2": "TH", "alpha-3": "THA", "country-code": "764", "iso_3166-2": "ISO 3166-2:TH", "region": "Asia", "sub-region": "South-Eastern Asia", "region-code": "142", "sub-region-code": "035" }, { "name": "Timor-Leste", "alpha-2": "TL", "alpha-3": "TLS", "country-code": "626", "iso_3166-2": "ISO 3166-2:TL", "region": "Asia", "sub-region": "South-Eastern Asia", "region-code": "142", "sub-region-code": "035" }, { "name": "Togo", "alpha-2": "TG", "alpha-3": "TGO", "country-code": "768", "iso_3166-2": "ISO 3166-2:TG", "region": "Africa", "sub-region": "Western Africa", "region-code": "002", "sub-region-code": "011" }, { "name": "Tokelau", "alpha-2": "TK", "alpha-3": "TKL", "country-code": "772", "iso_3166-2": "ISO 3166-2:TK", "region": "Oceania", "sub-region": "Polynesia", "region-code": "009", "sub-region-code": "061" }, { "name": "Tonga", "alpha-2": "TO", "alpha-3": "TON", "country-code": "776", "iso_3166-2": "ISO 3166-2:TO", "region": "Oceania", "sub-region": "Polynesia", "region-code": "009", "sub-region-code": "061" }, { "name": "Trinidad and Tobago", "alpha-2": "TT", "alpha-3": "TTO", "country-code": "780", "iso_3166-2": "ISO 3166-2:TT", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Tunisia", "alpha-2": "TN", "alpha-3": "TUN", "country-code": "788", "iso_3166-2": "ISO 3166-2:TN", "region": "Africa", "sub-region": "Northern Africa", "region-code": "002", "sub-region-code": "015" }, { "name": "Turkey", "alpha-2": "TR", "alpha-3": "TUR", "country-code": "792", "iso_3166-2": "ISO 3166-2:TR", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "Turkmenistan", "alpha-2": "TM", "alpha-3": "TKM", "country-code": "795", "iso_3166-2": "ISO 3166-2:TM", "region": "Asia", "sub-region": "Central Asia", "region-code": "142", "sub-region-code": "143" }, { "name": "Turks and Caicos Islands", "alpha-2": "TC", "alpha-3": "TCA", "country-code": "796", "iso_3166-2": "ISO 3166-2:TC", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Tuvalu", "alpha-2": "TV", "alpha-3": "TUV", "country-code": "798", "iso_3166-2": "ISO 3166-2:TV", "region": "Oceania", "sub-region": "Polynesia", "region-code": "009", "sub-region-code": "061" }, { "name": "Uganda", "alpha-2": "UG", "alpha-3": "UGA", "country-code": "800", "iso_3166-2": "ISO 3166-2:UG", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Ukraine", "alpha-2": "UA", "alpha-3": "UKR", "country-code": "804", "iso_3166-2": "ISO 3166-2:UA", "region": "Europe", "sub-region": "Eastern Europe", "region-code": "150", "sub-region-code": "151" }, { "name": "United Arab Emirates", "alpha-2": "AE", "alpha-3": "ARE", "country-code": "784", "iso_3166-2": "ISO 3166-2:AE", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "United Kingdom of Great Britain and Northern Ireland", "alpha-2": "GB", "alpha-3": "GBR", "country-code": "826", "iso_3166-2": "ISO 3166-2:GB", "region": "Europe", "sub-region": "Northern Europe", "region-code": "150", "sub-region-code": "154" }, { "name": "United States of America", "alpha-2": "US", "alpha-3": "USA", "country-code": "840", "iso_3166-2": "ISO 3166-2:US", "region": "Americas", "sub-region": "Northern America", "region-code": "019", "sub-region-code": "021" }, { "name": "United States Minor Outlying Islands", "alpha-2": "UM", "alpha-3": "UMI", "country-code": "581", "iso_3166-2": "ISO 3166-2:UM", "sub-region-code": null, "region-code": null, "sub-region": null, "region": null }, { "name": "Uruguay", "alpha-2": "UY", "alpha-3": "URY", "country-code": "858", "iso_3166-2": "ISO 3166-2:UY", "region": "Americas", "sub-region": "South America", "region-code": "019", "sub-region-code": "005" }, { "name": "Uzbekistan", "alpha-2": "UZ", "alpha-3": "UZB", "country-code": "860", "iso_3166-2": "ISO 3166-2:UZ", "region": "Asia", "sub-region": "Central Asia", "region-code": "142", "sub-region-code": "143" }, { "name": "Vanuatu", "alpha-2": "VU", "alpha-3": "VUT", "country-code": "548", "iso_3166-2": "ISO 3166-2:VU", "region": "Oceania", "sub-region": "Melanesia", "region-code": "009", "sub-region-code": "054" }, { "name": "Venezuela (Bolivarian Republic of)", "alpha-2": "VE", "alpha-3": "VEN", "country-code": "862", "iso_3166-2": "ISO 3166-2:VE", "region": "Americas", "sub-region": "South America", "region-code": "019", "sub-region-code": "005" }, { "name": "Viet Nam", "alpha-2": "VN", "alpha-3": "VNM", "country-code": "704", "iso_3166-2": "ISO 3166-2:VN", "region": "Asia", "sub-region": "South-Eastern Asia", "region-code": "142", "sub-region-code": "035" }, { "name": "Virgin Islands (British)", "alpha-2": "VG", "alpha-3": "VGB", "country-code": "092", "iso_3166-2": "ISO 3166-2:VG", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Virgin Islands (U.S.)", "alpha-2": "VI", "alpha-3": "VIR", "country-code": "850", "iso_3166-2": "ISO 3166-2:VI", "region": "Americas", "sub-region": "Caribbean", "region-code": "019", "sub-region-code": "029" }, { "name": "Wallis and Futuna", "alpha-2": "WF", "alpha-3": "WLF", "country-code": "876", "iso_3166-2": "ISO 3166-2:WF", "region": "Oceania", "sub-region": "Polynesia", "region-code": "009", "sub-region-code": "061" }, { "name": "Western Sahara", "alpha-2": "EH", "alpha-3": "ESH", "country-code": "732", "iso_3166-2": "ISO 3166-2:EH", "region": "Africa", "sub-region": "Northern Africa", "region-code": "002", "sub-region-code": "015" }, { "name": "Yemen", "alpha-2": "YE", "alpha-3": "YEM", "country-code": "887", "iso_3166-2": "ISO 3166-2:YE", "region": "Asia", "sub-region": "Western Asia", "region-code": "142", "sub-region-code": "145" }, { "name": "Zambia", "alpha-2": "ZM", "alpha-3": "ZMB", "country-code": "894", "iso_3166-2": "ISO 3166-2:ZM", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" }, { "name": "Zimbabwe", "alpha-2": "ZW", "alpha-3": "ZWE", "country-code": "716", "iso_3166-2": "ISO 3166-2:ZW", "region": "Africa", "sub-region": "Eastern Africa", "region-code": "002", "sub-region-code": "014" } ] \ No newline at end of file +[ + { + "name": "Afghanistan", + "alpha-2": "AF", + "alpha-3": "AFG", + "country-code": "004", + "iso_3166-2": "ISO 3166-2:AF", + "region": "Asia", + "sub-region": "Southern Asia", + "region-code": "142", + "sub-region-code": "034" + }, + { + "name": "Åland Islands", + "alpha-2": "AX", + "alpha-3": "ALA", + "country-code": "248", + "iso_3166-2": "ISO 3166-2:AX", + "sub-region-code": "154", + "region-code": "150", + "sub-region": "Northern Europe", + "region": "Europe" + }, + { + "name": "Albania", + "alpha-2": "AL", + "alpha-3": "ALB", + "country-code": "008", + "iso_3166-2": "ISO 3166-2:AL", + "region": "Europe", + "sub-region": "Southern Europe", + "region-code": "150", + "sub-region-code": "039" + }, + { + "name": "Algeria", + "alpha-2": "DZ", + "alpha-3": "DZA", + "country-code": "012", + "iso_3166-2": "ISO 3166-2:DZ", + "region": "Africa", + "sub-region": "Northern Africa", + "region-code": "002", + "sub-region-code": "015" + }, + { + "name": "American Samoa", + "alpha-2": "AS", + "alpha-3": "ASM", + "country-code": "016", + "iso_3166-2": "ISO 3166-2:AS", + "region": "Oceania", + "sub-region": "Polynesia", + "region-code": "009", + "sub-region-code": "061" + }, + { + "name": "Andorra", + "alpha-2": "AD", + "alpha-3": "AND", + "country-code": "020", + "iso_3166-2": "ISO 3166-2:AD", + "region": "Europe", + "sub-region": "Southern Europe", + "region-code": "150", + "sub-region-code": "039" + }, + { + "name": "Angola", + "alpha-2": "AO", + "alpha-3": "AGO", + "country-code": "024", + "iso_3166-2": "ISO 3166-2:AO", + "region": "Africa", + "sub-region": "Middle Africa", + "region-code": "002", + "sub-region-code": "017" + }, + { + "name": "Anguilla", + "alpha-2": "AI", + "alpha-3": "AIA", + "country-code": "660", + "iso_3166-2": "ISO 3166-2:AI", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Antarctica", + "alpha-2": "AQ", + "alpha-3": "ATA", + "country-code": "010", + "iso_3166-2": "ISO 3166-2:AQ", + "sub-region-code": null, + "region-code": null, + "sub-region": null, + "region": null + }, + { + "name": "Antigua and Barbuda", + "alpha-2": "AG", + "alpha-3": "ATG", + "country-code": "028", + "iso_3166-2": "ISO 3166-2:AG", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Argentina", + "alpha-2": "AR", + "alpha-3": "ARG", + "country-code": "032", + "iso_3166-2": "ISO 3166-2:AR", + "region": "Americas", + "sub-region": "South America", + "region-code": "019", + "sub-region-code": "005" + }, + { + "name": "Armenia", + "alpha-2": "AM", + "alpha-3": "ARM", + "country-code": "051", + "iso_3166-2": "ISO 3166-2:AM", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "Aruba", + "alpha-2": "AW", + "alpha-3": "ABW", + "country-code": "533", + "iso_3166-2": "ISO 3166-2:AW", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Australia", + "alpha-2": "AU", + "alpha-3": "AUS", + "country-code": "036", + "iso_3166-2": "ISO 3166-2:AU", + "region": "Oceania", + "sub-region": "Australia and New Zealand", + "region-code": "009", + "sub-region-code": "053" + }, + { + "name": "Austria", + "alpha-2": "AT", + "alpha-3": "AUT", + "country-code": "040", + "iso_3166-2": "ISO 3166-2:AT", + "region": "Europe", + "sub-region": "Western Europe", + "region-code": "150", + "sub-region-code": "155" + }, + { + "name": "Azerbaijan", + "alpha-2": "AZ", + "alpha-3": "AZE", + "country-code": "031", + "iso_3166-2": "ISO 3166-2:AZ", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "Bahamas", + "alpha-2": "BS", + "alpha-3": "BHS", + "country-code": "044", + "iso_3166-2": "ISO 3166-2:BS", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Bahrain", + "alpha-2": "BH", + "alpha-3": "BHR", + "country-code": "048", + "iso_3166-2": "ISO 3166-2:BH", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "Bangladesh", + "alpha-2": "BD", + "alpha-3": "BGD", + "country-code": "050", + "iso_3166-2": "ISO 3166-2:BD", + "region": "Asia", + "sub-region": "Southern Asia", + "region-code": "142", + "sub-region-code": "034" + }, + { + "name": "Barbados", + "alpha-2": "BB", + "alpha-3": "BRB", + "country-code": "052", + "iso_3166-2": "ISO 3166-2:BB", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Belarus", + "alpha-2": "BY", + "alpha-3": "BLR", + "country-code": "112", + "iso_3166-2": "ISO 3166-2:BY", + "region": "Europe", + "sub-region": "Eastern Europe", + "region-code": "150", + "sub-region-code": "151" + }, + { + "name": "Belgium", + "alpha-2": "BE", + "alpha-3": "BEL", + "country-code": "056", + "iso_3166-2": "ISO 3166-2:BE", + "region": "Europe", + "sub-region": "Western Europe", + "region-code": "150", + "sub-region-code": "155" + }, + { + "name": "Belize", + "alpha-2": "BZ", + "alpha-3": "BLZ", + "country-code": "084", + "iso_3166-2": "ISO 3166-2:BZ", + "region": "Americas", + "sub-region": "Central America", + "region-code": "019", + "sub-region-code": "013" + }, + { + "name": "Benin", + "alpha-2": "BJ", + "alpha-3": "BEN", + "country-code": "204", + "iso_3166-2": "ISO 3166-2:BJ", + "region": "Africa", + "sub-region": "Western Africa", + "region-code": "002", + "sub-region-code": "011" + }, + { + "name": "Bermuda", + "alpha-2": "BM", + "alpha-3": "BMU", + "country-code": "060", + "iso_3166-2": "ISO 3166-2:BM", + "region": "Americas", + "sub-region": "Northern America", + "region-code": "019", + "sub-region-code": "021" + }, + { + "name": "Bhutan", + "alpha-2": "BT", + "alpha-3": "BTN", + "country-code": "064", + "iso_3166-2": "ISO 3166-2:BT", + "region": "Asia", + "sub-region": "Southern Asia", + "region-code": "142", + "sub-region-code": "034" + }, + { + "name": "Bolivia (Plurinational State of)", + "alpha-2": "BO", + "alpha-3": "BOL", + "country-code": "068", + "iso_3166-2": "ISO 3166-2:BO", + "region": "Americas", + "sub-region": "South America", + "region-code": "019", + "sub-region-code": "005" + }, + { + "name": "Bonaire, Sint Eustatius and Saba", + "alpha-2": "BQ", + "alpha-3": "BES", + "country-code": "535", + "iso_3166-2": "ISO 3166-2:BQ", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Bosnia and Herzegovina", + "alpha-2": "BA", + "alpha-3": "BIH", + "country-code": "070", + "iso_3166-2": "ISO 3166-2:BA", + "region": "Europe", + "sub-region": "Southern Europe", + "region-code": "150", + "sub-region-code": "039" + }, + { + "name": "Botswana", + "alpha-2": "BW", + "alpha-3": "BWA", + "country-code": "072", + "iso_3166-2": "ISO 3166-2:BW", + "region": "Africa", + "sub-region": "Southern Africa", + "region-code": "002", + "sub-region-code": "018" + }, + { + "name": "Bouvet Island", + "alpha-2": "BV", + "alpha-3": "BVT", + "country-code": "074", + "iso_3166-2": "ISO 3166-2:BV", + "sub-region-code": null, + "region-code": null, + "sub-region": null, + "region": null + }, + { + "name": "Brazil", + "alpha-2": "BR", + "alpha-3": "BRA", + "country-code": "076", + "iso_3166-2": "ISO 3166-2:BR", + "region": "Americas", + "sub-region": "South America", + "region-code": "019", + "sub-region-code": "005" + }, + { + "name": "British Indian Ocean Territory", + "alpha-2": "IO", + "alpha-3": "IOT", + "country-code": "086", + "iso_3166-2": "ISO 3166-2:IO", + "sub-region-code": null, + "region-code": null, + "sub-region": null, + "region": null + }, + { + "name": "Brunei Darussalam", + "alpha-2": "BN", + "alpha-3": "BRN", + "country-code": "096", + "iso_3166-2": "ISO 3166-2:BN", + "region": "Asia", + "sub-region": "South-Eastern Asia", + "region-code": "142", + "sub-region-code": "035" + }, + { + "name": "Bulgaria", + "alpha-2": "BG", + "alpha-3": "BGR", + "country-code": "100", + "iso_3166-2": "ISO 3166-2:BG", + "region": "Europe", + "sub-region": "Eastern Europe", + "region-code": "150", + "sub-region-code": "151" + }, + { + "name": "Burkina Faso", + "alpha-2": "BF", + "alpha-3": "BFA", + "country-code": "854", + "iso_3166-2": "ISO 3166-2:BF", + "region": "Africa", + "sub-region": "Western Africa", + "region-code": "002", + "sub-region-code": "011" + }, + { + "name": "Burundi", + "alpha-2": "BI", + "alpha-3": "BDI", + "country-code": "108", + "iso_3166-2": "ISO 3166-2:BI", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Cambodia", + "alpha-2": "KH", + "alpha-3": "KHM", + "country-code": "116", + "iso_3166-2": "ISO 3166-2:KH", + "region": "Asia", + "sub-region": "South-Eastern Asia", + "region-code": "142", + "sub-region-code": "035" + }, + { + "name": "Cameroon", + "alpha-2": "CM", + "alpha-3": "CMR", + "country-code": "120", + "iso_3166-2": "ISO 3166-2:CM", + "region": "Africa", + "sub-region": "Middle Africa", + "region-code": "002", + "sub-region-code": "017" + }, + { + "name": "Canada", + "alpha-2": "CA", + "alpha-3": "CAN", + "country-code": "124", + "iso_3166-2": "ISO 3166-2:CA", + "region": "Americas", + "sub-region": "Northern America", + "region-code": "019", + "sub-region-code": "021" + }, + { + "name": "Cabo Verde", + "alpha-2": "CV", + "alpha-3": "CPV", + "country-code": "132", + "iso_3166-2": "ISO 3166-2:CV", + "region": "Africa", + "sub-region": "Western Africa", + "region-code": "002", + "sub-region-code": "011" + }, + { + "name": "Cayman Islands", + "alpha-2": "KY", + "alpha-3": "CYM", + "country-code": "136", + "iso_3166-2": "ISO 3166-2:KY", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Central African Republic", + "alpha-2": "CF", + "alpha-3": "CAF", + "country-code": "140", + "iso_3166-2": "ISO 3166-2:CF", + "region": "Africa", + "sub-region": "Middle Africa", + "region-code": "002", + "sub-region-code": "017" + }, + { + "name": "Chad", + "alpha-2": "TD", + "alpha-3": "TCD", + "country-code": "148", + "iso_3166-2": "ISO 3166-2:TD", + "region": "Africa", + "sub-region": "Middle Africa", + "region-code": "002", + "sub-region-code": "017" + }, + { + "name": "Chile", + "alpha-2": "CL", + "alpha-3": "CHL", + "country-code": "152", + "iso_3166-2": "ISO 3166-2:CL", + "region": "Americas", + "sub-region": "South America", + "region-code": "019", + "sub-region-code": "005" + }, + { + "name": "China", + "alpha-2": "CN", + "alpha-3": "CHN", + "country-code": "156", + "iso_3166-2": "ISO 3166-2:CN", + "region": "Asia", + "sub-region": "Eastern Asia", + "region-code": "142", + "sub-region-code": "030" + }, + { + "name": "Christmas Island", + "alpha-2": "CX", + "alpha-3": "CXR", + "country-code": "162", + "iso_3166-2": "ISO 3166-2:CX", + "sub-region-code": null, + "region-code": null, + "sub-region": null, + "region": null + }, + { + "name": "Cocos (Keeling) Islands", + "alpha-2": "CC", + "alpha-3": "CCK", + "country-code": "166", + "iso_3166-2": "ISO 3166-2:CC", + "sub-region-code": null, + "region-code": null, + "sub-region": null, + "region": null + }, + { + "name": "Colombia", + "alpha-2": "CO", + "alpha-3": "COL", + "country-code": "170", + "iso_3166-2": "ISO 3166-2:CO", + "region": "Americas", + "sub-region": "South America", + "region-code": "019", + "sub-region-code": "005" + }, + { + "name": "Comoros", + "alpha-2": "KM", + "alpha-3": "COM", + "country-code": "174", + "iso_3166-2": "ISO 3166-2:KM", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Congo", + "alpha-2": "CG", + "alpha-3": "COG", + "country-code": "178", + "iso_3166-2": "ISO 3166-2:CG", + "region": "Africa", + "sub-region": "Middle Africa", + "region-code": "002", + "sub-region-code": "017" + }, + { + "name": "Congo (Democratic Republic of the)", + "alpha-2": "CD", + "alpha-3": "COD", + "country-code": "180", + "iso_3166-2": "ISO 3166-2:CD", + "region": "Africa", + "sub-region": "Middle Africa", + "region-code": "002", + "sub-region-code": "017" + }, + { + "name": "Cook Islands", + "alpha-2": "CK", + "alpha-3": "COK", + "country-code": "184", + "iso_3166-2": "ISO 3166-2:CK", + "region": "Oceania", + "sub-region": "Polynesia", + "region-code": "009", + "sub-region-code": "061" + }, + { + "name": "Costa Rica", + "alpha-2": "CR", + "alpha-3": "CRI", + "country-code": "188", + "iso_3166-2": "ISO 3166-2:CR", + "region": "Americas", + "sub-region": "Central America", + "region-code": "019", + "sub-region-code": "013" + }, + { + "name": "Côte d'Ivoire", + "alpha-2": "CI", + "alpha-3": "CIV", + "country-code": "384", + "iso_3166-2": "ISO 3166-2:CI", + "region": "Africa", + "sub-region": "Western Africa", + "region-code": "002", + "sub-region-code": "011" + }, + { + "name": "Croatia", + "alpha-2": "HR", + "alpha-3": "HRV", + "country-code": "191", + "iso_3166-2": "ISO 3166-2:HR", + "region": "Europe", + "sub-region": "Southern Europe", + "region-code": "150", + "sub-region-code": "039" + }, + { + "name": "Cuba", + "alpha-2": "CU", + "alpha-3": "CUB", + "country-code": "192", + "iso_3166-2": "ISO 3166-2:CU", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Curaçao", + "alpha-2": "CW", + "alpha-3": "CUW", + "country-code": "531", + "iso_3166-2": "ISO 3166-2:CW", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Cyprus", + "alpha-2": "CY", + "alpha-3": "CYP", + "country-code": "196", + "iso_3166-2": "ISO 3166-2:CY", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "Czech Republic", + "alpha-2": "CZ", + "alpha-3": "CZE", + "country-code": "203", + "iso_3166-2": "ISO 3166-2:CZ", + "region": "Europe", + "sub-region": "Eastern Europe", + "region-code": "150", + "sub-region-code": "151" + }, + { + "name": "Denmark", + "alpha-2": "DK", + "alpha-3": "DNK", + "country-code": "208", + "iso_3166-2": "ISO 3166-2:DK", + "region": "Europe", + "sub-region": "Northern Europe", + "region-code": "150", + "sub-region-code": "154" + }, + { + "name": "Djibouti", + "alpha-2": "DJ", + "alpha-3": "DJI", + "country-code": "262", + "iso_3166-2": "ISO 3166-2:DJ", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Dominica", + "alpha-2": "DM", + "alpha-3": "DMA", + "country-code": "212", + "iso_3166-2": "ISO 3166-2:DM", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Dominican Republic", + "alpha-2": "DO", + "alpha-3": "DOM", + "country-code": "214", + "iso_3166-2": "ISO 3166-2:DO", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Ecuador", + "alpha-2": "EC", + "alpha-3": "ECU", + "country-code": "218", + "iso_3166-2": "ISO 3166-2:EC", + "region": "Americas", + "sub-region": "South America", + "region-code": "019", + "sub-region-code": "005" + }, + { + "name": "Egypt", + "alpha-2": "EG", + "alpha-3": "EGY", + "country-code": "818", + "iso_3166-2": "ISO 3166-2:EG", + "region": "Africa", + "sub-region": "Northern Africa", + "region-code": "002", + "sub-region-code": "015" + }, + { + "name": "El Salvador", + "alpha-2": "SV", + "alpha-3": "SLV", + "country-code": "222", + "iso_3166-2": "ISO 3166-2:SV", + "region": "Americas", + "sub-region": "Central America", + "region-code": "019", + "sub-region-code": "013" + }, + { + "name": "Equatorial Guinea", + "alpha-2": "GQ", + "alpha-3": "GNQ", + "country-code": "226", + "iso_3166-2": "ISO 3166-2:GQ", + "region": "Africa", + "sub-region": "Middle Africa", + "region-code": "002", + "sub-region-code": "017" + }, + { + "name": "Eritrea", + "alpha-2": "ER", + "alpha-3": "ERI", + "country-code": "232", + "iso_3166-2": "ISO 3166-2:ER", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Estonia", + "alpha-2": "EE", + "alpha-3": "EST", + "country-code": "233", + "iso_3166-2": "ISO 3166-2:EE", + "region": "Europe", + "sub-region": "Northern Europe", + "region-code": "150", + "sub-region-code": "154" + }, + { + "name": "Ethiopia", + "alpha-2": "ET", + "alpha-3": "ETH", + "country-code": "231", + "iso_3166-2": "ISO 3166-2:ET", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Falkland Islands (Malvinas)", + "alpha-2": "FK", + "alpha-3": "FLK", + "country-code": "238", + "iso_3166-2": "ISO 3166-2:FK", + "region": "Americas", + "sub-region": "South America", + "region-code": "019", + "sub-region-code": "005" + }, + { + "name": "Faroe Islands", + "alpha-2": "FO", + "alpha-3": "FRO", + "country-code": "234", + "iso_3166-2": "ISO 3166-2:FO", + "region": "Europe", + "sub-region": "Northern Europe", + "region-code": "150", + "sub-region-code": "154" + }, + { + "name": "Fiji", + "alpha-2": "FJ", + "alpha-3": "FJI", + "country-code": "242", + "iso_3166-2": "ISO 3166-2:FJ", + "region": "Oceania", + "sub-region": "Melanesia", + "region-code": "009", + "sub-region-code": "054" + }, + { + "name": "Finland", + "alpha-2": "FI", + "alpha-3": "FIN", + "country-code": "246", + "iso_3166-2": "ISO 3166-2:FI", + "region": "Europe", + "sub-region": "Northern Europe", + "region-code": "150", + "sub-region-code": "154" + }, + { + "name": "France", + "alpha-2": "FR", + "alpha-3": "FRA", + "country-code": "250", + "iso_3166-2": "ISO 3166-2:FR", + "region": "Europe", + "sub-region": "Western Europe", + "region-code": "150", + "sub-region-code": "155" + }, + { + "name": "French Guiana", + "alpha-2": "GF", + "alpha-3": "GUF", + "country-code": "254", + "iso_3166-2": "ISO 3166-2:GF", + "region": "Americas", + "sub-region": "South America", + "region-code": "019", + "sub-region-code": "005" + }, + { + "name": "French Polynesia", + "alpha-2": "PF", + "alpha-3": "PYF", + "country-code": "258", + "iso_3166-2": "ISO 3166-2:PF", + "region": "Oceania", + "sub-region": "Polynesia", + "region-code": "009", + "sub-region-code": "061" + }, + { + "name": "French Southern Territories", + "alpha-2": "TF", + "alpha-3": "ATF", + "country-code": "260", + "iso_3166-2": "ISO 3166-2:TF", + "sub-region-code": null, + "region-code": null, + "sub-region": null, + "region": null + }, + { + "name": "Gabon", + "alpha-2": "GA", + "alpha-3": "GAB", + "country-code": "266", + "iso_3166-2": "ISO 3166-2:GA", + "region": "Africa", + "sub-region": "Middle Africa", + "region-code": "002", + "sub-region-code": "017" + }, + { + "name": "Gambia", + "alpha-2": "GM", + "alpha-3": "GMB", + "country-code": "270", + "iso_3166-2": "ISO 3166-2:GM", + "region": "Africa", + "sub-region": "Western Africa", + "region-code": "002", + "sub-region-code": "011" + }, + { + "name": "Georgia", + "alpha-2": "GE", + "alpha-3": "GEO", + "country-code": "268", + "iso_3166-2": "ISO 3166-2:GE", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "Germany", + "alpha-2": "DE", + "alpha-3": "DEU", + "country-code": "276", + "iso_3166-2": "ISO 3166-2:DE", + "region": "Europe", + "sub-region": "Western Europe", + "region-code": "150", + "sub-region-code": "155" + }, + { + "name": "Ghana", + "alpha-2": "GH", + "alpha-3": "GHA", + "country-code": "288", + "iso_3166-2": "ISO 3166-2:GH", + "region": "Africa", + "sub-region": "Western Africa", + "region-code": "002", + "sub-region-code": "011" + }, + { + "name": "Gibraltar", + "alpha-2": "GI", + "alpha-3": "GIB", + "country-code": "292", + "iso_3166-2": "ISO 3166-2:GI", + "region": "Europe", + "sub-region": "Southern Europe", + "region-code": "150", + "sub-region-code": "039" + }, + { + "name": "Greece", + "alpha-2": "GR", + "alpha-3": "GRC", + "country-code": "300", + "iso_3166-2": "ISO 3166-2:GR", + "region": "Europe", + "sub-region": "Southern Europe", + "region-code": "150", + "sub-region-code": "039" + }, + { + "name": "Greenland", + "alpha-2": "GL", + "alpha-3": "GRL", + "country-code": "304", + "iso_3166-2": "ISO 3166-2:GL", + "region": "Americas", + "sub-region": "Northern America", + "region-code": "019", + "sub-region-code": "021" + }, + { + "name": "Grenada", + "alpha-2": "GD", + "alpha-3": "GRD", + "country-code": "308", + "iso_3166-2": "ISO 3166-2:GD", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Guadeloupe", + "alpha-2": "GP", + "alpha-3": "GLP", + "country-code": "312", + "iso_3166-2": "ISO 3166-2:GP", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Guam", + "alpha-2": "GU", + "alpha-3": "GUM", + "country-code": "316", + "iso_3166-2": "ISO 3166-2:GU", + "region": "Oceania", + "sub-region": "Micronesia", + "region-code": "009", + "sub-region-code": "057" + }, + { + "name": "Guatemala", + "alpha-2": "GT", + "alpha-3": "GTM", + "country-code": "320", + "iso_3166-2": "ISO 3166-2:GT", + "region": "Americas", + "sub-region": "Central America", + "region-code": "019", + "sub-region-code": "013" + }, + { + "name": "Guernsey", + "alpha-2": "GG", + "alpha-3": "GGY", + "country-code": "831", + "iso_3166-2": "ISO 3166-2:GG", + "region": "Europe", + "sub-region": "Northern Europe", + "region-code": "150", + "sub-region-code": "154" + }, + { + "name": "Guinea", + "alpha-2": "GN", + "alpha-3": "GIN", + "country-code": "324", + "iso_3166-2": "ISO 3166-2:GN", + "region": "Africa", + "sub-region": "Western Africa", + "region-code": "002", + "sub-region-code": "011" + }, + { + "name": "Guinea-Bissau", + "alpha-2": "GW", + "alpha-3": "GNB", + "country-code": "624", + "iso_3166-2": "ISO 3166-2:GW", + "region": "Africa", + "sub-region": "Western Africa", + "region-code": "002", + "sub-region-code": "011" + }, + { + "name": "Guyana", + "alpha-2": "GY", + "alpha-3": "GUY", + "country-code": "328", + "iso_3166-2": "ISO 3166-2:GY", + "region": "Americas", + "sub-region": "South America", + "region-code": "019", + "sub-region-code": "005" + }, + { + "name": "Haiti", + "alpha-2": "HT", + "alpha-3": "HTI", + "country-code": "332", + "iso_3166-2": "ISO 3166-2:HT", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Heard Island and McDonald Islands", + "alpha-2": "HM", + "alpha-3": "HMD", + "country-code": "334", + "iso_3166-2": "ISO 3166-2:HM", + "sub-region-code": null, + "region-code": null, + "sub-region": null, + "region": null + }, + { + "name": "Holy See", + "alpha-2": "VA", + "alpha-3": "VAT", + "country-code": "336", + "iso_3166-2": "ISO 3166-2:VA", + "region": "Europe", + "sub-region": "Southern Europe", + "region-code": "150", + "sub-region-code": "039" + }, + { + "name": "Honduras", + "alpha-2": "HN", + "alpha-3": "HND", + "country-code": "340", + "iso_3166-2": "ISO 3166-2:HN", + "region": "Americas", + "sub-region": "Central America", + "region-code": "019", + "sub-region-code": "013" + }, + { + "name": "Hong Kong", + "alpha-2": "HK", + "alpha-3": "HKG", + "country-code": "344", + "iso_3166-2": "ISO 3166-2:HK", + "region": "Asia", + "sub-region": "Eastern Asia", + "region-code": "142", + "sub-region-code": "030" + }, + { + "name": "Hungary", + "alpha-2": "HU", + "alpha-3": "HUN", + "country-code": "348", + "iso_3166-2": "ISO 3166-2:HU", + "region": "Europe", + "sub-region": "Eastern Europe", + "region-code": "150", + "sub-region-code": "151" + }, + { + "name": "Iceland", + "alpha-2": "IS", + "alpha-3": "ISL", + "country-code": "352", + "iso_3166-2": "ISO 3166-2:IS", + "region": "Europe", + "sub-region": "Northern Europe", + "region-code": "150", + "sub-region-code": "154" + }, + { + "name": "India", + "alpha-2": "IN", + "alpha-3": "IND", + "country-code": "356", + "iso_3166-2": "ISO 3166-2:IN", + "region": "Asia", + "sub-region": "Southern Asia", + "region-code": "142", + "sub-region-code": "034" + }, + { + "name": "Indonesia", + "alpha-2": "ID", + "alpha-3": "IDN", + "country-code": "360", + "iso_3166-2": "ISO 3166-2:ID", + "region": "Asia", + "sub-region": "South-Eastern Asia", + "region-code": "142", + "sub-region-code": "035" + }, + { + "name": "Iran (Islamic Republic of)", + "alpha-2": "IR", + "alpha-3": "IRN", + "country-code": "364", + "iso_3166-2": "ISO 3166-2:IR", + "region": "Asia", + "sub-region": "Southern Asia", + "region-code": "142", + "sub-region-code": "034" + }, + { + "name": "Iraq", + "alpha-2": "IQ", + "alpha-3": "IRQ", + "country-code": "368", + "iso_3166-2": "ISO 3166-2:IQ", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "Ireland", + "alpha-2": "IE", + "alpha-3": "IRL", + "country-code": "372", + "iso_3166-2": "ISO 3166-2:IE", + "region": "Europe", + "sub-region": "Northern Europe", + "region-code": "150", + "sub-region-code": "154" + }, + { + "name": "Isle of Man", + "alpha-2": "IM", + "alpha-3": "IMN", + "country-code": "833", + "iso_3166-2": "ISO 3166-2:IM", + "region": "Europe", + "sub-region": "Northern Europe", + "region-code": "150", + "sub-region-code": "154" + }, + { + "name": "Israel", + "alpha-2": "IL", + "alpha-3": "ISR", + "country-code": "376", + "iso_3166-2": "ISO 3166-2:IL", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "Italy", + "alpha-2": "IT", + "alpha-3": "ITA", + "country-code": "380", + "iso_3166-2": "ISO 3166-2:IT", + "region": "Europe", + "sub-region": "Southern Europe", + "region-code": "150", + "sub-region-code": "039" + }, + { + "name": "Jamaica", + "alpha-2": "JM", + "alpha-3": "JAM", + "country-code": "388", + "iso_3166-2": "ISO 3166-2:JM", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Japan", + "alpha-2": "JP", + "alpha-3": "JPN", + "country-code": "392", + "iso_3166-2": "ISO 3166-2:JP", + "region": "Asia", + "sub-region": "Eastern Asia", + "region-code": "142", + "sub-region-code": "030" + }, + { + "name": "Jersey", + "alpha-2": "JE", + "alpha-3": "JEY", + "country-code": "832", + "iso_3166-2": "ISO 3166-2:JE", + "region": "Europe", + "sub-region": "Northern Europe", + "region-code": "150", + "sub-region-code": "154" + }, + { + "name": "Jordan", + "alpha-2": "JO", + "alpha-3": "JOR", + "country-code": "400", + "iso_3166-2": "ISO 3166-2:JO", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "Kazakhstan", + "alpha-2": "KZ", + "alpha-3": "KAZ", + "country-code": "398", + "iso_3166-2": "ISO 3166-2:KZ", + "region": "Asia", + "sub-region": "Central Asia", + "region-code": "142", + "sub-region-code": "143" + }, + { + "name": "Kenya", + "alpha-2": "KE", + "alpha-3": "KEN", + "country-code": "404", + "iso_3166-2": "ISO 3166-2:KE", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Kiribati", + "alpha-2": "KI", + "alpha-3": "KIR", + "country-code": "296", + "iso_3166-2": "ISO 3166-2:KI", + "region": "Oceania", + "sub-region": "Micronesia", + "region-code": "009", + "sub-region-code": "057" + }, + { + "name": "Korea (Democratic People's Republic of)", + "alpha-2": "KP", + "alpha-3": "PRK", + "country-code": "408", + "iso_3166-2": "ISO 3166-2:KP", + "region": "Asia", + "sub-region": "Eastern Asia", + "region-code": "142", + "sub-region-code": "030" + }, + { + "name": "Korea (Republic of)", + "alpha-2": "KR", + "alpha-3": "KOR", + "country-code": "410", + "iso_3166-2": "ISO 3166-2:KR", + "region": "Asia", + "sub-region": "Eastern Asia", + "region-code": "142", + "sub-region-code": "030" + }, + { + "name": "Kuwait", + "alpha-2": "KW", + "alpha-3": "KWT", + "country-code": "414", + "iso_3166-2": "ISO 3166-2:KW", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "Kyrgyzstan", + "alpha-2": "KG", + "alpha-3": "KGZ", + "country-code": "417", + "iso_3166-2": "ISO 3166-2:KG", + "region": "Asia", + "sub-region": "Central Asia", + "region-code": "142", + "sub-region-code": "143" + }, + { + "name": "Lao People's Democratic Republic", + "alpha-2": "LA", + "alpha-3": "LAO", + "country-code": "418", + "iso_3166-2": "ISO 3166-2:LA", + "region": "Asia", + "sub-region": "South-Eastern Asia", + "region-code": "142", + "sub-region-code": "035" + }, + { + "name": "Latvia", + "alpha-2": "LV", + "alpha-3": "LVA", + "country-code": "428", + "iso_3166-2": "ISO 3166-2:LV", + "region": "Europe", + "sub-region": "Northern Europe", + "region-code": "150", + "sub-region-code": "154" + }, + { + "name": "Lebanon", + "alpha-2": "LB", + "alpha-3": "LBN", + "country-code": "422", + "iso_3166-2": "ISO 3166-2:LB", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "Lesotho", + "alpha-2": "LS", + "alpha-3": "LSO", + "country-code": "426", + "iso_3166-2": "ISO 3166-2:LS", + "region": "Africa", + "sub-region": "Southern Africa", + "region-code": "002", + "sub-region-code": "018" + }, + { + "name": "Liberia", + "alpha-2": "LR", + "alpha-3": "LBR", + "country-code": "430", + "iso_3166-2": "ISO 3166-2:LR", + "region": "Africa", + "sub-region": "Western Africa", + "region-code": "002", + "sub-region-code": "011" + }, + { + "name": "Libya", + "alpha-2": "LY", + "alpha-3": "LBY", + "country-code": "434", + "iso_3166-2": "ISO 3166-2:LY", + "region": "Africa", + "sub-region": "Northern Africa", + "region-code": "002", + "sub-region-code": "015" + }, + { + "name": "Liechtenstein", + "alpha-2": "LI", + "alpha-3": "LIE", + "country-code": "438", + "iso_3166-2": "ISO 3166-2:LI", + "region": "Europe", + "sub-region": "Western Europe", + "region-code": "150", + "sub-region-code": "155" + }, + { + "name": "Lithuania", + "alpha-2": "LT", + "alpha-3": "LTU", + "country-code": "440", + "iso_3166-2": "ISO 3166-2:LT", + "region": "Europe", + "sub-region": "Northern Europe", + "region-code": "150", + "sub-region-code": "154" + }, + { + "name": "Luxembourg", + "alpha-2": "LU", + "alpha-3": "LUX", + "country-code": "442", + "iso_3166-2": "ISO 3166-2:LU", + "region": "Europe", + "sub-region": "Western Europe", + "region-code": "150", + "sub-region-code": "155" + }, + { + "name": "Macao", + "alpha-2": "MO", + "alpha-3": "MAC", + "country-code": "446", + "iso_3166-2": "ISO 3166-2:MO", + "region": "Asia", + "sub-region": "Eastern Asia", + "region-code": "142", + "sub-region-code": "030" + }, + { + "name": "Macedonia (the former Yugoslav Republic of)", + "alpha-2": "MK", + "alpha-3": "MKD", + "country-code": "807", + "iso_3166-2": "ISO 3166-2:MK", + "region": "Europe", + "sub-region": "Southern Europe", + "region-code": "150", + "sub-region-code": "039" + }, + { + "name": "Madagascar", + "alpha-2": "MG", + "alpha-3": "MDG", + "country-code": "450", + "iso_3166-2": "ISO 3166-2:MG", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Malawi", + "alpha-2": "MW", + "alpha-3": "MWI", + "country-code": "454", + "iso_3166-2": "ISO 3166-2:MW", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Malaysia", + "alpha-2": "MY", + "alpha-3": "MYS", + "country-code": "458", + "iso_3166-2": "ISO 3166-2:MY", + "region": "Asia", + "sub-region": "South-Eastern Asia", + "region-code": "142", + "sub-region-code": "035" + }, + { + "name": "Maldives", + "alpha-2": "MV", + "alpha-3": "MDV", + "country-code": "462", + "iso_3166-2": "ISO 3166-2:MV", + "region": "Asia", + "sub-region": "Southern Asia", + "region-code": "142", + "sub-region-code": "034" + }, + { + "name": "Mali", + "alpha-2": "ML", + "alpha-3": "MLI", + "country-code": "466", + "iso_3166-2": "ISO 3166-2:ML", + "region": "Africa", + "sub-region": "Western Africa", + "region-code": "002", + "sub-region-code": "011" + }, + { + "name": "Malta", + "alpha-2": "MT", + "alpha-3": "MLT", + "country-code": "470", + "iso_3166-2": "ISO 3166-2:MT", + "region": "Europe", + "sub-region": "Southern Europe", + "region-code": "150", + "sub-region-code": "039" + }, + { + "name": "Marshall Islands", + "alpha-2": "MH", + "alpha-3": "MHL", + "country-code": "584", + "iso_3166-2": "ISO 3166-2:MH", + "region": "Oceania", + "sub-region": "Micronesia", + "region-code": "009", + "sub-region-code": "057" + }, + { + "name": "Martinique", + "alpha-2": "MQ", + "alpha-3": "MTQ", + "country-code": "474", + "iso_3166-2": "ISO 3166-2:MQ", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Mauritania", + "alpha-2": "MR", + "alpha-3": "MRT", + "country-code": "478", + "iso_3166-2": "ISO 3166-2:MR", + "region": "Africa", + "sub-region": "Western Africa", + "region-code": "002", + "sub-region-code": "011" + }, + { + "name": "Mauritius", + "alpha-2": "MU", + "alpha-3": "MUS", + "country-code": "480", + "iso_3166-2": "ISO 3166-2:MU", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Mayotte", + "alpha-2": "YT", + "alpha-3": "MYT", + "country-code": "175", + "iso_3166-2": "ISO 3166-2:YT", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Mexico", + "alpha-2": "MX", + "alpha-3": "MEX", + "country-code": "484", + "iso_3166-2": "ISO 3166-2:MX", + "region": "Americas", + "sub-region": "Central America", + "region-code": "019", + "sub-region-code": "013" + }, + { + "name": "Micronesia (Federated States of)", + "alpha-2": "FM", + "alpha-3": "FSM", + "country-code": "583", + "iso_3166-2": "ISO 3166-2:FM", + "region": "Oceania", + "sub-region": "Micronesia", + "region-code": "009", + "sub-region-code": "057" + }, + { + "name": "Moldova (Republic of)", + "alpha-2": "MD", + "alpha-3": "MDA", + "country-code": "498", + "iso_3166-2": "ISO 3166-2:MD", + "region": "Europe", + "sub-region": "Eastern Europe", + "region-code": "150", + "sub-region-code": "151" + }, + { + "name": "Monaco", + "alpha-2": "MC", + "alpha-3": "MCO", + "country-code": "492", + "iso_3166-2": "ISO 3166-2:MC", + "region": "Europe", + "sub-region": "Western Europe", + "region-code": "150", + "sub-region-code": "155" + }, + { + "name": "Mongolia", + "alpha-2": "MN", + "alpha-3": "MNG", + "country-code": "496", + "iso_3166-2": "ISO 3166-2:MN", + "region": "Asia", + "sub-region": "Eastern Asia", + "region-code": "142", + "sub-region-code": "030" + }, + { + "name": "Montenegro", + "alpha-2": "ME", + "alpha-3": "MNE", + "country-code": "499", + "iso_3166-2": "ISO 3166-2:ME", + "region": "Europe", + "sub-region": "Southern Europe", + "region-code": "150", + "sub-region-code": "039" + }, + { + "name": "Montserrat", + "alpha-2": "MS", + "alpha-3": "MSR", + "country-code": "500", + "iso_3166-2": "ISO 3166-2:MS", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Morocco", + "alpha-2": "MA", + "alpha-3": "MAR", + "country-code": "504", + "iso_3166-2": "ISO 3166-2:MA", + "region": "Africa", + "sub-region": "Northern Africa", + "region-code": "002", + "sub-region-code": "015" + }, + { + "name": "Mozambique", + "alpha-2": "MZ", + "alpha-3": "MOZ", + "country-code": "508", + "iso_3166-2": "ISO 3166-2:MZ", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Myanmar", + "alpha-2": "MM", + "alpha-3": "MMR", + "country-code": "104", + "iso_3166-2": "ISO 3166-2:MM", + "region": "Asia", + "sub-region": "South-Eastern Asia", + "region-code": "142", + "sub-region-code": "035" + }, + { + "name": "Namibia", + "alpha-2": "NA", + "alpha-3": "NAM", + "country-code": "516", + "iso_3166-2": "ISO 3166-2:NA", + "region": "Africa", + "sub-region": "Southern Africa", + "region-code": "002", + "sub-region-code": "018" + }, + { + "name": "Nauru", + "alpha-2": "NR", + "alpha-3": "NRU", + "country-code": "520", + "iso_3166-2": "ISO 3166-2:NR", + "region": "Oceania", + "sub-region": "Micronesia", + "region-code": "009", + "sub-region-code": "057" + }, + { + "name": "Nepal", + "alpha-2": "NP", + "alpha-3": "NPL", + "country-code": "524", + "iso_3166-2": "ISO 3166-2:NP", + "region": "Asia", + "sub-region": "Southern Asia", + "region-code": "142", + "sub-region-code": "034" + }, + { + "name": "Netherlands", + "alpha-2": "NL", + "alpha-3": "NLD", + "country-code": "528", + "iso_3166-2": "ISO 3166-2:NL", + "region": "Europe", + "sub-region": "Western Europe", + "region-code": "150", + "sub-region-code": "155" + }, + { + "name": "New Caledonia", + "alpha-2": "NC", + "alpha-3": "NCL", + "country-code": "540", + "iso_3166-2": "ISO 3166-2:NC", + "region": "Oceania", + "sub-region": "Melanesia", + "region-code": "009", + "sub-region-code": "054" + }, + { + "name": "New Zealand", + "alpha-2": "NZ", + "alpha-3": "NZL", + "country-code": "554", + "iso_3166-2": "ISO 3166-2:NZ", + "region": "Oceania", + "sub-region": "Australia and New Zealand", + "region-code": "009", + "sub-region-code": "053" + }, + { + "name": "Nicaragua", + "alpha-2": "NI", + "alpha-3": "NIC", + "country-code": "558", + "iso_3166-2": "ISO 3166-2:NI", + "region": "Americas", + "sub-region": "Central America", + "region-code": "019", + "sub-region-code": "013" + }, + { + "name": "Niger", + "alpha-2": "NE", + "alpha-3": "NER", + "country-code": "562", + "iso_3166-2": "ISO 3166-2:NE", + "region": "Africa", + "sub-region": "Western Africa", + "region-code": "002", + "sub-region-code": "011" + }, + { + "name": "Nigeria", + "alpha-2": "NG", + "alpha-3": "NGA", + "country-code": "566", + "iso_3166-2": "ISO 3166-2:NG", + "region": "Africa", + "sub-region": "Western Africa", + "region-code": "002", + "sub-region-code": "011" + }, + { + "name": "Niue", + "alpha-2": "NU", + "alpha-3": "NIU", + "country-code": "570", + "iso_3166-2": "ISO 3166-2:NU", + "region": "Oceania", + "sub-region": "Polynesia", + "region-code": "009", + "sub-region-code": "061" + }, + { + "name": "Norfolk Island", + "alpha-2": "NF", + "alpha-3": "NFK", + "country-code": "574", + "iso_3166-2": "ISO 3166-2:NF", + "region": "Oceania", + "sub-region": "Australia and New Zealand", + "region-code": "009", + "sub-region-code": "053" + }, + { + "name": "Northern Mariana Islands", + "alpha-2": "MP", + "alpha-3": "MNP", + "country-code": "580", + "iso_3166-2": "ISO 3166-2:MP", + "region": "Oceania", + "sub-region": "Micronesia", + "region-code": "009", + "sub-region-code": "057" + }, + { + "name": "Norway", + "alpha-2": "NO", + "alpha-3": "NOR", + "country-code": "578", + "iso_3166-2": "ISO 3166-2:NO", + "region": "Europe", + "sub-region": "Northern Europe", + "region-code": "150", + "sub-region-code": "154" + }, + { + "name": "Oman", + "alpha-2": "OM", + "alpha-3": "OMN", + "country-code": "512", + "iso_3166-2": "ISO 3166-2:OM", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "Pakistan", + "alpha-2": "PK", + "alpha-3": "PAK", + "country-code": "586", + "iso_3166-2": "ISO 3166-2:PK", + "region": "Asia", + "sub-region": "Southern Asia", + "region-code": "142", + "sub-region-code": "034" + }, + { + "name": "Palau", + "alpha-2": "PW", + "alpha-3": "PLW", + "country-code": "585", + "iso_3166-2": "ISO 3166-2:PW", + "region": "Oceania", + "sub-region": "Micronesia", + "region-code": "009", + "sub-region-code": "057" + }, + { + "name": "Palestine, State of", + "alpha-2": "PS", + "alpha-3": "PSE", + "country-code": "275", + "iso_3166-2": "ISO 3166-2:PS", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "Panama", + "alpha-2": "PA", + "alpha-3": "PAN", + "country-code": "591", + "iso_3166-2": "ISO 3166-2:PA", + "region": "Americas", + "sub-region": "Central America", + "region-code": "019", + "sub-region-code": "013" + }, + { + "name": "Papua New Guinea", + "alpha-2": "PG", + "alpha-3": "PNG", + "country-code": "598", + "iso_3166-2": "ISO 3166-2:PG", + "region": "Oceania", + "sub-region": "Melanesia", + "region-code": "009", + "sub-region-code": "054" + }, + { + "name": "Paraguay", + "alpha-2": "PY", + "alpha-3": "PRY", + "country-code": "600", + "iso_3166-2": "ISO 3166-2:PY", + "region": "Americas", + "sub-region": "South America", + "region-code": "019", + "sub-region-code": "005" + }, + { + "name": "Peru", + "alpha-2": "PE", + "alpha-3": "PER", + "country-code": "604", + "iso_3166-2": "ISO 3166-2:PE", + "region": "Americas", + "sub-region": "South America", + "region-code": "019", + "sub-region-code": "005" + }, + { + "name": "Philippines", + "alpha-2": "PH", + "alpha-3": "PHL", + "country-code": "608", + "iso_3166-2": "ISO 3166-2:PH", + "region": "Asia", + "sub-region": "South-Eastern Asia", + "region-code": "142", + "sub-region-code": "035" + }, + { + "name": "Pitcairn", + "alpha-2": "PN", + "alpha-3": "PCN", + "country-code": "612", + "iso_3166-2": "ISO 3166-2:PN", + "region": "Oceania", + "sub-region": "Polynesia", + "region-code": "009", + "sub-region-code": "061" + }, + { + "name": "Poland", + "alpha-2": "PL", + "alpha-3": "POL", + "country-code": "616", + "iso_3166-2": "ISO 3166-2:PL", + "region": "Europe", + "sub-region": "Eastern Europe", + "region-code": "150", + "sub-region-code": "151" + }, + { + "name": "Portugal", + "alpha-2": "PT", + "alpha-3": "PRT", + "country-code": "620", + "iso_3166-2": "ISO 3166-2:PT", + "region": "Europe", + "sub-region": "Southern Europe", + "region-code": "150", + "sub-region-code": "039" + }, + { + "name": "Puerto Rico", + "alpha-2": "PR", + "alpha-3": "PRI", + "country-code": "630", + "iso_3166-2": "ISO 3166-2:PR", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Qatar", + "alpha-2": "QA", + "alpha-3": "QAT", + "country-code": "634", + "iso_3166-2": "ISO 3166-2:QA", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "Réunion", + "alpha-2": "RE", + "alpha-3": "REU", + "country-code": "638", + "iso_3166-2": "ISO 3166-2:RE", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Romania", + "alpha-2": "RO", + "alpha-3": "ROU", + "country-code": "642", + "iso_3166-2": "ISO 3166-2:RO", + "region": "Europe", + "sub-region": "Eastern Europe", + "region-code": "150", + "sub-region-code": "151" + }, + { + "name": "Russian Federation", + "alpha-2": "RU", + "alpha-3": "RUS", + "country-code": "643", + "iso_3166-2": "ISO 3166-2:RU", + "region": "Europe", + "sub-region": "Eastern Europe", + "region-code": "150", + "sub-region-code": "151" + }, + { + "name": "Rwanda", + "alpha-2": "RW", + "alpha-3": "RWA", + "country-code": "646", + "iso_3166-2": "ISO 3166-2:RW", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Saint Barthélemy", + "alpha-2": "BL", + "alpha-3": "BLM", + "country-code": "652", + "iso_3166-2": "ISO 3166-2:BL", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Saint Helena, Ascension and Tristan da Cunha", + "alpha-2": "SH", + "alpha-3": "SHN", + "country-code": "654", + "iso_3166-2": "ISO 3166-2:SH", + "region": "Africa", + "sub-region": "Western Africa", + "region-code": "002", + "sub-region-code": "011" + }, + { + "name": "Saint Kitts and Nevis", + "alpha-2": "KN", + "alpha-3": "KNA", + "country-code": "659", + "iso_3166-2": "ISO 3166-2:KN", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Saint Lucia", + "alpha-2": "LC", + "alpha-3": "LCA", + "country-code": "662", + "iso_3166-2": "ISO 3166-2:LC", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Saint Martin (French part)", + "alpha-2": "MF", + "alpha-3": "MAF", + "country-code": "663", + "iso_3166-2": "ISO 3166-2:MF", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Saint Pierre and Miquelon", + "alpha-2": "PM", + "alpha-3": "SPM", + "country-code": "666", + "iso_3166-2": "ISO 3166-2:PM", + "region": "Americas", + "sub-region": "Northern America", + "region-code": "019", + "sub-region-code": "021" + }, + { + "name": "Saint Vincent and the Grenadines", + "alpha-2": "VC", + "alpha-3": "VCT", + "country-code": "670", + "iso_3166-2": "ISO 3166-2:VC", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Samoa", + "alpha-2": "WS", + "alpha-3": "WSM", + "country-code": "882", + "iso_3166-2": "ISO 3166-2:WS", + "region": "Oceania", + "sub-region": "Polynesia", + "region-code": "009", + "sub-region-code": "061" + }, + { + "name": "San Marino", + "alpha-2": "SM", + "alpha-3": "SMR", + "country-code": "674", + "iso_3166-2": "ISO 3166-2:SM", + "region": "Europe", + "sub-region": "Southern Europe", + "region-code": "150", + "sub-region-code": "039" + }, + { + "name": "Sao Tome and Principe", + "alpha-2": "ST", + "alpha-3": "STP", + "country-code": "678", + "iso_3166-2": "ISO 3166-2:ST", + "region": "Africa", + "sub-region": "Middle Africa", + "region-code": "002", + "sub-region-code": "017" + }, + { + "name": "Saudi Arabia", + "alpha-2": "SA", + "alpha-3": "SAU", + "country-code": "682", + "iso_3166-2": "ISO 3166-2:SA", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "Senegal", + "alpha-2": "SN", + "alpha-3": "SEN", + "country-code": "686", + "iso_3166-2": "ISO 3166-2:SN", + "region": "Africa", + "sub-region": "Western Africa", + "region-code": "002", + "sub-region-code": "011" + }, + { + "name": "Serbia", + "alpha-2": "RS", + "alpha-3": "SRB", + "country-code": "688", + "iso_3166-2": "ISO 3166-2:RS", + "region": "Europe", + "sub-region": "Southern Europe", + "region-code": "150", + "sub-region-code": "039" + }, + { + "name": "Seychelles", + "alpha-2": "SC", + "alpha-3": "SYC", + "country-code": "690", + "iso_3166-2": "ISO 3166-2:SC", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Sierra Leone", + "alpha-2": "SL", + "alpha-3": "SLE", + "country-code": "694", + "iso_3166-2": "ISO 3166-2:SL", + "region": "Africa", + "sub-region": "Western Africa", + "region-code": "002", + "sub-region-code": "011" + }, + { + "name": "Singapore", + "alpha-2": "SG", + "alpha-3": "SGP", + "country-code": "702", + "iso_3166-2": "ISO 3166-2:SG", + "region": "Asia", + "sub-region": "South-Eastern Asia", + "region-code": "142", + "sub-region-code": "035" + }, + { + "name": "Sint Maarten (Dutch part)", + "alpha-2": "SX", + "alpha-3": "SXM", + "country-code": "534", + "iso_3166-2": "ISO 3166-2:SX", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Slovakia", + "alpha-2": "SK", + "alpha-3": "SVK", + "country-code": "703", + "iso_3166-2": "ISO 3166-2:SK", + "region": "Europe", + "sub-region": "Eastern Europe", + "region-code": "150", + "sub-region-code": "151" + }, + { + "name": "Slovenia", + "alpha-2": "SI", + "alpha-3": "SVN", + "country-code": "705", + "iso_3166-2": "ISO 3166-2:SI", + "region": "Europe", + "sub-region": "Southern Europe", + "region-code": "150", + "sub-region-code": "039" + }, + { + "name": "Solomon Islands", + "alpha-2": "SB", + "alpha-3": "SLB", + "country-code": "090", + "iso_3166-2": "ISO 3166-2:SB", + "region": "Oceania", + "sub-region": "Melanesia", + "region-code": "009", + "sub-region-code": "054" + }, + { + "name": "Somalia", + "alpha-2": "SO", + "alpha-3": "SOM", + "country-code": "706", + "iso_3166-2": "ISO 3166-2:SO", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "South Africa", + "alpha-2": "ZA", + "alpha-3": "ZAF", + "country-code": "710", + "iso_3166-2": "ISO 3166-2:ZA", + "region": "Africa", + "sub-region": "Southern Africa", + "region-code": "002", + "sub-region-code": "018" + }, + { + "name": "South Georgia and the South Sandwich Islands", + "alpha-2": "GS", + "alpha-3": "SGS", + "country-code": "239", + "iso_3166-2": "ISO 3166-2:GS", + "sub-region-code": null, + "region-code": null, + "sub-region": null, + "region": null + }, + { + "name": "South Sudan", + "alpha-2": "SS", + "alpha-3": "SSD", + "country-code": "728", + "iso_3166-2": "ISO 3166-2:SS", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Spain", + "alpha-2": "ES", + "alpha-3": "ESP", + "country-code": "724", + "iso_3166-2": "ISO 3166-2:ES", + "region": "Europe", + "sub-region": "Southern Europe", + "region-code": "150", + "sub-region-code": "039" + }, + { + "name": "Sri Lanka", + "alpha-2": "LK", + "alpha-3": "LKA", + "country-code": "144", + "iso_3166-2": "ISO 3166-2:LK", + "region": "Asia", + "sub-region": "Southern Asia", + "region-code": "142", + "sub-region-code": "034" + }, + { + "name": "Sudan", + "alpha-2": "SD", + "alpha-3": "SDN", + "country-code": "729", + "iso_3166-2": "ISO 3166-2:SD", + "region": "Africa", + "sub-region": "Northern Africa", + "region-code": "002", + "sub-region-code": "015" + }, + { + "name": "Suriname", + "alpha-2": "SR", + "alpha-3": "SUR", + "country-code": "740", + "iso_3166-2": "ISO 3166-2:SR", + "region": "Americas", + "sub-region": "South America", + "region-code": "019", + "sub-region-code": "005" + }, + { + "name": "Svalbard and Jan Mayen", + "alpha-2": "SJ", + "alpha-3": "SJM", + "country-code": "744", + "iso_3166-2": "ISO 3166-2:SJ", + "region": "Europe", + "sub-region": "Northern Europe", + "region-code": "150", + "sub-region-code": "154" + }, + { + "name": "Swaziland", + "alpha-2": "SZ", + "alpha-3": "SWZ", + "country-code": "748", + "iso_3166-2": "ISO 3166-2:SZ", + "region": "Africa", + "sub-region": "Southern Africa", + "region-code": "002", + "sub-region-code": "018" + }, + { + "name": "Sweden", + "alpha-2": "SE", + "alpha-3": "SWE", + "country-code": "752", + "iso_3166-2": "ISO 3166-2:SE", + "region": "Europe", + "sub-region": "Northern Europe", + "region-code": "150", + "sub-region-code": "154" + }, + { + "name": "Switzerland", + "alpha-2": "CH", + "alpha-3": "CHE", + "country-code": "756", + "iso_3166-2": "ISO 3166-2:CH", + "region": "Europe", + "sub-region": "Western Europe", + "region-code": "150", + "sub-region-code": "155" + }, + { + "name": "Syrian Arab Republic", + "alpha-2": "SY", + "alpha-3": "SYR", + "country-code": "760", + "iso_3166-2": "ISO 3166-2:SY", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "Taiwan", + "alpha-2": "TW", + "alpha-3": "TWN", + "country-code": "158", + "iso_3166-2": "ISO 3166-2:TW", + "region": "Asia", + "sub-region": "Eastern Asia", + "region-code": "142", + "sub-region-code": "030" + }, + { + "name": "Tajikistan", + "alpha-2": "TJ", + "alpha-3": "TJK", + "country-code": "762", + "iso_3166-2": "ISO 3166-2:TJ", + "region": "Asia", + "sub-region": "Central Asia", + "region-code": "142", + "sub-region-code": "143" + }, + { + "name": "Tanzania, United Republic of", + "alpha-2": "TZ", + "alpha-3": "TZA", + "country-code": "834", + "iso_3166-2": "ISO 3166-2:TZ", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Thailand", + "alpha-2": "TH", + "alpha-3": "THA", + "country-code": "764", + "iso_3166-2": "ISO 3166-2:TH", + "region": "Asia", + "sub-region": "South-Eastern Asia", + "region-code": "142", + "sub-region-code": "035" + }, + { + "name": "Timor-Leste", + "alpha-2": "TL", + "alpha-3": "TLS", + "country-code": "626", + "iso_3166-2": "ISO 3166-2:TL", + "region": "Asia", + "sub-region": "South-Eastern Asia", + "region-code": "142", + "sub-region-code": "035" + }, + { + "name": "Togo", + "alpha-2": "TG", + "alpha-3": "TGO", + "country-code": "768", + "iso_3166-2": "ISO 3166-2:TG", + "region": "Africa", + "sub-region": "Western Africa", + "region-code": "002", + "sub-region-code": "011" + }, + { + "name": "Tokelau", + "alpha-2": "TK", + "alpha-3": "TKL", + "country-code": "772", + "iso_3166-2": "ISO 3166-2:TK", + "region": "Oceania", + "sub-region": "Polynesia", + "region-code": "009", + "sub-region-code": "061" + }, + { + "name": "Tonga", + "alpha-2": "TO", + "alpha-3": "TON", + "country-code": "776", + "iso_3166-2": "ISO 3166-2:TO", + "region": "Oceania", + "sub-region": "Polynesia", + "region-code": "009", + "sub-region-code": "061" + }, + { + "name": "Trinidad and Tobago", + "alpha-2": "TT", + "alpha-3": "TTO", + "country-code": "780", + "iso_3166-2": "ISO 3166-2:TT", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Tunisia", + "alpha-2": "TN", + "alpha-3": "TUN", + "country-code": "788", + "iso_3166-2": "ISO 3166-2:TN", + "region": "Africa", + "sub-region": "Northern Africa", + "region-code": "002", + "sub-region-code": "015" + }, + { + "name": "Turkey", + "alpha-2": "TR", + "alpha-3": "TUR", + "country-code": "792", + "iso_3166-2": "ISO 3166-2:TR", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "Turkmenistan", + "alpha-2": "TM", + "alpha-3": "TKM", + "country-code": "795", + "iso_3166-2": "ISO 3166-2:TM", + "region": "Asia", + "sub-region": "Central Asia", + "region-code": "142", + "sub-region-code": "143" + }, + { + "name": "Turks and Caicos Islands", + "alpha-2": "TC", + "alpha-3": "TCA", + "country-code": "796", + "iso_3166-2": "ISO 3166-2:TC", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Tuvalu", + "alpha-2": "TV", + "alpha-3": "TUV", + "country-code": "798", + "iso_3166-2": "ISO 3166-2:TV", + "region": "Oceania", + "sub-region": "Polynesia", + "region-code": "009", + "sub-region-code": "061" + }, + { + "name": "Uganda", + "alpha-2": "UG", + "alpha-3": "UGA", + "country-code": "800", + "iso_3166-2": "ISO 3166-2:UG", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Ukraine", + "alpha-2": "UA", + "alpha-3": "UKR", + "country-code": "804", + "iso_3166-2": "ISO 3166-2:UA", + "region": "Europe", + "sub-region": "Eastern Europe", + "region-code": "150", + "sub-region-code": "151" + }, + { + "name": "United Arab Emirates", + "alpha-2": "AE", + "alpha-3": "ARE", + "country-code": "784", + "iso_3166-2": "ISO 3166-2:AE", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "United Kingdom of Great Britain and Northern Ireland", + "alpha-2": "GB", + "alpha-3": "GBR", + "country-code": "826", + "iso_3166-2": "ISO 3166-2:GB", + "region": "Europe", + "sub-region": "Northern Europe", + "region-code": "150", + "sub-region-code": "154" + }, + { + "name": "United States of America", + "alpha-2": "US", + "alpha-3": "USA", + "country-code": "840", + "iso_3166-2": "ISO 3166-2:US", + "region": "Americas", + "sub-region": "Northern America", + "region-code": "019", + "sub-region-code": "021" + }, + { + "name": "United States Minor Outlying Islands", + "alpha-2": "UM", + "alpha-3": "UMI", + "country-code": "581", + "iso_3166-2": "ISO 3166-2:UM", + "sub-region-code": null, + "region-code": null, + "sub-region": null, + "region": null + }, + { + "name": "Uruguay", + "alpha-2": "UY", + "alpha-3": "URY", + "country-code": "858", + "iso_3166-2": "ISO 3166-2:UY", + "region": "Americas", + "sub-region": "South America", + "region-code": "019", + "sub-region-code": "005" + }, + { + "name": "Uzbekistan", + "alpha-2": "UZ", + "alpha-3": "UZB", + "country-code": "860", + "iso_3166-2": "ISO 3166-2:UZ", + "region": "Asia", + "sub-region": "Central Asia", + "region-code": "142", + "sub-region-code": "143" + }, + { + "name": "Vanuatu", + "alpha-2": "VU", + "alpha-3": "VUT", + "country-code": "548", + "iso_3166-2": "ISO 3166-2:VU", + "region": "Oceania", + "sub-region": "Melanesia", + "region-code": "009", + "sub-region-code": "054" + }, + { + "name": "Venezuela (Bolivarian Republic of)", + "alpha-2": "VE", + "alpha-3": "VEN", + "country-code": "862", + "iso_3166-2": "ISO 3166-2:VE", + "region": "Americas", + "sub-region": "South America", + "region-code": "019", + "sub-region-code": "005" + }, + { + "name": "Viet Nam", + "alpha-2": "VN", + "alpha-3": "VNM", + "country-code": "704", + "iso_3166-2": "ISO 3166-2:VN", + "region": "Asia", + "sub-region": "South-Eastern Asia", + "region-code": "142", + "sub-region-code": "035" + }, + { + "name": "Virgin Islands (British)", + "alpha-2": "VG", + "alpha-3": "VGB", + "country-code": "092", + "iso_3166-2": "ISO 3166-2:VG", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Virgin Islands (U.S.)", + "alpha-2": "VI", + "alpha-3": "VIR", + "country-code": "850", + "iso_3166-2": "ISO 3166-2:VI", + "region": "Americas", + "sub-region": "Caribbean", + "region-code": "019", + "sub-region-code": "029" + }, + { + "name": "Wallis and Futuna", + "alpha-2": "WF", + "alpha-3": "WLF", + "country-code": "876", + "iso_3166-2": "ISO 3166-2:WF", + "region": "Oceania", + "sub-region": "Polynesia", + "region-code": "009", + "sub-region-code": "061" + }, + { + "name": "Western Sahara", + "alpha-2": "EH", + "alpha-3": "ESH", + "country-code": "732", + "iso_3166-2": "ISO 3166-2:EH", + "region": "Africa", + "sub-region": "Northern Africa", + "region-code": "002", + "sub-region-code": "015" + }, + { + "name": "Yemen", + "alpha-2": "YE", + "alpha-3": "YEM", + "country-code": "887", + "iso_3166-2": "ISO 3166-2:YE", + "region": "Asia", + "sub-region": "Western Asia", + "region-code": "142", + "sub-region-code": "145" + }, + { + "name": "Zambia", + "alpha-2": "ZM", + "alpha-3": "ZMB", + "country-code": "894", + "iso_3166-2": "ISO 3166-2:ZM", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + }, + { + "name": "Zimbabwe", + "alpha-2": "ZW", + "alpha-3": "ZWE", + "country-code": "716", + "iso_3166-2": "ISO 3166-2:ZW", + "region": "Africa", + "sub-region": "Eastern Africa", + "region-code": "002", + "sub-region-code": "014" + } +] diff --git a/package.json b/package.json index a3cdd3d..bceddde 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "phantomcss": "^0.11.0", "postcss-brunch": "^0.5.0", "postcss-round-subpixels": "^1.2.0", - "sass-brunch": "^1.9.0", + "sass-brunch": "^2.10.4", "svg2ttf": "4.0.1", "svgicons2svgfont": "^5.0.0", "to-factory": "^1.0.0", diff --git a/scripts/serve b/scripts/serve index dc0f024..c8ef2aa 100755 --- a/scripts/serve +++ b/scripts/serve @@ -1,2 +1,2 @@ #!/usr/bin/env sh -brunch watch -d +brunch watch diff --git a/src/symbols/NPL_CRESCENT.svg b/src/symbols/NPL_CRESCENT.svg new file mode 100644 index 0000000..26891ad --- /dev/null +++ b/src/symbols/NPL_CRESCENT.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/src/symbols/NPL_STAR.svg b/src/symbols/NPL_STAR.svg new file mode 100644 index 0000000..581c78d --- /dev/null +++ b/src/symbols/NPL_STAR.svg @@ -0,0 +1,66 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/symlinks/taiwan,_province_of_china.scss b/symlinks/taiwan.scss similarity index 100% rename from symlinks/taiwan,_province_of_china.scss rename to symlinks/taiwan.scss diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..38dc614 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,5413 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +CSSselect@~0.4.0: + version "0.4.1" + resolved "https://registry.yarnpkg.com/CSSselect/-/CSSselect-0.4.1.tgz#f8ab7e1f8418ce63cda6eb7bd778a85d7ec492b2" + dependencies: + CSSwhat "0.4" + domutils "1.4" + +CSSwhat@0.4: + version "0.4.7" + resolved "https://registry.yarnpkg.com/CSSwhat/-/CSSwhat-0.4.7.tgz#867da0ff39f778613242c44cfea83f0aa4ebdf9b" + +abab@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" + +abbrev@1: + version "1.0.9" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135" + +accepts@^1.2.5, accepts@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" + dependencies: + mime-types "~2.1.11" + negotiator "0.6.1" + +acorn-globals@^1.0.4: + version "1.0.9" + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-1.0.9.tgz#55bb5e98691507b74579d0513413217c380c54cf" + dependencies: + acorn "^2.1.0" + +acorn-to-esprima@^1.0.5: + version "1.0.7" + resolved "https://registry.yarnpkg.com/acorn-to-esprima/-/acorn-to-esprima-1.0.7.tgz#9436259760098f9ead9b9da2242fab2f4850281b" + +acorn@^2.1.0, acorn@^2.4.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7" + +acorn@^3.1.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" + +adm-zip@0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/adm-zip/-/adm-zip-0.2.1.tgz#e801cedeb5bd9a4e98d699c5c0f4239e2731dcbf" + +agentkeepalive@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-2.2.0.tgz#c5d1bd4b129008f1163f236f86e5faea2026e2ef" + +algolia-ms@0.7.1-fix-future-reserved-words: + version "0.7.1-fix-future-reserved-words" + resolved "https://registry.yarnpkg.com/algolia-ms/-/algolia-ms-0.7.1-fix-future-reserved-words.tgz#fa2e440152706a055283ac95468beee3bea5f2b3" + +algoliasearch@^3.14.6: + version "3.19.0" + resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-3.19.0.tgz#bcf554cc42e3d6ac7ed6438b7b77dfdfbaf030c7" + dependencies: + agentkeepalive "^2.1.1" + debug "^2.2.0" + debug-ms-fix-yui-compressor "2.2.2-future-reserved-word-fix-ms" + envify "^3.4.0" + es6-promise "^3.2.1" + events "^1.1.0" + foreach "^2.0.5" + global "^4.3.0" + inherits "^2.0.1" + isarray "^1.0.0" + load-script "^1.0.0" + object-keys "^1.0.11" + querystring-es3 "^0.2.1" + reduce "^1.0.1" + semver "^5.1.0" + tunnel-agent "^0.4.3" + +align-text@^0.1.1, align-text@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" + dependencies: + kind-of "^3.0.2" + longest "^1.0.1" + repeat-string "^1.5.2" + +alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" + +alter@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/alter/-/alter-0.2.0.tgz#c7588808617572034aae62480af26b1d4d1cb3cd" + dependencies: + stable "~0.1.3" + +amdefine@>=0.0.4: + version "1.0.1" + resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" + +ansi-escapes@^1.1.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" + +ansi-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.0.0.tgz#c5061b6e0ef8a81775e50f5d66151bf6bf371107" + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + +ansicolors@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" + +anymatch@^1.0.0, anymatch@^1.3.0, anymatch@~1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" + dependencies: + arrify "^1.0.0" + micromatch "^2.1.5" + +anysort@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/anysort/-/anysort-1.0.1.tgz#341bd5d5ba1485f64e55ae865f1d45994b507fc4" + dependencies: + anymatch "~1.3.0" + +aproba@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0" + +are-we-there-yet@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.0 || ^1.1.13" + +argparse@^1.0.2, argparse@^1.0.6, argparse@^1.0.7: + version "1.0.9" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" + 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-flatten@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" + +array-find-index@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + +array-index@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-index/-/array-index-1.0.0.tgz#ec56a749ee103e4e08c790b9c353df16055b97f9" + dependencies: + debug "^2.2.0" + es6-symbol "^3.0.2" + +array-union@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" + dependencies: + array-uniq "^1.0.1" + +array-uniq@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" + +array-unique@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" + +arrify@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + +asn1.js@^4.0.0: + version "4.8.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.8.1.tgz#3949b7f5fd1e8bedc13be3abebf477f93490c810" + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +asn1@0.1.11: + version "0.1.11" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.1.11.tgz#559be18376d08a4ec4dbe80877d27818639b2df7" + +asn1@~0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" + +assert-plus@^0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.1.5.tgz#ee74009413002d84cec7219c6ac811812e723160" + +assert-plus@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" + +assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + +assert@^1.3.0, assert@~1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.3.0.tgz#03939a622582a812cc202320a0b9a56c9b815849" + dependencies: + util "0.10.3" + +ast-traverse@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/ast-traverse/-/ast-traverse-0.1.1.tgz#69cf2b8386f19dcda1bb1e05d68fe359d8897de6" + +ast-types@0.8.12: + version "0.8.12" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.8.12.tgz#a0d90e4351bb887716c83fd637ebf818af4adfcc" + +async-each@^1.0.0, async-each@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" + +async-each@~0.1.3, async-each@~0.1.4: + version "0.1.6" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-0.1.6.tgz#b67e99edcddf96541e44af56290cd7d5c6e70439" + +async-foreach@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" + +async@1.5.0, async@^1.4.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/async/-/async-1.5.0.tgz#2796642723573859565633fc6274444bee2f8ce3" + +async@~0.2.6: + version "0.2.10" + resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" + +async@~0.9.0: + version "0.9.2" + resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + +auto-reload-brunch@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/auto-reload-brunch/-/auto-reload-brunch-2.0.0.tgz#1f217a2075fe467c302848eb8b7f641e82ad1ef5" + dependencies: + ws "^0.8.0" + +autoprefixer@^6.3.1, autoprefixer@^6.3.6: + version "6.5.2" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.5.2.tgz#37cc910c5e1139ad341a006d5f6d441a380b742b" + dependencies: + browserslist "~1.4.0" + caniuse-db "^1.0.30000576" + normalize-range "^0.1.2" + num2fraction "^1.2.2" + postcss "^5.2.5" + postcss-value-parser "^3.2.3" + +aws-sign2@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.5.0.tgz#c57103f7a17fc037f02d7c2e64b602ea223f7d63" + +aws-sign2@~0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" + +aws4@^1.2.1: + version "1.5.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755" + +babel-brunch@6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/babel-brunch/-/babel-brunch-6.0.2.tgz#51b11f731c9b360674c560c56c125501f3bcd02d" + dependencies: + anymatch "^1.0.0" + babel-core "^6.0.0" + babel-preset-es2015 "^6.0.0" + +babel-code-frame@^6.16.0: + version "6.16.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.16.0.tgz#f90e60da0862909d3ce098733b5d3987c97cb8de" + dependencies: + chalk "^1.1.0" + esutils "^2.0.2" + js-tokens "^2.0.0" + +babel-core@^5.6.21, babel-core@^5.8.29, babel-core@^5.8.33: + version "5.8.38" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-5.8.38.tgz#1fcaee79d7e61b750b00b8e54f6dfc9d0af86558" + dependencies: + babel-plugin-constant-folding "^1.0.1" + babel-plugin-dead-code-elimination "^1.0.2" + babel-plugin-eval "^1.0.1" + babel-plugin-inline-environment-variables "^1.0.1" + babel-plugin-jscript "^1.0.4" + babel-plugin-member-expression-literals "^1.0.1" + babel-plugin-property-literals "^1.0.1" + babel-plugin-proto-to-assign "^1.0.3" + babel-plugin-react-constant-elements "^1.0.3" + babel-plugin-react-display-name "^1.0.3" + babel-plugin-remove-console "^1.0.1" + babel-plugin-remove-debugger "^1.0.1" + babel-plugin-runtime "^1.0.7" + babel-plugin-undeclared-variables-check "^1.0.2" + babel-plugin-undefined-to-void "^1.1.6" + babylon "^5.8.38" + bluebird "^2.9.33" + chalk "^1.0.0" + convert-source-map "^1.1.0" + core-js "^1.0.0" + debug "^2.1.1" + detect-indent "^3.0.0" + esutils "^2.0.0" + fs-readdir-recursive "^0.1.0" + globals "^6.4.0" + home-or-tmp "^1.0.0" + is-integer "^1.0.4" + js-tokens "1.0.1" + json5 "^0.4.0" + lodash "^3.10.0" + minimatch "^2.0.3" + output-file-sync "^1.1.0" + path-exists "^1.0.0" + path-is-absolute "^1.0.0" + private "^0.1.6" + regenerator "0.8.40" + regexpu "^1.3.0" + repeating "^1.1.2" + resolve "^1.1.6" + shebang-regex "^1.0.0" + slash "^1.0.0" + source-map "^0.5.0" + source-map-support "^0.2.10" + to-fast-properties "^1.0.0" + trim-right "^1.0.0" + try-resolve "^1.0.0" + +babel-core@^6.0.0, babel-core@^6.18.0: + version "6.18.2" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.18.2.tgz#d8bb14dd6986fa4f3566a26ceda3964fa0e04e5b" + dependencies: + babel-code-frame "^6.16.0" + babel-generator "^6.18.0" + babel-helpers "^6.16.0" + babel-messages "^6.8.0" + babel-register "^6.18.0" + babel-runtime "^6.9.1" + babel-template "^6.16.0" + babel-traverse "^6.18.0" + babel-types "^6.18.0" + babylon "^6.11.0" + convert-source-map "^1.1.0" + debug "^2.1.1" + json5 "^0.5.0" + lodash "^4.2.0" + minimatch "^3.0.2" + path-is-absolute "^1.0.0" + private "^0.1.6" + slash "^1.0.0" + source-map "^0.5.0" + +babel-eslint@^4.1.6: + version "4.1.8" + resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-4.1.8.tgz#4f79e7a4f5879ecf03f48cb16f552a355fcc31b2" + dependencies: + acorn-to-esprima "^1.0.5" + babel-core "^5.8.33" + lodash.assign "^3.2.0" + lodash.pick "^3.1.0" + +babel-generator@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.18.0.tgz#e4f104cb3063996d9850556a45aae4a022060a07" + dependencies: + babel-messages "^6.8.0" + babel-runtime "^6.9.0" + babel-types "^6.18.0" + detect-indent "^4.0.0" + jsesc "^1.3.0" + lodash "^4.2.0" + source-map "^0.5.0" + +babel-helper-call-delegate@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.18.0.tgz#05b14aafa430884b034097ef29e9f067ea4133bd" + dependencies: + babel-helper-hoist-variables "^6.18.0" + babel-runtime "^6.0.0" + babel-traverse "^6.18.0" + babel-types "^6.18.0" + +babel-helper-define-map@^6.18.0, babel-helper-define-map@^6.8.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.18.0.tgz#8d6c85dc7fbb4c19be3de40474d18e97c3676ec2" + dependencies: + babel-helper-function-name "^6.18.0" + babel-runtime "^6.9.0" + babel-types "^6.18.0" + lodash "^4.2.0" + +babel-helper-function-name@^6.18.0, babel-helper-function-name@^6.8.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.18.0.tgz#68ec71aeba1f3e28b2a6f0730190b754a9bf30e6" + dependencies: + babel-helper-get-function-arity "^6.18.0" + babel-runtime "^6.0.0" + babel-template "^6.8.0" + babel-traverse "^6.18.0" + babel-types "^6.18.0" + +babel-helper-get-function-arity@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.18.0.tgz#a5b19695fd3f9cdfc328398b47dafcd7094f9f24" + dependencies: + babel-runtime "^6.0.0" + babel-types "^6.18.0" + +babel-helper-hoist-variables@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.18.0.tgz#a835b5ab8b46d6de9babefae4d98ea41e866b82a" + dependencies: + babel-runtime "^6.0.0" + babel-types "^6.18.0" + +babel-helper-optimise-call-expression@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.18.0.tgz#9261d0299ee1a4f08a6dd28b7b7c777348fd8f0f" + dependencies: + babel-runtime "^6.0.0" + babel-types "^6.18.0" + +babel-helper-regex@^6.8.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.18.0.tgz#ae0ebfd77de86cb2f1af258e2cc20b5fe893ecc6" + dependencies: + babel-runtime "^6.9.0" + babel-types "^6.18.0" + lodash "^4.2.0" + +babel-helper-replace-supers@^6.18.0, babel-helper-replace-supers@^6.8.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.18.0.tgz#28ec69877be4144dbd64f4cc3a337e89f29a924e" + dependencies: + babel-helper-optimise-call-expression "^6.18.0" + babel-messages "^6.8.0" + babel-runtime "^6.0.0" + babel-template "^6.16.0" + babel-traverse "^6.18.0" + babel-types "^6.18.0" + +babel-helpers@^6.16.0: + version "6.16.0" + resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.16.0.tgz#1095ec10d99279460553e67eb3eee9973d3867e3" + dependencies: + babel-runtime "^6.0.0" + babel-template "^6.16.0" + +babel-messages@^6.8.0: + version "6.8.0" + resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9" + dependencies: + babel-runtime "^6.0.0" + +babel-plugin-check-es2015-constants@^6.3.13: + version "6.8.0" + resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.8.0.tgz#dbf024c32ed37bfda8dee1e76da02386a8d26fe7" + dependencies: + babel-runtime "^6.0.0" + +babel-plugin-constant-folding@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-plugin-constant-folding/-/babel-plugin-constant-folding-1.0.1.tgz#8361d364c98e449c3692bdba51eff0844290aa8e" + +babel-plugin-dead-code-elimination@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/babel-plugin-dead-code-elimination/-/babel-plugin-dead-code-elimination-1.0.2.tgz#5f7c451274dcd7cccdbfbb3e0b85dd28121f0f65" + +babel-plugin-eval@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-plugin-eval/-/babel-plugin-eval-1.0.1.tgz#a2faed25ce6be69ade4bfec263f70169195950da" + +babel-plugin-inline-environment-variables@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-plugin-inline-environment-variables/-/babel-plugin-inline-environment-variables-1.0.1.tgz#1f58ce91207ad6a826a8bf645fafe68ff5fe3ffe" + +babel-plugin-jscript@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/babel-plugin-jscript/-/babel-plugin-jscript-1.0.4.tgz#8f342c38276e87a47d5fa0a8bd3d5eb6ccad8fcc" + +babel-plugin-member-expression-literals@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-plugin-member-expression-literals/-/babel-plugin-member-expression-literals-1.0.1.tgz#cc5edb0faa8dc927170e74d6d1c02440021624d3" + +babel-plugin-property-literals@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-plugin-property-literals/-/babel-plugin-property-literals-1.0.1.tgz#0252301900192980b1c118efea48ce93aab83336" + +babel-plugin-proto-to-assign@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/babel-plugin-proto-to-assign/-/babel-plugin-proto-to-assign-1.0.4.tgz#c49e7afd02f577bc4da05ea2df002250cf7cd123" + dependencies: + lodash "^3.9.3" + +babel-plugin-react-constant-elements@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/babel-plugin-react-constant-elements/-/babel-plugin-react-constant-elements-1.0.3.tgz#946736e8378429cbc349dcff62f51c143b34e35a" + +babel-plugin-react-display-name@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/babel-plugin-react-display-name/-/babel-plugin-react-display-name-1.0.3.tgz#754fe38926e8424a4e7b15ab6ea6139dee0514fc" + +babel-plugin-remove-console@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-plugin-remove-console/-/babel-plugin-remove-console-1.0.1.tgz#d8f24556c3a05005d42aaaafd27787f53ff013a7" + +babel-plugin-remove-debugger@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/babel-plugin-remove-debugger/-/babel-plugin-remove-debugger-1.0.1.tgz#fd2ea3cd61a428ad1f3b9c89882ff4293e8c14c7" + +babel-plugin-runtime@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/babel-plugin-runtime/-/babel-plugin-runtime-1.0.7.tgz#bf7c7d966dd56ecd5c17fa1cb253c9acb7e54aaf" + +babel-plugin-transform-es2015-arrow-functions@^6.3.13: + version "6.8.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.8.0.tgz#5b63afc3181bdc9a8c4d481b5a4f3f7d7fef3d9d" + dependencies: + babel-runtime "^6.0.0" + +babel-plugin-transform-es2015-block-scoped-functions@^6.3.13: + version "6.8.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.8.0.tgz#ed95d629c4b5a71ae29682b998f70d9833eb366d" + dependencies: + babel-runtime "^6.0.0" + +babel-plugin-transform-es2015-block-scoping@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.18.0.tgz#3bfdcfec318d46df22525cdea88f1978813653af" + dependencies: + babel-runtime "^6.9.0" + babel-template "^6.15.0" + babel-traverse "^6.18.0" + babel-types "^6.18.0" + lodash "^4.2.0" + +babel-plugin-transform-es2015-classes@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.18.0.tgz#ffe7a17321bf83e494dcda0ae3fc72df48ffd1d9" + dependencies: + babel-helper-define-map "^6.18.0" + babel-helper-function-name "^6.18.0" + babel-helper-optimise-call-expression "^6.18.0" + babel-helper-replace-supers "^6.18.0" + babel-messages "^6.8.0" + babel-runtime "^6.9.0" + babel-template "^6.14.0" + babel-traverse "^6.18.0" + babel-types "^6.18.0" + +babel-plugin-transform-es2015-computed-properties@^6.3.13: + version "6.8.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.8.0.tgz#f51010fd61b3bd7b6b60a5fdfd307bb7a5279870" + dependencies: + babel-helper-define-map "^6.8.0" + babel-runtime "^6.0.0" + babel-template "^6.8.0" + +babel-plugin-transform-es2015-destructuring@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.18.0.tgz#a08fb89415ab82058649558bedb7bf8dafa76ba5" + dependencies: + babel-runtime "^6.9.0" + +babel-plugin-transform-es2015-duplicate-keys@^6.6.0: + version "6.8.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.8.0.tgz#fd8f7f7171fc108cc1c70c3164b9f15a81c25f7d" + dependencies: + babel-runtime "^6.0.0" + babel-types "^6.8.0" + +babel-plugin-transform-es2015-for-of@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.18.0.tgz#4c517504db64bf8cfc119a6b8f177211f2028a70" + dependencies: + babel-runtime "^6.0.0" + +babel-plugin-transform-es2015-function-name@^6.9.0: + version "6.9.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.9.0.tgz#8c135b17dbd064e5bba56ec511baaee2fca82719" + dependencies: + babel-helper-function-name "^6.8.0" + babel-runtime "^6.9.0" + babel-types "^6.9.0" + +babel-plugin-transform-es2015-literals@^6.3.13: + version "6.8.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.8.0.tgz#50aa2e5c7958fc2ab25d74ec117e0cc98f046468" + dependencies: + babel-runtime "^6.0.0" + +babel-plugin-transform-es2015-modules-amd@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.18.0.tgz#49a054cbb762bdf9ae2d8a807076cfade6141e40" + dependencies: + babel-plugin-transform-es2015-modules-commonjs "^6.18.0" + babel-runtime "^6.0.0" + babel-template "^6.8.0" + +babel-plugin-transform-es2015-modules-commonjs@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.18.0.tgz#c15ae5bb11b32a0abdcc98a5837baa4ee8d67bcc" + dependencies: + babel-plugin-transform-strict-mode "^6.18.0" + babel-runtime "^6.0.0" + babel-template "^6.16.0" + babel-types "^6.18.0" + +babel-plugin-transform-es2015-modules-systemjs@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.18.0.tgz#f09294707163edae4d3b3e8bfacecd01d920b7ad" + dependencies: + babel-helper-hoist-variables "^6.18.0" + babel-runtime "^6.11.6" + babel-template "^6.14.0" + +babel-plugin-transform-es2015-modules-umd@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.18.0.tgz#23351770ece5c1f8e83ed67cb1d7992884491e50" + dependencies: + babel-plugin-transform-es2015-modules-amd "^6.18.0" + babel-runtime "^6.0.0" + babel-template "^6.8.0" + +babel-plugin-transform-es2015-object-super@^6.3.13: + version "6.8.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.8.0.tgz#1b858740a5a4400887c23dcff6f4d56eea4a24c5" + dependencies: + babel-helper-replace-supers "^6.8.0" + babel-runtime "^6.0.0" + +babel-plugin-transform-es2015-parameters@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.18.0.tgz#9b2cfe238c549f1635ba27fc1daa858be70608b1" + dependencies: + babel-helper-call-delegate "^6.18.0" + babel-helper-get-function-arity "^6.18.0" + babel-runtime "^6.9.0" + babel-template "^6.16.0" + babel-traverse "^6.18.0" + babel-types "^6.18.0" + +babel-plugin-transform-es2015-shorthand-properties@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.18.0.tgz#e2ede3b7df47bf980151926534d1dd0cbea58f43" + dependencies: + babel-runtime "^6.0.0" + babel-types "^6.18.0" + +babel-plugin-transform-es2015-spread@^6.3.13: + version "6.8.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.8.0.tgz#0217f737e3b821fa5a669f187c6ed59205f05e9c" + dependencies: + babel-runtime "^6.0.0" + +babel-plugin-transform-es2015-sticky-regex@^6.3.13: + version "6.8.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.8.0.tgz#e73d300a440a35d5c64f5c2a344dc236e3df47be" + dependencies: + babel-helper-regex "^6.8.0" + babel-runtime "^6.0.0" + babel-types "^6.8.0" + +babel-plugin-transform-es2015-template-literals@^6.6.0: + version "6.8.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.8.0.tgz#86eb876d0a2c635da4ec048b4f7de9dfc897e66b" + dependencies: + babel-runtime "^6.0.0" + +babel-plugin-transform-es2015-typeof-symbol@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.18.0.tgz#0b14c48629c90ff47a0650077f6aa699bee35798" + dependencies: + babel-runtime "^6.0.0" + +babel-plugin-transform-es2015-unicode-regex@^6.3.13: + version "6.11.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.11.0.tgz#6298ceabaad88d50a3f4f392d8de997260f6ef2c" + dependencies: + babel-helper-regex "^6.8.0" + babel-runtime "^6.0.0" + regexpu-core "^2.0.0" + +babel-plugin-transform-regenerator@^6.16.0: + version "6.16.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.16.1.tgz#a75de6b048a14154aae14b0122756c5bed392f59" + dependencies: + babel-runtime "^6.9.0" + babel-types "^6.16.0" + private "~0.1.5" + +babel-plugin-transform-strict-mode@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.18.0.tgz#df7cf2991fe046f44163dcd110d5ca43bc652b9d" + dependencies: + babel-runtime "^6.0.0" + babel-types "^6.18.0" + +babel-plugin-undeclared-variables-check@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/babel-plugin-undeclared-variables-check/-/babel-plugin-undeclared-variables-check-1.0.2.tgz#5cf1aa539d813ff64e99641290af620965f65dee" + dependencies: + leven "^1.0.2" + +babel-plugin-undefined-to-void@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/babel-plugin-undefined-to-void/-/babel-plugin-undefined-to-void-1.1.6.tgz#7f578ef8b78dfae6003385d8417a61eda06e2f81" + +babel-preset-es2015@^6.0.0, babel-preset-es2015@^6.3.13: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.18.0.tgz#b8c70df84ec948c43dcf2bf770e988eb7da88312" + dependencies: + babel-plugin-check-es2015-constants "^6.3.13" + babel-plugin-transform-es2015-arrow-functions "^6.3.13" + babel-plugin-transform-es2015-block-scoped-functions "^6.3.13" + babel-plugin-transform-es2015-block-scoping "^6.18.0" + babel-plugin-transform-es2015-classes "^6.18.0" + babel-plugin-transform-es2015-computed-properties "^6.3.13" + babel-plugin-transform-es2015-destructuring "^6.18.0" + babel-plugin-transform-es2015-duplicate-keys "^6.6.0" + babel-plugin-transform-es2015-for-of "^6.18.0" + babel-plugin-transform-es2015-function-name "^6.9.0" + babel-plugin-transform-es2015-literals "^6.3.13" + babel-plugin-transform-es2015-modules-amd "^6.18.0" + babel-plugin-transform-es2015-modules-commonjs "^6.18.0" + babel-plugin-transform-es2015-modules-systemjs "^6.18.0" + babel-plugin-transform-es2015-modules-umd "^6.18.0" + babel-plugin-transform-es2015-object-super "^6.3.13" + babel-plugin-transform-es2015-parameters "^6.18.0" + babel-plugin-transform-es2015-shorthand-properties "^6.18.0" + babel-plugin-transform-es2015-spread "^6.3.13" + babel-plugin-transform-es2015-sticky-regex "^6.3.13" + babel-plugin-transform-es2015-template-literals "^6.6.0" + babel-plugin-transform-es2015-typeof-symbol "^6.18.0" + babel-plugin-transform-es2015-unicode-regex "^6.3.13" + babel-plugin-transform-regenerator "^6.16.0" + +babel-register@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.18.0.tgz#892e2e03865078dd90ad2c715111ec4449b32a68" + dependencies: + babel-core "^6.18.0" + babel-runtime "^6.11.6" + core-js "^2.4.0" + home-or-tmp "^2.0.0" + lodash "^4.2.0" + mkdirp "^0.5.1" + source-map-support "^0.4.2" + +babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.9.0, babel-runtime@^6.9.1: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.18.0.tgz#0f4177ffd98492ef13b9f823e9994a02584c9078" + dependencies: + core-js "^2.4.0" + regenerator-runtime "^0.9.5" + +babel-template@^6.14.0, babel-template@^6.15.0, babel-template@^6.16.0, babel-template@^6.8.0: + version "6.16.0" + resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca" + dependencies: + babel-runtime "^6.9.0" + babel-traverse "^6.16.0" + babel-types "^6.16.0" + babylon "^6.11.0" + lodash "^4.2.0" + +babel-traverse@^6.16.0, babel-traverse@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.18.0.tgz#5aeaa980baed2a07c8c47329cd90c3b90c80f05e" + dependencies: + babel-code-frame "^6.16.0" + babel-messages "^6.8.0" + babel-runtime "^6.9.0" + babel-types "^6.18.0" + babylon "^6.11.0" + debug "^2.2.0" + globals "^9.0.0" + invariant "^2.2.0" + lodash "^4.2.0" + +babel-types@^6.16.0, babel-types@^6.18.0, babel-types@^6.8.0, babel-types@^6.9.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.18.0.tgz#1f7d5a73474c59eb9151b2417bbff4e4fce7c3f8" + dependencies: + babel-runtime "^6.9.1" + esutils "^2.0.2" + lodash "^4.2.0" + to-fast-properties "^1.0.1" + +babel@^5.8.29: + version "5.8.38" + resolved "https://registry.yarnpkg.com/babel/-/babel-5.8.38.tgz#dfb087c22894917c576fb67ce9cf328d458629fb" + dependencies: + babel-core "^5.6.21" + chokidar "^1.0.0" + commander "^2.6.0" + convert-source-map "^1.1.0" + fs-readdir-recursive "^0.1.0" + glob "^5.0.5" + lodash "^3.2.0" + output-file-sync "^1.1.0" + path-exists "^1.0.0" + path-is-absolute "^1.0.0" + slash "^1.0.0" + source-map "^0.5.0" + +babylon@^5.8.38: + version "5.8.38" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-5.8.38.tgz#ec9b120b11bf6ccd4173a18bf217e60b79859ffd" + +babylon@^6.11.0: + version "6.13.1" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.13.1.tgz#adca350e088f0467647157652bafead6ddb8dfdb" + +balanced-match@^0.4.1, balanced-match@^0.4.2: + version "0.4.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" + +balanced-match@~0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.1.0.tgz#b504bd05869b39259dd0c5efc35d843176dccc4a" + +base62@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/base62/-/base62-1.1.1.tgz#974e82c11bd5e00816b508a7ed9c7b9086c9db6b" + +base64-js@^1.0.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" + +batch@0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/batch/-/batch-0.2.1.tgz#4463997bb4d5fd1c7a011548813e52aa189c2c79" + +batch@~0.5.2: + version "0.5.3" + resolved "https://registry.yarnpkg.com/batch/-/batch-0.5.3.tgz#3f3414f380321743bfc1042f9a83ff1d5824d464" + +bcrypt-pbkdf@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4" + dependencies: + tweetnacl "^0.14.3" + +big.js@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" + +binary-extensions@^1.0.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.7.0.tgz#6c1610db163abfb34edfe42fa423343a1e01185d" + +bindings@1.2.x: + version "1.2.1" + resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.2.1.tgz#14ad6113812d2d37d72e67b4cacb4bb726505f11" + +block-stream@*: + version "0.0.9" + resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" + dependencies: + inherits "~2.0.0" + +bluebird@^2.9.33: + version "2.11.0" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.11.0.tgz#534b9033c022c9579c56ba3b3e5a5caafbb650e1" + +bluebird@^3.4.1: + version "3.4.6" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.4.6.tgz#01da8d821d87813d158967e743d5fe6c62cf8c0f" + +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: + version "4.11.6" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" + +boolbase@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + +boom@0.4.x: + version "0.4.2" + resolved "https://registry.yarnpkg.com/boom/-/boom-0.4.2.tgz#7a636e9ded4efcefb19cef4947a3c67dfaee911b" + dependencies: + hoek "0.9.x" + +boom@2.x.x: + version "2.10.1" + resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" + dependencies: + hoek "2.x.x" + +brace-expansion@^1.0.0: + version "1.1.6" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" + dependencies: + balanced-match "^0.4.1" + 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" + +breakable@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/breakable/-/breakable-1.0.0.tgz#784a797915a38ead27bad456b5572cb4bbaa78c1" + +brorand@^1.0.1: + version "1.0.6" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.0.6.tgz#4028706b915f91f7b349a2e0bf3c376039d216e5" + +browser-resolve@~1.11.1: + version "1.11.2" + resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" + dependencies: + resolve "1.1.7" + +browserify-aes@^1.0.0, browserify-aes@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" + dependencies: + buffer-xor "^1.0.2" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.0" + inherits "^2.0.1" + +browserify-cipher@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + +browserify-rsa@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" + dependencies: + bn.js "^4.1.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.0.tgz#10773910c3c206d5420a46aad8694f820b85968f" + dependencies: + bn.js "^4.1.1" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.2" + elliptic "^6.0.0" + inherits "^2.0.1" + parse-asn1 "^5.0.0" + +browserslist@~1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.4.0.tgz#9cfdcf5384d9158f5b70da2aa00b30e8ff019049" + dependencies: + caniuse-db "^1.0.30000539" + +brunch@2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/brunch/-/brunch-2.4.2.tgz#93472188d6bc08ce9d6ecdbdf0cc73f5a584e9b1" + dependencies: + anymatch "~1.3.0" + anysort "~1.0.0" + async-each "~1.0.0" + browser-resolve "~1.11.1" + chokidar "~1.4.0" + coffee-script "~1.10.0" + commander "~2.9.0" + commonjs-require-definition "~0.3.0" + debug "~2.2.0" + detective "~4.3.0" + fcache "~0.1.0" + glob "~7.0.0" + init-skeleton "~0.8.0" + loggy "~0.3.0" + mkdirp "~0.5.0" + node-browser-modules "~0.1.0" + pushserve "^1.0.0" + quickly-copy-file "~1.0.0" + read-components "~0.6.0" + source-map "~0.5.0" + +buffer-shims@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" + +buffer-xor@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + +buffer@~4.3.0: + version "4.3.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.3.1.tgz#0e65fd01cc3e9154d152f6b3c934b5b8a1b6733c" + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + isarray "^1.0.0" + +bufferutil@1.2.x: + version "1.2.1" + resolved "https://registry.yarnpkg.com/bufferutil/-/bufferutil-1.2.1.tgz#37be5d36e1e06492221e68d474b1ac58e510cbd7" + dependencies: + bindings "1.2.x" + nan "^2.0.5" + +builtin-modules@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" + +builtin-status-codes@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-2.0.0.tgz#6f22003baacf003ccd287afe6872151fddc58579" + +camelcase-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" + dependencies: + camelcase "^2.0.0" + map-obj "^1.0.0" + +camelcase@^1.0.2, camelcase@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" + +camelcase@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" + +camelcase@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" + +caniuse-db@^1.0.30000539, caniuse-db@^1.0.30000576: + version "1.0.30000576" + resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000576.tgz#c0623997f6b1ff3b56fa33b352fe44874f61c0ce" + +caseless@~0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" + +casperjs@~1.1.0-beta3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/casperjs/-/casperjs-1.1.3.tgz#9653de731f8aa44d0915a69ba2233164bb2eaf94" + +cbify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/cbify/-/cbify-1.0.0.tgz#1a7ad4044b2f92317e7a1badda3a727607835d84" + dependencies: + fn-args "^1.0.0" + wrappy "^1.0.1" + +center-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" + dependencies: + align-text "^0.1.3" + lazy-cache "^1.0.3" + +chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3, chalk@~1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +cheerio@^0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.18.0.tgz#4e1c06377e725b740e996e0dfec353863de677fa" + dependencies: + CSSselect "~0.4.0" + dom-serializer "~0.0.0" + entities "~1.1.1" + htmlparser2 "~3.8.1" + lodash "~2.4.1" + +cheerio@~0.20.0: + version "0.20.0" + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.20.0.tgz#5c710f2bab95653272842ba01c6ea61b3545ec35" + dependencies: + css-select "~1.2.0" + dom-serializer "~0.1.0" + entities "~1.1.1" + htmlparser2 "~3.8.1" + lodash "^4.1.0" + optionalDependencies: + jsdom "^7.0.2" + +chokidar@^1.0.0: + version "1.6.1" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" + 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" + +chokidar@~1.4.0: + version "1.4.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.4.3.tgz#5fe733a4d9acaea51b26454b7e59559163d0dbb2" + 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" + +cipher-base@^1.0.0, cipher-base@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07" + dependencies: + inherits "^2.0.1" + +circular-json@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" + +clap@^1.0.9: + version "1.1.1" + resolved "https://registry.yarnpkg.com/clap/-/clap-1.1.1.tgz#a8a93e0bfb7581ac199c4f001a5525a724ce696d" + dependencies: + chalk "^1.1.3" + +cli-cursor@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" + dependencies: + restore-cursor "^1.0.1" + +cli-width@^1.0.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-1.1.1.tgz#a4d293ef67ebb7b88d4a4d42c0ccf00c4d1e366d" + +cliui@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" + dependencies: + center-align "^0.1.1" + right-align "^0.1.1" + wordwrap "0.0.2" + +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" + +clone@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" + +co@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/co/-/co-3.1.0.tgz#4ea54ea5a08938153185e15210c68d9092bc1b78" + +coa@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.1.tgz#7f959346cfc8719e3f7233cd6852854a7c67d8a3" + dependencies: + q "^1.1.2" + +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" + +coffee-script@~1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/coffee-script/-/coffee-script-1.10.0.tgz#12938bcf9be1948fa006f92e0c4c9e81705108c0" + +collections@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/collections/-/collections-0.2.2.tgz#1f23026b2ef36f927eecc901e99c5f0d48fa334e" + dependencies: + weak-map "1.0.0" + +color-convert@^1.3.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.6.0.tgz#7592755faf53938a05b1ea8e5374cab77d6dd190" + dependencies: + color-name "^1.1.1" + +color-name@^1.0.0, color-name@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689" + +color-string@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" + dependencies: + color-name "^1.0.0" + +color@^0.11.0: + version "0.11.4" + resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" + dependencies: + clone "^1.0.2" + color-convert "^1.3.0" + color-string "^0.3.0" + +colormin@^1.0.5: + version "1.1.2" + resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" + dependencies: + color "^0.11.0" + css-color-names "0.0.4" + has "^1.0.1" + +colors@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" + +combined-stream@^1.0.5, combined-stream@~1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" + dependencies: + delayed-stream "~1.0.0" + +combined-stream@~0.0.4: + version "0.0.7" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-0.0.7.tgz#0137e657baa5a7541c57ac37ac5fc07d73b4dc1f" + dependencies: + delayed-stream "0.0.5" + +commander@2.9.0, commander@^2.0.0, commander@^2.5.0, commander@^2.6.0, commander@^2.9.0, commander@~2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" + dependencies: + graceful-readlink ">= 1.0.0" + +commoner@^0.10.1, commoner@~0.10.3: + version "0.10.4" + resolved "https://registry.yarnpkg.com/commoner/-/commoner-0.10.4.tgz#98f3333dd3ad399596bb2d384a783bb7213d68f8" + dependencies: + commander "^2.5.0" + detective "^4.3.1" + glob "^5.0.15" + graceful-fs "^4.1.2" + iconv-lite "^0.4.5" + mkdirp "^0.5.0" + private "^0.1.6" + q "^1.1.2" + recast "^0.10.0" + +commonjs-require-definition@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/commonjs-require-definition/-/commonjs-require-definition-0.3.0.tgz#06052feeaf98cb9add04ecf9fa103849365f4e5d" + +component-builder@~0.10.0: + version "0.10.1" + resolved "https://registry.yarnpkg.com/component-builder/-/component-builder-0.10.1.tgz#d29c7ab70241a678e3f8dbea4d1759c68b6f8f9b" + dependencies: + batch "0.2.1" + component-require "0.3.1" + cp "~0.1.0" + debug "*" + mkdirp "0.3.4" + string-to-js "0.0.1" + +component-emitter@~1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" + +component-require@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/component-require/-/component-require-0.3.1.tgz#50a00e2e2cb0fe273ab4268fe20ae4804f35fe6d" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + +concat-stream@^1.4.6: + version "1.5.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.5.2.tgz#708978624d856af41a5a741defdd261da752c266" + dependencies: + inherits "~2.0.1" + readable-stream "~2.0.0" + typedarray "~0.0.5" + +config-chain@~1.1.1: + version "1.1.11" + resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.11.tgz#aba09747dfbe4c3e70e766a6e41586e1859fc6f2" + dependencies: + ini "^1.3.4" + proto-list "~1.2.1" + +connect-slashes@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/connect-slashes/-/connect-slashes-1.3.1.tgz#95d61830d0f9d5853c8688f0b5f43988b186ac37" + +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-disposition@0.5.1, content-disposition@^0.5.0: + version "0.5.1" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.1.tgz#87476c6a67c8daa87e32e87616df883ba7fb071b" + +content-type@^1.0.1, content-type@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" + +convert-source-map@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + +cookie@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" + +cookiejar@2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.0.6.tgz#0abf356ad00d1c5a219d88d44518046dd026acfe" + +core-js@^1.0.0: + version "1.2.7" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" + +core-js@^2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" + +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" + +cp@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/cp/-/cp-0.1.1.tgz#3946a76c1a53ffe0e68593f341c124b336c1f06d" + +create-ecdh@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" + dependencies: + bn.js "^4.1.0" + elliptic "^6.0.0" + +create-hash@^1.1.0, create-hash@^1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad" + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + ripemd160 "^1.0.0" + sha.js "^2.3.6" + +create-hmac@^1.1.0, create-hmac@^1.1.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170" + dependencies: + create-hash "^1.1.0" + inherits "^2.0.1" + +cross-spawn@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" + dependencies: + lru-cache "^4.0.1" + which "^1.2.9" + +cryptiles@0.2.x: + version "0.2.2" + resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-0.2.2.tgz#ed91ff1f17ad13d3748288594f8a48a0d26f325c" + dependencies: + boom "0.4.x" + +cryptiles@2.x.x: + version "2.0.5" + resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" + dependencies: + boom "2.x.x" + +crypto-browserify@~3.11.0: + version "3.11.0" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522" + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + +css-color-names@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" + +css-modules-loader-core@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/css-modules-loader-core/-/css-modules-loader-core-1.0.1.tgz#94e3eec9bc8174df0f974641f3e0d0550497f694" + dependencies: + icss-replace-symbols "1.0.2" + postcss "5.1.2" + postcss-modules-extract-imports "1.0.0" + postcss-modules-local-by-default "1.1.1" + postcss-modules-scope "1.0.2" + postcss-modules-values "1.2.2" + +css-select@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" + dependencies: + boolbase "~1.0.0" + css-what "2.1" + domutils "1.5.1" + nth-check "~1.0.1" + +css-selector-tokenizer@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.6.0.tgz#6445f582c7930d241dcc5007a43d6fcb8f073152" + dependencies: + cssesc "^0.1.0" + fastparse "^1.1.1" + regexpu-core "^1.0.0" + +css-what@2.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" + +cssesc@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" + +cssnano@^3.7.1: + version "3.8.0" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.8.0.tgz#bb90ac5292f42b679d9a05f6da0e9697556bb80d" + dependencies: + autoprefixer "^6.3.1" + decamelize "^1.1.2" + defined "^1.0.0" + has "^1.0.1" + object-assign "^4.0.1" + postcss "^5.0.14" + postcss-calc "^5.2.0" + postcss-colormin "^2.1.8" + postcss-convert-values "^2.3.4" + postcss-discard-comments "^2.0.4" + postcss-discard-duplicates "^2.0.1" + postcss-discard-empty "^2.0.1" + postcss-discard-overridden "^0.1.1" + postcss-discard-unused "^2.2.1" + postcss-filter-plugins "^2.0.0" + postcss-merge-idents "^2.1.5" + postcss-merge-longhand "^2.0.1" + postcss-merge-rules "^2.0.3" + postcss-minify-font-values "^1.0.2" + postcss-minify-gradients "^1.0.1" + postcss-minify-params "^1.0.4" + postcss-minify-selectors "^2.0.4" + postcss-normalize-charset "^1.1.0" + postcss-normalize-url "^3.0.7" + postcss-ordered-values "^2.1.0" + postcss-reduce-idents "^2.2.2" + postcss-reduce-initial "^1.0.0" + postcss-reduce-transforms "^1.0.3" + postcss-svgo "^2.1.1" + postcss-unique-selectors "^2.0.2" + postcss-value-parser "^3.2.3" + postcss-zindex "^2.0.1" + +csso@~2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/csso/-/csso-2.2.1.tgz#51fbb5347e50e81e6ed51668a48490ae6fe2afe2" + dependencies: + clap "^1.0.9" + source-map "^0.5.3" + +cssom@0.3.x, "cssom@>= 0.3.0 < 0.4.0": + version "0.3.1" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.1.tgz#c9e37ef2490e64f6d1baa10fda852257082c25d3" + +"cssstyle@>= 0.2.29 < 0.3.0": + version "0.2.37" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" + dependencies: + cssom "0.3.x" + +ctype@0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/ctype/-/ctype-0.5.3.tgz#82c18c2461f74114ef16c135224ad0b9144ca12f" + +cubic2quad@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/cubic2quad/-/cubic2quad-1.1.0.tgz#78abec71b1b0244fdca863910ced8e07446a90e7" + +currently-unhandled@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" + dependencies: + array-find-index "^1.0.1" + +d@^0.1.1, d@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/d/-/d-0.1.1.tgz#da184c535d18d8ee7ba2aa229b914009fae11309" + dependencies: + es5-ext "~0.10.2" + +dashdash@^1.12.0: + version "1.14.0" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.0.tgz#29e486c5418bf0f356034a993d51686a33e84141" + dependencies: + assert-plus "^1.0.0" + +debug-ms-fix-yui-compressor@2.2.2-future-reserved-word-fix-ms: + version "2.2.2-future-reserved-word-fix-ms" + resolved "https://registry.yarnpkg.com/debug-ms-fix-yui-compressor/-/debug-ms-fix-yui-compressor-2.2.2-future-reserved-word-fix-ms.tgz#500947391250ec13c020b15c901365f1a01620ec" + dependencies: + algolia-ms "0.7.1-fix-future-reserved-words" + +debug@*, debug@2, debug@^2.1.1, debug@^2.1.3, debug@^2.2.0, debug@~2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" + dependencies: + ms "0.7.1" + +decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + +deep-extend@~0.4.0: + version "0.4.1" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" + +deep-is@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + +defined@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" + +defs@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/defs/-/defs-1.1.1.tgz#b22609f2c7a11ba7a3db116805c139b1caffa9d2" + dependencies: + alter "~0.2.0" + ast-traverse "~0.1.1" + breakable "~1.0.0" + esprima-fb "~15001.1001.0-dev-harmony-fb" + simple-fmt "~0.1.0" + simple-is "~0.2.0" + stringmap "~0.2.2" + stringset "~0.2.1" + tryor "~0.1.2" + yargs "~3.27.0" + +del@^2.0.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" + dependencies: + globby "^5.0.0" + is-path-cwd "^1.0.0" + is-path-in-cwd "^1.0.0" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + rimraf "^2.2.8" + +delayed-stream@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-0.0.5.tgz#d4b1f43a93e8296dfe02694f4680bc37a313c73f" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + +delegates@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-0.1.0.tgz#b4b57be11a1653517a04b27f0949bdc327dfe390" + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + +depd@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" + +des.js@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +destroy@^1.0.3, destroy@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + +detect-indent@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-3.0.1.tgz#9dc5e5ddbceef8325764b9451b02bc6d54084f75" + dependencies: + get-stdin "^4.0.1" + minimist "^1.1.0" + repeating "^1.1.0" + +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" + +detective@^4.3.1, detective@~4.3.0: + version "4.3.2" + resolved "https://registry.yarnpkg.com/detective/-/detective-4.3.2.tgz#77697e2e7947ac3fe7c8e26a6d6f115235afa91c" + dependencies: + acorn "^3.1.0" + defined "^1.0.0" + +diffie-hellman@^5.0.0: + version "5.0.2" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + +doctrine@^0.7.1: + 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.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" + dependencies: + domelementtype "~1.1.1" + entities "~1.1.1" + +dom-serializer@~0.0.0: + version "0.0.1" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.0.1.tgz#9589827f1e32d22c37c829adabd59b3247af8eaf" + dependencies: + domelementtype "~1.1.1" + entities "~1.1.1" + +dom-walk@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" + +domain-browser@~1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" + +domelementtype@1, domelementtype@~1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" + +domhandler@2.3: + version "2.3.0" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.3.0.tgz#2de59a0822d5027fabff6f032c2b25a2a8abe738" + dependencies: + domelementtype "1" + +domutils@1.4: + version "1.4.3" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.4.3.tgz#0865513796c6b306031850e175516baf80b72a6f" + dependencies: + domelementtype "1" + +domutils@1.5, domutils@1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" + dependencies: + dom-serializer "0" + domelementtype "1" + +ecc-jsbn@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" + dependencies: + jsbn "~0.1.0" + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + +elliptic@^6.0.0: + version "6.3.2" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.3.2.tgz#e4c81e0829cf0a65ab70e998b8232723b5c1bc48" + dependencies: + bn.js "^4.4.0" + brorand "^1.0.1" + hash.js "^1.0.0" + inherits "^2.0.1" + +emitter-component@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/emitter-component/-/emitter-component-1.1.1.tgz#065e2dbed6959bf470679edabeaf7981d1003ab6" + +emojis-list@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" + +encodeurl@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" + +enqueue@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/enqueue/-/enqueue-1.0.2.tgz#9014e9bce570ee93ca96e6c8e63ad54c192b6bc8" + dependencies: + sliced "0.0.5" + +enstore@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/enstore/-/enstore-1.0.1.tgz#a20fe71eaebde8a3813a0a1240475f55854a81ab" + dependencies: + monotonic-timestamp "0.0.8" + +entities@1.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-1.0.0.tgz#b2987aa3821347fcde642b24fdfc9e4fb712bf26" + +entities@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" + +envify@^3.4.0: + version "3.4.1" + resolved "https://registry.yarnpkg.com/envify/-/envify-3.4.1.tgz#d7122329e8df1688ba771b12501917c9ce5cbce8" + dependencies: + jstransform "^11.0.3" + through "~2.3.4" + +error-ex@^1.2.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9" + dependencies: + is-arrayish "^0.2.1" + +error-inject@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/error-inject/-/error-inject-1.0.0.tgz#e2b3d91b54aed672f309d950d154850fa11d4f37" + +es5-ext@^0.10.7, es5-ext@^0.10.8, es5-ext@~0.10.11, es5-ext@~0.10.2, es5-ext@~0.10.7: + version "0.10.12" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.12.tgz#aa84641d4db76b62abba5e45fd805ecbab140047" + dependencies: + es6-iterator "2" + es6-symbol "~3.1" + +es6-iterator@2: + version "2.0.0" + resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.0.tgz#bd968567d61635e33c0b80727613c9cb4b096bac" + dependencies: + d "^0.1.1" + es5-ext "^0.10.7" + es6-symbol "3" + +es6-map@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.4.tgz#a34b147be224773a4d7da8072794cefa3632b897" + dependencies: + d "~0.1.1" + es5-ext "~0.10.11" + es6-iterator "2" + es6-set "~0.1.3" + es6-symbol "~3.1.0" + event-emitter "~0.3.4" + +es6-promise@^3.0.2, es6-promise@^3.2.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.3.1.tgz#a08cdde84ccdbf34d027a1451bc91d4bcd28a613" + +es6-set@~0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.4.tgz#9516b6761c2964b92ff479456233a247dc707ce8" + dependencies: + d "~0.1.1" + es5-ext "~0.10.11" + es6-iterator "2" + es6-symbol "3" + event-emitter "~0.3.4" + +es6-symbol@3, es6-symbol@^3.0.2, es6-symbol@~3.1, es6-symbol@~3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.0.tgz#94481c655e7a7cad82eba832d97d5433496d7ffa" + dependencies: + d "~0.1.1" + es5-ext "~0.10.11" + +es6-weak-map@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.1.tgz#0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81" + dependencies: + d "^0.1.1" + es5-ext "^0.10.8" + es6-iterator "2" + es6-symbol "3" + +escape-html@^1.0.1, escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + +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: + version "1.8.1" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" + dependencies: + esprima "^2.7.1" + estraverse "^1.9.1" + esutils "^2.0.2" + optionator "^0.8.1" + optionalDependencies: + source-map "~0.2.0" + +escope@^3.3.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" + dependencies: + es6-map "^0.1.3" + es6-weak-map "^2.0.1" + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-config-airbnb@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-2.1.1.tgz#7aade3205423d169f66eeb15284b3da3482be39a" + +eslint-config-algolia@^4.5.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/eslint-config-algolia/-/eslint-config-algolia-4.7.0.tgz#4972211fc19d99f73370b04f303482e4cf451552" + +eslint-plugin-algolia@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-algolia/-/eslint-plugin-algolia-1.5.0.tgz#5ec53a0ad98e9d6cc2968876119060f35ac33d58" + +eslint-plugin-react@^3.11.3: + version "3.16.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-3.16.1.tgz#262d96b77d7c4a42af809a73c0e527a58612293c" + +eslint@^1.10.3: + version "1.10.3" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-1.10.3.tgz#fb19a91b13c158082bbca294b17d979bc8353a0a" + dependencies: + chalk "^1.0.0" + concat-stream "^1.4.6" + debug "^2.1.1" + doctrine "^0.7.1" + escape-string-regexp "^1.0.2" + escope "^3.3.0" + espree "^2.2.4" + estraverse "^4.1.1" + estraverse-fb "^1.3.1" + esutils "^2.0.2" + file-entry-cache "^1.1.1" + glob "^5.0.14" + globals "^8.11.0" + handlebars "^4.0.0" + inquirer "^0.11.0" + is-my-json-valid "^2.10.0" + is-resolvable "^1.0.0" + js-yaml "3.4.5" + json-stable-stringify "^1.0.0" + lodash.clonedeep "^3.0.1" + lodash.merge "^3.3.2" + lodash.omit "^3.1.0" + minimatch "^3.0.0" + mkdirp "^0.5.0" + object-assign "^4.0.1" + optionator "^0.6.0" + path-is-absolute "^1.0.0" + path-is-inside "^1.0.1" + shelljs "^0.5.3" + strip-json-comments "~1.0.1" + text-table "~0.2.0" + user-home "^2.0.0" + xml-escape "~1.0.0" + +espree@^2.2.4: + version "2.2.5" + resolved "https://registry.yarnpkg.com/espree/-/espree-2.2.5.tgz#df691b9310889402aeb29cc066708c56690b854b" + +esprima-fb@^15001.1.0-dev-harmony-fb: + version "15001.1.0-dev-harmony-fb" + resolved "https://registry.yarnpkg.com/esprima-fb/-/esprima-fb-15001.1.0-dev-harmony-fb.tgz#30a947303c6b8d5e955bee2b99b1d233206a6901" + +esprima-fb@~15001.1001.0-dev-harmony-fb: + version "15001.1001.0-dev-harmony-fb" + resolved "https://registry.yarnpkg.com/esprima-fb/-/esprima-fb-15001.1001.0-dev-harmony-fb.tgz#43beb57ec26e8cf237d3dd8b33e42533577f2659" + +esprima@^2.6.0, esprima@^2.7.1: + version "2.7.3" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" + +esrecurse@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" + dependencies: + estraverse "~4.1.0" + object-assign "^4.0.1" + +estraverse-fb@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/estraverse-fb/-/estraverse-fb-1.3.1.tgz#160e75a80e605b08ce894bcce2fe3e429abf92bf" + +estraverse@^1.9.1: + version "1.9.3" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" + +estraverse@^4.1.1: + version "4.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" + +estraverse@~4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.1.1.tgz#f6caca728933a850ef90661d0e17982ba47111a2" + +esutils@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-1.1.6.tgz#c01ccaa9ae4b897c6d0c3e210ae52f3c7a844375" + +esutils@^2.0.0, esutils@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" + +etag@~1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" + +event-emitter@~0.3.4: + version "0.3.4" + resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.4.tgz#8d63ddfb4cfe1fae3b32ca265c4c720222080bb5" + dependencies: + d "~0.1.1" + es5-ext "~0.10.7" + +events@^1.1.0, events@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" + +evp_bytestokey@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" + dependencies: + create-hash "^1.1.1" + +exit-hook@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" + +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" + +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" + +express@^4.0.0: + version "4.14.0" + resolved "https://registry.yarnpkg.com/express/-/express-4.14.0.tgz#c1ee3f42cdc891fb3dc650a8922d51ec847d0d66" + dependencies: + accepts "~1.3.3" + array-flatten "1.1.1" + content-disposition "0.5.1" + content-type "~1.0.2" + cookie "0.3.1" + cookie-signature "1.0.6" + debug "~2.2.0" + depd "~1.1.0" + encodeurl "~1.0.1" + escape-html "~1.0.3" + etag "~1.7.0" + finalhandler "0.5.0" + fresh "0.3.0" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "~2.3.0" + parseurl "~1.3.1" + path-to-regexp "0.1.7" + proxy-addr "~1.1.2" + qs "6.2.0" + range-parser "~1.2.0" + send "0.14.1" + serve-static "~1.11.1" + type-is "~1.6.13" + utils-merge "1.0.0" + vary "~1.1.0" + +extend@3.0.0, extend@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" + +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" + +extsprintf@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" + +fast-levenshtein@~1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-1.0.7.tgz#0178dcdee023b92905193af0959e8a7639cfdcb9" + +fast-levenshtein@~2.0.4: + version "2.0.5" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.5.tgz#bd33145744519ab1c36c3ee9f31f08e9079b67f2" + +fastparse@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" + +fcache@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/fcache/-/fcache-0.1.1.tgz#2862109b92fe0f68b3d11bc0b06632475033d39c" + +figures@^1.3.5: + version "1.7.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" + dependencies: + escape-string-regexp "^1.0.5" + object-assign "^4.1.0" + +file-entry-cache@^1.1.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-1.3.1.tgz#44c61ea607ae4be9c1402f41f44270cbfe334ff8" + dependencies: + flat-cache "^1.2.1" + object-assign "^4.0.1" + +filename-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" + +fill-range@^2.1.0: + version "2.2.3" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" + dependencies: + is-number "^2.1.0" + isobject "^2.0.0" + randomatic "^1.1.3" + repeat-element "^1.1.2" + repeat-string "^1.5.2" + +finalhandler@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.5.0.tgz#e9508abece9b6dba871a6942a1d7911b91911ac7" + dependencies: + debug "~2.2.0" + escape-html "~1.0.3" + on-finished "~2.3.0" + statuses "~1.3.0" + unpipe "~1.0.0" + +find-up@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" + dependencies: + path-exists "^2.0.0" + pinkie-promise "^2.0.0" + +flat-cache@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.1.tgz#6c837d6225a7de5659323740b36d5361f71691ff" + dependencies: + circular-json "^0.3.0" + del "^2.0.2" + graceful-fs "^4.1.2" + write "^0.2.1" + +flatten@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" + +fn-args@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fn-args/-/fn-args-1.0.0.tgz#974dafa1aeac4ac7c21fa09cc3b80f650106ed32" + +for-in@^0.1.5: + version "0.1.6" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8" + +for-own@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072" + dependencies: + for-in "^0.1.5" + +foreach@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" + +forever-agent@~0.5.0: + version "0.5.2" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.5.2.tgz#6d0e09c4921f94a27f63d3b49c5feff1ea4c5130" + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + +form-data@1.0.0-rc3: + version "1.0.0-rc3" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-1.0.0-rc3.tgz#d35bc62e7fbc2937ae78f948aaa0d38d90607577" + dependencies: + async "^1.4.0" + combined-stream "^1.0.5" + mime-types "^2.1.3" + +form-data@~0.1.0: + version "0.1.4" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-0.1.4.tgz#91abd788aba9702b1aabfa8bc01031a2ac9e3b12" + dependencies: + async "~0.9.0" + combined-stream "~0.0.4" + mime "~1.2.11" + +form-data@~2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.1.tgz#4adf0342e1a79afa1e84c8c320a9ffc82392a1f3" + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.5" + mime-types "^2.1.12" + +format-parser@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/format-parser/-/format-parser-0.0.2.tgz#4318822a8a9f1a29a0137253b908719c4f9222a2" + +formidable@~1.0.14: + version "1.0.17" + resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.0.17.tgz#ef5491490f9433b705faa77249c99029ae348559" + +forwarded@~0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" + +fresh@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" + +fs-mode@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/fs-mode/-/fs-mode-1.0.1.tgz#73102f40aa1a25221dda0eaa906616d6da08255a" + dependencies: + cbify "^1.0.0" + +fs-readdir-recursive@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-0.1.2.tgz#315b4fb8c1ca5b8c47defef319d073dad3568059" + +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: + version "1.0.15" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.15.tgz#fa63f590f3c2ad91275e4972a6cea545fb0aae44" + dependencies: + nan "^2.3.0" + node-pre-gyp "^0.6.29" + +fstream-ignore@~1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" + dependencies: + fstream "^1.0.0" + inherits "2" + minimatch "^3.0.0" + +fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822" + dependencies: + graceful-fs "^4.1.2" + inherits "~2.0.0" + mkdirp ">=0.5 0" + rimraf "2" + +function-bind@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" + +gauge@~2.6.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.6.0.tgz#d35301ad18e96902b4751dcbbe40f4218b942a46" + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-color "^0.1.7" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + +gaze@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.2.tgz#847224677adb8870d679257ed3388fdb61e40105" + dependencies: + globule "^1.0.0" + +generate-function@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" + +generate-object-property@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" + dependencies: + is-property "^1.0.0" + +generic-names@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/generic-names/-/generic-names-1.0.2.tgz#e25b7feceb5b5a8f28f5f972a7ccfe57e562adcd" + dependencies: + loader-utils "^0.2.16" + +get-caller-file@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" + +get-stdin@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" + +getpass@^0.1.1: + version "0.1.6" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" + dependencies: + assert-plus "^1.0.0" + +gh-pages@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/gh-pages/-/gh-pages-0.8.0.tgz#dc6a6dfc9e6cadff8c438f3fcb3ef1cd4318fd38" + dependencies: + async "1.5.0" + commander "2.9.0" + glob "~6.0.1" + graceful-fs "4.1.2" + q "1.4.1" + q-io "1.13.2" + wrench "1.5.8" + +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" + +glob@^5.0.14, glob@^5.0.15, glob@^5.0.5: + version "5.0.15" + resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" + dependencies: + inflight "^1.0.4" + inherits "2" + minimatch "2 || 3" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^6.0.1, glob@~6.0.1: + version "6.0.4" + resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22" + dependencies: + inflight "^1.0.4" + inherits "2" + minimatch "2 || 3" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@~7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.2" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@~7.0.0: + version "7.0.6" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.2" + once "^1.3.0" + path-is-absolute "^1.0.0" + +global@^4.3.0: + version "4.3.1" + resolved "https://registry.yarnpkg.com/global/-/global-4.3.1.tgz#5f757908c7cbabce54f386ae440e11e26b7916df" + dependencies: + min-document "^2.19.0" + process "~0.5.1" + +globals@^6.4.0: + version "6.4.1" + resolved "https://registry.yarnpkg.com/globals/-/globals-6.4.1.tgz#8498032b3b6d1cc81eebc5f79690d8fe29fabf4f" + +globals@^8.11.0: + version "8.18.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-8.18.0.tgz#93d4a62bdcac38cfafafc47d6b034768cb0ffcb4" + +globals@^9.0.0: + version "9.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-9.12.0.tgz#992ce90828c3a55fa8f16fada177adb64664cf9d" + +globby@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" + dependencies: + array-union "^1.0.1" + arrify "^1.0.0" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +globule@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/globule/-/globule-1.1.0.tgz#c49352e4dc183d85893ee825385eb994bb6df45f" + dependencies: + glob "~7.1.1" + lodash "~4.16.4" + minimatch "~3.0.2" + +graceful-fs@4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.2.tgz#fe2239b7574972e67e41f808823f9bfa4a991e37" + +graceful-fs@^4.1.2, graceful-fs@^4.1.4: + version "4.1.10" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.10.tgz#f2d720c22092f743228775c75e3612632501f131" + +"graceful-readlink@>= 1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" + +growl@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/growl/-/growl-1.8.1.tgz#4b2dec8d907e93db336624dcec0183502f8c9428" + +handlebars@^4.0.0: + version "4.0.5" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.5.tgz#92c6ed6bb164110c50d4d8d0fbddc70806c6f8e7" + dependencies: + async "^1.4.0" + optimist "^0.6.1" + source-map "^0.4.4" + optionalDependencies: + uglify-js "^2.6" + +har-validator@~2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" + dependencies: + chalk "^1.1.1" + commander "^2.9.0" + is-my-json-valid "^2.12.4" + pinkie-promise "^2.0.0" + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + dependencies: + ansi-regex "^2.0.0" + +has-color@^0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" + +has-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" + +has-unicode@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + +has@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" + dependencies: + function-bind "^1.0.2" + +hash.js@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573" + dependencies: + inherits "^2.0.1" + +hawk@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/hawk/-/hawk-1.0.0.tgz#b90bb169807285411da7ffcb8dd2598502d3b52d" + dependencies: + boom "0.4.x" + cryptiles "0.2.x" + hoek "0.9.x" + sntp "0.2.x" + +hawk@~3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" + dependencies: + boom "2.x.x" + cryptiles "2.x.x" + hoek "2.x.x" + sntp "1.x.x" + +hoek@0.9.x: + version "0.9.1" + resolved "https://registry.yarnpkg.com/hoek/-/hoek-0.9.1.tgz#3d322462badf07716ea7eb85baf88079cddce505" + +hoek@2.x.x: + version "2.16.3" + resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" + +home-or-tmp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-1.0.0.tgz#4b9f1e40800c3e50c6c27f781676afcce71f3985" + dependencies: + os-tmpdir "^1.0.1" + user-home "^1.1.1" + +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" + +hosted-git-info@^2.1.4, hosted-git-info@~2.1.4: + version "2.1.5" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" + +html-comment-regex@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" + +htmlparser2@~3.8.1: + version "3.8.3" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.8.3.tgz#996c28b191516a8be86501a7d79757e5c70c1068" + dependencies: + domelementtype "1" + domhandler "2.3" + domutils "1.5" + entities "1.0" + readable-stream "1.1" + +http-context@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/http-context/-/http-context-1.1.1.tgz#a40171b389dba63042a9c4872229c7ad0efca510" + dependencies: + accepts "^1.2.5" + assert "^1.3.0" + content-disposition "^0.5.0" + content-type "^1.0.1" + delegates "^0.1.0" + destroy "^1.0.3" + error-inject "^1.0.0" + escape-html "^1.0.1" + http-incoming "^0.12.0" + http-outgoing "^0.12.0" + koa-is-json "^1.0.0" + mime-types "^2.0.10" + on-finished "^2.2.0" + parseurl "^1.3.0" + querystring "^0.2.0" + statuses "^1.2.1" + type-is "^1.6.1" + vary "^1.0.0" + +http-errors@~1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.0.tgz#b1cb3d8260fd8e2386cad3189045943372d48211" + dependencies: + inherits "2.0.1" + setprototypeof "1.0.1" + statuses ">= 1.3.0 < 2" + +http-incoming@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/http-incoming/-/http-incoming-0.12.0.tgz#10783cd2b5deb8ca92ab3ff2ad171315d61b4ff6" + +http-outgoing@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/http-outgoing/-/http-outgoing-0.12.0.tgz#662f3a27c7a4d14c924b5f5314909efabde1830d" + +http-signature@~0.10.0: + version "0.10.1" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-0.10.1.tgz#4fbdac132559aa8323121e540779c0a012b27e66" + dependencies: + asn1 "0.1.11" + assert-plus "^0.1.5" + ctype "0.5.3" + +http-signature@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" + dependencies: + assert-plus "^0.2.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +https-browserify@~0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" + +iconv-lite@^0.4.5: + version "0.4.13" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" + +icss-replace-symbols@1.0.2, icss-replace-symbols@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.0.2.tgz#cb0b6054eb3af6edc9ab1d62d01933e2d4c8bfa5" + +ieee754@^1.1.4: + version "1.1.8" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" + +in-publish@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51" + +indent-string@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" + dependencies: + repeating "^2.0.0" + +indexes-of@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" + +indexof@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + +inherits@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + +inherits@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-1.0.2.tgz#ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b" + +ini@^1.3.4, ini@~1.3.0: + version "1.3.4" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" + +ini@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.1.0.tgz#4e808c2ce144c6c1788918e034d6797bc6cf6281" + +init-skeleton@~0.8.0: + version "0.8.1" + resolved "https://registry.yarnpkg.com/init-skeleton/-/init-skeleton-0.8.1.tgz#016083ffe5c70a199ff8a1bfb1f17b4d013a87ae" + dependencies: + hosted-git-info "~2.1.4" + mkdirp "~0.5.0" + ncp "^2.0.0" + normalize-git-url "~3.0.1" + rimraf "~2.4.0" + +inquirer@^0.11.0: + version "0.11.4" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.11.4.tgz#81e3374e8361beaff2d97016206d359d0b32fa4d" + dependencies: + ansi-escapes "^1.1.0" + ansi-regex "^2.0.0" + chalk "^1.0.0" + cli-cursor "^1.0.1" + cli-width "^1.0.1" + figures "^1.3.5" + lodash "^3.3.1" + readline2 "^1.0.1" + run-async "^0.1.0" + rx-lite "^3.1.2" + string-width "^1.0.1" + strip-ansi "^3.0.0" + through "^2.3.6" + +invariant@^2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.1.tgz#b097010547668c7e337028ebe816ebe36c8a8d54" + 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" + +ipaddr.js@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.1.1.tgz#c791d95f52b29c1247d5df80ada39b8a73647230" + +is-absolute-url@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.0.0.tgz#9c4b20b0e5c0cbef9a479a367ede6f991679f359" + +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-browser@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-browser/-/is-browser-2.0.1.tgz#8bf0baf799a9c62fd9de5bcee4cf3397c3e7529a" + +is-buffer@^1.0.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b" + +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-dotfile@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" + +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.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + +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" + dependencies: + number-is-nan "^1.0.0" + +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-integer@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/is-integer/-/is-integer-1.0.6.tgz#5273819fada880d123e1ac00a938e7172dd8d95e" + dependencies: + is-finite "^1.0.0" + +is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: + version "2.15.0" + resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" + dependencies: + generate-function "^2.0.0" + generate-object-property "^1.1.0" + jsonpointer "^4.0.0" + xtend "^4.0.0" + +is-number@^2.0.2, is-number@^2.1.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" + +is-path-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" + +is-path-in-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" + dependencies: + is-path-inside "^1.0.0" + +is-path-inside@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" + dependencies: + path-is-inside "^1.0.1" + +is-plain-obj@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + +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-property@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" + +is-resolvable@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" + dependencies: + tryit "^1.0.1" + +is-svg@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" + dependencies: + html-comment-regex "^1.1.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-url@~1.2.0: + version "1.2.2" + resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.2.tgz#498905a593bf47cc2d9e7f738372bbf7696c7f26" + +is-utf8@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" + +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" + +isexe@^1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-1.1.2.tgz#36f3e22e60750920f5e7241a476a8c6a42275ad0" + +isobject@^2.0.0, isobject@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.0.0.tgz#208de872bd7378c2a92af9428a3f56eb91a122c4" + dependencies: + isarray "0.0.1" + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + +jodid25519@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" + dependencies: + jsbn "~0.1.0" + +js-base64@^2.1.9: + version "2.1.9" + resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" + +js-tokens@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-1.0.1.tgz#cc435a5c8b94ad15acb7983140fc80182c89aeae" + +js-tokens@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5" + +js-yaml@3.4.5: + version "3.4.5" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.4.5.tgz#c3403797df12b91866574f2de23646fe8cafb44d" + dependencies: + argparse "^1.0.2" + esprima "^2.6.0" + +js-yaml@~3.6.1: + version "3.6.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30" + dependencies: + argparse "^1.0.7" + esprima "^2.6.0" + +jsbn@~0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd" + +jsdom@^7.0.2: + version "7.2.2" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-7.2.2.tgz#40b402770c2bda23469096bee91ab675e3b1fc6e" + dependencies: + abab "^1.0.0" + acorn "^2.4.0" + acorn-globals "^1.0.4" + cssom ">= 0.3.0 < 0.4.0" + cssstyle ">= 0.2.29 < 0.3.0" + escodegen "^1.6.1" + nwmatcher ">= 1.3.7 < 2.0.0" + parse5 "^1.5.1" + request "^2.55.0" + sax "^1.1.4" + symbol-tree ">= 3.1.0 < 4.0.0" + tough-cookie "^2.2.0" + webidl-conversions "^2.0.0" + whatwg-url-compat "~0.6.5" + xml-name-validator ">= 2.0.1 < 3.0.0" + +jsesc@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + +json-schema@0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + +json-stable-stringify@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" + dependencies: + jsonify "~0.0.0" + +json-stringify-safe@~5.0.0, 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.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/json5/-/json5-0.4.0.tgz#054352e4c4c80c86c0923877d449de176a732c8d" + +json5@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.0.tgz#9b20715b026cbe3778fd769edccd822d8332a5b2" + +jsonify@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" + +jsonpointer@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.0.tgz#6661e161d2fc445f19f98430231343722e1fcbd5" + +jsprim@^1.2.2: + version "1.3.1" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252" + dependencies: + extsprintf "1.0.2" + json-schema "0.2.3" + verror "1.3.6" + +jstransform@^11.0.3: + version "11.0.3" + resolved "https://registry.yarnpkg.com/jstransform/-/jstransform-11.0.3.tgz#09a78993e0ae4d4ef4487f6155a91f6190cb4223" + dependencies: + base62 "^1.1.0" + commoner "^0.10.1" + esprima-fb "^15001.1.0-dev-harmony-fb" + object-assign "^2.0.0" + source-map "^0.4.2" + +kew@~0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/kew/-/kew-0.1.7.tgz#0a32a817ff1a9b3b12b8c9bacf4bc4d679af8e72" + +kind-of@^3.0.2: + version "3.0.4" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.0.4.tgz#7b8ecf18a4e17f8269d73b501c9f232c96887a74" + dependencies: + is-buffer "^1.0.2" + +koa-is-json@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/koa-is-json/-/koa-is-json-1.0.0.tgz#273c07edcdcb8df6a2c1ab7d59ee76491451ec14" + +lazy-cache@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" + +lcid@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + dependencies: + invert-kv "^1.0.0" + +leven@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/leven/-/leven-1.0.2.tgz#9144b6eebca5f1d0680169f1a6770dcea60b75c3" + +levn@~0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.2.5.tgz#ba8d339d0ca4a610e3a3f145b9caf48807155054" + dependencies: + prelude-ls "~1.1.0" + type-check "~0.3.1" + +levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +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" + 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-script@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/load-script/-/load-script-1.0.0.tgz#0491939e0bee5643ee494a7e3da3d2bac70c6ca4" + +loader-utils@^0.2.16: + version "0.2.17" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" + dependencies: + big.js "^3.1.3" + emojis-list "^2.0.0" + json5 "^0.5.0" + object-assign "^4.0.1" + +lodash._arraycopy@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz#76e7b7c1f1fb92547374878a562ed06a3e50f6e1" + +lodash._arrayeach@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz#bab156b2a90d3f1bbd5c653403349e5e5933ef9e" + +lodash._arraymap@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash._arraymap/-/lodash._arraymap-3.0.0.tgz#1a8fd0f4c0df4b61dea076d717cdc97f0a3c3e66" + +lodash._baseassign@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e" + dependencies: + lodash._basecopy "^3.0.0" + lodash.keys "^3.0.0" + +lodash._baseclone@^3.0.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz#303519bf6393fe7e42f34d8b630ef7794e3542b7" + dependencies: + lodash._arraycopy "^3.0.0" + lodash._arrayeach "^3.0.0" + lodash._baseassign "^3.0.0" + lodash._basefor "^3.0.0" + lodash.isarray "^3.0.0" + lodash.keys "^3.0.0" + +lodash._basecopy@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" + +lodash._basedifference@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/lodash._basedifference/-/lodash._basedifference-3.0.3.tgz#f2c204296c2a78e02b389081b6edcac933cf629c" + dependencies: + lodash._baseindexof "^3.0.0" + lodash._cacheindexof "^3.0.0" + lodash._createcache "^3.0.0" + +lodash._baseflatten@^3.0.0: + version "3.1.4" + resolved "https://registry.yarnpkg.com/lodash._baseflatten/-/lodash._baseflatten-3.1.4.tgz#0770ff80131af6e34f3b511796a7ba5214e65ff7" + dependencies: + lodash.isarguments "^3.0.0" + lodash.isarray "^3.0.0" + +lodash._basefor@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/lodash._basefor/-/lodash._basefor-3.0.3.tgz#7550b4e9218ef09fad24343b612021c79b4c20c2" + +lodash._baseindexof@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/lodash._baseindexof/-/lodash._baseindexof-3.1.0.tgz#fe52b53a1c6761e42618d654e4a25789ed61822c" + +lodash._bindcallback@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" + +lodash._cacheindexof@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/lodash._cacheindexof/-/lodash._cacheindexof-3.0.2.tgz#3dc69ac82498d2ee5e3ce56091bafd2adc7bde92" + +lodash._createassigner@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz#838a5bae2fdaca63ac22dee8e19fa4e6d6970b11" + dependencies: + lodash._bindcallback "^3.0.0" + lodash._isiterateecall "^3.0.0" + lodash.restparam "^3.0.0" + +lodash._createcache@^3.0.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/lodash._createcache/-/lodash._createcache-3.1.2.tgz#56d6a064017625e79ebca6b8018e17440bdcf093" + dependencies: + lodash._getnative "^3.0.0" + +lodash._getnative@^3.0.0: + version "3.9.1" + resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" + +lodash._isiterateecall@^3.0.0: + version "3.0.9" + resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" + +lodash._pickbyarray@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/lodash._pickbyarray/-/lodash._pickbyarray-3.0.2.tgz#1f898d9607eb560b0e167384b77c7c6d108aa4c5" + +lodash._pickbycallback@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash._pickbycallback/-/lodash._pickbycallback-3.0.0.tgz#ff61b9a017a7b3af7d30e6c53de28afa19b8750a" + dependencies: + lodash._basefor "^3.0.0" + lodash.keysin "^3.0.0" + +lodash.assign@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-3.2.0.tgz#3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa" + dependencies: + lodash._baseassign "^3.0.0" + lodash._createassigner "^3.0.0" + lodash.keys "^3.0.0" + +lodash.assign@^4.0.3, lodash.assign@^4.0.6: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" + +lodash.clonedeep@^3.0.1: + version "3.0.2" + resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz#a0a1e40d82a5ea89ff5b147b8444ed63d92827db" + dependencies: + lodash._baseclone "^3.0.0" + lodash._bindcallback "^3.0.0" + +lodash.clonedeep@^4.3.2: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" + +lodash.indexof@^4.0.5: + version "4.0.5" + resolved "https://registry.yarnpkg.com/lodash.indexof/-/lodash.indexof-4.0.5.tgz#53714adc2cddd6ed87638f893aa9b6c24e31ef3c" + +lodash.isarguments@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" + +lodash.isarray@^3.0.0: + version "3.0.4" + resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" + +lodash.isplainobject@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-3.2.0.tgz#9a8238ae16b200432960cd7346512d0123fbf4c5" + dependencies: + lodash._basefor "^3.0.0" + lodash.isarguments "^3.0.0" + lodash.keysin "^3.0.0" + +lodash.istypedarray@^3.0.0: + version "3.0.6" + resolved "https://registry.yarnpkg.com/lodash.istypedarray/-/lodash.istypedarray-3.0.6.tgz#c9a477498607501d8e8494d283b87c39281cef62" + +lodash.keys@^3.0.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" + dependencies: + lodash._getnative "^3.0.0" + lodash.isarguments "^3.0.0" + lodash.isarray "^3.0.0" + +lodash.keysin@^3.0.0: + version "3.0.8" + resolved "https://registry.yarnpkg.com/lodash.keysin/-/lodash.keysin-3.0.8.tgz#22c4493ebbedb1427962a54b445b2c8a767fb47f" + dependencies: + lodash.isarguments "^3.0.0" + lodash.isarray "^3.0.0" + +lodash.merge@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-3.3.2.tgz#0d90d93ed637b1878437bb3e21601260d7afe994" + dependencies: + lodash._arraycopy "^3.0.0" + lodash._arrayeach "^3.0.0" + lodash._createassigner "^3.0.0" + lodash._getnative "^3.0.0" + lodash.isarguments "^3.0.0" + lodash.isarray "^3.0.0" + lodash.isplainobject "^3.0.0" + lodash.istypedarray "^3.0.0" + lodash.keys "^3.0.0" + lodash.keysin "^3.0.0" + lodash.toplainobject "^3.0.0" + +lodash.omit@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/lodash.omit/-/lodash.omit-3.1.0.tgz#897fe382e6413d9ac97c61f78ed1e057a00af9f3" + dependencies: + lodash._arraymap "^3.0.0" + lodash._basedifference "^3.0.0" + lodash._baseflatten "^3.0.0" + lodash._bindcallback "^3.0.0" + lodash._pickbyarray "^3.0.0" + lodash._pickbycallback "^3.0.0" + lodash.keysin "^3.0.0" + lodash.restparam "^3.0.0" + +lodash.pick@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-3.1.0.tgz#f252a855b2046b61bcd3904b26f76bd2efc65550" + dependencies: + lodash._baseflatten "^3.0.0" + lodash._bindcallback "^3.0.0" + lodash._pickbyarray "^3.0.0" + lodash._pickbycallback "^3.0.0" + lodash.restparam "^3.0.0" + +lodash.restparam@^3.0.0: + version "3.6.1" + resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" + +lodash.toplainobject@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash.toplainobject/-/lodash.toplainobject-3.0.0.tgz#28790ad942d293d78aa663a07ecf7f52ca04198d" + dependencies: + lodash._basecopy "^3.0.0" + lodash.keysin "^3.0.0" + +lodash@^3.10.0, lodash@^3.2.0, lodash@^3.3.1, lodash@^3.9.3: + version "3.10.1" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" + +lodash@^4.0.0, lodash@^4.1.0, lodash@^4.13.1, lodash@^4.2.0, lodash@^4.6.1, lodash@~4.16.4: + version "4.16.6" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.6.tgz#d22c9ac660288f3843e16ba7d2b5d06cca27d777" + +lodash@~2.4.1: + version "2.4.2" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-2.4.2.tgz#fadd834b9683073da179b3eae6d9c0d15053f73e" + +loggy@~0.3.0: + version "0.3.5" + resolved "https://registry.yarnpkg.com/loggy/-/loggy-0.3.5.tgz#33f12801b1f6063966ea79d9b6a25db8fcbc4107" + dependencies: + ansicolors "~0.3.2" + growl "~1.8.1" + +longest@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" + +loose-envify@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.0.tgz#6b26248c42f6d4fa4b0d8542f78edfcde35642a8" + dependencies: + js-tokens "^2.0.0" + +loud-rejection@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" + dependencies: + currently-unhandled "^0.4.1" + signal-exit "^3.0.0" + +lru-cache@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.1.tgz#1343955edaf2e37d9b9e7ee7241e27c4b9fb72be" + dependencies: + pseudomap "^1.0.1" + yallist "^2.0.0" + +macaddress@^0.2.8: + version "0.2.8" + resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" + +map-obj@^1.0.0, map-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + +math-expression-evaluator@^1.2.14: + version "1.2.14" + resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.14.tgz#39511771ed9602405fba9affff17eb4d2a3843ab" + dependencies: + lodash.indexof "^4.0.5" + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + +meow@^3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" + dependencies: + camelcase-keys "^2.0.0" + decamelize "^1.1.2" + loud-rejection "^1.0.0" + map-obj "^1.0.1" + minimist "^1.1.3" + normalize-package-data "^2.3.4" + object-assign "^4.0.1" + read-pkg-up "^1.0.1" + redent "^1.0.0" + trim-newlines "^1.0.0" + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + +methods@~1.1.1, methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + +micro-promisify@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/micro-promisify/-/micro-promisify-0.1.1.tgz#071da590b4956560dedf4aae7044729c1a28902d" + +microbuffer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/microbuffer/-/microbuffer-1.0.0.tgz#8b3832ed40c87d51f47bb234913a698a756d19d2" + +micromatch@^2.1.5: + version "2.3.11" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" + 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" + +miller-rabin@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + +mime-db@~1.24.0: + version "1.24.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.24.0.tgz#e2d13f939f0016c6e4e9ad25a8652f126c467f0c" + +mime-types@^2.0.10, mime-types@^2.1.12, mime-types@^2.1.3, mime-types@~2.1.11, mime-types@~2.1.7: + version "2.1.12" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.12.tgz#152ba256777020dd4663f54c2e7bc26381e71729" + dependencies: + mime-db "~1.24.0" + +mime@1.3.4, mime@^1.2.11: + version "1.3.4" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" + +mime@~1.2.11, mime@~1.2.9: + version "1.2.11" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.2.11.tgz#58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10" + +mimeparse@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/mimeparse/-/mimeparse-0.1.4.tgz#dafb02752370fd226093ae3152c271af01ac254a" + +min-document@^2.19.0: + version "2.19.0" + resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" + dependencies: + dom-walk "^0.1.0" + +minimalistic-assert@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" + +"minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@~3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" + dependencies: + brace-expansion "^1.0.0" + +minimatch@^2.0.3: + version "2.0.10" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" + dependencies: + brace-expansion "^1.0.0" + +minimist@0.0.8, minimist@~0.0.1: + version "0.0.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + +minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + +mkdirp@0.3.4: + version "0.3.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.4.tgz#f8c81d213b7299a031f193a57d752a17d2f6c7d8" + +mkdirp@0.3.5, mkdirp@~0.3.3: + version "0.3.5" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.5.tgz#de3e5f8961c88c787ee1368df849ac4413eca8d7" + +"mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + dependencies: + minimist "0.0.8" + +monotonic-timestamp@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/monotonic-timestamp/-/monotonic-timestamp-0.0.8.tgz#67987d02a41c15f568b6c0a05885989dd2402ba0" + +ms@0.7.1, ms@^0.7.0: + version "0.7.1" + resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" + +mute-stream@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" + +nan@^2.0.5, nan@^2.3.0, nan@^2.3.2: + version "2.4.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.4.0.tgz#fb3c59d45fe4effe215f0b890f8adf6eb32d2232" + +ncp@0.4.2: + version "0.4.2" + resolved "https://registry.yarnpkg.com/ncp/-/ncp-0.4.2.tgz#abcc6cbd3ec2ed2a729ff6e7c1fa8f01784a8574" + +ncp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ncp/-/ncp-2.0.0.tgz#195a21d6c46e361d2fb1281ba38b91e9df7bdbb3" + +neatequal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/neatequal/-/neatequal-1.0.0.tgz#2ee1211bc9fa6e4c55715fd210bb05602eb1ae3b" + dependencies: + varstream "^0.3.2" + +negotiator@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" + +node-browser-modules@~0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/node-browser-modules/-/node-browser-modules-0.1.0.tgz#4193cbb70f542759a5e4e6d6b01ccb638e99a1ac" + dependencies: + assert "~1.3.0" + buffer "~4.3.0" + crypto-browserify "~3.11.0" + domain-browser "~1.1.7" + events "~1.1.0" + https-browserify "~0.0.1" + os-browserify "~0.2.0" + path-browserify "~0.0.0" + process "~0.11.2" + punycode "~1.4.0" + querystring-es3 "~0.2.1" + readable-stream "~2.0.5" + stream-browserify "~2.0.1" + stream-http "~2.1.0" + string_decoder "~0.10.31" + timers-browserify "~1.4.2" + tty-browserify "~0.0.0" + url "~0.11.0" + util "~0.10.3" + vm-browserify "~0.0.4" + +node-gyp@^3.3.1: + version "3.4.0" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.4.0.tgz#dda558393b3ecbbe24c9e6b8703c71194c63fa36" + dependencies: + fstream "^1.0.0" + glob "^7.0.3" + graceful-fs "^4.1.2" + minimatch "^3.0.2" + mkdirp "^0.5.0" + nopt "2 || 3" + npmlog "0 || 1 || 2 || 3" + osenv "0" + path-array "^1.0.0" + request "2" + rimraf "2" + semver "2.x || 3.x || 4 || 5" + tar "^2.0.0" + which "1" + +node-pre-gyp@^0.6.29: + version "0.6.31" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.31.tgz#d8a00ddaa301a940615dbcc8caad4024d58f6017" + dependencies: + mkdirp "~0.5.1" + nopt "~3.0.6" + npmlog "^4.0.0" + rc "~1.1.6" + request "^2.75.0" + rimraf "~2.5.4" + semver "~5.3.0" + tar "~2.2.1" + tar-pack "~3.3.0" + +node-sass@~3.8.0: + version "3.8.0" + resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-3.8.0.tgz#ec0f89ae6625e1d990dc7ff713b275ea15dfee05" + dependencies: + async-foreach "^0.1.3" + chalk "^1.1.1" + cross-spawn "^3.0.0" + gaze "^1.0.0" + get-stdin "^4.0.1" + glob "^7.0.3" + in-publish "^2.0.0" + lodash.clonedeep "^4.3.2" + meow "^3.7.0" + mkdirp "^0.5.1" + nan "^2.3.2" + node-gyp "^3.3.1" + request "^2.61.0" + sass-graph "^2.1.1" + +node-uuid@~1.4.0, node-uuid@~1.4.7: + version "1.4.7" + resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f" + +nopt@2, "nopt@2 || 3": + version "2.2.1" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-2.2.1.tgz#2aa09b7d1768487b3b89a9c5aa52335bff0baea7" + dependencies: + abbrev "1" + +nopt@~3.0.6: + version "3.0.6" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" + dependencies: + abbrev "1" + +normalize-git-url@~3.0.1: + version "3.0.2" + resolved "https://registry.yarnpkg.com/normalize-git-url/-/normalize-git-url-3.0.2.tgz#8e5f14be0bdaedb73e07200310aa416c27350fc4" + +normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: + version "2.3.5" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df" + dependencies: + hosted-git-info "^2.1.4" + is-builtin-module "^1.0.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a" + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + +normalize-url@^1.4.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.7.0.tgz#d82452d98d38821cffddab4d77a5f8d20ce66db0" + dependencies: + object-assign "^4.0.1" + prepend-http "^1.0.0" + query-string "^4.1.0" + sort-keys "^1.0.0" + +normalize.css@3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/normalize.css/-/normalize.css-3.0.3.tgz#acc00262e235a2caa91363a2e5e3bfa4f8ad05c6" + +npmconf@0.0.24: + version "0.0.24" + resolved "https://registry.yarnpkg.com/npmconf/-/npmconf-0.0.24.tgz#b78875b088ccc3c0afa3eceb3ce3244b1b52390c" + dependencies: + config-chain "~1.1.1" + inherits "~1.0.0" + ini "~1.1.0" + mkdirp "~0.3.3" + nopt "2" + once "~1.1.1" + osenv "0.0.3" + semver "~1.1.0" + +"npmlog@0 || 1 || 2 || 3": + version "3.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-3.1.2.tgz#2d46fa874337af9498a2f12bb43d8d0be4a36873" + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.6.0" + set-blocking "~2.0.0" + +npmlog@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.0.tgz#e094503961c70c1774eb76692080e8d578a9f88f" + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.6.0" + set-blocking "~2.0.0" + +nth-check@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" + dependencies: + boolbase "~1.0.0" + +num2fraction@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" + +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.7 < 2.0.0": + version "1.3.9" + resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" + +oauth-sign@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.3.0.tgz#cb540f93bb2b22a7d5941691a288d60e8ea9386e" + +oauth-sign@~0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" + +object-assign@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-2.1.1.tgz#43c36e5d569ff8e4816c4efa8be02d26967c18aa" + +object-assign@^4.0.1, object-assign@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" + +object-assign@~4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.0.1.tgz#99504456c3598b5cad4fc59c26e8a9bb107fe0bd" + +object-keys@^1.0.11, object-keys@~1.0.0: + version "1.0.11" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" + +object.omit@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" + dependencies: + for-own "^0.1.4" + is-extendable "^0.1.1" + +on-finished@^2.2.0, on-finished@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + dependencies: + ee-first "1.1.1" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + dependencies: + wrappy "1" + +once@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/once/-/once-1.1.1.tgz#9db574933ccb08c3a7614d154032c09ea6f339e7" + +once@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" + dependencies: + wrappy "1" + +onetime@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" + +optimist@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" + dependencies: + minimist "~0.0.1" + wordwrap "~0.0.2" + +optionator@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.6.0.tgz#b63ecbbf0e315fad4bc9827b45dc7ba45284fcb6" + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~1.0.6" + levn "~0.2.5" + prelude-ls "~1.1.1" + type-check "~0.3.1" + wordwrap "~0.0.2" + +optionator@^0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.4" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + wordwrap "~1.0.0" + +options@>=0.0.5: + version "0.0.6" + resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f" + +os-browserify@~0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" + +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@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" + dependencies: + lcid "^1.0.0" + +os-tmpdir@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + +osenv@0, osenv@0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.0.3.tgz#cd6ad8ddb290915ad9e22765576025d411f29cb6" + +output-file-sync@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" + dependencies: + graceful-fs "^4.1.4" + mkdirp "^0.5.1" + object-assign "^4.1.0" + +pako@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.3.tgz#5f515b0c6722e1982920ae8005eacb0b7ca73ccf" + +parse-asn1@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.0.0.tgz#35060f6d5015d37628c770f4e091a0b5a278bc23" + dependencies: + asn1.js "^4.0.0" + browserify-aes "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.0" + pbkdf2 "^3.0.3" + +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: + version "2.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + dependencies: + error-ex "^1.2.0" + +parse5@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" + +parseurl@^1.3.0, parseurl@~1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" + +path-array@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-array/-/path-array-1.0.1.tgz#7e2f0f35f07a2015122b868b7eac0eb2c4fec271" + dependencies: + array-index "^1.0.0" + +path-browserify@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" + +path-exists@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-1.0.0.tgz#d5a8998eb71ef37a74c34eb0d9eba6e878eea081" + +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-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-is-inside@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + +path-type@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" + dependencies: + graceful-fs "^4.1.2" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +pbkdf2@^3.0.3: + version "3.0.9" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693" + dependencies: + create-hmac "^1.1.2" + +phantomcss@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/phantomcss/-/phantomcss-0.11.1.tgz#f96a04ee8a7bd3a02498484dd43b78d760670cb7" + dependencies: + casperjs "~1.1.0-beta3" + phantomjs "1.9.7-14" + resemblejs "~1.2.1" + +phantomjs@1.9.7-14: + version "1.9.7-14" + resolved "https://registry.yarnpkg.com/phantomjs/-/phantomjs-1.9.7-14.tgz#7b7b8039fd3a66ece587b8b707065c575039faab" + dependencies: + adm-zip "0.2.1" + kew "~0.1.7" + mkdirp "0.3.5" + ncp "0.4.2" + npmconf "0.0.24" + progress "^1.1.5" + request "2.36.0" + request-progress "^0.3.1" + rimraf "~2.2.2" + which "~1.0.5" + +pify@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + +postcss-brunch@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/postcss-brunch/-/postcss-brunch-0.5.0.tgz#7e6149769f29ae063a6b1f5d3eedcfff85c3e69f" + dependencies: + es6-promise "^3.0.2" + postcss "^5.0.0" + progeny "^0.5.2" + +postcss-calc@^5.2.0: + version "5.3.1" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" + dependencies: + postcss "^5.0.2" + postcss-message-helpers "^2.0.0" + reduce-css-calc "^1.2.6" + +postcss-colormin@^2.1.8: + version "2.2.1" + resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.1.tgz#dc5421b6ae6f779ef6bfd47352b94abe59d0316b" + dependencies: + colormin "^1.0.5" + postcss "^5.0.13" + postcss-value-parser "^3.2.3" + +postcss-convert-values@^2.3.4: + version "2.4.1" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.4.1.tgz#45dce4d4e33b7d967b97a4d937f270ea98d2fe7a" + dependencies: + postcss "^5.0.11" + postcss-value-parser "^3.1.2" + +postcss-discard-comments@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" + dependencies: + postcss "^5.0.14" + +postcss-discard-duplicates@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.0.1.tgz#5fae3f1a71df3e19cffb37309d1a7dba56c4589c" + dependencies: + postcss "^5.0.4" + +postcss-discard-empty@^2.0.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" + dependencies: + postcss "^5.0.14" + +postcss-discard-overridden@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" + dependencies: + postcss "^5.0.16" + +postcss-discard-unused@^2.2.1: + version "2.2.2" + resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.2.tgz#5d72f7d05d11de0a9589e001958067ccae1b4931" + dependencies: + postcss "^5.0.14" + uniqs "^2.0.0" + +postcss-filter-plugins@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" + dependencies: + postcss "^5.0.4" + uniqid "^4.0.0" + +postcss-merge-idents@^2.1.5: + version "2.1.7" + resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" + dependencies: + has "^1.0.1" + postcss "^5.0.10" + postcss-value-parser "^3.1.1" + +postcss-merge-longhand@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.1.tgz#ff59b5dec6d586ce2cea183138f55c5876fa9cdc" + dependencies: + postcss "^5.0.4" + +postcss-merge-rules@^2.0.3: + version "2.0.10" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.0.10.tgz#54b360be804e7e69a5c7222635247b92a3569e9b" + dependencies: + postcss "^5.0.4" + vendors "^1.0.0" + +postcss-message-helpers@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" + +postcss-minify-font-values@^1.0.2: + version "1.0.5" + resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" + dependencies: + object-assign "^4.0.1" + postcss "^5.0.4" + postcss-value-parser "^3.0.2" + +postcss-minify-gradients@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" + dependencies: + postcss "^5.0.12" + postcss-value-parser "^3.3.0" + +postcss-minify-params@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.0.5.tgz#82d602643b8616a61fb3634d7ede0289836d67f9" + dependencies: + alphanum-sort "^1.0.1" + postcss "^5.0.2" + postcss-value-parser "^3.0.2" + uniqs "^2.0.0" + +postcss-minify-selectors@^2.0.4: + version "2.0.5" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.0.5.tgz#4e1f966fb49c95266804016ba9a3c6645bb601e0" + dependencies: + alphanum-sort "^1.0.2" + postcss "^5.0.14" + postcss-selector-parser "^2.0.0" + +postcss-modules-extract-imports@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.0.0.tgz#5b07f368e350cda6fd5c8844b79123a7bd3e37be" + dependencies: + postcss "^5.0.4" + +postcss-modules-local-by-default@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.1.1.tgz#29a10673fa37d19251265ca2ba3150d9040eb4ce" + dependencies: + css-selector-tokenizer "^0.6.0" + postcss "^5.0.4" + +postcss-modules-scope@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.0.2.tgz#ff977395e5e06202d7362290b88b1e8cd049de29" + dependencies: + css-selector-tokenizer "^0.6.0" + postcss "^5.0.4" + +postcss-modules-values@1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.2.2.tgz#f0e7d476fe1ed88c5e4c7f97533a3e772ad94ca1" + dependencies: + icss-replace-symbols "^1.0.2" + postcss "^5.0.14" + +postcss-modules@~0.5.0: + version "0.5.2" + resolved "https://registry.yarnpkg.com/postcss-modules/-/postcss-modules-0.5.2.tgz#9d682fed3f282bd64b2aa4feb6f22a2af435ffda" + dependencies: + css-modules-loader-core "^1.0.1" + generic-names "^1.0.1" + postcss "^5.1.2" + string-hash "^1.1.0" + +postcss-normalize-charset@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.0.tgz#2fbd30e12248c442981d31ea2484d46fd0628970" + dependencies: + postcss "^5.0.5" + +postcss-normalize-url@^3.0.7: + version "3.0.7" + resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.7.tgz#6bd90d0a4bc5a1df22c26ea65c53257dc3829f4e" + dependencies: + is-absolute-url "^2.0.0" + normalize-url "^1.4.0" + postcss "^5.0.14" + postcss-value-parser "^3.2.3" + +postcss-ordered-values@^2.1.0: + version "2.2.2" + resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.2.tgz#be8b511741fab2dac8e614a2302e9d10267b0771" + dependencies: + postcss "^5.0.4" + postcss-value-parser "^3.0.1" + +postcss-reduce-idents@^2.2.2: + version "2.3.1" + resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.3.1.tgz#024e8e219f52773313408573db9645ba62d2d2fe" + dependencies: + postcss "^5.0.4" + postcss-value-parser "^3.0.2" + +postcss-reduce-initial@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.0.tgz#8f739b938289ef2e48936d7101783e4741ca9bbb" + dependencies: + postcss "^5.0.4" + +postcss-reduce-transforms@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" + dependencies: + has "^1.0.1" + postcss "^5.0.8" + postcss-value-parser "^3.0.1" + +postcss-round-subpixels@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/postcss-round-subpixels/-/postcss-round-subpixels-1.2.0.tgz#e21d6ac5952e185f9bdc008b94f004fe509d0a11" + dependencies: + postcss "^5.0.2" + postcss-value-parser "^3.1.2" + +postcss-selector-parser@^2.0.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.1.tgz#fdbf696103b12b0a64060e5610507f410491f7c8" + dependencies: + flatten "^1.0.2" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss-svgo@^2.1.1: + version "2.1.5" + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.5.tgz#46fc0363f01bab6a36a9abb01c229fcc45363094" + dependencies: + is-svg "^2.0.0" + postcss "^5.0.14" + postcss-value-parser "^3.2.3" + svgo "^0.7.0" + +postcss-unique-selectors@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" + dependencies: + alphanum-sort "^1.0.1" + postcss "^5.0.4" + uniqs "^2.0.0" + +postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" + +postcss-zindex@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.1.1.tgz#ea3fbe656c9738aa8729e2ee96ec2a46089b720f" + dependencies: + postcss "^5.0.4" + uniqs "^2.0.0" + +postcss@5.1.2, postcss@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.1.2.tgz#bd84886a66bcad489afaf7c673eed5ef639551e2" + dependencies: + js-base64 "^2.1.9" + source-map "^0.5.6" + supports-color "^3.1.2" + +postcss@^5.0.0, postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.8, postcss@^5.1.2, postcss@^5.2.5: + version "5.2.5" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.5.tgz#ec428c27dffc7fac65961340a9b022fa4af5f056" + dependencies: + chalk "^1.1.3" + js-base64 "^2.1.9" + source-map "^0.5.6" + supports-color "^3.1.2" + +prelude-ls@~1.1.0, prelude-ls@~1.1.1, prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + +prepend-http@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" + +preserve@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" + +private@^0.1.6, private@~0.1.5: + version "0.1.6" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1" + +process-nextick-args@~1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" + +process@~0.11.0, process@~0.11.2: + version "0.11.9" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" + +process@~0.5.1: + version "0.5.2" + resolved "https://registry.yarnpkg.com/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf" + +progeny@^0.5.2, progeny@~0.5.1: + version "0.5.2" + resolved "https://registry.yarnpkg.com/progeny/-/progeny-0.5.2.tgz#1fef1cccba6b057f344e780dbf7bdc8c5135121b" + dependencies: + async-each "~0.1.4" + fs-mode "^1.0.1" + +progress@^1.1.5: + version "1.1.8" + resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" + +proto-list@~1.2.1: + version "1.2.4" + resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" + +proxy-addr@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.2.tgz#b4cc5f22610d9535824c123aef9d3cf73c40ba37" + dependencies: + forwarded "~0.1.0" + ipaddr.js "1.1.1" + +pseudomap@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + +public-encrypt@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + +punycode@^1.4.1, punycode@~1.4.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + +pushserve@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pushserve/-/pushserve-1.0.2.tgz#fdfb803939ca33752d38f2d1aa975ac01a93253f" + dependencies: + commander "^2.0.0" + connect-slashes "^1.3.1" + express "^4.0.0" + serve-static "^1.10.0" + +q-io@1.13.2: + version "1.13.2" + resolved "https://registry.yarnpkg.com/q-io/-/q-io-1.13.2.tgz#eea130d481ddb5e1aa1bc5a66855f7391d06f003" + dependencies: + collections "^0.2.0" + mime "^1.2.11" + mimeparse "^0.1.4" + q "^1.0.1" + qs "^1.2.1" + url2 "^0.0.0" + +q@1.4.1, q@^1.0.1, q@^1.1.2: + version "1.4.1" + resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" + +qs@2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/qs/-/qs-2.3.3.tgz#e9e85adbe75da0bbe4c8e0476a086290f863b404" + +qs@6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.0.tgz#3b7848c03c2dece69a9522b0fae8c4126d745f3b" + +qs@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-1.2.2.tgz#19b57ff24dc2a99ce1f8bdf6afcda59f8ef61f88" + +qs@~0.6.0: + version "0.6.6" + resolved "https://registry.yarnpkg.com/qs/-/qs-0.6.6.tgz#6e015098ff51968b8a3c819001d5f2c89bc4b107" + +qs@~6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" + +query-string@^4.1.0: + version "4.2.3" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.2.3.tgz#9f27273d207a25a8ee4c7b8c74dcd45d556db822" + dependencies: + object-assign "^4.1.0" + strict-uri-encode "^1.0.0" + +querystring-es3@^0.2.1, querystring-es3@~0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + +querystring@0.2.0, querystring@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + +quickly-copy-file@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/quickly-copy-file/-/quickly-copy-file-1.0.0.tgz#9f8ff066230510ee7422b0121472b093a8690859" + dependencies: + mkdirp "~0.5.0" + +randomatic@^1.1.3: + version "1.1.5" + resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.5.tgz#5e9ef5f2d573c67bd2b8124ae90b5156e457840b" + dependencies: + is-number "^2.0.2" + kind-of "^3.0.2" + +randombytes@^2.0.0, randombytes@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec" + +range-parser@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" + +rc@~1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9" + dependencies: + deep-extend "~0.4.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~1.0.4" + +read-components@~0.6.0: + version "0.6.1" + resolved "https://registry.yarnpkg.com/read-components/-/read-components-0.6.1.tgz#45752f1c7c7e450742f4085fe6e24fccc5c75720" + dependencies: + async-each "~0.1.3" + component-builder "~0.10.0" + +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" + +read-pkg@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" + dependencies: + load-json-file "^1.0.0" + normalize-package-data "^2.3.2" + path-type "^1.0.0" + +readable-stream@1.0.27-1: + version "1.0.27-1" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.27-1.tgz#6b67983c20357cefd07f0165001a16d710d91078" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +readable-stream@1.1, readable-stream@^1.0.33: + version "1.1.14" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +"readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@~2.1.4: + version "2.1.5" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0" + dependencies: + buffer-shims "^1.0.0" + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + string_decoder "~0.10.x" + util-deprecate "~1.0.1" + +readable-stream@~2.0.0, readable-stream@~2.0.4, readable-stream@~2.0.5: + version "2.0.6" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + string_decoder "~0.10.x" + util-deprecate "~1.0.1" + +readdirp@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" + dependencies: + graceful-fs "^4.1.2" + minimatch "^3.0.2" + readable-stream "^2.0.2" + set-immediate-shim "^1.0.1" + +readline2@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + mute-stream "0.0.5" + +recast@0.10.33, recast@^0.10.0, recast@^0.10.10: + version "0.10.33" + resolved "https://registry.yarnpkg.com/recast/-/recast-0.10.33.tgz#942808f7aa016f1fa7142c461d7e5704aaa8d697" + dependencies: + ast-types "0.8.12" + esprima-fb "~15001.1001.0-dev-harmony-fb" + private "~0.1.5" + source-map "~0.5.0" + +redent@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" + dependencies: + indent-string "^2.1.0" + strip-indent "^1.0.1" + +reduce-component@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/reduce-component/-/reduce-component-1.0.1.tgz#e0c93542c574521bea13df0f9488ed82ab77c5da" + +reduce-css-calc@^1.2.6: + version "1.3.0" + resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" + dependencies: + balanced-match "^0.4.2" + math-expression-evaluator "^1.2.14" + reduce-function-call "^1.0.1" + +reduce-function-call@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.1.tgz#fa02e126e695824263cab91d3a5b0fdc1dd27a9a" + dependencies: + balanced-match "~0.1.0" + +reduce@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/reduce/-/reduce-1.0.1.tgz#14fa2e5ff1fc560703a020cbb5fbaab691565804" + dependencies: + object-keys "~1.0.0" + +regenerate@^1.2.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.1.tgz#0300203a5d2fdcf89116dce84275d011f5903f33" + +regenerator-runtime@^0.9.5: + version "0.9.6" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz#d33eb95d0d2001a4be39659707c51b0cb71ce029" + +regenerator@0.8.40: + version "0.8.40" + resolved "https://registry.yarnpkg.com/regenerator/-/regenerator-0.8.40.tgz#a0e457c58ebdbae575c9f8cd75127e93756435d8" + dependencies: + commoner "~0.10.3" + defs "~1.1.0" + esprima-fb "~15001.1001.0-dev-harmony-fb" + private "~0.1.5" + recast "0.10.33" + through "~2.3.8" + +regex-cache@^0.4.2: + version "0.4.3" + resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" + dependencies: + is-equal-shallow "^0.1.3" + is-primitive "^2.0.0" + +regexpu-core@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" + dependencies: + regenerate "^1.2.1" + regjsgen "^0.2.0" + regjsparser "^0.1.4" + +regexpu-core@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" + dependencies: + regenerate "^1.2.1" + regjsgen "^0.2.0" + regjsparser "^0.1.4" + +regexpu@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/regexpu/-/regexpu-1.3.0.tgz#e534dc991a9e5846050c98de6d7dd4a55c9ea16d" + dependencies: + esprima "^2.6.0" + recast "^0.10.10" + regenerate "^1.2.1" + regjsgen "^0.2.0" + regjsparser "^0.1.4" + +regjsgen@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" + +regjsparser@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" + dependencies: + jsesc "~0.5.0" + +repeat-element@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" + +repeat-string@^1.5.2: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + +repeating@^1.1.0, repeating@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/repeating/-/repeating-1.1.3.tgz#3d4114218877537494f97f77f9785fab810fa4ac" + dependencies: + is-finite "^1.0.0" + +repeating@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" + dependencies: + is-finite "^1.0.0" + +request-progress@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-0.3.1.tgz#0721c105d8a96ac6b2ce8b2c89ae2d5ecfcf6b3a" + dependencies: + throttleit "~0.0.2" + +request@2, request@^2.55.0, request@^2.61.0, request@^2.75.0: + version "2.78.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.78.0.tgz#e1c8dec346e1c81923b24acdb337f11decabe9cc" + dependencies: + aws-sign2 "~0.6.0" + aws4 "^1.2.1" + caseless "~0.11.0" + combined-stream "~1.0.5" + extend "~3.0.0" + forever-agent "~0.6.1" + form-data "~2.1.1" + har-validator "~2.0.6" + hawk "~3.1.3" + http-signature "~1.1.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.7" + node-uuid "~1.4.7" + oauth-sign "~0.8.1" + qs "~6.3.0" + stringstream "~0.0.4" + tough-cookie "~2.3.0" + tunnel-agent "~0.4.1" + +request@2.36.0: + version "2.36.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.36.0.tgz#28c6c04262c7b9ffdd21b9255374517ee6d943f5" + dependencies: + forever-agent "~0.5.0" + json-stringify-safe "~5.0.0" + mime "~1.2.9" + node-uuid "~1.4.0" + qs "~0.6.0" + optionalDependencies: + aws-sign2 "~0.5.0" + form-data "~0.1.0" + hawk "~1.0.0" + http-signature "~0.10.0" + oauth-sign "~0.3.0" + tough-cookie ">=0.12.0" + tunnel-agent "~0.4.0" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + +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" + +resemblejs@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/resemblejs/-/resemblejs-1.2.1.tgz#27b104370f541780549eba9d916194a796584763" + +resolve@1.1.7, resolve@^1.1.6: + version "1.1.7" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" + +restore-cursor@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" + dependencies: + exit-hook "^1.0.0" + onetime "^1.0.0" + +right-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" + dependencies: + align-text "^0.1.1" + +rimraf@2, rimraf@~2.4.0: + version "2.4.5" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.4.5.tgz#ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da" + dependencies: + glob "^6.0.1" + +rimraf@^2.2.8, rimraf@~2.5.1, rimraf@~2.5.4: + version "2.5.4" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04" + dependencies: + glob "^7.0.5" + +rimraf@~2.2.2: + version "2.2.8" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582" + +ripemd160@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e" + +run-async@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" + dependencies: + once "^1.3.0" + +rx-lite@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" + +sass-brunch@^2.10.4: + version "2.10.4" + resolved "https://registry.yarnpkg.com/sass-brunch/-/sass-brunch-2.10.4.tgz#36bb0f08f223df7dac1363bc05ad5ac32d3013d8" + dependencies: + anymatch "^1.3.0" + micro-promisify "~0.1.1" + node-sass "~3.8.0" + postcss "~5.1.2" + postcss-modules "~0.5.0" + progeny "~0.5.1" + +sass-graph@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.1.2.tgz#965104be23e8103cb7e5f710df65935b317da57b" + dependencies: + glob "^7.0.0" + lodash "^4.0.0" + yargs "^4.7.1" + +sax@^1.1.4, sax@^1.1.5, sax@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a" + +selectn@^0.9.6: + version "0.9.6" + resolved "https://registry.yarnpkg.com/selectn/-/selectn-0.9.6.tgz#bd873a556d18f96d8515fc91503ec6ff398ff9a2" + +"semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.1.0, semver@~5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" + +semver@~1.1.0: + version "1.1.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-1.1.4.tgz#2e5a4e72bab03472cc97f72753b4508912ef5540" + +send@0.14.1: + version "0.14.1" + resolved "https://registry.yarnpkg.com/send/-/send-0.14.1.tgz#a954984325392f51532a7760760e459598c89f7a" + dependencies: + debug "~2.2.0" + depd "~1.1.0" + destroy "~1.0.4" + encodeurl "~1.0.1" + escape-html "~1.0.3" + etag "~1.7.0" + fresh "0.3.0" + http-errors "~1.5.0" + mime "1.3.4" + ms "0.7.1" + on-finished "~2.3.0" + range-parser "~1.2.0" + statuses "~1.3.0" + +serve-static@^1.10.0, serve-static@~1.11.1: + version "1.11.1" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.11.1.tgz#d6cce7693505f733c759de57befc1af76c0f0805" + dependencies: + encodeurl "~1.0.1" + escape-html "~1.0.3" + parseurl "~1.3.1" + send "0.14.1" + +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" + +set-immediate-shim@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" + +setprototypeof@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.1.tgz#52009b27888c4dc48f591949c0a8275834c1ca7e" + +sha.js@^2.3.6: + version "2.4.5" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.5.tgz#27d171efcc82a118b99639ff581660242b506e7c" + dependencies: + inherits "^2.0.1" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + +shelljs@^0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.5.3.tgz#c54982b996c76ef0c1e6b59fbdc5825f5b713113" + +signal-exit@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.1.tgz#5a4c884992b63a7acd9badb7894c3ee9cfccad81" + +simple-fmt@~0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/simple-fmt/-/simple-fmt-0.1.0.tgz#191bf566a59e6530482cb25ab53b4a8dc85c3a6b" + +simple-is@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/simple-is/-/simple-is-0.2.0.tgz#2abb75aade39deb5cc815ce10e6191164850baf0" + +slash@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" + +sliced@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/sliced/-/sliced-0.0.5.tgz#5edc044ca4eb6f7816d50ba2fc63e25d8fe4707f" + +sntp@0.2.x: + version "0.2.4" + resolved "https://registry.yarnpkg.com/sntp/-/sntp-0.2.4.tgz#fb885f18b0f3aad189f824862536bceeec750900" + dependencies: + hoek "0.9.x" + +sntp@1.x.x: + version "1.0.9" + resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" + dependencies: + hoek "2.x.x" + +sort-keys@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" + dependencies: + is-plain-obj "^1.0.0" + +source-map-support@^0.2.10: + version "0.2.10" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.2.10.tgz#ea5a3900a1c1cb25096a0ae8cc5c2b4b10ded3dc" + dependencies: + source-map "0.1.32" + +source-map-support@^0.4.2: + version "0.4.6" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.6.tgz#32552aa64b458392a85eab3b0b5ee61527167aeb" + dependencies: + source-map "^0.5.3" + +source-map@0.1.32: + version "0.1.32" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.32.tgz#c8b6c167797ba4740a8ea33252162ff08591b266" + dependencies: + amdefine ">=0.0.4" + +source-map@^0.4.2, source-map@^0.4.4: + version "0.4.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" + dependencies: + amdefine ">=0.0.4" + +source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.0, source-map@~0.5.1: + version "0.5.6" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" + +source-map@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" + dependencies: + amdefine ">=0.0.4" + +spdx-correct@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" + dependencies: + spdx-license-ids "^1.0.2" + +spdx-expression-parse@~1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" + +spdx-license-ids@^1.0.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + +sshpk@^1.7.0: + version "1.10.1" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.1.tgz#30e1a5d329244974a1af61511339d595af6638b0" + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + dashdash "^1.12.0" + getpass "^0.1.1" + optionalDependencies: + bcrypt-pbkdf "^1.0.0" + ecc-jsbn "~0.1.1" + jodid25519 "^1.0.0" + jsbn "~0.1.0" + tweetnacl "~0.14.0" + +stable@~0.1.3: + version "0.1.5" + resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.5.tgz#08232f60c732e9890784b5bed0734f8b32a887b9" + +"statuses@>= 1.3.0 < 2", statuses@^1.2.1, statuses@~1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.0.tgz#8e55758cb20e7682c1f4fce8dcab30bf01d1e07a" + +stream-browserify@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" + dependencies: + inherits "~2.0.1" + readable-stream "^2.0.2" + +stream-http@~2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.1.1.tgz#3b880303babe036d6f6b43127d4dcd6f8893e1db" + dependencies: + builtin-status-codes "^2.0.0" + inherits "^2.0.1" + to-arraybuffer "^1.0.0" + xtend "^4.0.0" + +strict-uri-encode@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" + +string-hash@^1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b" + +string-to-js@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/string-to-js/-/string-to-js-0.0.1.tgz#bf153c760636faa30769b804a0195552ba7ad80f" + +string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +string.fromcodepoint@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/string.fromcodepoint/-/string.fromcodepoint-0.2.1.tgz#8d978333c0bc92538f50f383e4888f3e5619d653" + +string.prototype.codepointat@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/string.prototype.codepointat/-/string.prototype.codepointat-0.2.0.tgz#6b26e9bd3afcaa7be3b4269b526de1b82000ac78" + +string_decoder@~0.10.31, string_decoder@~0.10.x: + version "0.10.31" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" + +stringmap@~0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/stringmap/-/stringmap-0.2.2.tgz#556c137b258f942b8776f5b2ef582aa069d7d1b1" + +stringset@~0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/stringset/-/stringset-0.2.1.tgz#ef259c4e349344377fcd1c913dd2e848c9c042b5" + +stringstream@~0.0.4: + version "0.0.5" + resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + dependencies: + ansi-regex "^2.0.0" + +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-indent@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" + dependencies: + get-stdin "^4.0.1" + +strip-json-comments@~1.0.1, strip-json-comments@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" + +superagent@^1.1.0: + version "1.8.4" + resolved "https://registry.yarnpkg.com/superagent/-/superagent-1.8.4.tgz#68b2c8a400f1753ddb39410906899e42f420fd3a" + dependencies: + component-emitter "~1.2.0" + cookiejar "2.0.6" + debug "2" + extend "3.0.0" + form-data "1.0.0-rc3" + formidable "~1.0.14" + methods "~1.1.1" + mime "1.3.4" + qs "2.3.3" + readable-stream "1.0.27-1" + reduce-component "1.0.1" + +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.1.2" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.1.2.tgz#72a262894d9d408b956ca05ff37b2ed8a6e2a2d5" + dependencies: + has-flag "^1.0.0" + +svg-pathdata@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/svg-pathdata/-/svg-pathdata-1.0.3.tgz#2e31e35a468b54844cf27634defca082f175884a" + dependencies: + readable-stream "~2.0.4" + +svg2ttf@4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/svg2ttf/-/svg2ttf-4.0.1.tgz#6f7f30ca88e10585f5f5540876aa0dc6dd2f8b06" + dependencies: + argparse "^1.0.6" + cubic2quad "^1.0.0" + lodash "^4.6.1" + microbuffer "^1.0.0" + svgpath "^2.1.5" + xmldom "~0.1.22" + +svgicons2svgfont@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/svgicons2svgfont/-/svgicons2svgfont-5.0.0.tgz#3339521da04e1b6361aa67968d7f4f35819eeb33" + dependencies: + commander "^2.9.0" + neatequal "^1.0.0" + readable-stream "^2.0.4" + sax "^1.1.5" + string.fromcodepoint "^0.2.1" + string.prototype.codepointat "^0.2.0" + svg-pathdata "^1.0.3" + +svgo@^0.7.0: + version "0.7.1" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.1.tgz#287320fed972cb097e72c2bb1685f96fe08f8034" + dependencies: + coa "~1.0.1" + colors "~1.1.2" + csso "~2.2.1" + js-yaml "~3.6.1" + mkdirp "~0.5.1" + sax "~1.2.1" + whet.extend "~0.9.9" + +svgpath@^2.1.5: + version "2.2.0" + resolved "https://registry.yarnpkg.com/svgpath/-/svgpath-2.2.0.tgz#6bbe4c4cad9170e3f338cc746cc2e0c0fc7a5064" + +"symbol-tree@>= 3.1.0 < 4.0.0": + version "3.1.4" + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.1.4.tgz#02b279348d337debc39694c5c95f882d448a312a" + +tar-pack@~3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae" + dependencies: + debug "~2.2.0" + fstream "~1.0.10" + fstream-ignore "~1.0.5" + once "~1.3.3" + readable-stream "~2.1.4" + rimraf "~2.5.1" + tar "~2.2.1" + uid-number "~0.0.6" + +tar@^2.0.0, tar@~2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" + dependencies: + block-stream "*" + fstream "^1.0.2" + inherits "2" + +text-table@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + +throttleit@~0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-0.0.2.tgz#cfedf88e60c00dd9697b61fdd2a8343a9b680eaf" + +through@^2.3.6, through@~2.3.4, through@~2.3.8: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + +timers-browserify@~1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d" + dependencies: + process "~0.11.0" + +to-arraybuffer@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + +to-factory@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/to-factory/-/to-factory-1.0.0.tgz#8738af8bd97120ad1d4047972ada5563bf9479b1" + +to-fast-properties@^1.0.0, to-fast-properties@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" + +tough-cookie@>=0.12.0, tough-cookie@^2.2.0, tough-cookie@~2.3.0: + version "2.3.2" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" + dependencies: + punycode "^1.4.1" + +tr46@~0.0.1: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + +trim-newlines@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" + +trim-right@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + +try-resolve@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/try-resolve/-/try-resolve-1.0.1.tgz#cfde6fabd72d63e5797cfaab873abbe8e700e912" + +tryit@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" + +tryor@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/tryor/-/tryor-0.1.2.tgz#8145e4ca7caff40acde3ccf946e8b8bb75b4172b" + +ttf2woff@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/ttf2woff/-/ttf2woff-2.0.1.tgz#871832240024b09db9570904c7c1928b8057c969" + dependencies: + argparse "^1.0.6" + microbuffer "^1.0.0" + pako "^1.0.0" + +tty-browserify@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" + +tunnel-agent@^0.4.3, tunnel-agent@~0.4.0, tunnel-agent@~0.4.1: + version "0.4.3" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.3" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.3.tgz#3da382f670f25ded78d7b3d1792119bca0b7132d" + +type-check@~0.3.1, type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + dependencies: + prelude-ls "~1.1.2" + +type-is@^1.6.1, type-is@~1.6.13: + version "1.6.13" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.13.tgz#6e83ba7bc30cd33a7bb0b7fb00737a2085bf9d08" + dependencies: + media-typer "0.3.0" + mime-types "~2.1.11" + +typedarray@~0.0.5: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + +uglify-js@^2.6: + version "2.7.4" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.4.tgz#a295a0de12b6a650c031c40deb0dc40b14568bd2" + dependencies: + async "~0.2.6" + source-map "~0.5.1" + uglify-to-browserify "~1.0.0" + yargs "~3.10.0" + +uglify-to-browserify@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" + +uid-number@~0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" + +ultron@1.0.x: + version "1.0.2" + resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa" + +uniq@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" + +uniqid@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.0.tgz#33d9679f65022f48988a03fd24e7dcaf8f109eca" + dependencies: + macaddress "^0.2.8" + +uniqs@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" + +unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + +url2@^0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/url2/-/url2-0.0.0.tgz#4eaabd1d5c3ac90d62ab4485c998422865a04b1a" + +url@~0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + dependencies: + punycode "1.3.2" + querystring "0.2.0" + +user-home@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" + +user-home@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" + dependencies: + os-homedir "^1.0.0" + +utf-8-validate@1.2.x: + version "1.2.1" + resolved "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-1.2.1.tgz#44cb7c6eead73d6b40448f71f745904357b9f72c" + dependencies: + bindings "1.2.x" + nan "^2.0.5" + +util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + +util@0.10.3, util@~0.10.3: + version "0.10.3" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + dependencies: + inherits "2.0.1" + +utils-merge@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" + +validate-npm-package-license@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" + dependencies: + spdx-correct "~1.0.0" + spdx-expression-parse "~1.0.0" + +varstream@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/varstream/-/varstream-0.3.2.tgz#18ac6494765f3ff1a35ad9a4be053bec188a5de1" + dependencies: + readable-stream "^1.0.33" + +vary@^1.0.0, vary@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.0.tgz#e1e5affbbd16ae768dd2674394b9ad3022653140" + +vendors@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" + +verror@1.3.6: + version "1.3.6" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" + dependencies: + extsprintf "1.0.2" + +vm-browserify@~0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" + dependencies: + indexof "0.0.1" + +weak-map@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/weak-map/-/weak-map-1.0.0.tgz#b66e56a9df0bd25a76bbf1b514db129080614a37" + +webidl-conversions@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-2.0.1.tgz#3bf8258f7d318c7443c36f2e169402a1a6703506" + +whatwg-url-compat@~0.6.5: + version "0.6.5" + resolved "https://registry.yarnpkg.com/whatwg-url-compat/-/whatwg-url-compat-0.6.5.tgz#00898111af689bb097541cd5a45ca6c8798445bf" + dependencies: + tr46 "~0.0.1" + +whet.extend@~0.9.9: + version "0.9.9" + resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" + +which-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" + +which@1, which@^1.2.9: + version "1.2.11" + resolved "https://registry.yarnpkg.com/which/-/which-1.2.11.tgz#c8b2eeea6b8c1659fa7c1dd4fdaabe9533dc5e8b" + dependencies: + isexe "^1.1.1" + +which@~1.0.5: + version "1.0.9" + resolved "https://registry.yarnpkg.com/which/-/which-1.0.9.tgz#460c1da0f810103d0321a9b633af9e575e64486f" + +wide-align@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" + dependencies: + string-width "^1.0.1" + +window-size@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" + +window-size@^0.1.2: + version "0.1.4" + resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" + +window-size@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075" + +wordwrap@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" + +wordwrap@~0.0.2: + version "0.0.3" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" + +wordwrap@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + +wrap-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.0.0.tgz#7d30f8f873f9a5bbc3a64dabc8d177e071ae426f" + dependencies: + string-width "^1.0.1" + +wrap-fn@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/wrap-fn/-/wrap-fn-0.1.5.tgz#f21b6e41016ff4a7e31720dbc63a09016bdf9845" + dependencies: + co "3.1.0" + +wrappy@1, wrappy@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + +wrench@1.5.8: + version "1.5.8" + resolved "https://registry.yarnpkg.com/wrench/-/wrench-1.5.8.tgz#7a31c97f7869246d76c5cf2f5c977a1c4c8e5ab5" + +write@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" + dependencies: + mkdirp "^0.5.1" + +ws@^0.8.0: + version "0.8.1" + resolved "https://registry.yarnpkg.com/ws/-/ws-0.8.1.tgz#6b65273b99193c5f067a4cf5809598f777e3b759" + dependencies: + options ">=0.0.5" + ultron "1.0.x" + optionalDependencies: + bufferutil "1.2.x" + utf-8-validate "1.2.x" + +x-ray-crawler@~2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/x-ray-crawler/-/x-ray-crawler-2.0.2.tgz#0773d213e9e7be41e2b5bacd35693cae6736b138" + dependencies: + cheerio "^0.18.0" + debug "^2.1.3" + delegates "^0.1.0" + emitter-component "^1.1.1" + enqueue "^1.0.2" + http-context "^1.1.0" + ms "^0.7.0" + selectn "^0.9.6" + sliced "0.0.5" + superagent "^1.1.0" + wrap-fn "^0.1.4" + x-ray-parse "^1.0.0" + yieldly "0.0.1" + +x-ray-parse@^1.0.0, x-ray-parse@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/x-ray-parse/-/x-ray-parse-1.0.1.tgz#08d0ffc5e3ad139c11050af9aea4760949f29694" + dependencies: + format-parser "0.0.2" + +x-ray@^2.0.2: + version "2.3.1" + resolved "https://registry.yarnpkg.com/x-ray/-/x-ray-2.3.1.tgz#56ccdd00c52d8a40d49ed339cdb879747970d1da" + dependencies: + batch "~0.5.2" + chalk "~1.1.1" + cheerio "~0.20.0" + debug "~2.2.0" + enstore "~1.0.1" + is-url "~1.2.0" + isobject "~2.0.0" + object-assign "~4.0.1" + x-ray-crawler "~2.0.1" + x-ray-parse "~1.0.1" + +xml-escape@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/xml-escape/-/xml-escape-1.0.0.tgz#00963d697b2adf0c185c4e04e73174ba9b288eb2" + +"xml-name-validator@>= 2.0.1 < 3.0.0": + version "2.0.1" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" + +xmldom@~0.1.22: + version "0.1.22" + resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.22.tgz#10de4e5e964981f03c8cc72fadc08d14b6c3aa26" + +xray@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/xray/-/xray-0.5.0.tgz#36b57f43d242d965c90b3d07ef181f6e7f1abf98" + +xtend@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" + +y18n@^3.2.0, y18n@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" + +yallist@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.0.0.tgz#306c543835f09ee1a4cb23b7bce9ab341c91cdd4" + +yargs-parser@^2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-2.4.1.tgz#85568de3cf150ff49fa51825f03a8c880ddcc5c4" + dependencies: + camelcase "^3.0.0" + lodash.assign "^4.0.6" + +yargs@^4.7.1: + version "4.8.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-4.8.1.tgz#c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0" + dependencies: + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + lodash.assign "^4.0.3" + os-locale "^1.4.0" + read-pkg-up "^1.0.1" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^1.0.1" + which-module "^1.0.0" + window-size "^0.2.0" + y18n "^3.2.1" + yargs-parser "^2.4.1" + +yargs@~3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" + dependencies: + camelcase "^1.0.2" + cliui "^2.1.0" + decamelize "^1.0.0" + window-size "0.1.0" + +yargs@~3.27.0: + version "3.27.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.27.0.tgz#21205469316e939131d59f2da0c6d7f98221ea40" + dependencies: + camelcase "^1.2.1" + cliui "^2.1.0" + decamelize "^1.0.0" + os-locale "^1.4.0" + window-size "^0.1.2" + y18n "^3.2.0" + +yieldly@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/yieldly/-/yieldly-0.0.1.tgz#7d64c856e4f1cd3c35a78f86e0a2960e6a7d0474" + dependencies: + is-browser "2.0.1"