├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── circle.yml ├── index.js ├── package.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | *.log 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) egoist <0x142857@gmail.com> (https://egoistian.com) 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 13 | all 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 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # interpolate-html-plugin 2 | 3 | [![NPM version](https://img.shields.io/npm/v/interpolate-html-plugin.svg?style=flat)](https://npmjs.com/package/interpolate-html-plugin) [![NPM downloads](https://img.shields.io/npm/dm/interpolate-html-plugin.svg?style=flat)](https://npmjs.com/package/interpolate-html-plugin) [![Build Status](https://img.shields.io/circleci/project/egoist/interpolate-html-plugin/master.svg?style=flat)](https://circleci.com/gh/egoist/interpolate-html-plugin) [![donate](https://img.shields.io/badge/$-donate-ff69b4.svg?maxAge=2592000&style=flat)](https://github.com/egoist/donate) 4 | 5 | Extracted from [create-react-app](https://github.com/facebookincubator/create-react-app/blob/d1250743adc2abc41d80d566c5f817e1a16da279/packages/react-dev-utils/InterpolateHtmlPlugin.js) 6 | 7 | ## Install 8 | 9 | This plugin is supposed to work with [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin/) 10 | 11 | ```bash 12 | yarn add interpolate-html-plugin --dev 13 | ``` 14 | 15 | ## Usage 16 | 17 | ```js 18 | module.exports = { 19 | plugins: [ 20 | new InterpolateHtmlPlugin({ 21 | 'NODE_ENV': 'development' 22 | }) 23 | ] 24 | } 25 | ``` 26 | 27 | Then you can use `%NODE_ENV%` in your template html file, and you can use it with html-webpack-plugin's default template syntax (lodash.template): 28 | 29 | ```js 30 | <% if ('%NODE_ENV%' === 'development') { %> 31 | do something 32 | <% } %> 33 | ``` 34 | 35 | ## Contributing 36 | 37 | 1. Fork it! 38 | 2. Create your feature branch: `git checkout -b my-new-feature` 39 | 3. Commit your changes: `git commit -am 'Add some feature'` 40 | 4. Push to the branch: `git push origin my-new-feature` 41 | 5. Submit a pull request :D 42 | 43 | 44 | ## Author 45 | 46 | **interpolate-html-plugin** © [egoist](https://github.com/egoist), Released under the [MIT](./LICENSE) License.
47 | Authored and maintained by egoist with help from contributors ([list](https://github.com/egoist/interpolate-html-plugin/contributors)). 48 | 49 | > [egoistian.com](https://egoistian.com) · GitHub [@egoist](https://github.com/egoist) · Twitter [@_egoistlily](https://twitter.com/_egoistlily) 50 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- 1 | machine: 2 | node: 3 | version: 7 4 | environment: 5 | PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" 6 | 7 | dependencies: 8 | override: 9 | - yarn 10 | cache_directories: 11 | - ~/.cache/yarn 12 | 13 | test: 14 | override: 15 | - yarn test 16 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | /* 4 | * The code is almost copied directly from 5 | * https://github.com/facebookincubator/create-react-app/blob/d1250743adc2abc41d80d566c5f817e1a16da279/packages/react-dev-utils/InterpolateHtmlPlugin.js 6 | */ 7 | 8 | /** 9 | * Copyright (c) 2015-present, Facebook, Inc. 10 | * All rights reserved. 11 | * 12 | * This source code is licensed under the BSD-style license found in the 13 | * LICENSE file in the root directory of this source tree. An additional grant 14 | * of patent rights can be found in the PATENTS file in the same directory. 15 | */ 16 | 17 | // This Webpack plugin lets us interpolate custom variables into `index.html`. 18 | // Usage: `new InterpolateHtmlPlugin({ 'MY_VARIABLE': 42 })` 19 | // Then, you can use %MY_VARIABLE% in your `index.html`. 20 | 21 | // It works in tandem with HtmlWebpackPlugin. 22 | // Learn more about creating plugins like this: 23 | // https://github.com/ampedandwired/html-webpack-plugin#events 24 | 25 | 'use strict' 26 | const HtmlWebpackPlugin = require('html-webpack-plugin') 27 | const escapeStringRegexp = require('escape-string-regexp') 28 | 29 | class InterpolateHtmlPlugin { 30 | constructor(replacements) { 31 | this.replacements = replacements 32 | } 33 | 34 | apply(compiler) { 35 | compiler.hooks.compilation.tap('InterpolateHtmlPlugin', compilation => { 36 | HtmlWebpackPlugin.getHooks(compilation).afterTemplateExecution.tap( 37 | 'InterpolateHtmlPlugin', 38 | data => { 39 | // Run HTML through a series of user-specified string replacements. 40 | Object.keys(this.replacements).forEach(key => { 41 | const value = this.replacements[key] 42 | data.html = data.html.replace( 43 | new RegExp('%' + escapeStringRegexp(key) + '%', 'g'), 44 | value 45 | ) 46 | }) 47 | } 48 | ) 49 | }) 50 | } 51 | } 52 | 53 | module.exports = InterpolateHtmlPlugin 54 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "interpolate-html-plugin", 3 | "version": "4.0.0", 4 | "description": "interpolate custom variables into index.html", 5 | "repository": { 6 | "url": "egoist/interpolate-html-plugin", 7 | "type": "git" 8 | }, 9 | "main": "index.js", 10 | "files": [ 11 | "index.js" 12 | ], 13 | "scripts": { 14 | "test": "npm run lint", 15 | "lint": "xo" 16 | }, 17 | "author": "egoist <0x142857@gmail.com>", 18 | "license": "MIT", 19 | "jest": { 20 | "testEnvironment": "node" 21 | }, 22 | "devDependencies": { 23 | "html-webpack-plugin": "^4.5.1", 24 | "xo": "^0.17.1" 25 | }, 26 | "xo": { 27 | "space": 2, 28 | "semicolon": false, 29 | "envs": [ 30 | "jest" 31 | ] 32 | }, 33 | "dependencies": { 34 | "escape-string-regexp": "^1.0.5" 35 | }, 36 | "peerDependencies": { 37 | "html-webpack-plugin": ">=4.5.1" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/anymatch@*": 6 | version "1.3.1" 7 | resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a" 8 | integrity sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA== 9 | 10 | "@types/html-minifier-terser@^5.0.0": 11 | version "5.1.1" 12 | resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#3c9ee980f1a10d6021ae6632ca3e79ca2ec4fb50" 13 | integrity sha512-giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA== 14 | 15 | "@types/node@*": 16 | version "14.14.21" 17 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.21.tgz#d934aacc22424fe9622ebf6857370c052eae464e" 18 | integrity sha512-cHYfKsnwllYhjOzuC5q1VpguABBeecUp24yFluHpn/BQaVxB1CuQ1FSRZCzrPxrkIfWISXV2LbeoBthLWg0+0A== 19 | 20 | "@types/source-list-map@*": 21 | version "0.1.2" 22 | resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9" 23 | integrity sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA== 24 | 25 | "@types/tapable@*", "@types/tapable@^1.0.5": 26 | version "1.0.6" 27 | resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.6.tgz#a9ca4b70a18b270ccb2bc0aaafefd1d486b7ea74" 28 | integrity sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA== 29 | 30 | "@types/uglify-js@*": 31 | version "3.11.1" 32 | resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.11.1.tgz#97ff30e61a0aa6876c270b5f538737e2d6ab8ceb" 33 | integrity sha512-7npvPKV+jINLu1SpSYVWG8KvyJBhBa8tmzMMdDoVc2pWUYHN8KIXlPJhjJ4LT97c4dXJA2SHL/q6ADbDriZN+Q== 34 | dependencies: 35 | source-map "^0.6.1" 36 | 37 | "@types/webpack-sources@*": 38 | version "2.1.0" 39 | resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-2.1.0.tgz#8882b0bd62d1e0ce62f183d0d01b72e6e82e8c10" 40 | integrity sha512-LXn/oYIpBeucgP1EIJbKQ2/4ZmpvRl+dlrFdX7+94SKRUV3Evy3FsfMZY318vGhkWUS5MPhtOM3w1/hCOAOXcg== 41 | dependencies: 42 | "@types/node" "*" 43 | "@types/source-list-map" "*" 44 | source-map "^0.7.3" 45 | 46 | "@types/webpack@^4.41.8": 47 | version "4.41.26" 48 | resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.26.tgz#27a30d7d531e16489f9c7607c747be6bc1a459ef" 49 | integrity sha512-7ZyTfxjCRwexh+EJFwRUM+CDB2XvgHl4vfuqf1ZKrgGvcS5BrNvPQqJh3tsZ0P6h6Aa1qClVHaJZszLPzpqHeA== 50 | dependencies: 51 | "@types/anymatch" "*" 52 | "@types/node" "*" 53 | "@types/tapable" "*" 54 | "@types/uglify-js" "*" 55 | "@types/webpack-sources" "*" 56 | source-map "^0.6.0" 57 | 58 | acorn-jsx@^3.0.0: 59 | version "3.0.1" 60 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 61 | dependencies: 62 | acorn "^3.0.4" 63 | 64 | acorn@^3.0.4: 65 | version "3.3.0" 66 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 67 | 68 | acorn@^5.5.0: 69 | version "5.5.3" 70 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9" 71 | 72 | ajv-keywords@^1.0.0: 73 | version "1.5.1" 74 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 75 | 76 | ajv@^4.7.0: 77 | version "4.11.8" 78 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 79 | dependencies: 80 | co "^4.6.0" 81 | json-stable-stringify "^1.0.1" 82 | 83 | ansi-align@^1.1.0: 84 | version "1.1.0" 85 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-1.1.0.tgz#2f0c1658829739add5ebb15e6b0c6e3423f016ba" 86 | dependencies: 87 | string-width "^1.0.1" 88 | 89 | ansi-escapes@^1.1.0: 90 | version "1.4.0" 91 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 92 | 93 | ansi-escapes@^2.0.0: 94 | version "2.0.0" 95 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" 96 | 97 | ansi-regex@^2.0.0: 98 | version "2.1.1" 99 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 100 | 101 | ansi-regex@^3.0.0: 102 | version "3.0.0" 103 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 104 | 105 | ansi-styles@^2.2.1: 106 | version "2.2.1" 107 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 108 | 109 | ansi-styles@^3.2.1: 110 | version "3.2.1" 111 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 112 | dependencies: 113 | color-convert "^1.9.0" 114 | 115 | argparse@^1.0.7: 116 | version "1.0.10" 117 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 118 | dependencies: 119 | sprintf-js "~1.0.2" 120 | 121 | array-differ@^1.0.0: 122 | version "1.0.0" 123 | resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" 124 | 125 | array-find-index@^1.0.1: 126 | version "1.0.2" 127 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 128 | 129 | array-union@^1.0.1: 130 | version "1.0.2" 131 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 132 | dependencies: 133 | array-uniq "^1.0.1" 134 | 135 | array-uniq@^1.0.1: 136 | version "1.0.3" 137 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 138 | 139 | array-unique@^0.2.1: 140 | version "0.2.1" 141 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 142 | 143 | arrify@^1.0.0, arrify@^1.0.1: 144 | version "1.0.1" 145 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 146 | 147 | babel-code-frame@^6.16.0: 148 | version "6.26.0" 149 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 150 | dependencies: 151 | chalk "^1.1.3" 152 | esutils "^2.0.2" 153 | js-tokens "^3.0.2" 154 | 155 | balanced-match@^1.0.0: 156 | version "1.0.0" 157 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 158 | 159 | big.js@^5.2.2: 160 | version "5.2.2" 161 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" 162 | integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== 163 | 164 | boolbase@^1.0.0, boolbase@~1.0.0: 165 | version "1.0.0" 166 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 167 | integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= 168 | 169 | boxen@^0.6.0: 170 | version "0.6.0" 171 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-0.6.0.tgz#8364d4248ac34ff0ef1b2f2bf49a6c60ce0d81b6" 172 | dependencies: 173 | ansi-align "^1.1.0" 174 | camelcase "^2.1.0" 175 | chalk "^1.1.1" 176 | cli-boxes "^1.0.0" 177 | filled-array "^1.0.0" 178 | object-assign "^4.0.1" 179 | repeating "^2.0.0" 180 | string-width "^1.0.1" 181 | widest-line "^1.0.0" 182 | 183 | brace-expansion@^1.1.7: 184 | version "1.1.11" 185 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 186 | dependencies: 187 | balanced-match "^1.0.0" 188 | concat-map "0.0.1" 189 | 190 | buf-compare@^1.0.0: 191 | version "1.0.1" 192 | resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" 193 | 194 | buffer-from@^1.0.0: 195 | version "1.0.0" 196 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531" 197 | 198 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 199 | version "1.1.1" 200 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 201 | 202 | call-bind@^1.0.0: 203 | version "1.0.2" 204 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 205 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 206 | dependencies: 207 | function-bind "^1.1.1" 208 | get-intrinsic "^1.0.2" 209 | 210 | caller-path@^0.1.0: 211 | version "0.1.0" 212 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 213 | dependencies: 214 | callsites "^0.2.0" 215 | 216 | callsites@^0.2.0: 217 | version "0.2.0" 218 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 219 | 220 | camel-case@^4.1.1: 221 | version "4.1.2" 222 | resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" 223 | integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== 224 | dependencies: 225 | pascal-case "^3.1.2" 226 | tslib "^2.0.3" 227 | 228 | camelcase-keys@^2.0.0: 229 | version "2.1.0" 230 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 231 | dependencies: 232 | camelcase "^2.0.0" 233 | map-obj "^1.0.0" 234 | 235 | camelcase@^2.0.0, camelcase@^2.1.0: 236 | version "2.1.1" 237 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 238 | 239 | capture-stack-trace@^1.0.0: 240 | version "1.0.0" 241 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" 242 | 243 | chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 244 | version "1.1.3" 245 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 246 | dependencies: 247 | ansi-styles "^2.2.1" 248 | escape-string-regexp "^1.0.2" 249 | has-ansi "^2.0.0" 250 | strip-ansi "^3.0.0" 251 | supports-color "^2.0.0" 252 | 253 | chalk@^2.0.1, chalk@^2.1.0: 254 | version "2.3.2" 255 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.2.tgz#250dc96b07491bfd601e648d66ddf5f60c7a5c65" 256 | dependencies: 257 | ansi-styles "^3.2.1" 258 | escape-string-regexp "^1.0.5" 259 | supports-color "^5.3.0" 260 | 261 | circular-json@^0.3.1: 262 | version "0.3.3" 263 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 264 | 265 | clean-css@^4.2.3: 266 | version "4.2.3" 267 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.3.tgz#507b5de7d97b48ee53d84adb0160ff6216380f78" 268 | integrity sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA== 269 | dependencies: 270 | source-map "~0.6.0" 271 | 272 | cli-boxes@^1.0.0: 273 | version "1.0.0" 274 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 275 | 276 | cli-cursor@^1.0.1: 277 | version "1.0.2" 278 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 279 | dependencies: 280 | restore-cursor "^1.0.1" 281 | 282 | cli-width@^2.0.0: 283 | version "2.2.0" 284 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 285 | 286 | co@^4.6.0: 287 | version "4.6.0" 288 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 289 | 290 | code-point-at@^1.0.0: 291 | version "1.1.0" 292 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 293 | 294 | color-convert@^1.9.0: 295 | version "1.9.1" 296 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 297 | dependencies: 298 | color-name "^1.1.1" 299 | 300 | color-name@^1.1.1: 301 | version "1.1.3" 302 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 303 | 304 | commander@^2.20.0: 305 | version "2.20.3" 306 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 307 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 308 | 309 | commander@^4.1.1: 310 | version "4.1.1" 311 | resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" 312 | integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== 313 | 314 | concat-map@0.0.1: 315 | version "0.0.1" 316 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 317 | 318 | concat-stream@^1.5.2: 319 | version "1.6.2" 320 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 321 | dependencies: 322 | buffer-from "^1.0.0" 323 | inherits "^2.0.3" 324 | readable-stream "^2.2.2" 325 | typedarray "^0.0.6" 326 | 327 | configstore@^2.0.0: 328 | version "2.1.0" 329 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-2.1.0.tgz#737a3a7036e9886102aa6099e47bb33ab1aba1a1" 330 | dependencies: 331 | dot-prop "^3.0.0" 332 | graceful-fs "^4.1.2" 333 | mkdirp "^0.5.0" 334 | object-assign "^4.0.1" 335 | os-tmpdir "^1.0.0" 336 | osenv "^0.1.0" 337 | uuid "^2.0.1" 338 | write-file-atomic "^1.1.2" 339 | xdg-basedir "^2.0.0" 340 | 341 | contains-path@^0.1.0: 342 | version "0.1.0" 343 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 344 | 345 | core-assert@^0.2.0: 346 | version "0.2.1" 347 | resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" 348 | dependencies: 349 | buf-compare "^1.0.0" 350 | is-error "^2.2.0" 351 | 352 | core-js@^2.0.0: 353 | version "2.5.4" 354 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.4.tgz#f2c8bf181f2a80b92f360121429ce63a2f0aeae0" 355 | 356 | core-util-is@~1.0.0: 357 | version "1.0.2" 358 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 359 | 360 | create-error-class@^3.0.1: 361 | version "3.0.2" 362 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 363 | dependencies: 364 | capture-stack-trace "^1.0.0" 365 | 366 | cross-spawn@^4.0.0: 367 | version "4.0.2" 368 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" 369 | dependencies: 370 | lru-cache "^4.0.1" 371 | which "^1.2.9" 372 | 373 | css-select@^2.0.2: 374 | version "2.1.0" 375 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef" 376 | integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== 377 | dependencies: 378 | boolbase "^1.0.0" 379 | css-what "^3.2.1" 380 | domutils "^1.7.0" 381 | nth-check "^1.0.2" 382 | 383 | css-what@^3.2.1: 384 | version "3.4.2" 385 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4" 386 | integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ== 387 | 388 | currently-unhandled@^0.4.1: 389 | version "0.4.1" 390 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 391 | dependencies: 392 | array-find-index "^1.0.1" 393 | 394 | d@1: 395 | version "1.0.0" 396 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 397 | dependencies: 398 | es5-ext "^0.10.9" 399 | 400 | debug@^2.1.1, debug@^2.2.0, debug@^2.6.8, debug@^2.6.9: 401 | version "2.6.9" 402 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 403 | dependencies: 404 | ms "2.0.0" 405 | 406 | decamelize@^1.1.2: 407 | version "1.2.0" 408 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 409 | 410 | deep-assign@^1.0.0: 411 | version "1.0.0" 412 | resolved "https://registry.yarnpkg.com/deep-assign/-/deep-assign-1.0.0.tgz#b092743be8427dc621ea0067cdec7e70dd19f37b" 413 | dependencies: 414 | is-obj "^1.0.0" 415 | 416 | deep-extend@~0.4.0: 417 | version "0.4.2" 418 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 419 | 420 | deep-is@~0.1.3: 421 | version "0.1.3" 422 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 423 | 424 | deep-strict-equal@^0.2.0: 425 | version "0.2.0" 426 | resolved "https://registry.yarnpkg.com/deep-strict-equal/-/deep-strict-equal-0.2.0.tgz#4a078147a8ab57f6a0d4f5547243cd22f44eb4e4" 427 | dependencies: 428 | core-assert "^0.2.0" 429 | 430 | define-properties@^1.1.2, define-properties@^1.1.3: 431 | version "1.1.3" 432 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 433 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 434 | dependencies: 435 | object-keys "^1.0.12" 436 | 437 | del@^2.0.2: 438 | version "2.2.2" 439 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 440 | dependencies: 441 | globby "^5.0.0" 442 | is-path-cwd "^1.0.0" 443 | is-path-in-cwd "^1.0.0" 444 | object-assign "^4.0.1" 445 | pify "^2.0.0" 446 | pinkie-promise "^2.0.0" 447 | rimraf "^2.2.8" 448 | 449 | detect-indent@^5.0.0: 450 | version "5.0.0" 451 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" 452 | 453 | doctrine@1.5.0: 454 | version "1.5.0" 455 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 456 | dependencies: 457 | esutils "^2.0.2" 458 | isarray "^1.0.0" 459 | 460 | doctrine@^2.0.0: 461 | version "2.1.0" 462 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 463 | dependencies: 464 | esutils "^2.0.2" 465 | 466 | dom-converter@^0.2: 467 | version "0.2.0" 468 | resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" 469 | integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== 470 | dependencies: 471 | utila "~0.4" 472 | 473 | dom-serializer@0: 474 | version "0.2.2" 475 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" 476 | integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== 477 | dependencies: 478 | domelementtype "^2.0.1" 479 | entities "^2.0.0" 480 | 481 | domelementtype@1, domelementtype@^1.3.1: 482 | version "1.3.1" 483 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" 484 | integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== 485 | 486 | domelementtype@^2.0.1: 487 | version "2.1.0" 488 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.1.0.tgz#a851c080a6d1c3d94344aed151d99f669edf585e" 489 | integrity sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w== 490 | 491 | domhandler@^2.3.0: 492 | version "2.4.2" 493 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" 494 | integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== 495 | dependencies: 496 | domelementtype "1" 497 | 498 | domutils@^1.5.1, domutils@^1.7.0: 499 | version "1.7.0" 500 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" 501 | integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== 502 | dependencies: 503 | dom-serializer "0" 504 | domelementtype "1" 505 | 506 | dot-case@^3.0.4: 507 | version "3.0.4" 508 | resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" 509 | integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== 510 | dependencies: 511 | no-case "^3.0.4" 512 | tslib "^2.0.3" 513 | 514 | dot-prop@^3.0.0: 515 | version "3.0.0" 516 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 517 | dependencies: 518 | is-obj "^1.0.0" 519 | 520 | duplexer2@^0.1.4: 521 | version "0.1.4" 522 | resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz#8b12dab878c0d69e3e7891051662a32fc6bddcc1" 523 | dependencies: 524 | readable-stream "^2.0.2" 525 | 526 | emojis-list@^3.0.0: 527 | version "3.0.0" 528 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" 529 | integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== 530 | 531 | enhance-visitors@^1.0.0: 532 | version "1.0.0" 533 | resolved "https://registry.yarnpkg.com/enhance-visitors/-/enhance-visitors-1.0.0.tgz#aa945d05da465672a1ebd38fee2ed3da8518e95a" 534 | dependencies: 535 | lodash "^4.13.1" 536 | 537 | entities@^1.1.1: 538 | version "1.1.2" 539 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" 540 | integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== 541 | 542 | entities@^2.0.0: 543 | version "2.1.0" 544 | resolved "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5" 545 | integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== 546 | 547 | error-ex@^1.2.0, error-ex@^1.3.1: 548 | version "1.3.1" 549 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 550 | dependencies: 551 | is-arrayish "^0.2.1" 552 | 553 | es-abstract@^1.18.0-next.1: 554 | version "1.18.0-next.1" 555 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68" 556 | integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA== 557 | dependencies: 558 | es-to-primitive "^1.2.1" 559 | function-bind "^1.1.1" 560 | has "^1.0.3" 561 | has-symbols "^1.0.1" 562 | is-callable "^1.2.2" 563 | is-negative-zero "^2.0.0" 564 | is-regex "^1.1.1" 565 | object-inspect "^1.8.0" 566 | object-keys "^1.1.1" 567 | object.assign "^4.1.1" 568 | string.prototype.trimend "^1.0.1" 569 | string.prototype.trimstart "^1.0.1" 570 | 571 | es-to-primitive@^1.2.1: 572 | version "1.2.1" 573 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 574 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 575 | dependencies: 576 | is-callable "^1.1.4" 577 | is-date-object "^1.0.1" 578 | is-symbol "^1.0.2" 579 | 580 | es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14: 581 | version "0.10.42" 582 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.42.tgz#8c07dd33af04d5dcd1310b5cef13bea63a89ba8d" 583 | dependencies: 584 | es6-iterator "~2.0.3" 585 | es6-symbol "~3.1.1" 586 | next-tick "1" 587 | 588 | es6-iterator@^2.0.1, es6-iterator@~2.0.1, es6-iterator@~2.0.3: 589 | version "2.0.3" 590 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 591 | dependencies: 592 | d "1" 593 | es5-ext "^0.10.35" 594 | es6-symbol "^3.1.1" 595 | 596 | es6-map@^0.1.3: 597 | version "0.1.5" 598 | resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" 599 | dependencies: 600 | d "1" 601 | es5-ext "~0.10.14" 602 | es6-iterator "~2.0.1" 603 | es6-set "~0.1.5" 604 | es6-symbol "~3.1.1" 605 | event-emitter "~0.3.5" 606 | 607 | es6-set@~0.1.5: 608 | version "0.1.5" 609 | resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" 610 | dependencies: 611 | d "1" 612 | es5-ext "~0.10.14" 613 | es6-iterator "~2.0.1" 614 | es6-symbol "3.1.1" 615 | event-emitter "~0.3.5" 616 | 617 | es6-symbol@3.1.1, es6-symbol@^3.1.1, es6-symbol@~3.1.1: 618 | version "3.1.1" 619 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 620 | dependencies: 621 | d "1" 622 | es5-ext "~0.10.14" 623 | 624 | es6-weak-map@^2.0.1: 625 | version "2.0.2" 626 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 627 | dependencies: 628 | d "1" 629 | es5-ext "^0.10.14" 630 | es6-iterator "^2.0.1" 631 | es6-symbol "^3.1.1" 632 | 633 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 634 | version "1.0.5" 635 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 636 | 637 | escope@^3.6.0: 638 | version "3.6.0" 639 | resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" 640 | dependencies: 641 | es6-map "^0.1.3" 642 | es6-weak-map "^2.0.1" 643 | esrecurse "^4.1.0" 644 | estraverse "^4.1.1" 645 | 646 | eslint-config-xo@^0.17.0: 647 | version "0.17.0" 648 | resolved "https://registry.yarnpkg.com/eslint-config-xo/-/eslint-config-xo-0.17.0.tgz#1e7d4a86bf49179805c4622e832a7b1beeb4e881" 649 | 650 | eslint-formatter-pretty@^1.0.0: 651 | version "1.3.0" 652 | resolved "https://registry.yarnpkg.com/eslint-formatter-pretty/-/eslint-formatter-pretty-1.3.0.tgz#985d9e41c1f8475f4a090c5dbd2dfcf2821d607e" 653 | dependencies: 654 | ansi-escapes "^2.0.0" 655 | chalk "^2.1.0" 656 | log-symbols "^2.0.0" 657 | plur "^2.1.2" 658 | string-width "^2.0.0" 659 | 660 | eslint-import-resolver-node@^0.3.1: 661 | version "0.3.2" 662 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" 663 | dependencies: 664 | debug "^2.6.9" 665 | resolve "^1.5.0" 666 | 667 | eslint-module-utils@^2.2.0: 668 | version "2.2.0" 669 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz#b270362cd88b1a48ad308976ce7fa54e98411746" 670 | dependencies: 671 | debug "^2.6.8" 672 | pkg-dir "^1.0.0" 673 | 674 | eslint-plugin-ava@^3.1.0: 675 | version "3.1.1" 676 | resolved "https://registry.yarnpkg.com/eslint-plugin-ava/-/eslint-plugin-ava-3.1.1.tgz#fdcf1ad9605867639ae0007d58100ee40a6de25d" 677 | dependencies: 678 | arrify "^1.0.1" 679 | deep-strict-equal "^0.2.0" 680 | enhance-visitors "^1.0.0" 681 | espree "^3.1.3" 682 | espurify "^1.5.0" 683 | multimatch "^2.1.0" 684 | pkg-up "^1.0.0" 685 | req-all "^0.1.0" 686 | 687 | eslint-plugin-import@^2.0.0: 688 | version "2.10.0" 689 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.10.0.tgz#fa09083d5a75288df9c6c7d09fe12255985655e7" 690 | dependencies: 691 | builtin-modules "^1.1.1" 692 | contains-path "^0.1.0" 693 | debug "^2.6.8" 694 | doctrine "1.5.0" 695 | eslint-import-resolver-node "^0.3.1" 696 | eslint-module-utils "^2.2.0" 697 | has "^1.0.1" 698 | lodash "^4.17.4" 699 | minimatch "^3.0.3" 700 | read-pkg-up "^2.0.0" 701 | 702 | eslint-plugin-no-use-extend-native@^0.3.2: 703 | version "0.3.12" 704 | resolved "https://registry.yarnpkg.com/eslint-plugin-no-use-extend-native/-/eslint-plugin-no-use-extend-native-0.3.12.tgz#3ad9a00c2df23b5d7f7f6be91550985a4ab701ea" 705 | dependencies: 706 | is-get-set-prop "^1.0.0" 707 | is-js-type "^2.0.0" 708 | is-obj-prop "^1.0.0" 709 | is-proto-prop "^1.0.0" 710 | 711 | eslint-plugin-promise@^3.0.0: 712 | version "3.7.0" 713 | resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-3.7.0.tgz#f4bde5c2c77cdd69557a8f69a24d1ad3cfc9e67e" 714 | 715 | eslint-plugin-unicorn@^1.0.0: 716 | version "1.0.0" 717 | resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-1.0.0.tgz#b761ad233d34d164cda5c41217571609bd1ac161" 718 | dependencies: 719 | lodash.camelcase "^4.1.1" 720 | lodash.kebabcase "^4.0.1" 721 | lodash.snakecase "^4.0.1" 722 | lodash.upperfirst "^4.2.0" 723 | req-all "^0.1.0" 724 | 725 | eslint@^3.6.0: 726 | version "3.19.0" 727 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" 728 | dependencies: 729 | babel-code-frame "^6.16.0" 730 | chalk "^1.1.3" 731 | concat-stream "^1.5.2" 732 | debug "^2.1.1" 733 | doctrine "^2.0.0" 734 | escope "^3.6.0" 735 | espree "^3.4.0" 736 | esquery "^1.0.0" 737 | estraverse "^4.2.0" 738 | esutils "^2.0.2" 739 | file-entry-cache "^2.0.0" 740 | glob "^7.0.3" 741 | globals "^9.14.0" 742 | ignore "^3.2.0" 743 | imurmurhash "^0.1.4" 744 | inquirer "^0.12.0" 745 | is-my-json-valid "^2.10.0" 746 | is-resolvable "^1.0.0" 747 | js-yaml "^3.5.1" 748 | json-stable-stringify "^1.0.0" 749 | levn "^0.3.0" 750 | lodash "^4.0.0" 751 | mkdirp "^0.5.0" 752 | natural-compare "^1.4.0" 753 | optionator "^0.8.2" 754 | path-is-inside "^1.0.1" 755 | pluralize "^1.2.1" 756 | progress "^1.1.8" 757 | require-uncached "^1.0.2" 758 | shelljs "^0.7.5" 759 | strip-bom "^3.0.0" 760 | strip-json-comments "~2.0.1" 761 | table "^3.7.8" 762 | text-table "~0.2.0" 763 | user-home "^2.0.0" 764 | 765 | espree@^3.1.3, espree@^3.4.0: 766 | version "3.5.4" 767 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" 768 | dependencies: 769 | acorn "^5.5.0" 770 | acorn-jsx "^3.0.0" 771 | 772 | esprima@^4.0.0: 773 | version "4.0.0" 774 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 775 | 776 | espurify@^1.5.0: 777 | version "1.7.0" 778 | resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" 779 | dependencies: 780 | core-js "^2.0.0" 781 | 782 | esquery@^1.0.0: 783 | version "1.0.1" 784 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" 785 | dependencies: 786 | estraverse "^4.0.0" 787 | 788 | esrecurse@^4.1.0: 789 | version "4.2.1" 790 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 791 | dependencies: 792 | estraverse "^4.1.0" 793 | 794 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 795 | version "4.2.0" 796 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 797 | 798 | esutils@^2.0.2: 799 | version "2.0.2" 800 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 801 | 802 | event-emitter@~0.3.5: 803 | version "0.3.5" 804 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 805 | dependencies: 806 | d "1" 807 | es5-ext "~0.10.14" 808 | 809 | execa@^0.5.0: 810 | version "0.5.1" 811 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36" 812 | dependencies: 813 | cross-spawn "^4.0.0" 814 | get-stream "^2.2.0" 815 | is-stream "^1.1.0" 816 | npm-run-path "^2.0.0" 817 | p-finally "^1.0.0" 818 | signal-exit "^3.0.0" 819 | strip-eof "^1.0.0" 820 | 821 | exit-hook@^1.0.0: 822 | version "1.1.1" 823 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 824 | 825 | fast-levenshtein@~2.0.4: 826 | version "2.0.6" 827 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 828 | 829 | figures@^1.3.5: 830 | version "1.7.0" 831 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 832 | dependencies: 833 | escape-string-regexp "^1.0.5" 834 | object-assign "^4.1.0" 835 | 836 | file-entry-cache@^2.0.0: 837 | version "2.0.0" 838 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 839 | dependencies: 840 | flat-cache "^1.2.1" 841 | object-assign "^4.0.1" 842 | 843 | filled-array@^1.0.0: 844 | version "1.1.0" 845 | resolved "https://registry.yarnpkg.com/filled-array/-/filled-array-1.1.0.tgz#c3c4f6c663b923459a9aa29912d2d031f1507f84" 846 | 847 | find-up@^1.0.0: 848 | version "1.1.2" 849 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 850 | dependencies: 851 | path-exists "^2.0.0" 852 | pinkie-promise "^2.0.0" 853 | 854 | find-up@^2.0.0: 855 | version "2.1.0" 856 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 857 | dependencies: 858 | locate-path "^2.0.0" 859 | 860 | flat-cache@^1.2.1: 861 | version "1.3.0" 862 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 863 | dependencies: 864 | circular-json "^0.3.1" 865 | del "^2.0.2" 866 | graceful-fs "^4.1.2" 867 | write "^0.2.1" 868 | 869 | fs.realpath@^1.0.0: 870 | version "1.0.0" 871 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 872 | 873 | function-bind@^1.0.2, function-bind@^1.1.1: 874 | version "1.1.1" 875 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 876 | 877 | generate-function@^2.0.0: 878 | version "2.0.0" 879 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" 880 | 881 | generate-object-property@^1.1.0: 882 | version "1.2.0" 883 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" 884 | dependencies: 885 | is-property "^1.0.0" 886 | 887 | get-intrinsic@^1.0.2: 888 | version "1.0.2" 889 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.2.tgz#6820da226e50b24894e08859469dc68361545d49" 890 | integrity sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg== 891 | dependencies: 892 | function-bind "^1.1.1" 893 | has "^1.0.3" 894 | has-symbols "^1.0.1" 895 | 896 | get-set-props@^0.1.0: 897 | version "0.1.0" 898 | resolved "https://registry.yarnpkg.com/get-set-props/-/get-set-props-0.1.0.tgz#998475c178445686d0b32246da5df8dbcfbe8ea3" 899 | 900 | get-stdin@^4.0.1: 901 | version "4.0.1" 902 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 903 | 904 | get-stdin@^5.0.0: 905 | version "5.0.1" 906 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 907 | 908 | get-stream@^2.2.0: 909 | version "2.3.1" 910 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" 911 | dependencies: 912 | object-assign "^4.0.1" 913 | pinkie-promise "^2.0.0" 914 | 915 | glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: 916 | version "7.1.2" 917 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 918 | dependencies: 919 | fs.realpath "^1.0.0" 920 | inflight "^1.0.4" 921 | inherits "2" 922 | minimatch "^3.0.4" 923 | once "^1.3.0" 924 | path-is-absolute "^1.0.0" 925 | 926 | globals@^9.14.0: 927 | version "9.18.0" 928 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 929 | 930 | globby@^5.0.0: 931 | version "5.0.0" 932 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 933 | dependencies: 934 | array-union "^1.0.1" 935 | arrify "^1.0.0" 936 | glob "^7.0.3" 937 | object-assign "^4.0.1" 938 | pify "^2.0.0" 939 | pinkie-promise "^2.0.0" 940 | 941 | globby@^6.0.0: 942 | version "6.1.0" 943 | resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" 944 | dependencies: 945 | array-union "^1.0.1" 946 | glob "^7.0.3" 947 | object-assign "^4.0.1" 948 | pify "^2.0.0" 949 | pinkie-promise "^2.0.0" 950 | 951 | got@^5.0.0: 952 | version "5.7.1" 953 | resolved "https://registry.yarnpkg.com/got/-/got-5.7.1.tgz#5f81635a61e4a6589f180569ea4e381680a51f35" 954 | dependencies: 955 | create-error-class "^3.0.1" 956 | duplexer2 "^0.1.4" 957 | is-redirect "^1.0.0" 958 | is-retry-allowed "^1.0.0" 959 | is-stream "^1.0.0" 960 | lowercase-keys "^1.0.0" 961 | node-status-codes "^1.0.0" 962 | object-assign "^4.0.1" 963 | parse-json "^2.1.0" 964 | pinkie-promise "^2.0.0" 965 | read-all-stream "^3.0.0" 966 | readable-stream "^2.0.5" 967 | timed-out "^3.0.0" 968 | unzip-response "^1.0.2" 969 | url-parse-lax "^1.0.0" 970 | 971 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 972 | version "4.1.11" 973 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 974 | 975 | has-ansi@^2.0.0: 976 | version "2.0.0" 977 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 978 | dependencies: 979 | ansi-regex "^2.0.0" 980 | 981 | has-flag@^2.0.0: 982 | version "2.0.0" 983 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 984 | 985 | has-flag@^3.0.0: 986 | version "3.0.0" 987 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 988 | 989 | has-symbols@^1.0.1: 990 | version "1.0.1" 991 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 992 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 993 | 994 | has@^1.0.1: 995 | version "1.0.1" 996 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 997 | dependencies: 998 | function-bind "^1.0.2" 999 | 1000 | has@^1.0.3: 1001 | version "1.0.3" 1002 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1003 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1004 | dependencies: 1005 | function-bind "^1.1.1" 1006 | 1007 | he@^1.2.0: 1008 | version "1.2.0" 1009 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" 1010 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== 1011 | 1012 | hosted-git-info@^2.1.4: 1013 | version "2.6.0" 1014 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" 1015 | 1016 | html-minifier-terser@^5.0.1: 1017 | version "5.1.1" 1018 | resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054" 1019 | integrity sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg== 1020 | dependencies: 1021 | camel-case "^4.1.1" 1022 | clean-css "^4.2.3" 1023 | commander "^4.1.1" 1024 | he "^1.2.0" 1025 | param-case "^3.0.3" 1026 | relateurl "^0.2.7" 1027 | terser "^4.6.3" 1028 | 1029 | html-webpack-plugin@^4.5.1: 1030 | version "4.5.1" 1031 | resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.5.1.tgz#40aaf1b5cb78f2f23a83333999625c20929cda65" 1032 | integrity sha512-yzK7RQZwv9xB+pcdHNTjcqbaaDZ+5L0zJHXfi89iWIZmb/FtzxhLk0635rmJihcQbs3ZUF27Xp4oWGx6EK56zg== 1033 | dependencies: 1034 | "@types/html-minifier-terser" "^5.0.0" 1035 | "@types/tapable" "^1.0.5" 1036 | "@types/webpack" "^4.41.8" 1037 | html-minifier-terser "^5.0.1" 1038 | loader-utils "^1.2.3" 1039 | lodash "^4.17.20" 1040 | pretty-error "^2.1.1" 1041 | tapable "^1.1.3" 1042 | util.promisify "1.0.0" 1043 | 1044 | htmlparser2@^3.10.1: 1045 | version "3.10.1" 1046 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" 1047 | integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== 1048 | dependencies: 1049 | domelementtype "^1.3.1" 1050 | domhandler "^2.3.0" 1051 | domutils "^1.5.1" 1052 | entities "^1.1.1" 1053 | inherits "^2.0.1" 1054 | readable-stream "^3.1.1" 1055 | 1056 | ignore@^3.2.0: 1057 | version "3.3.7" 1058 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 1059 | 1060 | imurmurhash@^0.1.4: 1061 | version "0.1.4" 1062 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1063 | 1064 | indent-string@^2.1.0: 1065 | version "2.1.0" 1066 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1067 | dependencies: 1068 | repeating "^2.0.0" 1069 | 1070 | inflight@^1.0.4: 1071 | version "1.0.6" 1072 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1073 | dependencies: 1074 | once "^1.3.0" 1075 | wrappy "1" 1076 | 1077 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 1078 | version "2.0.3" 1079 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1080 | 1081 | inherits@^2.0.1: 1082 | version "2.0.4" 1083 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1084 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1085 | 1086 | ini@~1.3.0: 1087 | version "1.3.5" 1088 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 1089 | 1090 | inquirer@^0.12.0: 1091 | version "0.12.0" 1092 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" 1093 | dependencies: 1094 | ansi-escapes "^1.1.0" 1095 | ansi-regex "^2.0.0" 1096 | chalk "^1.0.0" 1097 | cli-cursor "^1.0.1" 1098 | cli-width "^2.0.0" 1099 | figures "^1.3.5" 1100 | lodash "^4.3.0" 1101 | readline2 "^1.0.1" 1102 | run-async "^0.1.0" 1103 | rx-lite "^3.1.2" 1104 | string-width "^1.0.1" 1105 | strip-ansi "^3.0.0" 1106 | through "^2.3.6" 1107 | 1108 | interpret@^1.0.0: 1109 | version "1.1.0" 1110 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614" 1111 | 1112 | irregular-plurals@^1.0.0: 1113 | version "1.4.0" 1114 | resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-1.4.0.tgz#2ca9b033651111855412f16be5d77c62a458a766" 1115 | 1116 | is-arrayish@^0.2.1: 1117 | version "0.2.1" 1118 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1119 | 1120 | is-builtin-module@^1.0.0: 1121 | version "1.0.0" 1122 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1123 | dependencies: 1124 | builtin-modules "^1.0.0" 1125 | 1126 | is-callable@^1.1.4, is-callable@^1.2.2: 1127 | version "1.2.2" 1128 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9" 1129 | integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA== 1130 | 1131 | is-date-object@^1.0.1: 1132 | version "1.0.2" 1133 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 1134 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 1135 | 1136 | is-error@^2.2.0: 1137 | version "2.2.1" 1138 | resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" 1139 | 1140 | is-extglob@^1.0.0: 1141 | version "1.0.0" 1142 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1143 | 1144 | is-finite@^1.0.0: 1145 | version "1.0.2" 1146 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1147 | dependencies: 1148 | number-is-nan "^1.0.0" 1149 | 1150 | is-fullwidth-code-point@^1.0.0: 1151 | version "1.0.0" 1152 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1153 | dependencies: 1154 | number-is-nan "^1.0.0" 1155 | 1156 | is-fullwidth-code-point@^2.0.0: 1157 | version "2.0.0" 1158 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1159 | 1160 | is-get-set-prop@^1.0.0: 1161 | version "1.0.0" 1162 | resolved "https://registry.yarnpkg.com/is-get-set-prop/-/is-get-set-prop-1.0.0.tgz#2731877e4d78a6a69edcce6bb9d68b0779e76312" 1163 | dependencies: 1164 | get-set-props "^0.1.0" 1165 | lowercase-keys "^1.0.0" 1166 | 1167 | is-glob@^2.0.1: 1168 | version "2.0.1" 1169 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1170 | dependencies: 1171 | is-extglob "^1.0.0" 1172 | 1173 | is-js-type@^2.0.0: 1174 | version "2.0.0" 1175 | resolved "https://registry.yarnpkg.com/is-js-type/-/is-js-type-2.0.0.tgz#73617006d659b4eb4729bba747d28782df0f7e22" 1176 | dependencies: 1177 | js-types "^1.0.0" 1178 | 1179 | is-my-ip-valid@^1.0.0: 1180 | version "1.0.0" 1181 | resolved "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz#7b351b8e8edd4d3995d4d066680e664d94696824" 1182 | 1183 | is-my-json-valid@^2.10.0: 1184 | version "2.17.2" 1185 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.17.2.tgz#6b2103a288e94ef3de5cf15d29dd85fc4b78d65c" 1186 | dependencies: 1187 | generate-function "^2.0.0" 1188 | generate-object-property "^1.1.0" 1189 | is-my-ip-valid "^1.0.0" 1190 | jsonpointer "^4.0.0" 1191 | xtend "^4.0.0" 1192 | 1193 | is-negative-zero@^2.0.0: 1194 | version "2.0.1" 1195 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" 1196 | integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== 1197 | 1198 | is-npm@^1.0.0: 1199 | version "1.0.0" 1200 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 1201 | 1202 | is-obj-prop@^1.0.0: 1203 | version "1.0.0" 1204 | resolved "https://registry.yarnpkg.com/is-obj-prop/-/is-obj-prop-1.0.0.tgz#b34de79c450b8d7c73ab2cdf67dc875adb85f80e" 1205 | dependencies: 1206 | lowercase-keys "^1.0.0" 1207 | obj-props "^1.0.0" 1208 | 1209 | is-obj@^1.0.0: 1210 | version "1.0.1" 1211 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1212 | 1213 | is-path-cwd@^1.0.0: 1214 | version "1.0.0" 1215 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 1216 | 1217 | is-path-in-cwd@^1.0.0: 1218 | version "1.0.1" 1219 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" 1220 | dependencies: 1221 | is-path-inside "^1.0.0" 1222 | 1223 | is-path-inside@^1.0.0: 1224 | version "1.0.1" 1225 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1226 | dependencies: 1227 | path-is-inside "^1.0.1" 1228 | 1229 | is-plain-obj@^1.0.0: 1230 | version "1.1.0" 1231 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 1232 | 1233 | is-property@^1.0.0: 1234 | version "1.0.2" 1235 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 1236 | 1237 | is-proto-prop@^1.0.0: 1238 | version "1.0.1" 1239 | resolved "https://registry.yarnpkg.com/is-proto-prop/-/is-proto-prop-1.0.1.tgz#c8a0455c28fe38c8843d0c22af6f95f01ed4abc4" 1240 | dependencies: 1241 | lowercase-keys "^1.0.0" 1242 | proto-props "^1.1.0" 1243 | 1244 | is-redirect@^1.0.0: 1245 | version "1.0.0" 1246 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1247 | 1248 | is-regex@^1.1.1: 1249 | version "1.1.1" 1250 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" 1251 | integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg== 1252 | dependencies: 1253 | has-symbols "^1.0.1" 1254 | 1255 | is-resolvable@^1.0.0: 1256 | version "1.1.0" 1257 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 1258 | 1259 | is-retry-allowed@^1.0.0: 1260 | version "1.1.0" 1261 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 1262 | 1263 | is-stream@^1.0.0, is-stream@^1.1.0: 1264 | version "1.1.0" 1265 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1266 | 1267 | is-symbol@^1.0.2: 1268 | version "1.0.3" 1269 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 1270 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 1271 | dependencies: 1272 | has-symbols "^1.0.1" 1273 | 1274 | is-utf8@^0.2.0: 1275 | version "0.2.1" 1276 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1277 | 1278 | isarray@^1.0.0, isarray@~1.0.0: 1279 | version "1.0.0" 1280 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1281 | 1282 | isexe@^2.0.0: 1283 | version "2.0.0" 1284 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1285 | 1286 | js-tokens@^3.0.2: 1287 | version "3.0.2" 1288 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1289 | 1290 | js-types@^1.0.0: 1291 | version "1.0.0" 1292 | resolved "https://registry.yarnpkg.com/js-types/-/js-types-1.0.0.tgz#d242e6494ed572ad3c92809fc8bed7f7687cbf03" 1293 | 1294 | js-yaml@^3.5.1: 1295 | version "3.11.0" 1296 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef" 1297 | dependencies: 1298 | argparse "^1.0.7" 1299 | esprima "^4.0.0" 1300 | 1301 | json-parse-better-errors@^1.0.1: 1302 | version "1.0.2" 1303 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1304 | 1305 | json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: 1306 | version "1.0.1" 1307 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1308 | dependencies: 1309 | jsonify "~0.0.0" 1310 | 1311 | json5@^1.0.1: 1312 | version "1.0.1" 1313 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 1314 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 1315 | dependencies: 1316 | minimist "^1.2.0" 1317 | 1318 | jsonify@~0.0.0: 1319 | version "0.0.0" 1320 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1321 | 1322 | jsonpointer@^4.0.0: 1323 | version "4.0.1" 1324 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" 1325 | 1326 | latest-version@^2.0.0: 1327 | version "2.0.0" 1328 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-2.0.0.tgz#56f8d6139620847b8017f8f1f4d78e211324168b" 1329 | dependencies: 1330 | package-json "^2.0.0" 1331 | 1332 | lazy-req@^1.1.0: 1333 | version "1.1.0" 1334 | resolved "https://registry.yarnpkg.com/lazy-req/-/lazy-req-1.1.0.tgz#bdaebead30f8d824039ce0ce149d4daa07ba1fac" 1335 | 1336 | levn@^0.3.0, levn@~0.3.0: 1337 | version "0.3.0" 1338 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1339 | dependencies: 1340 | prelude-ls "~1.1.2" 1341 | type-check "~0.3.2" 1342 | 1343 | load-json-file@^1.0.0: 1344 | version "1.1.0" 1345 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1346 | dependencies: 1347 | graceful-fs "^4.1.2" 1348 | parse-json "^2.2.0" 1349 | pify "^2.0.0" 1350 | pinkie-promise "^2.0.0" 1351 | strip-bom "^2.0.0" 1352 | 1353 | load-json-file@^2.0.0: 1354 | version "2.0.0" 1355 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1356 | dependencies: 1357 | graceful-fs "^4.1.2" 1358 | parse-json "^2.2.0" 1359 | pify "^2.0.0" 1360 | strip-bom "^3.0.0" 1361 | 1362 | load-json-file@^4.0.0: 1363 | version "4.0.0" 1364 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 1365 | dependencies: 1366 | graceful-fs "^4.1.2" 1367 | parse-json "^4.0.0" 1368 | pify "^3.0.0" 1369 | strip-bom "^3.0.0" 1370 | 1371 | loader-utils@^1.2.3: 1372 | version "1.4.0" 1373 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" 1374 | integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== 1375 | dependencies: 1376 | big.js "^5.2.2" 1377 | emojis-list "^3.0.0" 1378 | json5 "^1.0.1" 1379 | 1380 | locate-path@^2.0.0: 1381 | version "2.0.0" 1382 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1383 | dependencies: 1384 | p-locate "^2.0.0" 1385 | path-exists "^3.0.0" 1386 | 1387 | lodash.camelcase@^4.1.1: 1388 | version "4.3.0" 1389 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 1390 | 1391 | lodash.kebabcase@^4.0.1: 1392 | version "4.1.1" 1393 | resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" 1394 | 1395 | lodash.snakecase@^4.0.1: 1396 | version "4.1.1" 1397 | resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" 1398 | 1399 | lodash.upperfirst@^4.2.0: 1400 | version "4.3.1" 1401 | resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" 1402 | 1403 | lodash@^4.0.0, lodash@^4.13.1, lodash@^4.17.4, lodash@^4.3.0: 1404 | version "4.17.5" 1405 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" 1406 | 1407 | lodash@^4.17.20: 1408 | version "4.17.20" 1409 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" 1410 | integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== 1411 | 1412 | log-symbols@^2.0.0: 1413 | version "2.2.0" 1414 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" 1415 | dependencies: 1416 | chalk "^2.0.1" 1417 | 1418 | loud-rejection@^1.0.0: 1419 | version "1.6.0" 1420 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1421 | dependencies: 1422 | currently-unhandled "^0.4.1" 1423 | signal-exit "^3.0.0" 1424 | 1425 | lower-case@^2.0.2: 1426 | version "2.0.2" 1427 | resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" 1428 | integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== 1429 | dependencies: 1430 | tslib "^2.0.3" 1431 | 1432 | lowercase-keys@^1.0.0: 1433 | version "1.0.1" 1434 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 1435 | 1436 | lru-cache@^4.0.1: 1437 | version "4.1.2" 1438 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.2.tgz#45234b2e6e2f2b33da125624c4664929a0224c3f" 1439 | dependencies: 1440 | pseudomap "^1.0.2" 1441 | yallist "^2.1.2" 1442 | 1443 | make-dir@^1.0.0: 1444 | version "1.2.0" 1445 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.2.0.tgz#6d6a49eead4aae296c53bbf3a1a008bd6c89469b" 1446 | dependencies: 1447 | pify "^3.0.0" 1448 | 1449 | map-obj@^1.0.0, map-obj@^1.0.1: 1450 | version "1.0.1" 1451 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1452 | 1453 | meow@^3.4.2: 1454 | version "3.7.0" 1455 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1456 | dependencies: 1457 | camelcase-keys "^2.0.0" 1458 | decamelize "^1.1.2" 1459 | loud-rejection "^1.0.0" 1460 | map-obj "^1.0.1" 1461 | minimist "^1.1.3" 1462 | normalize-package-data "^2.3.4" 1463 | object-assign "^4.0.1" 1464 | read-pkg-up "^1.0.1" 1465 | redent "^1.0.0" 1466 | trim-newlines "^1.0.0" 1467 | 1468 | minimatch@^3.0.0, minimatch@^3.0.3, minimatch@^3.0.4: 1469 | version "3.0.4" 1470 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1471 | dependencies: 1472 | brace-expansion "^1.1.7" 1473 | 1474 | minimist@0.0.8: 1475 | version "0.0.8" 1476 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1477 | 1478 | minimist@^1.1.3, minimist@^1.2.0: 1479 | version "1.2.0" 1480 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1481 | 1482 | mkdirp@^0.5.0, mkdirp@^0.5.1: 1483 | version "0.5.1" 1484 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1485 | dependencies: 1486 | minimist "0.0.8" 1487 | 1488 | ms@2.0.0: 1489 | version "2.0.0" 1490 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1491 | 1492 | multimatch@^2.1.0: 1493 | version "2.1.0" 1494 | resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" 1495 | dependencies: 1496 | array-differ "^1.0.0" 1497 | array-union "^1.0.1" 1498 | arrify "^1.0.0" 1499 | minimatch "^3.0.0" 1500 | 1501 | mute-stream@0.0.5: 1502 | version "0.0.5" 1503 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" 1504 | 1505 | natural-compare@^1.4.0: 1506 | version "1.4.0" 1507 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1508 | 1509 | next-tick@1: 1510 | version "1.0.0" 1511 | resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" 1512 | 1513 | no-case@^3.0.4: 1514 | version "3.0.4" 1515 | resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" 1516 | integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== 1517 | dependencies: 1518 | lower-case "^2.0.2" 1519 | tslib "^2.0.3" 1520 | 1521 | node-status-codes@^1.0.0: 1522 | version "1.0.0" 1523 | resolved "https://registry.yarnpkg.com/node-status-codes/-/node-status-codes-1.0.0.tgz#5ae5541d024645d32a58fcddc9ceecea7ae3ac2f" 1524 | 1525 | normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: 1526 | version "2.4.0" 1527 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1528 | dependencies: 1529 | hosted-git-info "^2.1.4" 1530 | is-builtin-module "^1.0.0" 1531 | semver "2 || 3 || 4 || 5" 1532 | validate-npm-package-license "^3.0.1" 1533 | 1534 | npm-run-path@^2.0.0: 1535 | version "2.0.2" 1536 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1537 | dependencies: 1538 | path-key "^2.0.0" 1539 | 1540 | nth-check@^1.0.2: 1541 | version "1.0.2" 1542 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" 1543 | integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== 1544 | dependencies: 1545 | boolbase "~1.0.0" 1546 | 1547 | number-is-nan@^1.0.0: 1548 | version "1.0.1" 1549 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1550 | 1551 | obj-props@^1.0.0: 1552 | version "1.1.0" 1553 | resolved "https://registry.yarnpkg.com/obj-props/-/obj-props-1.1.0.tgz#626313faa442befd4a44e9a02c3cb6bde937b511" 1554 | 1555 | object-assign@^4.0.1, object-assign@^4.1.0: 1556 | version "4.1.1" 1557 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1558 | 1559 | object-inspect@^1.8.0: 1560 | version "1.9.0" 1561 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a" 1562 | integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw== 1563 | 1564 | object-keys@^1.0.12, object-keys@^1.1.1: 1565 | version "1.1.1" 1566 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1567 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1568 | 1569 | object.assign@^4.1.1: 1570 | version "4.1.2" 1571 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 1572 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 1573 | dependencies: 1574 | call-bind "^1.0.0" 1575 | define-properties "^1.1.3" 1576 | has-symbols "^1.0.1" 1577 | object-keys "^1.1.1" 1578 | 1579 | object.getownpropertydescriptors@^2.0.3: 1580 | version "2.1.1" 1581 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.1.tgz#0dfda8d108074d9c563e80490c883b6661091544" 1582 | integrity sha512-6DtXgZ/lIZ9hqx4GtZETobXLR/ZLaa0aqV0kzbn80Rf8Z2e/XFnhA0I7p07N2wH8bBBltr2xQPi6sbKWAY2Eng== 1583 | dependencies: 1584 | call-bind "^1.0.0" 1585 | define-properties "^1.1.3" 1586 | es-abstract "^1.18.0-next.1" 1587 | 1588 | once@^1.3.0: 1589 | version "1.4.0" 1590 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1591 | dependencies: 1592 | wrappy "1" 1593 | 1594 | onetime@^1.0.0: 1595 | version "1.1.0" 1596 | resolved "http://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 1597 | 1598 | optionator@^0.8.2: 1599 | version "0.8.2" 1600 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 1601 | dependencies: 1602 | deep-is "~0.1.3" 1603 | fast-levenshtein "~2.0.4" 1604 | levn "~0.3.0" 1605 | prelude-ls "~1.1.2" 1606 | type-check "~0.3.2" 1607 | wordwrap "~1.0.0" 1608 | 1609 | os-homedir@^1.0.0: 1610 | version "1.0.2" 1611 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1612 | 1613 | os-tmpdir@^1.0.0: 1614 | version "1.0.2" 1615 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1616 | 1617 | osenv@^0.1.0: 1618 | version "0.1.5" 1619 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 1620 | dependencies: 1621 | os-homedir "^1.0.0" 1622 | os-tmpdir "^1.0.0" 1623 | 1624 | p-finally@^1.0.0: 1625 | version "1.0.0" 1626 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1627 | 1628 | p-limit@^1.1.0: 1629 | version "1.2.0" 1630 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 1631 | dependencies: 1632 | p-try "^1.0.0" 1633 | 1634 | p-locate@^2.0.0: 1635 | version "2.0.0" 1636 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1637 | dependencies: 1638 | p-limit "^1.1.0" 1639 | 1640 | p-try@^1.0.0: 1641 | version "1.0.0" 1642 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1643 | 1644 | package-json@^2.0.0: 1645 | version "2.4.0" 1646 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-2.4.0.tgz#0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb" 1647 | dependencies: 1648 | got "^5.0.0" 1649 | registry-auth-token "^3.0.1" 1650 | registry-url "^3.0.3" 1651 | semver "^5.1.0" 1652 | 1653 | param-case@^3.0.3: 1654 | version "3.0.4" 1655 | resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" 1656 | integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== 1657 | dependencies: 1658 | dot-case "^3.0.4" 1659 | tslib "^2.0.3" 1660 | 1661 | parse-gitignore@^0.3.1: 1662 | version "0.3.1" 1663 | resolved "https://registry.yarnpkg.com/parse-gitignore/-/parse-gitignore-0.3.1.tgz#09adda265a4a5be2ce5e905b95a02f7f0e0044fa" 1664 | dependencies: 1665 | array-unique "^0.2.1" 1666 | is-glob "^2.0.1" 1667 | 1668 | parse-json@^2.1.0, parse-json@^2.2.0: 1669 | version "2.2.0" 1670 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1671 | dependencies: 1672 | error-ex "^1.2.0" 1673 | 1674 | parse-json@^4.0.0: 1675 | version "4.0.0" 1676 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 1677 | dependencies: 1678 | error-ex "^1.3.1" 1679 | json-parse-better-errors "^1.0.1" 1680 | 1681 | pascal-case@^3.1.2: 1682 | version "3.1.2" 1683 | resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" 1684 | integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== 1685 | dependencies: 1686 | no-case "^3.0.4" 1687 | tslib "^2.0.3" 1688 | 1689 | path-exists@^2.0.0: 1690 | version "2.1.0" 1691 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1692 | dependencies: 1693 | pinkie-promise "^2.0.0" 1694 | 1695 | path-exists@^3.0.0: 1696 | version "3.0.0" 1697 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1698 | 1699 | path-is-absolute@^1.0.0: 1700 | version "1.0.1" 1701 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1702 | 1703 | path-is-inside@^1.0.1: 1704 | version "1.0.2" 1705 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1706 | 1707 | path-key@^2.0.0: 1708 | version "2.0.1" 1709 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1710 | 1711 | path-parse@^1.0.5: 1712 | version "1.0.5" 1713 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1714 | 1715 | path-type@^1.0.0: 1716 | version "1.1.0" 1717 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1718 | dependencies: 1719 | graceful-fs "^4.1.2" 1720 | pify "^2.0.0" 1721 | pinkie-promise "^2.0.0" 1722 | 1723 | path-type@^2.0.0: 1724 | version "2.0.0" 1725 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1726 | dependencies: 1727 | pify "^2.0.0" 1728 | 1729 | pify@^2.0.0: 1730 | version "2.3.0" 1731 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1732 | 1733 | pify@^3.0.0: 1734 | version "3.0.0" 1735 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1736 | 1737 | pinkie-promise@^2.0.0: 1738 | version "2.0.1" 1739 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1740 | dependencies: 1741 | pinkie "^2.0.0" 1742 | 1743 | pinkie@^2.0.0: 1744 | version "2.0.4" 1745 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1746 | 1747 | pkg-conf@^2.0.0: 1748 | version "2.1.0" 1749 | resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.1.0.tgz#2126514ca6f2abfebd168596df18ba57867f0058" 1750 | dependencies: 1751 | find-up "^2.0.0" 1752 | load-json-file "^4.0.0" 1753 | 1754 | pkg-dir@^1.0.0: 1755 | version "1.0.0" 1756 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 1757 | dependencies: 1758 | find-up "^1.0.0" 1759 | 1760 | pkg-up@^1.0.0: 1761 | version "1.0.0" 1762 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-1.0.0.tgz#3e08fb461525c4421624a33b9f7e6d0af5b05a26" 1763 | dependencies: 1764 | find-up "^1.0.0" 1765 | 1766 | plur@^2.1.2: 1767 | version "2.1.2" 1768 | resolved "https://registry.yarnpkg.com/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" 1769 | dependencies: 1770 | irregular-plurals "^1.0.0" 1771 | 1772 | pluralize@^1.2.1: 1773 | version "1.2.1" 1774 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" 1775 | 1776 | prelude-ls@~1.1.2: 1777 | version "1.1.2" 1778 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 1779 | 1780 | prepend-http@^1.0.1: 1781 | version "1.0.4" 1782 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 1783 | 1784 | pretty-error@^2.1.1: 1785 | version "2.1.2" 1786 | resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.2.tgz#be89f82d81b1c86ec8fdfbc385045882727f93b6" 1787 | integrity sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw== 1788 | dependencies: 1789 | lodash "^4.17.20" 1790 | renderkid "^2.0.4" 1791 | 1792 | process-nextick-args@~2.0.0: 1793 | version "2.0.0" 1794 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 1795 | 1796 | progress@^1.1.8: 1797 | version "1.1.8" 1798 | resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" 1799 | 1800 | proto-props@^1.1.0: 1801 | version "1.1.0" 1802 | resolved "https://registry.yarnpkg.com/proto-props/-/proto-props-1.1.0.tgz#e2606581dd24aa22398aeeeb628fc08e2ec89c91" 1803 | 1804 | pseudomap@^1.0.2: 1805 | version "1.0.2" 1806 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1807 | 1808 | rc@^1.0.1, rc@^1.1.6: 1809 | version "1.2.6" 1810 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.6.tgz#eb18989c6d4f4f162c399f79ddd29f3835568092" 1811 | dependencies: 1812 | deep-extend "~0.4.0" 1813 | ini "~1.3.0" 1814 | minimist "^1.2.0" 1815 | strip-json-comments "~2.0.1" 1816 | 1817 | read-all-stream@^3.0.0: 1818 | version "3.1.0" 1819 | resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa" 1820 | dependencies: 1821 | pinkie-promise "^2.0.0" 1822 | readable-stream "^2.0.0" 1823 | 1824 | read-pkg-up@^1.0.1: 1825 | version "1.0.1" 1826 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1827 | dependencies: 1828 | find-up "^1.0.0" 1829 | read-pkg "^1.0.0" 1830 | 1831 | read-pkg-up@^2.0.0: 1832 | version "2.0.0" 1833 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1834 | dependencies: 1835 | find-up "^2.0.0" 1836 | read-pkg "^2.0.0" 1837 | 1838 | read-pkg@^1.0.0: 1839 | version "1.1.0" 1840 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1841 | dependencies: 1842 | load-json-file "^1.0.0" 1843 | normalize-package-data "^2.3.2" 1844 | path-type "^1.0.0" 1845 | 1846 | read-pkg@^2.0.0: 1847 | version "2.0.0" 1848 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1849 | dependencies: 1850 | load-json-file "^2.0.0" 1851 | normalize-package-data "^2.3.2" 1852 | path-type "^2.0.0" 1853 | 1854 | readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.2.2: 1855 | version "2.3.5" 1856 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.5.tgz#b4f85003a938cbb6ecbce2a124fb1012bd1a838d" 1857 | dependencies: 1858 | core-util-is "~1.0.0" 1859 | inherits "~2.0.3" 1860 | isarray "~1.0.0" 1861 | process-nextick-args "~2.0.0" 1862 | safe-buffer "~5.1.1" 1863 | string_decoder "~1.0.3" 1864 | util-deprecate "~1.0.1" 1865 | 1866 | readable-stream@^3.1.1: 1867 | version "3.6.0" 1868 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 1869 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 1870 | dependencies: 1871 | inherits "^2.0.3" 1872 | string_decoder "^1.1.1" 1873 | util-deprecate "^1.0.1" 1874 | 1875 | readline2@^1.0.1: 1876 | version "1.0.1" 1877 | resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" 1878 | dependencies: 1879 | code-point-at "^1.0.0" 1880 | is-fullwidth-code-point "^1.0.0" 1881 | mute-stream "0.0.5" 1882 | 1883 | rechoir@^0.6.2: 1884 | version "0.6.2" 1885 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 1886 | dependencies: 1887 | resolve "^1.1.6" 1888 | 1889 | redent@^1.0.0: 1890 | version "1.0.0" 1891 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 1892 | dependencies: 1893 | indent-string "^2.1.0" 1894 | strip-indent "^1.0.1" 1895 | 1896 | registry-auth-token@^3.0.1: 1897 | version "3.3.2" 1898 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20" 1899 | dependencies: 1900 | rc "^1.1.6" 1901 | safe-buffer "^5.0.1" 1902 | 1903 | registry-url@^3.0.3: 1904 | version "3.1.0" 1905 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 1906 | dependencies: 1907 | rc "^1.0.1" 1908 | 1909 | relateurl@^0.2.7: 1910 | version "0.2.7" 1911 | resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" 1912 | integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= 1913 | 1914 | renderkid@^2.0.4: 1915 | version "2.0.5" 1916 | resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.5.tgz#483b1ac59c6601ab30a7a596a5965cabccfdd0a5" 1917 | integrity sha512-ccqoLg+HLOHq1vdfYNm4TBeaCDIi1FLt3wGojTDSvdewUv65oTmI3cnT2E4hRjl1gzKZIPK+KZrXzlUYKnR+vQ== 1918 | dependencies: 1919 | css-select "^2.0.2" 1920 | dom-converter "^0.2" 1921 | htmlparser2 "^3.10.1" 1922 | lodash "^4.17.20" 1923 | strip-ansi "^3.0.0" 1924 | 1925 | repeating@^2.0.0: 1926 | version "2.0.1" 1927 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1928 | dependencies: 1929 | is-finite "^1.0.0" 1930 | 1931 | req-all@^0.1.0: 1932 | version "0.1.0" 1933 | resolved "https://registry.yarnpkg.com/req-all/-/req-all-0.1.0.tgz#130051e2ace58a02eacbfc9d448577a736a9273a" 1934 | 1935 | require-uncached@^1.0.2: 1936 | version "1.0.3" 1937 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 1938 | dependencies: 1939 | caller-path "^0.1.0" 1940 | resolve-from "^1.0.0" 1941 | 1942 | resolve-cwd@^1.0.0: 1943 | version "1.0.0" 1944 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f" 1945 | dependencies: 1946 | resolve-from "^2.0.0" 1947 | 1948 | resolve-from@^1.0.0: 1949 | version "1.0.1" 1950 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 1951 | 1952 | resolve-from@^2.0.0: 1953 | version "2.0.0" 1954 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 1955 | 1956 | resolve@^1.1.6, resolve@^1.5.0: 1957 | version "1.6.0" 1958 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.6.0.tgz#0fbd21278b27b4004481c395349e7aba60a9ff5c" 1959 | dependencies: 1960 | path-parse "^1.0.5" 1961 | 1962 | restore-cursor@^1.0.1: 1963 | version "1.0.1" 1964 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 1965 | dependencies: 1966 | exit-hook "^1.0.0" 1967 | onetime "^1.0.0" 1968 | 1969 | rimraf@^2.2.8: 1970 | version "2.6.2" 1971 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 1972 | dependencies: 1973 | glob "^7.0.5" 1974 | 1975 | run-async@^0.1.0: 1976 | version "0.1.0" 1977 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" 1978 | dependencies: 1979 | once "^1.3.0" 1980 | 1981 | rx-lite@^3.1.2: 1982 | version "3.1.2" 1983 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" 1984 | 1985 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1986 | version "5.1.1" 1987 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 1988 | 1989 | safe-buffer@~5.2.0: 1990 | version "5.2.1" 1991 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 1992 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 1993 | 1994 | semver-diff@^2.0.0: 1995 | version "2.1.0" 1996 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 1997 | dependencies: 1998 | semver "^5.0.3" 1999 | 2000 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0: 2001 | version "5.5.0" 2002 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 2003 | 2004 | shelljs@^0.7.5: 2005 | version "0.7.8" 2006 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" 2007 | dependencies: 2008 | glob "^7.0.0" 2009 | interpret "^1.0.0" 2010 | rechoir "^0.6.2" 2011 | 2012 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2013 | version "3.0.2" 2014 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2015 | 2016 | slice-ansi@0.0.4: 2017 | version "0.0.4" 2018 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2019 | 2020 | slide@^1.1.5: 2021 | version "1.1.6" 2022 | resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" 2023 | 2024 | sort-keys@^1.1.2: 2025 | version "1.1.2" 2026 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 2027 | dependencies: 2028 | is-plain-obj "^1.0.0" 2029 | 2030 | sort-keys@^2.0.0: 2031 | version "2.0.0" 2032 | resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" 2033 | dependencies: 2034 | is-plain-obj "^1.0.0" 2035 | 2036 | source-map-support@~0.5.12: 2037 | version "0.5.19" 2038 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" 2039 | integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== 2040 | dependencies: 2041 | buffer-from "^1.0.0" 2042 | source-map "^0.6.0" 2043 | 2044 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: 2045 | version "0.6.1" 2046 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2047 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2048 | 2049 | source-map@^0.7.3: 2050 | version "0.7.3" 2051 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 2052 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 2053 | 2054 | spdx-correct@^3.0.0: 2055 | version "3.0.0" 2056 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 2057 | dependencies: 2058 | spdx-expression-parse "^3.0.0" 2059 | spdx-license-ids "^3.0.0" 2060 | 2061 | spdx-exceptions@^2.1.0: 2062 | version "2.1.0" 2063 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 2064 | 2065 | spdx-expression-parse@^3.0.0: 2066 | version "3.0.0" 2067 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 2068 | dependencies: 2069 | spdx-exceptions "^2.1.0" 2070 | spdx-license-ids "^3.0.0" 2071 | 2072 | spdx-license-ids@^3.0.0: 2073 | version "3.0.0" 2074 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 2075 | 2076 | sprintf-js@~1.0.2: 2077 | version "1.0.3" 2078 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2079 | 2080 | string-width@^1.0.1: 2081 | version "1.0.2" 2082 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2083 | dependencies: 2084 | code-point-at "^1.0.0" 2085 | is-fullwidth-code-point "^1.0.0" 2086 | strip-ansi "^3.0.0" 2087 | 2088 | string-width@^2.0.0: 2089 | version "2.1.1" 2090 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2091 | dependencies: 2092 | is-fullwidth-code-point "^2.0.0" 2093 | strip-ansi "^4.0.0" 2094 | 2095 | string.prototype.trimend@^1.0.1: 2096 | version "1.0.3" 2097 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz#a22bd53cca5c7cf44d7c9d5c732118873d6cd18b" 2098 | integrity sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw== 2099 | dependencies: 2100 | call-bind "^1.0.0" 2101 | define-properties "^1.1.3" 2102 | 2103 | string.prototype.trimstart@^1.0.1: 2104 | version "1.0.3" 2105 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz#9b4cb590e123bb36564401d59824298de50fd5aa" 2106 | integrity sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg== 2107 | dependencies: 2108 | call-bind "^1.0.0" 2109 | define-properties "^1.1.3" 2110 | 2111 | string_decoder@^1.1.1: 2112 | version "1.3.0" 2113 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 2114 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 2115 | dependencies: 2116 | safe-buffer "~5.2.0" 2117 | 2118 | string_decoder@~1.0.3: 2119 | version "1.0.3" 2120 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2121 | dependencies: 2122 | safe-buffer "~5.1.0" 2123 | 2124 | strip-ansi@^3.0.0: 2125 | version "3.0.1" 2126 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2127 | dependencies: 2128 | ansi-regex "^2.0.0" 2129 | 2130 | strip-ansi@^4.0.0: 2131 | version "4.0.0" 2132 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2133 | dependencies: 2134 | ansi-regex "^3.0.0" 2135 | 2136 | strip-bom@^2.0.0: 2137 | version "2.0.0" 2138 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2139 | dependencies: 2140 | is-utf8 "^0.2.0" 2141 | 2142 | strip-bom@^3.0.0: 2143 | version "3.0.0" 2144 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2145 | 2146 | strip-eof@^1.0.0: 2147 | version "1.0.0" 2148 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2149 | 2150 | strip-indent@^1.0.1: 2151 | version "1.0.1" 2152 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2153 | dependencies: 2154 | get-stdin "^4.0.1" 2155 | 2156 | strip-json-comments@~2.0.1: 2157 | version "2.0.1" 2158 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2159 | 2160 | supports-color@^2.0.0: 2161 | version "2.0.0" 2162 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2163 | 2164 | supports-color@^5.3.0: 2165 | version "5.3.0" 2166 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.3.0.tgz#5b24ac15db80fa927cf5227a4a33fd3c4c7676c0" 2167 | dependencies: 2168 | has-flag "^3.0.0" 2169 | 2170 | table@^3.7.8: 2171 | version "3.8.3" 2172 | resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" 2173 | dependencies: 2174 | ajv "^4.7.0" 2175 | ajv-keywords "^1.0.0" 2176 | chalk "^1.1.1" 2177 | lodash "^4.0.0" 2178 | slice-ansi "0.0.4" 2179 | string-width "^2.0.0" 2180 | 2181 | tapable@^1.1.3: 2182 | version "1.1.3" 2183 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" 2184 | integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== 2185 | 2186 | terser@^4.6.3: 2187 | version "4.8.0" 2188 | resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17" 2189 | integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw== 2190 | dependencies: 2191 | commander "^2.20.0" 2192 | source-map "~0.6.1" 2193 | source-map-support "~0.5.12" 2194 | 2195 | text-table@~0.2.0: 2196 | version "0.2.0" 2197 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2198 | 2199 | the-argv@^1.0.0: 2200 | version "1.0.0" 2201 | resolved "https://registry.yarnpkg.com/the-argv/-/the-argv-1.0.0.tgz#0084705005730dd84db755253c931ae398db9522" 2202 | 2203 | through@^2.3.6: 2204 | version "2.3.8" 2205 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2206 | 2207 | timed-out@^3.0.0: 2208 | version "3.1.3" 2209 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-3.1.3.tgz#95860bfcc5c76c277f8f8326fd0f5b2e20eba217" 2210 | 2211 | trim-newlines@^1.0.0: 2212 | version "1.0.0" 2213 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2214 | 2215 | tslib@^2.0.3: 2216 | version "2.1.0" 2217 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a" 2218 | integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A== 2219 | 2220 | type-check@~0.3.2: 2221 | version "0.3.2" 2222 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2223 | dependencies: 2224 | prelude-ls "~1.1.2" 2225 | 2226 | typedarray@^0.0.6: 2227 | version "0.0.6" 2228 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2229 | 2230 | unzip-response@^1.0.2: 2231 | version "1.0.2" 2232 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe" 2233 | 2234 | update-notifier@^1.0.0: 2235 | version "1.0.3" 2236 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-1.0.3.tgz#8f92c515482bd6831b7c93013e70f87552c7cf5a" 2237 | dependencies: 2238 | boxen "^0.6.0" 2239 | chalk "^1.0.0" 2240 | configstore "^2.0.0" 2241 | is-npm "^1.0.0" 2242 | latest-version "^2.0.0" 2243 | lazy-req "^1.1.0" 2244 | semver-diff "^2.0.0" 2245 | xdg-basedir "^2.0.0" 2246 | 2247 | url-parse-lax@^1.0.0: 2248 | version "1.0.0" 2249 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 2250 | dependencies: 2251 | prepend-http "^1.0.1" 2252 | 2253 | user-home@^2.0.0: 2254 | version "2.0.0" 2255 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" 2256 | dependencies: 2257 | os-homedir "^1.0.0" 2258 | 2259 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: 2260 | version "1.0.2" 2261 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2262 | 2263 | util.promisify@1.0.0: 2264 | version "1.0.0" 2265 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 2266 | integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== 2267 | dependencies: 2268 | define-properties "^1.1.2" 2269 | object.getownpropertydescriptors "^2.0.3" 2270 | 2271 | utila@~0.4: 2272 | version "0.4.0" 2273 | resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" 2274 | integrity sha1-ihagXURWV6Oupe7MWxKk+lN5dyw= 2275 | 2276 | uuid@^2.0.1: 2277 | version "2.0.3" 2278 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 2279 | 2280 | validate-npm-package-license@^3.0.1: 2281 | version "3.0.3" 2282 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 2283 | dependencies: 2284 | spdx-correct "^3.0.0" 2285 | spdx-expression-parse "^3.0.0" 2286 | 2287 | which@^1.2.9: 2288 | version "1.3.0" 2289 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2290 | dependencies: 2291 | isexe "^2.0.0" 2292 | 2293 | widest-line@^1.0.0: 2294 | version "1.0.0" 2295 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" 2296 | dependencies: 2297 | string-width "^1.0.1" 2298 | 2299 | wordwrap@~1.0.0: 2300 | version "1.0.0" 2301 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 2302 | 2303 | wrappy@1: 2304 | version "1.0.2" 2305 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2306 | 2307 | write-file-atomic@^1.1.2: 2308 | version "1.3.4" 2309 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" 2310 | dependencies: 2311 | graceful-fs "^4.1.11" 2312 | imurmurhash "^0.1.4" 2313 | slide "^1.1.5" 2314 | 2315 | write-file-atomic@^2.0.0: 2316 | version "2.3.0" 2317 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 2318 | dependencies: 2319 | graceful-fs "^4.1.11" 2320 | imurmurhash "^0.1.4" 2321 | signal-exit "^3.0.2" 2322 | 2323 | write-json-file@^2.0.0: 2324 | version "2.3.0" 2325 | resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f" 2326 | dependencies: 2327 | detect-indent "^5.0.0" 2328 | graceful-fs "^4.1.2" 2329 | make-dir "^1.0.0" 2330 | pify "^3.0.0" 2331 | sort-keys "^2.0.0" 2332 | write-file-atomic "^2.0.0" 2333 | 2334 | write-pkg@^2.0.0: 2335 | version "2.1.0" 2336 | resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-2.1.0.tgz#353aa44c39c48c21440f5c08ce6abd46141c9c08" 2337 | dependencies: 2338 | sort-keys "^1.1.2" 2339 | write-json-file "^2.0.0" 2340 | 2341 | write@^0.2.1: 2342 | version "0.2.1" 2343 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 2344 | dependencies: 2345 | mkdirp "^0.5.1" 2346 | 2347 | xdg-basedir@^2.0.0: 2348 | version "2.0.0" 2349 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" 2350 | dependencies: 2351 | os-homedir "^1.0.0" 2352 | 2353 | xo-init@^0.4.0: 2354 | version "0.4.0" 2355 | resolved "https://registry.yarnpkg.com/xo-init/-/xo-init-0.4.0.tgz#e92562e38117eb71e55b8d34ee2d006252a49d6a" 2356 | dependencies: 2357 | arrify "^1.0.0" 2358 | execa "^0.5.0" 2359 | minimist "^1.1.3" 2360 | path-exists "^3.0.0" 2361 | read-pkg-up "^2.0.0" 2362 | the-argv "^1.0.0" 2363 | write-pkg "^2.0.0" 2364 | 2365 | xo@^0.17.1: 2366 | version "0.17.1" 2367 | resolved "https://registry.yarnpkg.com/xo/-/xo-0.17.1.tgz#de65bc8120474fa76104f8a80b3b792d88c50ef6" 2368 | dependencies: 2369 | arrify "^1.0.0" 2370 | debug "^2.2.0" 2371 | deep-assign "^1.0.0" 2372 | eslint "^3.6.0" 2373 | eslint-config-xo "^0.17.0" 2374 | eslint-formatter-pretty "^1.0.0" 2375 | eslint-plugin-ava "^3.1.0" 2376 | eslint-plugin-import "^2.0.0" 2377 | eslint-plugin-no-use-extend-native "^0.3.2" 2378 | eslint-plugin-promise "^3.0.0" 2379 | eslint-plugin-unicorn "^1.0.0" 2380 | get-stdin "^5.0.0" 2381 | globby "^6.0.0" 2382 | has-flag "^2.0.0" 2383 | meow "^3.4.2" 2384 | multimatch "^2.1.0" 2385 | parse-gitignore "^0.3.1" 2386 | path-exists "^3.0.0" 2387 | pkg-conf "^2.0.0" 2388 | resolve-cwd "^1.0.0" 2389 | resolve-from "^2.0.0" 2390 | update-notifier "^1.0.0" 2391 | xo-init "^0.4.0" 2392 | 2393 | xtend@^4.0.0: 2394 | version "4.0.1" 2395 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2396 | 2397 | yallist@^2.1.2: 2398 | version "2.1.2" 2399 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2400 | --------------------------------------------------------------------------------