├── .gitignore ├── index.js ├── README.md ├── demo.png ├── postcss.config.js ├── src └── styles.css ├── webpack.config.js ├── package.json ├── LICENSE ├── index.html ├── tailwind.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | yarn-error.log 3 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import styles from './src/styles.css' 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | TailwindCss Paypal Page 2 | ![alt text](./demo.png) 3 | -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simoebenhida/tailwindcss-paypal-page/HEAD/demo.png -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [ 3 | require('tailwindcss')('./tailwind.js') 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- 1 | @tailwind preflight; 2 | 3 | a { 4 | text-decoration: none; 5 | } 6 | 7 | li { 8 | list-style-type: none; 9 | text-decoration: none; 10 | } 11 | 12 | .hero-image { 13 | background-image: url('https://www.paypalobjects.com/digitalassets/c/website/marketing/emea/shared/merchant/emea_merchant_herobanner_latest.png'); 14 | background-size: 105%; 15 | } 16 | 17 | .blue-shadow { 18 | background-color: #009cde; 19 | background-image: radial-gradient(circle farthest-side at center bottom,#009cde,#003087 125%); 20 | } 21 | 22 | @tailwind components; 23 | 24 | @tailwind utilities; 25 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | const ExtractTextPlugin = require('extract-text-webpack-plugin') 2 | const path = require('path') 3 | 4 | module.exports = { 5 | entry: './index.js', 6 | output: { 7 | path: path.resolve(__dirname, 'dist'), 8 | filename: 'styles.css', 9 | }, 10 | module: { 11 | rules: [ 12 | { 13 | test: /\.css$/, 14 | use: ExtractTextPlugin.extract({ 15 | fallback: 'style-loader', 16 | use: [ 17 | { loader: 'css-loader', options: { importLoaders: 1 } }, 18 | 'postcss-loader' 19 | ] 20 | }) 21 | } 22 | ] 23 | }, 24 | plugins: [ 25 | new ExtractTextPlugin('styles.css') 26 | ] 27 | } 28 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=webpack.config.js", 5 | "watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=webpack.config.js", 6 | "prod": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=webpack.config.js" 7 | }, 8 | "devDependencies": { 9 | "cross-env": "^5.1", 10 | "css-loader": "^0.28.7", 11 | "extract-text-webpack-plugin": "^3.0.2", 12 | "postcss": "^6.0.14", 13 | "postcss-loader": "^2.0.8", 14 | "style-loader": "^0.19.0", 15 | "tailwindcss": "^0.7.4", 16 | "webpack": "^3.8.1" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Adam Wathan 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | TailwindCss Paypal 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 |
16 |
17 | 18 |
19 | 33 |
34 |
35 | 36 |
37 |
38 | 39 |
40 |
41 |
42 | 43 | 44 |
45 |
46 |

PayPal, the smart choice for business.

47 |

Whether you’re looking for a complete payments solution or want to add PayPal as an extra payment method to your existing website, we have a smart solution that’s right for your business.

48 |
49 | 50 |
51 |
52 |
53 |
54 | 55 |
56 |

Get paid however you do business.

57 |
58 |
59 |
60 | 61 |
62 |
63 |

On your website

64 |

Accept Paypal and card payments on your website, from using checkout buttons to our fully customized online solutions.

65 | Get paid on your website 66 |
67 |
68 |
69 |
70 | 71 |
72 |
73 |

On your website

74 |

Accept Paypal and card payments on your website, from using checkout buttons to our fully customized online solutions.

75 | Get paid on your website 76 |
77 |
78 |
79 |
80 | 81 |
82 |
83 |

Better for you and your customers

84 |
85 |
86 |
87 |

Customer Support

88 |
89 |

90 | We’re here to help you and your customers with anything, from setting up your business account to Seller Protection and queries with transactions. 91 |

92 |
93 |
94 |
95 |

Quicker and simpler access to funds.

96 |
97 |

98 | Payments you receive go to your PayPal Balance in moments, and you can withdraw funds to your bank account. 99 |

100 |
101 |
102 |
103 |

Sell internationally.

104 |
105 |

106 | Accept payments from customers in more than 200 countries and markets without the hassle of accepting foreign cards. 107 |

108 |
109 |
110 |
111 |
112 | 113 |
114 |

Get started with PayPal.

115 |
116 |
117 | 118 |
119 |
120 |
121 |
122 | 1 123 |
124 |

Set up a business account.

125 |
126 |
127 |
128 | 2 129 |
130 |

Choose the features you want to start with. You can go back, change or add to them later.

131 |
132 | 133 |
134 |
135 | 3 136 |
137 |

Integrate PayPal via a partner, a developer or by yourself.

138 |
139 |
140 | 141 |
142 |
143 | 144 |
145 |
146 |
147 |

Sell without boundaries.

148 |

Open your business to millions of PayPal active shoppers around the world. We're available in more than 200 countries and markets around the world, accepting 25 currencies. Currency conversion fees may apply.

149 |

See all fees

150 |
151 |
152 |
153 | 154 |
155 |
156 |

Make the smart choice

157 | 158 |
159 |
160 | 161 | 162 | 163 | 164 | -------------------------------------------------------------------------------- /tailwind.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Tailwind - The Utility-First CSS Framework 4 | 5 | A project by Adam Wathan (@adamwathan), Jonathan Reinink (@reinink), 6 | David Hemphill (@davidhemphill) and Steve Schoger (@steveschoger). 7 | 8 | Welcome to the Tailwind config file. This is where you can customize 9 | Tailwind specifically for your project. Don't be intimidated by the 10 | length of this file. It's really just a big JavaScript object and 11 | we've done our very best to explain each section. 12 | 13 | View the full documentation at https://tailwindcss.com. 14 | 15 | 16 | |------------------------------------------------------------------------------- 17 | | The default config 18 | |------------------------------------------------------------------------------- 19 | | 20 | | This variable contains the default Tailwind config. You don't have 21 | | to use it, but it can sometimes be helpful to have available. For 22 | | example, you may choose to merge your custom configuration 23 | | values with some of the Tailwind defaults. 24 | | 25 | */ 26 | 27 | // let defaultConfig = require('tailwindcss/defaultConfig')() 28 | 29 | /* 30 | |------------------------------------------------------------------------------- 31 | | Colors https://tailwindcss.com/docs/colors 32 | |------------------------------------------------------------------------------- 33 | | 34 | | Here you can specify the colors used in your project. To get you started, 35 | | we've provided a generous palette of great looking colors that are perfect 36 | | for prototyping, but don't hesitate to change them for your project. You 37 | | own these colors, nothing will break if you change everything about them. 38 | | 39 | | We've used literal color names ("red", "blue", etc.) for the default 40 | | palette, but if you'd rather use functional names like "primary" and 41 | | "secondary", or even a numeric scale like "100" and "200", go for it. 42 | | 43 | */ 44 | 45 | let colors = { 46 | transparent: "transparent", 47 | 48 | black: "#22292f", 49 | "border": "rgba(255,255,255,.3)", 50 | "grey-darkest": "#3d4852", 51 | "grey-darker": "#667580", 52 | "grey-dark": "#8795a1", 53 | grey: "#E6ECF0", 54 | "grey-light": "#F5F8FA", 55 | "grey-lighter": "#f1f5f8", 56 | "grey-lightest": "#f8fafc", 57 | white: "#ffffff", 58 | 59 | "red-darkest": "#3b0d0c", 60 | "red-darker": "#621b18", 61 | "red-dark": "#cc1f1a", 62 | red: "#e3342f", 63 | "red-light": "#ef5753", 64 | "red-lighter": "#f9acaa", 65 | "red-lightest": "#fcebea", 66 | 67 | "orange-darkest": "#462a16", 68 | "orange-darker": "#613b1f", 69 | "orange-dark": "#de751f", 70 | orange: "#f6993f", 71 | "orange-light": "#faad63", 72 | "orange-lighter": "#fcd9b6", 73 | "orange-lightest": "#fff5eb", 74 | 75 | "yellow-darkest": "#453411", 76 | "yellow-darker": "#684f1d", 77 | "yellow-dark": "#f2d024", 78 | yellow: "#ffed4a", 79 | "yellow-light": "#fff382", 80 | "yellow-lighter": "#fff9c2", 81 | "yellow-lightest": "#fcfbeb", 82 | 83 | "green-darkest": "#0f2f21", 84 | "green-darker": "#1a4731", 85 | "green-dark": "#1f9d55", 86 | green: "#38c172", 87 | "green-light": "#51d88a", 88 | "green-lighter": "#a2f5bf", 89 | "green-lightest": "#e3fcec", 90 | 91 | "teal-darkest": "#0d3331", 92 | "teal-darker": "#20504f", 93 | "teal-dark": "#38a89d", 94 | teal: "#4dc0b5", 95 | "teal-light": "#64d5ca", 96 | "teal-lighter": "#a0f0ed", 97 | "teal-lightest": "#e8fffe", 98 | 99 | "blue-darkest": "#12283a", 100 | "blue-darker": "#1c3d5a", 101 | "blue-dark": "#2779bd", 102 | blue: "#3490dc", 103 | "blue-light": "#3BB9E3", 104 | "blue-lighter": "#bcdefa", 105 | "blue-lightest": "#eff8ff", 106 | 107 | "indigo-darkest": "#191e38", 108 | "indigo-darker": "#2f365f", 109 | "indigo-dark": "#5661b3", 110 | indigo: "#6574cd", 111 | "indigo-light": "#7886d7", 112 | "indigo-lighter": "#b2b7ff", 113 | "indigo-lightest": "#e6e8ff", 114 | 115 | "purple-darkest": "#21183c", 116 | "purple-darker": "#382b5f", 117 | "purple-dark": "#794acf", 118 | purple: "#9561e2", 119 | "purple-light": "#a779e9", 120 | "purple-lighter": "#d6bbfc", 121 | "purple-lightest": "#f3ebff", 122 | 123 | "pink-darkest": "#451225", 124 | "pink-darker": "#6f213f", 125 | "pink-dark": "#eb5286", 126 | pink: "#f66d9b", 127 | "pink-light": "#fa7ea8", 128 | "pink-lighter": "#ffbbca", 129 | "pink-lightest": "#ffebef" 130 | }; 131 | 132 | module.exports = { 133 | /* 134 | |----------------------------------------------------------------------------- 135 | | Colors https://tailwindcss.com/docs/colors 136 | |----------------------------------------------------------------------------- 137 | | 138 | | The color palette defined above is also assigned to the "colors" key of 139 | | your Tailwind config. This makes it easy to access them in your CSS 140 | | using Tailwind's config helper. For example: 141 | | 142 | | .error { color: config('colors.red') } 143 | | 144 | */ 145 | 146 | colors: colors, 147 | 148 | /* 149 | |----------------------------------------------------------------------------- 150 | | Screens https://tailwindcss.com/docs/responsive-design 151 | |----------------------------------------------------------------------------- 152 | | 153 | | Screens in Tailwind are translated to CSS media queries. They define the 154 | | responsive breakpoints for your project. By default Tailwind takes a 155 | | "mobile first" approach, where each screen size represents a minimum 156 | | viewport width. Feel free to have as few or as many screens as you 157 | | want, naming them in whatever way you'd prefer for your project. 158 | | 159 | | Tailwind also allows for more complex screen definitions, which can be 160 | | useful in certain situations. Be sure to see the full responsive 161 | | documentation for a complete list of options. 162 | | 163 | | Class name: .{screen}:{utility} 164 | | 165 | */ 166 | 167 | screens: { 168 | sm: "576px", 169 | md: "768px", 170 | lg: "992px", 171 | xl: "1200px" 172 | }, 173 | 174 | /* 175 | |----------------------------------------------------------------------------- 176 | | Fonts https://tailwindcss.com/docs/fonts 177 | |----------------------------------------------------------------------------- 178 | | 179 | | Here is where you define your project's font stack, or font families. 180 | | Keep in mind that Tailwind doesn't actually load any fonts for you. 181 | | If you're using custom fonts you'll need to import them prior to 182 | | defining them here. 183 | | 184 | | By default we provide a native font stack that works remarkably well on 185 | | any device or OS you're using, since it just uses the default fonts 186 | | provided by the platform. 187 | | 188 | | Class name: .font-{name} 189 | | 190 | */ 191 | 192 | fonts: { 193 | sans: [ 194 | "system-ui", 195 | "BlinkMacSystemFont", 196 | "-apple-system", 197 | "Segoe UI", 198 | "Roboto", 199 | "Oxygen", 200 | "Ubuntu", 201 | "Cantarell", 202 | "Fira Sans", 203 | "Droid Sans", 204 | "Helvetica Neue", 205 | "sans-serif" 206 | ], 207 | serif: [ 208 | "Constantia", 209 | "Lucida Bright", 210 | "Lucidabright", 211 | "Lucida Serif", 212 | "Lucida", 213 | "DejaVu Serif", 214 | "Bitstream Vera Serif", 215 | "Liberation Serif", 216 | "Georgia", 217 | "serif" 218 | ], 219 | mono: [ 220 | "Menlo", 221 | "Monaco", 222 | "Consolas", 223 | "Liberation Mono", 224 | "Courier New", 225 | "monospace" 226 | ] 227 | }, 228 | 229 | /* 230 | |----------------------------------------------------------------------------- 231 | | Text sizes https://tailwindcss.com/docs/text-sizing 232 | |----------------------------------------------------------------------------- 233 | | 234 | | Here is where you define your text sizes. Name these in whatever way 235 | | makes the most sense to you. We use size names by default, but 236 | | you're welcome to use a numeric scale or even something else 237 | | entirely. 238 | | 239 | | By default Tailwind uses the "rem" unit type for most measurements. 240 | | This allows you to set a root font size which all other sizes are 241 | | then based on. That said, you are free to use whatever units you 242 | | prefer, be it rems, ems, pixels or other. 243 | | 244 | | Class name: .text-{size} 245 | | 246 | */ 247 | 248 | textSizes: { 249 | xss: ".65rem", 250 | xs: ".75rem", // 12px 251 | sm: ".875rem", // 14px 252 | base: "1rem", // 16px 253 | lg: "1.125rem", // 18px 254 | xl: "1.25rem", // 20px 255 | "2xl": "1.5rem", // 24px 256 | "3xl": "1.875rem", // 30px 257 | "4xl": "2.25rem", // 36px 258 | "5xl": "3rem" // 48px 259 | }, 260 | /* 261 | |----------------------------------------------------------------------------- 262 | | Font weights https://tailwindcss.com/docs/font-weight 263 | |----------------------------------------------------------------------------- 264 | | 265 | | Here is where you define your font weights. We've provided a list of 266 | | common font weight names with their respective numeric scale values 267 | | to get you started. It's unlikely that your project will require 268 | | all of these, so we recommend removing those you don't need. 269 | | 270 | | Class name: .font-{weight} 271 | | 272 | */ 273 | 274 | fontWeights: { 275 | hairline: 100, 276 | thin: 200, 277 | light: 300, 278 | normal: 400, 279 | medium: 500, 280 | semibold: 600, 281 | bold: 700, 282 | extrabold: 800, 283 | black: 900 284 | }, 285 | 286 | /* 287 | |----------------------------------------------------------------------------- 288 | | Leading (line height) https://tailwindcss.com/docs/line-height 289 | |----------------------------------------------------------------------------- 290 | | 291 | | Here is where you define your line height values, or as we call 292 | | them in Tailwind, leadings. 293 | | 294 | | Class name: .leading-{size} 295 | | 296 | */ 297 | 298 | leading: { 299 | none: 1, 300 | tight: 1.25, 301 | normal: 1.5, 302 | loose: 2 303 | }, 304 | 305 | /* 306 | |----------------------------------------------------------------------------- 307 | | Tracking (letter spacing) https://tailwindcss.com/docs/letter-spacing 308 | |----------------------------------------------------------------------------- 309 | | 310 | | Here is where you define your letter spacing values, or as we call 311 | | them in Tailwind, tracking. 312 | | 313 | | Class name: .tracking-{size} 314 | | 315 | */ 316 | 317 | tracking: { 318 | tight: "-0.05em", 319 | normal: "0", 320 | wide: "0.05em" 321 | }, 322 | 323 | /* 324 | |----------------------------------------------------------------------------- 325 | | Text colors https://tailwindcss.com/docs/text-color 326 | |----------------------------------------------------------------------------- 327 | | 328 | | Here is where you define your text colors. By default these use the 329 | | color palette we defined above, however you're welcome to set these 330 | | independently if that makes sense for your project. 331 | | 332 | | Class name: .text-{color} 333 | | 334 | */ 335 | 336 | textColors: colors, 337 | 338 | /* 339 | |----------------------------------------------------------------------------- 340 | | Background colors https://tailwindcss.com/docs/background-color 341 | |----------------------------------------------------------------------------- 342 | | 343 | | Here is where you define your background colors. By default these use 344 | | the color palette we defined above, however you're welcome to set 345 | | these independently if that makes sense for your project. 346 | | 347 | | Class name: .bg-{color} 348 | | 349 | */ 350 | 351 | backgroundColors: colors, 352 | 353 | /* 354 | |----------------------------------------------------------------------------- 355 | | Background sizes https://tailwindcss.com/docs/background-size 356 | |----------------------------------------------------------------------------- 357 | | 358 | | Here is where you define your background sizes. We provide some common 359 | | values that are useful in most projects, but feel free to add other sizes 360 | | that are specific to your project here as well. 361 | | 362 | | Class name: .bg-{size} 363 | | 364 | */ 365 | 366 | backgroundSize: { 367 | auto: "auto", 368 | cover: "cover", 369 | contain: "contain" 370 | }, 371 | 372 | /* 373 | |----------------------------------------------------------------------------- 374 | | Border widths https://tailwindcss.com/docs/border-width 375 | |----------------------------------------------------------------------------- 376 | | 377 | | Here is where you define your border widths. Take note that border 378 | | widths require a special "default" value set as well. This is the 379 | | width that will be used when you do not specify a border width. 380 | | 381 | | Class name: .border{-side?}{-width?} 382 | | 383 | */ 384 | 385 | borderWidths: { 386 | default: "1px", 387 | "0": "0", 388 | "0.5": "0.5px", 389 | "2": "2px", 390 | "4": "4px", 391 | "8": "8px" 392 | }, 393 | 394 | /* 395 | |----------------------------------------------------------------------------- 396 | | Border colors https://tailwindcss.com/docs/border-color 397 | |----------------------------------------------------------------------------- 398 | | 399 | | Here is where you define your border colors. By default these use the 400 | | color palette we defined above, however you're welcome to set these 401 | | independently if that makes sense for your project. 402 | | 403 | | Take note that border colors require a special "default" value set 404 | | as well. This is the color that will be used when you do not 405 | | specify a border color. 406 | | 407 | | Class name: .border-{color} 408 | | 409 | */ 410 | 411 | borderColors: global.Object.assign({ default: colors["grey-light"] }, colors), 412 | 413 | /* 414 | |----------------------------------------------------------------------------- 415 | | Border radius https://tailwindcss.com/docs/border-radius 416 | |----------------------------------------------------------------------------- 417 | | 418 | | Here is where you define your border radius values. If a `default` radius 419 | | is provided, it will be made available as the non-suffixed `.rounded` 420 | | utility. 421 | | 422 | | If your scale includes a `0` value to reset already rounded corners, it's 423 | | a good idea to put it first so other values are able to override it. 424 | | 425 | | Class name: .rounded{-side?}{-size?} 426 | | 427 | */ 428 | 429 | borderRadius: { 430 | none: "0", 431 | sm: ".125rem", 432 | default: ".25rem", 433 | lg: ".5rem", 434 | full: "9999px" 435 | }, 436 | 437 | /* 438 | |----------------------------------------------------------------------------- 439 | | Width https://tailwindcss.com/docs/width 440 | |----------------------------------------------------------------------------- 441 | | 442 | | Here is where you define your width utility sizes. These can be 443 | | percentage based, pixels, rems, or any other units. By default 444 | | we provide a sensible rem based numeric scale, a percentage 445 | | based fraction scale, plus some other common use-cases. You 446 | | can, of course, modify these values as needed. 447 | | 448 | | 449 | | It's also worth mentioning that Tailwind automatically escapes 450 | | invalid CSS class name characters, which allows you to have 451 | | awesome classes like .w-2/3. 452 | | 453 | | Class name: .w-{size} 454 | | 455 | */ 456 | 457 | width: { 458 | auto: "auto", 459 | px: "1px", 460 | "1": "0.25rem", 461 | "2": "0.5rem", 462 | "3": "0.75rem", 463 | "4": "1rem", 464 | "6": "1.5rem", 465 | "8": "2rem", 466 | "10": "2.5rem", 467 | "12": "3rem", 468 | "16": "4rem", 469 | "24": "6rem", 470 | "32": "8rem", 471 | "48": "12rem", 472 | "64": "16rem", 473 | "1/2": "50%", 474 | "1/3": "33.33333%", 475 | "2/3": "66.66667%", 476 | "1/4": "25%", 477 | "3/4": "75%", 478 | "1/5": "20%", 479 | "2/5": "40%", 480 | "3/5": "60%", 481 | "4/5": "80%", 482 | "1/6": "16.66667%", 483 | "1/8": "10%", 484 | '7/8': '90%', 485 | "4/6": "66.66663%", 486 | "5/6": "83.33333%", 487 | full: "100%", 488 | screen: "100vw" 489 | }, 490 | 491 | /* 492 | |----------------------------------------------------------------------------- 493 | | Height https://tailwindcss.com/docs/height 494 | |----------------------------------------------------------------------------- 495 | | 496 | | Here is where you define your height utility sizes. These can be 497 | | percentage based, pixels, rems, or any other units. By default 498 | | we provide a sensible rem based numeric scale plus some other 499 | | common use-cases. You can, of course, modify these values as 500 | | needed. 501 | | 502 | | Class name: .h-{size} 503 | | 504 | */ 505 | 506 | height: { 507 | auto: "auto", 508 | px: "1px", 509 | "1": "0.25rem", 510 | "2": "0.5rem", 511 | "3": "0.75rem", 512 | "4": "1rem", 513 | "6": "1.5rem", 514 | "8": "2rem", 515 | "10": "2.5rem", 516 | "12": "3rem", 517 | "16": "4rem", 518 | "18": "5rem", 519 | "24": "6rem", 520 | "32": "8rem", 521 | "48": "12rem", 522 | "64": "16rem", 523 | full: "100%", 524 | screen: "100vh" 525 | }, 526 | 527 | /* 528 | |----------------------------------------------------------------------------- 529 | | Minimum width https://tailwindcss.com/docs/min-width 530 | |----------------------------------------------------------------------------- 531 | | 532 | | Here is where you define your minimum width utility sizes. These can 533 | | be percentage based, pixels, rems, or any other units. We provide a 534 | | couple common use-cases by default. You can, of course, modify 535 | | these values as needed. 536 | | 537 | | Class name: .min-w-{size} 538 | | 539 | */ 540 | 541 | minWidth: { 542 | xs: "20rem", 543 | sm: "30rem", 544 | md: "40rem", 545 | lg: "50rem", 546 | xl: "60rem", 547 | "2xl": "70rem", 548 | "3xl": "80rem", 549 | "4xl": "90rem", 550 | "5xl": "100rem", 551 | full: "100%" 552 | }, 553 | 554 | /* 555 | |----------------------------------------------------------------------------- 556 | | Minimum height https://tailwindcss.com/docs/min-height 557 | |----------------------------------------------------------------------------- 558 | | 559 | | Here is where you define your minimum height utility sizes. These can 560 | | be percentage based, pixels, rems, or any other units. We provide a 561 | | few common use-cases by default. You can, of course, modify these 562 | | values as needed. 563 | | 564 | | Class name: .min-h-{size} 565 | | 566 | */ 567 | 568 | minHeight: { 569 | xs: "20rem", 570 | sm: "30rem", 571 | md: "40rem", 572 | lg: "50rem", 573 | xl: "60rem", 574 | "2xl": "70rem", 575 | "3xl": "80rem", 576 | "4xl": "90rem", 577 | "5xl": "100rem", 578 | full: "100%", 579 | screen: "100vh" 580 | }, 581 | 582 | /* 583 | |----------------------------------------------------------------------------- 584 | | Maximum width https://tailwindcss.com/docs/max-width 585 | |----------------------------------------------------------------------------- 586 | | 587 | | Here is where you define your maximum width utility sizes. These can 588 | | be percentage based, pixels, rems, or any other units. By default 589 | | we provide a sensible rem based scale and a "full width" size, 590 | | which is basically a reset utility. You can, of course, 591 | | modify these values as needed. 592 | | 593 | | Class name: .max-w-{size} 594 | | 595 | */ 596 | 597 | maxWidth: { 598 | xs: "20rem", 599 | sm: "30rem", 600 | md: "40rem", 601 | lg: "50rem", 602 | xl: "60rem", 603 | "2xl": "70rem", 604 | "3xl": "80rem", 605 | "4xl": "90rem", 606 | "5xl": "100rem", 607 | full: "100%" 608 | }, 609 | 610 | /* 611 | |----------------------------------------------------------------------------- 612 | | Maximum height https://tailwindcss.com/docs/max-height 613 | |----------------------------------------------------------------------------- 614 | | 615 | | Here is where you define your maximum height utility sizes. These can 616 | | be percentage based, pixels, rems, or any other units. We provide a 617 | | couple common use-cases by default. You can, of course, modify 618 | | these values as needed. 619 | | 620 | | Class name: .max-h-{size} 621 | | 622 | */ 623 | 624 | maxHeight: { 625 | full: "100%", 626 | screen: "100vh" 627 | }, 628 | 629 | /* 630 | |----------------------------------------------------------------------------- 631 | | Padding https://tailwindcss.com/docs/padding 632 | |----------------------------------------------------------------------------- 633 | | 634 | | Here is where you define your padding utility sizes. These can be 635 | | percentage based, pixels, rems, or any other units. By default we 636 | | provide a sensible rem based numeric scale plus a couple other 637 | | common use-cases like "1px". You can, of course, modify these 638 | | values as needed. 639 | | 640 | | Class name: .p{side?}-{size} 641 | | 642 | */ 643 | 644 | padding: { 645 | px: "1px", 646 | "0": "0", 647 | "1": "0.25rem", 648 | "2": "0.5rem", 649 | "3": "0.75rem", 650 | "4": "1rem", 651 | "6": "1.5rem", 652 | "8": "2rem", 653 | "9": "2.5rem", 654 | "10": "3rem", 655 | "12": "4rem", 656 | "14": "6rem" 657 | }, 658 | 659 | /* 660 | |----------------------------------------------------------------------------- 661 | | Margin https://tailwindcss.com/docs/margin 662 | |----------------------------------------------------------------------------- 663 | | 664 | | Here is where you define your margin utility sizes. These can be 665 | | percentage based, pixels, rems, or any other units. By default we 666 | | provide a sensible rem based numeric scale plus a couple other 667 | | common use-cases like "1px". You can, of course, modify these 668 | | values as needed. 669 | | 670 | | Class name: .m{side?}-{size} 671 | | 672 | */ 673 | 674 | margin: { 675 | auto: "auto", 676 | px: "1px", 677 | "0": "0", 678 | "1": "0.25rem", 679 | "2": "0.5rem", 680 | "3": "0.75rem", 681 | "4": "1rem", 682 | "6": "1.5rem", 683 | "8": "2rem", 684 | "10": "2.5rem", 685 | "11": "3rem", 686 | "12": "4rem", 687 | }, 688 | 689 | /* 690 | |----------------------------------------------------------------------------- 691 | | Negative margin https://tailwindcss.com/docs/negative-margin 692 | |----------------------------------------------------------------------------- 693 | | 694 | | Here is where you define your negative margin utility sizes. These can 695 | | be percentage based, pixels, rems, or any other units. By default we 696 | | provide matching values to the padding scale since these utilities 697 | | generally get used together. You can, of course, modify these 698 | | values as needed. 699 | | 700 | | Class name: .-m{side?}-{size} 701 | | 702 | */ 703 | 704 | negativeMargin: { 705 | px: "1px", 706 | "0": "0", 707 | "1": "0.25rem", 708 | "2": "0.5rem", 709 | "3": "0.75rem", 710 | "4": "1rem", 711 | "6": "1.5rem", 712 | "8": "2rem", 713 | "10": '2.5rem', 714 | "11": '3rem', 715 | "12": '4rem', 716 | "13": '5rem', 717 | "14": '6rem', 718 | }, 719 | 720 | /* 721 | |----------------------------------------------------------------------------- 722 | | Shadows https://tailwindcss.com/docs/shadows 723 | |----------------------------------------------------------------------------- 724 | | 725 | | Here is where you define your shadow utilities. As you can see from 726 | | the defaults we provide, it's possible to apply multiple shadows 727 | | per utility using comma separation. 728 | | 729 | | If a `default` shadow is provided, it will be made available as the non- 730 | | suffixed `.shadow` utility. 731 | | 732 | | Class name: .shadow-{size?} 733 | | 734 | */ 735 | 736 | shadows: { 737 | default: "0 2px 4px 0 rgba(0,0,0,0.10)", 738 | md: "0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)", 739 | lg: "0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)", 740 | inner: "inset 0 2px 4px 0 rgba(0,0,0,0.06)", 741 | none: "none" 742 | }, 743 | 744 | /* 745 | |----------------------------------------------------------------------------- 746 | | Z-index https://tailwindcss.com/docs/z-index 747 | |----------------------------------------------------------------------------- 748 | | 749 | | Here is where you define your z-index utility values. By default we 750 | | provide a sensible numeric scale. You can, of course, modify these 751 | | values as needed. 752 | | 753 | | Class name: .z-{index} 754 | | 755 | */ 756 | 757 | zIndex: { 758 | auto: "auto", 759 | "0": 0, 760 | "10": 10, 761 | "20": 20, 762 | "30": 30, 763 | "40": 40, 764 | "50": 50 765 | }, 766 | 767 | /* 768 | |----------------------------------------------------------------------------- 769 | | Opacity https://tailwindcss.com/docs/opacity 770 | |----------------------------------------------------------------------------- 771 | | 772 | | Here is where you define your opacity utility values. By default we 773 | | provide a sensible numeric scale. You can, of course, modify these 774 | | values as needed. 775 | | 776 | | Class name: .opacity-{name} 777 | | 778 | */ 779 | 780 | opacity: { 781 | "0": "0", 782 | "25": ".25", 783 | "50": ".5", 784 | "75": ".75", 785 | "100": "1" 786 | }, 787 | 788 | /* 789 | |----------------------------------------------------------------------------- 790 | | SVG fill https://tailwindcss.com/docs/svg 791 | |----------------------------------------------------------------------------- 792 | | 793 | | Here is where you define your SVG fill colors. By default we just provide 794 | | `fill-current` which sets the fill to the current text color. This lets you 795 | | specify a fill color using existing text color utilities and helps keep the 796 | | generated CSS file size down. 797 | | 798 | | Class name: .fill-{name} 799 | | 800 | */ 801 | 802 | svgFill: { 803 | current: "currentColor" 804 | }, 805 | 806 | /* 807 | |----------------------------------------------------------------------------- 808 | | SVG stroke https://tailwindcss.com/docs/svg 809 | |----------------------------------------------------------------------------- 810 | | 811 | | Here is where you define your SVG stroke colors. By default we just provide 812 | | `stroke-current` which sets the stroke to the current text color. This lets 813 | | you specify a stroke color using existing text color utilities and helps 814 | | keep the generated CSS file size down. 815 | | 816 | | Class name: .stroke-{name} 817 | | 818 | */ 819 | 820 | svgStroke: { 821 | current: "currentColor" 822 | }, 823 | 824 | /* 825 | |----------------------------------------------------------------------------- 826 | | Modules https://tailwindcss.com/docs/configuration#modules 827 | |----------------------------------------------------------------------------- 828 | | 829 | | Here is where you control which modules are generated and what variants are 830 | | generated for each of those modules. 831 | | 832 | | Currently supported variants: 833 | | - responsive 834 | | - hover 835 | | - focus 836 | | - active 837 | | - group-hover 838 | | 839 | | To disable a module completely, use `false` instead of an array. 840 | | 841 | */ 842 | 843 | modules: { 844 | appearance: ["responsive"], 845 | backgroundAttachment: ["responsive"], 846 | backgroundColors: ["responsive", "hover"], 847 | backgroundPosition: ["responsive"], 848 | backgroundRepeat: ["responsive"], 849 | backgroundSize: ["responsive"], 850 | borderColors: ["responsive", "hover"], 851 | borderRadius: ["responsive"], 852 | borderStyle: ["responsive"], 853 | borderWidths: ["responsive"], 854 | cursor: ["responsive"], 855 | display: ["responsive"], 856 | flexbox: ["responsive"], 857 | float: ["responsive"], 858 | fonts: ["responsive"], 859 | fontWeights: ["responsive", "hover"], 860 | height: ["responsive"], 861 | leading: ["responsive"], 862 | lists: ["responsive"], 863 | margin: ["responsive"], 864 | maxHeight: ["responsive"], 865 | maxWidth: ["responsive"], 866 | minHeight: ["responsive"], 867 | minWidth: ["responsive"], 868 | negativeMargin: ["responsive"], 869 | opacity: ["responsive"], 870 | overflow: ["responsive"], 871 | padding: ["responsive"], 872 | pointerEvents: ["responsive"], 873 | position: ["responsive"], 874 | resize: ["responsive"], 875 | shadows: ["responsive"], 876 | svgFill: [], 877 | svgStroke: [], 878 | textAlign: ["responsive"], 879 | textColors: ["responsive", "hover"], 880 | textSizes: ["responsive"], 881 | textStyle: ["responsive", "hover"], 882 | tracking: ["responsive"], 883 | userSelect: ["responsive"], 884 | verticalAlign: ["responsive"], 885 | visibility: ["responsive"], 886 | whitespace: ["responsive"], 887 | width: ["responsive"], 888 | zIndex: ["responsive"] 889 | }, 890 | 891 | /* 892 | |----------------------------------------------------------------------------- 893 | | Plugins https://tailwindcss.com/docs/plugins 894 | |----------------------------------------------------------------------------- 895 | | 896 | | Here is where you can register any plugins you'd like to use in your 897 | | project. Tailwind's built-in `container` plugin is enabled by default to 898 | | give you a Bootstrap-style responsive container component out of the box. 899 | | 900 | | Be sure to view the complete plugin documentation to learn more about how 901 | | the plugin system works. 902 | | 903 | */ 904 | 905 | plugins: [ 906 | require("tailwindcss/plugins/container")({ 907 | // center: true, 908 | // padding: '1rem', 909 | }) 910 | ], 911 | 912 | /* 913 | |----------------------------------------------------------------------------- 914 | | Advanced Options https://tailwindcss.com/docs/configuration#options 915 | |----------------------------------------------------------------------------- 916 | | 917 | | Here is where you can tweak advanced configuration options. We recommend 918 | | leaving these options alone unless you absolutely need to change them. 919 | | 920 | */ 921 | 922 | options: { 923 | prefix: "", 924 | important: false, 925 | separator: ":" 926 | } 927 | }; 928 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | 9 | acorn-dynamic-import@^2.0.0: 10 | version "2.0.2" 11 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 12 | dependencies: 13 | acorn "^4.0.3" 14 | 15 | acorn@^4.0.3: 16 | version "4.0.13" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 18 | 19 | acorn@^5.0.0: 20 | version "5.2.1" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.2.1.tgz#317ac7821826c22c702d66189ab8359675f135d7" 22 | 23 | ajv-keywords@^2.0.0: 24 | version "2.1.1" 25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 26 | 27 | ajv@^4.9.1: 28 | version "4.11.8" 29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 30 | dependencies: 31 | co "^4.6.0" 32 | json-stable-stringify "^1.0.1" 33 | 34 | ajv@^5.0.0, ajv@^5.1.5: 35 | version "5.3.0" 36 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.3.0.tgz#4414ff74a50879c208ee5fdc826e32c303549eda" 37 | dependencies: 38 | co "^4.6.0" 39 | fast-deep-equal "^1.0.0" 40 | fast-json-stable-stringify "^2.0.0" 41 | json-schema-traverse "^0.3.0" 42 | 43 | align-text@^0.1.1, align-text@^0.1.3: 44 | version "0.1.4" 45 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 46 | dependencies: 47 | kind-of "^3.0.2" 48 | longest "^1.0.1" 49 | repeat-string "^1.5.2" 50 | 51 | alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: 52 | version "1.0.2" 53 | resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" 54 | 55 | ansi-regex@^2.0.0: 56 | version "2.1.1" 57 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 58 | 59 | ansi-regex@^3.0.0: 60 | version "3.0.0" 61 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 62 | 63 | ansi-styles@^2.2.1: 64 | version "2.2.1" 65 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 66 | 67 | ansi-styles@^3.1.0: 68 | version "3.2.0" 69 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 70 | dependencies: 71 | color-convert "^1.9.0" 72 | 73 | ansi-styles@^3.2.1: 74 | version "3.2.1" 75 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 76 | dependencies: 77 | color-convert "^1.9.0" 78 | 79 | anymatch@^1.3.0: 80 | version "1.3.2" 81 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 82 | dependencies: 83 | micromatch "^2.1.5" 84 | normalize-path "^2.0.0" 85 | 86 | aproba@^1.0.3: 87 | version "1.2.0" 88 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 89 | 90 | are-we-there-yet@~1.1.2: 91 | version "1.1.4" 92 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 93 | dependencies: 94 | delegates "^1.0.0" 95 | readable-stream "^2.0.6" 96 | 97 | argparse@^1.0.7: 98 | version "1.0.9" 99 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 100 | dependencies: 101 | sprintf-js "~1.0.2" 102 | 103 | arr-diff@^2.0.0: 104 | version "2.0.0" 105 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 106 | dependencies: 107 | arr-flatten "^1.0.1" 108 | 109 | arr-flatten@^1.0.1: 110 | version "1.1.0" 111 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 112 | 113 | array-unique@^0.2.1: 114 | version "0.2.1" 115 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 116 | 117 | asn1.js@^4.0.0: 118 | version "4.9.2" 119 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.2.tgz#8117ef4f7ed87cd8f89044b5bff97ac243a16c9a" 120 | dependencies: 121 | bn.js "^4.0.0" 122 | inherits "^2.0.1" 123 | minimalistic-assert "^1.0.0" 124 | 125 | asn1@~0.2.3: 126 | version "0.2.3" 127 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 128 | 129 | assert-plus@1.0.0, assert-plus@^1.0.0: 130 | version "1.0.0" 131 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 132 | 133 | assert-plus@^0.2.0: 134 | version "0.2.0" 135 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 136 | 137 | assert@^1.1.1: 138 | version "1.4.1" 139 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 140 | dependencies: 141 | util "0.10.3" 142 | 143 | async-each@^1.0.0: 144 | version "1.0.1" 145 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 146 | 147 | async@^2.1.2, async@^2.4.1: 148 | version "2.5.0" 149 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 150 | dependencies: 151 | lodash "^4.14.0" 152 | 153 | asynckit@^0.4.0: 154 | version "0.4.0" 155 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 156 | 157 | autoprefixer@^6.3.1: 158 | version "6.7.7" 159 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" 160 | dependencies: 161 | browserslist "^1.7.6" 162 | caniuse-db "^1.0.30000634" 163 | normalize-range "^0.1.2" 164 | num2fraction "^1.2.2" 165 | postcss "^5.2.16" 166 | postcss-value-parser "^3.2.3" 167 | 168 | autoprefixer@^9.4.5: 169 | version "9.4.7" 170 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.4.7.tgz#f997994f9a810eae47b38fa6d8a119772051c4ff" 171 | integrity sha512-qS5wW6aXHkm53Y4z73tFGsUhmZu4aMPV9iHXYlF0c/wxjknXNHuj/1cIQb+6YH692DbJGGWcckAXX+VxKvahMA== 172 | dependencies: 173 | browserslist "^4.4.1" 174 | caniuse-lite "^1.0.30000932" 175 | normalize-range "^0.1.2" 176 | num2fraction "^1.2.2" 177 | postcss "^7.0.14" 178 | postcss-value-parser "^3.3.1" 179 | 180 | aws-sign2@~0.6.0: 181 | version "0.6.0" 182 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 183 | 184 | aws4@^1.2.1: 185 | version "1.6.0" 186 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 187 | 188 | babel-code-frame@^6.11.0: 189 | version "6.26.0" 190 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 191 | dependencies: 192 | chalk "^1.1.3" 193 | esutils "^2.0.2" 194 | js-tokens "^3.0.2" 195 | 196 | babel-extract-comments@^1.0.0: 197 | version "1.0.0" 198 | resolved "https://registry.yarnpkg.com/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz#0a2aedf81417ed391b85e18b4614e693a0351a21" 199 | integrity sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ== 200 | dependencies: 201 | babylon "^6.18.0" 202 | 203 | babel-plugin-syntax-object-rest-spread@^6.8.0: 204 | version "6.13.0" 205 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 206 | integrity sha1-/WU28rzhODb/o6VFjEkDpZe7O/U= 207 | 208 | babel-plugin-transform-object-rest-spread@^6.26.0: 209 | version "6.26.0" 210 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 211 | integrity sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY= 212 | dependencies: 213 | babel-plugin-syntax-object-rest-spread "^6.8.0" 214 | babel-runtime "^6.26.0" 215 | 216 | babel-runtime@^6.26.0: 217 | version "6.26.0" 218 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 219 | integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= 220 | dependencies: 221 | core-js "^2.4.0" 222 | regenerator-runtime "^0.11.0" 223 | 224 | babylon@^6.18.0: 225 | version "6.18.0" 226 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 227 | integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== 228 | 229 | balanced-match@^0.4.2: 230 | version "0.4.2" 231 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 232 | 233 | balanced-match@^1.0.0: 234 | version "1.0.0" 235 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 236 | 237 | base64-js@^1.0.2: 238 | version "1.2.1" 239 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 240 | 241 | bcrypt-pbkdf@^1.0.0: 242 | version "1.0.1" 243 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 244 | dependencies: 245 | tweetnacl "^0.14.3" 246 | 247 | big.js@^3.1.3: 248 | version "3.2.0" 249 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" 250 | 251 | binary-extensions@^1.0.0: 252 | version "1.10.0" 253 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 254 | 255 | block-stream@*: 256 | version "0.0.9" 257 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 258 | dependencies: 259 | inherits "~2.0.0" 260 | 261 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 262 | version "4.11.8" 263 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 264 | 265 | boom@2.x.x: 266 | version "2.10.1" 267 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 268 | dependencies: 269 | hoek "2.x.x" 270 | 271 | brace-expansion@^1.1.7: 272 | version "1.1.8" 273 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 274 | dependencies: 275 | balanced-match "^1.0.0" 276 | concat-map "0.0.1" 277 | 278 | braces@^1.8.2: 279 | version "1.8.5" 280 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 281 | dependencies: 282 | expand-range "^1.8.1" 283 | preserve "^0.2.0" 284 | repeat-element "^1.1.2" 285 | 286 | brorand@^1.0.1: 287 | version "1.1.0" 288 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 289 | 290 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 291 | version "1.1.1" 292 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.1.tgz#38b7ab55edb806ff2dcda1a7f1620773a477c49f" 293 | dependencies: 294 | buffer-xor "^1.0.3" 295 | cipher-base "^1.0.0" 296 | create-hash "^1.1.0" 297 | evp_bytestokey "^1.0.3" 298 | inherits "^2.0.1" 299 | safe-buffer "^5.0.1" 300 | 301 | browserify-cipher@^1.0.0: 302 | version "1.0.0" 303 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 304 | dependencies: 305 | browserify-aes "^1.0.4" 306 | browserify-des "^1.0.0" 307 | evp_bytestokey "^1.0.0" 308 | 309 | browserify-des@^1.0.0: 310 | version "1.0.0" 311 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 312 | dependencies: 313 | cipher-base "^1.0.1" 314 | des.js "^1.0.0" 315 | inherits "^2.0.1" 316 | 317 | browserify-rsa@^4.0.0: 318 | version "4.0.1" 319 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 320 | dependencies: 321 | bn.js "^4.1.0" 322 | randombytes "^2.0.1" 323 | 324 | browserify-sign@^4.0.0: 325 | version "4.0.4" 326 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 327 | dependencies: 328 | bn.js "^4.1.1" 329 | browserify-rsa "^4.0.0" 330 | create-hash "^1.1.0" 331 | create-hmac "^1.1.2" 332 | elliptic "^6.0.0" 333 | inherits "^2.0.1" 334 | parse-asn1 "^5.0.0" 335 | 336 | browserify-zlib@^0.1.4: 337 | version "0.1.4" 338 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 339 | dependencies: 340 | pako "~0.2.0" 341 | 342 | browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6: 343 | version "1.7.7" 344 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" 345 | dependencies: 346 | caniuse-db "^1.0.30000639" 347 | electron-to-chromium "^1.2.7" 348 | 349 | browserslist@^4.4.1: 350 | version "4.4.1" 351 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.4.1.tgz#42e828954b6b29a7a53e352277be429478a69062" 352 | integrity sha512-pEBxEXg7JwaakBXjATYw/D1YZh4QUSCX/Mnd/wnqSRPPSi1U39iDhDoKGoBUcraKdxDlrYqJxSI5nNvD+dWP2A== 353 | dependencies: 354 | caniuse-lite "^1.0.30000929" 355 | electron-to-chromium "^1.3.103" 356 | node-releases "^1.1.3" 357 | 358 | buffer-xor@^1.0.3: 359 | version "1.0.3" 360 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 361 | 362 | buffer@^4.3.0: 363 | version "4.9.1" 364 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 365 | dependencies: 366 | base64-js "^1.0.2" 367 | ieee754 "^1.1.4" 368 | isarray "^1.0.0" 369 | 370 | builtin-modules@^1.0.0: 371 | version "1.1.1" 372 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 373 | 374 | builtin-status-codes@^3.0.0: 375 | version "3.0.0" 376 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 377 | 378 | bytes@^3.0.0: 379 | version "3.1.0" 380 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" 381 | integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== 382 | 383 | camelcase-css@^2.0.0: 384 | version "2.0.1" 385 | resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" 386 | integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== 387 | 388 | camelcase@^1.0.2: 389 | version "1.2.1" 390 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 391 | 392 | camelcase@^4.1.0: 393 | version "4.1.0" 394 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 395 | 396 | caniuse-api@^1.5.2: 397 | version "1.6.1" 398 | resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c" 399 | dependencies: 400 | browserslist "^1.3.6" 401 | caniuse-db "^1.0.30000529" 402 | lodash.memoize "^4.1.2" 403 | lodash.uniq "^4.5.0" 404 | 405 | caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: 406 | version "1.0.30000758" 407 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000758.tgz#a235627b1922e878b63164942c991b84de92c810" 408 | 409 | caniuse-lite@^1.0.30000929, caniuse-lite@^1.0.30000932: 410 | version "1.0.30000934" 411 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000934.tgz#4f2d749f51e9e2d4e9b182f8f121d26ec4208e8d" 412 | integrity sha512-o7yfZn0R9N+mWAuksDsdLsb1gu9o//XK0QSU0zSSReKNRsXsFc/n/psxi0YSPNiqlKxImp5h4DHnAPdwYJ8nNA== 413 | 414 | caseless@~0.12.0: 415 | version "0.12.0" 416 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 417 | 418 | center-align@^0.1.1: 419 | version "0.1.3" 420 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 421 | dependencies: 422 | align-text "^0.1.3" 423 | lazy-cache "^1.0.3" 424 | 425 | chalk@^1.1.3: 426 | version "1.1.3" 427 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 428 | dependencies: 429 | ansi-styles "^2.2.1" 430 | escape-string-regexp "^1.0.2" 431 | has-ansi "^2.0.0" 432 | strip-ansi "^3.0.0" 433 | supports-color "^2.0.0" 434 | 435 | chalk@^2.3.0: 436 | version "2.3.0" 437 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 438 | dependencies: 439 | ansi-styles "^3.1.0" 440 | escape-string-regexp "^1.0.5" 441 | supports-color "^4.0.0" 442 | 443 | chalk@^2.4.1, chalk@^2.4.2: 444 | version "2.4.2" 445 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 446 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 447 | dependencies: 448 | ansi-styles "^3.2.1" 449 | escape-string-regexp "^1.0.5" 450 | supports-color "^5.3.0" 451 | 452 | chokidar@^1.7.0: 453 | version "1.7.0" 454 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 455 | dependencies: 456 | anymatch "^1.3.0" 457 | async-each "^1.0.0" 458 | glob-parent "^2.0.0" 459 | inherits "^2.0.1" 460 | is-binary-path "^1.0.0" 461 | is-glob "^2.0.0" 462 | path-is-absolute "^1.0.0" 463 | readdirp "^2.0.0" 464 | optionalDependencies: 465 | fsevents "^1.0.0" 466 | 467 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 468 | version "1.0.4" 469 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 470 | dependencies: 471 | inherits "^2.0.1" 472 | safe-buffer "^5.0.1" 473 | 474 | clap@^1.0.9: 475 | version "1.2.3" 476 | resolved "https://registry.yarnpkg.com/clap/-/clap-1.2.3.tgz#4f36745b32008492557f46412d66d50cb99bce51" 477 | dependencies: 478 | chalk "^1.1.3" 479 | 480 | cliui@^2.1.0: 481 | version "2.1.0" 482 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 483 | dependencies: 484 | center-align "^0.1.1" 485 | right-align "^0.1.1" 486 | wordwrap "0.0.2" 487 | 488 | cliui@^3.2.0: 489 | version "3.2.0" 490 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 491 | dependencies: 492 | string-width "^1.0.1" 493 | strip-ansi "^3.0.1" 494 | wrap-ansi "^2.0.0" 495 | 496 | clone@^1.0.2: 497 | version "1.0.2" 498 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 499 | 500 | co@^4.6.0: 501 | version "4.6.0" 502 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 503 | 504 | coa@~1.0.1: 505 | version "1.0.4" 506 | resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd" 507 | dependencies: 508 | q "^1.1.2" 509 | 510 | code-point-at@^1.0.0: 511 | version "1.1.0" 512 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 513 | 514 | color-convert@^1.3.0, color-convert@^1.9.0: 515 | version "1.9.0" 516 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 517 | dependencies: 518 | color-name "^1.1.1" 519 | 520 | color-name@^1.0.0, color-name@^1.1.1: 521 | version "1.1.3" 522 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 523 | 524 | color-string@^0.3.0: 525 | version "0.3.0" 526 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" 527 | dependencies: 528 | color-name "^1.0.0" 529 | 530 | color@^0.11.0: 531 | version "0.11.4" 532 | resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" 533 | dependencies: 534 | clone "^1.0.2" 535 | color-convert "^1.3.0" 536 | color-string "^0.3.0" 537 | 538 | colormin@^1.0.5: 539 | version "1.1.2" 540 | resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" 541 | dependencies: 542 | color "^0.11.0" 543 | css-color-names "0.0.4" 544 | has "^1.0.1" 545 | 546 | colors@~1.1.2: 547 | version "1.1.2" 548 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 549 | 550 | combined-stream@^1.0.5, combined-stream@~1.0.5: 551 | version "1.0.5" 552 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 553 | dependencies: 554 | delayed-stream "~1.0.0" 555 | 556 | comment-regex@^1.0.0: 557 | version "1.0.1" 558 | resolved "https://registry.yarnpkg.com/comment-regex/-/comment-regex-1.0.1.tgz#e070d2c4db33231955d0979d27c918fcb6f93565" 559 | 560 | concat-map@0.0.1: 561 | version "0.0.1" 562 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 563 | 564 | console-browserify@^1.1.0: 565 | version "1.1.0" 566 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 567 | dependencies: 568 | date-now "^0.1.4" 569 | 570 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 571 | version "1.1.0" 572 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 573 | 574 | constants-browserify@^1.0.0: 575 | version "1.0.0" 576 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 577 | 578 | core-js@^2.4.0: 579 | version "2.6.3" 580 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.3.tgz#4b70938bdffdaf64931e66e2db158f0892289c49" 581 | integrity sha512-l00tmFFZOBHtYhN4Cz7k32VM7vTn3rE2ANjQDxdEN6zmXZ/xq1jQuutnmHvMG1ZJ7xd72+TA5YpUK8wz3rWsfQ== 582 | 583 | core-util-is@1.0.2, core-util-is@~1.0.0: 584 | version "1.0.2" 585 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 586 | 587 | cosmiconfig@^2.1.0, cosmiconfig@^2.1.1: 588 | version "2.2.2" 589 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.2.2.tgz#6173cebd56fac042c1f4390edf7af6c07c7cb892" 590 | dependencies: 591 | is-directory "^0.3.1" 592 | js-yaml "^3.4.3" 593 | minimist "^1.2.0" 594 | object-assign "^4.1.0" 595 | os-homedir "^1.0.1" 596 | parse-json "^2.2.0" 597 | require-from-string "^1.1.0" 598 | 599 | create-ecdh@^4.0.0: 600 | version "4.0.0" 601 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 602 | dependencies: 603 | bn.js "^4.1.0" 604 | elliptic "^6.0.0" 605 | 606 | create-hash@^1.1.0, create-hash@^1.1.2: 607 | version "1.1.3" 608 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" 609 | dependencies: 610 | cipher-base "^1.0.1" 611 | inherits "^2.0.1" 612 | ripemd160 "^2.0.0" 613 | sha.js "^2.4.0" 614 | 615 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 616 | version "1.1.6" 617 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" 618 | dependencies: 619 | cipher-base "^1.0.3" 620 | create-hash "^1.1.0" 621 | inherits "^2.0.1" 622 | ripemd160 "^2.0.0" 623 | safe-buffer "^5.0.1" 624 | sha.js "^2.4.8" 625 | 626 | cross-env@^5.1: 627 | version "5.1.1" 628 | resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-5.1.1.tgz#b6d8ab97f304c0f71dae7277b75fe424c08dfa74" 629 | dependencies: 630 | cross-spawn "^5.1.0" 631 | is-windows "^1.0.0" 632 | 633 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 634 | version "5.1.0" 635 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 636 | dependencies: 637 | lru-cache "^4.0.1" 638 | shebang-command "^1.2.0" 639 | which "^1.2.9" 640 | 641 | cryptiles@2.x.x: 642 | version "2.0.5" 643 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 644 | dependencies: 645 | boom "2.x.x" 646 | 647 | crypto-browserify@^3.11.0: 648 | version "3.11.1" 649 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.1.tgz#948945efc6757a400d6e5e5af47194d10064279f" 650 | dependencies: 651 | browserify-cipher "^1.0.0" 652 | browserify-sign "^4.0.0" 653 | create-ecdh "^4.0.0" 654 | create-hash "^1.1.0" 655 | create-hmac "^1.1.0" 656 | diffie-hellman "^5.0.0" 657 | inherits "^2.0.1" 658 | pbkdf2 "^3.0.3" 659 | public-encrypt "^4.0.0" 660 | randombytes "^2.0.0" 661 | 662 | css-color-names@0.0.4: 663 | version "0.0.4" 664 | resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" 665 | 666 | css-loader@^0.28.7: 667 | version "0.28.7" 668 | resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.28.7.tgz#5f2ee989dd32edd907717f953317656160999c1b" 669 | dependencies: 670 | babel-code-frame "^6.11.0" 671 | css-selector-tokenizer "^0.7.0" 672 | cssnano ">=2.6.1 <4" 673 | icss-utils "^2.1.0" 674 | loader-utils "^1.0.2" 675 | lodash.camelcase "^4.3.0" 676 | object-assign "^4.0.1" 677 | postcss "^5.0.6" 678 | postcss-modules-extract-imports "^1.0.0" 679 | postcss-modules-local-by-default "^1.0.1" 680 | postcss-modules-scope "^1.0.0" 681 | postcss-modules-values "^1.1.0" 682 | postcss-value-parser "^3.3.0" 683 | source-list-map "^2.0.0" 684 | 685 | css-selector-tokenizer@^0.7.0: 686 | version "0.7.0" 687 | resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" 688 | dependencies: 689 | cssesc "^0.1.0" 690 | fastparse "^1.1.1" 691 | regexpu-core "^1.0.0" 692 | 693 | css.escape@^1.5.1: 694 | version "1.5.1" 695 | resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" 696 | 697 | cssesc@^0.1.0: 698 | version "0.1.0" 699 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" 700 | 701 | cssesc@^2.0.0: 702 | version "2.0.0" 703 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703" 704 | integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg== 705 | 706 | "cssnano@>=2.6.1 <4": 707 | version "3.10.0" 708 | resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" 709 | dependencies: 710 | autoprefixer "^6.3.1" 711 | decamelize "^1.1.2" 712 | defined "^1.0.0" 713 | has "^1.0.1" 714 | object-assign "^4.0.1" 715 | postcss "^5.0.14" 716 | postcss-calc "^5.2.0" 717 | postcss-colormin "^2.1.8" 718 | postcss-convert-values "^2.3.4" 719 | postcss-discard-comments "^2.0.4" 720 | postcss-discard-duplicates "^2.0.1" 721 | postcss-discard-empty "^2.0.1" 722 | postcss-discard-overridden "^0.1.1" 723 | postcss-discard-unused "^2.2.1" 724 | postcss-filter-plugins "^2.0.0" 725 | postcss-merge-idents "^2.1.5" 726 | postcss-merge-longhand "^2.0.1" 727 | postcss-merge-rules "^2.0.3" 728 | postcss-minify-font-values "^1.0.2" 729 | postcss-minify-gradients "^1.0.1" 730 | postcss-minify-params "^1.0.4" 731 | postcss-minify-selectors "^2.0.4" 732 | postcss-normalize-charset "^1.1.0" 733 | postcss-normalize-url "^3.0.7" 734 | postcss-ordered-values "^2.1.0" 735 | postcss-reduce-idents "^2.2.2" 736 | postcss-reduce-initial "^1.0.0" 737 | postcss-reduce-transforms "^1.0.3" 738 | postcss-svgo "^2.1.1" 739 | postcss-unique-selectors "^2.0.2" 740 | postcss-value-parser "^3.2.3" 741 | postcss-zindex "^2.0.1" 742 | 743 | csso@~2.3.1: 744 | version "2.3.2" 745 | resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" 746 | dependencies: 747 | clap "^1.0.9" 748 | source-map "^0.5.3" 749 | 750 | d@1: 751 | version "1.0.0" 752 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 753 | dependencies: 754 | es5-ext "^0.10.9" 755 | 756 | dashdash@^1.12.0: 757 | version "1.14.1" 758 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 759 | dependencies: 760 | assert-plus "^1.0.0" 761 | 762 | date-now@^0.1.4: 763 | version "0.1.4" 764 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 765 | 766 | debug@^2.2.0: 767 | version "2.6.9" 768 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 769 | dependencies: 770 | ms "2.0.0" 771 | 772 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 773 | version "1.2.0" 774 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 775 | 776 | deep-extend@~0.4.0: 777 | version "0.4.2" 778 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 779 | 780 | defined@^1.0.0: 781 | version "1.0.0" 782 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 783 | 784 | delayed-stream@~1.0.0: 785 | version "1.0.0" 786 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 787 | 788 | delegates@^1.0.0: 789 | version "1.0.0" 790 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 791 | 792 | des.js@^1.0.0: 793 | version "1.0.0" 794 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 795 | dependencies: 796 | inherits "^2.0.1" 797 | minimalistic-assert "^1.0.0" 798 | 799 | detect-libc@^1.0.2: 800 | version "1.0.2" 801 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.2.tgz#71ad5d204bf17a6a6ca8f450c61454066ef461e1" 802 | 803 | diffie-hellman@^5.0.0: 804 | version "5.0.2" 805 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 806 | dependencies: 807 | bn.js "^4.1.0" 808 | miller-rabin "^4.0.0" 809 | randombytes "^2.0.0" 810 | 811 | domain-browser@^1.1.1: 812 | version "1.1.7" 813 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 814 | 815 | ecc-jsbn@~0.1.1: 816 | version "0.1.1" 817 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 818 | dependencies: 819 | jsbn "~0.1.0" 820 | 821 | electron-to-chromium@^1.2.7: 822 | version "1.3.27" 823 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.27.tgz#78ecb8a399066187bb374eede35d9c70565a803d" 824 | 825 | electron-to-chromium@^1.3.103: 826 | version "1.3.112" 827 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.112.tgz#1f40a68ceda6328f95218dffeda0f4f3d5412a2f" 828 | integrity sha512-FyVLdiRZnLw2WE5ECtveN0JJ7klyiz/HMfKE1/Rjff3l7pe4vfkYtBlcCqTckvR8E7asjJGh0m9gRPR3Anp/UA== 829 | 830 | elliptic@^6.0.0: 831 | version "6.4.0" 832 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 833 | dependencies: 834 | bn.js "^4.4.0" 835 | brorand "^1.0.1" 836 | hash.js "^1.0.0" 837 | hmac-drbg "^1.0.0" 838 | inherits "^2.0.1" 839 | minimalistic-assert "^1.0.0" 840 | minimalistic-crypto-utils "^1.0.0" 841 | 842 | emojis-list@^2.0.0: 843 | version "2.1.0" 844 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 845 | 846 | enhanced-resolve@^3.4.0: 847 | version "3.4.1" 848 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" 849 | dependencies: 850 | graceful-fs "^4.1.2" 851 | memory-fs "^0.4.0" 852 | object-assign "^4.0.1" 853 | tapable "^0.2.7" 854 | 855 | errno@^0.1.3: 856 | version "0.1.4" 857 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 858 | dependencies: 859 | prr "~0.0.0" 860 | 861 | error-ex@^1.2.0: 862 | version "1.3.1" 863 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 864 | dependencies: 865 | is-arrayish "^0.2.1" 866 | 867 | es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: 868 | version "0.10.35" 869 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.35.tgz#18ee858ce6a3c45c7d79e91c15fcca9ec568494f" 870 | dependencies: 871 | es6-iterator "~2.0.1" 872 | es6-symbol "~3.1.1" 873 | 874 | es6-iterator@^2.0.1, es6-iterator@~2.0.1: 875 | version "2.0.3" 876 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 877 | dependencies: 878 | d "1" 879 | es5-ext "^0.10.35" 880 | es6-symbol "^3.1.1" 881 | 882 | es6-map@^0.1.3: 883 | version "0.1.5" 884 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 885 | dependencies: 886 | d "1" 887 | es5-ext "~0.10.14" 888 | es6-iterator "~2.0.1" 889 | es6-set "~0.1.5" 890 | es6-symbol "~3.1.1" 891 | event-emitter "~0.3.5" 892 | 893 | es6-set@~0.1.5: 894 | version "0.1.5" 895 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 896 | dependencies: 897 | d "1" 898 | es5-ext "~0.10.14" 899 | es6-iterator "~2.0.1" 900 | es6-symbol "3.1.1" 901 | event-emitter "~0.3.5" 902 | 903 | es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: 904 | version "3.1.1" 905 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 906 | dependencies: 907 | d "1" 908 | es5-ext "~0.10.14" 909 | 910 | es6-weak-map@^2.0.1: 911 | version "2.0.2" 912 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 913 | dependencies: 914 | d "1" 915 | es5-ext "^0.10.14" 916 | es6-iterator "^2.0.1" 917 | es6-symbol "^3.1.1" 918 | 919 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 920 | version "1.0.5" 921 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 922 | 923 | escope@^3.6.0: 924 | version "3.6.0" 925 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 926 | dependencies: 927 | es6-map "^0.1.3" 928 | es6-weak-map "^2.0.1" 929 | esrecurse "^4.1.0" 930 | estraverse "^4.1.1" 931 | 932 | esprima@^2.6.0: 933 | version "2.7.3" 934 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 935 | 936 | esprima@^4.0.0: 937 | version "4.0.0" 938 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 939 | 940 | esrecurse@^4.1.0: 941 | version "4.2.0" 942 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 943 | dependencies: 944 | estraverse "^4.1.0" 945 | object-assign "^4.0.1" 946 | 947 | estraverse@^4.1.0, estraverse@^4.1.1: 948 | version "4.2.0" 949 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 950 | 951 | esutils@^2.0.2: 952 | version "2.0.2" 953 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 954 | 955 | event-emitter@~0.3.5: 956 | version "0.3.5" 957 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 958 | dependencies: 959 | d "1" 960 | es5-ext "~0.10.14" 961 | 962 | events@^1.0.0: 963 | version "1.1.1" 964 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 965 | 966 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 967 | version "1.0.3" 968 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" 969 | dependencies: 970 | md5.js "^1.3.4" 971 | safe-buffer "^5.1.1" 972 | 973 | execa@^0.7.0: 974 | version "0.7.0" 975 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 976 | dependencies: 977 | cross-spawn "^5.0.1" 978 | get-stream "^3.0.0" 979 | is-stream "^1.1.0" 980 | npm-run-path "^2.0.0" 981 | p-finally "^1.0.0" 982 | signal-exit "^3.0.0" 983 | strip-eof "^1.0.0" 984 | 985 | expand-brackets@^0.1.4: 986 | version "0.1.5" 987 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 988 | dependencies: 989 | is-posix-bracket "^0.1.0" 990 | 991 | expand-range@^1.8.1: 992 | version "1.8.2" 993 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 994 | dependencies: 995 | fill-range "^2.1.0" 996 | 997 | extend@~3.0.0: 998 | version "3.0.1" 999 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1000 | 1001 | extglob@^0.3.1: 1002 | version "0.3.2" 1003 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1004 | dependencies: 1005 | is-extglob "^1.0.0" 1006 | 1007 | extract-text-webpack-plugin@^3.0.2: 1008 | version "3.0.2" 1009 | resolved "https://registry.yarnpkg.com/extract-text-webpack-plugin/-/extract-text-webpack-plugin-3.0.2.tgz#5f043eaa02f9750a9258b78c0a6e0dc1408fb2f7" 1010 | dependencies: 1011 | async "^2.4.1" 1012 | loader-utils "^1.1.0" 1013 | schema-utils "^0.3.0" 1014 | webpack-sources "^1.0.1" 1015 | 1016 | extsprintf@1.3.0, extsprintf@^1.2.0: 1017 | version "1.3.0" 1018 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1019 | 1020 | fast-deep-equal@^1.0.0: 1021 | version "1.0.0" 1022 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1023 | 1024 | fast-json-stable-stringify@^2.0.0: 1025 | version "2.0.0" 1026 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1027 | 1028 | fastparse@^1.1.1: 1029 | version "1.1.1" 1030 | resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" 1031 | 1032 | filename-regex@^2.0.0: 1033 | version "2.0.1" 1034 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1035 | 1036 | fill-range@^2.1.0: 1037 | version "2.2.3" 1038 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1039 | dependencies: 1040 | is-number "^2.1.0" 1041 | isobject "^2.0.0" 1042 | randomatic "^1.1.3" 1043 | repeat-element "^1.1.2" 1044 | repeat-string "^1.5.2" 1045 | 1046 | find-up@^2.0.0: 1047 | version "2.1.0" 1048 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1049 | dependencies: 1050 | locate-path "^2.0.0" 1051 | 1052 | flatten@^1.0.2: 1053 | version "1.0.2" 1054 | resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" 1055 | 1056 | for-in@^1.0.1: 1057 | version "1.0.2" 1058 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1059 | 1060 | for-own@^0.1.4: 1061 | version "0.1.5" 1062 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1063 | dependencies: 1064 | for-in "^1.0.1" 1065 | 1066 | forever-agent@~0.6.1: 1067 | version "0.6.1" 1068 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1069 | 1070 | form-data@~2.1.1: 1071 | version "2.1.4" 1072 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1073 | dependencies: 1074 | asynckit "^0.4.0" 1075 | combined-stream "^1.0.5" 1076 | mime-types "^2.1.12" 1077 | 1078 | fs-extra@^4.0.2: 1079 | version "4.0.2" 1080 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.2.tgz#f91704c53d1b461f893452b0c307d9997647ab6b" 1081 | dependencies: 1082 | graceful-fs "^4.1.2" 1083 | jsonfile "^4.0.0" 1084 | universalify "^0.1.0" 1085 | 1086 | fs.realpath@^1.0.0: 1087 | version "1.0.0" 1088 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1089 | 1090 | fsevents@^1.0.0: 1091 | version "1.1.2" 1092 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1093 | dependencies: 1094 | nan "^2.3.0" 1095 | node-pre-gyp "^0.6.36" 1096 | 1097 | fstream-ignore@^1.0.5: 1098 | version "1.0.5" 1099 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1100 | dependencies: 1101 | fstream "^1.0.0" 1102 | inherits "2" 1103 | minimatch "^3.0.0" 1104 | 1105 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1106 | version "1.0.11" 1107 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1108 | dependencies: 1109 | graceful-fs "^4.1.2" 1110 | inherits "~2.0.0" 1111 | mkdirp ">=0.5 0" 1112 | rimraf "2" 1113 | 1114 | function-bind@^1.0.2: 1115 | version "1.1.1" 1116 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1117 | 1118 | gather-stream@^1.0.0: 1119 | version "1.0.0" 1120 | resolved "https://registry.yarnpkg.com/gather-stream/-/gather-stream-1.0.0.tgz#b33994af457a8115700d410f317733cbe7a0904b" 1121 | 1122 | gauge@~2.7.3: 1123 | version "2.7.4" 1124 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1125 | dependencies: 1126 | aproba "^1.0.3" 1127 | console-control-strings "^1.0.0" 1128 | has-unicode "^2.0.0" 1129 | object-assign "^4.1.0" 1130 | signal-exit "^3.0.0" 1131 | string-width "^1.0.1" 1132 | strip-ansi "^3.0.1" 1133 | wide-align "^1.1.0" 1134 | 1135 | get-caller-file@^1.0.1: 1136 | version "1.0.2" 1137 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1138 | 1139 | get-stream@^3.0.0: 1140 | version "3.0.0" 1141 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1142 | 1143 | getpass@^0.1.1: 1144 | version "0.1.7" 1145 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1146 | dependencies: 1147 | assert-plus "^1.0.0" 1148 | 1149 | glob-base@^0.3.0: 1150 | version "0.3.0" 1151 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1152 | dependencies: 1153 | glob-parent "^2.0.0" 1154 | is-glob "^2.0.0" 1155 | 1156 | glob-parent@^2.0.0: 1157 | version "2.0.0" 1158 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1159 | dependencies: 1160 | is-glob "^2.0.0" 1161 | 1162 | glob@^7.0.5, glob@^7.1.2: 1163 | version "7.1.2" 1164 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1165 | dependencies: 1166 | fs.realpath "^1.0.0" 1167 | inflight "^1.0.4" 1168 | inherits "2" 1169 | minimatch "^3.0.4" 1170 | once "^1.3.0" 1171 | path-is-absolute "^1.0.0" 1172 | 1173 | graceful-fs@^4.1.2, graceful-fs@^4.1.6: 1174 | version "4.1.11" 1175 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1176 | 1177 | har-schema@^1.0.5: 1178 | version "1.0.5" 1179 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1180 | 1181 | har-validator@~4.2.1: 1182 | version "4.2.1" 1183 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1184 | dependencies: 1185 | ajv "^4.9.1" 1186 | har-schema "^1.0.5" 1187 | 1188 | has-ansi@^2.0.0: 1189 | version "2.0.0" 1190 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1191 | dependencies: 1192 | ansi-regex "^2.0.0" 1193 | 1194 | has-flag@^1.0.0: 1195 | version "1.0.0" 1196 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1197 | 1198 | has-flag@^2.0.0: 1199 | version "2.0.0" 1200 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1201 | 1202 | has-flag@^3.0.0: 1203 | version "3.0.0" 1204 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1205 | 1206 | has-unicode@^2.0.0: 1207 | version "2.0.1" 1208 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1209 | 1210 | has@^1.0.1: 1211 | version "1.0.1" 1212 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1213 | dependencies: 1214 | function-bind "^1.0.2" 1215 | 1216 | hash-base@^2.0.0: 1217 | version "2.0.2" 1218 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 1219 | dependencies: 1220 | inherits "^2.0.1" 1221 | 1222 | hash-base@^3.0.0: 1223 | version "3.0.4" 1224 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1225 | dependencies: 1226 | inherits "^2.0.1" 1227 | safe-buffer "^5.0.1" 1228 | 1229 | hash.js@^1.0.0, hash.js@^1.0.3: 1230 | version "1.1.3" 1231 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" 1232 | dependencies: 1233 | inherits "^2.0.3" 1234 | minimalistic-assert "^1.0.0" 1235 | 1236 | hawk@3.1.3, hawk@~3.1.3: 1237 | version "3.1.3" 1238 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1239 | dependencies: 1240 | boom "2.x.x" 1241 | cryptiles "2.x.x" 1242 | hoek "2.x.x" 1243 | sntp "1.x.x" 1244 | 1245 | hmac-drbg@^1.0.0: 1246 | version "1.0.1" 1247 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1248 | dependencies: 1249 | hash.js "^1.0.3" 1250 | minimalistic-assert "^1.0.0" 1251 | minimalistic-crypto-utils "^1.0.1" 1252 | 1253 | hoek@2.x.x: 1254 | version "2.16.3" 1255 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1256 | 1257 | hosted-git-info@^2.1.4: 1258 | version "2.5.0" 1259 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1260 | 1261 | html-comment-regex@^1.1.0: 1262 | version "1.1.1" 1263 | resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" 1264 | 1265 | http-signature@~1.1.0: 1266 | version "1.1.1" 1267 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1268 | dependencies: 1269 | assert-plus "^0.2.0" 1270 | jsprim "^1.2.2" 1271 | sshpk "^1.7.0" 1272 | 1273 | https-browserify@0.0.1: 1274 | version "0.0.1" 1275 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 1276 | 1277 | icss-replace-symbols@^1.1.0: 1278 | version "1.1.0" 1279 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" 1280 | 1281 | icss-utils@^2.1.0: 1282 | version "2.1.0" 1283 | resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962" 1284 | dependencies: 1285 | postcss "^6.0.1" 1286 | 1287 | ieee754@^1.1.4: 1288 | version "1.1.8" 1289 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1290 | 1291 | indexes-of@^1.0.1: 1292 | version "1.0.1" 1293 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 1294 | 1295 | indexof@0.0.1: 1296 | version "0.0.1" 1297 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1298 | 1299 | inflight@^1.0.4: 1300 | version "1.0.6" 1301 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1302 | dependencies: 1303 | once "^1.3.0" 1304 | wrappy "1" 1305 | 1306 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1307 | version "2.0.3" 1308 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1309 | 1310 | inherits@2.0.1: 1311 | version "2.0.1" 1312 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1313 | 1314 | ini@~1.3.0: 1315 | version "1.3.4" 1316 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1317 | 1318 | interpret@^1.0.0: 1319 | version "1.0.4" 1320 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.4.tgz#820cdd588b868ffb191a809506d6c9c8f212b1b0" 1321 | 1322 | invert-kv@^1.0.0: 1323 | version "1.0.0" 1324 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1325 | 1326 | is-absolute-url@^2.0.0: 1327 | version "2.1.0" 1328 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" 1329 | 1330 | is-arrayish@^0.2.1: 1331 | version "0.2.1" 1332 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1333 | 1334 | is-binary-path@^1.0.0: 1335 | version "1.0.1" 1336 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1337 | dependencies: 1338 | binary-extensions "^1.0.0" 1339 | 1340 | is-buffer@^1.1.5: 1341 | version "1.1.6" 1342 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1343 | 1344 | is-builtin-module@^1.0.0: 1345 | version "1.0.0" 1346 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1347 | dependencies: 1348 | builtin-modules "^1.0.0" 1349 | 1350 | is-directory@^0.3.1: 1351 | version "0.3.1" 1352 | resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" 1353 | 1354 | is-dotfile@^1.0.0: 1355 | version "1.0.3" 1356 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1357 | 1358 | is-equal-shallow@^0.1.3: 1359 | version "0.1.3" 1360 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1361 | dependencies: 1362 | is-primitive "^2.0.0" 1363 | 1364 | is-extendable@^0.1.1: 1365 | version "0.1.1" 1366 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1367 | 1368 | is-extglob@^1.0.0: 1369 | version "1.0.0" 1370 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1371 | 1372 | is-fullwidth-code-point@^1.0.0: 1373 | version "1.0.0" 1374 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1375 | dependencies: 1376 | number-is-nan "^1.0.0" 1377 | 1378 | is-fullwidth-code-point@^2.0.0: 1379 | version "2.0.0" 1380 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1381 | 1382 | is-glob@^2.0.0, is-glob@^2.0.1: 1383 | version "2.0.1" 1384 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1385 | dependencies: 1386 | is-extglob "^1.0.0" 1387 | 1388 | is-number@^2.1.0: 1389 | version "2.1.0" 1390 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1391 | dependencies: 1392 | kind-of "^3.0.2" 1393 | 1394 | is-number@^3.0.0: 1395 | version "3.0.0" 1396 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1397 | dependencies: 1398 | kind-of "^3.0.2" 1399 | 1400 | is-plain-obj@^1.0.0: 1401 | version "1.1.0" 1402 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1403 | 1404 | is-posix-bracket@^0.1.0: 1405 | version "0.1.1" 1406 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1407 | 1408 | is-primitive@^2.0.0: 1409 | version "2.0.0" 1410 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1411 | 1412 | is-stream@^1.1.0: 1413 | version "1.1.0" 1414 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1415 | 1416 | is-svg@^2.0.0: 1417 | version "2.1.0" 1418 | resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" 1419 | dependencies: 1420 | html-comment-regex "^1.1.0" 1421 | 1422 | is-typedarray@~1.0.0: 1423 | version "1.0.0" 1424 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1425 | 1426 | is-windows@^1.0.0: 1427 | version "1.0.1" 1428 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.1.tgz#310db70f742d259a16a369202b51af84233310d9" 1429 | 1430 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1431 | version "1.0.0" 1432 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1433 | 1434 | isexe@^2.0.0: 1435 | version "2.0.0" 1436 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1437 | 1438 | isobject@^2.0.0: 1439 | version "2.1.0" 1440 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1441 | dependencies: 1442 | isarray "1.0.0" 1443 | 1444 | isstream@~0.1.2: 1445 | version "0.1.2" 1446 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1447 | 1448 | js-base64@^2.1.9: 1449 | version "2.3.2" 1450 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.3.2.tgz#a79a923666372b580f8e27f51845c6f7e8fbfbaf" 1451 | 1452 | js-tokens@^3.0.2: 1453 | version "3.0.2" 1454 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1455 | 1456 | js-yaml@^3.4.3: 1457 | version "3.10.0" 1458 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1459 | dependencies: 1460 | argparse "^1.0.7" 1461 | esprima "^4.0.0" 1462 | 1463 | js-yaml@~3.7.0: 1464 | version "3.7.0" 1465 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" 1466 | dependencies: 1467 | argparse "^1.0.7" 1468 | esprima "^2.6.0" 1469 | 1470 | jsbn@~0.1.0: 1471 | version "0.1.1" 1472 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1473 | 1474 | jsesc@~0.5.0: 1475 | version "0.5.0" 1476 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1477 | 1478 | json-loader@^0.5.4: 1479 | version "0.5.7" 1480 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" 1481 | 1482 | json-schema-traverse@^0.3.0: 1483 | version "0.3.1" 1484 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 1485 | 1486 | json-schema@0.2.3: 1487 | version "0.2.3" 1488 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1489 | 1490 | json-stable-stringify@^1.0.1: 1491 | version "1.0.1" 1492 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1493 | dependencies: 1494 | jsonify "~0.0.0" 1495 | 1496 | json-stringify-safe@~5.0.1: 1497 | version "5.0.1" 1498 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1499 | 1500 | json5@^0.5.0, json5@^0.5.1: 1501 | version "0.5.1" 1502 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1503 | 1504 | jsonfile@^4.0.0: 1505 | version "4.0.0" 1506 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 1507 | optionalDependencies: 1508 | graceful-fs "^4.1.6" 1509 | 1510 | jsonify@~0.0.0: 1511 | version "0.0.0" 1512 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1513 | 1514 | jsprim@^1.2.2: 1515 | version "1.4.1" 1516 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1517 | dependencies: 1518 | assert-plus "1.0.0" 1519 | extsprintf "1.3.0" 1520 | json-schema "0.2.3" 1521 | verror "1.10.0" 1522 | 1523 | kind-of@^3.0.2: 1524 | version "3.2.2" 1525 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1526 | dependencies: 1527 | is-buffer "^1.1.5" 1528 | 1529 | kind-of@^4.0.0: 1530 | version "4.0.0" 1531 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1532 | dependencies: 1533 | is-buffer "^1.1.5" 1534 | 1535 | lazy-cache@^1.0.3: 1536 | version "1.0.4" 1537 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1538 | 1539 | lcid@^1.0.0: 1540 | version "1.0.0" 1541 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1542 | dependencies: 1543 | invert-kv "^1.0.0" 1544 | 1545 | load-json-file@^2.0.0: 1546 | version "2.0.0" 1547 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1548 | dependencies: 1549 | graceful-fs "^4.1.2" 1550 | parse-json "^2.2.0" 1551 | pify "^2.0.0" 1552 | strip-bom "^3.0.0" 1553 | 1554 | loader-runner@^2.3.0: 1555 | version "2.3.0" 1556 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 1557 | 1558 | loader-utils@^1.0.2, loader-utils@^1.1.0: 1559 | version "1.1.0" 1560 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 1561 | dependencies: 1562 | big.js "^3.1.3" 1563 | emojis-list "^2.0.0" 1564 | json5 "^0.5.0" 1565 | 1566 | locate-path@^2.0.0: 1567 | version "2.0.0" 1568 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1569 | dependencies: 1570 | p-locate "^2.0.0" 1571 | path-exists "^3.0.0" 1572 | 1573 | lodash.camelcase@^4.3.0: 1574 | version "4.3.0" 1575 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 1576 | 1577 | lodash.memoize@^4.1.2: 1578 | version "4.1.2" 1579 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 1580 | 1581 | lodash.toarray@^4.4.0: 1582 | version "4.4.0" 1583 | resolved "https://registry.yarnpkg.com/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561" 1584 | integrity sha1-JMS/zWsvuji/0FlNsRedjptlZWE= 1585 | 1586 | lodash.uniq@^4.5.0: 1587 | version "4.5.0" 1588 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 1589 | 1590 | lodash@^4.14.0: 1591 | version "4.17.4" 1592 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1593 | 1594 | lodash@^4.17.5: 1595 | version "4.17.10" 1596 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" 1597 | 1598 | longest@^1.0.1: 1599 | version "1.0.1" 1600 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1601 | 1602 | lru-cache@^4.0.1: 1603 | version "4.1.1" 1604 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1605 | dependencies: 1606 | pseudomap "^1.0.2" 1607 | yallist "^2.1.2" 1608 | 1609 | macaddress@^0.2.8: 1610 | version "0.2.8" 1611 | resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" 1612 | 1613 | math-expression-evaluator@^1.2.14: 1614 | version "1.2.17" 1615 | resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" 1616 | 1617 | md5.js@^1.3.4: 1618 | version "1.3.4" 1619 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" 1620 | dependencies: 1621 | hash-base "^3.0.0" 1622 | inherits "^2.0.1" 1623 | 1624 | mem@^1.1.0: 1625 | version "1.1.0" 1626 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1627 | dependencies: 1628 | mimic-fn "^1.0.0" 1629 | 1630 | memory-fs@^0.4.0, memory-fs@~0.4.1: 1631 | version "0.4.1" 1632 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 1633 | dependencies: 1634 | errno "^0.1.3" 1635 | readable-stream "^2.0.1" 1636 | 1637 | micromatch@^2.1.5: 1638 | version "2.3.11" 1639 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1640 | dependencies: 1641 | arr-diff "^2.0.0" 1642 | array-unique "^0.2.1" 1643 | braces "^1.8.2" 1644 | expand-brackets "^0.1.4" 1645 | extglob "^0.3.1" 1646 | filename-regex "^2.0.0" 1647 | is-extglob "^1.0.0" 1648 | is-glob "^2.0.1" 1649 | kind-of "^3.0.2" 1650 | normalize-path "^2.0.1" 1651 | object.omit "^2.0.0" 1652 | parse-glob "^3.0.4" 1653 | regex-cache "^0.4.2" 1654 | 1655 | miller-rabin@^4.0.0: 1656 | version "4.0.1" 1657 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" 1658 | dependencies: 1659 | bn.js "^4.0.0" 1660 | brorand "^1.0.1" 1661 | 1662 | mime-db@~1.30.0: 1663 | version "1.30.0" 1664 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1665 | 1666 | mime-types@^2.1.12, mime-types@~2.1.7: 1667 | version "2.1.17" 1668 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1669 | dependencies: 1670 | mime-db "~1.30.0" 1671 | 1672 | mimic-fn@^1.0.0: 1673 | version "1.1.0" 1674 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1675 | 1676 | minimalistic-assert@^1.0.0: 1677 | version "1.0.0" 1678 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 1679 | 1680 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 1681 | version "1.0.1" 1682 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 1683 | 1684 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1685 | version "3.0.4" 1686 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1687 | dependencies: 1688 | brace-expansion "^1.1.7" 1689 | 1690 | minimist@0.0.8: 1691 | version "0.0.8" 1692 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1693 | 1694 | minimist@^1.2.0: 1695 | version "1.2.0" 1696 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1697 | 1698 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: 1699 | version "0.5.1" 1700 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1701 | dependencies: 1702 | minimist "0.0.8" 1703 | 1704 | ms@2.0.0: 1705 | version "2.0.0" 1706 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1707 | 1708 | nan@^2.3.0: 1709 | version "2.7.0" 1710 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 1711 | 1712 | node-emoji@^1.8.1: 1713 | version "1.8.1" 1714 | resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.8.1.tgz#6eec6bfb07421e2148c75c6bba72421f8530a826" 1715 | integrity sha512-+ktMAh1Jwas+TnGodfCfjUbJKoANqPaJFN0z0iqh41eqD8dvguNzcitVSBSVK1pidz0AqGbLKcoVuVLRVZ/aVg== 1716 | dependencies: 1717 | lodash.toarray "^4.4.0" 1718 | 1719 | node-libs-browser@^2.0.0: 1720 | version "2.0.0" 1721 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" 1722 | dependencies: 1723 | assert "^1.1.1" 1724 | browserify-zlib "^0.1.4" 1725 | buffer "^4.3.0" 1726 | console-browserify "^1.1.0" 1727 | constants-browserify "^1.0.0" 1728 | crypto-browserify "^3.11.0" 1729 | domain-browser "^1.1.1" 1730 | events "^1.0.0" 1731 | https-browserify "0.0.1" 1732 | os-browserify "^0.2.0" 1733 | path-browserify "0.0.0" 1734 | process "^0.11.0" 1735 | punycode "^1.2.4" 1736 | querystring-es3 "^0.2.0" 1737 | readable-stream "^2.0.5" 1738 | stream-browserify "^2.0.1" 1739 | stream-http "^2.3.1" 1740 | string_decoder "^0.10.25" 1741 | timers-browserify "^2.0.2" 1742 | tty-browserify "0.0.0" 1743 | url "^0.11.0" 1744 | util "^0.10.3" 1745 | vm-browserify "0.0.4" 1746 | 1747 | node-pre-gyp@^0.6.36: 1748 | version "0.6.39" 1749 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 1750 | dependencies: 1751 | detect-libc "^1.0.2" 1752 | hawk "3.1.3" 1753 | mkdirp "^0.5.1" 1754 | nopt "^4.0.1" 1755 | npmlog "^4.0.2" 1756 | rc "^1.1.7" 1757 | request "2.81.0" 1758 | rimraf "^2.6.1" 1759 | semver "^5.3.0" 1760 | tar "^2.2.1" 1761 | tar-pack "^3.4.0" 1762 | 1763 | node-releases@^1.1.3: 1764 | version "1.1.7" 1765 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.7.tgz#b09a10394d0ed8f7778f72bb861dde68b146303b" 1766 | integrity sha512-bKdrwaqJUPHqlCzDD7so/R+Nk0jGv9a11ZhLrD9f6i947qGLrGAhU3OxRENa19QQmwzGy/g6zCDEuLGDO8HPvA== 1767 | dependencies: 1768 | semver "^5.3.0" 1769 | 1770 | nopt@^4.0.1: 1771 | version "4.0.1" 1772 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1773 | dependencies: 1774 | abbrev "1" 1775 | osenv "^0.1.4" 1776 | 1777 | normalize-package-data@^2.3.2: 1778 | version "2.4.0" 1779 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1780 | dependencies: 1781 | hosted-git-info "^2.1.4" 1782 | is-builtin-module "^1.0.0" 1783 | semver "2 || 3 || 4 || 5" 1784 | validate-npm-package-license "^3.0.1" 1785 | 1786 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1787 | version "2.1.1" 1788 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1789 | dependencies: 1790 | remove-trailing-separator "^1.0.1" 1791 | 1792 | normalize-range@^0.1.2: 1793 | version "0.1.2" 1794 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 1795 | 1796 | normalize-url@^1.4.0: 1797 | version "1.9.1" 1798 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" 1799 | dependencies: 1800 | object-assign "^4.0.1" 1801 | prepend-http "^1.0.0" 1802 | query-string "^4.1.0" 1803 | sort-keys "^1.0.0" 1804 | 1805 | npm-run-path@^2.0.0: 1806 | version "2.0.2" 1807 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1808 | dependencies: 1809 | path-key "^2.0.0" 1810 | 1811 | npmlog@^4.0.2: 1812 | version "4.1.2" 1813 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1814 | dependencies: 1815 | are-we-there-yet "~1.1.2" 1816 | console-control-strings "~1.1.0" 1817 | gauge "~2.7.3" 1818 | set-blocking "~2.0.0" 1819 | 1820 | num2fraction@^1.2.2: 1821 | version "1.2.2" 1822 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 1823 | 1824 | number-is-nan@^1.0.0: 1825 | version "1.0.1" 1826 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1827 | 1828 | oauth-sign@~0.8.1: 1829 | version "0.8.2" 1830 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1831 | 1832 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 1833 | version "4.1.1" 1834 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1835 | 1836 | object.omit@^2.0.0: 1837 | version "2.0.1" 1838 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1839 | dependencies: 1840 | for-own "^0.1.4" 1841 | is-extendable "^0.1.1" 1842 | 1843 | once@^1.3.0, once@^1.3.3: 1844 | version "1.4.0" 1845 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1846 | dependencies: 1847 | wrappy "1" 1848 | 1849 | os-browserify@^0.2.0: 1850 | version "0.2.1" 1851 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 1852 | 1853 | os-homedir@^1.0.0, os-homedir@^1.0.1: 1854 | version "1.0.2" 1855 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1856 | 1857 | os-locale@^2.0.0: 1858 | version "2.1.0" 1859 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 1860 | dependencies: 1861 | execa "^0.7.0" 1862 | lcid "^1.0.0" 1863 | mem "^1.1.0" 1864 | 1865 | os-tmpdir@^1.0.0: 1866 | version "1.0.2" 1867 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1868 | 1869 | osenv@^0.1.4: 1870 | version "0.1.4" 1871 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 1872 | dependencies: 1873 | os-homedir "^1.0.0" 1874 | os-tmpdir "^1.0.0" 1875 | 1876 | p-finally@^1.0.0: 1877 | version "1.0.0" 1878 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1879 | 1880 | p-limit@^1.1.0: 1881 | version "1.1.0" 1882 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1883 | 1884 | p-locate@^2.0.0: 1885 | version "2.0.0" 1886 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1887 | dependencies: 1888 | p-limit "^1.1.0" 1889 | 1890 | pako@~0.2.0: 1891 | version "0.2.9" 1892 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 1893 | 1894 | parse-asn1@^5.0.0: 1895 | version "5.1.0" 1896 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 1897 | dependencies: 1898 | asn1.js "^4.0.0" 1899 | browserify-aes "^1.0.0" 1900 | create-hash "^1.1.0" 1901 | evp_bytestokey "^1.0.0" 1902 | pbkdf2 "^3.0.3" 1903 | 1904 | parse-glob@^3.0.4: 1905 | version "3.0.4" 1906 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1907 | dependencies: 1908 | glob-base "^0.3.0" 1909 | is-dotfile "^1.0.0" 1910 | is-extglob "^1.0.0" 1911 | is-glob "^2.0.0" 1912 | 1913 | parse-json@^2.2.0: 1914 | version "2.2.0" 1915 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1916 | dependencies: 1917 | error-ex "^1.2.0" 1918 | 1919 | path-browserify@0.0.0: 1920 | version "0.0.0" 1921 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 1922 | 1923 | path-exists@^3.0.0: 1924 | version "3.0.0" 1925 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1926 | 1927 | path-is-absolute@^1.0.0: 1928 | version "1.0.1" 1929 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1930 | 1931 | path-key@^2.0.0: 1932 | version "2.0.1" 1933 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1934 | 1935 | path-type@^2.0.0: 1936 | version "2.0.0" 1937 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1938 | dependencies: 1939 | pify "^2.0.0" 1940 | 1941 | pbkdf2@^3.0.3: 1942 | version "3.0.14" 1943 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.14.tgz#a35e13c64799b06ce15320f459c230e68e73bade" 1944 | dependencies: 1945 | create-hash "^1.1.2" 1946 | create-hmac "^1.1.4" 1947 | ripemd160 "^2.0.1" 1948 | safe-buffer "^5.0.1" 1949 | sha.js "^2.4.8" 1950 | 1951 | perfectionist@^2.4.0: 1952 | version "2.4.0" 1953 | resolved "https://registry.yarnpkg.com/perfectionist/-/perfectionist-2.4.0.tgz#c147ad3714e126467f1764129ee72df861d47ea0" 1954 | dependencies: 1955 | comment-regex "^1.0.0" 1956 | defined "^1.0.0" 1957 | minimist "^1.2.0" 1958 | postcss "^5.0.8" 1959 | postcss-scss "^0.3.0" 1960 | postcss-value-parser "^3.3.0" 1961 | read-file-stdin "^0.2.0" 1962 | string.prototype.repeat "^0.2.0" 1963 | vendors "^1.0.0" 1964 | write-file-stdout "0.0.2" 1965 | 1966 | performance-now@^0.2.0: 1967 | version "0.2.0" 1968 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 1969 | 1970 | pify@^2.0.0: 1971 | version "2.3.0" 1972 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1973 | 1974 | postcss-calc@^5.2.0: 1975 | version "5.3.1" 1976 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" 1977 | dependencies: 1978 | postcss "^5.0.2" 1979 | postcss-message-helpers "^2.0.0" 1980 | reduce-css-calc "^1.2.6" 1981 | 1982 | postcss-colormin@^2.1.8: 1983 | version "2.2.2" 1984 | resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" 1985 | dependencies: 1986 | colormin "^1.0.5" 1987 | postcss "^5.0.13" 1988 | postcss-value-parser "^3.2.3" 1989 | 1990 | postcss-convert-values@^2.3.4: 1991 | version "2.6.1" 1992 | resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" 1993 | dependencies: 1994 | postcss "^5.0.11" 1995 | postcss-value-parser "^3.1.2" 1996 | 1997 | postcss-discard-comments@^2.0.4: 1998 | version "2.0.4" 1999 | resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" 2000 | dependencies: 2001 | postcss "^5.0.14" 2002 | 2003 | postcss-discard-duplicates@^2.0.1: 2004 | version "2.1.0" 2005 | resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932" 2006 | dependencies: 2007 | postcss "^5.0.4" 2008 | 2009 | postcss-discard-empty@^2.0.1: 2010 | version "2.1.0" 2011 | resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" 2012 | dependencies: 2013 | postcss "^5.0.14" 2014 | 2015 | postcss-discard-overridden@^0.1.1: 2016 | version "0.1.1" 2017 | resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" 2018 | dependencies: 2019 | postcss "^5.0.16" 2020 | 2021 | postcss-discard-unused@^2.2.1: 2022 | version "2.2.3" 2023 | resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" 2024 | dependencies: 2025 | postcss "^5.0.14" 2026 | uniqs "^2.0.0" 2027 | 2028 | postcss-filter-plugins@^2.0.0: 2029 | version "2.0.2" 2030 | resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" 2031 | dependencies: 2032 | postcss "^5.0.4" 2033 | uniqid "^4.0.0" 2034 | 2035 | postcss-functions@^3.0.0: 2036 | version "3.0.0" 2037 | resolved "https://registry.yarnpkg.com/postcss-functions/-/postcss-functions-3.0.0.tgz#0e94d01444700a481de20de4d55fb2640564250e" 2038 | dependencies: 2039 | glob "^7.1.2" 2040 | object-assign "^4.1.1" 2041 | postcss "^6.0.9" 2042 | postcss-value-parser "^3.3.0" 2043 | 2044 | postcss-js@^2.0.0: 2045 | version "2.0.0" 2046 | resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-2.0.0.tgz#f75b70470009eb37f998ee9bb516a2899c19ef8d" 2047 | integrity sha512-9kAApW9G5kN8FkQ0ZdvSmbgbHIRrKmXtde2ZWYbwrW51gfEWfGsLlUu57mTpioPrmQlQFOgEvaeGYp+poqlX0A== 2048 | dependencies: 2049 | camelcase-css "^2.0.0" 2050 | postcss "^7.0.0" 2051 | 2052 | postcss-load-config@^1.2.0: 2053 | version "1.2.0" 2054 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-1.2.0.tgz#539e9afc9ddc8620121ebf9d8c3673e0ce50d28a" 2055 | dependencies: 2056 | cosmiconfig "^2.1.0" 2057 | object-assign "^4.1.0" 2058 | postcss-load-options "^1.2.0" 2059 | postcss-load-plugins "^2.3.0" 2060 | 2061 | postcss-load-options@^1.2.0: 2062 | version "1.2.0" 2063 | resolved "https://registry.yarnpkg.com/postcss-load-options/-/postcss-load-options-1.2.0.tgz#b098b1559ddac2df04bc0bb375f99a5cfe2b6d8c" 2064 | dependencies: 2065 | cosmiconfig "^2.1.0" 2066 | object-assign "^4.1.0" 2067 | 2068 | postcss-load-plugins@^2.3.0: 2069 | version "2.3.0" 2070 | resolved "https://registry.yarnpkg.com/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz#745768116599aca2f009fad426b00175049d8d92" 2071 | dependencies: 2072 | cosmiconfig "^2.1.1" 2073 | object-assign "^4.1.0" 2074 | 2075 | postcss-loader@^2.0.8: 2076 | version "2.0.8" 2077 | resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-2.0.8.tgz#8c67ddb029407dfafe684a406cfc16bad2ce0814" 2078 | dependencies: 2079 | loader-utils "^1.1.0" 2080 | postcss "^6.0.0" 2081 | postcss-load-config "^1.2.0" 2082 | schema-utils "^0.3.0" 2083 | 2084 | postcss-merge-idents@^2.1.5: 2085 | version "2.1.7" 2086 | resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" 2087 | dependencies: 2088 | has "^1.0.1" 2089 | postcss "^5.0.10" 2090 | postcss-value-parser "^3.1.1" 2091 | 2092 | postcss-merge-longhand@^2.0.1: 2093 | version "2.0.2" 2094 | resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" 2095 | dependencies: 2096 | postcss "^5.0.4" 2097 | 2098 | postcss-merge-rules@^2.0.3: 2099 | version "2.1.2" 2100 | resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721" 2101 | dependencies: 2102 | browserslist "^1.5.2" 2103 | caniuse-api "^1.5.2" 2104 | postcss "^5.0.4" 2105 | postcss-selector-parser "^2.2.2" 2106 | vendors "^1.0.0" 2107 | 2108 | postcss-message-helpers@^2.0.0: 2109 | version "2.0.0" 2110 | resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" 2111 | 2112 | postcss-minify-font-values@^1.0.2: 2113 | version "1.0.5" 2114 | resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" 2115 | dependencies: 2116 | object-assign "^4.0.1" 2117 | postcss "^5.0.4" 2118 | postcss-value-parser "^3.0.2" 2119 | 2120 | postcss-minify-gradients@^1.0.1: 2121 | version "1.0.5" 2122 | resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" 2123 | dependencies: 2124 | postcss "^5.0.12" 2125 | postcss-value-parser "^3.3.0" 2126 | 2127 | postcss-minify-params@^1.0.4: 2128 | version "1.2.2" 2129 | resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" 2130 | dependencies: 2131 | alphanum-sort "^1.0.1" 2132 | postcss "^5.0.2" 2133 | postcss-value-parser "^3.0.2" 2134 | uniqs "^2.0.0" 2135 | 2136 | postcss-minify-selectors@^2.0.4: 2137 | version "2.1.1" 2138 | resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" 2139 | dependencies: 2140 | alphanum-sort "^1.0.2" 2141 | has "^1.0.1" 2142 | postcss "^5.0.14" 2143 | postcss-selector-parser "^2.0.0" 2144 | 2145 | postcss-modules-extract-imports@^1.0.0: 2146 | version "1.2.0" 2147 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz#66140ecece38ef06bf0d3e355d69bf59d141ea85" 2148 | dependencies: 2149 | postcss "^6.0.1" 2150 | 2151 | postcss-modules-local-by-default@^1.0.1: 2152 | version "1.2.0" 2153 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" 2154 | dependencies: 2155 | css-selector-tokenizer "^0.7.0" 2156 | postcss "^6.0.1" 2157 | 2158 | postcss-modules-scope@^1.0.0: 2159 | version "1.1.0" 2160 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" 2161 | dependencies: 2162 | css-selector-tokenizer "^0.7.0" 2163 | postcss "^6.0.1" 2164 | 2165 | postcss-modules-values@^1.1.0: 2166 | version "1.3.0" 2167 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" 2168 | dependencies: 2169 | icss-replace-symbols "^1.1.0" 2170 | postcss "^6.0.1" 2171 | 2172 | postcss-nested@^4.1.1: 2173 | version "4.1.1" 2174 | resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-4.1.1.tgz#2074e6641583bf7151d951908d68fa95039fe340" 2175 | integrity sha512-3+V8+g+i9zUQ/AADNtBj3DVVvSOhRCV7W8Kzn9n4ViWJtSQrSdtIJnxZaupfdTrnhCkY86sAsuKVxBCuyfJDeA== 2176 | dependencies: 2177 | postcss "^7.0.6" 2178 | postcss-selector-parser "^5.0.0-rc.4" 2179 | 2180 | postcss-normalize-charset@^1.1.0: 2181 | version "1.1.1" 2182 | resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" 2183 | dependencies: 2184 | postcss "^5.0.5" 2185 | 2186 | postcss-normalize-url@^3.0.7: 2187 | version "3.0.8" 2188 | resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" 2189 | dependencies: 2190 | is-absolute-url "^2.0.0" 2191 | normalize-url "^1.4.0" 2192 | postcss "^5.0.14" 2193 | postcss-value-parser "^3.2.3" 2194 | 2195 | postcss-ordered-values@^2.1.0: 2196 | version "2.2.3" 2197 | resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" 2198 | dependencies: 2199 | postcss "^5.0.4" 2200 | postcss-value-parser "^3.0.1" 2201 | 2202 | postcss-reduce-idents@^2.2.2: 2203 | version "2.4.0" 2204 | resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" 2205 | dependencies: 2206 | postcss "^5.0.4" 2207 | postcss-value-parser "^3.0.2" 2208 | 2209 | postcss-reduce-initial@^1.0.0: 2210 | version "1.0.1" 2211 | resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" 2212 | dependencies: 2213 | postcss "^5.0.4" 2214 | 2215 | postcss-reduce-transforms@^1.0.3: 2216 | version "1.0.4" 2217 | resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" 2218 | dependencies: 2219 | has "^1.0.1" 2220 | postcss "^5.0.8" 2221 | postcss-value-parser "^3.0.1" 2222 | 2223 | postcss-scss@^0.3.0: 2224 | version "0.3.1" 2225 | resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-0.3.1.tgz#65c610d8e2a7ee0e62b1835b71b8870734816e4b" 2226 | dependencies: 2227 | postcss "^5.2.4" 2228 | 2229 | postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2: 2230 | version "2.2.3" 2231 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90" 2232 | dependencies: 2233 | flatten "^1.0.2" 2234 | indexes-of "^1.0.1" 2235 | uniq "^1.0.1" 2236 | 2237 | postcss-selector-parser@^5.0.0, postcss-selector-parser@^5.0.0-rc.4: 2238 | version "5.0.0" 2239 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c" 2240 | integrity sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ== 2241 | dependencies: 2242 | cssesc "^2.0.0" 2243 | indexes-of "^1.0.1" 2244 | uniq "^1.0.1" 2245 | 2246 | postcss-svgo@^2.1.1: 2247 | version "2.1.6" 2248 | resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" 2249 | dependencies: 2250 | is-svg "^2.0.0" 2251 | postcss "^5.0.14" 2252 | postcss-value-parser "^3.2.3" 2253 | svgo "^0.7.0" 2254 | 2255 | postcss-unique-selectors@^2.0.2: 2256 | version "2.0.2" 2257 | resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" 2258 | dependencies: 2259 | alphanum-sort "^1.0.1" 2260 | postcss "^5.0.4" 2261 | uniqs "^2.0.0" 2262 | 2263 | 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: 2264 | version "3.3.0" 2265 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" 2266 | 2267 | postcss-value-parser@^3.3.1: 2268 | version "3.3.1" 2269 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" 2270 | integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== 2271 | 2272 | postcss-zindex@^2.0.1: 2273 | version "2.2.0" 2274 | resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" 2275 | dependencies: 2276 | has "^1.0.1" 2277 | postcss "^5.0.4" 2278 | uniqs "^2.0.0" 2279 | 2280 | 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.6, postcss@^5.0.8, postcss@^5.2.16, postcss@^5.2.4: 2281 | version "5.2.18" 2282 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" 2283 | dependencies: 2284 | chalk "^1.1.3" 2285 | js-base64 "^2.1.9" 2286 | source-map "^0.5.6" 2287 | supports-color "^3.2.3" 2288 | 2289 | postcss@^6.0.0, postcss@^6.0.1, postcss@^6.0.14, postcss@^6.0.9: 2290 | version "6.0.14" 2291 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.14.tgz#5534c72114739e75d0afcf017db853099f562885" 2292 | dependencies: 2293 | chalk "^2.3.0" 2294 | source-map "^0.6.1" 2295 | supports-color "^4.4.0" 2296 | 2297 | postcss@^7.0.0, postcss@^7.0.11, postcss@^7.0.14, postcss@^7.0.6: 2298 | version "7.0.14" 2299 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.14.tgz#4527ed6b1ca0d82c53ce5ec1a2041c2346bbd6e5" 2300 | integrity sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg== 2301 | dependencies: 2302 | chalk "^2.4.2" 2303 | source-map "^0.6.1" 2304 | supports-color "^6.1.0" 2305 | 2306 | prepend-http@^1.0.0: 2307 | version "1.0.4" 2308 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 2309 | 2310 | preserve@^0.2.0: 2311 | version "0.2.0" 2312 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2313 | 2314 | pretty-hrtime@^1.0.3: 2315 | version "1.0.3" 2316 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 2317 | integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= 2318 | 2319 | process-nextick-args@~1.0.6: 2320 | version "1.0.7" 2321 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2322 | 2323 | process@^0.11.0: 2324 | version "0.11.10" 2325 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2326 | 2327 | prr@~0.0.0: 2328 | version "0.0.0" 2329 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2330 | 2331 | pseudomap@^1.0.2: 2332 | version "1.0.2" 2333 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2334 | 2335 | public-encrypt@^4.0.0: 2336 | version "4.0.0" 2337 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 2338 | dependencies: 2339 | bn.js "^4.1.0" 2340 | browserify-rsa "^4.0.0" 2341 | create-hash "^1.1.0" 2342 | parse-asn1 "^5.0.0" 2343 | randombytes "^2.0.1" 2344 | 2345 | punycode@1.3.2: 2346 | version "1.3.2" 2347 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2348 | 2349 | punycode@^1.2.4, punycode@^1.4.1: 2350 | version "1.4.1" 2351 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2352 | 2353 | q@^1.1.2: 2354 | version "1.5.1" 2355 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 2356 | 2357 | qs@~6.4.0: 2358 | version "6.4.0" 2359 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2360 | 2361 | query-string@^4.1.0: 2362 | version "4.3.4" 2363 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" 2364 | dependencies: 2365 | object-assign "^4.1.0" 2366 | strict-uri-encode "^1.0.0" 2367 | 2368 | querystring-es3@^0.2.0: 2369 | version "0.2.1" 2370 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2371 | 2372 | querystring@0.2.0: 2373 | version "0.2.0" 2374 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2375 | 2376 | randomatic@^1.1.3: 2377 | version "1.1.7" 2378 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2379 | dependencies: 2380 | is-number "^3.0.0" 2381 | kind-of "^4.0.0" 2382 | 2383 | randombytes@^2.0.0, randombytes@^2.0.1: 2384 | version "2.0.5" 2385 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" 2386 | dependencies: 2387 | safe-buffer "^5.1.0" 2388 | 2389 | rc@^1.1.7: 2390 | version "1.2.2" 2391 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 2392 | dependencies: 2393 | deep-extend "~0.4.0" 2394 | ini "~1.3.0" 2395 | minimist "^1.2.0" 2396 | strip-json-comments "~2.0.1" 2397 | 2398 | read-file-stdin@^0.2.0: 2399 | version "0.2.1" 2400 | resolved "https://registry.yarnpkg.com/read-file-stdin/-/read-file-stdin-0.2.1.tgz#25eccff3a153b6809afacb23ee15387db9e0ee61" 2401 | dependencies: 2402 | gather-stream "^1.0.0" 2403 | 2404 | read-pkg-up@^2.0.0: 2405 | version "2.0.0" 2406 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 2407 | dependencies: 2408 | find-up "^2.0.0" 2409 | read-pkg "^2.0.0" 2410 | 2411 | read-pkg@^2.0.0: 2412 | version "2.0.0" 2413 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 2414 | dependencies: 2415 | load-json-file "^2.0.0" 2416 | normalize-package-data "^2.3.2" 2417 | path-type "^2.0.0" 2418 | 2419 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.6: 2420 | version "2.3.3" 2421 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2422 | dependencies: 2423 | core-util-is "~1.0.0" 2424 | inherits "~2.0.3" 2425 | isarray "~1.0.0" 2426 | process-nextick-args "~1.0.6" 2427 | safe-buffer "~5.1.1" 2428 | string_decoder "~1.0.3" 2429 | util-deprecate "~1.0.1" 2430 | 2431 | readdirp@^2.0.0: 2432 | version "2.1.0" 2433 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2434 | dependencies: 2435 | graceful-fs "^4.1.2" 2436 | minimatch "^3.0.2" 2437 | readable-stream "^2.0.2" 2438 | set-immediate-shim "^1.0.1" 2439 | 2440 | reduce-css-calc@^1.2.6: 2441 | version "1.3.0" 2442 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" 2443 | dependencies: 2444 | balanced-match "^0.4.2" 2445 | math-expression-evaluator "^1.2.14" 2446 | reduce-function-call "^1.0.1" 2447 | 2448 | reduce-function-call@^1.0.1: 2449 | version "1.0.2" 2450 | resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" 2451 | dependencies: 2452 | balanced-match "^0.4.2" 2453 | 2454 | regenerate@^1.2.1: 2455 | version "1.3.3" 2456 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2457 | 2458 | regenerator-runtime@^0.11.0: 2459 | version "0.11.1" 2460 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2461 | integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== 2462 | 2463 | regex-cache@^0.4.2: 2464 | version "0.4.4" 2465 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2466 | dependencies: 2467 | is-equal-shallow "^0.1.3" 2468 | 2469 | regexpu-core@^1.0.0: 2470 | version "1.0.0" 2471 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" 2472 | dependencies: 2473 | regenerate "^1.2.1" 2474 | regjsgen "^0.2.0" 2475 | regjsparser "^0.1.4" 2476 | 2477 | regjsgen@^0.2.0: 2478 | version "0.2.0" 2479 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2480 | 2481 | regjsparser@^0.1.4: 2482 | version "0.1.5" 2483 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2484 | dependencies: 2485 | jsesc "~0.5.0" 2486 | 2487 | remove-trailing-separator@^1.0.1: 2488 | version "1.1.0" 2489 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2490 | 2491 | repeat-element@^1.1.2: 2492 | version "1.1.2" 2493 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2494 | 2495 | repeat-string@^1.5.2: 2496 | version "1.6.1" 2497 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2498 | 2499 | request@2.81.0: 2500 | version "2.81.0" 2501 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2502 | dependencies: 2503 | aws-sign2 "~0.6.0" 2504 | aws4 "^1.2.1" 2505 | caseless "~0.12.0" 2506 | combined-stream "~1.0.5" 2507 | extend "~3.0.0" 2508 | forever-agent "~0.6.1" 2509 | form-data "~2.1.1" 2510 | har-validator "~4.2.1" 2511 | hawk "~3.1.3" 2512 | http-signature "~1.1.0" 2513 | is-typedarray "~1.0.0" 2514 | isstream "~0.1.2" 2515 | json-stringify-safe "~5.0.1" 2516 | mime-types "~2.1.7" 2517 | oauth-sign "~0.8.1" 2518 | performance-now "^0.2.0" 2519 | qs "~6.4.0" 2520 | safe-buffer "^5.0.1" 2521 | stringstream "~0.0.4" 2522 | tough-cookie "~2.3.0" 2523 | tunnel-agent "^0.6.0" 2524 | uuid "^3.0.0" 2525 | 2526 | require-directory@^2.1.1: 2527 | version "2.1.1" 2528 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2529 | 2530 | require-from-string@^1.1.0: 2531 | version "1.2.1" 2532 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" 2533 | 2534 | require-main-filename@^1.0.1: 2535 | version "1.0.1" 2536 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2537 | 2538 | right-align@^0.1.1: 2539 | version "0.1.3" 2540 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2541 | dependencies: 2542 | align-text "^0.1.1" 2543 | 2544 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 2545 | version "2.6.2" 2546 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2547 | dependencies: 2548 | glob "^7.0.5" 2549 | 2550 | ripemd160@^2.0.0, ripemd160@^2.0.1: 2551 | version "2.0.1" 2552 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 2553 | dependencies: 2554 | hash-base "^2.0.0" 2555 | inherits "^2.0.1" 2556 | 2557 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2558 | version "5.1.1" 2559 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2560 | 2561 | sax@~1.2.1: 2562 | version "1.2.4" 2563 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 2564 | 2565 | schema-utils@^0.3.0: 2566 | version "0.3.0" 2567 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf" 2568 | dependencies: 2569 | ajv "^5.0.0" 2570 | 2571 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2572 | version "5.4.1" 2573 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2574 | 2575 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2576 | version "2.0.0" 2577 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2578 | 2579 | set-immediate-shim@^1.0.1: 2580 | version "1.0.1" 2581 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2582 | 2583 | setimmediate@^1.0.4: 2584 | version "1.0.5" 2585 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2586 | 2587 | sha.js@^2.4.0, sha.js@^2.4.8: 2588 | version "2.4.9" 2589 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.9.tgz#98f64880474b74f4a38b8da9d3c0f2d104633e7d" 2590 | dependencies: 2591 | inherits "^2.0.1" 2592 | safe-buffer "^5.0.1" 2593 | 2594 | shebang-command@^1.2.0: 2595 | version "1.2.0" 2596 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2597 | dependencies: 2598 | shebang-regex "^1.0.0" 2599 | 2600 | shebang-regex@^1.0.0: 2601 | version "1.0.0" 2602 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2603 | 2604 | signal-exit@^3.0.0: 2605 | version "3.0.2" 2606 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2607 | 2608 | sntp@1.x.x: 2609 | version "1.0.9" 2610 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2611 | dependencies: 2612 | hoek "2.x.x" 2613 | 2614 | sort-keys@^1.0.0: 2615 | version "1.1.2" 2616 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 2617 | dependencies: 2618 | is-plain-obj "^1.0.0" 2619 | 2620 | source-list-map@^2.0.0: 2621 | version "2.0.0" 2622 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" 2623 | 2624 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3: 2625 | version "0.5.7" 2626 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2627 | 2628 | source-map@^0.6.1: 2629 | version "0.6.1" 2630 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2631 | 2632 | spdx-correct@~1.0.0: 2633 | version "1.0.2" 2634 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2635 | dependencies: 2636 | spdx-license-ids "^1.0.2" 2637 | 2638 | spdx-expression-parse@~1.0.0: 2639 | version "1.0.4" 2640 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2641 | 2642 | spdx-license-ids@^1.0.2: 2643 | version "1.2.2" 2644 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2645 | 2646 | sprintf-js@~1.0.2: 2647 | version "1.0.3" 2648 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2649 | 2650 | sshpk@^1.7.0: 2651 | version "1.13.1" 2652 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2653 | dependencies: 2654 | asn1 "~0.2.3" 2655 | assert-plus "^1.0.0" 2656 | dashdash "^1.12.0" 2657 | getpass "^0.1.1" 2658 | optionalDependencies: 2659 | bcrypt-pbkdf "^1.0.0" 2660 | ecc-jsbn "~0.1.1" 2661 | jsbn "~0.1.0" 2662 | tweetnacl "~0.14.0" 2663 | 2664 | stream-browserify@^2.0.1: 2665 | version "2.0.1" 2666 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 2667 | dependencies: 2668 | inherits "~2.0.1" 2669 | readable-stream "^2.0.2" 2670 | 2671 | stream-http@^2.3.1: 2672 | version "2.7.2" 2673 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" 2674 | dependencies: 2675 | builtin-status-codes "^3.0.0" 2676 | inherits "^2.0.1" 2677 | readable-stream "^2.2.6" 2678 | to-arraybuffer "^1.0.0" 2679 | xtend "^4.0.0" 2680 | 2681 | strict-uri-encode@^1.0.0: 2682 | version "1.1.0" 2683 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" 2684 | 2685 | string-width@^1.0.1, string-width@^1.0.2: 2686 | version "1.0.2" 2687 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2688 | dependencies: 2689 | code-point-at "^1.0.0" 2690 | is-fullwidth-code-point "^1.0.0" 2691 | strip-ansi "^3.0.0" 2692 | 2693 | string-width@^2.0.0: 2694 | version "2.1.1" 2695 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2696 | dependencies: 2697 | is-fullwidth-code-point "^2.0.0" 2698 | strip-ansi "^4.0.0" 2699 | 2700 | string.prototype.repeat@^0.2.0: 2701 | version "0.2.0" 2702 | resolved "https://registry.yarnpkg.com/string.prototype.repeat/-/string.prototype.repeat-0.2.0.tgz#aba36de08dcee6a5a337d49b2ea1da1b28fc0ecf" 2703 | 2704 | string_decoder@^0.10.25: 2705 | version "0.10.31" 2706 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2707 | 2708 | string_decoder@~1.0.3: 2709 | version "1.0.3" 2710 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2711 | dependencies: 2712 | safe-buffer "~5.1.0" 2713 | 2714 | stringstream@~0.0.4: 2715 | version "0.0.5" 2716 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2717 | 2718 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2719 | version "3.0.1" 2720 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2721 | dependencies: 2722 | ansi-regex "^2.0.0" 2723 | 2724 | strip-ansi@^4.0.0: 2725 | version "4.0.0" 2726 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2727 | dependencies: 2728 | ansi-regex "^3.0.0" 2729 | 2730 | strip-bom@^3.0.0: 2731 | version "3.0.0" 2732 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2733 | 2734 | strip-comments@^1.0.2: 2735 | version "1.0.2" 2736 | resolved "https://registry.yarnpkg.com/strip-comments/-/strip-comments-1.0.2.tgz#82b9c45e7f05873bee53f37168af930aa368679d" 2737 | integrity sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw== 2738 | dependencies: 2739 | babel-extract-comments "^1.0.0" 2740 | babel-plugin-transform-object-rest-spread "^6.26.0" 2741 | 2742 | strip-eof@^1.0.0: 2743 | version "1.0.0" 2744 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2745 | 2746 | strip-json-comments@~2.0.1: 2747 | version "2.0.1" 2748 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2749 | 2750 | style-loader@^0.19.0: 2751 | version "0.19.0" 2752 | resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.19.0.tgz#7258e788f0fee6a42d710eaf7d6c2412a4c50759" 2753 | dependencies: 2754 | loader-utils "^1.0.2" 2755 | schema-utils "^0.3.0" 2756 | 2757 | supports-color@^2.0.0: 2758 | version "2.0.0" 2759 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2760 | 2761 | supports-color@^3.2.3: 2762 | version "3.2.3" 2763 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2764 | dependencies: 2765 | has-flag "^1.0.0" 2766 | 2767 | supports-color@^4.0.0, supports-color@^4.2.1, supports-color@^4.4.0: 2768 | version "4.5.0" 2769 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 2770 | dependencies: 2771 | has-flag "^2.0.0" 2772 | 2773 | supports-color@^5.3.0: 2774 | version "5.4.0" 2775 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 2776 | dependencies: 2777 | has-flag "^3.0.0" 2778 | 2779 | supports-color@^6.1.0: 2780 | version "6.1.0" 2781 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" 2782 | integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== 2783 | dependencies: 2784 | has-flag "^3.0.0" 2785 | 2786 | svgo@^0.7.0: 2787 | version "0.7.2" 2788 | resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" 2789 | dependencies: 2790 | coa "~1.0.1" 2791 | colors "~1.1.2" 2792 | csso "~2.3.1" 2793 | js-yaml "~3.7.0" 2794 | mkdirp "~0.5.1" 2795 | sax "~1.2.1" 2796 | whet.extend "~0.9.9" 2797 | 2798 | tailwindcss@^0.7.4: 2799 | version "0.7.4" 2800 | resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-0.7.4.tgz#fb7926821d42eacdc12e6621a49d21f37a3ff9e9" 2801 | integrity sha512-+GeQjHRJ2VmeLkrNwMCbPDfm2cc5P8eoc7n+DtZfI8oQdlo5eSHqsIlPEuZOtoqQlIALsd2jAggWrUUBFGP2ow== 2802 | dependencies: 2803 | autoprefixer "^9.4.5" 2804 | bytes "^3.0.0" 2805 | chalk "^2.4.1" 2806 | css.escape "^1.5.1" 2807 | fs-extra "^4.0.2" 2808 | lodash "^4.17.5" 2809 | node-emoji "^1.8.1" 2810 | perfectionist "^2.4.0" 2811 | postcss "^7.0.11" 2812 | postcss-functions "^3.0.0" 2813 | postcss-js "^2.0.0" 2814 | postcss-nested "^4.1.1" 2815 | postcss-selector-parser "^5.0.0" 2816 | pretty-hrtime "^1.0.3" 2817 | strip-comments "^1.0.2" 2818 | 2819 | tapable@^0.2.7: 2820 | version "0.2.8" 2821 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" 2822 | 2823 | tar-pack@^3.4.0: 2824 | version "3.4.1" 2825 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2826 | dependencies: 2827 | debug "^2.2.0" 2828 | fstream "^1.0.10" 2829 | fstream-ignore "^1.0.5" 2830 | once "^1.3.3" 2831 | readable-stream "^2.1.4" 2832 | rimraf "^2.5.1" 2833 | tar "^2.2.1" 2834 | uid-number "^0.0.6" 2835 | 2836 | tar@^2.2.1: 2837 | version "2.2.1" 2838 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2839 | dependencies: 2840 | block-stream "*" 2841 | fstream "^1.0.2" 2842 | inherits "2" 2843 | 2844 | timers-browserify@^2.0.2: 2845 | version "2.0.4" 2846 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6" 2847 | dependencies: 2848 | setimmediate "^1.0.4" 2849 | 2850 | to-arraybuffer@^1.0.0: 2851 | version "1.0.1" 2852 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 2853 | 2854 | tough-cookie@~2.3.0: 2855 | version "2.3.3" 2856 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2857 | dependencies: 2858 | punycode "^1.4.1" 2859 | 2860 | tty-browserify@0.0.0: 2861 | version "0.0.0" 2862 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 2863 | 2864 | tunnel-agent@^0.6.0: 2865 | version "0.6.0" 2866 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2867 | dependencies: 2868 | safe-buffer "^5.0.1" 2869 | 2870 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2871 | version "0.14.5" 2872 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2873 | 2874 | uglify-js@^2.8.29: 2875 | version "2.8.29" 2876 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2877 | dependencies: 2878 | source-map "~0.5.1" 2879 | yargs "~3.10.0" 2880 | optionalDependencies: 2881 | uglify-to-browserify "~1.0.0" 2882 | 2883 | uglify-to-browserify@~1.0.0: 2884 | version "1.0.2" 2885 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2886 | 2887 | uglifyjs-webpack-plugin@^0.4.6: 2888 | version "0.4.6" 2889 | resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz#b951f4abb6bd617e66f63eb891498e391763e309" 2890 | dependencies: 2891 | source-map "^0.5.6" 2892 | uglify-js "^2.8.29" 2893 | webpack-sources "^1.0.1" 2894 | 2895 | uid-number@^0.0.6: 2896 | version "0.0.6" 2897 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2898 | 2899 | uniq@^1.0.1: 2900 | version "1.0.1" 2901 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 2902 | 2903 | uniqid@^4.0.0: 2904 | version "4.1.1" 2905 | resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1" 2906 | dependencies: 2907 | macaddress "^0.2.8" 2908 | 2909 | uniqs@^2.0.0: 2910 | version "2.0.0" 2911 | resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" 2912 | 2913 | universalify@^0.1.0: 2914 | version "0.1.1" 2915 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" 2916 | 2917 | url@^0.11.0: 2918 | version "0.11.0" 2919 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 2920 | dependencies: 2921 | punycode "1.3.2" 2922 | querystring "0.2.0" 2923 | 2924 | util-deprecate@~1.0.1: 2925 | version "1.0.2" 2926 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2927 | 2928 | util@0.10.3, util@^0.10.3: 2929 | version "0.10.3" 2930 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 2931 | dependencies: 2932 | inherits "2.0.1" 2933 | 2934 | uuid@^3.0.0: 2935 | version "3.1.0" 2936 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2937 | 2938 | validate-npm-package-license@^3.0.1: 2939 | version "3.0.1" 2940 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2941 | dependencies: 2942 | spdx-correct "~1.0.0" 2943 | spdx-expression-parse "~1.0.0" 2944 | 2945 | vendors@^1.0.0: 2946 | version "1.0.1" 2947 | resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" 2948 | 2949 | verror@1.10.0: 2950 | version "1.10.0" 2951 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2952 | dependencies: 2953 | assert-plus "^1.0.0" 2954 | core-util-is "1.0.2" 2955 | extsprintf "^1.2.0" 2956 | 2957 | vm-browserify@0.0.4: 2958 | version "0.0.4" 2959 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 2960 | dependencies: 2961 | indexof "0.0.1" 2962 | 2963 | watchpack@^1.4.0: 2964 | version "1.4.0" 2965 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac" 2966 | dependencies: 2967 | async "^2.1.2" 2968 | chokidar "^1.7.0" 2969 | graceful-fs "^4.1.2" 2970 | 2971 | webpack-sources@^1.0.1: 2972 | version "1.0.1" 2973 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.0.1.tgz#c7356436a4d13123be2e2426a05d1dad9cbe65cf" 2974 | dependencies: 2975 | source-list-map "^2.0.0" 2976 | source-map "~0.5.3" 2977 | 2978 | webpack@^3.8.1: 2979 | version "3.8.1" 2980 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.8.1.tgz#b16968a81100abe61608b0153c9159ef8bb2bd83" 2981 | dependencies: 2982 | acorn "^5.0.0" 2983 | acorn-dynamic-import "^2.0.0" 2984 | ajv "^5.1.5" 2985 | ajv-keywords "^2.0.0" 2986 | async "^2.1.2" 2987 | enhanced-resolve "^3.4.0" 2988 | escope "^3.6.0" 2989 | interpret "^1.0.0" 2990 | json-loader "^0.5.4" 2991 | json5 "^0.5.1" 2992 | loader-runner "^2.3.0" 2993 | loader-utils "^1.1.0" 2994 | memory-fs "~0.4.1" 2995 | mkdirp "~0.5.0" 2996 | node-libs-browser "^2.0.0" 2997 | source-map "^0.5.3" 2998 | supports-color "^4.2.1" 2999 | tapable "^0.2.7" 3000 | uglifyjs-webpack-plugin "^0.4.6" 3001 | watchpack "^1.4.0" 3002 | webpack-sources "^1.0.1" 3003 | yargs "^8.0.2" 3004 | 3005 | whet.extend@~0.9.9: 3006 | version "0.9.9" 3007 | resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" 3008 | 3009 | which-module@^2.0.0: 3010 | version "2.0.0" 3011 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3012 | 3013 | which@^1.2.9: 3014 | version "1.3.0" 3015 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3016 | dependencies: 3017 | isexe "^2.0.0" 3018 | 3019 | wide-align@^1.1.0: 3020 | version "1.1.2" 3021 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 3022 | dependencies: 3023 | string-width "^1.0.2" 3024 | 3025 | window-size@0.1.0: 3026 | version "0.1.0" 3027 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3028 | 3029 | wordwrap@0.0.2: 3030 | version "0.0.2" 3031 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3032 | 3033 | wrap-ansi@^2.0.0: 3034 | version "2.1.0" 3035 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3036 | dependencies: 3037 | string-width "^1.0.1" 3038 | strip-ansi "^3.0.1" 3039 | 3040 | wrappy@1: 3041 | version "1.0.2" 3042 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3043 | 3044 | write-file-stdout@0.0.2: 3045 | version "0.0.2" 3046 | resolved "https://registry.yarnpkg.com/write-file-stdout/-/write-file-stdout-0.0.2.tgz#c252d7c7c5b1b402897630e3453c7bfe690d9ca1" 3047 | 3048 | xtend@^4.0.0: 3049 | version "4.0.1" 3050 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3051 | 3052 | y18n@^3.2.1: 3053 | version "3.2.1" 3054 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 3055 | 3056 | yallist@^2.1.2: 3057 | version "2.1.2" 3058 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3059 | 3060 | yargs-parser@^7.0.0: 3061 | version "7.0.0" 3062 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 3063 | dependencies: 3064 | camelcase "^4.1.0" 3065 | 3066 | yargs@^8.0.2: 3067 | version "8.0.2" 3068 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 3069 | dependencies: 3070 | camelcase "^4.1.0" 3071 | cliui "^3.2.0" 3072 | decamelize "^1.1.1" 3073 | get-caller-file "^1.0.1" 3074 | os-locale "^2.0.0" 3075 | read-pkg-up "^2.0.0" 3076 | require-directory "^2.1.1" 3077 | require-main-filename "^1.0.1" 3078 | set-blocking "^2.0.0" 3079 | string-width "^2.0.0" 3080 | which-module "^2.0.0" 3081 | y18n "^3.2.1" 3082 | yargs-parser "^7.0.0" 3083 | 3084 | yargs@~3.10.0: 3085 | version "3.10.0" 3086 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3087 | dependencies: 3088 | camelcase "^1.0.2" 3089 | cliui "^2.1.0" 3090 | decamelize "^1.0.0" 3091 | window-size "0.1.0" 3092 | --------------------------------------------------------------------------------