├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── package.json ├── src └── index.js ├── test ├── pexels-photo-327533.jpeg └── sizeof-loader.spec.js └── yarn.lock /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- 1 | # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node 2 | # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions 3 | 4 | name: Node.js 5 | 6 | on: 7 | push: 8 | branches: [ master ] 9 | pull_request: 10 | branches: [ master ] 11 | 12 | jobs: 13 | build: 14 | 15 | runs-on: ubuntu-latest 16 | 17 | strategy: 18 | matrix: 19 | node-version: [10.x, 12.x, 14.x] 20 | 21 | steps: 22 | - uses: actions/checkout@v2 23 | - name: Use Node.js ${{ matrix.node-version }} 24 | uses: actions/setup-node@v1 25 | with: 26 | node-version: ${{ matrix.node-version }} 27 | - run: yarn --frozen-lockfile 28 | - run: yarn lint 29 | - run: yarn test 30 | 31 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | dist/ 61 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | ## Our Standards 8 | 9 | Examples of behavior that contributes to creating a positive environment include: 10 | 11 | * Using welcoming and inclusive language 12 | * Being respectful of differing viewpoints and experiences 13 | * Gracefully accepting constructive criticism 14 | * Focusing on what is best for the community 15 | * Showing empathy towards other community members 16 | 17 | Examples of unacceptable behavior by participants include: 18 | 19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 20 | * Trolling, insulting/derogatory comments, and personal or political attacks 21 | * Public or private harassment 22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 23 | * Other conduct which could reasonably be considered inappropriate in a professional setting 24 | 25 | ## Our Responsibilities 26 | 27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 28 | 29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | ## Scope 32 | 33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 34 | 35 | ## Enforcement 36 | 37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team lead at mailforalberto@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 38 | 39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 40 | 41 | ## Attribution 42 | 43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] 44 | 45 | [homepage]: http://contributor-covenant.org 46 | [version]: http://contributor-covenant.org/version/1/4/ 47 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Alberto Leal (github.com/dashed) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | sizeof-loader [![Build Status](https://github.com/dashed/sizeof-loader/workflows/Node.js/badge.svg)](https://github.com/dashed/sizeof-loader/actions?workflow=Node.js) [![npm version](https://img.shields.io/npm/v/sizeof-loader.svg?style=flat)](https://www.npmjs.com/package/sizeof-loader) 2 | ============== 3 | 4 | > Webpack loader that works like [`url-loader`](https://github.com/webpack-contrib/url-loader) (or [`file-loader`](https://github.com/webpack-contrib/file-loader)) but with extracted information such as image dimensions and file-size. 5 | 6 | ## Install 7 | 8 | ```sh 9 | yarn add --dev sizeof-loader 10 | # or 11 | npm install --save-dev sizeof-loader 12 | ``` 13 | 14 | ## Usage 15 | 16 | ```js 17 | // webpack.confg.js 18 | 19 | // ... 20 | 21 | module.exports = { 22 | module: { 23 | rules: [ 24 | { 25 | test: [/\.bmp$/, /\.gif$/, /\.jpe?g$/, /\.png$/], 26 | use: [ 27 | { 28 | loader: "sizeof-loader", 29 | 30 | options: { 31 | // default is false 32 | useFileLoader: false, 33 | 34 | // any options will be passed to file-loader or url-loader 35 | limit: 10000, 36 | name: "static/media/[name].[hash:8].[ext]" 37 | } 38 | } 39 | ] 40 | } 41 | ] 42 | 43 | // ... 44 | } 45 | 46 | // ... 47 | }; 48 | 49 | ``` 50 | 51 | ```js 52 | // path/to/amazing/app/src/components/logo.js 53 | 54 | import logo_img from "images/logo.png"; 55 | 56 | // logo_img is: 57 | { 58 | 59 | // Output emitted from either: 60 | // - https://github.com/webpack-contrib/file-loader 61 | // - https://github.com/webpack-contrib/url-loader 62 | src: 'path/to/logo.png', 63 | 64 | // Output emitted by: https://github.com/image-size/image-size 65 | width: 400, 66 | height: 200, 67 | bytes: 12345, 68 | type: 'png', 69 | 70 | // useful for console.log 71 | toString: function() { /* ... */ } 72 | } 73 | ``` 74 | 75 | ## Options (webpack) 76 | 77 | By default, `useFileLoader` is `false`. 78 | 79 | If `useFileLoader` is `false`, then `url-loader` is wrapped. Any given options will be passed onto this loader. 80 | 81 | However, if you pass `useFileLoader: true`, then [`file-loader`](https://github.com/webpack-contrib/file-loader) will be used, and any given options will be passed onto that loader. 82 | 83 | ## Supported file-types 84 | 85 | [`image-size`](https://github.com/image-size/image-size) is used internally. 86 | 87 | See: https://github.com/image-size/image-size#supported-formats 88 | 89 | ## Use case 90 | 91 | ```js 92 | // project_root/src/components/logo.js 93 | 94 | import styled from "styled-components"; 95 | 96 | import logo_img from "images/logos/homepage.png"; 97 | import { bg_image } from "styles/mixins"; 98 | 99 | const Logo = styled.div` 100 | display: inline-block; 101 | 102 | ${bg_image(logo_img, /* resolution */ 2)}; 103 | `; 104 | 105 | export default Logo; 106 | ``` 107 | 108 | ```js 109 | // project_root/src/styles/mixins.js 110 | 111 | import { css } from "styled-components"; 112 | 113 | export const bg_image = (resolved_image, resolution) => { 114 | const width = `${resolved_image.width / resolution}px`; 115 | const height = `${resolved_image.height / resolution}px`; 116 | 117 | return css` 118 | 119 | background-image: url('${resolved_image.src}'); 120 | background-repeat: no-repeat; 121 | background-position: center; 122 | background-size: ${width} ${height}; 123 | 124 | height: ${height}; 125 | width: ${width}; 126 | 127 | `; 128 | }; 129 | ``` 130 | 131 | Credits 132 | ======= 133 | 134 | Code is based on: https://github.com/boopathi/image-size-loader but wraps url-loader and file-loader. 135 | 136 | Development 137 | =========== 138 | 139 | - `node.js` and `npm`. See: https://github.com/creationix/nvm#installation 140 | - `yarn`. See: https://yarnpkg.com/en/docs/install 141 | - `npm` dependencies. Run: `yarn install` 142 | 143 | ## Chores 144 | 145 | - Lint: `yarn run lint` 146 | - Prettier: `yarn run pretty` 147 | - Test: `yarn run test` 148 | - Pre-publish: `yarn run prepublish` 149 | - Build: `yarn run build` 150 | 151 | License 152 | ======= 153 | 154 | MIT. 155 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sizeof-loader", 3 | "version": "2.0.0", 4 | "description": "Webpack loader that works like url-loader (or file-loader) but with extracted information such as image dimensions and file-size.", 5 | "files": [ 6 | "dist" 7 | ], 8 | "main": "dist/index.js", 9 | "repository": "https://github.com/dashed/sizeof-loader", 10 | "author": { 11 | "name": "Alberto Leal", 12 | "email": "mailforalberto@gmail.com", 13 | "url": "github.com/dashed" 14 | }, 15 | "license": "MIT", 16 | "babel": { 17 | "presets": [ 18 | [ 19 | "env", 20 | { 21 | "targets": { 22 | "node": "0.12" 23 | } 24 | } 25 | ] 26 | ] 27 | }, 28 | "scripts": { 29 | "pretty": "prettier --write --tab-width 4 'src/**/*.js' 'test/**/*.js'", 30 | "lint": "eslint src test", 31 | "test": "mocha --compilers js:babel-register", 32 | "prepublish": "npm run lint && npm run test && npm run build", 33 | "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'" 34 | }, 35 | "eslintConfig": { 36 | "parser": "babel-eslint", 37 | "env": { 38 | "browser": true, 39 | "node": true, 40 | "mocha": true 41 | }, 42 | "extends": [ 43 | "eslint:recommended" 44 | ] 45 | }, 46 | "keywords": [ 47 | "sizeof", 48 | "loader", 49 | "webpack", 50 | "image-size", 51 | "image" 52 | ], 53 | "dependencies": { 54 | "file-loader": "^6.0.0", 55 | "image-size": "^0.8.3", 56 | "loader-utils": "^2.0.0", 57 | "url-loader": "^4.1.0" 58 | }, 59 | "peerDependencies": { 60 | "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0" 61 | }, 62 | "devDependencies": { 63 | "babel-cli": "^6.24.1", 64 | "babel-eslint": "^10.1.0", 65 | "babel-preset-env": "^1.5.2", 66 | "babel-register": "^6.24.1", 67 | "chai": "^4.0.2", 68 | "cross-env": "^7.0.2", 69 | "eslint": "^7.3.1", 70 | "mocha": "^5.0.0", 71 | "prettier": "^2.0.5" 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | // Based on: https://github.com/boopathi/image-size-loader/issues/10#issue-237059548 2 | 3 | const loaderUtils = require("loader-utils"); 4 | const sizeOf = require("image-size"); 5 | const fs = require("fs"); 6 | const urlLoader = require("url-loader"); 7 | const fileLoader = require("file-loader"); 8 | 9 | module.exports = function(content) { 10 | this.cacheable && this.cacheable(); 11 | 12 | const resourcePath = this.resourcePath; 13 | 14 | const options = loaderUtils.getOptions(this) || { 15 | useFileLoader: false 16 | }; 17 | 18 | const useFileLoader = options.useFileLoader; 19 | 20 | const wrappedLoader = useFileLoader ? fileLoader : urlLoader; 21 | 22 | let prefixCode = wrappedLoader.call(this, content); 23 | 24 | const image = sizeOf(resourcePath); 25 | 26 | const bytes = fs.statSync(resourcePath).size; 27 | 28 | if (prefixCode.startsWith("export default")) { 29 | prefixCode = `module.exports = ${prefixCode.substring( 30 | "export default".length 31 | )}`; 32 | } 33 | 34 | return ` 35 | ${prefixCode}; 36 | 37 | var src = '' + module.exports; 38 | 39 | module.exports = { 40 | 41 | src: src, 42 | width: ${JSON.stringify(image.width)}, 43 | height: ${JSON.stringify(image.height)}, 44 | type: ${JSON.stringify(image.type)}, 45 | bytes: ${JSON.stringify(bytes)}, 46 | 47 | toString: function() { 48 | return src; 49 | } 50 | }; 51 | `; 52 | }; 53 | 54 | module.exports.raw = true; 55 | -------------------------------------------------------------------------------- /test/pexels-photo-327533.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashed/sizeof-loader/091f8c79763e534ee47380ba08ff2551ae8ef33e/test/pexels-photo-327533.jpeg -------------------------------------------------------------------------------- /test/sizeof-loader.spec.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs"); 2 | import { expect } from "chai"; 3 | 4 | const sizeofLoader = require("../src/index.js"); 5 | 6 | // ref: https://stackoverflow.com/a/24526156/412627 7 | function base64_encode(file) { 8 | // read binary data 9 | const bitmap = fs.readFileSync(file); 10 | // convert binary data to base64 encoded string 11 | return new Buffer(bitmap).toString("base64"); 12 | } 13 | 14 | // image credit: https://www.pexels.com/photo/close-up-of-human-hand-327533/ 15 | const resourcePath = "test/pexels-photo-327533.jpeg"; 16 | const content = fs.readFileSync(resourcePath); 17 | const encoded_content = base64_encode(resourcePath); 18 | 19 | describe("sizeof-loader", function() { 20 | it("should use file-loader when useFileLoader is true", () => { 21 | const context = { 22 | cacheable: false, 23 | resourcePath: resourcePath, 24 | 25 | query: { 26 | useFileLoader: true 27 | }, 28 | 29 | emitFile: () => {}, 30 | 31 | options: {} 32 | }; 33 | 34 | const result = sizeofLoader.call(context, content); 35 | 36 | const output = eval(`var __webpack_public_path__ = '';${result}`); 37 | 38 | const expected_src = `5fde3d7d7643c6698ef5d04b7eda2c13.jpeg`; 39 | 40 | expect(output.src).to.equal(expected_src); 41 | expect(output.width).to.equal(80); 42 | expect(output.height).to.equal(50); 43 | expect(output.bytes).to.equal(2262); 44 | expect(output.type).to.equal("jpg"); 45 | expect(output.toString()).to.equal(expected_src); 46 | }); 47 | 48 | it("should use file-loader when unable to be encoded", () => { 49 | const context = { 50 | cacheable: false, 51 | resourcePath: resourcePath, 52 | 53 | query: { 54 | limit: 2 55 | }, 56 | 57 | emitFile: () => {}, 58 | 59 | options: {} 60 | }; 61 | 62 | const result = sizeofLoader.call(context, content); 63 | 64 | const output = eval(`var __webpack_public_path__ = '';${result}`); 65 | 66 | const expected_src = `5fde3d7d7643c6698ef5d04b7eda2c13.jpeg`; 67 | 68 | expect(output.src).to.equal(expected_src); 69 | expect(output.width).to.equal(80); 70 | expect(output.height).to.equal(50); 71 | expect(output.bytes).to.equal(2262); 72 | expect(output.type).to.equal("jpg"); 73 | expect(output.toString()).to.equal(expected_src); 74 | }); 75 | 76 | it("should use url-loader by default", () => { 77 | const context = { 78 | cacheable: false, 79 | resourcePath: resourcePath 80 | }; 81 | 82 | const result = sizeofLoader.call(context, content); 83 | 84 | const output = eval(result); 85 | 86 | const expected_src = `data:image/jpeg;base64,${encoded_content}`; 87 | 88 | expect(output.src).to.equal(expected_src); 89 | expect(output.width).to.equal(80); 90 | expect(output.height).to.equal(50); 91 | expect(output.bytes).to.equal(2262); 92 | expect(output.type).to.equal("jpg"); 93 | expect(output.toString()).to.equal(expected_src); 94 | }); 95 | 96 | it("should use url-loader when useFileLoader is false", () => { 97 | const context = { 98 | cacheable: false, 99 | resourcePath: resourcePath, 100 | useFileLoader: false 101 | }; 102 | 103 | const result = sizeofLoader.call(context, content); 104 | 105 | const output = eval(result); 106 | 107 | const expected_src = `data:image/jpeg;base64,${encoded_content}`; 108 | 109 | expect(output.src).to.equal(expected_src); 110 | expect(output.width).to.equal(80); 111 | expect(output.height).to.equal(50); 112 | expect(output.bytes).to.equal(2262); 113 | expect(output.type).to.equal("jpg"); 114 | expect(output.toString()).to.equal(expected_src); 115 | }); 116 | }); 117 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.3": 6 | version "7.10.3" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.3.tgz#324bcfd8d35cd3d47dae18cde63d752086435e9a" 8 | integrity sha512-fDx9eNW0qz0WkUeqL6tXEXzVlPh6Y5aCDEZesl0xBGA8ndRukX91Uk44ZqnkECp01NAZUdCAl+aiQNGi0k88Eg== 9 | dependencies: 10 | "@babel/highlight" "^7.10.3" 11 | 12 | "@babel/generator@^7.10.3": 13 | version "7.10.3" 14 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.3.tgz#32b9a0d963a71d7a54f5f6c15659c3dbc2a523a5" 15 | integrity sha512-drt8MUHbEqRzNR0xnF8nMehbY11b1SDkRw03PSNH/3Rb2Z35oxkddVSi3rcaak0YJQ86PCuE7Qx1jSFhbLNBMA== 16 | dependencies: 17 | "@babel/types" "^7.10.3" 18 | jsesc "^2.5.1" 19 | lodash "^4.17.13" 20 | source-map "^0.5.0" 21 | 22 | "@babel/helper-function-name@^7.10.3": 23 | version "7.10.3" 24 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.3.tgz#79316cd75a9fa25ba9787ff54544307ed444f197" 25 | integrity sha512-FvSj2aiOd8zbeqijjgqdMDSyxsGHaMt5Tr0XjQsGKHD3/1FP3wksjnLAWzxw7lvXiej8W1Jt47SKTZ6upQNiRw== 26 | dependencies: 27 | "@babel/helper-get-function-arity" "^7.10.3" 28 | "@babel/template" "^7.10.3" 29 | "@babel/types" "^7.10.3" 30 | 31 | "@babel/helper-get-function-arity@^7.10.3": 32 | version "7.10.3" 33 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.3.tgz#3a28f7b28ccc7719eacd9223b659fdf162e4c45e" 34 | integrity sha512-iUD/gFsR+M6uiy69JA6fzM5seno8oE85IYZdbVVEuQaZlEzMO2MXblh+KSPJgsZAUx0EEbWXU0yJaW7C9CdAVg== 35 | dependencies: 36 | "@babel/types" "^7.10.3" 37 | 38 | "@babel/helper-split-export-declaration@^7.10.1": 39 | version "7.10.1" 40 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.1.tgz#c6f4be1cbc15e3a868e4c64a17d5d31d754da35f" 41 | integrity sha512-UQ1LVBPrYdbchNhLwj6fetj46BcFwfS4NllJo/1aJsT+1dLTEnXJL0qHqtY7gPzF8S2fXBJamf1biAXV3X077g== 42 | dependencies: 43 | "@babel/types" "^7.10.1" 44 | 45 | "@babel/helper-validator-identifier@^7.10.3": 46 | version "7.10.3" 47 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.3.tgz#60d9847f98c4cea1b279e005fdb7c28be5412d15" 48 | integrity sha512-bU8JvtlYpJSBPuj1VUmKpFGaDZuLxASky3LhaKj3bmpSTY6VWooSM8msk+Z0CZoErFye2tlABF6yDkT3FOPAXw== 49 | 50 | "@babel/highlight@^7.10.3": 51 | version "7.10.3" 52 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.3.tgz#c633bb34adf07c5c13156692f5922c81ec53f28d" 53 | integrity sha512-Ih9B/u7AtgEnySE2L2F0Xm0GaM729XqqLfHkalTsbjXGyqmf/6M0Cu0WpvqueUlW+xk88BHw9Nkpj49naU+vWw== 54 | dependencies: 55 | "@babel/helper-validator-identifier" "^7.10.3" 56 | chalk "^2.0.0" 57 | js-tokens "^4.0.0" 58 | 59 | "@babel/parser@^7.10.3", "@babel/parser@^7.7.0": 60 | version "7.10.3" 61 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.3.tgz#7e71d892b0d6e7d04a1af4c3c79d72c1f10f5315" 62 | integrity sha512-oJtNJCMFdIMwXGmx+KxuaD7i3b8uS7TTFYW/FNG2BT8m+fmGHoiPYoH0Pe3gya07WuFmM5FCDIr1x0irkD/hyA== 63 | 64 | "@babel/template@^7.10.3": 65 | version "7.10.3" 66 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.3.tgz#4d13bc8e30bf95b0ce9d175d30306f42a2c9a7b8" 67 | integrity sha512-5BjI4gdtD+9fHZUsaxPHPNpwa+xRkDO7c7JbhYn2afvrkDu5SfAAbi9AIMXw2xEhO/BR35TqiW97IqNvCo/GqA== 68 | dependencies: 69 | "@babel/code-frame" "^7.10.3" 70 | "@babel/parser" "^7.10.3" 71 | "@babel/types" "^7.10.3" 72 | 73 | "@babel/traverse@^7.7.0": 74 | version "7.10.3" 75 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.3.tgz#0b01731794aa7b77b214bcd96661f18281155d7e" 76 | integrity sha512-qO6623eBFhuPm0TmmrUFMT1FulCmsSeJuVGhiLodk2raUDFhhTECLd9E9jC4LBIWziqt4wgF6KuXE4d+Jz9yug== 77 | dependencies: 78 | "@babel/code-frame" "^7.10.3" 79 | "@babel/generator" "^7.10.3" 80 | "@babel/helper-function-name" "^7.10.3" 81 | "@babel/helper-split-export-declaration" "^7.10.1" 82 | "@babel/parser" "^7.10.3" 83 | "@babel/types" "^7.10.3" 84 | debug "^4.1.0" 85 | globals "^11.1.0" 86 | lodash "^4.17.13" 87 | 88 | "@babel/types@^7.10.1", "@babel/types@^7.10.3", "@babel/types@^7.7.0": 89 | version "7.10.3" 90 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.3.tgz#6535e3b79fea86a6b09e012ea8528f935099de8e" 91 | integrity sha512-nZxaJhBXBQ8HVoIcGsf9qWep3Oh3jCENK54V4mRF7qaJabVsAYdbTtmSD8WmAp1R6ytPiu5apMwSXyxB1WlaBA== 92 | dependencies: 93 | "@babel/helper-validator-identifier" "^7.10.3" 94 | lodash "^4.17.13" 95 | to-fast-properties "^2.0.0" 96 | 97 | "@types/color-name@^1.1.1": 98 | version "1.1.1" 99 | resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" 100 | integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== 101 | 102 | "@types/json-schema@^7.0.4": 103 | version "7.0.5" 104 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.5.tgz#dcce4430e64b443ba8945f0290fb564ad5bac6dd" 105 | integrity sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ== 106 | 107 | abbrev@1: 108 | version "1.1.0" 109 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 110 | 111 | acorn-jsx@^5.2.0: 112 | version "5.2.0" 113 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz#4c66069173d6fdd68ed85239fc256226182b2ebe" 114 | integrity sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ== 115 | 116 | acorn@^7.2.0: 117 | version "7.3.1" 118 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.3.1.tgz#85010754db53c3fbaf3b9ea3e083aa5c5d147ffd" 119 | integrity sha512-tLc0wSnatxAQHVHUapaHdz72pi9KUyHjq5KyHjGg9Y8Ifdc79pTh2XvI6I1/chZbnM7QtNKzh66ooDogPZSleA== 120 | 121 | ajv-keywords@^3.4.1: 122 | version "3.4.1" 123 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da" 124 | integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ== 125 | 126 | ajv@^4.9.1: 127 | version "4.11.8" 128 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 129 | dependencies: 130 | co "^4.6.0" 131 | json-stable-stringify "^1.0.1" 132 | 133 | ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.2: 134 | version "6.12.2" 135 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd" 136 | integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ== 137 | dependencies: 138 | fast-deep-equal "^3.1.1" 139 | fast-json-stable-stringify "^2.0.0" 140 | json-schema-traverse "^0.4.1" 141 | uri-js "^4.2.2" 142 | 143 | ansi-colors@^3.2.1: 144 | version "3.2.4" 145 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" 146 | integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== 147 | 148 | ansi-regex@^2.0.0: 149 | version "2.1.1" 150 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 151 | 152 | ansi-regex@^4.1.0: 153 | version "4.1.0" 154 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 155 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 156 | 157 | ansi-regex@^5.0.0: 158 | version "5.0.0" 159 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 160 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 161 | 162 | ansi-styles@^2.2.1: 163 | version "2.2.1" 164 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 165 | 166 | ansi-styles@^3.1.0: 167 | version "3.2.0" 168 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 169 | dependencies: 170 | color-convert "^1.9.0" 171 | 172 | ansi-styles@^3.2.0: 173 | version "3.2.1" 174 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 175 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 176 | dependencies: 177 | color-convert "^1.9.0" 178 | 179 | ansi-styles@^4.1.0: 180 | version "4.2.1" 181 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" 182 | integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== 183 | dependencies: 184 | "@types/color-name" "^1.1.1" 185 | color-convert "^2.0.1" 186 | 187 | anymatch@^1.3.0: 188 | version "1.3.0" 189 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 190 | dependencies: 191 | arrify "^1.0.0" 192 | micromatch "^2.1.5" 193 | 194 | aproba@^1.0.3: 195 | version "1.1.2" 196 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 197 | 198 | are-we-there-yet@~1.1.2: 199 | version "1.1.4" 200 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 201 | dependencies: 202 | delegates "^1.0.0" 203 | readable-stream "^2.0.6" 204 | 205 | argparse@^1.0.7: 206 | version "1.0.9" 207 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 208 | dependencies: 209 | sprintf-js "~1.0.2" 210 | 211 | arr-diff@^2.0.0: 212 | version "2.0.0" 213 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 214 | dependencies: 215 | arr-flatten "^1.0.1" 216 | 217 | arr-flatten@^1.0.1: 218 | version "1.0.3" 219 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.3.tgz#a274ed85ac08849b6bd7847c4580745dc51adfb1" 220 | 221 | array-unique@^0.2.1: 222 | version "0.2.1" 223 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 224 | 225 | arrify@^1.0.0: 226 | version "1.0.1" 227 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 228 | 229 | asn1@~0.2.3: 230 | version "0.2.4" 231 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 232 | integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== 233 | dependencies: 234 | safer-buffer "~2.1.0" 235 | 236 | assert-plus@1.0.0, assert-plus@^1.0.0: 237 | version "1.0.0" 238 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 239 | 240 | assert-plus@^0.2.0: 241 | version "0.2.0" 242 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 243 | 244 | assertion-error@^1.1.0: 245 | version "1.1.0" 246 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" 247 | integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== 248 | 249 | astral-regex@^1.0.0: 250 | version "1.0.0" 251 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 252 | integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== 253 | 254 | async-each@^1.0.0: 255 | version "1.0.1" 256 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 257 | 258 | asynckit@^0.4.0: 259 | version "0.4.0" 260 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 261 | 262 | aws-sign2@~0.6.0: 263 | version "0.6.0" 264 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 265 | 266 | aws4@^1.2.1: 267 | version "1.6.0" 268 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 269 | 270 | babel-cli@^6.24.1: 271 | version "6.26.0" 272 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 273 | integrity sha1-UCq1SHTX24itALiHoGODzgPQAvE= 274 | dependencies: 275 | babel-core "^6.26.0" 276 | babel-polyfill "^6.26.0" 277 | babel-register "^6.26.0" 278 | babel-runtime "^6.26.0" 279 | commander "^2.11.0" 280 | convert-source-map "^1.5.0" 281 | fs-readdir-recursive "^1.0.0" 282 | glob "^7.1.2" 283 | lodash "^4.17.4" 284 | output-file-sync "^1.1.2" 285 | path-is-absolute "^1.0.1" 286 | slash "^1.0.0" 287 | source-map "^0.5.6" 288 | v8flags "^2.1.1" 289 | optionalDependencies: 290 | chokidar "^1.6.1" 291 | 292 | babel-code-frame@^6.22.0: 293 | version "6.22.0" 294 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 295 | dependencies: 296 | chalk "^1.1.0" 297 | esutils "^2.0.2" 298 | js-tokens "^3.0.0" 299 | 300 | babel-code-frame@^6.26.0: 301 | version "6.26.0" 302 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 303 | integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= 304 | dependencies: 305 | chalk "^1.1.3" 306 | esutils "^2.0.2" 307 | js-tokens "^3.0.2" 308 | 309 | babel-core@^6.26.0: 310 | version "6.26.3" 311 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 312 | integrity sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA== 313 | dependencies: 314 | babel-code-frame "^6.26.0" 315 | babel-generator "^6.26.0" 316 | babel-helpers "^6.24.1" 317 | babel-messages "^6.23.0" 318 | babel-register "^6.26.0" 319 | babel-runtime "^6.26.0" 320 | babel-template "^6.26.0" 321 | babel-traverse "^6.26.0" 322 | babel-types "^6.26.0" 323 | babylon "^6.18.0" 324 | convert-source-map "^1.5.1" 325 | debug "^2.6.9" 326 | json5 "^0.5.1" 327 | lodash "^4.17.4" 328 | minimatch "^3.0.4" 329 | path-is-absolute "^1.0.1" 330 | private "^0.1.8" 331 | slash "^1.0.0" 332 | source-map "^0.5.7" 333 | 334 | babel-eslint@^10.1.0: 335 | version "10.1.0" 336 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232" 337 | integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg== 338 | dependencies: 339 | "@babel/code-frame" "^7.0.0" 340 | "@babel/parser" "^7.7.0" 341 | "@babel/traverse" "^7.7.0" 342 | "@babel/types" "^7.7.0" 343 | eslint-visitor-keys "^1.0.0" 344 | resolve "^1.12.0" 345 | 346 | babel-generator@^6.26.0: 347 | version "6.26.1" 348 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 349 | integrity sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA== 350 | dependencies: 351 | babel-messages "^6.23.0" 352 | babel-runtime "^6.26.0" 353 | babel-types "^6.26.0" 354 | detect-indent "^4.0.0" 355 | jsesc "^1.3.0" 356 | lodash "^4.17.4" 357 | source-map "^0.5.7" 358 | trim-right "^1.0.1" 359 | 360 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 361 | version "6.24.1" 362 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 363 | dependencies: 364 | babel-helper-explode-assignable-expression "^6.24.1" 365 | babel-runtime "^6.22.0" 366 | babel-types "^6.24.1" 367 | 368 | babel-helper-call-delegate@^6.24.1: 369 | version "6.24.1" 370 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 371 | dependencies: 372 | babel-helper-hoist-variables "^6.24.1" 373 | babel-runtime "^6.22.0" 374 | babel-traverse "^6.24.1" 375 | babel-types "^6.24.1" 376 | 377 | babel-helper-define-map@^6.24.1: 378 | version "6.24.1" 379 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" 380 | dependencies: 381 | babel-helper-function-name "^6.24.1" 382 | babel-runtime "^6.22.0" 383 | babel-types "^6.24.1" 384 | lodash "^4.2.0" 385 | 386 | babel-helper-explode-assignable-expression@^6.24.1: 387 | version "6.24.1" 388 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 389 | dependencies: 390 | babel-runtime "^6.22.0" 391 | babel-traverse "^6.24.1" 392 | babel-types "^6.24.1" 393 | 394 | babel-helper-function-name@^6.24.1: 395 | version "6.24.1" 396 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 397 | dependencies: 398 | babel-helper-get-function-arity "^6.24.1" 399 | babel-runtime "^6.22.0" 400 | babel-template "^6.24.1" 401 | babel-traverse "^6.24.1" 402 | babel-types "^6.24.1" 403 | 404 | babel-helper-get-function-arity@^6.24.1: 405 | version "6.24.1" 406 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 407 | dependencies: 408 | babel-runtime "^6.22.0" 409 | babel-types "^6.24.1" 410 | 411 | babel-helper-hoist-variables@^6.24.1: 412 | version "6.24.1" 413 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 414 | dependencies: 415 | babel-runtime "^6.22.0" 416 | babel-types "^6.24.1" 417 | 418 | babel-helper-optimise-call-expression@^6.24.1: 419 | version "6.24.1" 420 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 421 | dependencies: 422 | babel-runtime "^6.22.0" 423 | babel-types "^6.24.1" 424 | 425 | babel-helper-regex@^6.24.1: 426 | version "6.24.1" 427 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" 428 | dependencies: 429 | babel-runtime "^6.22.0" 430 | babel-types "^6.24.1" 431 | lodash "^4.2.0" 432 | 433 | babel-helper-remap-async-to-generator@^6.24.1: 434 | version "6.24.1" 435 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 436 | dependencies: 437 | babel-helper-function-name "^6.24.1" 438 | babel-runtime "^6.22.0" 439 | babel-template "^6.24.1" 440 | babel-traverse "^6.24.1" 441 | babel-types "^6.24.1" 442 | 443 | babel-helper-replace-supers@^6.24.1: 444 | version "6.24.1" 445 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 446 | dependencies: 447 | babel-helper-optimise-call-expression "^6.24.1" 448 | babel-messages "^6.23.0" 449 | babel-runtime "^6.22.0" 450 | babel-template "^6.24.1" 451 | babel-traverse "^6.24.1" 452 | babel-types "^6.24.1" 453 | 454 | babel-helpers@^6.24.1: 455 | version "6.24.1" 456 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 457 | dependencies: 458 | babel-runtime "^6.22.0" 459 | babel-template "^6.24.1" 460 | 461 | babel-messages@^6.23.0: 462 | version "6.23.0" 463 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 464 | dependencies: 465 | babel-runtime "^6.22.0" 466 | 467 | babel-plugin-check-es2015-constants@^6.22.0: 468 | version "6.22.0" 469 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 470 | dependencies: 471 | babel-runtime "^6.22.0" 472 | 473 | babel-plugin-syntax-async-functions@^6.8.0: 474 | version "6.13.0" 475 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 476 | 477 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 478 | version "6.13.0" 479 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 480 | 481 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 482 | version "6.22.0" 483 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 484 | 485 | babel-plugin-transform-async-to-generator@^6.22.0: 486 | version "6.24.1" 487 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 488 | dependencies: 489 | babel-helper-remap-async-to-generator "^6.24.1" 490 | babel-plugin-syntax-async-functions "^6.8.0" 491 | babel-runtime "^6.22.0" 492 | 493 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 494 | version "6.22.0" 495 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 496 | dependencies: 497 | babel-runtime "^6.22.0" 498 | 499 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 500 | version "6.22.0" 501 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 502 | dependencies: 503 | babel-runtime "^6.22.0" 504 | 505 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 506 | version "6.24.1" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" 508 | dependencies: 509 | babel-runtime "^6.22.0" 510 | babel-template "^6.24.1" 511 | babel-traverse "^6.24.1" 512 | babel-types "^6.24.1" 513 | lodash "^4.2.0" 514 | 515 | babel-plugin-transform-es2015-classes@^6.23.0: 516 | version "6.24.1" 517 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 518 | dependencies: 519 | babel-helper-define-map "^6.24.1" 520 | babel-helper-function-name "^6.24.1" 521 | babel-helper-optimise-call-expression "^6.24.1" 522 | babel-helper-replace-supers "^6.24.1" 523 | babel-messages "^6.23.0" 524 | babel-runtime "^6.22.0" 525 | babel-template "^6.24.1" 526 | babel-traverse "^6.24.1" 527 | babel-types "^6.24.1" 528 | 529 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 530 | version "6.24.1" 531 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 532 | dependencies: 533 | babel-runtime "^6.22.0" 534 | babel-template "^6.24.1" 535 | 536 | babel-plugin-transform-es2015-destructuring@^6.23.0: 537 | version "6.23.0" 538 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 539 | dependencies: 540 | babel-runtime "^6.22.0" 541 | 542 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 543 | version "6.24.1" 544 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 545 | dependencies: 546 | babel-runtime "^6.22.0" 547 | babel-types "^6.24.1" 548 | 549 | babel-plugin-transform-es2015-for-of@^6.23.0: 550 | version "6.23.0" 551 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 552 | dependencies: 553 | babel-runtime "^6.22.0" 554 | 555 | babel-plugin-transform-es2015-function-name@^6.22.0: 556 | version "6.24.1" 557 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 558 | dependencies: 559 | babel-helper-function-name "^6.24.1" 560 | babel-runtime "^6.22.0" 561 | babel-types "^6.24.1" 562 | 563 | babel-plugin-transform-es2015-literals@^6.22.0: 564 | version "6.22.0" 565 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 566 | dependencies: 567 | babel-runtime "^6.22.0" 568 | 569 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 570 | version "6.24.1" 571 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 572 | dependencies: 573 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 574 | babel-runtime "^6.22.0" 575 | babel-template "^6.24.1" 576 | 577 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 578 | version "6.24.1" 579 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" 580 | dependencies: 581 | babel-plugin-transform-strict-mode "^6.24.1" 582 | babel-runtime "^6.22.0" 583 | babel-template "^6.24.1" 584 | babel-types "^6.24.1" 585 | 586 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 587 | version "6.24.1" 588 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 589 | dependencies: 590 | babel-helper-hoist-variables "^6.24.1" 591 | babel-runtime "^6.22.0" 592 | babel-template "^6.24.1" 593 | 594 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 595 | version "6.24.1" 596 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 597 | dependencies: 598 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 599 | babel-runtime "^6.22.0" 600 | babel-template "^6.24.1" 601 | 602 | babel-plugin-transform-es2015-object-super@^6.22.0: 603 | version "6.24.1" 604 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 605 | dependencies: 606 | babel-helper-replace-supers "^6.24.1" 607 | babel-runtime "^6.22.0" 608 | 609 | babel-plugin-transform-es2015-parameters@^6.23.0: 610 | version "6.24.1" 611 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 612 | dependencies: 613 | babel-helper-call-delegate "^6.24.1" 614 | babel-helper-get-function-arity "^6.24.1" 615 | babel-runtime "^6.22.0" 616 | babel-template "^6.24.1" 617 | babel-traverse "^6.24.1" 618 | babel-types "^6.24.1" 619 | 620 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 621 | version "6.24.1" 622 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 623 | dependencies: 624 | babel-runtime "^6.22.0" 625 | babel-types "^6.24.1" 626 | 627 | babel-plugin-transform-es2015-spread@^6.22.0: 628 | version "6.22.0" 629 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 630 | dependencies: 631 | babel-runtime "^6.22.0" 632 | 633 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 634 | version "6.24.1" 635 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 636 | dependencies: 637 | babel-helper-regex "^6.24.1" 638 | babel-runtime "^6.22.0" 639 | babel-types "^6.24.1" 640 | 641 | babel-plugin-transform-es2015-template-literals@^6.22.0: 642 | version "6.22.0" 643 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 644 | dependencies: 645 | babel-runtime "^6.22.0" 646 | 647 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 648 | version "6.23.0" 649 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 650 | dependencies: 651 | babel-runtime "^6.22.0" 652 | 653 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 654 | version "6.24.1" 655 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 656 | dependencies: 657 | babel-helper-regex "^6.24.1" 658 | babel-runtime "^6.22.0" 659 | regexpu-core "^2.0.0" 660 | 661 | babel-plugin-transform-exponentiation-operator@^6.22.0: 662 | version "6.24.1" 663 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 664 | dependencies: 665 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 666 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 667 | babel-runtime "^6.22.0" 668 | 669 | babel-plugin-transform-regenerator@^6.22.0: 670 | version "6.24.1" 671 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" 672 | dependencies: 673 | regenerator-transform "0.9.11" 674 | 675 | babel-plugin-transform-strict-mode@^6.24.1: 676 | version "6.24.1" 677 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 678 | dependencies: 679 | babel-runtime "^6.22.0" 680 | babel-types "^6.24.1" 681 | 682 | babel-polyfill@^6.26.0: 683 | version "6.26.0" 684 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 685 | integrity sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM= 686 | dependencies: 687 | babel-runtime "^6.26.0" 688 | core-js "^2.5.0" 689 | regenerator-runtime "^0.10.5" 690 | 691 | babel-preset-env@^1.5.2: 692 | version "1.7.0" 693 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a" 694 | integrity sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg== 695 | dependencies: 696 | babel-plugin-check-es2015-constants "^6.22.0" 697 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 698 | babel-plugin-transform-async-to-generator "^6.22.0" 699 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 700 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 701 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 702 | babel-plugin-transform-es2015-classes "^6.23.0" 703 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 704 | babel-plugin-transform-es2015-destructuring "^6.23.0" 705 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 706 | babel-plugin-transform-es2015-for-of "^6.23.0" 707 | babel-plugin-transform-es2015-function-name "^6.22.0" 708 | babel-plugin-transform-es2015-literals "^6.22.0" 709 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 710 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 711 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 712 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 713 | babel-plugin-transform-es2015-object-super "^6.22.0" 714 | babel-plugin-transform-es2015-parameters "^6.23.0" 715 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 716 | babel-plugin-transform-es2015-spread "^6.22.0" 717 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 718 | babel-plugin-transform-es2015-template-literals "^6.22.0" 719 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 720 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 721 | babel-plugin-transform-exponentiation-operator "^6.22.0" 722 | babel-plugin-transform-regenerator "^6.22.0" 723 | browserslist "^3.2.6" 724 | invariant "^2.2.2" 725 | semver "^5.3.0" 726 | 727 | babel-register@^6.24.1, babel-register@^6.26.0: 728 | version "6.26.0" 729 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 730 | integrity sha1-btAhFz4vy0htestFxgCahW9kcHE= 731 | dependencies: 732 | babel-core "^6.26.0" 733 | babel-runtime "^6.26.0" 734 | core-js "^2.5.0" 735 | home-or-tmp "^2.0.0" 736 | lodash "^4.17.4" 737 | mkdirp "^0.5.1" 738 | source-map-support "^0.4.15" 739 | 740 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 741 | version "6.26.0" 742 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 743 | integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= 744 | dependencies: 745 | core-js "^2.4.0" 746 | regenerator-runtime "^0.11.0" 747 | 748 | babel-template@^6.24.1: 749 | version "6.25.0" 750 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" 751 | dependencies: 752 | babel-runtime "^6.22.0" 753 | babel-traverse "^6.25.0" 754 | babel-types "^6.25.0" 755 | babylon "^6.17.2" 756 | lodash "^4.2.0" 757 | 758 | babel-template@^6.26.0: 759 | version "6.26.0" 760 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 761 | integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI= 762 | dependencies: 763 | babel-runtime "^6.26.0" 764 | babel-traverse "^6.26.0" 765 | babel-types "^6.26.0" 766 | babylon "^6.18.0" 767 | lodash "^4.17.4" 768 | 769 | babel-traverse@^6.24.1, babel-traverse@^6.25.0: 770 | version "6.25.0" 771 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" 772 | dependencies: 773 | babel-code-frame "^6.22.0" 774 | babel-messages "^6.23.0" 775 | babel-runtime "^6.22.0" 776 | babel-types "^6.25.0" 777 | babylon "^6.17.2" 778 | debug "^2.2.0" 779 | globals "^9.0.0" 780 | invariant "^2.2.0" 781 | lodash "^4.2.0" 782 | 783 | babel-traverse@^6.26.0: 784 | version "6.26.0" 785 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 786 | integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4= 787 | dependencies: 788 | babel-code-frame "^6.26.0" 789 | babel-messages "^6.23.0" 790 | babel-runtime "^6.26.0" 791 | babel-types "^6.26.0" 792 | babylon "^6.18.0" 793 | debug "^2.6.8" 794 | globals "^9.18.0" 795 | invariant "^2.2.2" 796 | lodash "^4.17.4" 797 | 798 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.25.0: 799 | version "6.25.0" 800 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" 801 | dependencies: 802 | babel-runtime "^6.22.0" 803 | esutils "^2.0.2" 804 | lodash "^4.2.0" 805 | to-fast-properties "^1.0.1" 806 | 807 | babel-types@^6.26.0: 808 | version "6.26.0" 809 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 810 | integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc= 811 | dependencies: 812 | babel-runtime "^6.26.0" 813 | esutils "^2.0.2" 814 | lodash "^4.17.4" 815 | to-fast-properties "^1.0.3" 816 | 817 | babylon@^6.17.2: 818 | version "6.17.4" 819 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" 820 | 821 | babylon@^6.18.0: 822 | version "6.18.0" 823 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 824 | integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== 825 | 826 | balanced-match@^1.0.0: 827 | version "1.0.0" 828 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 829 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 830 | 831 | bcrypt-pbkdf@^1.0.0: 832 | version "1.0.2" 833 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 834 | integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= 835 | dependencies: 836 | tweetnacl "^0.14.3" 837 | 838 | big.js@^5.2.2: 839 | version "5.2.2" 840 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" 841 | integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== 842 | 843 | binary-extensions@^1.0.0: 844 | version "1.8.0" 845 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 846 | 847 | block-stream@*: 848 | version "0.0.9" 849 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 850 | integrity sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo= 851 | dependencies: 852 | inherits "~2.0.0" 853 | 854 | boom@2.x.x: 855 | version "2.10.1" 856 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 857 | dependencies: 858 | hoek "2.x.x" 859 | 860 | brace-expansion@^1.1.7: 861 | version "1.1.11" 862 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 863 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 864 | dependencies: 865 | balanced-match "^1.0.0" 866 | concat-map "0.0.1" 867 | 868 | braces@^1.8.2: 869 | version "1.8.5" 870 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 871 | dependencies: 872 | expand-range "^1.8.1" 873 | preserve "^0.2.0" 874 | repeat-element "^1.1.2" 875 | 876 | browser-stdout@1.3.1: 877 | version "1.3.1" 878 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" 879 | 880 | browserslist@^3.2.6: 881 | version "3.2.8" 882 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6" 883 | integrity sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ== 884 | dependencies: 885 | caniuse-lite "^1.0.30000844" 886 | electron-to-chromium "^1.3.47" 887 | 888 | callsites@^3.0.0: 889 | version "3.1.0" 890 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 891 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 892 | 893 | caniuse-lite@^1.0.30000844: 894 | version "1.0.30001081" 895 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001081.tgz#40615a3c416a047c5a4d45673e5257bf128eb3b5" 896 | integrity sha512-iZdh3lu09jsUtLE6Bp8NAbJskco4Y3UDtkR3GTCJGsbMowBU5IWDFF79sV2ws7lSqTzWyKazxam2thasHymENQ== 897 | 898 | caseless@~0.12.0: 899 | version "0.12.0" 900 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 901 | 902 | chai@^4.0.2: 903 | version "4.2.0" 904 | resolved "https://registry.yarnpkg.com/chai/-/chai-4.2.0.tgz#760aa72cf20e3795e84b12877ce0e83737aa29e5" 905 | integrity sha512-XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw== 906 | dependencies: 907 | assertion-error "^1.1.0" 908 | check-error "^1.0.2" 909 | deep-eql "^3.0.1" 910 | get-func-name "^2.0.0" 911 | pathval "^1.1.0" 912 | type-detect "^4.0.5" 913 | 914 | chalk@^1.1.0, chalk@^1.1.3: 915 | version "1.1.3" 916 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 917 | dependencies: 918 | ansi-styles "^2.2.1" 919 | escape-string-regexp "^1.0.2" 920 | has-ansi "^2.0.0" 921 | strip-ansi "^3.0.0" 922 | supports-color "^2.0.0" 923 | 924 | chalk@^2.0.0: 925 | version "2.1.0" 926 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 927 | dependencies: 928 | ansi-styles "^3.1.0" 929 | escape-string-regexp "^1.0.5" 930 | supports-color "^4.0.0" 931 | 932 | chalk@^4.0.0: 933 | version "4.1.0" 934 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 935 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 936 | dependencies: 937 | ansi-styles "^4.1.0" 938 | supports-color "^7.1.0" 939 | 940 | check-error@^1.0.2: 941 | version "1.0.2" 942 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" 943 | integrity sha1-V00xLt2Iu13YkS6Sht1sCu1KrII= 944 | 945 | chokidar@^1.6.1: 946 | version "1.7.0" 947 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 948 | dependencies: 949 | anymatch "^1.3.0" 950 | async-each "^1.0.0" 951 | glob-parent "^2.0.0" 952 | inherits "^2.0.1" 953 | is-binary-path "^1.0.0" 954 | is-glob "^2.0.0" 955 | path-is-absolute "^1.0.0" 956 | readdirp "^2.0.0" 957 | optionalDependencies: 958 | fsevents "^1.0.0" 959 | 960 | co@^4.6.0: 961 | version "4.6.0" 962 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 963 | 964 | code-point-at@^1.0.0: 965 | version "1.1.0" 966 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 967 | 968 | color-convert@^1.9.0: 969 | version "1.9.0" 970 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 971 | dependencies: 972 | color-name "^1.1.1" 973 | 974 | color-convert@^2.0.1: 975 | version "2.0.1" 976 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 977 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 978 | dependencies: 979 | color-name "~1.1.4" 980 | 981 | color-name@^1.1.1: 982 | version "1.1.3" 983 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 984 | 985 | color-name@~1.1.4: 986 | version "1.1.4" 987 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 988 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 989 | 990 | combined-stream@^1.0.5, combined-stream@~1.0.5: 991 | version "1.0.5" 992 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 993 | dependencies: 994 | delayed-stream "~1.0.0" 995 | 996 | commander@2.11.0: 997 | version "2.11.0" 998 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 999 | 1000 | commander@^2.11.0: 1001 | version "2.20.3" 1002 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 1003 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 1004 | 1005 | concat-map@0.0.1: 1006 | version "0.0.1" 1007 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1008 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1009 | 1010 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1011 | version "1.1.0" 1012 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1013 | 1014 | convert-source-map@^1.5.0, convert-source-map@^1.5.1: 1015 | version "1.7.0" 1016 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 1017 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== 1018 | dependencies: 1019 | safe-buffer "~5.1.1" 1020 | 1021 | core-js@^2.4.0, core-js@^2.5.0: 1022 | version "2.6.11" 1023 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" 1024 | integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg== 1025 | 1026 | core-util-is@~1.0.0: 1027 | version "1.0.2" 1028 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1029 | 1030 | cross-env@^7.0.2: 1031 | version "7.0.2" 1032 | resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-7.0.2.tgz#bd5ed31339a93a3418ac4f3ca9ca3403082ae5f9" 1033 | integrity sha512-KZP/bMEOJEDCkDQAyRhu3RL2ZO/SUVrxQVI0G3YEQ+OLbRA3c6zgixe8Mq8a/z7+HKlNEjo8oiLUs8iRijY2Rw== 1034 | dependencies: 1035 | cross-spawn "^7.0.1" 1036 | 1037 | cross-spawn@^7.0.1, cross-spawn@^7.0.2: 1038 | version "7.0.3" 1039 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 1040 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 1041 | dependencies: 1042 | path-key "^3.1.0" 1043 | shebang-command "^2.0.0" 1044 | which "^2.0.1" 1045 | 1046 | cryptiles@2.x.x: 1047 | version "2.0.5" 1048 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1049 | dependencies: 1050 | boom "2.x.x" 1051 | 1052 | dashdash@^1.12.0: 1053 | version "1.14.1" 1054 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1055 | integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= 1056 | dependencies: 1057 | assert-plus "^1.0.0" 1058 | 1059 | debug@3.1.0: 1060 | version "3.1.0" 1061 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1062 | dependencies: 1063 | ms "2.0.0" 1064 | 1065 | debug@^2.2.0, debug@^2.6.8, debug@^2.6.9: 1066 | version "2.6.9" 1067 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1068 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 1069 | dependencies: 1070 | ms "2.0.0" 1071 | 1072 | debug@^4.0.1, debug@^4.1.0: 1073 | version "4.1.1" 1074 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 1075 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 1076 | dependencies: 1077 | ms "^2.1.1" 1078 | 1079 | deep-eql@^3.0.1: 1080 | version "3.0.1" 1081 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df" 1082 | integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw== 1083 | dependencies: 1084 | type-detect "^4.0.0" 1085 | 1086 | deep-extend@~0.4.0: 1087 | version "0.4.2" 1088 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1089 | 1090 | deep-is@^0.1.3: 1091 | version "0.1.3" 1092 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1093 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 1094 | 1095 | delayed-stream@~1.0.0: 1096 | version "1.0.0" 1097 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1098 | 1099 | delegates@^1.0.0: 1100 | version "1.0.0" 1101 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1102 | 1103 | detect-indent@^4.0.0: 1104 | version "4.0.0" 1105 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1106 | dependencies: 1107 | repeating "^2.0.0" 1108 | 1109 | diff@3.5.0: 1110 | version "3.5.0" 1111 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 1112 | 1113 | doctrine@^3.0.0: 1114 | version "3.0.0" 1115 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 1116 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 1117 | dependencies: 1118 | esutils "^2.0.2" 1119 | 1120 | ecc-jsbn@~0.1.1: 1121 | version "0.1.2" 1122 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 1123 | integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= 1124 | dependencies: 1125 | jsbn "~0.1.0" 1126 | safer-buffer "^2.1.0" 1127 | 1128 | electron-to-chromium@^1.3.47: 1129 | version "1.3.467" 1130 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.467.tgz#84eeb332134d49f0e49b88588824e56b20af9e27" 1131 | integrity sha512-U+QgsL8TZDU/n+rDnYDa3hY5uy3C4iry9mrJS0PNBBGwnocuQ+aHSfgY44mdlaK9744X5YqrrGUvD9PxCLY1HA== 1132 | 1133 | emoji-regex@^7.0.1: 1134 | version "7.0.3" 1135 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 1136 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 1137 | 1138 | emojis-list@^3.0.0: 1139 | version "3.0.0" 1140 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" 1141 | integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== 1142 | 1143 | enquirer@^2.3.5: 1144 | version "2.3.5" 1145 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.5.tgz#3ab2b838df0a9d8ab9e7dff235b0e8712ef92381" 1146 | integrity sha512-BNT1C08P9XD0vNg3J475yIUG+mVdp9T6towYFHUv897X0KoHBjB1shyrNmhmtHWKP17iSWgo7Gqh7BBuzLZMSA== 1147 | dependencies: 1148 | ansi-colors "^3.2.1" 1149 | 1150 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1151 | version "1.0.5" 1152 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1153 | 1154 | eslint-scope@^5.1.0: 1155 | version "5.1.0" 1156 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.0.tgz#d0f971dfe59c69e0cada684b23d49dbf82600ce5" 1157 | integrity sha512-iiGRvtxWqgtx5m8EyQUJihBloE4EnYeGE/bz1wSPwJE6tZuJUtHlhqDM4Xj2ukE8Dyy1+HCZ4hE0fzIVMzb58w== 1158 | dependencies: 1159 | esrecurse "^4.1.0" 1160 | estraverse "^4.1.1" 1161 | 1162 | eslint-utils@^2.0.0: 1163 | version "2.1.0" 1164 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" 1165 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== 1166 | dependencies: 1167 | eslint-visitor-keys "^1.1.0" 1168 | 1169 | eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.2.0: 1170 | version "1.3.0" 1171 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" 1172 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== 1173 | 1174 | eslint@^7.3.1: 1175 | version "7.3.1" 1176 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.3.1.tgz#76392bd7e44468d046149ba128d1566c59acbe19" 1177 | integrity sha512-cQC/xj9bhWUcyi/RuMbRtC3I0eW8MH0jhRELSvpKYkWep3C6YZ2OkvcvJVUeO6gcunABmzptbXBuDoXsjHmfTA== 1178 | dependencies: 1179 | "@babel/code-frame" "^7.0.0" 1180 | ajv "^6.10.0" 1181 | chalk "^4.0.0" 1182 | cross-spawn "^7.0.2" 1183 | debug "^4.0.1" 1184 | doctrine "^3.0.0" 1185 | enquirer "^2.3.5" 1186 | eslint-scope "^5.1.0" 1187 | eslint-utils "^2.0.0" 1188 | eslint-visitor-keys "^1.2.0" 1189 | espree "^7.1.0" 1190 | esquery "^1.2.0" 1191 | esutils "^2.0.2" 1192 | file-entry-cache "^5.0.1" 1193 | functional-red-black-tree "^1.0.1" 1194 | glob-parent "^5.0.0" 1195 | globals "^12.1.0" 1196 | ignore "^4.0.6" 1197 | import-fresh "^3.0.0" 1198 | imurmurhash "^0.1.4" 1199 | is-glob "^4.0.0" 1200 | js-yaml "^3.13.1" 1201 | json-stable-stringify-without-jsonify "^1.0.1" 1202 | levn "^0.4.1" 1203 | lodash "^4.17.14" 1204 | minimatch "^3.0.4" 1205 | natural-compare "^1.4.0" 1206 | optionator "^0.9.1" 1207 | progress "^2.0.0" 1208 | regexpp "^3.1.0" 1209 | semver "^7.2.1" 1210 | strip-ansi "^6.0.0" 1211 | strip-json-comments "^3.1.0" 1212 | table "^5.2.3" 1213 | text-table "^0.2.0" 1214 | v8-compile-cache "^2.0.3" 1215 | 1216 | espree@^7.1.0: 1217 | version "7.1.0" 1218 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.1.0.tgz#a9c7f18a752056735bf1ba14cb1b70adc3a5ce1c" 1219 | integrity sha512-dcorZSyfmm4WTuTnE5Y7MEN1DyoPYy1ZR783QW1FJoenn7RailyWFsq/UL6ZAAA7uXurN9FIpYyUs3OfiIW+Qw== 1220 | dependencies: 1221 | acorn "^7.2.0" 1222 | acorn-jsx "^5.2.0" 1223 | eslint-visitor-keys "^1.2.0" 1224 | 1225 | esprima@^4.0.0: 1226 | version "4.0.1" 1227 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1228 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1229 | 1230 | esquery@^1.2.0: 1231 | version "1.3.1" 1232 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57" 1233 | integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ== 1234 | dependencies: 1235 | estraverse "^5.1.0" 1236 | 1237 | esrecurse@^4.1.0: 1238 | version "4.2.0" 1239 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1240 | dependencies: 1241 | estraverse "^4.1.0" 1242 | object-assign "^4.0.1" 1243 | 1244 | estraverse@^4.1.0, estraverse@^4.1.1: 1245 | version "4.2.0" 1246 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1247 | 1248 | estraverse@^5.1.0: 1249 | version "5.1.0" 1250 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.1.0.tgz#374309d39fd935ae500e7b92e8a6b4c720e59642" 1251 | integrity sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw== 1252 | 1253 | esutils@^2.0.2: 1254 | version "2.0.2" 1255 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1256 | 1257 | expand-brackets@^0.1.4: 1258 | version "0.1.5" 1259 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1260 | dependencies: 1261 | is-posix-bracket "^0.1.0" 1262 | 1263 | expand-range@^1.8.1: 1264 | version "1.8.2" 1265 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1266 | dependencies: 1267 | fill-range "^2.1.0" 1268 | 1269 | extend@~3.0.0: 1270 | version "3.0.2" 1271 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1272 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 1273 | 1274 | extglob@^0.3.1: 1275 | version "0.3.2" 1276 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1277 | dependencies: 1278 | is-extglob "^1.0.0" 1279 | 1280 | extsprintf@1.0.2: 1281 | version "1.0.2" 1282 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1283 | 1284 | fast-deep-equal@^3.1.1: 1285 | version "3.1.3" 1286 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 1287 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1288 | 1289 | fast-json-stable-stringify@^2.0.0: 1290 | version "2.1.0" 1291 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1292 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1293 | 1294 | fast-levenshtein@^2.0.6: 1295 | version "2.0.6" 1296 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1297 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1298 | 1299 | file-entry-cache@^5.0.1: 1300 | version "5.0.1" 1301 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" 1302 | integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== 1303 | dependencies: 1304 | flat-cache "^2.0.1" 1305 | 1306 | file-loader@^6.0.0: 1307 | version "6.0.0" 1308 | resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.0.0.tgz#97bbfaab7a2460c07bcbd72d3a6922407f67649f" 1309 | integrity sha512-/aMOAYEFXDdjG0wytpTL5YQLfZnnTmLNjn+AIrJ/6HVnTfDqLsVKUUwkDf4I4kgex36BvjuXEn/TX9B/1ESyqQ== 1310 | dependencies: 1311 | loader-utils "^2.0.0" 1312 | schema-utils "^2.6.5" 1313 | 1314 | filename-regex@^2.0.0: 1315 | version "2.0.1" 1316 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1317 | 1318 | fill-range@^2.1.0: 1319 | version "2.2.3" 1320 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1321 | dependencies: 1322 | is-number "^2.1.0" 1323 | isobject "^2.0.0" 1324 | randomatic "^1.1.3" 1325 | repeat-element "^1.1.2" 1326 | repeat-string "^1.5.2" 1327 | 1328 | flat-cache@^2.0.1: 1329 | version "2.0.1" 1330 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" 1331 | integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== 1332 | dependencies: 1333 | flatted "^2.0.0" 1334 | rimraf "2.6.3" 1335 | write "1.0.3" 1336 | 1337 | flatted@^2.0.0: 1338 | version "2.0.2" 1339 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" 1340 | integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== 1341 | 1342 | for-in@^1.0.1: 1343 | version "1.0.2" 1344 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1345 | 1346 | for-own@^0.1.4: 1347 | version "0.1.5" 1348 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1349 | dependencies: 1350 | for-in "^1.0.1" 1351 | 1352 | forever-agent@~0.6.1: 1353 | version "0.6.1" 1354 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1355 | 1356 | form-data@~2.1.1: 1357 | version "2.1.4" 1358 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1359 | dependencies: 1360 | asynckit "^0.4.0" 1361 | combined-stream "^1.0.5" 1362 | mime-types "^2.1.12" 1363 | 1364 | fs-readdir-recursive@^1.0.0: 1365 | version "1.0.0" 1366 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1367 | 1368 | fs.realpath@^1.0.0: 1369 | version "1.0.0" 1370 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1371 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1372 | 1373 | fsevents@^1.0.0: 1374 | version "1.1.2" 1375 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1376 | dependencies: 1377 | nan "^2.3.0" 1378 | node-pre-gyp "^0.6.36" 1379 | 1380 | fstream-ignore@^1.0.5: 1381 | version "1.0.5" 1382 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1383 | dependencies: 1384 | fstream "^1.0.0" 1385 | inherits "2" 1386 | minimatch "^3.0.0" 1387 | 1388 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.12: 1389 | version "1.0.12" 1390 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" 1391 | integrity sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg== 1392 | dependencies: 1393 | graceful-fs "^4.1.2" 1394 | inherits "~2.0.0" 1395 | mkdirp ">=0.5 0" 1396 | rimraf "2" 1397 | 1398 | functional-red-black-tree@^1.0.1: 1399 | version "1.0.1" 1400 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1401 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 1402 | 1403 | gauge@~2.7.3: 1404 | version "2.7.4" 1405 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1406 | dependencies: 1407 | aproba "^1.0.3" 1408 | console-control-strings "^1.0.0" 1409 | has-unicode "^2.0.0" 1410 | object-assign "^4.1.0" 1411 | signal-exit "^3.0.0" 1412 | string-width "^1.0.1" 1413 | strip-ansi "^3.0.1" 1414 | wide-align "^1.1.0" 1415 | 1416 | get-func-name@^2.0.0: 1417 | version "2.0.0" 1418 | resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" 1419 | 1420 | getpass@^0.1.1: 1421 | version "0.1.7" 1422 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1423 | integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= 1424 | dependencies: 1425 | assert-plus "^1.0.0" 1426 | 1427 | glob-base@^0.3.0: 1428 | version "0.3.0" 1429 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1430 | dependencies: 1431 | glob-parent "^2.0.0" 1432 | is-glob "^2.0.0" 1433 | 1434 | glob-parent@^2.0.0: 1435 | version "2.0.0" 1436 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1437 | dependencies: 1438 | is-glob "^2.0.0" 1439 | 1440 | glob-parent@^5.0.0: 1441 | version "5.1.1" 1442 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 1443 | integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== 1444 | dependencies: 1445 | is-glob "^4.0.1" 1446 | 1447 | glob@7.1.2: 1448 | version "7.1.2" 1449 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1450 | dependencies: 1451 | fs.realpath "^1.0.0" 1452 | inflight "^1.0.4" 1453 | inherits "2" 1454 | minimatch "^3.0.4" 1455 | once "^1.3.0" 1456 | path-is-absolute "^1.0.0" 1457 | 1458 | glob@^7.1.2, glob@^7.1.3: 1459 | version "7.1.6" 1460 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 1461 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 1462 | dependencies: 1463 | fs.realpath "^1.0.0" 1464 | inflight "^1.0.4" 1465 | inherits "2" 1466 | minimatch "^3.0.4" 1467 | once "^1.3.0" 1468 | path-is-absolute "^1.0.0" 1469 | 1470 | globals@^11.1.0: 1471 | version "11.12.0" 1472 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1473 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1474 | 1475 | globals@^12.1.0: 1476 | version "12.4.0" 1477 | resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" 1478 | integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== 1479 | dependencies: 1480 | type-fest "^0.8.1" 1481 | 1482 | globals@^9.0.0, globals@^9.18.0: 1483 | version "9.18.0" 1484 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1485 | 1486 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1487 | version "4.2.4" 1488 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 1489 | integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== 1490 | 1491 | growl@1.10.3: 1492 | version "1.10.3" 1493 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.3.tgz#1926ba90cf3edfe2adb4927f5880bc22c66c790f" 1494 | 1495 | har-schema@^1.0.5: 1496 | version "1.0.5" 1497 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1498 | 1499 | har-validator@~4.2.1: 1500 | version "4.2.1" 1501 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1502 | dependencies: 1503 | ajv "^4.9.1" 1504 | har-schema "^1.0.5" 1505 | 1506 | has-ansi@^2.0.0: 1507 | version "2.0.0" 1508 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1509 | dependencies: 1510 | ansi-regex "^2.0.0" 1511 | 1512 | has-flag@^2.0.0: 1513 | version "2.0.0" 1514 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1515 | 1516 | has-flag@^4.0.0: 1517 | version "4.0.0" 1518 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1519 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1520 | 1521 | has-unicode@^2.0.0: 1522 | version "2.0.1" 1523 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1524 | 1525 | hawk@~3.1.3: 1526 | version "3.1.3" 1527 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1528 | dependencies: 1529 | boom "2.x.x" 1530 | cryptiles "2.x.x" 1531 | hoek "2.x.x" 1532 | sntp "1.x.x" 1533 | 1534 | he@1.1.1: 1535 | version "1.1.1" 1536 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1537 | 1538 | hoek@2.x.x: 1539 | version "2.16.3" 1540 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1541 | 1542 | home-or-tmp@^2.0.0: 1543 | version "2.0.0" 1544 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1545 | dependencies: 1546 | os-homedir "^1.0.0" 1547 | os-tmpdir "^1.0.1" 1548 | 1549 | http-signature@~1.1.0: 1550 | version "1.1.1" 1551 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1552 | dependencies: 1553 | assert-plus "^0.2.0" 1554 | jsprim "^1.2.2" 1555 | sshpk "^1.7.0" 1556 | 1557 | ignore@^4.0.6: 1558 | version "4.0.6" 1559 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 1560 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 1561 | 1562 | image-size@^0.8.3: 1563 | version "0.8.3" 1564 | resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.8.3.tgz#f0b568857e034f29baffd37013587f2c0cad8b46" 1565 | integrity sha512-SMtq1AJ+aqHB45c3FsB4ERK0UCiA2d3H1uq8s+8T0Pf8A3W4teyBQyaFaktH6xvZqh+npwlKU7i4fJo0r7TYTg== 1566 | dependencies: 1567 | queue "6.0.1" 1568 | 1569 | import-fresh@^3.0.0: 1570 | version "3.2.1" 1571 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" 1572 | integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== 1573 | dependencies: 1574 | parent-module "^1.0.0" 1575 | resolve-from "^4.0.0" 1576 | 1577 | imurmurhash@^0.1.4: 1578 | version "0.1.4" 1579 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1580 | 1581 | inflight@^1.0.4: 1582 | version "1.0.6" 1583 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1584 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1585 | dependencies: 1586 | once "^1.3.0" 1587 | wrappy "1" 1588 | 1589 | inherits@2, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 1590 | version "2.0.4" 1591 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1592 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1593 | 1594 | ini@~1.3.0: 1595 | version "1.3.4" 1596 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1597 | 1598 | invariant@^2.2.0, invariant@^2.2.2: 1599 | version "2.2.2" 1600 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1601 | dependencies: 1602 | loose-envify "^1.0.0" 1603 | 1604 | is-binary-path@^1.0.0: 1605 | version "1.0.1" 1606 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1607 | dependencies: 1608 | binary-extensions "^1.0.0" 1609 | 1610 | is-buffer@^1.1.5: 1611 | version "1.1.5" 1612 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1613 | 1614 | is-dotfile@^1.0.0: 1615 | version "1.0.3" 1616 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1617 | 1618 | is-equal-shallow@^0.1.3: 1619 | version "0.1.3" 1620 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1621 | dependencies: 1622 | is-primitive "^2.0.0" 1623 | 1624 | is-extendable@^0.1.1: 1625 | version "0.1.1" 1626 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1627 | 1628 | is-extglob@^1.0.0: 1629 | version "1.0.0" 1630 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1631 | 1632 | is-extglob@^2.1.1: 1633 | version "2.1.1" 1634 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1635 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1636 | 1637 | is-finite@^1.0.0: 1638 | version "1.0.2" 1639 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1640 | dependencies: 1641 | number-is-nan "^1.0.0" 1642 | 1643 | is-fullwidth-code-point@^1.0.0: 1644 | version "1.0.0" 1645 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1646 | dependencies: 1647 | number-is-nan "^1.0.0" 1648 | 1649 | is-fullwidth-code-point@^2.0.0: 1650 | version "2.0.0" 1651 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1652 | 1653 | is-glob@^2.0.0, is-glob@^2.0.1: 1654 | version "2.0.1" 1655 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1656 | dependencies: 1657 | is-extglob "^1.0.0" 1658 | 1659 | is-glob@^4.0.0, is-glob@^4.0.1: 1660 | version "4.0.1" 1661 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1662 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 1663 | dependencies: 1664 | is-extglob "^2.1.1" 1665 | 1666 | is-number@^2.1.0: 1667 | version "2.1.0" 1668 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1669 | dependencies: 1670 | kind-of "^3.0.2" 1671 | 1672 | is-number@^3.0.0: 1673 | version "3.0.0" 1674 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1675 | dependencies: 1676 | kind-of "^3.0.2" 1677 | 1678 | is-posix-bracket@^0.1.0: 1679 | version "0.1.1" 1680 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1681 | 1682 | is-primitive@^2.0.0: 1683 | version "2.0.0" 1684 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1685 | 1686 | is-typedarray@~1.0.0: 1687 | version "1.0.0" 1688 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1689 | 1690 | isarray@1.0.0, isarray@~1.0.0: 1691 | version "1.0.0" 1692 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1693 | 1694 | isexe@^2.0.0: 1695 | version "2.0.0" 1696 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1697 | 1698 | isobject@^2.0.0: 1699 | version "2.1.0" 1700 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1701 | dependencies: 1702 | isarray "1.0.0" 1703 | 1704 | isstream@~0.1.2: 1705 | version "0.1.2" 1706 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1707 | 1708 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1709 | version "3.0.2" 1710 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1711 | 1712 | js-tokens@^4.0.0: 1713 | version "4.0.0" 1714 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1715 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1716 | 1717 | js-yaml@^3.13.1: 1718 | version "3.14.0" 1719 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" 1720 | integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A== 1721 | dependencies: 1722 | argparse "^1.0.7" 1723 | esprima "^4.0.0" 1724 | 1725 | jsbn@~0.1.0: 1726 | version "0.1.1" 1727 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1728 | integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= 1729 | 1730 | jsesc@^1.3.0: 1731 | version "1.3.0" 1732 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1733 | 1734 | jsesc@^2.5.1: 1735 | version "2.5.2" 1736 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1737 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1738 | 1739 | jsesc@~0.5.0: 1740 | version "0.5.0" 1741 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1742 | 1743 | json-schema-traverse@^0.4.1: 1744 | version "0.4.1" 1745 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1746 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1747 | 1748 | json-schema@0.2.3: 1749 | version "0.2.3" 1750 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1751 | 1752 | json-stable-stringify-without-jsonify@^1.0.1: 1753 | version "1.0.1" 1754 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1755 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 1756 | 1757 | json-stable-stringify@^1.0.1: 1758 | version "1.0.1" 1759 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1760 | dependencies: 1761 | jsonify "~0.0.0" 1762 | 1763 | json-stringify-safe@~5.0.1: 1764 | version "5.0.1" 1765 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1766 | 1767 | json5@^0.5.1: 1768 | version "0.5.1" 1769 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1770 | 1771 | json5@^2.1.2: 1772 | version "2.1.3" 1773 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" 1774 | integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA== 1775 | dependencies: 1776 | minimist "^1.2.5" 1777 | 1778 | jsonify@~0.0.0: 1779 | version "0.0.0" 1780 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1781 | 1782 | jsprim@^1.2.2: 1783 | version "1.4.0" 1784 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 1785 | dependencies: 1786 | assert-plus "1.0.0" 1787 | extsprintf "1.0.2" 1788 | json-schema "0.2.3" 1789 | verror "1.3.6" 1790 | 1791 | kind-of@^3.0.2: 1792 | version "3.2.2" 1793 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1794 | dependencies: 1795 | is-buffer "^1.1.5" 1796 | 1797 | kind-of@^4.0.0: 1798 | version "4.0.0" 1799 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1800 | dependencies: 1801 | is-buffer "^1.1.5" 1802 | 1803 | levn@^0.4.1: 1804 | version "0.4.1" 1805 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1806 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1807 | dependencies: 1808 | prelude-ls "^1.2.1" 1809 | type-check "~0.4.0" 1810 | 1811 | loader-utils@^2.0.0: 1812 | version "2.0.0" 1813 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0" 1814 | integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ== 1815 | dependencies: 1816 | big.js "^5.2.2" 1817 | emojis-list "^3.0.0" 1818 | json5 "^2.1.2" 1819 | 1820 | lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.4, lodash@^4.2.0: 1821 | version "4.17.15" 1822 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 1823 | integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== 1824 | 1825 | loose-envify@^1.0.0: 1826 | version "1.3.1" 1827 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1828 | dependencies: 1829 | js-tokens "^3.0.0" 1830 | 1831 | micromatch@^2.1.5: 1832 | version "2.3.11" 1833 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1834 | dependencies: 1835 | arr-diff "^2.0.0" 1836 | array-unique "^0.2.1" 1837 | braces "^1.8.2" 1838 | expand-brackets "^0.1.4" 1839 | extglob "^0.3.1" 1840 | filename-regex "^2.0.0" 1841 | is-extglob "^1.0.0" 1842 | is-glob "^2.0.1" 1843 | kind-of "^3.0.2" 1844 | normalize-path "^2.0.1" 1845 | object.omit "^2.0.0" 1846 | parse-glob "^3.0.4" 1847 | regex-cache "^0.4.2" 1848 | 1849 | mime-db@1.44.0: 1850 | version "1.44.0" 1851 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" 1852 | integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== 1853 | 1854 | mime-db@~1.27.0: 1855 | version "1.27.0" 1856 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 1857 | 1858 | mime-types@^2.1.12, mime-types@~2.1.7: 1859 | version "2.1.15" 1860 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 1861 | dependencies: 1862 | mime-db "~1.27.0" 1863 | 1864 | mime-types@^2.1.26: 1865 | version "2.1.27" 1866 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" 1867 | integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== 1868 | dependencies: 1869 | mime-db "1.44.0" 1870 | 1871 | minimatch@3.0.4, minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1872 | version "3.0.4" 1873 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1874 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1875 | dependencies: 1876 | brace-expansion "^1.1.7" 1877 | 1878 | minimist@0.0.8: 1879 | version "0.0.8" 1880 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1881 | 1882 | minimist@^1.2.0: 1883 | version "1.2.0" 1884 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1885 | 1886 | minimist@^1.2.5: 1887 | version "1.2.5" 1888 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1889 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1890 | 1891 | mkdirp@0.5.1: 1892 | version "0.5.1" 1893 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1894 | dependencies: 1895 | minimist "0.0.8" 1896 | 1897 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1898 | version "0.5.5" 1899 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 1900 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 1901 | dependencies: 1902 | minimist "^1.2.5" 1903 | 1904 | mocha@^5.0.0: 1905 | version "5.1.1" 1906 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-5.1.1.tgz#b774c75609dac05eb48f4d9ba1d827b97fde8a7b" 1907 | dependencies: 1908 | browser-stdout "1.3.1" 1909 | commander "2.11.0" 1910 | debug "3.1.0" 1911 | diff "3.5.0" 1912 | escape-string-regexp "1.0.5" 1913 | glob "7.1.2" 1914 | growl "1.10.3" 1915 | he "1.1.1" 1916 | minimatch "3.0.4" 1917 | mkdirp "0.5.1" 1918 | supports-color "4.4.0" 1919 | 1920 | ms@2.0.0: 1921 | version "2.0.0" 1922 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1923 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1924 | 1925 | ms@^2.1.1: 1926 | version "2.1.2" 1927 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1928 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1929 | 1930 | nan@^2.3.0: 1931 | version "2.6.2" 1932 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" 1933 | 1934 | natural-compare@^1.4.0: 1935 | version "1.4.0" 1936 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1937 | 1938 | node-pre-gyp@^0.6.36: 1939 | version "0.6.36" 1940 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 1941 | dependencies: 1942 | mkdirp "^0.5.1" 1943 | nopt "^4.0.1" 1944 | npmlog "^4.0.2" 1945 | rc "^1.1.7" 1946 | request "^2.81.0" 1947 | rimraf "^2.6.1" 1948 | semver "^5.3.0" 1949 | tar "^2.2.1" 1950 | tar-pack "^3.4.0" 1951 | 1952 | nopt@^4.0.1: 1953 | version "4.0.1" 1954 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1955 | dependencies: 1956 | abbrev "1" 1957 | osenv "^0.1.4" 1958 | 1959 | normalize-path@^2.0.1: 1960 | version "2.1.1" 1961 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1962 | dependencies: 1963 | remove-trailing-separator "^1.0.1" 1964 | 1965 | npmlog@^4.0.2: 1966 | version "4.1.2" 1967 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1968 | dependencies: 1969 | are-we-there-yet "~1.1.2" 1970 | console-control-strings "~1.1.0" 1971 | gauge "~2.7.3" 1972 | set-blocking "~2.0.0" 1973 | 1974 | number-is-nan@^1.0.0: 1975 | version "1.0.1" 1976 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1977 | 1978 | oauth-sign@~0.8.1: 1979 | version "0.8.2" 1980 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1981 | 1982 | object-assign@^4.0.1, object-assign@^4.1.0: 1983 | version "4.1.1" 1984 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1985 | 1986 | object.omit@^2.0.0: 1987 | version "2.0.1" 1988 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1989 | dependencies: 1990 | for-own "^0.1.4" 1991 | is-extendable "^0.1.1" 1992 | 1993 | once@^1.3.0, once@^1.3.3: 1994 | version "1.4.0" 1995 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1996 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1997 | dependencies: 1998 | wrappy "1" 1999 | 2000 | optionator@^0.9.1: 2001 | version "0.9.1" 2002 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 2003 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 2004 | dependencies: 2005 | deep-is "^0.1.3" 2006 | fast-levenshtein "^2.0.6" 2007 | levn "^0.4.1" 2008 | prelude-ls "^1.2.1" 2009 | type-check "^0.4.0" 2010 | word-wrap "^1.2.3" 2011 | 2012 | os-homedir@^1.0.0: 2013 | version "1.0.2" 2014 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2015 | 2016 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2017 | version "1.0.2" 2018 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2019 | 2020 | osenv@^0.1.4: 2021 | version "0.1.4" 2022 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2023 | dependencies: 2024 | os-homedir "^1.0.0" 2025 | os-tmpdir "^1.0.0" 2026 | 2027 | output-file-sync@^1.1.2: 2028 | version "1.1.2" 2029 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2030 | integrity sha1-0KM+7+YaIF+suQCS6CZZjVJFznY= 2031 | dependencies: 2032 | graceful-fs "^4.1.4" 2033 | mkdirp "^0.5.1" 2034 | object-assign "^4.1.0" 2035 | 2036 | parent-module@^1.0.0: 2037 | version "1.0.1" 2038 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 2039 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 2040 | dependencies: 2041 | callsites "^3.0.0" 2042 | 2043 | parse-glob@^3.0.4: 2044 | version "3.0.4" 2045 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2046 | dependencies: 2047 | glob-base "^0.3.0" 2048 | is-dotfile "^1.0.0" 2049 | is-extglob "^1.0.0" 2050 | is-glob "^2.0.0" 2051 | 2052 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2053 | version "1.0.1" 2054 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2055 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2056 | 2057 | path-key@^3.1.0: 2058 | version "3.1.1" 2059 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 2060 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2061 | 2062 | path-parse@^1.0.6: 2063 | version "1.0.6" 2064 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 2065 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 2066 | 2067 | pathval@^1.1.0: 2068 | version "1.1.0" 2069 | resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0" 2070 | integrity sha1-uULm1L3mUwBe9rcTYd74cn0GReA= 2071 | 2072 | performance-now@^0.2.0: 2073 | version "0.2.0" 2074 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2075 | 2076 | prelude-ls@^1.2.1: 2077 | version "1.2.1" 2078 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 2079 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 2080 | 2081 | preserve@^0.2.0: 2082 | version "0.2.0" 2083 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2084 | 2085 | prettier@^2.0.5: 2086 | version "2.0.5" 2087 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.0.5.tgz#d6d56282455243f2f92cc1716692c08aa31522d4" 2088 | integrity sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg== 2089 | 2090 | private@^0.1.6: 2091 | version "0.1.7" 2092 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2093 | 2094 | private@^0.1.8: 2095 | version "0.1.8" 2096 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2097 | integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== 2098 | 2099 | process-nextick-args@~1.0.6: 2100 | version "1.0.7" 2101 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2102 | 2103 | progress@^2.0.0: 2104 | version "2.0.0" 2105 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 2106 | 2107 | punycode@^1.4.1: 2108 | version "1.4.1" 2109 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2110 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= 2111 | 2112 | punycode@^2.1.0: 2113 | version "2.1.1" 2114 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2115 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2116 | 2117 | qs@~6.4.0: 2118 | version "6.4.0" 2119 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2120 | 2121 | queue@6.0.1: 2122 | version "6.0.1" 2123 | resolved "https://registry.yarnpkg.com/queue/-/queue-6.0.1.tgz#abd5a5b0376912f070a25729e0b6a7d565683791" 2124 | integrity sha512-AJBQabRCCNr9ANq8v77RJEv73DPbn55cdTb+Giq4X0AVnNVZvMHlYp7XlQiN+1npCZj1DuSmaA2hYVUUDgxFDg== 2125 | dependencies: 2126 | inherits "~2.0.3" 2127 | 2128 | randomatic@^1.1.3: 2129 | version "1.1.7" 2130 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2131 | dependencies: 2132 | is-number "^3.0.0" 2133 | kind-of "^4.0.0" 2134 | 2135 | rc@^1.1.7: 2136 | version "1.2.1" 2137 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2138 | dependencies: 2139 | deep-extend "~0.4.0" 2140 | ini "~1.3.0" 2141 | minimist "^1.2.0" 2142 | strip-json-comments "~2.0.1" 2143 | 2144 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 2145 | version "2.3.3" 2146 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2147 | dependencies: 2148 | core-util-is "~1.0.0" 2149 | inherits "~2.0.3" 2150 | isarray "~1.0.0" 2151 | process-nextick-args "~1.0.6" 2152 | safe-buffer "~5.1.1" 2153 | string_decoder "~1.0.3" 2154 | util-deprecate "~1.0.1" 2155 | 2156 | readdirp@^2.0.0: 2157 | version "2.1.0" 2158 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2159 | dependencies: 2160 | graceful-fs "^4.1.2" 2161 | minimatch "^3.0.2" 2162 | readable-stream "^2.0.2" 2163 | set-immediate-shim "^1.0.1" 2164 | 2165 | regenerate@^1.2.1: 2166 | version "1.3.2" 2167 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2168 | 2169 | regenerator-runtime@^0.10.5: 2170 | version "0.10.5" 2171 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2172 | integrity sha1-M2w+/BIgrc7dosn6tntaeVWjNlg= 2173 | 2174 | regenerator-runtime@^0.11.0: 2175 | version "0.11.1" 2176 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2177 | integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== 2178 | 2179 | regenerator-transform@0.9.11: 2180 | version "0.9.11" 2181 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" 2182 | dependencies: 2183 | babel-runtime "^6.18.0" 2184 | babel-types "^6.19.0" 2185 | private "^0.1.6" 2186 | 2187 | regex-cache@^0.4.2: 2188 | version "0.4.3" 2189 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2190 | dependencies: 2191 | is-equal-shallow "^0.1.3" 2192 | is-primitive "^2.0.0" 2193 | 2194 | regexpp@^3.1.0: 2195 | version "3.1.0" 2196 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" 2197 | integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== 2198 | 2199 | regexpu-core@^2.0.0: 2200 | version "2.0.0" 2201 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2202 | dependencies: 2203 | regenerate "^1.2.1" 2204 | regjsgen "^0.2.0" 2205 | regjsparser "^0.1.4" 2206 | 2207 | regjsgen@^0.2.0: 2208 | version "0.2.0" 2209 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2210 | 2211 | regjsparser@^0.1.4: 2212 | version "0.1.5" 2213 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2214 | dependencies: 2215 | jsesc "~0.5.0" 2216 | 2217 | remove-trailing-separator@^1.0.1: 2218 | version "1.0.2" 2219 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" 2220 | 2221 | repeat-element@^1.1.2: 2222 | version "1.1.2" 2223 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2224 | 2225 | repeat-string@^1.5.2: 2226 | version "1.6.1" 2227 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2228 | 2229 | repeating@^2.0.0: 2230 | version "2.0.1" 2231 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2232 | dependencies: 2233 | is-finite "^1.0.0" 2234 | 2235 | request@^2.81.0: 2236 | version "2.81.0" 2237 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2238 | dependencies: 2239 | aws-sign2 "~0.6.0" 2240 | aws4 "^1.2.1" 2241 | caseless "~0.12.0" 2242 | combined-stream "~1.0.5" 2243 | extend "~3.0.0" 2244 | forever-agent "~0.6.1" 2245 | form-data "~2.1.1" 2246 | har-validator "~4.2.1" 2247 | hawk "~3.1.3" 2248 | http-signature "~1.1.0" 2249 | is-typedarray "~1.0.0" 2250 | isstream "~0.1.2" 2251 | json-stringify-safe "~5.0.1" 2252 | mime-types "~2.1.7" 2253 | oauth-sign "~0.8.1" 2254 | performance-now "^0.2.0" 2255 | qs "~6.4.0" 2256 | safe-buffer "^5.0.1" 2257 | stringstream "~0.0.4" 2258 | tough-cookie "~2.3.0" 2259 | tunnel-agent "^0.6.0" 2260 | uuid "^3.0.0" 2261 | 2262 | resolve-from@^4.0.0: 2263 | version "4.0.0" 2264 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 2265 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 2266 | 2267 | resolve@^1.12.0: 2268 | version "1.17.0" 2269 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" 2270 | integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== 2271 | dependencies: 2272 | path-parse "^1.0.6" 2273 | 2274 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 2275 | version "2.7.1" 2276 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 2277 | integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== 2278 | dependencies: 2279 | glob "^7.1.3" 2280 | 2281 | rimraf@2.6.3: 2282 | version "2.6.3" 2283 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 2284 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 2285 | dependencies: 2286 | glob "^7.1.3" 2287 | 2288 | safe-buffer@^5.0.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2289 | version "5.1.1" 2290 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2291 | 2292 | safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 2293 | version "2.1.2" 2294 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2295 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2296 | 2297 | schema-utils@^2.6.5: 2298 | version "2.7.0" 2299 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7" 2300 | integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A== 2301 | dependencies: 2302 | "@types/json-schema" "^7.0.4" 2303 | ajv "^6.12.2" 2304 | ajv-keywords "^3.4.1" 2305 | 2306 | semver@^5.3.0: 2307 | version "5.3.0" 2308 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 2309 | 2310 | semver@^7.2.1: 2311 | version "7.3.2" 2312 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" 2313 | integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== 2314 | 2315 | set-blocking@~2.0.0: 2316 | version "2.0.0" 2317 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2318 | 2319 | set-immediate-shim@^1.0.1: 2320 | version "1.0.1" 2321 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2322 | 2323 | shebang-command@^2.0.0: 2324 | version "2.0.0" 2325 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 2326 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2327 | dependencies: 2328 | shebang-regex "^3.0.0" 2329 | 2330 | shebang-regex@^3.0.0: 2331 | version "3.0.0" 2332 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 2333 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2334 | 2335 | signal-exit@^3.0.0: 2336 | version "3.0.2" 2337 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2338 | 2339 | slash@^1.0.0: 2340 | version "1.0.0" 2341 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2342 | 2343 | slice-ansi@^2.1.0: 2344 | version "2.1.0" 2345 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" 2346 | integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== 2347 | dependencies: 2348 | ansi-styles "^3.2.0" 2349 | astral-regex "^1.0.0" 2350 | is-fullwidth-code-point "^2.0.0" 2351 | 2352 | sntp@1.x.x: 2353 | version "1.0.9" 2354 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2355 | dependencies: 2356 | hoek "2.x.x" 2357 | 2358 | source-map-support@^0.4.15: 2359 | version "0.4.18" 2360 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2361 | integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA== 2362 | dependencies: 2363 | source-map "^0.5.6" 2364 | 2365 | source-map@^0.5.0, source-map@^0.5.6, source-map@^0.5.7: 2366 | version "0.5.7" 2367 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2368 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 2369 | 2370 | sprintf-js@~1.0.2: 2371 | version "1.0.3" 2372 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2373 | 2374 | sshpk@^1.7.0: 2375 | version "1.16.1" 2376 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 2377 | integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== 2378 | dependencies: 2379 | asn1 "~0.2.3" 2380 | assert-plus "^1.0.0" 2381 | bcrypt-pbkdf "^1.0.0" 2382 | dashdash "^1.12.0" 2383 | ecc-jsbn "~0.1.1" 2384 | getpass "^0.1.1" 2385 | jsbn "~0.1.0" 2386 | safer-buffer "^2.0.2" 2387 | tweetnacl "~0.14.0" 2388 | 2389 | string-width@^1.0.1, string-width@^1.0.2: 2390 | version "1.0.2" 2391 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2392 | dependencies: 2393 | code-point-at "^1.0.0" 2394 | is-fullwidth-code-point "^1.0.0" 2395 | strip-ansi "^3.0.0" 2396 | 2397 | string-width@^3.0.0: 2398 | version "3.1.0" 2399 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 2400 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 2401 | dependencies: 2402 | emoji-regex "^7.0.1" 2403 | is-fullwidth-code-point "^2.0.0" 2404 | strip-ansi "^5.1.0" 2405 | 2406 | string_decoder@~1.0.3: 2407 | version "1.0.3" 2408 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2409 | dependencies: 2410 | safe-buffer "~5.1.0" 2411 | 2412 | stringstream@~0.0.4: 2413 | version "0.0.6" 2414 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" 2415 | integrity sha512-87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA== 2416 | 2417 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2418 | version "3.0.1" 2419 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2420 | dependencies: 2421 | ansi-regex "^2.0.0" 2422 | 2423 | strip-ansi@^5.1.0: 2424 | version "5.2.0" 2425 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 2426 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 2427 | dependencies: 2428 | ansi-regex "^4.1.0" 2429 | 2430 | strip-ansi@^6.0.0: 2431 | version "6.0.0" 2432 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 2433 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 2434 | dependencies: 2435 | ansi-regex "^5.0.0" 2436 | 2437 | strip-json-comments@^3.1.0: 2438 | version "3.1.0" 2439 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.0.tgz#7638d31422129ecf4457440009fba03f9f9ac180" 2440 | integrity sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w== 2441 | 2442 | strip-json-comments@~2.0.1: 2443 | version "2.0.1" 2444 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2445 | 2446 | supports-color@4.4.0, supports-color@^4.0.0: 2447 | version "4.4.0" 2448 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 2449 | dependencies: 2450 | has-flag "^2.0.0" 2451 | 2452 | supports-color@^2.0.0: 2453 | version "2.0.0" 2454 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2455 | 2456 | supports-color@^7.1.0: 2457 | version "7.1.0" 2458 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" 2459 | integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== 2460 | dependencies: 2461 | has-flag "^4.0.0" 2462 | 2463 | table@^5.2.3: 2464 | version "5.4.6" 2465 | resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" 2466 | integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== 2467 | dependencies: 2468 | ajv "^6.10.2" 2469 | lodash "^4.17.14" 2470 | slice-ansi "^2.1.0" 2471 | string-width "^3.0.0" 2472 | 2473 | tar-pack@^3.4.0: 2474 | version "3.4.0" 2475 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 2476 | dependencies: 2477 | debug "^2.2.0" 2478 | fstream "^1.0.10" 2479 | fstream-ignore "^1.0.5" 2480 | once "^1.3.3" 2481 | readable-stream "^2.1.4" 2482 | rimraf "^2.5.1" 2483 | tar "^2.2.1" 2484 | uid-number "^0.0.6" 2485 | 2486 | tar@^2.2.1: 2487 | version "2.2.2" 2488 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" 2489 | integrity sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA== 2490 | dependencies: 2491 | block-stream "*" 2492 | fstream "^1.0.12" 2493 | inherits "2" 2494 | 2495 | text-table@^0.2.0: 2496 | version "0.2.0" 2497 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2498 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 2499 | 2500 | to-fast-properties@^1.0.1, to-fast-properties@^1.0.3: 2501 | version "1.0.3" 2502 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2503 | 2504 | to-fast-properties@^2.0.0: 2505 | version "2.0.0" 2506 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2507 | 2508 | tough-cookie@~2.3.0: 2509 | version "2.3.4" 2510 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 2511 | integrity sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA== 2512 | dependencies: 2513 | punycode "^1.4.1" 2514 | 2515 | trim-right@^1.0.1: 2516 | version "1.0.1" 2517 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2518 | 2519 | tunnel-agent@^0.6.0: 2520 | version "0.6.0" 2521 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2522 | dependencies: 2523 | safe-buffer "^5.0.1" 2524 | 2525 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2526 | version "0.14.5" 2527 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2528 | integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= 2529 | 2530 | type-check@^0.4.0, type-check@~0.4.0: 2531 | version "0.4.0" 2532 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 2533 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 2534 | dependencies: 2535 | prelude-ls "^1.2.1" 2536 | 2537 | type-detect@^4.0.0, type-detect@^4.0.5: 2538 | version "4.0.8" 2539 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 2540 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 2541 | 2542 | type-fest@^0.8.1: 2543 | version "0.8.1" 2544 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 2545 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 2546 | 2547 | uid-number@^0.0.6: 2548 | version "0.0.6" 2549 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2550 | 2551 | uri-js@^4.2.2: 2552 | version "4.2.2" 2553 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 2554 | integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== 2555 | dependencies: 2556 | punycode "^2.1.0" 2557 | 2558 | url-loader@^4.1.0: 2559 | version "4.1.0" 2560 | resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.0.tgz#c7d6b0d6b0fccd51ab3ffc58a78d32b8d89a7be2" 2561 | integrity sha512-IzgAAIC8wRrg6NYkFIJY09vtktQcsvU8V6HhtQj9PTefbYImzLB1hufqo4m+RyM5N3mLx5BqJKccgxJS+W3kqw== 2562 | dependencies: 2563 | loader-utils "^2.0.0" 2564 | mime-types "^2.1.26" 2565 | schema-utils "^2.6.5" 2566 | 2567 | user-home@^1.1.1: 2568 | version "1.1.1" 2569 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2570 | 2571 | util-deprecate@~1.0.1: 2572 | version "1.0.2" 2573 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2574 | 2575 | uuid@^3.0.0: 2576 | version "3.1.0" 2577 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2578 | 2579 | v8-compile-cache@^2.0.3: 2580 | version "2.1.1" 2581 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745" 2582 | integrity sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ== 2583 | 2584 | v8flags@^2.1.1: 2585 | version "2.1.1" 2586 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 2587 | integrity sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ= 2588 | dependencies: 2589 | user-home "^1.1.1" 2590 | 2591 | verror@1.3.6: 2592 | version "1.3.6" 2593 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 2594 | dependencies: 2595 | extsprintf "1.0.2" 2596 | 2597 | which@^2.0.1: 2598 | version "2.0.2" 2599 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2600 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2601 | dependencies: 2602 | isexe "^2.0.0" 2603 | 2604 | wide-align@^1.1.0: 2605 | version "1.1.2" 2606 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2607 | dependencies: 2608 | string-width "^1.0.2" 2609 | 2610 | word-wrap@^1.2.3: 2611 | version "1.2.3" 2612 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 2613 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 2614 | 2615 | wrappy@1: 2616 | version "1.0.2" 2617 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2618 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2619 | 2620 | write@1.0.3: 2621 | version "1.0.3" 2622 | resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" 2623 | integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== 2624 | dependencies: 2625 | mkdirp "^0.5.1" 2626 | --------------------------------------------------------------------------------