├── .prettierignore ├── .gitignore ├── .babelrc ├── rollup.config.js ├── .circleci └── config.yml ├── LICENSE ├── package.json ├── src ├── __tests__ │ ├── parser.spec.js │ ├── index.spec.js │ └── scanner.spec.js ├── index.js ├── parser.js └── scanner.js ├── example └── index.html ├── Readme.md └── yarn.lock /.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /coverage 2 | /dist 3 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "env", 5 | { 6 | "targets": { 7 | "browsers": ["last 2 Chrome version"] 8 | }, 9 | "modules": false, 10 | "useBuiltIns": true 11 | } 12 | ] 13 | ], 14 | "plugins": [["transform-object-rest-spread", { "useBuiltIns": true }]], 15 | "env": { 16 | "test": { 17 | "presets": [ 18 | [ 19 | "env", 20 | { 21 | "modules": "commonjs" 22 | } 23 | ] 24 | ] 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | import resolve from "rollup-plugin-node-resolve"; 2 | import babel from "rollup-plugin-babel"; 3 | import commonjs from "rollup-plugin-commonjs"; 4 | import { terser } from "rollup-plugin-terser"; 5 | import path from "path"; 6 | import pkg from "./package.json"; 7 | 8 | process.env.NODE_ENV = "production"; 9 | 10 | const createConfig = ({ umd = false, output } = {}) => ({ 11 | input: "src/index.js", 12 | output, 13 | plugins: [resolve(), commonjs(), babel(), umd && terser()].filter(Boolean) 14 | }); 15 | 16 | export default [ 17 | createConfig({ 18 | output: [ 19 | { file: pkg.main, format: "cjs" }, 20 | { file: pkg.module, format: "es" } 21 | ] 22 | }), 23 | createConfig({ 24 | umd: true, 25 | output: { 26 | file: pkg.unpkg, 27 | format: "umd", 28 | name: "stylog" 29 | } 30 | }) 31 | ]; 32 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | jobs: 3 | build: 4 | working_directory: ~/stylog 5 | 6 | docker: 7 | - image: circleci/node:latest 8 | 9 | steps: 10 | - checkout 11 | 12 | - restore_cache: 13 | keys: 14 | - v1-dependencies-{{ checksum "package.json" }} 15 | # fallback to using the latest cache if no exact match is found 16 | - v1-dependencies- 17 | 18 | - run: 19 | name: Install Dependencies 20 | command: yarn install 21 | 22 | - save_cache: 23 | paths: 24 | - node_modules 25 | key: v1-dependencies-{{ checksum "package.json" }} 26 | 27 | - run: 28 | name: Run Tests 29 | command: yarn test 30 | 31 | - run: 32 | name: Check Coverage 33 | command: yarn test -- --coverage 34 | 35 | - run: 36 | name: Codecov 37 | command: bash <(curl -s https://codecov.io/bash) 38 | 39 | - store_artifacts: 40 | path: coverage 41 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2018 Jakub Beneš 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "stylog", 3 | "version": "1.1.0", 4 | "description": "🎨 Stylish way how to easily format console.log messages", 5 | "license": "MIT", 6 | "main": "dist/stylog.cjs.js", 7 | "module": "dist/stylog.es.js", 8 | "unpkg": "dist/stylog.umd.min.js", 9 | "author": "Jakub Benes ", 10 | "files": [ 11 | "dist" 12 | ], 13 | "repository": { 14 | "type": "git", 15 | "url": "https://github.com/jukben/stylog" 16 | }, 17 | "homepage": "https://github.com/jukben/stylog", 18 | "keywords": [ 19 | "log", 20 | "styled" 21 | ], 22 | "scripts": { 23 | "prepublish": "yarn run build", 24 | "build": "rollup -c", 25 | "dev": "yarn run build -w", 26 | "test": "jest" 27 | }, 28 | "devDependencies": { 29 | "babel-core": "^6.26.3", 30 | "babel-plugin-transform-object-rest-spread": "^6.26.0", 31 | "babel-preset-env": "^1.7.0", 32 | "jest": "^23.0.1", 33 | "rollup": "^0.59.4", 34 | "rollup-plugin-babel": "^3.0.4", 35 | "rollup-plugin-commonjs": "^9.1.3", 36 | "rollup-plugin-node-resolve": "^3.3.0", 37 | "rollup-plugin-terser": "^1.0.1", 38 | "rollup-plugin-uglify-es": "^0.0.1" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /src/__tests__/parser.spec.js: -------------------------------------------------------------------------------- 1 | import parser from "../parser"; 2 | 3 | describe("parser", () => { 4 | it("text", () => { 5 | expect(parser("text")).toEqual([ 6 | { 7 | type: "TEXT", 8 | value: "text" 9 | } 10 | ]); 11 | }); 12 | 13 | it("styled", () => { 14 | expect(parser("text {styled text}")).toEqual([ 15 | { 16 | type: "TEXT", 17 | value: "text " 18 | }, 19 | { 20 | type: "STYLED", 21 | value: "text", 22 | id: "styled" 23 | } 24 | ]); 25 | }); 26 | 27 | it("styled without text", () => { 28 | expect(parser("text {styled}")).toEqual([ 29 | { 30 | type: "TEXT", 31 | value: "text " 32 | }, 33 | { 34 | type: "STYLED", 35 | id: "styled", 36 | value: null 37 | } 38 | ]); 39 | }); 40 | 41 | it("styled advanced", () => { 42 | expect(parser("text {image} swag")).toEqual([ 43 | { 44 | type: "TEXT", 45 | value: "text " 46 | }, 47 | { 48 | type: "STYLED", 49 | id: "image", 50 | value: null 51 | }, 52 | { 53 | type: "TEXT", 54 | value: " swag" 55 | } 56 | ]); 57 | }); 58 | 59 | it("styled advanced, styled object has to have lex", () => { 60 | expect(() => parser("text {} swag")).toThrowError(/lex/); 61 | }); 62 | 63 | it("styled advanced unexpected end of the recipe", () => { 64 | expect(() => parser("text {")).toThrowError(/Unexpected/); 65 | }); 66 | 67 | it("unexpected end of the recipe", () => { 68 | expect(() => parser("")).toThrowError(/Unexpected/); 69 | }); 70 | 71 | it("styled advanced unexpected end of the recipe", () => { 72 | expect(() => parser("")).toThrowError(/Unexpected/); 73 | }); 74 | 75 | it("styled advanced unexpected end of the recipe in text of styled object", () => { 76 | expect(() => parser("{i ")).toThrowError(/Unexpected/); 77 | }); 78 | 79 | it("styled advanced unexpected end of the recipe", () => { 80 | expect(() => parser("{i ")).toThrowError(/Unexpected/); 81 | }); 82 | 83 | it("styled advanced unexpected end of the recipe", () => { 84 | expect(() => parser("{i d")).toThrowError(/Unexpected/); 85 | }); 86 | }); 87 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import parser, { TYPE as PARSER_TYPE } from "./parser"; 2 | 3 | /** 4 | * Convert CSS-like style object notation to string 5 | * 6 | * Example: 7 | * 8 | * convertStyleObjectToString({ 9 | * fontSize: "20px" 10 | * }) === "font-size:20;" 11 | * 12 | * Numbers are taken as dimensions in pixels 13 | */ 14 | function convertStyleObjectToString(styleObject) { 15 | return Object.entries(styleObject) 16 | .map(([rule, value]) => { 17 | return `${rule 18 | .split(/(?=[A-Z])/) 19 | .join("-") 20 | .toLowerCase()}:${Number.isInteger(value) ? `${value}px` : value}`; 21 | }) 22 | .join(";"); 23 | } 24 | 25 | /** 26 | * Call of this function will affect actual console.log call as a side-effect 27 | * 28 | * Example: 29 | * 30 | * styled("text {styled styled text}", {styled: {fontSize: 20}}); 31 | */ 32 | function styled(recipe, stylesDictionary, mapperDictionary) { 33 | const parsedRecipe = parser(recipe); 34 | const [texts, styles] = parsedRecipe.reduce( 35 | (config, currentValue, currentIndex, array) => { 36 | const { type, value, id } = currentValue; 37 | 38 | let text = value || " "; 39 | let style = ""; 40 | 41 | if (!stylesDictionary && !mapperDictionary) { 42 | config[0] += text; 43 | return config; 44 | } 45 | 46 | if (type === PARSER_TYPE.STYLED) { 47 | const textMapper = mapperDictionary && mapperDictionary[id]; 48 | if (textMapper) { 49 | try { 50 | text = textMapper(value) || " "; 51 | } catch (e) { 52 | text = " "; 53 | throw new Error( 54 | `Text mapper for "${id}" has thrown an error: ${e.message}` 55 | ); 56 | } 57 | } 58 | 59 | const styleObject = stylesDictionary && stylesDictionary[id]; 60 | if (styleObject) { 61 | style = convertStyleObjectToString(styleObject); 62 | } 63 | } 64 | 65 | // concat text 66 | config[0] += `%c${text}`; 67 | // add new style 68 | config[1].push(style); 69 | return config; 70 | }, 71 | ["", []] 72 | ); 73 | 74 | console.log(texts, ...styles); 75 | } 76 | 77 | /** 78 | * Curried version of "styled" function with reversed order of arguments (data-last) 79 | * 80 | * Example: 81 | * 82 | * const superConsole = styled.fp(null)({ big: { fontSize: "20px" } }); 83 | * superConsole("{big text}"); 84 | */ 85 | styled.fp = (...arg) => { 86 | return (...x) => { 87 | const args = [...arg, ...x]; 88 | 89 | if (args.length === styled.length) { 90 | return styled.apply(this, args.reverse()); 91 | } 92 | 93 | return styled.fp(args); 94 | }; 95 | }; 96 | 97 | export default styled; 98 | -------------------------------------------------------------------------------- /src/parser.js: -------------------------------------------------------------------------------- 1 | import scanner, { TYPE as SCANNER_TYPE } from "./scanner"; 2 | 3 | export const TYPE = { 4 | TEXT: "TEXT", 5 | STYLED: "STYLED" 6 | }; 7 | 8 | let ast = []; 9 | let tokenGenerator = null; 10 | 11 | // helpers functions 12 | 13 | function createText(value) { 14 | ast.push({ 15 | type: TYPE.TEXT, 16 | value 17 | }); 18 | } 19 | 20 | function createStyled({ id, value = null }) { 21 | ast.push({ 22 | type: TYPE.STYLED, 23 | value, 24 | id 25 | }); 26 | } 27 | 28 | function getNextToken() { 29 | const { 30 | value: { type, lex } 31 | } = tokenGenerator.next(); 32 | 33 | return { type, lex }; 34 | } 35 | 36 | // Rules 37 | 38 | function Init() { 39 | const { type, lex } = getNextToken(); 40 | 41 | if (type === SCANNER_TYPE.TEXT) { 42 | createText(lex); 43 | 44 | return Text(); 45 | } 46 | 47 | if (type === SCANNER_TYPE.STYLE_BLOCK_START) { 48 | return StyledID(); 49 | } 50 | 51 | throw new SyntaxError(`Unexpected token: ${type}`); 52 | } 53 | 54 | function StyledID() { 55 | const { type, lex: id } = getNextToken(); 56 | 57 | if (type === SCANNER_TYPE.STYLE_BLOCK_ID) { 58 | if (!id) { 59 | throw new SyntaxError( 60 | `Unexpected token: ${type}. Token has to have lex.` 61 | ); 62 | } 63 | 64 | return StyledText({ 65 | id 66 | }); 67 | } 68 | 69 | throw new SyntaxError(`Unexpected token: ${type}`); 70 | } 71 | 72 | function StyledText(styledObject) { 73 | const { type, lex: value } = getNextToken(); 74 | 75 | if (type === SCANNER_TYPE.STYLE_BLOCK_TEXT) { 76 | return StyledEnd({ 77 | value, 78 | ...styledObject 79 | }); 80 | } 81 | 82 | if (type === SCANNER_TYPE.STYLE_BLOCK_END) { 83 | createStyled({ 84 | ...styledObject 85 | }); 86 | 87 | return Text(); 88 | } 89 | 90 | throw new SyntaxError(`Unexpected token: ${type}`); 91 | } 92 | 93 | function StyledEnd(styledObject) { 94 | const { type, lex } = getNextToken(); 95 | 96 | if (type === SCANNER_TYPE.STYLE_BLOCK_END) { 97 | createStyled({ 98 | ...styledObject 99 | }); 100 | return Text(); 101 | } 102 | 103 | throw new SyntaxError(`Unexpected token: ${type}`); 104 | } 105 | 106 | function Text() { 107 | const { type, lex } = getNextToken(); 108 | 109 | if (type === SCANNER_TYPE.STYLE_BLOCK_START) { 110 | return StyledID(); 111 | } 112 | 113 | if (type === SCANNER_TYPE.TEXT) { 114 | createText(lex); 115 | 116 | return Text(); 117 | } 118 | 119 | return ast; 120 | } 121 | 122 | function parser(input) { 123 | ast = []; 124 | tokenGenerator = scanner(input); 125 | 126 | return Init(); 127 | } 128 | 129 | export default parser; 130 | -------------------------------------------------------------------------------- /src/scanner.js: -------------------------------------------------------------------------------- 1 | const TOKEN = { 2 | STYLE_BLOCK_START: "{", 3 | STYLE_NAME_DELIMITER: " ", 4 | STYLE_BLOCK_END: "}", 5 | ESCAPE_CHAR: "\\" 6 | }; 7 | 8 | const STATE = { 9 | INIT: Symbol("INIT"), 10 | TEXT: Symbol("TEXT"), 11 | IGNORE: Symbol("IGNORE"), 12 | STYLE_BLOCK_ID: Symbol("STYLE_BLOCK_ID"), 13 | STYLE_BLOCK_TEXT: Symbol("STYLE_BLOCK_TEXT"), 14 | STYLE_BLOCK_START: Symbol("STYLE_BLOCK_START"), 15 | STYLE_BLOCK_END: Symbol("STYLE_BLOCK_END") 16 | }; 17 | 18 | export const TYPE = { 19 | END_OF_FILE: "END_OF_FILE", 20 | STYLE_BLOCK_START: "STYLE_BLOCK_START", 21 | STYLE_BLOCK_ID: "STYLE_BLOCK_ID", 22 | STYLE_BLOCK_TEXT: "STYLE_BLOCK_TEXT", 23 | STYLE_BLOCK_END: "STYLE_BLOCK_END", 24 | TEXT: "TEXT" 25 | }; 26 | 27 | let lex = ""; 28 | 29 | // helper functions 30 | 31 | function clearLex() { 32 | lex = ""; 33 | } 34 | 35 | function addTokenToLex(token) { 36 | lex += token; 37 | } 38 | 39 | // non-deterministic finite automaton 40 | 41 | function* scanner(input) { 42 | let i = 0; 43 | let state = STATE.INIT; 44 | clearLex(); 45 | 46 | while (true) { 47 | const token = input[i++]; 48 | 49 | if (token === undefined) { 50 | if (state === STATE.TEXT && lex) { 51 | yield { type: TYPE.TEXT, lex }; 52 | } 53 | 54 | if (state === STATE.STYLE_BLOCK_TEXT && lex) { 55 | yield { type: TYPE.STYLE_BLOCK_TEXT, lex }; 56 | } 57 | 58 | return { type: TYPE.END_OF_FILE }; 59 | } 60 | 61 | switch (state) { 62 | case STATE.INIT: { 63 | if (token === TOKEN.STYLE_BLOCK_START) { 64 | state = STATE.STYLE_BLOCK_ID; 65 | yield { type: TYPE.STYLE_BLOCK_START }; 66 | continue; 67 | } else if (token === TOKEN.ESCAPE_CHAR) { 68 | state = STATE.IGNORE; 69 | continue; 70 | } else { 71 | state = STATE.TEXT; 72 | addTokenToLex(token); 73 | continue; 74 | } 75 | } 76 | case STATE.TEXT: { 77 | if (token === TOKEN.STYLE_BLOCK_START) { 78 | state = STATE.STYLE_BLOCK_ID; 79 | 80 | yield { type: TYPE.TEXT, lex }; 81 | yield { type: TYPE.STYLE_BLOCK_START }; 82 | 83 | clearLex(); 84 | continue; 85 | } 86 | 87 | if (token === TOKEN.ESCAPE_CHAR) { 88 | state = STATE.IGNORE; 89 | continue; 90 | } 91 | 92 | addTokenToLex(token); 93 | continue; 94 | } 95 | case STATE.IGNORE: { 96 | state = STATE.TEXT; 97 | lex += token; 98 | continue; 99 | } 100 | case STATE.STYLE_BLOCK_ID: { 101 | if (token === TOKEN.STYLE_NAME_DELIMITER) { 102 | state = STATE.STYLE_BLOCK_TEXT; 103 | 104 | yield { type: TYPE.STYLE_BLOCK_ID, lex }; 105 | 106 | clearLex(); 107 | continue; 108 | } 109 | 110 | if (token === TOKEN.STYLE_BLOCK_END) { 111 | state = STATE.TEXT; 112 | 113 | yield { type: TYPE.STYLE_BLOCK_ID, lex }; 114 | yield { type: TYPE.STYLE_BLOCK_END }; 115 | 116 | clearLex(); 117 | continue; 118 | } 119 | 120 | if (token.match(/\s/)) { 121 | state = STATE.STYLE_BLOCK_TEXT; 122 | 123 | yield { type: TYPE.STYLE_BLOCK_ID, lex }; 124 | 125 | clearLex(); 126 | continue; 127 | } 128 | 129 | lex += token; 130 | continue; 131 | } 132 | case STATE.STYLE_BLOCK_TEXT: { 133 | if (token === TOKEN.STYLE_BLOCK_END) { 134 | state = STATE.INIT; 135 | 136 | yield { type: TYPE.STYLE_BLOCK_TEXT, lex }; 137 | yield { type: TYPE.STYLE_BLOCK_END }; 138 | 139 | clearLex(); 140 | continue; 141 | } 142 | 143 | addTokenToLex(token); 144 | continue; 145 | } 146 | } 147 | } 148 | } 149 | 150 | export default scanner; 151 | -------------------------------------------------------------------------------- /src/__tests__/index.spec.js: -------------------------------------------------------------------------------- 1 | import styled from "../index"; 2 | 3 | const styledConsole = jest.spyOn(global.console, "log"); 4 | 5 | describe("styled", () => { 6 | beforeEach(() => { 7 | jest.resetAllMocks(); 8 | }); 9 | 10 | it("text", () => { 11 | styled(`text`); 12 | expect(styledConsole).toHaveBeenCalledWith("text"); 13 | }); 14 | 15 | it("styled", () => { 16 | styled(`text {styled text}`, { styled: { color: "red" } }); 17 | expect(styledConsole).toHaveBeenCalledWith( 18 | "%ctext %ctext", 19 | "", 20 | "color:red" 21 | ); 22 | }); 23 | 24 | it("styled advanced", () => { 25 | styled( 26 | `text {styled text} 27 | swag`, 28 | { styled: { color: "red" } } 29 | ); 30 | expect(styledConsole).toHaveBeenCalledWith( 31 | `%ctext %ctext%c 32 | swag`, 33 | "", 34 | "color:red", 35 | "" 36 | ); 37 | }); 38 | 39 | it("styled advanced multiple", () => { 40 | styled( 41 | `text {styled text} 42 | swag{underline double-swag}`, 43 | { styled: { color: "red" }, underline: { textDecoration: "underline" } } 44 | ); 45 | expect(styledConsole).toHaveBeenCalledWith( 46 | `%ctext %ctext%c 47 | swag%cdouble-swag`, 48 | "", 49 | "color:red", 50 | "", 51 | "text-decoration:underline" 52 | ); 53 | }); 54 | 55 | it("styled advanced multiple without style object", () => { 56 | styled( 57 | `text {styled text} 58 | swag{underline double-swag}` 59 | ); 60 | expect(styledConsole).toHaveBeenCalledWith( 61 | `text text 62 | swagdouble-swag` 63 | ); 64 | }); 65 | 66 | it("styled advanced multiple another", () => { 67 | styled( 68 | `{big Hello this is styled text} 69 | and this is not`, 70 | { big: { fontSize: "20px" } } 71 | ); 72 | expect(styledConsole).toHaveBeenCalledWith( 73 | `%cHello this is styled text%c 74 | and this is not`, 75 | "font-size:20px", 76 | "" 77 | ); 78 | }); 79 | 80 | it("styled advanced multiple", () => { 81 | styled(`text and {image}`, { image: { fontSize: "20px" } }); 82 | expect(styledConsole).toHaveBeenCalledWith( 83 | `%ctext and %c `, 84 | "", 85 | "font-size:20px" 86 | ); 87 | }); 88 | 89 | it("styled advanced multiple", () => { 90 | styled(`text and {image}`, { image: { fontSize: "20px" } }); 91 | expect(styledConsole).toHaveBeenCalledWith( 92 | `%ctext and %c `, 93 | "", 94 | "font-size:20px" 95 | ); 96 | }); 97 | 98 | it("styled advanced multiple with text mutator", () => { 99 | styled(`text and {clap swag}`, null, { 100 | clap: s => { 101 | return [...s] 102 | .map((a, i) => `${a}${i !== s.length - 1 ? "👏" : ""}`) 103 | .join(""); 104 | } 105 | }); 106 | expect(styledConsole).toHaveBeenCalledWith( 107 | `%ctext and %cs👏w👏a👏g`, 108 | "", 109 | "" 110 | ); 111 | }); 112 | 113 | it("styled advanced multiple with text mutator which returns falsy", () => { 114 | styled(`text and {clap swag}`, null, { 115 | clap: s => false 116 | }); 117 | expect(styledConsole).toHaveBeenCalledWith(`%ctext and %c `, "", ""); 118 | }); 119 | 120 | it("styled advanced multiple with text mutator which throw an error", () => { 121 | expect(() => 122 | styled(`text and {clap swag}`, null, { 123 | clap: () => { 124 | throw new Error("swag"); 125 | } 126 | }) 127 | ).toThrowError(/for "clap" has thrown an error: swag/); 128 | }); 129 | 130 | it("styled advanced without style object", () => { 131 | styled(`text {styled text}`, {}); 132 | expect(styledConsole).toHaveBeenCalledWith(`%ctext %ctext`, "", ""); 133 | }); 134 | }); 135 | 136 | describe("fp", () => { 137 | it("styled, curry 0", () => { 138 | const bigText = styled.fp(null, { big: { fontSize: 20 } }, "{big text}"); 139 | 140 | bigText(); 141 | 142 | expect(styledConsole).toHaveBeenCalledWith(`%ctext`, "font-size:20px"); 143 | }); 144 | 145 | it("styled, curry 1", () => { 146 | const bigText = styled.fp(null, { big: { fontSize: 20 } }); 147 | 148 | bigText("{big text}"); 149 | 150 | expect(styledConsole).toHaveBeenCalledWith(`%ctext`, "font-size:20px"); 151 | }); 152 | 153 | it("styled, curry 2", () => { 154 | const bigTransform = styled.fp(null); 155 | const bigStyle = bigTransform({ big: { fontSize: "20px" } }); 156 | 157 | bigStyle("{big text}"); 158 | 159 | expect(styledConsole).toHaveBeenCalledWith(`%ctext`, "font-size:20px"); 160 | }); 161 | }); 162 | -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Stylog – Example 7 | 71 | 72 | 73 | 74 |
75 |
76 |
+ 77 |
+ 78 |
J
79 |
80 |
81 |
CTRL
+ 82 |
SHIFT
+ 83 |
J
84 |
85 |
86 | 87 | 88 | 89 | 90 | 162 | 163 | 164 | -------------------------------------------------------------------------------- /src/__tests__/scanner.spec.js: -------------------------------------------------------------------------------- 1 | import scanner from "../scanner"; 2 | 3 | describe("scanner", () => { 4 | it("is and array", () => 5 | expect( 6 | Array.isArray([ 7 | ...scanner(`this is 8 | text`) 9 | ]) 10 | ).toBe(true)); 11 | 12 | it("simple online line text", () => 13 | expect([...scanner(`this is text`)]).toEqual([ 14 | { 15 | type: "TEXT", 16 | lex: `this is text` 17 | } 18 | ])); 19 | 20 | it("multiline text with style object", () => 21 | expect([ 22 | ...scanner(`this is 23 | {swag mine 24 | swag} 25 | {image} 26 | text`) 27 | ]).toEqual([ 28 | { 29 | type: "TEXT", 30 | lex: `this is 31 | ` 32 | }, 33 | { 34 | type: "STYLE_BLOCK_START" 35 | }, 36 | { 37 | type: "STYLE_BLOCK_ID", 38 | lex: `swag` 39 | }, 40 | { 41 | type: "STYLE_BLOCK_TEXT", 42 | lex: `mine 43 | swag` 44 | }, 45 | { 46 | type: "STYLE_BLOCK_END" 47 | }, 48 | { 49 | type: "TEXT", 50 | lex: ` 51 | ` 52 | }, 53 | { 54 | type: "STYLE_BLOCK_START" 55 | }, 56 | { 57 | type: "STYLE_BLOCK_ID", 58 | lex: `image` 59 | }, 60 | { 61 | type: "STYLE_BLOCK_END" 62 | }, 63 | { 64 | type: "TEXT", 65 | lex: ` 66 | text` 67 | } 68 | ])); 69 | 70 | it("multiline text with style object with white-char", () => 71 | expect([ 72 | ...scanner(`text{s 73 | d enhanced}`) 74 | ]).toEqual([ 75 | { 76 | type: "TEXT", 77 | lex: `text` 78 | }, 79 | { 80 | type: "STYLE_BLOCK_START" 81 | }, 82 | { 83 | type: "STYLE_BLOCK_ID", 84 | lex: `s` 85 | }, 86 | { 87 | type: "STYLE_BLOCK_TEXT", 88 | lex: `d enhanced` 89 | }, 90 | { 91 | type: "STYLE_BLOCK_END" 92 | } 93 | ])); 94 | 95 | it("multiline text with style object without id", () => 96 | expect([ 97 | ...scanner(`text{ 98 | d enhanced 99 | a}`) 100 | ]).toEqual([ 101 | { 102 | type: "TEXT", 103 | lex: `text` 104 | }, 105 | { 106 | type: "STYLE_BLOCK_START" 107 | }, 108 | { 109 | type: "STYLE_BLOCK_ID", 110 | lex: `` 111 | }, 112 | { 113 | type: "STYLE_BLOCK_TEXT", 114 | lex: `d enhanced 115 | a` 116 | }, 117 | { 118 | type: "STYLE_BLOCK_END" 119 | } 120 | ])); 121 | 122 | it("single line with escaped style object", () => 123 | expect([...scanner(`this is not a \\{style object}`)]).toEqual([ 124 | { 125 | type: "TEXT", 126 | lex: `this is not a {style object}` 127 | } 128 | ])); 129 | 130 | it("single line with escaped style object", () => 131 | expect([...scanner(`\\{s styled}`)]).toEqual([ 132 | { 133 | type: "TEXT", 134 | lex: `{s styled}` 135 | } 136 | ])); 137 | 138 | it("single line with style object", () => 139 | expect([...scanner(`{s styled}`)]).toEqual([ 140 | { 141 | type: "STYLE_BLOCK_START" 142 | }, 143 | { 144 | type: "STYLE_BLOCK_ID", 145 | lex: `s` 146 | }, 147 | { 148 | type: "STYLE_BLOCK_TEXT", 149 | lex: `styled` 150 | }, 151 | { 152 | type: "STYLE_BLOCK_END" 153 | } 154 | ])); 155 | 156 | it("single line with }", () => 157 | expect([...scanner(`styled}`)]).toEqual([ 158 | { 159 | type: "TEXT", 160 | lex: "styled}" 161 | } 162 | ])); 163 | 164 | it("single line with styled non-terminated object", () => 165 | expect([...scanner(`non terminated {style object`)]).toEqual([ 166 | { 167 | type: "TEXT", 168 | lex: "non terminated " 169 | }, 170 | { 171 | type: "STYLE_BLOCK_START" 172 | }, 173 | { 174 | type: "STYLE_BLOCK_ID", 175 | lex: "style" 176 | }, 177 | { 178 | type: "STYLE_BLOCK_TEXT", 179 | lex: "object" 180 | } 181 | ])); 182 | 183 | it("single line with styled non-terminated object", () => 184 | expect([ 185 | ...scanner(`text {styled text} 186 | swag`) 187 | ]).toEqual([ 188 | { 189 | type: "TEXT", 190 | lex: "text " 191 | }, 192 | { 193 | type: "STYLE_BLOCK_START" 194 | }, 195 | { 196 | type: "STYLE_BLOCK_ID", 197 | lex: "styled" 198 | }, 199 | { 200 | type: "STYLE_BLOCK_TEXT", 201 | lex: `text` 202 | }, 203 | { 204 | type: "STYLE_BLOCK_END" 205 | }, 206 | { 207 | type: "TEXT", 208 | lex: ` 209 | swag` 210 | } 211 | ])); 212 | }); 213 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 |
2 | Stylog logo 3 | 4 |
STYled console.LOG
5 |
6 | 7 | ## Table of Contents 8 | 9 | - [Introduction](#introduction) 10 | - [Install](#install) 11 | - [Usage](#usage) 12 | - [Recipe](#recipe) 13 | - [Styles Dictionary](#styles-dictionary) 14 | - [Mapper Dictionary](#mapper-dictionary) 15 | - [Example](#example) 16 | - [Contributing](#contributing) 17 | - [Credits](#credits) 18 | - [License](#license) 19 | 20 | ## Introduction 21 | 22 | [![codecov](https://codecov.io/gh/jukben/stylog/branch/master/graph/badge.svg)](https://codecov.io/gh/jukben/stylog) 23 | 24 | Stylog is a stylish way how to easily format [rich console.log messages](https://developers.google.com/web/tools/chrome-devtools/console/console-write#styling_console_output_with_css). 25 | 26 | _It's overengineered on purpose I just wanted to write it in the "old school" way and avoid RegExps. It has been written with a nostalgic memory to the Dragon Book 🐲_ 27 | 28 | ## Install 29 | 30 | `yarn add stylog` 31 | 32 | _The library is targeted for the last two version of Chrome, it's designed to be used mostly in dev mode within latest dev tools._ 33 | 34 | ## Usage 35 | 36 | ### API 37 | 38 | ```js 39 | stylog( 40 | (recipe: string), 41 | (stylesDictionary: ?{ 42 | [id: string]: { 43 | [property: string]: string 44 | } 45 | }), 46 | (mapperDictionary ?{ 47 | [id: string]: (value: string) => string 48 | }) 49 | ); 50 | ``` 51 | 52 | If you are fan of FP you can take full advantage of the data-last curried version!✌️ 53 | 54 | ```js 55 | stylog.fp(mapperDictionary)(stylesDictionary)(recipe); 56 | ``` 57 | 58 | ### Recipe 59 | 60 | - **_text_** is everything outside (non-escaped) "**{**" 61 | - **_styled text_** start with "**{**" followed by **id** (string) and optionally **text** (multiline string) then it should be closed with "**}**" 62 | - each **_styled text_** may have corresponding style in _stylesDictionary_ otherwise it would be rendered as **_text_** 63 | - **_styled text_** can be escaped by \ (in template literal you have to use \\\ ) then it would be considered as **_text_** 64 | 65 | ``` 66 | This is normal text {styled this is styled text} 67 | ``` 68 | 69 | ``` 70 | This is normal text \{styled this is also normal text} 71 | ``` 72 | 73 | ### Styles Dictionary 74 | 75 | - is an nullable-object where key should be string matching **id** of **_styled text_** and value is supposed to be object of CSS properties in camelCase notation. 76 | - it could be null 77 | 78 | ```js 79 | { 80 | styled: { 81 | fontSize: "20px"; // or "fontSize: 20" :) 82 | } 83 | } 84 | ``` 85 | 86 | ### Mapper Dictionary 87 | 88 | - is an nullable-object where key should be string matching **id** of **_styled text_** and value is supposed to be an function which takes that matched string and returns modified string (optionally could return falsy value which will act as empty string) 89 | 90 | ```js 91 | { 92 | // return c👏l👏a👏p👏e👏d string 93 | clap: s => { 94 | return [...s] 95 | .map((a, i) => `${a}${i !== s.length - 1 ? "👏" : ""}`) 96 | .join(""); 97 | }; 98 | } 99 | ``` 100 | 101 | ## Example 102 | 103 | Check it out the `example/index.html` for interactive playground! 🙌 104 | 105 | ```js 106 | stylog( 107 | `{big Hello, everyone! This is nicely styled text!} 108 | and non-styled text. Lovely, right? {bold *clap* *clap* *clap*} 109 | 110 | {image [GANDALF]} {red Be aware! Wild Gandalf appears!} 111 | 112 | . 113 | . 114 | . 115 | 116 | \\{gandalf} 117 | 118 | . 119 | . 120 | . 121 | 122 | not like this 123 | 124 | . 125 | . 126 | . 127 | {gandalf} 128 | 129 | {clap Awesome}`, 130 | { 131 | bold: { 132 | fontWeight: "bold" 133 | }, 134 | big: { 135 | fontSize: "25px", 136 | border: "1px solid black", 137 | padding: "10px" 138 | }, 139 | image: { 140 | display: "block !important", 141 | color: "gray", 142 | fontSize: "10px", 143 | background: `url("https://vignette.wikia.nocookie.net/casshan/images/d/dc/Warn.png/revision/latest?cb=20120614181856")`, 144 | backgroundSize: "15px 15px", 145 | backgroundRepeat: "no-repeat", 146 | backgroundPosition: "left", 147 | paddingLeft: "15px" 148 | }, 149 | red: { 150 | color: "red", 151 | textDecoration: "underline" 152 | }, 153 | gandalf: { 154 | display: "block !important", 155 | color: "gray", 156 | fontSize: "300px", 157 | lineHeight: "150px", 158 | display: "block !important", 159 | background: `url("https://i.giphy.com/media/FyetIxXamPsfC/giphy.webp")`, 160 | backgroundSize: "200px", 161 | backgroundRepeat: "no-repeat", 162 | backgroundPosition: "left" 163 | }, 164 | clap: { 165 | background: "black", 166 | color: "yellow" 167 | } 168 | }, 169 | { 170 | clap: s => { 171 | return [...s] 172 | .map((a, i) => `${a}${i !== s.length - 1 ? "👏" : ""}`) 173 | .join(""); 174 | } 175 | } 176 | ); 177 | ``` 178 | 179 | will produce this: 180 | 181 | Stylog – Example 182 | 183 | ## Contributing 184 | 185 | Do you miss something? Open an issue, I'd like to hear more about your use case. You can also fork this repository and run `yarn && yarn dev`, do stuff in the playground (`example/index.html`), then run `yarn test` and finally send a PR! ❤️ 186 | 187 | ## Credits 188 | 189 | I got the inspiration for this project from https://github.com/adamschwartz/log, especially from this [issue](https://github.com/adamschwartz/log/issues/43). Thanks @whitefire0 and @adamschwartz. 190 | 191 | ## License 192 | 193 | The MIT License (MIT) 2018 - Jakub Beneš 194 | -------------------------------------------------------------------------------- /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-beta.35": 6 | version "7.0.0-beta.48" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.48.tgz#ff1c11060a7c1206e0b81e95286cfc2ca3ac405f" 8 | dependencies: 9 | "@babel/highlight" "7.0.0-beta.48" 10 | 11 | "@babel/code-frame@^7.0.0-beta.47": 12 | version "7.0.0-beta.49" 13 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.49.tgz#becd805482734440c9d137e46d77340e64d7f51b" 14 | dependencies: 15 | "@babel/highlight" "7.0.0-beta.49" 16 | 17 | "@babel/highlight@7.0.0-beta.48": 18 | version "7.0.0-beta.48" 19 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.48.tgz#2f225dc995899858f27858d9011fdb75f70bcf96" 20 | dependencies: 21 | chalk "^2.0.0" 22 | esutils "^2.0.2" 23 | js-tokens "^3.0.0" 24 | 25 | "@babel/highlight@7.0.0-beta.49": 26 | version "7.0.0-beta.49" 27 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.49.tgz#96bdc6b43e13482012ba6691b1018492d39622cc" 28 | dependencies: 29 | chalk "^2.0.0" 30 | esutils "^2.0.2" 31 | js-tokens "^3.0.0" 32 | 33 | "@types/estree@0.0.39": 34 | version "0.0.39" 35 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" 36 | 37 | "@types/node@*": 38 | version "10.1.3" 39 | resolved "https://registry.yarnpkg.com/@types/node/-/node-10.1.3.tgz#5c16980936c4e3c83ce64e8ed71fb37bd7aea135" 40 | 41 | abab@^1.0.4: 42 | version "1.0.4" 43 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 44 | 45 | abbrev@1: 46 | version "1.1.1" 47 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 48 | 49 | acorn-globals@^4.1.0: 50 | version "4.1.0" 51 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538" 52 | dependencies: 53 | acorn "^5.0.0" 54 | 55 | acorn@^5.0.0, acorn@^5.3.0: 56 | version "5.7.4" 57 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e" 58 | 59 | ajv@^5.1.0: 60 | version "5.5.2" 61 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 62 | dependencies: 63 | co "^4.6.0" 64 | fast-deep-equal "^1.0.0" 65 | fast-json-stable-stringify "^2.0.0" 66 | json-schema-traverse "^0.3.0" 67 | 68 | ansi-escapes@^3.0.0: 69 | version "3.1.0" 70 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" 71 | 72 | ansi-regex@^2.0.0: 73 | version "2.1.1" 74 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 75 | 76 | ansi-regex@^3.0.0: 77 | version "3.0.0" 78 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 79 | 80 | ansi-styles@^2.2.1: 81 | version "2.2.1" 82 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 83 | 84 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 85 | version "3.2.1" 86 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 87 | dependencies: 88 | color-convert "^1.9.0" 89 | 90 | anymatch@^2.0.0: 91 | version "2.0.0" 92 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 93 | dependencies: 94 | micromatch "^3.1.4" 95 | normalize-path "^2.1.1" 96 | 97 | append-transform@^0.4.0: 98 | version "0.4.0" 99 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 100 | dependencies: 101 | default-require-extensions "^1.0.0" 102 | 103 | aproba@^1.0.3: 104 | version "1.2.0" 105 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 106 | 107 | are-we-there-yet@~1.1.2: 108 | version "1.1.5" 109 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 110 | dependencies: 111 | delegates "^1.0.0" 112 | readable-stream "^2.0.6" 113 | 114 | argparse@^1.0.7: 115 | version "1.0.10" 116 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 117 | dependencies: 118 | sprintf-js "~1.0.2" 119 | 120 | arr-diff@^2.0.0: 121 | version "2.0.0" 122 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 123 | dependencies: 124 | arr-flatten "^1.0.1" 125 | 126 | arr-diff@^4.0.0: 127 | version "4.0.0" 128 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 129 | 130 | arr-flatten@^1.0.1, arr-flatten@^1.1.0: 131 | version "1.1.0" 132 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 133 | 134 | arr-union@^3.1.0: 135 | version "3.1.0" 136 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 137 | 138 | array-equal@^1.0.0: 139 | version "1.0.0" 140 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 141 | 142 | array-unique@^0.2.1: 143 | version "0.2.1" 144 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 145 | 146 | array-unique@^0.3.2: 147 | version "0.3.2" 148 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 149 | 150 | arrify@^1.0.1: 151 | version "1.0.1" 152 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 153 | 154 | asn1@~0.2.3: 155 | version "0.2.3" 156 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 157 | 158 | assert-plus@1.0.0, assert-plus@^1.0.0: 159 | version "1.0.0" 160 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 161 | 162 | assign-symbols@^1.0.0: 163 | version "1.0.0" 164 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 165 | 166 | astral-regex@^1.0.0: 167 | version "1.0.0" 168 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 169 | 170 | async-limiter@~1.0.0: 171 | version "1.0.0" 172 | resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" 173 | 174 | async@^2.1.4: 175 | version "2.6.1" 176 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" 177 | dependencies: 178 | lodash "^4.17.10" 179 | 180 | asynckit@^0.4.0: 181 | version "0.4.0" 182 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 183 | 184 | atob@^2.1.1: 185 | version "2.1.1" 186 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.1.tgz#ae2d5a729477f289d60dd7f96a6314a22dd6c22a" 187 | 188 | aws-sign2@~0.7.0: 189 | version "0.7.0" 190 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 191 | 192 | aws4@^1.6.0: 193 | version "1.7.0" 194 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.7.0.tgz#d4d0e9b9dbfca77bf08eeb0a8a471550fe39e289" 195 | 196 | babel-code-frame@^6.26.0: 197 | version "6.26.0" 198 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 199 | dependencies: 200 | chalk "^1.1.3" 201 | esutils "^2.0.2" 202 | js-tokens "^3.0.2" 203 | 204 | babel-core@^6.0.0, babel-core@^6.26.0, babel-core@^6.26.3: 205 | version "6.26.3" 206 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" 207 | dependencies: 208 | babel-code-frame "^6.26.0" 209 | babel-generator "^6.26.0" 210 | babel-helpers "^6.24.1" 211 | babel-messages "^6.23.0" 212 | babel-register "^6.26.0" 213 | babel-runtime "^6.26.0" 214 | babel-template "^6.26.0" 215 | babel-traverse "^6.26.0" 216 | babel-types "^6.26.0" 217 | babylon "^6.18.0" 218 | convert-source-map "^1.5.1" 219 | debug "^2.6.9" 220 | json5 "^0.5.1" 221 | lodash "^4.17.4" 222 | minimatch "^3.0.4" 223 | path-is-absolute "^1.0.1" 224 | private "^0.1.8" 225 | slash "^1.0.0" 226 | source-map "^0.5.7" 227 | 228 | babel-generator@^6.18.0, babel-generator@^6.26.0: 229 | version "6.26.1" 230 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" 231 | dependencies: 232 | babel-messages "^6.23.0" 233 | babel-runtime "^6.26.0" 234 | babel-types "^6.26.0" 235 | detect-indent "^4.0.0" 236 | jsesc "^1.3.0" 237 | lodash "^4.17.4" 238 | source-map "^0.5.7" 239 | trim-right "^1.0.1" 240 | 241 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 242 | version "6.24.1" 243 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 244 | dependencies: 245 | babel-helper-explode-assignable-expression "^6.24.1" 246 | babel-runtime "^6.22.0" 247 | babel-types "^6.24.1" 248 | 249 | babel-helper-call-delegate@^6.24.1: 250 | version "6.24.1" 251 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 252 | dependencies: 253 | babel-helper-hoist-variables "^6.24.1" 254 | babel-runtime "^6.22.0" 255 | babel-traverse "^6.24.1" 256 | babel-types "^6.24.1" 257 | 258 | babel-helper-define-map@^6.24.1: 259 | version "6.26.0" 260 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 261 | dependencies: 262 | babel-helper-function-name "^6.24.1" 263 | babel-runtime "^6.26.0" 264 | babel-types "^6.26.0" 265 | lodash "^4.17.4" 266 | 267 | babel-helper-explode-assignable-expression@^6.24.1: 268 | version "6.24.1" 269 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 270 | dependencies: 271 | babel-runtime "^6.22.0" 272 | babel-traverse "^6.24.1" 273 | babel-types "^6.24.1" 274 | 275 | babel-helper-function-name@^6.24.1: 276 | version "6.24.1" 277 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 278 | dependencies: 279 | babel-helper-get-function-arity "^6.24.1" 280 | babel-runtime "^6.22.0" 281 | babel-template "^6.24.1" 282 | babel-traverse "^6.24.1" 283 | babel-types "^6.24.1" 284 | 285 | babel-helper-get-function-arity@^6.24.1: 286 | version "6.24.1" 287 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 288 | dependencies: 289 | babel-runtime "^6.22.0" 290 | babel-types "^6.24.1" 291 | 292 | babel-helper-hoist-variables@^6.24.1: 293 | version "6.24.1" 294 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 295 | dependencies: 296 | babel-runtime "^6.22.0" 297 | babel-types "^6.24.1" 298 | 299 | babel-helper-optimise-call-expression@^6.24.1: 300 | version "6.24.1" 301 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 302 | dependencies: 303 | babel-runtime "^6.22.0" 304 | babel-types "^6.24.1" 305 | 306 | babel-helper-regex@^6.24.1: 307 | version "6.26.0" 308 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 309 | dependencies: 310 | babel-runtime "^6.26.0" 311 | babel-types "^6.26.0" 312 | lodash "^4.17.4" 313 | 314 | babel-helper-remap-async-to-generator@^6.24.1: 315 | version "6.24.1" 316 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 317 | dependencies: 318 | babel-helper-function-name "^6.24.1" 319 | babel-runtime "^6.22.0" 320 | babel-template "^6.24.1" 321 | babel-traverse "^6.24.1" 322 | babel-types "^6.24.1" 323 | 324 | babel-helper-replace-supers@^6.24.1: 325 | version "6.24.1" 326 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 327 | dependencies: 328 | babel-helper-optimise-call-expression "^6.24.1" 329 | babel-messages "^6.23.0" 330 | babel-runtime "^6.22.0" 331 | babel-template "^6.24.1" 332 | babel-traverse "^6.24.1" 333 | babel-types "^6.24.1" 334 | 335 | babel-helpers@^6.24.1: 336 | version "6.24.1" 337 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 338 | dependencies: 339 | babel-runtime "^6.22.0" 340 | babel-template "^6.24.1" 341 | 342 | babel-jest@^23.0.1: 343 | version "23.0.1" 344 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-23.0.1.tgz#bbad3bf523fb202da05ed0a6540b48c84eed13a6" 345 | dependencies: 346 | babel-plugin-istanbul "^4.1.6" 347 | babel-preset-jest "^23.0.1" 348 | 349 | babel-messages@^6.23.0: 350 | version "6.23.0" 351 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 352 | dependencies: 353 | babel-runtime "^6.22.0" 354 | 355 | babel-plugin-check-es2015-constants@^6.22.0: 356 | version "6.22.0" 357 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 358 | dependencies: 359 | babel-runtime "^6.22.0" 360 | 361 | babel-plugin-istanbul@^4.1.6: 362 | version "4.1.6" 363 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45" 364 | dependencies: 365 | babel-plugin-syntax-object-rest-spread "^6.13.0" 366 | find-up "^2.1.0" 367 | istanbul-lib-instrument "^1.10.1" 368 | test-exclude "^4.2.1" 369 | 370 | babel-plugin-jest-hoist@^23.0.1: 371 | version "23.0.1" 372 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.0.1.tgz#eaa11c964563aea9c21becef2bdf7853f7f3c148" 373 | 374 | babel-plugin-syntax-async-functions@^6.8.0: 375 | version "6.13.0" 376 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 377 | 378 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 379 | version "6.13.0" 380 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 381 | 382 | babel-plugin-syntax-object-rest-spread@^6.13.0, babel-plugin-syntax-object-rest-spread@^6.8.0: 383 | version "6.13.0" 384 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 385 | 386 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 387 | version "6.22.0" 388 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 389 | 390 | babel-plugin-transform-async-to-generator@^6.22.0: 391 | version "6.24.1" 392 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 393 | dependencies: 394 | babel-helper-remap-async-to-generator "^6.24.1" 395 | babel-plugin-syntax-async-functions "^6.8.0" 396 | babel-runtime "^6.22.0" 397 | 398 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 399 | version "6.22.0" 400 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 401 | dependencies: 402 | babel-runtime "^6.22.0" 403 | 404 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 405 | version "6.22.0" 406 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 407 | dependencies: 408 | babel-runtime "^6.22.0" 409 | 410 | babel-plugin-transform-es2015-block-scoping@^6.23.0: 411 | version "6.26.0" 412 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 413 | dependencies: 414 | babel-runtime "^6.26.0" 415 | babel-template "^6.26.0" 416 | babel-traverse "^6.26.0" 417 | babel-types "^6.26.0" 418 | lodash "^4.17.4" 419 | 420 | babel-plugin-transform-es2015-classes@^6.23.0: 421 | version "6.24.1" 422 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 423 | dependencies: 424 | babel-helper-define-map "^6.24.1" 425 | babel-helper-function-name "^6.24.1" 426 | babel-helper-optimise-call-expression "^6.24.1" 427 | babel-helper-replace-supers "^6.24.1" 428 | babel-messages "^6.23.0" 429 | babel-runtime "^6.22.0" 430 | babel-template "^6.24.1" 431 | babel-traverse "^6.24.1" 432 | babel-types "^6.24.1" 433 | 434 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 435 | version "6.24.1" 436 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 437 | dependencies: 438 | babel-runtime "^6.22.0" 439 | babel-template "^6.24.1" 440 | 441 | babel-plugin-transform-es2015-destructuring@^6.23.0: 442 | version "6.23.0" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 444 | dependencies: 445 | babel-runtime "^6.22.0" 446 | 447 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 448 | version "6.24.1" 449 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 450 | dependencies: 451 | babel-runtime "^6.22.0" 452 | babel-types "^6.24.1" 453 | 454 | babel-plugin-transform-es2015-for-of@^6.23.0: 455 | version "6.23.0" 456 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 457 | dependencies: 458 | babel-runtime "^6.22.0" 459 | 460 | babel-plugin-transform-es2015-function-name@^6.22.0: 461 | version "6.24.1" 462 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 463 | dependencies: 464 | babel-helper-function-name "^6.24.1" 465 | babel-runtime "^6.22.0" 466 | babel-types "^6.24.1" 467 | 468 | babel-plugin-transform-es2015-literals@^6.22.0: 469 | version "6.22.0" 470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 471 | dependencies: 472 | babel-runtime "^6.22.0" 473 | 474 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: 475 | version "6.24.1" 476 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 477 | dependencies: 478 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 479 | babel-runtime "^6.22.0" 480 | babel-template "^6.24.1" 481 | 482 | babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 483 | version "6.26.2" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" 485 | dependencies: 486 | babel-plugin-transform-strict-mode "^6.24.1" 487 | babel-runtime "^6.26.0" 488 | babel-template "^6.26.0" 489 | babel-types "^6.26.0" 490 | 491 | babel-plugin-transform-es2015-modules-systemjs@^6.23.0: 492 | version "6.24.1" 493 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 494 | dependencies: 495 | babel-helper-hoist-variables "^6.24.1" 496 | babel-runtime "^6.22.0" 497 | babel-template "^6.24.1" 498 | 499 | babel-plugin-transform-es2015-modules-umd@^6.23.0: 500 | version "6.24.1" 501 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 502 | dependencies: 503 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 504 | babel-runtime "^6.22.0" 505 | babel-template "^6.24.1" 506 | 507 | babel-plugin-transform-es2015-object-super@^6.22.0: 508 | version "6.24.1" 509 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 510 | dependencies: 511 | babel-helper-replace-supers "^6.24.1" 512 | babel-runtime "^6.22.0" 513 | 514 | babel-plugin-transform-es2015-parameters@^6.23.0: 515 | version "6.24.1" 516 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 517 | dependencies: 518 | babel-helper-call-delegate "^6.24.1" 519 | babel-helper-get-function-arity "^6.24.1" 520 | babel-runtime "^6.22.0" 521 | babel-template "^6.24.1" 522 | babel-traverse "^6.24.1" 523 | babel-types "^6.24.1" 524 | 525 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 526 | version "6.24.1" 527 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 528 | dependencies: 529 | babel-runtime "^6.22.0" 530 | babel-types "^6.24.1" 531 | 532 | babel-plugin-transform-es2015-spread@^6.22.0: 533 | version "6.22.0" 534 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 535 | dependencies: 536 | babel-runtime "^6.22.0" 537 | 538 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 539 | version "6.24.1" 540 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 541 | dependencies: 542 | babel-helper-regex "^6.24.1" 543 | babel-runtime "^6.22.0" 544 | babel-types "^6.24.1" 545 | 546 | babel-plugin-transform-es2015-template-literals@^6.22.0: 547 | version "6.22.0" 548 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 549 | dependencies: 550 | babel-runtime "^6.22.0" 551 | 552 | babel-plugin-transform-es2015-typeof-symbol@^6.23.0: 553 | version "6.23.0" 554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 555 | dependencies: 556 | babel-runtime "^6.22.0" 557 | 558 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 559 | version "6.24.1" 560 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 561 | dependencies: 562 | babel-helper-regex "^6.24.1" 563 | babel-runtime "^6.22.0" 564 | regexpu-core "^2.0.0" 565 | 566 | babel-plugin-transform-exponentiation-operator@^6.22.0: 567 | version "6.24.1" 568 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 569 | dependencies: 570 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 571 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 572 | babel-runtime "^6.22.0" 573 | 574 | babel-plugin-transform-object-rest-spread@^6.26.0: 575 | version "6.26.0" 576 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 577 | dependencies: 578 | babel-plugin-syntax-object-rest-spread "^6.8.0" 579 | babel-runtime "^6.26.0" 580 | 581 | babel-plugin-transform-regenerator@^6.22.0: 582 | version "6.26.0" 583 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 584 | dependencies: 585 | regenerator-transform "^0.10.0" 586 | 587 | babel-plugin-transform-strict-mode@^6.24.1: 588 | version "6.24.1" 589 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 590 | dependencies: 591 | babel-runtime "^6.22.0" 592 | babel-types "^6.24.1" 593 | 594 | babel-preset-env@^1.7.0: 595 | version "1.7.0" 596 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a" 597 | dependencies: 598 | babel-plugin-check-es2015-constants "^6.22.0" 599 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 600 | babel-plugin-transform-async-to-generator "^6.22.0" 601 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 602 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 603 | babel-plugin-transform-es2015-block-scoping "^6.23.0" 604 | babel-plugin-transform-es2015-classes "^6.23.0" 605 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 606 | babel-plugin-transform-es2015-destructuring "^6.23.0" 607 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 608 | babel-plugin-transform-es2015-for-of "^6.23.0" 609 | babel-plugin-transform-es2015-function-name "^6.22.0" 610 | babel-plugin-transform-es2015-literals "^6.22.0" 611 | babel-plugin-transform-es2015-modules-amd "^6.22.0" 612 | babel-plugin-transform-es2015-modules-commonjs "^6.23.0" 613 | babel-plugin-transform-es2015-modules-systemjs "^6.23.0" 614 | babel-plugin-transform-es2015-modules-umd "^6.23.0" 615 | babel-plugin-transform-es2015-object-super "^6.22.0" 616 | babel-plugin-transform-es2015-parameters "^6.23.0" 617 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 618 | babel-plugin-transform-es2015-spread "^6.22.0" 619 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 620 | babel-plugin-transform-es2015-template-literals "^6.22.0" 621 | babel-plugin-transform-es2015-typeof-symbol "^6.23.0" 622 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 623 | babel-plugin-transform-exponentiation-operator "^6.22.0" 624 | babel-plugin-transform-regenerator "^6.22.0" 625 | browserslist "^3.2.6" 626 | invariant "^2.2.2" 627 | semver "^5.3.0" 628 | 629 | babel-preset-jest@^23.0.1: 630 | version "23.0.1" 631 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-23.0.1.tgz#631cc545c6cf021943013bcaf22f45d87fe62198" 632 | dependencies: 633 | babel-plugin-jest-hoist "^23.0.1" 634 | babel-plugin-syntax-object-rest-spread "^6.13.0" 635 | 636 | babel-register@^6.26.0: 637 | version "6.26.0" 638 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 639 | dependencies: 640 | babel-core "^6.26.0" 641 | babel-runtime "^6.26.0" 642 | core-js "^2.5.0" 643 | home-or-tmp "^2.0.0" 644 | lodash "^4.17.4" 645 | mkdirp "^0.5.1" 646 | source-map-support "^0.4.15" 647 | 648 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 649 | version "6.26.0" 650 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 651 | dependencies: 652 | core-js "^2.4.0" 653 | regenerator-runtime "^0.11.0" 654 | 655 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 656 | version "6.26.0" 657 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 658 | dependencies: 659 | babel-runtime "^6.26.0" 660 | babel-traverse "^6.26.0" 661 | babel-types "^6.26.0" 662 | babylon "^6.18.0" 663 | lodash "^4.17.4" 664 | 665 | babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0: 666 | version "6.26.0" 667 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 668 | dependencies: 669 | babel-code-frame "^6.26.0" 670 | babel-messages "^6.23.0" 671 | babel-runtime "^6.26.0" 672 | babel-types "^6.26.0" 673 | babylon "^6.18.0" 674 | debug "^2.6.8" 675 | globals "^9.18.0" 676 | invariant "^2.2.2" 677 | lodash "^4.17.4" 678 | 679 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 680 | version "6.26.0" 681 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 682 | dependencies: 683 | babel-runtime "^6.26.0" 684 | esutils "^2.0.2" 685 | lodash "^4.17.4" 686 | to-fast-properties "^1.0.3" 687 | 688 | babylon@^6.18.0: 689 | version "6.18.0" 690 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 691 | 692 | balanced-match@^1.0.0: 693 | version "1.0.0" 694 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 695 | 696 | base@^0.11.1: 697 | version "0.11.2" 698 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 699 | dependencies: 700 | cache-base "^1.0.1" 701 | class-utils "^0.3.5" 702 | component-emitter "^1.2.1" 703 | define-property "^1.0.0" 704 | isobject "^3.0.1" 705 | mixin-deep "^1.2.0" 706 | pascalcase "^0.1.1" 707 | 708 | bcrypt-pbkdf@^1.0.0: 709 | version "1.0.1" 710 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 711 | dependencies: 712 | tweetnacl "^0.14.3" 713 | 714 | brace-expansion@^1.1.7: 715 | version "1.1.11" 716 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 717 | dependencies: 718 | balanced-match "^1.0.0" 719 | concat-map "0.0.1" 720 | 721 | braces@^1.8.2: 722 | version "1.8.5" 723 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 724 | dependencies: 725 | expand-range "^1.8.1" 726 | preserve "^0.2.0" 727 | repeat-element "^1.1.2" 728 | 729 | braces@^2.3.1: 730 | version "2.3.2" 731 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 732 | dependencies: 733 | arr-flatten "^1.1.0" 734 | array-unique "^0.3.2" 735 | extend-shallow "^2.0.1" 736 | fill-range "^4.0.0" 737 | isobject "^3.0.1" 738 | repeat-element "^1.1.2" 739 | snapdragon "^0.8.1" 740 | snapdragon-node "^2.0.1" 741 | split-string "^3.0.2" 742 | to-regex "^3.0.1" 743 | 744 | browser-process-hrtime@^0.1.2: 745 | version "0.1.2" 746 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz#425d68a58d3447f02a04aa894187fce8af8b7b8e" 747 | 748 | browser-resolve@^1.11.2: 749 | version "1.11.2" 750 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 751 | dependencies: 752 | resolve "1.1.7" 753 | 754 | browserslist@^3.2.6: 755 | version "3.2.8" 756 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6" 757 | dependencies: 758 | caniuse-lite "^1.0.30000844" 759 | electron-to-chromium "^1.3.47" 760 | 761 | bser@^2.0.0: 762 | version "2.0.0" 763 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 764 | dependencies: 765 | node-int64 "^0.4.0" 766 | 767 | buffer-from@^1.0.0: 768 | version "1.0.0" 769 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531" 770 | 771 | builtin-modules@^1.0.0: 772 | version "1.1.1" 773 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 774 | 775 | builtin-modules@^2.0.0: 776 | version "2.0.0" 777 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-2.0.0.tgz#60b7ef5ae6546bd7deefa74b08b62a43a232648e" 778 | 779 | cache-base@^1.0.1: 780 | version "1.0.1" 781 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 782 | dependencies: 783 | collection-visit "^1.0.0" 784 | component-emitter "^1.2.1" 785 | get-value "^2.0.6" 786 | has-value "^1.0.0" 787 | isobject "^3.0.1" 788 | set-value "^2.0.0" 789 | to-object-path "^0.3.0" 790 | union-value "^1.0.0" 791 | unset-value "^1.0.0" 792 | 793 | callsites@^2.0.0: 794 | version "2.0.0" 795 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 796 | 797 | camelcase@^4.1.0: 798 | version "4.1.0" 799 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 800 | 801 | caniuse-lite@^1.0.30000844: 802 | version "1.0.30000846" 803 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000846.tgz#2092911eecad71a89dae1faa62bcc202fde7f959" 804 | 805 | capture-exit@^1.2.0: 806 | version "1.2.0" 807 | resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f" 808 | dependencies: 809 | rsvp "^3.3.3" 810 | 811 | caseless@~0.12.0: 812 | version "0.12.0" 813 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 814 | 815 | chalk@^1.1.3: 816 | version "1.1.3" 817 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 818 | dependencies: 819 | ansi-styles "^2.2.1" 820 | escape-string-regexp "^1.0.2" 821 | has-ansi "^2.0.0" 822 | strip-ansi "^3.0.0" 823 | supports-color "^2.0.0" 824 | 825 | chalk@^2.0.0, chalk@^2.0.1: 826 | version "2.4.1" 827 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" 828 | dependencies: 829 | ansi-styles "^3.2.1" 830 | escape-string-regexp "^1.0.5" 831 | supports-color "^5.3.0" 832 | 833 | chownr@^1.0.1: 834 | version "1.0.1" 835 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181" 836 | 837 | ci-info@^1.0.0: 838 | version "1.1.3" 839 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.3.tgz#710193264bb05c77b8c90d02f5aaf22216a667b2" 840 | 841 | class-utils@^0.3.5: 842 | version "0.3.6" 843 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 844 | dependencies: 845 | arr-union "^3.1.0" 846 | define-property "^0.2.5" 847 | isobject "^3.0.0" 848 | static-extend "^0.1.1" 849 | 850 | cliui@^4.0.0: 851 | version "4.1.0" 852 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" 853 | dependencies: 854 | string-width "^2.1.1" 855 | strip-ansi "^4.0.0" 856 | wrap-ansi "^2.0.0" 857 | 858 | co@^4.6.0: 859 | version "4.6.0" 860 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 861 | 862 | code-point-at@^1.0.0: 863 | version "1.1.0" 864 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 865 | 866 | collection-visit@^1.0.0: 867 | version "1.0.0" 868 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 869 | dependencies: 870 | map-visit "^1.0.0" 871 | object-visit "^1.0.0" 872 | 873 | color-convert@^1.9.0: 874 | version "1.9.1" 875 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 876 | dependencies: 877 | color-name "^1.1.1" 878 | 879 | color-name@^1.1.1: 880 | version "1.1.3" 881 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 882 | 883 | combined-stream@1.0.6, combined-stream@~1.0.5: 884 | version "1.0.6" 885 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.6.tgz#723e7df6e801ac5613113a7e445a9b69cb632818" 886 | dependencies: 887 | delayed-stream "~1.0.0" 888 | 889 | commander@~2.14.1: 890 | version "2.14.1" 891 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.14.1.tgz#2235123e37af8ca3c65df45b026dbd357b01b9aa" 892 | 893 | commander@~2.9.0: 894 | version "2.9.0" 895 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 896 | dependencies: 897 | graceful-readlink ">= 1.0.0" 898 | 899 | compare-versions@^3.1.0: 900 | version "3.2.1" 901 | resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.2.1.tgz#a49eb7689d4caaf0b6db5220173fd279614000f7" 902 | 903 | component-emitter@^1.2.1: 904 | version "1.2.1" 905 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 906 | 907 | concat-map@0.0.1: 908 | version "0.0.1" 909 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 910 | 911 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 912 | version "1.1.0" 913 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 914 | 915 | convert-source-map@^1.4.0, convert-source-map@^1.5.1: 916 | version "1.5.1" 917 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 918 | 919 | copy-descriptor@^0.1.0: 920 | version "0.1.1" 921 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 922 | 923 | core-js@^2.4.0, core-js@^2.5.0: 924 | version "2.5.6" 925 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.6.tgz#0fe6d45bf3cac3ac364a9d72de7576f4eb221b9d" 926 | 927 | core-util-is@1.0.2, core-util-is@~1.0.0: 928 | version "1.0.2" 929 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 930 | 931 | cross-spawn@^5.0.1: 932 | version "5.1.0" 933 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 934 | dependencies: 935 | lru-cache "^4.0.1" 936 | shebang-command "^1.2.0" 937 | which "^1.2.9" 938 | 939 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 940 | version "0.3.2" 941 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 942 | 943 | "cssstyle@>= 0.3.1 < 0.4.0": 944 | version "0.3.1" 945 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.3.1.tgz#6da9b4cff1bc5d716e6e5fe8e04fcb1b50a49adf" 946 | dependencies: 947 | cssom "0.3.x" 948 | 949 | dashdash@^1.12.0: 950 | version "1.14.1" 951 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 952 | dependencies: 953 | assert-plus "^1.0.0" 954 | 955 | data-urls@^1.0.0: 956 | version "1.0.0" 957 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.0.0.tgz#24802de4e81c298ea8a9388bb0d8e461c774684f" 958 | dependencies: 959 | abab "^1.0.4" 960 | whatwg-mimetype "^2.0.0" 961 | whatwg-url "^6.4.0" 962 | 963 | debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: 964 | version "2.6.9" 965 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 966 | dependencies: 967 | ms "2.0.0" 968 | 969 | debug@^3.1.0: 970 | version "3.1.0" 971 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 972 | dependencies: 973 | ms "2.0.0" 974 | 975 | decamelize@^1.1.1: 976 | version "1.2.0" 977 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 978 | 979 | decode-uri-component@^0.2.0: 980 | version "0.2.0" 981 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 982 | 983 | deep-extend@^0.5.1: 984 | version "0.5.1" 985 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.5.1.tgz#b894a9dd90d3023fbf1c55a394fb858eb2066f1f" 986 | 987 | deep-is@~0.1.3: 988 | version "0.1.3" 989 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 990 | 991 | default-require-extensions@^1.0.0: 992 | version "1.0.0" 993 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 994 | dependencies: 995 | strip-bom "^2.0.0" 996 | 997 | define-properties@^1.1.2: 998 | version "1.1.2" 999 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1000 | dependencies: 1001 | foreach "^2.0.5" 1002 | object-keys "^1.0.8" 1003 | 1004 | define-property@^0.2.5: 1005 | version "0.2.5" 1006 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 1007 | dependencies: 1008 | is-descriptor "^0.1.0" 1009 | 1010 | define-property@^1.0.0: 1011 | version "1.0.0" 1012 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 1013 | dependencies: 1014 | is-descriptor "^1.0.0" 1015 | 1016 | define-property@^2.0.2: 1017 | version "2.0.2" 1018 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 1019 | dependencies: 1020 | is-descriptor "^1.0.2" 1021 | isobject "^3.0.1" 1022 | 1023 | delayed-stream@~1.0.0: 1024 | version "1.0.0" 1025 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1026 | 1027 | delegates@^1.0.0: 1028 | version "1.0.0" 1029 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1030 | 1031 | detect-indent@^4.0.0: 1032 | version "4.0.0" 1033 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1034 | dependencies: 1035 | repeating "^2.0.0" 1036 | 1037 | detect-libc@^1.0.2: 1038 | version "1.0.3" 1039 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1040 | 1041 | detect-newline@^2.1.0: 1042 | version "2.1.0" 1043 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 1044 | 1045 | diff@^3.2.0: 1046 | version "3.5.0" 1047 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 1048 | 1049 | domexception@^1.0.0: 1050 | version "1.0.1" 1051 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" 1052 | dependencies: 1053 | webidl-conversions "^4.0.2" 1054 | 1055 | ecc-jsbn@~0.1.1: 1056 | version "0.1.1" 1057 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1058 | dependencies: 1059 | jsbn "~0.1.0" 1060 | 1061 | electron-to-chromium@^1.3.47: 1062 | version "1.3.48" 1063 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.48.tgz#d3b0d8593814044e092ece2108fc3ac9aea4b900" 1064 | 1065 | error-ex@^1.2.0: 1066 | version "1.3.1" 1067 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1068 | dependencies: 1069 | is-arrayish "^0.2.1" 1070 | 1071 | es-abstract@^1.5.1: 1072 | version "1.11.0" 1073 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.11.0.tgz#cce87d518f0496893b1a30cd8461835535480681" 1074 | dependencies: 1075 | es-to-primitive "^1.1.1" 1076 | function-bind "^1.1.1" 1077 | has "^1.0.1" 1078 | is-callable "^1.1.3" 1079 | is-regex "^1.0.4" 1080 | 1081 | es-to-primitive@^1.1.1: 1082 | version "1.1.1" 1083 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1084 | dependencies: 1085 | is-callable "^1.1.1" 1086 | is-date-object "^1.0.1" 1087 | is-symbol "^1.0.1" 1088 | 1089 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1090 | version "1.0.5" 1091 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1092 | 1093 | escodegen@^1.9.0: 1094 | version "1.9.1" 1095 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.1.tgz#dbae17ef96c8e4bedb1356f4504fa4cc2f7cb7e2" 1096 | dependencies: 1097 | esprima "^3.1.3" 1098 | estraverse "^4.2.0" 1099 | esutils "^2.0.2" 1100 | optionator "^0.8.1" 1101 | optionalDependencies: 1102 | source-map "~0.6.1" 1103 | 1104 | esprima@^3.1.3: 1105 | version "3.1.3" 1106 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1107 | 1108 | esprima@^4.0.0: 1109 | version "4.0.1" 1110 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1111 | 1112 | estraverse@^4.2.0: 1113 | version "4.2.0" 1114 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1115 | 1116 | estree-walker@^0.2.1: 1117 | version "0.2.1" 1118 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e" 1119 | 1120 | estree-walker@^0.5.1, estree-walker@^0.5.2: 1121 | version "0.5.2" 1122 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.5.2.tgz#d3850be7529c9580d815600b53126515e146dd39" 1123 | 1124 | esutils@^2.0.2: 1125 | version "2.0.2" 1126 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1127 | 1128 | exec-sh@^0.2.0: 1129 | version "0.2.1" 1130 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 1131 | dependencies: 1132 | merge "^1.1.3" 1133 | 1134 | execa@^0.7.0: 1135 | version "0.7.0" 1136 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1137 | dependencies: 1138 | cross-spawn "^5.0.1" 1139 | get-stream "^3.0.0" 1140 | is-stream "^1.1.0" 1141 | npm-run-path "^2.0.0" 1142 | p-finally "^1.0.0" 1143 | signal-exit "^3.0.0" 1144 | strip-eof "^1.0.0" 1145 | 1146 | exit@^0.1.2: 1147 | version "0.1.2" 1148 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1149 | 1150 | expand-brackets@^0.1.4: 1151 | version "0.1.5" 1152 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1153 | dependencies: 1154 | is-posix-bracket "^0.1.0" 1155 | 1156 | expand-brackets@^2.1.4: 1157 | version "2.1.4" 1158 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 1159 | dependencies: 1160 | debug "^2.3.3" 1161 | define-property "^0.2.5" 1162 | extend-shallow "^2.0.1" 1163 | posix-character-classes "^0.1.0" 1164 | regex-not "^1.0.0" 1165 | snapdragon "^0.8.1" 1166 | to-regex "^3.0.1" 1167 | 1168 | expand-range@^1.8.1: 1169 | version "1.8.2" 1170 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1171 | dependencies: 1172 | fill-range "^2.1.0" 1173 | 1174 | expect@^23.0.1: 1175 | version "23.0.1" 1176 | resolved "https://registry.yarnpkg.com/expect/-/expect-23.0.1.tgz#99131f2fd9115595f8cc3697401e7f0734d45fef" 1177 | dependencies: 1178 | ansi-styles "^3.2.0" 1179 | jest-diff "^23.0.1" 1180 | jest-get-type "^22.1.0" 1181 | jest-matcher-utils "^23.0.1" 1182 | jest-message-util "^23.0.0" 1183 | jest-regex-util "^23.0.0" 1184 | 1185 | extend-shallow@^2.0.1: 1186 | version "2.0.1" 1187 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 1188 | dependencies: 1189 | is-extendable "^0.1.0" 1190 | 1191 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 1192 | version "3.0.2" 1193 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 1194 | dependencies: 1195 | assign-symbols "^1.0.0" 1196 | is-extendable "^1.0.1" 1197 | 1198 | extend@~3.0.1: 1199 | version "3.0.2" 1200 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1201 | 1202 | extglob@^0.3.1: 1203 | version "0.3.2" 1204 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1205 | dependencies: 1206 | is-extglob "^1.0.0" 1207 | 1208 | extglob@^2.0.4: 1209 | version "2.0.4" 1210 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 1211 | dependencies: 1212 | array-unique "^0.3.2" 1213 | define-property "^1.0.0" 1214 | expand-brackets "^2.1.4" 1215 | extend-shallow "^2.0.1" 1216 | fragment-cache "^0.2.1" 1217 | regex-not "^1.0.0" 1218 | snapdragon "^0.8.1" 1219 | to-regex "^3.0.1" 1220 | 1221 | extsprintf@1.3.0: 1222 | version "1.3.0" 1223 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1224 | 1225 | extsprintf@^1.2.0: 1226 | version "1.4.0" 1227 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1228 | 1229 | fast-deep-equal@^1.0.0: 1230 | version "1.1.0" 1231 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" 1232 | 1233 | fast-json-stable-stringify@^2.0.0: 1234 | version "2.0.0" 1235 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 1236 | 1237 | fast-levenshtein@~2.0.4: 1238 | version "2.0.6" 1239 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1240 | 1241 | fb-watchman@^2.0.0: 1242 | version "2.0.0" 1243 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1244 | dependencies: 1245 | bser "^2.0.0" 1246 | 1247 | filename-regex@^2.0.0: 1248 | version "2.0.1" 1249 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1250 | 1251 | fileset@^2.0.2: 1252 | version "2.0.3" 1253 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1254 | dependencies: 1255 | glob "^7.0.3" 1256 | minimatch "^3.0.3" 1257 | 1258 | fill-range@^2.1.0: 1259 | version "2.2.4" 1260 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" 1261 | dependencies: 1262 | is-number "^2.1.0" 1263 | isobject "^2.0.0" 1264 | randomatic "^3.0.0" 1265 | repeat-element "^1.1.2" 1266 | repeat-string "^1.5.2" 1267 | 1268 | fill-range@^4.0.0: 1269 | version "4.0.0" 1270 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 1271 | dependencies: 1272 | extend-shallow "^2.0.1" 1273 | is-number "^3.0.0" 1274 | repeat-string "^1.6.1" 1275 | to-regex-range "^2.1.0" 1276 | 1277 | find-up@^1.0.0: 1278 | version "1.1.2" 1279 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1280 | dependencies: 1281 | path-exists "^2.0.0" 1282 | pinkie-promise "^2.0.0" 1283 | 1284 | find-up@^2.1.0: 1285 | version "2.1.0" 1286 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1287 | dependencies: 1288 | locate-path "^2.0.0" 1289 | 1290 | for-in@^1.0.1, for-in@^1.0.2: 1291 | version "1.0.2" 1292 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1293 | 1294 | for-own@^0.1.4: 1295 | version "0.1.5" 1296 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1297 | dependencies: 1298 | for-in "^1.0.1" 1299 | 1300 | foreach@^2.0.5: 1301 | version "2.0.5" 1302 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1303 | 1304 | forever-agent@~0.6.1: 1305 | version "0.6.1" 1306 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1307 | 1308 | form-data@~2.3.1: 1309 | version "2.3.2" 1310 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.2.tgz#4970498be604c20c005d4f5c23aecd21d6b49099" 1311 | dependencies: 1312 | asynckit "^0.4.0" 1313 | combined-stream "1.0.6" 1314 | mime-types "^2.1.12" 1315 | 1316 | fragment-cache@^0.2.1: 1317 | version "0.2.1" 1318 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 1319 | dependencies: 1320 | map-cache "^0.2.2" 1321 | 1322 | fs-minipass@^1.2.5: 1323 | version "1.2.5" 1324 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 1325 | dependencies: 1326 | minipass "^2.2.1" 1327 | 1328 | fs.realpath@^1.0.0: 1329 | version "1.0.0" 1330 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1331 | 1332 | fsevents@^1.2.3: 1333 | version "1.2.4" 1334 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426" 1335 | dependencies: 1336 | nan "^2.9.2" 1337 | node-pre-gyp "^0.10.0" 1338 | 1339 | function-bind@^1.0.2, function-bind@^1.1.1: 1340 | version "1.1.1" 1341 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1342 | 1343 | gauge@~2.7.3: 1344 | version "2.7.4" 1345 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1346 | dependencies: 1347 | aproba "^1.0.3" 1348 | console-control-strings "^1.0.0" 1349 | has-unicode "^2.0.0" 1350 | object-assign "^4.1.0" 1351 | signal-exit "^3.0.0" 1352 | string-width "^1.0.1" 1353 | strip-ansi "^3.0.1" 1354 | wide-align "^1.1.0" 1355 | 1356 | get-caller-file@^1.0.1: 1357 | version "1.0.2" 1358 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1359 | 1360 | get-stream@^3.0.0: 1361 | version "3.0.0" 1362 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1363 | 1364 | get-value@^2.0.3, get-value@^2.0.6: 1365 | version "2.0.6" 1366 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 1367 | 1368 | getpass@^0.1.1: 1369 | version "0.1.7" 1370 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1371 | dependencies: 1372 | assert-plus "^1.0.0" 1373 | 1374 | glob-base@^0.3.0: 1375 | version "0.3.0" 1376 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1377 | dependencies: 1378 | glob-parent "^2.0.0" 1379 | is-glob "^2.0.0" 1380 | 1381 | glob-parent@^2.0.0: 1382 | version "2.0.0" 1383 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1384 | dependencies: 1385 | is-glob "^2.0.0" 1386 | 1387 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1388 | version "7.1.2" 1389 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1390 | dependencies: 1391 | fs.realpath "^1.0.0" 1392 | inflight "^1.0.4" 1393 | inherits "2" 1394 | minimatch "^3.0.4" 1395 | once "^1.3.0" 1396 | path-is-absolute "^1.0.0" 1397 | 1398 | globals@^9.18.0: 1399 | version "9.18.0" 1400 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1401 | 1402 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 1403 | version "4.1.11" 1404 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1405 | 1406 | "graceful-readlink@>= 1.0.0": 1407 | version "1.0.1" 1408 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1409 | 1410 | growly@^1.3.0: 1411 | version "1.3.0" 1412 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1413 | 1414 | handlebars@^4.0.3: 1415 | version "4.7.7" 1416 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" 1417 | dependencies: 1418 | minimist "^1.2.5" 1419 | neo-async "^2.6.0" 1420 | source-map "^0.6.1" 1421 | wordwrap "^1.0.0" 1422 | optionalDependencies: 1423 | uglify-js "^3.1.4" 1424 | 1425 | har-schema@^2.0.0: 1426 | version "2.0.0" 1427 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1428 | 1429 | har-validator@~5.0.3: 1430 | version "5.0.3" 1431 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1432 | dependencies: 1433 | ajv "^5.1.0" 1434 | har-schema "^2.0.0" 1435 | 1436 | has-ansi@^2.0.0: 1437 | version "2.0.0" 1438 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1439 | dependencies: 1440 | ansi-regex "^2.0.0" 1441 | 1442 | has-flag@^1.0.0: 1443 | version "1.0.0" 1444 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1445 | 1446 | has-flag@^3.0.0: 1447 | version "3.0.0" 1448 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1449 | 1450 | has-unicode@^2.0.0: 1451 | version "2.0.1" 1452 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1453 | 1454 | has-value@^0.3.1: 1455 | version "0.3.1" 1456 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 1457 | dependencies: 1458 | get-value "^2.0.3" 1459 | has-values "^0.1.4" 1460 | isobject "^2.0.0" 1461 | 1462 | has-value@^1.0.0: 1463 | version "1.0.0" 1464 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 1465 | dependencies: 1466 | get-value "^2.0.6" 1467 | has-values "^1.0.0" 1468 | isobject "^3.0.0" 1469 | 1470 | has-values@^0.1.4: 1471 | version "0.1.4" 1472 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 1473 | 1474 | has-values@^1.0.0: 1475 | version "1.0.0" 1476 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 1477 | dependencies: 1478 | is-number "^3.0.0" 1479 | kind-of "^4.0.0" 1480 | 1481 | has@^1.0.1: 1482 | version "1.0.1" 1483 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1484 | dependencies: 1485 | function-bind "^1.0.2" 1486 | 1487 | home-or-tmp@^2.0.0: 1488 | version "2.0.0" 1489 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1490 | dependencies: 1491 | os-homedir "^1.0.0" 1492 | os-tmpdir "^1.0.1" 1493 | 1494 | hosted-git-info@^2.1.4: 1495 | version "2.6.0" 1496 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.6.0.tgz#23235b29ab230c576aab0d4f13fc046b0b038222" 1497 | 1498 | html-encoding-sniffer@^1.0.2: 1499 | version "1.0.2" 1500 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1501 | dependencies: 1502 | whatwg-encoding "^1.0.1" 1503 | 1504 | http-signature@~1.2.0: 1505 | version "1.2.0" 1506 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1507 | dependencies: 1508 | assert-plus "^1.0.0" 1509 | jsprim "^1.2.2" 1510 | sshpk "^1.7.0" 1511 | 1512 | iconv-lite@0.4.19: 1513 | version "0.4.19" 1514 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1515 | 1516 | iconv-lite@^0.4.4: 1517 | version "0.4.23" 1518 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 1519 | dependencies: 1520 | safer-buffer ">= 2.1.2 < 3" 1521 | 1522 | ignore-walk@^3.0.1: 1523 | version "3.0.1" 1524 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 1525 | dependencies: 1526 | minimatch "^3.0.4" 1527 | 1528 | import-local@^1.0.0: 1529 | version "1.0.0" 1530 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc" 1531 | dependencies: 1532 | pkg-dir "^2.0.0" 1533 | resolve-cwd "^2.0.0" 1534 | 1535 | imurmurhash@^0.1.4: 1536 | version "0.1.4" 1537 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1538 | 1539 | inflight@^1.0.4: 1540 | version "1.0.6" 1541 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1542 | dependencies: 1543 | once "^1.3.0" 1544 | wrappy "1" 1545 | 1546 | inherits@2, inherits@~2.0.3: 1547 | version "2.0.3" 1548 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1549 | 1550 | ini@~1.3.0: 1551 | version "1.3.7" 1552 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.7.tgz#a09363e1911972ea16d7a8851005d84cf09a9a84" 1553 | 1554 | invariant@^2.2.2: 1555 | version "2.2.4" 1556 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" 1557 | dependencies: 1558 | loose-envify "^1.0.0" 1559 | 1560 | invert-kv@^1.0.0: 1561 | version "1.0.0" 1562 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1563 | 1564 | is-accessor-descriptor@^0.1.6: 1565 | version "0.1.6" 1566 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 1567 | dependencies: 1568 | kind-of "^3.0.2" 1569 | 1570 | is-accessor-descriptor@^1.0.0: 1571 | version "1.0.0" 1572 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 1573 | dependencies: 1574 | kind-of "^6.0.0" 1575 | 1576 | is-arrayish@^0.2.1: 1577 | version "0.2.1" 1578 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1579 | 1580 | is-buffer@^1.1.5: 1581 | version "1.1.6" 1582 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1583 | 1584 | is-builtin-module@^1.0.0: 1585 | version "1.0.0" 1586 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1587 | dependencies: 1588 | builtin-modules "^1.0.0" 1589 | 1590 | is-callable@^1.1.1, is-callable@^1.1.3: 1591 | version "1.1.3" 1592 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1593 | 1594 | is-ci@^1.0.10: 1595 | version "1.1.0" 1596 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.1.0.tgz#247e4162e7860cebbdaf30b774d6b0ac7dcfe7a5" 1597 | dependencies: 1598 | ci-info "^1.0.0" 1599 | 1600 | is-data-descriptor@^0.1.4: 1601 | version "0.1.4" 1602 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 1603 | dependencies: 1604 | kind-of "^3.0.2" 1605 | 1606 | is-data-descriptor@^1.0.0: 1607 | version "1.0.0" 1608 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 1609 | dependencies: 1610 | kind-of "^6.0.0" 1611 | 1612 | is-date-object@^1.0.1: 1613 | version "1.0.1" 1614 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1615 | 1616 | is-descriptor@^0.1.0: 1617 | version "0.1.6" 1618 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 1619 | dependencies: 1620 | is-accessor-descriptor "^0.1.6" 1621 | is-data-descriptor "^0.1.4" 1622 | kind-of "^5.0.0" 1623 | 1624 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 1625 | version "1.0.2" 1626 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 1627 | dependencies: 1628 | is-accessor-descriptor "^1.0.0" 1629 | is-data-descriptor "^1.0.0" 1630 | kind-of "^6.0.2" 1631 | 1632 | is-dotfile@^1.0.0: 1633 | version "1.0.3" 1634 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1635 | 1636 | is-equal-shallow@^0.1.3: 1637 | version "0.1.3" 1638 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1639 | dependencies: 1640 | is-primitive "^2.0.0" 1641 | 1642 | is-extendable@^0.1.0, is-extendable@^0.1.1: 1643 | version "0.1.1" 1644 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1645 | 1646 | is-extendable@^1.0.1: 1647 | version "1.0.1" 1648 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 1649 | dependencies: 1650 | is-plain-object "^2.0.4" 1651 | 1652 | is-extglob@^1.0.0: 1653 | version "1.0.0" 1654 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1655 | 1656 | is-finite@^1.0.0: 1657 | version "1.0.2" 1658 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1659 | dependencies: 1660 | number-is-nan "^1.0.0" 1661 | 1662 | is-fullwidth-code-point@^1.0.0: 1663 | version "1.0.0" 1664 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1665 | dependencies: 1666 | number-is-nan "^1.0.0" 1667 | 1668 | is-fullwidth-code-point@^2.0.0: 1669 | version "2.0.0" 1670 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1671 | 1672 | is-generator-fn@^1.0.0: 1673 | version "1.0.0" 1674 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a" 1675 | 1676 | is-glob@^2.0.0, is-glob@^2.0.1: 1677 | version "2.0.1" 1678 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1679 | dependencies: 1680 | is-extglob "^1.0.0" 1681 | 1682 | is-module@^1.0.0: 1683 | version "1.0.0" 1684 | resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" 1685 | 1686 | is-number@^2.1.0: 1687 | version "2.1.0" 1688 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1689 | dependencies: 1690 | kind-of "^3.0.2" 1691 | 1692 | is-number@^3.0.0: 1693 | version "3.0.0" 1694 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1695 | dependencies: 1696 | kind-of "^3.0.2" 1697 | 1698 | is-number@^4.0.0: 1699 | version "4.0.0" 1700 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" 1701 | 1702 | is-odd@^2.0.0: 1703 | version "2.0.0" 1704 | resolved "https://registry.yarnpkg.com/is-odd/-/is-odd-2.0.0.tgz#7646624671fd7ea558ccd9a2795182f2958f1b24" 1705 | dependencies: 1706 | is-number "^4.0.0" 1707 | 1708 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1709 | version "2.0.4" 1710 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1711 | dependencies: 1712 | isobject "^3.0.1" 1713 | 1714 | is-posix-bracket@^0.1.0: 1715 | version "0.1.1" 1716 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1717 | 1718 | is-primitive@^2.0.0: 1719 | version "2.0.0" 1720 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1721 | 1722 | is-regex@^1.0.4: 1723 | version "1.0.4" 1724 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1725 | dependencies: 1726 | has "^1.0.1" 1727 | 1728 | is-stream@^1.1.0: 1729 | version "1.1.0" 1730 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1731 | 1732 | is-symbol@^1.0.1: 1733 | version "1.0.1" 1734 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 1735 | 1736 | is-typedarray@~1.0.0: 1737 | version "1.0.0" 1738 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1739 | 1740 | is-utf8@^0.2.0: 1741 | version "0.2.1" 1742 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1743 | 1744 | is-windows@^1.0.2: 1745 | version "1.0.2" 1746 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1747 | 1748 | isarray@1.0.0, isarray@~1.0.0: 1749 | version "1.0.0" 1750 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1751 | 1752 | isexe@^2.0.0: 1753 | version "2.0.0" 1754 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1755 | 1756 | isobject@^2.0.0: 1757 | version "2.1.0" 1758 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1759 | dependencies: 1760 | isarray "1.0.0" 1761 | 1762 | isobject@^3.0.0, isobject@^3.0.1: 1763 | version "3.0.1" 1764 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1765 | 1766 | isstream@~0.1.2: 1767 | version "0.1.2" 1768 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1769 | 1770 | istanbul-api@^1.3.1: 1771 | version "1.3.1" 1772 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.1.tgz#4c3b05d18c0016d1022e079b98dc82c40f488954" 1773 | dependencies: 1774 | async "^2.1.4" 1775 | compare-versions "^3.1.0" 1776 | fileset "^2.0.2" 1777 | istanbul-lib-coverage "^1.2.0" 1778 | istanbul-lib-hook "^1.2.0" 1779 | istanbul-lib-instrument "^1.10.1" 1780 | istanbul-lib-report "^1.1.4" 1781 | istanbul-lib-source-maps "^1.2.4" 1782 | istanbul-reports "^1.3.0" 1783 | js-yaml "^3.7.0" 1784 | mkdirp "^0.5.1" 1785 | once "^1.4.0" 1786 | 1787 | istanbul-lib-coverage@^1.2.0: 1788 | version "1.2.0" 1789 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.0.tgz#f7d8f2e42b97e37fe796114cb0f9d68b5e3a4341" 1790 | 1791 | istanbul-lib-hook@^1.2.0: 1792 | version "1.2.0" 1793 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.0.tgz#ae556fd5a41a6e8efa0b1002b1e416dfeaf9816c" 1794 | dependencies: 1795 | append-transform "^0.4.0" 1796 | 1797 | istanbul-lib-instrument@^1.10.1: 1798 | version "1.10.1" 1799 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.1.tgz#724b4b6caceba8692d3f1f9d0727e279c401af7b" 1800 | dependencies: 1801 | babel-generator "^6.18.0" 1802 | babel-template "^6.16.0" 1803 | babel-traverse "^6.18.0" 1804 | babel-types "^6.18.0" 1805 | babylon "^6.18.0" 1806 | istanbul-lib-coverage "^1.2.0" 1807 | semver "^5.3.0" 1808 | 1809 | istanbul-lib-report@^1.1.4: 1810 | version "1.1.4" 1811 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.4.tgz#e886cdf505c4ebbd8e099e4396a90d0a28e2acb5" 1812 | dependencies: 1813 | istanbul-lib-coverage "^1.2.0" 1814 | mkdirp "^0.5.1" 1815 | path-parse "^1.0.5" 1816 | supports-color "^3.1.2" 1817 | 1818 | istanbul-lib-source-maps@^1.2.4: 1819 | version "1.2.4" 1820 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.4.tgz#cc7ccad61629f4efff8e2f78adb8c522c9976ec7" 1821 | dependencies: 1822 | debug "^3.1.0" 1823 | istanbul-lib-coverage "^1.2.0" 1824 | mkdirp "^0.5.1" 1825 | rimraf "^2.6.1" 1826 | source-map "^0.5.3" 1827 | 1828 | istanbul-reports@^1.3.0: 1829 | version "1.3.0" 1830 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.3.0.tgz#2f322e81e1d9520767597dca3c20a0cce89a3554" 1831 | dependencies: 1832 | handlebars "^4.0.3" 1833 | 1834 | jest-changed-files@^23.0.1: 1835 | version "23.0.1" 1836 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-23.0.1.tgz#f79572d0720844ea5df84c2a448e862c2254f60c" 1837 | dependencies: 1838 | throat "^4.0.0" 1839 | 1840 | jest-cli@^23.0.1: 1841 | version "23.0.1" 1842 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-23.0.1.tgz#351a5ba51cf28ecf20336d97a30b970d1f530a56" 1843 | dependencies: 1844 | ansi-escapes "^3.0.0" 1845 | chalk "^2.0.1" 1846 | exit "^0.1.2" 1847 | glob "^7.1.2" 1848 | graceful-fs "^4.1.11" 1849 | import-local "^1.0.0" 1850 | is-ci "^1.0.10" 1851 | istanbul-api "^1.3.1" 1852 | istanbul-lib-coverage "^1.2.0" 1853 | istanbul-lib-instrument "^1.10.1" 1854 | istanbul-lib-source-maps "^1.2.4" 1855 | jest-changed-files "^23.0.1" 1856 | jest-config "^23.0.1" 1857 | jest-environment-jsdom "^23.0.1" 1858 | jest-get-type "^22.1.0" 1859 | jest-haste-map "^23.0.1" 1860 | jest-message-util "^23.0.0" 1861 | jest-regex-util "^23.0.0" 1862 | jest-resolve-dependencies "^23.0.1" 1863 | jest-runner "^23.0.1" 1864 | jest-runtime "^23.0.1" 1865 | jest-snapshot "^23.0.1" 1866 | jest-util "^23.0.1" 1867 | jest-validate "^23.0.1" 1868 | jest-worker "^23.0.1" 1869 | micromatch "^2.3.11" 1870 | node-notifier "^5.2.1" 1871 | realpath-native "^1.0.0" 1872 | rimraf "^2.5.4" 1873 | slash "^1.0.0" 1874 | string-length "^2.0.0" 1875 | strip-ansi "^4.0.0" 1876 | which "^1.2.12" 1877 | yargs "^11.0.0" 1878 | 1879 | jest-config@^23.0.1: 1880 | version "23.0.1" 1881 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-23.0.1.tgz#6798bff1247c7a390b1327193305001582fc58fa" 1882 | dependencies: 1883 | babel-core "^6.0.0" 1884 | babel-jest "^23.0.1" 1885 | chalk "^2.0.1" 1886 | glob "^7.1.1" 1887 | jest-environment-jsdom "^23.0.1" 1888 | jest-environment-node "^23.0.1" 1889 | jest-get-type "^22.1.0" 1890 | jest-jasmine2 "^23.0.1" 1891 | jest-regex-util "^23.0.0" 1892 | jest-resolve "^23.0.1" 1893 | jest-util "^23.0.1" 1894 | jest-validate "^23.0.1" 1895 | pretty-format "^23.0.1" 1896 | 1897 | jest-diff@^23.0.1: 1898 | version "23.0.1" 1899 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-23.0.1.tgz#3d49137cee12c320a4b4d2b4a6fa6e82d491a16a" 1900 | dependencies: 1901 | chalk "^2.0.1" 1902 | diff "^3.2.0" 1903 | jest-get-type "^22.1.0" 1904 | pretty-format "^23.0.1" 1905 | 1906 | jest-docblock@^23.0.1: 1907 | version "23.0.1" 1908 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-23.0.1.tgz#deddd18333be5dc2415260a04ef3fce9276b5725" 1909 | dependencies: 1910 | detect-newline "^2.1.0" 1911 | 1912 | jest-each@^23.0.1: 1913 | version "23.0.1" 1914 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-23.0.1.tgz#a6e5dbf530afc6bf9d74792dde69d8db70f84706" 1915 | dependencies: 1916 | chalk "^2.0.1" 1917 | pretty-format "^23.0.1" 1918 | 1919 | jest-environment-jsdom@^23.0.1: 1920 | version "23.0.1" 1921 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-23.0.1.tgz#da689eb9358dc16e5708abb208f4eb26a439575c" 1922 | dependencies: 1923 | jest-mock "^23.0.1" 1924 | jest-util "^23.0.1" 1925 | jsdom "^11.5.1" 1926 | 1927 | jest-environment-node@^23.0.1: 1928 | version "23.0.1" 1929 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-23.0.1.tgz#676b740e205f1f2be77241969e7812be824ee795" 1930 | dependencies: 1931 | jest-mock "^23.0.1" 1932 | jest-util "^23.0.1" 1933 | 1934 | jest-get-type@^22.1.0: 1935 | version "22.4.3" 1936 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" 1937 | 1938 | jest-haste-map@^23.0.1: 1939 | version "23.0.1" 1940 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-23.0.1.tgz#cd89052abfc8cba01f560bbec09d4f36aec25d4f" 1941 | dependencies: 1942 | fb-watchman "^2.0.0" 1943 | graceful-fs "^4.1.11" 1944 | jest-docblock "^23.0.1" 1945 | jest-serializer "^23.0.1" 1946 | jest-worker "^23.0.1" 1947 | micromatch "^2.3.11" 1948 | sane "^2.0.0" 1949 | 1950 | jest-jasmine2@^23.0.1: 1951 | version "23.0.1" 1952 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-23.0.1.tgz#16d875356e6360872bba48426f7d31fdc1b0bcea" 1953 | dependencies: 1954 | chalk "^2.0.1" 1955 | co "^4.6.0" 1956 | expect "^23.0.1" 1957 | is-generator-fn "^1.0.0" 1958 | jest-diff "^23.0.1" 1959 | jest-each "^23.0.1" 1960 | jest-matcher-utils "^23.0.1" 1961 | jest-message-util "^23.0.0" 1962 | jest-snapshot "^23.0.1" 1963 | jest-util "^23.0.1" 1964 | pretty-format "^23.0.1" 1965 | 1966 | jest-leak-detector@^23.0.1: 1967 | version "23.0.1" 1968 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-23.0.1.tgz#9dba07505ac3495c39d3ec09ac1e564599e861a0" 1969 | dependencies: 1970 | pretty-format "^23.0.1" 1971 | 1972 | jest-matcher-utils@^23.0.1: 1973 | version "23.0.1" 1974 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-23.0.1.tgz#0c6c0daedf9833c2a7f36236069efecb4c3f6e5f" 1975 | dependencies: 1976 | chalk "^2.0.1" 1977 | jest-get-type "^22.1.0" 1978 | pretty-format "^23.0.1" 1979 | 1980 | jest-message-util@^23.0.0: 1981 | version "23.0.0" 1982 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-23.0.0.tgz#073f3d76c701f7c718a4b9af1eb7f138792c4796" 1983 | dependencies: 1984 | "@babel/code-frame" "^7.0.0-beta.35" 1985 | chalk "^2.0.1" 1986 | micromatch "^2.3.11" 1987 | slash "^1.0.0" 1988 | stack-utils "^1.0.1" 1989 | 1990 | jest-mock@^23.0.1: 1991 | version "23.0.1" 1992 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-23.0.1.tgz#1569f477968c668fc728273a17c3767773b46357" 1993 | 1994 | jest-regex-util@^23.0.0: 1995 | version "23.0.0" 1996 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-23.0.0.tgz#dd5c1fde0c46f4371314cf10f7a751a23f4e8f76" 1997 | 1998 | jest-resolve-dependencies@^23.0.1: 1999 | version "23.0.1" 2000 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-23.0.1.tgz#d01a10ddad9152c4cecdf5eac2b88571c4b6a64d" 2001 | dependencies: 2002 | jest-regex-util "^23.0.0" 2003 | jest-snapshot "^23.0.1" 2004 | 2005 | jest-resolve@^23.0.1: 2006 | version "23.0.1" 2007 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-23.0.1.tgz#3f8403462b10a34c2df1d47aab5574c4935bcd24" 2008 | dependencies: 2009 | browser-resolve "^1.11.2" 2010 | chalk "^2.0.1" 2011 | realpath-native "^1.0.0" 2012 | 2013 | jest-runner@^23.0.1: 2014 | version "23.0.1" 2015 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-23.0.1.tgz#b176ae3ecf9e194aa4b84a7fcf70d1b8db231aa7" 2016 | dependencies: 2017 | exit "^0.1.2" 2018 | graceful-fs "^4.1.11" 2019 | jest-config "^23.0.1" 2020 | jest-docblock "^23.0.1" 2021 | jest-haste-map "^23.0.1" 2022 | jest-jasmine2 "^23.0.1" 2023 | jest-leak-detector "^23.0.1" 2024 | jest-message-util "^23.0.0" 2025 | jest-runtime "^23.0.1" 2026 | jest-util "^23.0.1" 2027 | jest-worker "^23.0.1" 2028 | source-map-support "^0.5.6" 2029 | throat "^4.0.0" 2030 | 2031 | jest-runtime@^23.0.1: 2032 | version "23.0.1" 2033 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-23.0.1.tgz#b1d765fb03fb6d4043805af270676a693f504d57" 2034 | dependencies: 2035 | babel-core "^6.0.0" 2036 | babel-plugin-istanbul "^4.1.6" 2037 | chalk "^2.0.1" 2038 | convert-source-map "^1.4.0" 2039 | exit "^0.1.2" 2040 | fast-json-stable-stringify "^2.0.0" 2041 | graceful-fs "^4.1.11" 2042 | jest-config "^23.0.1" 2043 | jest-haste-map "^23.0.1" 2044 | jest-message-util "^23.0.0" 2045 | jest-regex-util "^23.0.0" 2046 | jest-resolve "^23.0.1" 2047 | jest-snapshot "^23.0.1" 2048 | jest-util "^23.0.1" 2049 | jest-validate "^23.0.1" 2050 | micromatch "^2.3.11" 2051 | realpath-native "^1.0.0" 2052 | slash "^1.0.0" 2053 | strip-bom "3.0.0" 2054 | write-file-atomic "^2.1.0" 2055 | yargs "^11.0.0" 2056 | 2057 | jest-serializer@^23.0.1: 2058 | version "23.0.1" 2059 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-23.0.1.tgz#a3776aeb311e90fe83fab9e533e85102bd164165" 2060 | 2061 | jest-snapshot@^23.0.1: 2062 | version "23.0.1" 2063 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-23.0.1.tgz#6674fa19b9eb69a99cabecd415bddc42d6af3e7e" 2064 | dependencies: 2065 | chalk "^2.0.1" 2066 | jest-diff "^23.0.1" 2067 | jest-matcher-utils "^23.0.1" 2068 | mkdirp "^0.5.1" 2069 | natural-compare "^1.4.0" 2070 | pretty-format "^23.0.1" 2071 | 2072 | jest-util@^23.0.1: 2073 | version "23.0.1" 2074 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-23.0.1.tgz#68ea5bd7edb177d3059f9797259f8e0dacce2f99" 2075 | dependencies: 2076 | callsites "^2.0.0" 2077 | chalk "^2.0.1" 2078 | graceful-fs "^4.1.11" 2079 | is-ci "^1.0.10" 2080 | jest-message-util "^23.0.0" 2081 | mkdirp "^0.5.1" 2082 | source-map "^0.6.0" 2083 | 2084 | jest-validate@^23.0.1: 2085 | version "23.0.1" 2086 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.0.1.tgz#cd9f01a89d26bb885f12a8667715e9c865a5754f" 2087 | dependencies: 2088 | chalk "^2.0.1" 2089 | jest-get-type "^22.1.0" 2090 | leven "^2.1.0" 2091 | pretty-format "^23.0.1" 2092 | 2093 | jest-worker@^23.0.1: 2094 | version "23.0.1" 2095 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-23.0.1.tgz#9e649dd963ff4046026f91c4017f039a6aa4a7bc" 2096 | dependencies: 2097 | merge-stream "^1.0.1" 2098 | 2099 | jest@^23.0.1: 2100 | version "23.0.1" 2101 | resolved "https://registry.yarnpkg.com/jest/-/jest-23.0.1.tgz#0d083290ee4112cecfb780df6ff81332ed373201" 2102 | dependencies: 2103 | import-local "^1.0.0" 2104 | jest-cli "^23.0.1" 2105 | 2106 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2107 | version "3.0.2" 2108 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2109 | 2110 | js-yaml@^3.7.0: 2111 | version "3.13.1" 2112 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 2113 | dependencies: 2114 | argparse "^1.0.7" 2115 | esprima "^4.0.0" 2116 | 2117 | jsbn@~0.1.0: 2118 | version "0.1.1" 2119 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2120 | 2121 | jsdom@^11.5.1: 2122 | version "11.11.0" 2123 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.11.0.tgz#df486efad41aee96c59ad7a190e2449c7eb1110e" 2124 | dependencies: 2125 | abab "^1.0.4" 2126 | acorn "^5.3.0" 2127 | acorn-globals "^4.1.0" 2128 | array-equal "^1.0.0" 2129 | cssom ">= 0.3.2 < 0.4.0" 2130 | cssstyle ">= 0.3.1 < 0.4.0" 2131 | data-urls "^1.0.0" 2132 | domexception "^1.0.0" 2133 | escodegen "^1.9.0" 2134 | html-encoding-sniffer "^1.0.2" 2135 | left-pad "^1.2.0" 2136 | nwsapi "^2.0.0" 2137 | parse5 "4.0.0" 2138 | pn "^1.1.0" 2139 | request "^2.83.0" 2140 | request-promise-native "^1.0.5" 2141 | sax "^1.2.4" 2142 | symbol-tree "^3.2.2" 2143 | tough-cookie "^2.3.3" 2144 | w3c-hr-time "^1.0.1" 2145 | webidl-conversions "^4.0.2" 2146 | whatwg-encoding "^1.0.3" 2147 | whatwg-mimetype "^2.1.0" 2148 | whatwg-url "^6.4.1" 2149 | ws "^4.0.0" 2150 | xml-name-validator "^3.0.0" 2151 | 2152 | jsesc@^1.3.0: 2153 | version "1.3.0" 2154 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2155 | 2156 | jsesc@~0.5.0: 2157 | version "0.5.0" 2158 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2159 | 2160 | json-schema-traverse@^0.3.0: 2161 | version "0.3.1" 2162 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2163 | 2164 | json-schema@0.2.3: 2165 | version "0.2.3" 2166 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2167 | 2168 | json-stringify-safe@~5.0.1: 2169 | version "5.0.1" 2170 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2171 | 2172 | json5@^0.5.1: 2173 | version "0.5.1" 2174 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2175 | 2176 | jsprim@^1.2.2: 2177 | version "1.4.1" 2178 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2179 | dependencies: 2180 | assert-plus "1.0.0" 2181 | extsprintf "1.3.0" 2182 | json-schema "0.2.3" 2183 | verror "1.10.0" 2184 | 2185 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 2186 | version "3.2.2" 2187 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2188 | dependencies: 2189 | is-buffer "^1.1.5" 2190 | 2191 | kind-of@^4.0.0: 2192 | version "4.0.0" 2193 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2194 | dependencies: 2195 | is-buffer "^1.1.5" 2196 | 2197 | kind-of@^5.0.0: 2198 | version "5.1.0" 2199 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 2200 | 2201 | kind-of@^6.0.0, kind-of@^6.0.2: 2202 | version "6.0.2" 2203 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 2204 | 2205 | lcid@^1.0.0: 2206 | version "1.0.0" 2207 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2208 | dependencies: 2209 | invert-kv "^1.0.0" 2210 | 2211 | left-pad@^1.2.0: 2212 | version "1.3.0" 2213 | resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" 2214 | 2215 | leven@^2.1.0: 2216 | version "2.1.0" 2217 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2218 | 2219 | levn@~0.3.0: 2220 | version "0.3.0" 2221 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2222 | dependencies: 2223 | prelude-ls "~1.1.2" 2224 | type-check "~0.3.2" 2225 | 2226 | load-json-file@^1.0.0: 2227 | version "1.1.0" 2228 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2229 | dependencies: 2230 | graceful-fs "^4.1.2" 2231 | parse-json "^2.2.0" 2232 | pify "^2.0.0" 2233 | pinkie-promise "^2.0.0" 2234 | strip-bom "^2.0.0" 2235 | 2236 | locate-path@^2.0.0: 2237 | version "2.0.0" 2238 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2239 | dependencies: 2240 | p-locate "^2.0.0" 2241 | path-exists "^3.0.0" 2242 | 2243 | lodash.sortby@^4.7.0: 2244 | version "4.7.0" 2245 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 2246 | 2247 | lodash@^4.13.1, lodash@^4.17.10, lodash@^4.17.4: 2248 | version "4.17.21" 2249 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 2250 | 2251 | loose-envify@^1.0.0: 2252 | version "1.3.1" 2253 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2254 | dependencies: 2255 | js-tokens "^3.0.0" 2256 | 2257 | lru-cache@^4.0.1: 2258 | version "4.1.3" 2259 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.3.tgz#a1175cf3496dfc8436c156c334b4955992bce69c" 2260 | dependencies: 2261 | pseudomap "^1.0.2" 2262 | yallist "^2.1.2" 2263 | 2264 | magic-string@^0.22.4: 2265 | version "0.22.5" 2266 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.22.5.tgz#8e9cf5afddf44385c1da5bc2a6a0dbd10b03657e" 2267 | dependencies: 2268 | vlq "^0.2.2" 2269 | 2270 | makeerror@1.0.x: 2271 | version "1.0.11" 2272 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2273 | dependencies: 2274 | tmpl "1.0.x" 2275 | 2276 | map-cache@^0.2.2: 2277 | version "0.2.2" 2278 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 2279 | 2280 | map-visit@^1.0.0: 2281 | version "1.0.0" 2282 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 2283 | dependencies: 2284 | object-visit "^1.0.0" 2285 | 2286 | math-random@^1.0.1: 2287 | version "1.0.1" 2288 | resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac" 2289 | 2290 | mem@^1.1.0: 2291 | version "1.1.0" 2292 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2293 | dependencies: 2294 | mimic-fn "^1.0.0" 2295 | 2296 | merge-stream@^1.0.1: 2297 | version "1.0.1" 2298 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" 2299 | dependencies: 2300 | readable-stream "^2.0.1" 2301 | 2302 | merge@^1.1.3: 2303 | version "1.2.1" 2304 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145" 2305 | 2306 | micromatch@^2.3.11: 2307 | version "2.3.11" 2308 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2309 | dependencies: 2310 | arr-diff "^2.0.0" 2311 | array-unique "^0.2.1" 2312 | braces "^1.8.2" 2313 | expand-brackets "^0.1.4" 2314 | extglob "^0.3.1" 2315 | filename-regex "^2.0.0" 2316 | is-extglob "^1.0.0" 2317 | is-glob "^2.0.1" 2318 | kind-of "^3.0.2" 2319 | normalize-path "^2.0.1" 2320 | object.omit "^2.0.0" 2321 | parse-glob "^3.0.4" 2322 | regex-cache "^0.4.2" 2323 | 2324 | micromatch@^3.1.4, micromatch@^3.1.8: 2325 | version "3.1.10" 2326 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 2327 | dependencies: 2328 | arr-diff "^4.0.0" 2329 | array-unique "^0.3.2" 2330 | braces "^2.3.1" 2331 | define-property "^2.0.2" 2332 | extend-shallow "^3.0.2" 2333 | extglob "^2.0.4" 2334 | fragment-cache "^0.2.1" 2335 | kind-of "^6.0.2" 2336 | nanomatch "^1.2.9" 2337 | object.pick "^1.3.0" 2338 | regex-not "^1.0.0" 2339 | snapdragon "^0.8.1" 2340 | to-regex "^3.0.2" 2341 | 2342 | mime-db@~1.33.0: 2343 | version "1.33.0" 2344 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.33.0.tgz#a3492050a5cb9b63450541e39d9788d2272783db" 2345 | 2346 | mime-types@^2.1.12, mime-types@~2.1.17: 2347 | version "2.1.18" 2348 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.18.tgz#6f323f60a83d11146f831ff11fd66e2fe5503bb8" 2349 | dependencies: 2350 | mime-db "~1.33.0" 2351 | 2352 | mimic-fn@^1.0.0: 2353 | version "1.2.0" 2354 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 2355 | 2356 | minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2357 | version "3.0.4" 2358 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2359 | dependencies: 2360 | brace-expansion "^1.1.7" 2361 | 2362 | minimist@0.0.8: 2363 | version "0.0.8" 2364 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2365 | 2366 | minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5: 2367 | version "1.2.5" 2368 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 2369 | 2370 | minipass@^2.2.1, minipass@^2.3.3: 2371 | version "2.3.3" 2372 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.3.tgz#a7dcc8b7b833f5d368759cce544dccb55f50f233" 2373 | dependencies: 2374 | safe-buffer "^5.1.2" 2375 | yallist "^3.0.0" 2376 | 2377 | minizlib@^1.1.0: 2378 | version "1.1.0" 2379 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb" 2380 | dependencies: 2381 | minipass "^2.2.1" 2382 | 2383 | mixin-deep@^1.2.0: 2384 | version "1.3.2" 2385 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" 2386 | dependencies: 2387 | for-in "^1.0.2" 2388 | is-extendable "^1.0.1" 2389 | 2390 | mkdirp@^0.5.0, mkdirp@^0.5.1: 2391 | version "0.5.1" 2392 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2393 | dependencies: 2394 | minimist "0.0.8" 2395 | 2396 | ms@2.0.0: 2397 | version "2.0.0" 2398 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2399 | 2400 | nan@^2.9.2: 2401 | version "2.10.0" 2402 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f" 2403 | 2404 | nanomatch@^1.2.9: 2405 | version "1.2.9" 2406 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2" 2407 | dependencies: 2408 | arr-diff "^4.0.0" 2409 | array-unique "^0.3.2" 2410 | define-property "^2.0.2" 2411 | extend-shallow "^3.0.2" 2412 | fragment-cache "^0.2.1" 2413 | is-odd "^2.0.0" 2414 | is-windows "^1.0.2" 2415 | kind-of "^6.0.2" 2416 | object.pick "^1.3.0" 2417 | regex-not "^1.0.0" 2418 | snapdragon "^0.8.1" 2419 | to-regex "^3.0.1" 2420 | 2421 | natural-compare@^1.4.0: 2422 | version "1.4.0" 2423 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2424 | 2425 | needle@^2.2.0: 2426 | version "2.2.1" 2427 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.1.tgz#b5e325bd3aae8c2678902fa296f729455d1d3a7d" 2428 | dependencies: 2429 | debug "^2.1.2" 2430 | iconv-lite "^0.4.4" 2431 | sax "^1.2.4" 2432 | 2433 | neo-async@^2.6.0: 2434 | version "2.6.2" 2435 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" 2436 | 2437 | node-int64@^0.4.0: 2438 | version "0.4.0" 2439 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2440 | 2441 | node-notifier@^5.2.1: 2442 | version "5.2.1" 2443 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.2.1.tgz#fa313dd08f5517db0e2502e5758d664ac69f9dea" 2444 | dependencies: 2445 | growly "^1.3.0" 2446 | semver "^5.4.1" 2447 | shellwords "^0.1.1" 2448 | which "^1.3.0" 2449 | 2450 | node-pre-gyp@^0.10.0: 2451 | version "0.10.0" 2452 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.0.tgz#6e4ef5bb5c5203c6552448828c852c40111aac46" 2453 | dependencies: 2454 | detect-libc "^1.0.2" 2455 | mkdirp "^0.5.1" 2456 | needle "^2.2.0" 2457 | nopt "^4.0.1" 2458 | npm-packlist "^1.1.6" 2459 | npmlog "^4.0.2" 2460 | rc "^1.1.7" 2461 | rimraf "^2.6.1" 2462 | semver "^5.3.0" 2463 | tar "^4" 2464 | 2465 | nopt@^4.0.1: 2466 | version "4.0.1" 2467 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2468 | dependencies: 2469 | abbrev "1" 2470 | osenv "^0.1.4" 2471 | 2472 | normalize-package-data@^2.3.2: 2473 | version "2.4.0" 2474 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 2475 | dependencies: 2476 | hosted-git-info "^2.1.4" 2477 | is-builtin-module "^1.0.0" 2478 | semver "2 || 3 || 4 || 5" 2479 | validate-npm-package-license "^3.0.1" 2480 | 2481 | normalize-path@^2.0.1, normalize-path@^2.1.1: 2482 | version "2.1.1" 2483 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2484 | dependencies: 2485 | remove-trailing-separator "^1.0.1" 2486 | 2487 | npm-bundled@^1.0.1: 2488 | version "1.0.3" 2489 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.3.tgz#7e71703d973af3370a9591bafe3a63aca0be2308" 2490 | 2491 | npm-packlist@^1.1.6: 2492 | version "1.1.10" 2493 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.10.tgz#1039db9e985727e464df066f4cf0ab6ef85c398a" 2494 | dependencies: 2495 | ignore-walk "^3.0.1" 2496 | npm-bundled "^1.0.1" 2497 | 2498 | npm-run-path@^2.0.0: 2499 | version "2.0.2" 2500 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 2501 | dependencies: 2502 | path-key "^2.0.0" 2503 | 2504 | npmlog@^4.0.2: 2505 | version "4.1.2" 2506 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2507 | dependencies: 2508 | are-we-there-yet "~1.1.2" 2509 | console-control-strings "~1.1.0" 2510 | gauge "~2.7.3" 2511 | set-blocking "~2.0.0" 2512 | 2513 | number-is-nan@^1.0.0: 2514 | version "1.0.1" 2515 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2516 | 2517 | nwsapi@^2.0.0: 2518 | version "2.0.0" 2519 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.0.0.tgz#7c8faf4ad501e1d17a651ebc5547f966b547c5c7" 2520 | 2521 | oauth-sign@~0.8.2: 2522 | version "0.8.2" 2523 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2524 | 2525 | object-assign@^4.1.0: 2526 | version "4.1.1" 2527 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2528 | 2529 | object-copy@^0.1.0: 2530 | version "0.1.0" 2531 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 2532 | dependencies: 2533 | copy-descriptor "^0.1.0" 2534 | define-property "^0.2.5" 2535 | kind-of "^3.0.3" 2536 | 2537 | object-keys@^1.0.8: 2538 | version "1.0.11" 2539 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2540 | 2541 | object-visit@^1.0.0: 2542 | version "1.0.1" 2543 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 2544 | dependencies: 2545 | isobject "^3.0.0" 2546 | 2547 | object.getownpropertydescriptors@^2.0.3: 2548 | version "2.0.3" 2549 | resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" 2550 | dependencies: 2551 | define-properties "^1.1.2" 2552 | es-abstract "^1.5.1" 2553 | 2554 | object.omit@^2.0.0: 2555 | version "2.0.1" 2556 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2557 | dependencies: 2558 | for-own "^0.1.4" 2559 | is-extendable "^0.1.1" 2560 | 2561 | object.pick@^1.3.0: 2562 | version "1.3.0" 2563 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 2564 | dependencies: 2565 | isobject "^3.0.1" 2566 | 2567 | once@^1.3.0, once@^1.4.0: 2568 | version "1.4.0" 2569 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2570 | dependencies: 2571 | wrappy "1" 2572 | 2573 | optionator@^0.8.1: 2574 | version "0.8.2" 2575 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2576 | dependencies: 2577 | deep-is "~0.1.3" 2578 | fast-levenshtein "~2.0.4" 2579 | levn "~0.3.0" 2580 | prelude-ls "~1.1.2" 2581 | type-check "~0.3.2" 2582 | wordwrap "~1.0.0" 2583 | 2584 | os-homedir@^1.0.0: 2585 | version "1.0.2" 2586 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2587 | 2588 | os-locale@^2.0.0: 2589 | version "2.1.0" 2590 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 2591 | dependencies: 2592 | execa "^0.7.0" 2593 | lcid "^1.0.0" 2594 | mem "^1.1.0" 2595 | 2596 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2597 | version "1.0.2" 2598 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2599 | 2600 | osenv@^0.1.4: 2601 | version "0.1.5" 2602 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 2603 | dependencies: 2604 | os-homedir "^1.0.0" 2605 | os-tmpdir "^1.0.0" 2606 | 2607 | p-finally@^1.0.0: 2608 | version "1.0.0" 2609 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 2610 | 2611 | p-limit@^1.1.0: 2612 | version "1.2.0" 2613 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c" 2614 | dependencies: 2615 | p-try "^1.0.0" 2616 | 2617 | p-locate@^2.0.0: 2618 | version "2.0.0" 2619 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 2620 | dependencies: 2621 | p-limit "^1.1.0" 2622 | 2623 | p-try@^1.0.0: 2624 | version "1.0.0" 2625 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 2626 | 2627 | parse-glob@^3.0.4: 2628 | version "3.0.4" 2629 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2630 | dependencies: 2631 | glob-base "^0.3.0" 2632 | is-dotfile "^1.0.0" 2633 | is-extglob "^1.0.0" 2634 | is-glob "^2.0.0" 2635 | 2636 | parse-json@^2.2.0: 2637 | version "2.2.0" 2638 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2639 | dependencies: 2640 | error-ex "^1.2.0" 2641 | 2642 | parse5@4.0.0: 2643 | version "4.0.0" 2644 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" 2645 | 2646 | pascalcase@^0.1.1: 2647 | version "0.1.1" 2648 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 2649 | 2650 | path-exists@^2.0.0: 2651 | version "2.1.0" 2652 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2653 | dependencies: 2654 | pinkie-promise "^2.0.0" 2655 | 2656 | path-exists@^3.0.0: 2657 | version "3.0.0" 2658 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 2659 | 2660 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2661 | version "1.0.1" 2662 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2663 | 2664 | path-key@^2.0.0: 2665 | version "2.0.1" 2666 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 2667 | 2668 | path-parse@^1.0.5: 2669 | version "1.0.5" 2670 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 2671 | 2672 | path-type@^1.0.0: 2673 | version "1.1.0" 2674 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2675 | dependencies: 2676 | graceful-fs "^4.1.2" 2677 | pify "^2.0.0" 2678 | pinkie-promise "^2.0.0" 2679 | 2680 | performance-now@^2.1.0: 2681 | version "2.1.0" 2682 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 2683 | 2684 | pify@^2.0.0: 2685 | version "2.3.0" 2686 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2687 | 2688 | pinkie-promise@^2.0.0: 2689 | version "2.0.1" 2690 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2691 | dependencies: 2692 | pinkie "^2.0.0" 2693 | 2694 | pinkie@^2.0.0: 2695 | version "2.0.4" 2696 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2697 | 2698 | pkg-dir@^2.0.0: 2699 | version "2.0.0" 2700 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 2701 | dependencies: 2702 | find-up "^2.1.0" 2703 | 2704 | pn@^1.1.0: 2705 | version "1.1.0" 2706 | resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" 2707 | 2708 | posix-character-classes@^0.1.0: 2709 | version "0.1.1" 2710 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 2711 | 2712 | prelude-ls@~1.1.2: 2713 | version "1.1.2" 2714 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2715 | 2716 | preserve@^0.2.0: 2717 | version "0.2.0" 2718 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2719 | 2720 | pretty-format@^23.0.1: 2721 | version "23.0.1" 2722 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.0.1.tgz#d61d065268e4c759083bccbca27a01ad7c7601f4" 2723 | dependencies: 2724 | ansi-regex "^3.0.0" 2725 | ansi-styles "^3.2.0" 2726 | 2727 | private@^0.1.6, private@^0.1.8: 2728 | version "0.1.8" 2729 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2730 | 2731 | process-nextick-args@~2.0.0: 2732 | version "2.0.0" 2733 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 2734 | 2735 | pseudomap@^1.0.2: 2736 | version "1.0.2" 2737 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 2738 | 2739 | punycode@^1.4.1: 2740 | version "1.4.1" 2741 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2742 | 2743 | punycode@^2.1.0: 2744 | version "2.1.1" 2745 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2746 | 2747 | qs@~6.5.1: 2748 | version "6.5.2" 2749 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 2750 | 2751 | randomatic@^3.0.0: 2752 | version "3.0.0" 2753 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.0.0.tgz#d35490030eb4f7578de292ce6dfb04a91a128923" 2754 | dependencies: 2755 | is-number "^4.0.0" 2756 | kind-of "^6.0.0" 2757 | math-random "^1.0.1" 2758 | 2759 | rc@^1.1.7: 2760 | version "1.2.7" 2761 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.7.tgz#8a10ca30d588d00464360372b890d06dacd02297" 2762 | dependencies: 2763 | deep-extend "^0.5.1" 2764 | ini "~1.3.0" 2765 | minimist "^1.2.0" 2766 | strip-json-comments "~2.0.1" 2767 | 2768 | read-pkg-up@^1.0.1: 2769 | version "1.0.1" 2770 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2771 | dependencies: 2772 | find-up "^1.0.0" 2773 | read-pkg "^1.0.0" 2774 | 2775 | read-pkg@^1.0.0: 2776 | version "1.1.0" 2777 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2778 | dependencies: 2779 | load-json-file "^1.0.0" 2780 | normalize-package-data "^2.3.2" 2781 | path-type "^1.0.0" 2782 | 2783 | readable-stream@^2.0.1, readable-stream@^2.0.6: 2784 | version "2.3.6" 2785 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 2786 | dependencies: 2787 | core-util-is "~1.0.0" 2788 | inherits "~2.0.3" 2789 | isarray "~1.0.0" 2790 | process-nextick-args "~2.0.0" 2791 | safe-buffer "~5.1.1" 2792 | string_decoder "~1.1.1" 2793 | util-deprecate "~1.0.1" 2794 | 2795 | realpath-native@^1.0.0: 2796 | version "1.0.0" 2797 | resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.0.tgz#7885721a83b43bd5327609f0ddecb2482305fdf0" 2798 | dependencies: 2799 | util.promisify "^1.0.0" 2800 | 2801 | regenerate@^1.2.1: 2802 | version "1.4.0" 2803 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" 2804 | 2805 | regenerator-runtime@^0.11.0: 2806 | version "0.11.1" 2807 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2808 | 2809 | regenerator-transform@^0.10.0: 2810 | version "0.10.1" 2811 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2812 | dependencies: 2813 | babel-runtime "^6.18.0" 2814 | babel-types "^6.19.0" 2815 | private "^0.1.6" 2816 | 2817 | regex-cache@^0.4.2: 2818 | version "0.4.4" 2819 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2820 | dependencies: 2821 | is-equal-shallow "^0.1.3" 2822 | 2823 | regex-not@^1.0.0, regex-not@^1.0.2: 2824 | version "1.0.2" 2825 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 2826 | dependencies: 2827 | extend-shallow "^3.0.2" 2828 | safe-regex "^1.1.0" 2829 | 2830 | regexpu-core@^2.0.0: 2831 | version "2.0.0" 2832 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2833 | dependencies: 2834 | regenerate "^1.2.1" 2835 | regjsgen "^0.2.0" 2836 | regjsparser "^0.1.4" 2837 | 2838 | regjsgen@^0.2.0: 2839 | version "0.2.0" 2840 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2841 | 2842 | regjsparser@^0.1.4: 2843 | version "0.1.5" 2844 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2845 | dependencies: 2846 | jsesc "~0.5.0" 2847 | 2848 | remove-trailing-separator@^1.0.1: 2849 | version "1.1.0" 2850 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2851 | 2852 | repeat-element@^1.1.2: 2853 | version "1.1.2" 2854 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2855 | 2856 | repeat-string@^1.5.2, repeat-string@^1.6.1: 2857 | version "1.6.1" 2858 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2859 | 2860 | repeating@^2.0.0: 2861 | version "2.0.1" 2862 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2863 | dependencies: 2864 | is-finite "^1.0.0" 2865 | 2866 | request-promise-core@1.1.1: 2867 | version "1.1.1" 2868 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 2869 | dependencies: 2870 | lodash "^4.13.1" 2871 | 2872 | request-promise-native@^1.0.5: 2873 | version "1.0.5" 2874 | resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5" 2875 | dependencies: 2876 | request-promise-core "1.1.1" 2877 | stealthy-require "^1.1.0" 2878 | tough-cookie ">=2.3.3" 2879 | 2880 | request@^2.83.0: 2881 | version "2.87.0" 2882 | resolved "https://registry.yarnpkg.com/request/-/request-2.87.0.tgz#32f00235cd08d482b4d0d68db93a829c0ed5756e" 2883 | dependencies: 2884 | aws-sign2 "~0.7.0" 2885 | aws4 "^1.6.0" 2886 | caseless "~0.12.0" 2887 | combined-stream "~1.0.5" 2888 | extend "~3.0.1" 2889 | forever-agent "~0.6.1" 2890 | form-data "~2.3.1" 2891 | har-validator "~5.0.3" 2892 | http-signature "~1.2.0" 2893 | is-typedarray "~1.0.0" 2894 | isstream "~0.1.2" 2895 | json-stringify-safe "~5.0.1" 2896 | mime-types "~2.1.17" 2897 | oauth-sign "~0.8.2" 2898 | performance-now "^2.1.0" 2899 | qs "~6.5.1" 2900 | safe-buffer "^5.1.1" 2901 | tough-cookie "~2.3.3" 2902 | tunnel-agent "^0.6.0" 2903 | uuid "^3.1.0" 2904 | 2905 | require-directory@^2.1.1: 2906 | version "2.1.1" 2907 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2908 | 2909 | require-main-filename@^1.0.1: 2910 | version "1.0.1" 2911 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2912 | 2913 | resolve-cwd@^2.0.0: 2914 | version "2.0.0" 2915 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 2916 | dependencies: 2917 | resolve-from "^3.0.0" 2918 | 2919 | resolve-from@^3.0.0: 2920 | version "3.0.0" 2921 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" 2922 | 2923 | resolve-url@^0.2.1: 2924 | version "0.2.1" 2925 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 2926 | 2927 | resolve@1.1.7: 2928 | version "1.1.7" 2929 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 2930 | 2931 | resolve@^1.1.6, resolve@^1.5.0: 2932 | version "1.7.1" 2933 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.7.1.tgz#aadd656374fd298aee895bc026b8297418677fd3" 2934 | dependencies: 2935 | path-parse "^1.0.5" 2936 | 2937 | ret@~0.1.10: 2938 | version "0.1.15" 2939 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 2940 | 2941 | rimraf@^2.5.4, rimraf@^2.6.1: 2942 | version "2.6.2" 2943 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2944 | dependencies: 2945 | glob "^7.0.5" 2946 | 2947 | rollup-plugin-babel@^3.0.4: 2948 | version "3.0.4" 2949 | resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-3.0.4.tgz#41b3e762fe64450dd61da3105a2cf7ad76be4edc" 2950 | dependencies: 2951 | rollup-pluginutils "^1.5.0" 2952 | 2953 | rollup-plugin-commonjs@^9.1.3: 2954 | version "9.1.3" 2955 | resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-9.1.3.tgz#37bfbf341292ea14f512438a56df8f9ca3ba4d67" 2956 | dependencies: 2957 | estree-walker "^0.5.1" 2958 | magic-string "^0.22.4" 2959 | resolve "^1.5.0" 2960 | rollup-pluginutils "^2.0.1" 2961 | 2962 | rollup-plugin-node-resolve@^3.3.0: 2963 | version "3.3.0" 2964 | resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-3.3.0.tgz#c26d110a36812cbefa7ce117cadcd3439aa1c713" 2965 | dependencies: 2966 | builtin-modules "^2.0.0" 2967 | is-module "^1.0.0" 2968 | resolve "^1.1.6" 2969 | 2970 | rollup-plugin-terser@^1.0.1: 2971 | version "1.0.1" 2972 | resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-1.0.1.tgz#ba5f497cbc9aa38ba19d3ee2167c04ea3ed279af" 2973 | dependencies: 2974 | "@babel/code-frame" "^7.0.0-beta.47" 2975 | terser "^3.7.5" 2976 | 2977 | rollup-plugin-uglify-es@^0.0.1: 2978 | version "0.0.1" 2979 | resolved "https://registry.yarnpkg.com/rollup-plugin-uglify-es/-/rollup-plugin-uglify-es-0.0.1.tgz#e45644f2b685a59abdb9363407207a03a7b5a9b7" 2980 | dependencies: 2981 | uglify-es "3.0.3" 2982 | 2983 | rollup-pluginutils@^1.5.0: 2984 | version "1.5.2" 2985 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408" 2986 | dependencies: 2987 | estree-walker "^0.2.1" 2988 | minimatch "^3.0.2" 2989 | 2990 | rollup-pluginutils@^2.0.1: 2991 | version "2.3.0" 2992 | resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.3.0.tgz#478ace04bd7f6da2e724356ca798214884738fc4" 2993 | dependencies: 2994 | estree-walker "^0.5.2" 2995 | micromatch "^2.3.11" 2996 | 2997 | rollup@^0.59.4: 2998 | version "0.59.4" 2999 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.59.4.tgz#6f80f7017c22667ff1bf3e62adf8624a44cc44aa" 3000 | dependencies: 3001 | "@types/estree" "0.0.39" 3002 | "@types/node" "*" 3003 | 3004 | rsvp@^3.3.3: 3005 | version "3.6.2" 3006 | resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a" 3007 | 3008 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3009 | version "5.1.2" 3010 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 3011 | 3012 | safe-regex@^1.1.0: 3013 | version "1.1.0" 3014 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 3015 | dependencies: 3016 | ret "~0.1.10" 3017 | 3018 | "safer-buffer@>= 2.1.2 < 3": 3019 | version "2.1.2" 3020 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 3021 | 3022 | sane@^2.0.0: 3023 | version "2.5.2" 3024 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.5.2.tgz#b4dc1861c21b427e929507a3e751e2a2cb8ab3fa" 3025 | dependencies: 3026 | anymatch "^2.0.0" 3027 | capture-exit "^1.2.0" 3028 | exec-sh "^0.2.0" 3029 | fb-watchman "^2.0.0" 3030 | micromatch "^3.1.4" 3031 | minimist "^1.1.1" 3032 | walker "~1.0.5" 3033 | watch "~0.18.0" 3034 | optionalDependencies: 3035 | fsevents "^1.2.3" 3036 | 3037 | sax@^1.2.4: 3038 | version "1.2.4" 3039 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3040 | 3041 | "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1: 3042 | version "5.5.0" 3043 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" 3044 | 3045 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3046 | version "2.0.0" 3047 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3048 | 3049 | set-value@^0.4.3: 3050 | version "0.4.3" 3051 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 3052 | dependencies: 3053 | extend-shallow "^2.0.1" 3054 | is-extendable "^0.1.1" 3055 | is-plain-object "^2.0.1" 3056 | to-object-path "^0.3.0" 3057 | 3058 | set-value@^2.0.0: 3059 | version "2.0.0" 3060 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 3061 | dependencies: 3062 | extend-shallow "^2.0.1" 3063 | is-extendable "^0.1.1" 3064 | is-plain-object "^2.0.3" 3065 | split-string "^3.0.1" 3066 | 3067 | shebang-command@^1.2.0: 3068 | version "1.2.0" 3069 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3070 | dependencies: 3071 | shebang-regex "^1.0.0" 3072 | 3073 | shebang-regex@^1.0.0: 3074 | version "1.0.0" 3075 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3076 | 3077 | shellwords@^0.1.1: 3078 | version "0.1.1" 3079 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3080 | 3081 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3082 | version "3.0.2" 3083 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3084 | 3085 | slash@^1.0.0: 3086 | version "1.0.0" 3087 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3088 | 3089 | snapdragon-node@^2.0.1: 3090 | version "2.1.1" 3091 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 3092 | dependencies: 3093 | define-property "^1.0.0" 3094 | isobject "^3.0.0" 3095 | snapdragon-util "^3.0.1" 3096 | 3097 | snapdragon-util@^3.0.1: 3098 | version "3.0.1" 3099 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 3100 | dependencies: 3101 | kind-of "^3.2.0" 3102 | 3103 | snapdragon@^0.8.1: 3104 | version "0.8.2" 3105 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 3106 | dependencies: 3107 | base "^0.11.1" 3108 | debug "^2.2.0" 3109 | define-property "^0.2.5" 3110 | extend-shallow "^2.0.1" 3111 | map-cache "^0.2.2" 3112 | source-map "^0.5.6" 3113 | source-map-resolve "^0.5.0" 3114 | use "^3.1.0" 3115 | 3116 | source-map-resolve@^0.5.0: 3117 | version "0.5.2" 3118 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 3119 | dependencies: 3120 | atob "^2.1.1" 3121 | decode-uri-component "^0.2.0" 3122 | resolve-url "^0.2.1" 3123 | source-map-url "^0.4.0" 3124 | urix "^0.1.0" 3125 | 3126 | source-map-support@^0.4.15: 3127 | version "0.4.18" 3128 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3129 | dependencies: 3130 | source-map "^0.5.6" 3131 | 3132 | source-map-support@^0.5.6: 3133 | version "0.5.6" 3134 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.6.tgz#4435cee46b1aab62b8e8610ce60f788091c51c13" 3135 | dependencies: 3136 | buffer-from "^1.0.0" 3137 | source-map "^0.6.0" 3138 | 3139 | source-map-url@^0.4.0: 3140 | version "0.4.0" 3141 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 3142 | 3143 | source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1: 3144 | version "0.5.7" 3145 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3146 | 3147 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 3148 | version "0.6.1" 3149 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3150 | 3151 | spdx-correct@^3.0.0: 3152 | version "3.0.0" 3153 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82" 3154 | dependencies: 3155 | spdx-expression-parse "^3.0.0" 3156 | spdx-license-ids "^3.0.0" 3157 | 3158 | spdx-exceptions@^2.1.0: 3159 | version "2.1.0" 3160 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9" 3161 | 3162 | spdx-expression-parse@^3.0.0: 3163 | version "3.0.0" 3164 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" 3165 | dependencies: 3166 | spdx-exceptions "^2.1.0" 3167 | spdx-license-ids "^3.0.0" 3168 | 3169 | spdx-license-ids@^3.0.0: 3170 | version "3.0.0" 3171 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87" 3172 | 3173 | split-string@^3.0.1, split-string@^3.0.2: 3174 | version "3.1.0" 3175 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 3176 | dependencies: 3177 | extend-shallow "^3.0.0" 3178 | 3179 | sprintf-js@~1.0.2: 3180 | version "1.0.3" 3181 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3182 | 3183 | sshpk@^1.7.0: 3184 | version "1.14.1" 3185 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.14.1.tgz#130f5975eddad963f1d56f92b9ac6c51fa9f83eb" 3186 | dependencies: 3187 | asn1 "~0.2.3" 3188 | assert-plus "^1.0.0" 3189 | dashdash "^1.12.0" 3190 | getpass "^0.1.1" 3191 | optionalDependencies: 3192 | bcrypt-pbkdf "^1.0.0" 3193 | ecc-jsbn "~0.1.1" 3194 | jsbn "~0.1.0" 3195 | tweetnacl "~0.14.0" 3196 | 3197 | stack-utils@^1.0.1: 3198 | version "1.0.1" 3199 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.1.tgz#d4f33ab54e8e38778b0ca5cfd3b3afb12db68620" 3200 | 3201 | static-extend@^0.1.1: 3202 | version "0.1.2" 3203 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 3204 | dependencies: 3205 | define-property "^0.2.5" 3206 | object-copy "^0.1.0" 3207 | 3208 | stealthy-require@^1.1.0: 3209 | version "1.1.1" 3210 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 3211 | 3212 | string-length@^2.0.0: 3213 | version "2.0.0" 3214 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 3215 | dependencies: 3216 | astral-regex "^1.0.0" 3217 | strip-ansi "^4.0.0" 3218 | 3219 | string-width@^1.0.1: 3220 | version "1.0.2" 3221 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3222 | dependencies: 3223 | code-point-at "^1.0.0" 3224 | is-fullwidth-code-point "^1.0.0" 3225 | strip-ansi "^3.0.0" 3226 | 3227 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: 3228 | version "2.1.1" 3229 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3230 | dependencies: 3231 | is-fullwidth-code-point "^2.0.0" 3232 | strip-ansi "^4.0.0" 3233 | 3234 | string_decoder@~1.1.1: 3235 | version "1.1.1" 3236 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 3237 | dependencies: 3238 | safe-buffer "~5.1.0" 3239 | 3240 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3241 | version "3.0.1" 3242 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3243 | dependencies: 3244 | ansi-regex "^2.0.0" 3245 | 3246 | strip-ansi@^4.0.0: 3247 | version "4.0.0" 3248 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3249 | dependencies: 3250 | ansi-regex "^3.0.0" 3251 | 3252 | strip-bom@3.0.0: 3253 | version "3.0.0" 3254 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3255 | 3256 | strip-bom@^2.0.0: 3257 | version "2.0.0" 3258 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3259 | dependencies: 3260 | is-utf8 "^0.2.0" 3261 | 3262 | strip-eof@^1.0.0: 3263 | version "1.0.0" 3264 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3265 | 3266 | strip-json-comments@~2.0.1: 3267 | version "2.0.1" 3268 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3269 | 3270 | supports-color@^2.0.0: 3271 | version "2.0.0" 3272 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3273 | 3274 | supports-color@^3.1.2: 3275 | version "3.2.3" 3276 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3277 | dependencies: 3278 | has-flag "^1.0.0" 3279 | 3280 | supports-color@^5.3.0: 3281 | version "5.4.0" 3282 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 3283 | dependencies: 3284 | has-flag "^3.0.0" 3285 | 3286 | symbol-tree@^3.2.2: 3287 | version "3.2.2" 3288 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3289 | 3290 | tar@^4: 3291 | version "4.4.4" 3292 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.4.tgz#ec8409fae9f665a4355cc3b4087d0820232bb8cd" 3293 | dependencies: 3294 | chownr "^1.0.1" 3295 | fs-minipass "^1.2.5" 3296 | minipass "^2.3.3" 3297 | minizlib "^1.1.0" 3298 | mkdirp "^0.5.0" 3299 | safe-buffer "^5.1.2" 3300 | yallist "^3.0.2" 3301 | 3302 | terser@^3.7.5: 3303 | version "3.7.5" 3304 | resolved "https://registry.yarnpkg.com/terser/-/terser-3.7.5.tgz#b18090210794c79a5774bc1f0ebe80fb877a31bd" 3305 | dependencies: 3306 | commander "~2.14.1" 3307 | source-map "~0.6.1" 3308 | 3309 | test-exclude@^4.2.1: 3310 | version "4.2.1" 3311 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.1.tgz#dfa222f03480bca69207ca728b37d74b45f724fa" 3312 | dependencies: 3313 | arrify "^1.0.1" 3314 | micromatch "^3.1.8" 3315 | object-assign "^4.1.0" 3316 | read-pkg-up "^1.0.1" 3317 | require-main-filename "^1.0.1" 3318 | 3319 | throat@^4.0.0: 3320 | version "4.1.0" 3321 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3322 | 3323 | tmpl@1.0.x: 3324 | version "1.0.4" 3325 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3326 | 3327 | to-fast-properties@^1.0.3: 3328 | version "1.0.3" 3329 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3330 | 3331 | to-object-path@^0.3.0: 3332 | version "0.3.0" 3333 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 3334 | dependencies: 3335 | kind-of "^3.0.2" 3336 | 3337 | to-regex-range@^2.1.0: 3338 | version "2.1.1" 3339 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 3340 | dependencies: 3341 | is-number "^3.0.0" 3342 | repeat-string "^1.6.1" 3343 | 3344 | to-regex@^3.0.1, to-regex@^3.0.2: 3345 | version "3.0.2" 3346 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 3347 | dependencies: 3348 | define-property "^2.0.2" 3349 | extend-shallow "^3.0.2" 3350 | regex-not "^1.0.2" 3351 | safe-regex "^1.1.0" 3352 | 3353 | tough-cookie@>=2.3.3, tough-cookie@^2.3.3, tough-cookie@~2.3.3: 3354 | version "2.3.4" 3355 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655" 3356 | dependencies: 3357 | punycode "^1.4.1" 3358 | 3359 | tr46@^1.0.1: 3360 | version "1.0.1" 3361 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 3362 | dependencies: 3363 | punycode "^2.1.0" 3364 | 3365 | trim-right@^1.0.1: 3366 | version "1.0.1" 3367 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3368 | 3369 | tunnel-agent@^0.6.0: 3370 | version "0.6.0" 3371 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3372 | dependencies: 3373 | safe-buffer "^5.0.1" 3374 | 3375 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3376 | version "0.14.5" 3377 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3378 | 3379 | type-check@~0.3.2: 3380 | version "0.3.2" 3381 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3382 | dependencies: 3383 | prelude-ls "~1.1.2" 3384 | 3385 | uglify-es@3.0.3: 3386 | version "3.0.3" 3387 | resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.0.3.tgz#63cc84aa9468b34973a4887787c64c01a8a87576" 3388 | dependencies: 3389 | commander "~2.9.0" 3390 | source-map "~0.5.1" 3391 | optionalDependencies: 3392 | uglify-to-browserify "~1.0.0" 3393 | 3394 | uglify-js@^3.1.4: 3395 | version "3.13.5" 3396 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.5.tgz#5d71d6dbba64cf441f32929b1efce7365bb4f113" 3397 | 3398 | uglify-to-browserify@~1.0.0: 3399 | version "1.0.2" 3400 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3401 | 3402 | union-value@^1.0.0: 3403 | version "1.0.0" 3404 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 3405 | dependencies: 3406 | arr-union "^3.1.0" 3407 | get-value "^2.0.6" 3408 | is-extendable "^0.1.1" 3409 | set-value "^0.4.3" 3410 | 3411 | unset-value@^1.0.0: 3412 | version "1.0.0" 3413 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 3414 | dependencies: 3415 | has-value "^0.3.1" 3416 | isobject "^3.0.0" 3417 | 3418 | urix@^0.1.0: 3419 | version "0.1.0" 3420 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 3421 | 3422 | use@^3.1.0: 3423 | version "3.1.0" 3424 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.0.tgz#14716bf03fdfefd03040aef58d8b4b85f3a7c544" 3425 | dependencies: 3426 | kind-of "^6.0.2" 3427 | 3428 | util-deprecate@~1.0.1: 3429 | version "1.0.2" 3430 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3431 | 3432 | util.promisify@^1.0.0: 3433 | version "1.0.0" 3434 | resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" 3435 | dependencies: 3436 | define-properties "^1.1.2" 3437 | object.getownpropertydescriptors "^2.0.3" 3438 | 3439 | uuid@^3.1.0: 3440 | version "3.2.1" 3441 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14" 3442 | 3443 | validate-npm-package-license@^3.0.1: 3444 | version "3.0.3" 3445 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338" 3446 | dependencies: 3447 | spdx-correct "^3.0.0" 3448 | spdx-expression-parse "^3.0.0" 3449 | 3450 | verror@1.10.0: 3451 | version "1.10.0" 3452 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 3453 | dependencies: 3454 | assert-plus "^1.0.0" 3455 | core-util-is "1.0.2" 3456 | extsprintf "^1.2.0" 3457 | 3458 | vlq@^0.2.2: 3459 | version "0.2.3" 3460 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26" 3461 | 3462 | w3c-hr-time@^1.0.1: 3463 | version "1.0.1" 3464 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" 3465 | dependencies: 3466 | browser-process-hrtime "^0.1.2" 3467 | 3468 | walker@~1.0.5: 3469 | version "1.0.7" 3470 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 3471 | dependencies: 3472 | makeerror "1.0.x" 3473 | 3474 | watch@~0.18.0: 3475 | version "0.18.0" 3476 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 3477 | dependencies: 3478 | exec-sh "^0.2.0" 3479 | minimist "^1.2.0" 3480 | 3481 | webidl-conversions@^4.0.2: 3482 | version "4.0.2" 3483 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 3484 | 3485 | whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: 3486 | version "1.0.3" 3487 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz#57c235bc8657e914d24e1a397d3c82daee0a6ba3" 3488 | dependencies: 3489 | iconv-lite "0.4.19" 3490 | 3491 | whatwg-mimetype@^2.0.0, whatwg-mimetype@^2.1.0: 3492 | version "2.1.0" 3493 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.1.0.tgz#f0f21d76cbba72362eb609dbed2a30cd17fcc7d4" 3494 | 3495 | whatwg-url@^6.4.0, whatwg-url@^6.4.1: 3496 | version "6.4.1" 3497 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.4.1.tgz#fdb94b440fd4ad836202c16e9737d511f012fd67" 3498 | dependencies: 3499 | lodash.sortby "^4.7.0" 3500 | tr46 "^1.0.1" 3501 | webidl-conversions "^4.0.2" 3502 | 3503 | which-module@^2.0.0: 3504 | version "2.0.0" 3505 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 3506 | 3507 | which@^1.2.12, which@^1.2.9, which@^1.3.0: 3508 | version "1.3.0" 3509 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 3510 | dependencies: 3511 | isexe "^2.0.0" 3512 | 3513 | wide-align@^1.1.0: 3514 | version "1.1.3" 3515 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 3516 | dependencies: 3517 | string-width "^1.0.2 || 2" 3518 | 3519 | wordwrap@^1.0.0, wordwrap@~1.0.0: 3520 | version "1.0.0" 3521 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3522 | 3523 | wrap-ansi@^2.0.0: 3524 | version "2.1.0" 3525 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 3526 | dependencies: 3527 | string-width "^1.0.1" 3528 | strip-ansi "^3.0.1" 3529 | 3530 | wrappy@1: 3531 | version "1.0.2" 3532 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3533 | 3534 | write-file-atomic@^2.1.0: 3535 | version "2.3.0" 3536 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 3537 | dependencies: 3538 | graceful-fs "^4.1.11" 3539 | imurmurhash "^0.1.4" 3540 | signal-exit "^3.0.2" 3541 | 3542 | ws@^4.0.0: 3543 | version "4.1.0" 3544 | resolved "https://registry.yarnpkg.com/ws/-/ws-4.1.0.tgz#a979b5d7d4da68bf54efe0408967c324869a7289" 3545 | dependencies: 3546 | async-limiter "~1.0.0" 3547 | safe-buffer "~5.1.0" 3548 | 3549 | xml-name-validator@^3.0.0: 3550 | version "3.0.0" 3551 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 3552 | 3553 | y18n@^3.2.1: 3554 | version "3.2.2" 3555 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.2.tgz#85c901bd6470ce71fc4bb723ad209b70f7f28696" 3556 | 3557 | yallist@^2.1.2: 3558 | version "2.1.2" 3559 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 3560 | 3561 | yallist@^3.0.0, yallist@^3.0.2: 3562 | version "3.0.2" 3563 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9" 3564 | 3565 | yargs-parser@^9.0.2: 3566 | version "9.0.2" 3567 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz#9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077" 3568 | dependencies: 3569 | camelcase "^4.1.0" 3570 | 3571 | yargs@^11.0.0: 3572 | version "11.0.0" 3573 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-11.0.0.tgz#c052931006c5eee74610e5fc0354bedfd08a201b" 3574 | dependencies: 3575 | cliui "^4.0.0" 3576 | decamelize "^1.1.1" 3577 | find-up "^2.1.0" 3578 | get-caller-file "^1.0.1" 3579 | os-locale "^2.0.0" 3580 | require-directory "^2.1.1" 3581 | require-main-filename "^1.0.1" 3582 | set-blocking "^2.0.0" 3583 | string-width "^2.0.0" 3584 | which-module "^2.0.0" 3585 | y18n "^3.2.1" 3586 | yargs-parser "^9.0.2" 3587 | --------------------------------------------------------------------------------