├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── .prettierrc ├── README.md ├── package.json ├── src ├── cli.js └── json2mjml.js ├── test ├── .eslintrc ├── fixtures │ └── styleguide.json └── json2mjml.spec.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-3"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["airbnb-base", "prettier"], 3 | "rules": { 4 | "import/no-extraneous-dependencies": 0, 5 | "no-param-reassign": 0, 6 | }, 7 | } 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /lib/ 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /src/ 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | printWidth: 100 2 | semi: false 3 | singleQuote: true 4 | trailingComma: all 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # json2mjml 2 | 3 | ## Purpose 4 | 5 | Converts a [MJML](https://github.com/mjmlio/mjml) template from JSON to XML. 6 | 7 | ## Installation 8 | 9 | ```bash 10 | yarn add json2mjml 11 | 12 | # or 13 | 14 | npm i json2mjml 15 | ``` 16 | 17 | ## Usage 18 | 19 | ### CLI 20 | 21 | Input and output filenames must be set, both with their extensions. 22 | 23 | ```bash 24 | json2mjml input.json output.mjml 25 | ``` 26 | 27 | ### Require hook 28 | 29 | ```js 30 | import json2mjml from 'json2mjml' 31 | 32 | // or 33 | 34 | const json2mjml = require('json2mjml') 35 | 36 | const input = { 37 | tagName: 'mjml', 38 | children: [ 39 | // ... your mjml 40 | ] 41 | } 42 | const output = json2mjml(input) 43 | 44 | console.log(output) 45 | ``` 46 | 47 | ## mjml2json 48 | 49 | If you need to convert a MJML template from a XML to JSON, check [mjml2json](https://github.com/ngarnier/mjml2json). 50 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "json2mjml", 3 | "version": "1.0.3", 4 | "description": "A package to convert a MJML template from JSON to XML", 5 | "main": "lib/json2mjml.js", 6 | "bin": { 7 | "json2mjml": "lib/cli.js" 8 | }, 9 | "scripts": { 10 | "build": "babel src -d lib", 11 | "lint": "eslint src test", 12 | "prettier": "prettier --write \"{src,test}/**/*.js\"", 13 | "test": "jest test/" 14 | }, 15 | "license": "MIT", 16 | "author": "Nicolas Garnier", 17 | "dependencies": { 18 | "commander": "^2.11.0" 19 | }, 20 | "devDependencies": { 21 | "babel-cli": "^6.24.1", 22 | "babel-preset-es2015": "^6.24.1", 23 | "babel-preset-stage-3": "^6.24.1", 24 | "eslint": "^4.9.0", 25 | "eslint-config-airbnb": "^16.1.0", 26 | "eslint-config-airbnb-base": "^12.1.0", 27 | "eslint-config-prettier": "^2.6.0", 28 | "eslint-plugin-import": "^2.8.0", 29 | "jest": "^21.2.1", 30 | "prettier": "^1.7.4" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- 1 | #!/bin/env node 2 | 3 | import fs from 'fs' 4 | import program from 'commander' 5 | import json2mjml from './json2mjml' 6 | import { version } from '../package.json' 7 | 8 | program 9 | .version(version) 10 | .usage(' ') 11 | .parse(process.argv) 12 | 13 | if (program.args.length !== 2) { 14 | program.outputHelp() 15 | process.exit(1) 16 | } 17 | 18 | const [inputFilename, outputFilename] = program.args 19 | 20 | const input = fs.readFileSync(inputFilename, 'utf8') 21 | const output = json2mjml(JSON.parse(input)) 22 | 23 | fs.writeFileSync(outputFilename, output) 24 | 25 | console.log(`${inputFilename} was converted to JSON format in ${outputFilename}`) // eslint-disable-line no-console 26 | -------------------------------------------------------------------------------- /src/json2mjml.js: -------------------------------------------------------------------------------- 1 | const indentPad = n => Array(n + 1).join(' ') 2 | 3 | const TAG_CONVERSION = { 4 | 'mj-dev': 'mj-raw', 5 | } 6 | 7 | const lineAttributes = attrs => 8 | Object.keys(attrs) 9 | .filter(key => key !== 'passport') 10 | .map(key => `${key}="${attrs[key]}"`) 11 | .sort() 12 | .join(' ') 13 | 14 | export default function json2xml(node, indent = 0) { 15 | let { tagName } = node 16 | const { children, content, attributes } = node 17 | 18 | if (tagName in TAG_CONVERSION) { 19 | tagName = TAG_CONVERSION[tagName] // eslint-disable-line prefer-destructuring 20 | } 21 | 22 | const space = indentPad(indent) 23 | 24 | let attrs = (attributes && ` ${lineAttributes(attributes)}`) || '' 25 | 26 | if (!attrs.trim()) { 27 | attrs = '' 28 | } 29 | 30 | const inside = 31 | (content && `\n${space} ${content}\n${space}`) || 32 | (children && `\n${children.map(c => `${json2xml(c, indent + 2)}`).join('\n')}\n${space}`) || 33 | '' 34 | 35 | return `${space}<${tagName}${attrs}>${inside}` 36 | } 37 | -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "globals": { 3 | "test": 0, 4 | "expect": 0, 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /test/fixtures/styleguide.json: -------------------------------------------------------------------------------- 1 | {"tagName":"mjml","children":[{"tagName":"mj-head","children":[{"tagName":"mj-attributes","children":[{"tagName":"mj-text","attributes":{"font-family":"Helvetica"}}],"attributes":{}},{"tagName":"mj-style","content":"@media (max-width: 480px) {\n #mobile {\n color: blue;\n }\n }\n @media (max-width: 480px) {\n #mobile-center {\n text-align: center;\n }\n }","attributes":{}}],"attributes":{}},{"tagName":"mj-body","children":[{"tagName":"mj-container","attributes":{"background-color":"#ccccdd"},"children":[{"tagName":"mj-wrapper","attributes":{"border":"1px solid #888","padding":"50px 30px","background-color":"white"},"children":[{"tagName":"mj-section","attributes":{"border-top":"1px solid #dddddd","border-left":"1px solid #dddddd","border-right":"1px solid #dddddd","padding":"20px"},"children":[{"tagName":"mj-column","children":[{"tagName":"mj-image","attributes":{"src":"https://puu.sh/tMDfk/98da3212a9.png"}}],"attributes":{}}]},{"tagName":"mj-section","attributes":{"border-left":"1px solid #dddddd","border-right":"1px solid #dddddd","padding":"20px"},"children":[{"tagName":"mj-group","children":[{"tagName":"mj-column","attributes":{"width":"70%"},"children":[{"tagName":"mj-text","content":"\n 2 x General Admission (blue on mobile)\n ","attributes":{}}]},{"tagName":"mj-column","attributes":{"width":"30%"},"children":[{"tagName":"mj-text","attributes":{"align":"right"},"content":"$ 20"}]}],"attributes":{}}]},{"tagName":"mj-section","attributes":{"border-left":"1px solid #dddddd","border-right":"1px solid #dddddd"},"children":[{"tagName":"mj-column","children":[{"tagName":"mj-divider","attributes":{"border-width":"1px","border-style":"dashed","border-color":"lightgrey","padding":"0 20px"}}],"attributes":{}}]},{"tagName":"mj-section","attributes":{"border-bottom":"1px solid #dddddd","border-left":"1px solid #dddddd","border-right":"1px solid #dddddd","padding":"20px"},"children":[{"tagName":"mj-column","attributes":{"width":"70%"},"children":[{"tagName":"mj-text","content":"

\n 2 x General Admission (centered on mobile)\n

","attributes":{}}]},{"tagName":"mj-column","attributes":{"width":"30%"},"children":[{"tagName":"mj-text","attributes":{"align":"right"},"content":"

\n $ 20 (centered on mobile)\n

"}]}]}]},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-spacer","attributes":{}}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","attributes":{"background-color":"#FFF"},"children":[{"tagName":"mj-column","children":[{"tagName":"mj-text","attributes":{"container-background-color":"#EEE","color":"#666","font-family":"Trebuchet, serif","font-style":"italic","text-decoration":"underline","align":"center"},"content":"

\n Lorem Ipsum\n

"}],"attributes":{}}]},{"tagName":"mj-section","attributes":{"background-color":"#DDD","border-bottom":"1px solid black","border-left":"3px dashed blue"},"children":[{"tagName":"mj-column","children":[{"tagName":"mj-text","attributes":{"container-background-color":"#CCC","color":"#444","line-height":"14px","align":"right","padding":"0px 0px"},"content":"

Left and bottom borders on section

\n

\n container-background-color on text.
\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer aliquet hendrerit vulputate. Cras non libero ac neque ultrices faucibus. Fusce vulputate sapien sollicitudin dolor ullamcorper fermentum. Phasellus ut ipsum diam. In accumsan feugiat elit\n sed molestie. Proin quis viverra erat, at euismod ligula. Etiam tincidunt dui at libero blandit, at accumsan nunc auctor. Mauris in efficitur lectus, ut imperdiet libero. Fusce neque augue, iaculis ac metus cursus, hendrerit porta sem. Nullam\n vehicula ipsum sit amet dictum facilisis. In congue quis odio quis interdum. Suspendisse a lorem id mi efficitur lobortis. Nam eu neque sed sem blandit consequat nec vitae lectus. In ornare eget mauris ut vulputate.\n

"}],"attributes":{}}]},{"tagName":"mj-section","attributes":{}},{"tagName":"mj-section","attributes":{"background-color":"#999","border-radius":"50px","border":"3px dotted blue","padding":"50px"},"children":[{"tagName":"mj-column","children":[{"tagName":"mj-text","attributes":{"color":"#000","font-weight":"900","line-height":"35px"},"content":"

border-radius on section

\n

\n Donec pretium odio magna, vitae iaculis libero ullamcorper et. Duis dapibus, odio in congue efficitur, ipsum elit egestas sapien, a fermentum lacus lorem nec risus. Pellentesque a tincidunt libero. Suspendisse metus orci, viverra in ligula ut, condimentum\n eleifend ante. Integer id tempus ipsum. Donec luctus venenatis ante, sit amet feugiat erat bibendum eget. Nulla ac ex quis justo commodo vulputate. Pellentesque suscipit sollicitudin turpis vel faucibus. Nullam ut nisi et turpis condimentum\n porttitor quis vitae libero. Suspendisse non blandit ante. Fusce in consectetur elit. Nulla vitae erat sed lorem suscipit tincidunt in non odio. Nam finibus ultricies tellus, ut imperdiet nunc posuere sit amet. Donec sit amet blandit quam,\n nec aliquam purus. Ut lacinia vulputate nunc id lacinia. Nam egestas leo sed tortor vehicula, vel commodo justo lobortis.\n

"}],"attributes":{}}]},{"tagName":"mj-section","attributes":{}},{"tagName":"mj-section","attributes":{"border-radius":"50px","background-url":"https://mjml.io/assets/img/logo-small.png"},"children":[{"tagName":"mj-column","children":[{"tagName":"mj-text","attributes":{"color":"#000","font-weight":"900","line-height":"35px"},"content":"

Background-url

\n

\n Donec pretium odio magna, vitae iaculis libero ullamcorper et. Duis dapibus, odio in congue efficitur, ipsum elit egestas sapien, a fermentum lacus lorem nec risus. Pellentesque a tincidunt libero. Suspendisse metus orci, viverra in ligula ut, condimentum\n eleifend ante. Integer id tempus ipsum. Donec luctus venenatis ante, sit amet feugiat erat bibendum eget. Nulla ac ex quis justo commodo vulputate. Pellentesque suscipit sollicitudin turpis vel faucibus. Nullam ut nisi et turpis condimentum\n porttitor quis vitae libero. Suspendisse non blandit ante. Fusce in consectetur elit. Nulla vitae erat sed lorem suscipit tincidunt in non odio. Nam finibus ultricies tellus, ut imperdiet nunc posuere sit amet. Donec sit amet blandit quam,\n nec aliquam purus. Ut lacinia vulputate nunc id lacinia. Nam egestas leo sed tortor vehicula, vel commodo justo lobortis.\n

"}],"attributes":{}}]},{"tagName":"mj-section","attributes":{}},{"tagName":"mj-section","attributes":{"border-radius":"50px","background-url":"https://mjml.io/assets/img/logo-small.png","background-repeat":"no-repeat"},"children":[{"tagName":"mj-column","children":[{"tagName":"mj-text","attributes":{"color":"#000","font-weight":"900","line-height":"35px"},"content":"

Background-url no repeat

\n

\n Donec pretium odio magna, vitae iaculis libero ullamcorper et. Duis dapibus, odio in congue efficitur, ipsum elit egestas sapien, a fermentum lacus lorem nec risus. Pellentesque a tincidunt libero. Suspendisse metus orci, viverra in ligula ut, condimentum\n eleifend ante. Integer id tempus ipsum. Donec luctus venenatis ante, sit amet feugiat erat bibendum eget. Nulla ac ex quis justo commodo vulputate. Pellentesque suscipit sollicitudin turpis vel faucibus. Nullam ut nisi et turpis condimentum\n porttitor quis vitae libero. Suspendisse non blandit ante. Fusce in consectetur elit. Nulla vitae erat sed lorem suscipit tincidunt in non odio. Nam finibus ultricies tellus, ut imperdiet nunc posuere sit amet. Donec sit amet blandit quam,\n nec aliquam purus. Ut lacinia vulputate nunc id lacinia. Nam egestas leo sed tortor vehicula, vel commodo justo lobortis.\n

"}],"attributes":{}}]},{"tagName":"mj-section","children":[{"tagName":"mj-column","attributes":{"background-color":"#F45E43","border":"2px solid green","border-radius":"50px"},"children":[{"tagName":"mj-text","attributes":{"font-size":"16px","color":"#ffffff","font-family":"helvetica"},"content":"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute\n irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."}]},{"tagName":"mj-column","attributes":{"background-color":"#4381f4","border-bottom":"1px solid black","border-left":"3px dashed black"},"children":[{"tagName":"mj-text","attributes":{"font-size":"16px","color":"#ffffff","font-family":"helvetica"},"content":"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute\n irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."}]},{"tagName":"mj-column","attributes":{"background-color":"#3cbc67","border-top":"2px dashed red","border-right":"1px solid blue"},"children":[{"tagName":"mj-text","attributes":{"font-size":"16px","color":"#ffffff","font-family":"helvetica"},"content":"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute\n irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."}]}],"attributes":{}},{"tagName":"mj-section","attributes":{"direction":"rtl"},"children":[{"tagName":"mj-column","attributes":{"background-color":"#F45E43","border":"2px solid green"},"children":[{"tagName":"mj-text","attributes":{"font-size":"16px","color":"#ffffff","font-family":"helvetica"},"content":"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute\n irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."}]},{"tagName":"mj-column","attributes":{"background-color":"#4381f4","border-bottom":"1px solid black","border-left":"3px dashed black"},"children":[{"tagName":"mj-text","attributes":{"font-size":"16px","color":"#ffffff","font-family":"helvetica"},"content":"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute\n irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."}]},{"tagName":"mj-column","attributes":{"background-color":"#3cbc67","border-top":"2px dashed red","border-right":"1px solid blue"},"children":[{"tagName":"mj-text","attributes":{"font-size":"16px","color":"#ffffff","font-family":"helvetica"},"content":"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute\n irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."}]}]},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-button","attributes":{"href":"https://mjml.io/","font-family":"Helvetica","color":"white","background-color":"#f45e43","font-style":"italic"},"content":"Background-color & font-size"}],"attributes":{}},{"tagName":"mj-column","children":[{"tagName":"mj-button","attributes":{"href":"https://mjml.io/","font-family":"Helvetica","color":"white","background-color":"#f45e43","border-radius":"50px"},"content":"border-radius"}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-button","attributes":{"href":"https://mjml.io/","font-family":"Helvetica","font-size":"18px","color":"black","background-color":"#FFFFFF","align":"right"},"content":"align right"}],"attributes":{}},{"tagName":"mj-column","children":[{"tagName":"mj-button","attributes":{"href":"https://mjml.io/","font-family":"Helvetica","font-size":"18px","color":"black","background-color":"#FFFFFF","align":"left"},"content":"align left"}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-button","attributes":{"href":"https://mjml.io/","font-family":"Helvetica","color":"white","background-color":"#f45e43","border":"2px solid #FFF","vertical-align":"top"},"content":"2px solid #FFF"}],"attributes":{}},{"tagName":"mj-column","children":[{"tagName":"mj-button","attributes":{"href":"https://mjml.io/","font-family":"Helvetica","color":"white","background-color":"#f45e43","border":"2px dashed #FFF","vertical-align":"bottom"},"content":"2px dashed #FFF"}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-button","attributes":{"href":"https://mjml.io/","font-family":"Helvetica","color":"#4d4d4d","background-color":"#f45e43","container-background-color":"#FFF","padding":"35px 10px"},"content":"container-background-color & padding"}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-button","attributes":{"href":"https://mjml.io/","font-family":"Helvetica","color":"#333","border":"solid 2px #f45e43","border-radius":"20px","background-color":"transparent","inner-padding":"15px 30px"},"content":"Ghost button"}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-button","attributes":{"href":"https://mjml.io/","font-family":"Helvetica","color":"#333","border-top":"solid 2px #f45e43","border-bottom":"solid 2px #f45e43","background-color":"transparent","inner-padding":"15px 30px"},"content":"Border-top, border-bottom, transparent"}],"attributes":{}},{"tagName":"mj-column","children":[{"tagName":"mj-button","attributes":{"href":"https://mjml.io/","font-family":"Helvetica","color":"#333","border-left":"solid 2px #f45e43","border-right":"solid 2px #f45e43","border-radius":"20px","background-color":"#ddddd"},"content":"Border-left, border-right & radius"}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-button","attributes":{"href":"https://mjml.io/","font-family":"Helvetica","color":"#333","border":"solid 2px #f45e43","border-radius":"20px","background-color":"transparent","width":"200px"},"content":"Width 200px"}],"attributes":{}},{"tagName":"mj-column","children":[{"tagName":"mj-button","attributes":{"href":"https://mjml.io/","font-family":"Helvetica","color":"#333","border":"solid 2px #f45e43","border-radius":"20px","background-color":"transparent","height":"80px"},"content":"Height 80px"}],"attributes":{}},{"tagName":"mj-column","children":[{"tagName":"mj-button","attributes":{"href":"https://mjml.io/","font-family":"Helvetica","color":"#ffffff","border":"solid 2px #111","border-radius":"20px","background-color":"#f45e43","width":"200px","height":"80px"},"content":"Height 80px & Width 200px"}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-divider","attributes":{"container-background-color":"#DDDDDD","border-width":"1px","border-style":"solid","border-color":"#000000"}}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-divider","attributes":{"container-background-color":"#CCCCCC","border-width":"2px","border-style":"dashed","border-color":"#f45e43"}}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-divider","attributes":{"container-background-color":"#DDDDDD","border-width":"4px","border-style":"dashed","border-color":"#f45e43"}}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-divider","attributes":{"container-background-color":"#CCCCCC","border-width":"5px","border-style":"dotted","border-color":"#f45e43","width":"20px"}}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-divider","attributes":{"container-background-color":"#DDDDDD","border-width":"1px","border-style":"dotted","border-color":"#f45e43"}}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-divider","attributes":{"container-background-color":"#CCCCCC","border-width":"2px","border-style":"dashed","border-color":"#f45e43","padding-right":"0","padding-left":"100px"}}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-divider","attributes":{"container-background-color":"#DDDDDD","border-width":"2px","border-style":"dashed","border-color":"#f45e43","padding":"5px 0 25px 0"}}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-divider","attributes":{"container-background-color":"#CCCCCC","border-width":"10px","border-style":"solid","border-color":"#000000","width":"75%"}}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-image","attributes":{"border":"1px solid blue","border-radius":"50px","width":"100%","align":"right","container-background-color":"#EEE","src":"https://mjml.io/assets/img/responsive.png","href":"http://mjml.io/","alt":"The only framework that makes responsive-email easy"}}],"attributes":{}},{"tagName":"mj-column","children":[{"tagName":"mj-image","attributes":{"align":"left","width":"100%","container-background-color":"#DDD","src":"https://mjml.io/assets/img/responsive.png","alt":"The only framework that makes responsive-email easy"}}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-image","attributes":{"width":"100%","align":"left","border":"2px solid #f45e43","padding":"25px","container-background-color":"#CCC","src":"https://mjml.io/assets/img/responsive.png","href":"http://mjml.io/","alt":"The only framework that makes responsive-email easy"}}],"attributes":{}},{"tagName":"mj-column","children":[{"tagName":"mj-image","attributes":{"width":"100%","align":"right","border":"2px dashed #f45e43","padding":"25px","container-background-color":"#BBB","src":"https://mjml.io/assets/img/responsive.png","alt":"The only framework that makes responsive-email easy"}}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-image","attributes":{"width":"100%","height":"250px","align":"right","container-background-color":"#AAA","src":"https://mjml.io/assets/img/responsive.png","href":"http://mjml.io/","alt":"The only framework that makes responsive-email easy"}}],"attributes":{}},{"tagName":"mj-column","children":[{"tagName":"mj-image","attributes":{"height":"125px","align":"left","container-background-color":"#999","src":"https://mjml.io/assets/img/responsive.png","alt":"The only framework that makes responsive-email easy"}}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-invoice","attributes":{"format":"$0,0.00","intl":"name:Desc.; quantity:Qty","border":"1px solid #dc4e41","color":"#dc4e41","container-background-color":"#DDDDDD"},"children":[{"tagName":"mj-invoice-item","attributes":{"price":"$300","quantity":"1","text-align":"right","name":"Object 1"}},{"tagName":"mj-invoice-item","attributes":{"price":"$200","quantity":"2","text-align":"right","name":"Object 2"}},{"tagName":"mj-invoice-item","attributes":{"price":"$300","quantity":"1","text-align":"center","name":"Object 3"}},{"tagName":"mj-invoice-item","attributes":{"price":"$500","quantity":"1","text-align":"left","name":"Object 4"}},{"tagName":"mj-invoice-item","attributes":{"price":"$50","quantity":"1","text-align":"left","name":"Object 5"}}]}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-invoice","attributes":{"format":"$0,00.00","intl":"name:Value","border":"1px dashed #dc4e41","align":"center"},"children":[{"tagName":"mj-invoice-item","attributes":{"price":"$1000","quantity":"5","name":"$1000"}},{"tagName":"mj-invoice-item","attributes":{"price":"$1000","quantity":"4","name":"$1000"}},{"tagName":"mj-invoice-item","attributes":{"price":"$1000","quantity":"3","name":"$1000"}},{"tagName":"mj-invoice-item","attributes":{"price":"$1000","quantity":"2","name":"$1000"}},{"tagName":"mj-invoice-item","attributes":{"price":"$1000","quantity":"1","name":"$1000"}},{"tagName":"mj-invoice-item","attributes":{"price":"$1000","quantity":"0","name":"$1000"}}]}],"attributes":{}},{"tagName":"mj-column","children":[{"tagName":"mj-invoice","attributes":{"format":"0,00.00€","intl":"name:Value","border":"1px dotted #dc4e41","align":"center","container-background-color":"#DDDDDD"},"children":[{"tagName":"mj-invoice-item","attributes":{"price":"1000€","quantity":"0","name":"1000€"}},{"tagName":"mj-invoice-item","attributes":{"price":"1000€","quantity":"1","name":"1000€"}},{"tagName":"mj-invoice-item","attributes":{"price":"1000€","quantity":"2","name":"1000€"}},{"tagName":"mj-invoice-item","attributes":{"price":"1000€","quantity":"3","name":"1000€"}},{"tagName":"mj-invoice-item","attributes":{"price":"1000€","quantity":"4","name":"1000€"}},{"tagName":"mj-invoice-item","attributes":{"price":"1000€","quantity":"5","name":"1000€"}}]}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-invoice","attributes":{"format":"$0,00.00","intl":"name:Border-type","border":"4px double #dc4e41","align":"center"},"children":[{"tagName":"mj-invoice-item","attributes":{"price":"$1","quantity":"1","name":"double"}}]}],"attributes":{}},{"tagName":"mj-column","children":[{"tagName":"mj-invoice","attributes":{"format":"$0,00.00","intl":"name:Border-type","border":"4px groove #dc4e41","align":"center"},"children":[{"tagName":"mj-invoice-item","attributes":{"price":"$1","quantity":"1","name":"groove"}}]}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-invoice","attributes":{"format":"$0,00.00","intl":"name:Border-type","border":"4px inset #dc4e41","align":"center"},"children":[{"tagName":"mj-invoice-item","attributes":{"price":"$1","quantity":"1","name":"inset"}}]}],"attributes":{}},{"tagName":"mj-column","children":[{"tagName":"mj-invoice","attributes":{"format":"$0,00.00","intl":"name:Border-type","border":"4px outset #dc4e41","align":"center"},"children":[{"tagName":"mj-invoice-item","attributes":{"price":"$1","quantity":"1","name":"outset"}}]}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-social","attributes":{"display":"facebook google instagram pinterest linkedin twitter","mode":"horizontal","facebook-href":"https://mjml.io/","google-href":"https://mjml.io/","instagram-href":"https://mjml.io/","pinterest-href":"https://mjml.io/","linkedin-href":"https://mjml.io/","twitter-href":"https://mjml.io/"}}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-social","attributes":{"display":"facebook google instagram","mode":"horizontal","icon-size":"30px","font-size":"15px","facebook-icon-color":"#4d4d4d","google-icon-color":"#4d4d4d","instagram-icon-color":"#4d4d4d","facebook-content":"Facebook","google-content":"Google","instagram-content":"Instagram","facebook-href":"https://mjml.io/","google-href":"https://mjml.io/","instagram-href":"https://mjml.io/"}}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-social","attributes":{"display":"pinterest linkedin twitter","mode":"horizontal","icon-size":"15px","font-size":"11px","pinterest-icon-color":"#4d4d4d","linkedin-icon-color":"#4d4d4d","twitter-icon-color":"#4d4d4d","pinterest-content":"Pinterest","linkedin-content":"Linkedin","twitter-content":"Twitter","pinterest-href":"https://mjml.io/","linkedin-href":"https://mjml.io/","twitter-href":"https://mjml.io/"}}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-social","attributes":{"display":"facebook google instagram pinterest linkedin twitter","text-mode":false,"mode":"vertical","align":"right","container-background-color":"#AAA","facebook-href":"https://mjml.io/","google-href":"https://mjml.io/","instagram-href":"https://mjml.io/","pinterest-href":"https://mjml.io/","linkedin-href":"https://mjml.io/","twitter-href":"https://mjml.io/"}}],"attributes":{}},{"tagName":"mj-column","children":[{"tagName":"mj-social","attributes":{"display":"facebook google instagram pinterest linkedin twitter","mode":"vertical","line-height":"25px","container-background-color":"#CCC","color":"#f45e43","text-decoration":"underline","facebook-href":"https://mjml.io/","google-href":"https://mjml.io/","instagram-href":"https://mjml.io/","pinterest-href":"https://mjml.io/","linkedin-href":"https://mjml.io/","twitter-href":"https://mjml.io/"}}],"attributes":{}},{"tagName":"mj-column","children":[{"tagName":"mj-social","attributes":{"display":"facebook google instagram pinterest linkedin twitter","mode":"vertical","align":"left","line-height":"30px","container-background-color":"#AAA","color":"#f45e43","text-decoration":"overline","facebook-href":"https://mjml.io/","google-href":"https://mjml.io/","instagram-href":"https://mjml.io/","pinterest-href":"https://mjml.io/","linkedin-href":"https://mjml.io/","twitter-href":"https://mjml.io/"}}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-table","attributes":{"table-layout":"auto","container-background-color":"#DDDDDD","padding":"0"},"content":"\n Website A\n \n \n Description\n A/B Testing\n \n \n A\n B\n \n \n Header\n 143\n 111\n \n \n Menu\n 35\n 27\n \n \n Homepage\n 44\n 34\n \n \n Footer\n 26\n 26\n \n \n green color signifies a good score.\n "}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-table","attributes":{"table-layout":"fixed","width":"90%","align":"right"},"content":"\n Website B\n \n \n Description\n A/B Testing\n \n \n A\n B\n \n \n Header\n 132\n 92\n \n \n Menu\n 32\n 23\n \n \n Homepage\n 41\n 28\n \n \n Footer\n 24\n 24\n \n \n green color signifies a good score.\n "}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-table","attributes":{"table-layout":"initial","container-background-color":"#DDDDDD"},"content":"\n Website C\n \n \n Description\n A/B Testing\n \n \n A\n B\n \n \n Header\n 459\n 448\n \n \n Menu\n 115\n 112\n \n \n Homepage\n 143\n 140\n \n \n Footer\n 85\n 85\n \n \n green color signifies a good score.\n "}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-table","attributes":{"table-layout":"inherit","container-background-color":"#DDDDDD","width":"90%","align":"center"},"content":"\n Website D\n \n \n Description\n A/B Testing\n \n \n A\n B\n \n \n Header\n 249\n 232\n \n \n Menu\n 62\n 58\n \n \n Homepage\n 77\n 72\n \n \n Footer\n 46\n 46\n \n \n green color signifies a good score.\n "}],"attributes":{}}],"attributes":{}},{"tagName":"mj-section","attributes":{"padding":"0"},"children":[{"tagName":"mj-column","children":[{"tagName":"mj-table","attributes":{"table-layout":"auto","container-background-color":"#EEEEEE","padding":"0"},"content":"\n Table-layout\n Float Value\n \n \n auto\n 123456789.123456789\n "}],"attributes":{}},{"tagName":"mj-column","children":[{"tagName":"mj-table","attributes":{"table-layout":"fixed","container-background-color":"#DDDDDD","padding":"0"},"content":"\n Table-layout\n Float Value\n \n \n fixed\n 123456789.123456789\n "}],"attributes":{}}]},{"tagName":"mj-section","attributes":{"padding":"0"},"children":[{"tagName":"mj-column","children":[{"tagName":"mj-table","attributes":{"table-layout":"initial","container-background-color":"#CCCCCC","padding":"0"},"content":"\n Table-layout\n Float Value\n \n \n initial\n 123456789.123456789\n "}],"attributes":{}},{"tagName":"mj-column","children":[{"tagName":"mj-table","attributes":{"table-layout":"inherit","container-background-color":"#BBBBBB","padding":"0"},"content":"\n Table-layout\n Float Value\n \n \n inherit\n 123456789.123456789\n "}],"attributes":{}}]},{"tagName":"mj-section","attributes":{"background-color":"#FFF"},"children":[{"tagName":"mj-column","children":[{"tagName":"mj-text","attributes":{"container-background-color":"#EEE","color":"#666","font-family":"Trebuchet, serif","font-style":"italic","text-decoration":"underline","align":"center"},"content":"

\n Lorem Ipsum\n

"}],"attributes":{}}]},{"tagName":"mj-section","attributes":{"background-color":"#DDD"},"children":[{"tagName":"mj-column","children":[{"tagName":"mj-text","attributes":{"container-background-color":"#CCC","color":"#444","line-height":"14px","align":"right","padding":"0px 0px"},"content":"

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer aliquet hendrerit vulputate. Cras non libero ac neque ultrices faucibus. Fusce vulputate sapien sollicitudin dolor ullamcorper fermentum. Phasellus ut ipsum diam. In accumsan feugiat elit\n sed molestie. Proin quis viverra erat, at euismod ligula. Etiam tincidunt dui at libero blandit, at accumsan nunc auctor. Mauris in efficitur lectus, ut imperdiet libero. Fusce neque augue, iaculis ac metus cursus, hendrerit porta sem. Nullam\n vehicula ipsum sit amet dictum facilisis. In congue quis odio quis interdum. Suspendisse a lorem id mi efficitur lobortis. Nam eu neque sed sem blandit consequat nec vitae lectus. In ornare eget mauris ut vulputate.\n

"}],"attributes":{}}]},{"tagName":"mj-section","attributes":{"background-color":"#BBB"},"children":[{"tagName":"mj-column","children":[{"tagName":"mj-text","attributes":{"container-background-color":"#AAA","color":"#222","font-weight":"500","text-transform":"capitalize"},"content":"

\n Praesent interdum sem ac euismod tempor. Vestibulum porttitor metus a diam maximus, in gravida mi ullamcorper. Suspendisse porttitor nulla id mauris imperdiet vehicula. Mauris accumsan, dui eu auctor varius, urna nulla mollis mauris, eget rhoncus est\n ante vitae ex. Pellentesque at neque et odio egestas malesuada. Nam id nunc vitae elit malesuada auctor. Morbi fringilla, dolor vel gravida dictum, risus ex scelerisque quam, et tincidunt ipsum mauris eu orci. Donec finibus mollis dui at\n vulputate. Pellentesque euismod purus et odio dictum semper.\n

"}],"attributes":{}}]},{"tagName":"mj-section","attributes":{"background-color":"#999"},"children":[{"tagName":"mj-column","children":[{"tagName":"mj-text","attributes":{"container-background-color":"#888","color":"#000","font-weight":"900","line-height":"35px"},"content":"

\n Donec pretium odio magna, vitae iaculis libero ullamcorper et. Duis dapibus, odio in congue efficitur, ipsum elit egestas sapien, a fermentum lacus lorem nec risus. Pellentesque a tincidunt libero. Suspendisse metus orci, viverra in ligula ut, condimentum\n eleifend ante. Integer id tempus ipsum. Donec luctus venenatis ante, sit amet feugiat erat bibendum eget. Nulla ac ex quis justo commodo vulputate. Pellentesque suscipit sollicitudin turpis vel faucibus. Nullam ut nisi et turpis condimentum\n porttitor quis vitae libero. Suspendisse non blandit ante. Fusce in consectetur elit. Nulla vitae erat sed lorem suscipit tincidunt in non odio. Nam finibus ultricies tellus, ut imperdiet nunc posuere sit amet. Donec sit amet blandit quam,\n nec aliquam purus. Ut lacinia vulputate nunc id lacinia. Nam egestas leo sed tortor vehicula, vel commodo justo lobortis.\n

"}],"attributes":{}}]},{"tagName":"mj-section","children":[{"tagName":"mj-column","attributes":{"background-color":"#dfdfdf"},"children":[{"tagName":"mj-accordion","attributes":{"border":"1px solid blue"},"children":[{"tagName":"mj-accordion-element","attributes":{"icon-position":"left","icon-wrapped-url":"https://cdn4.iconfinder.com/data/icons/e-commerce-icon-set/48/More-128.png","icon-unwrapped-url":"https://cdn4.iconfinder.com/data/icons/e-commerce-icon-set/48/Less-128.png"},"children":[{"tagName":"mj-accordion-title","attributes":{"background-color":"#dedede","color":"#333333"},"content":"To the left, to the left"},{"tagName":"mj-accordion-text","attributes":{"background-color":"#333333","color":"#dedede"},"content":"Isn't this content neat?"}]},{"tagName":"mj-accordion-element","attributes":{"icon-position":"right","icon-wrapped-url":"https://cdn2.iconfinder.com/data/icons/ios-7-icons/50/down4-512.png","icon-unwrapped-url":"https://cdn2.iconfinder.com/data/icons/ios-7-icons/50/up4-512.png"},"children":[{"tagName":"mj-accordion-title","attributes":{"background-color":"#dedeff","color":"#444488"},"content":"To the right, to the right"},{"tagName":"mj-accordion-text","attributes":{"background-color":"#444488","color":"#dedeff"},"content":"What about this content?"}]}]}]}],"attributes":{}},{"tagName":"mj-section","children":[{"tagName":"mj-column","children":[{"tagName":"mj-carousel","children":[{"tagName":"mj-carousel-image","attributes":{"src":"https://www.mailjet.com/wp-content/uploads/2016/11/ecommerce-guide.jpg"}},{"tagName":"mj-carousel-image","attributes":{"src":"https://www.mailjet.com/wp-content/uploads/2016/09/3@1x.png"}},{"tagName":"mj-carousel-image","attributes":{"src":"https://www.mailjet.com/wp-content/uploads/2016/09/1@1x.png"}}],"attributes":{}}],"attributes":{}}],"attributes":{}}]}],"attributes":{}}],"attributes":{}} -------------------------------------------------------------------------------- /test/json2mjml.spec.js: -------------------------------------------------------------------------------- 1 | import fs from 'fs' 2 | import path from 'path' 3 | 4 | import json2mjml from '../src/json2mjml' 5 | 6 | const fakeJSON = fs.readFileSync(path.resolve(__dirname, 'fixtures', 'styleguide.json')) 7 | 8 | test('converts JSON input to mjml', () => { 9 | const input = JSON.parse(fakeJSON) 10 | const result = json2mjml(input) 11 | expect(typeof result).toBe('string') 12 | expect(result.startsWith('')).toBe(true) 13 | }) 14 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.4" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e" 8 | 9 | abbrev@1: 10 | version "1.1.1" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 12 | 13 | acorn-globals@^3.1.0: 14 | version "3.1.0" 15 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 16 | dependencies: 17 | acorn "^4.0.4" 18 | 19 | acorn-jsx@^3.0.0: 20 | version "3.0.1" 21 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 22 | dependencies: 23 | acorn "^3.0.4" 24 | 25 | acorn@^3.0.4: 26 | version "3.3.0" 27 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 28 | 29 | acorn@^4.0.4: 30 | version "4.0.13" 31 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 32 | 33 | acorn@^5.1.1: 34 | version "5.1.2" 35 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7" 36 | 37 | ajv-keywords@^2.1.0: 38 | version "2.1.0" 39 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.0.tgz#a296e17f7bfae7c1ce4f7e0de53d29cb32162df0" 40 | 41 | ajv@^4.9.1: 42 | version "4.11.8" 43 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 44 | dependencies: 45 | co "^4.6.0" 46 | json-stable-stringify "^1.0.1" 47 | 48 | ajv@^5.1.0, ajv@^5.2.0, ajv@^5.2.3: 49 | version "5.2.5" 50 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.5.tgz#b637234d3e2675eb5f79fc652242a853a48cb49f" 51 | dependencies: 52 | co "^4.6.0" 53 | fast-deep-equal "^1.0.0" 54 | json-schema-traverse "^0.3.0" 55 | json-stable-stringify "^1.0.1" 56 | 57 | align-text@^0.1.1, align-text@^0.1.3: 58 | version "0.1.4" 59 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 60 | dependencies: 61 | kind-of "^3.0.2" 62 | longest "^1.0.1" 63 | repeat-string "^1.5.2" 64 | 65 | amdefine@>=0.0.4: 66 | version "1.0.1" 67 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 68 | 69 | ansi-escapes@^3.0.0: 70 | version "3.0.0" 71 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 72 | 73 | ansi-regex@^2.0.0: 74 | version "2.1.1" 75 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 76 | 77 | ansi-regex@^3.0.0: 78 | version "3.0.0" 79 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 80 | 81 | ansi-styles@^2.2.1: 82 | version "2.2.1" 83 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 84 | 85 | ansi-styles@^3.1.0, ansi-styles@^3.2.0: 86 | version "3.2.0" 87 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 88 | dependencies: 89 | color-convert "^1.9.0" 90 | 91 | any-promise@^1.0.0: 92 | version "1.3.0" 93 | resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" 94 | 95 | anymatch@^1.3.0: 96 | version "1.3.2" 97 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 98 | dependencies: 99 | micromatch "^2.1.5" 100 | normalize-path "^2.0.0" 101 | 102 | append-transform@^0.4.0: 103 | version "0.4.0" 104 | resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991" 105 | dependencies: 106 | default-require-extensions "^1.0.0" 107 | 108 | aproba@^1.0.3: 109 | version "1.2.0" 110 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 111 | 112 | are-we-there-yet@~1.1.2: 113 | version "1.1.4" 114 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 115 | dependencies: 116 | delegates "^1.0.0" 117 | readable-stream "^2.0.6" 118 | 119 | argparse@^1.0.7: 120 | version "1.0.9" 121 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 122 | dependencies: 123 | sprintf-js "~1.0.2" 124 | 125 | arr-diff@^2.0.0: 126 | version "2.0.0" 127 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 128 | dependencies: 129 | arr-flatten "^1.0.1" 130 | 131 | arr-flatten@^1.0.1: 132 | version "1.1.0" 133 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 134 | 135 | array-equal@^1.0.0: 136 | version "1.0.0" 137 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 138 | 139 | array-union@^1.0.1: 140 | version "1.0.2" 141 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 142 | dependencies: 143 | array-uniq "^1.0.1" 144 | 145 | array-uniq@^1.0.1: 146 | version "1.0.3" 147 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 148 | 149 | array-unique@^0.2.1: 150 | version "0.2.1" 151 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 152 | 153 | arrify@^1.0.0, arrify@^1.0.1: 154 | version "1.0.1" 155 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 156 | 157 | asap@~2.0.3: 158 | version "2.0.6" 159 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 160 | 161 | asn1@~0.2.3: 162 | version "0.2.3" 163 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 164 | 165 | assert-plus@1.0.0, assert-plus@^1.0.0: 166 | version "1.0.0" 167 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 168 | 169 | assert-plus@^0.2.0: 170 | version "0.2.0" 171 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 172 | 173 | astral-regex@^1.0.0: 174 | version "1.0.0" 175 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 176 | 177 | async-each@^1.0.0: 178 | version "1.0.1" 179 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 180 | 181 | async@^1.4.0: 182 | version "1.5.2" 183 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 184 | 185 | async@^2.1.2, async@^2.1.4: 186 | version "2.5.0" 187 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 188 | dependencies: 189 | lodash "^4.14.0" 190 | 191 | asynckit@^0.4.0: 192 | version "0.4.0" 193 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 194 | 195 | aws-sign2@~0.6.0: 196 | version "0.6.0" 197 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 198 | 199 | aws-sign2@~0.7.0: 200 | version "0.7.0" 201 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 202 | 203 | aws4@^1.2.1, aws4@^1.6.0: 204 | version "1.6.0" 205 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 206 | 207 | babel-cli@^6.24.1: 208 | version "6.26.0" 209 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 210 | dependencies: 211 | babel-core "^6.26.0" 212 | babel-polyfill "^6.26.0" 213 | babel-register "^6.26.0" 214 | babel-runtime "^6.26.0" 215 | commander "^2.11.0" 216 | convert-source-map "^1.5.0" 217 | fs-readdir-recursive "^1.0.0" 218 | glob "^7.1.2" 219 | lodash "^4.17.4" 220 | output-file-sync "^1.1.2" 221 | path-is-absolute "^1.0.1" 222 | slash "^1.0.0" 223 | source-map "^0.5.6" 224 | v8flags "^2.1.1" 225 | optionalDependencies: 226 | chokidar "^1.6.1" 227 | 228 | babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: 229 | version "6.26.0" 230 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 231 | dependencies: 232 | chalk "^1.1.3" 233 | esutils "^2.0.2" 234 | js-tokens "^3.0.2" 235 | 236 | babel-core@^6.0.0, babel-core@^6.26.0: 237 | version "6.26.0" 238 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 239 | dependencies: 240 | babel-code-frame "^6.26.0" 241 | babel-generator "^6.26.0" 242 | babel-helpers "^6.24.1" 243 | babel-messages "^6.23.0" 244 | babel-register "^6.26.0" 245 | babel-runtime "^6.26.0" 246 | babel-template "^6.26.0" 247 | babel-traverse "^6.26.0" 248 | babel-types "^6.26.0" 249 | babylon "^6.18.0" 250 | convert-source-map "^1.5.0" 251 | debug "^2.6.8" 252 | json5 "^0.5.1" 253 | lodash "^4.17.4" 254 | minimatch "^3.0.4" 255 | path-is-absolute "^1.0.1" 256 | private "^0.1.7" 257 | slash "^1.0.0" 258 | source-map "^0.5.6" 259 | 260 | babel-generator@^6.18.0, babel-generator@^6.26.0: 261 | version "6.26.0" 262 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 263 | dependencies: 264 | babel-messages "^6.23.0" 265 | babel-runtime "^6.26.0" 266 | babel-types "^6.26.0" 267 | detect-indent "^4.0.0" 268 | jsesc "^1.3.0" 269 | lodash "^4.17.4" 270 | source-map "^0.5.6" 271 | trim-right "^1.0.1" 272 | 273 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 274 | version "6.24.1" 275 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 276 | dependencies: 277 | babel-helper-explode-assignable-expression "^6.24.1" 278 | babel-runtime "^6.22.0" 279 | babel-types "^6.24.1" 280 | 281 | babel-helper-call-delegate@^6.24.1: 282 | version "6.24.1" 283 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 284 | dependencies: 285 | babel-helper-hoist-variables "^6.24.1" 286 | babel-runtime "^6.22.0" 287 | babel-traverse "^6.24.1" 288 | babel-types "^6.24.1" 289 | 290 | babel-helper-define-map@^6.24.1: 291 | version "6.26.0" 292 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 293 | dependencies: 294 | babel-helper-function-name "^6.24.1" 295 | babel-runtime "^6.26.0" 296 | babel-types "^6.26.0" 297 | lodash "^4.17.4" 298 | 299 | babel-helper-explode-assignable-expression@^6.24.1: 300 | version "6.24.1" 301 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 302 | dependencies: 303 | babel-runtime "^6.22.0" 304 | babel-traverse "^6.24.1" 305 | babel-types "^6.24.1" 306 | 307 | babel-helper-function-name@^6.24.1: 308 | version "6.24.1" 309 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 310 | dependencies: 311 | babel-helper-get-function-arity "^6.24.1" 312 | babel-runtime "^6.22.0" 313 | babel-template "^6.24.1" 314 | babel-traverse "^6.24.1" 315 | babel-types "^6.24.1" 316 | 317 | babel-helper-get-function-arity@^6.24.1: 318 | version "6.24.1" 319 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 320 | dependencies: 321 | babel-runtime "^6.22.0" 322 | babel-types "^6.24.1" 323 | 324 | babel-helper-hoist-variables@^6.24.1: 325 | version "6.24.1" 326 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 327 | dependencies: 328 | babel-runtime "^6.22.0" 329 | babel-types "^6.24.1" 330 | 331 | babel-helper-optimise-call-expression@^6.24.1: 332 | version "6.24.1" 333 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 334 | dependencies: 335 | babel-runtime "^6.22.0" 336 | babel-types "^6.24.1" 337 | 338 | babel-helper-regex@^6.24.1: 339 | version "6.26.0" 340 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 341 | dependencies: 342 | babel-runtime "^6.26.0" 343 | babel-types "^6.26.0" 344 | lodash "^4.17.4" 345 | 346 | babel-helper-remap-async-to-generator@^6.24.1: 347 | version "6.24.1" 348 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 349 | dependencies: 350 | babel-helper-function-name "^6.24.1" 351 | babel-runtime "^6.22.0" 352 | babel-template "^6.24.1" 353 | babel-traverse "^6.24.1" 354 | babel-types "^6.24.1" 355 | 356 | babel-helper-replace-supers@^6.24.1: 357 | version "6.24.1" 358 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 359 | dependencies: 360 | babel-helper-optimise-call-expression "^6.24.1" 361 | babel-messages "^6.23.0" 362 | babel-runtime "^6.22.0" 363 | babel-template "^6.24.1" 364 | babel-traverse "^6.24.1" 365 | babel-types "^6.24.1" 366 | 367 | babel-helpers@^6.24.1: 368 | version "6.24.1" 369 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 370 | dependencies: 371 | babel-runtime "^6.22.0" 372 | babel-template "^6.24.1" 373 | 374 | babel-jest@^21.2.0: 375 | version "21.2.0" 376 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-21.2.0.tgz#2ce059519a9374a2c46f2455b6fbef5ad75d863e" 377 | dependencies: 378 | babel-plugin-istanbul "^4.0.0" 379 | babel-preset-jest "^21.2.0" 380 | 381 | babel-messages@^6.23.0: 382 | version "6.23.0" 383 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 384 | dependencies: 385 | babel-runtime "^6.22.0" 386 | 387 | babel-plugin-check-es2015-constants@^6.22.0: 388 | version "6.22.0" 389 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 390 | dependencies: 391 | babel-runtime "^6.22.0" 392 | 393 | babel-plugin-istanbul@^4.0.0: 394 | version "4.1.5" 395 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e" 396 | dependencies: 397 | find-up "^2.1.0" 398 | istanbul-lib-instrument "^1.7.5" 399 | test-exclude "^4.1.1" 400 | 401 | babel-plugin-jest-hoist@^21.2.0: 402 | version "21.2.0" 403 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.2.0.tgz#2cef637259bd4b628a6cace039de5fcd14dbb006" 404 | 405 | babel-plugin-syntax-async-functions@^6.8.0: 406 | version "6.13.0" 407 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 408 | 409 | babel-plugin-syntax-async-generators@^6.5.0: 410 | version "6.13.0" 411 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 412 | 413 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 414 | version "6.13.0" 415 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 416 | 417 | babel-plugin-syntax-object-rest-spread@^6.13.0, babel-plugin-syntax-object-rest-spread@^6.8.0: 418 | version "6.13.0" 419 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 420 | 421 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 422 | version "6.22.0" 423 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 424 | 425 | babel-plugin-transform-async-generator-functions@^6.24.1: 426 | version "6.24.1" 427 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 428 | dependencies: 429 | babel-helper-remap-async-to-generator "^6.24.1" 430 | babel-plugin-syntax-async-generators "^6.5.0" 431 | babel-runtime "^6.22.0" 432 | 433 | babel-plugin-transform-async-to-generator@^6.24.1: 434 | version "6.24.1" 435 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 436 | dependencies: 437 | babel-helper-remap-async-to-generator "^6.24.1" 438 | babel-plugin-syntax-async-functions "^6.8.0" 439 | babel-runtime "^6.22.0" 440 | 441 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 442 | version "6.22.0" 443 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 444 | dependencies: 445 | babel-runtime "^6.22.0" 446 | 447 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 448 | version "6.22.0" 449 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 450 | dependencies: 451 | babel-runtime "^6.22.0" 452 | 453 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 454 | version "6.26.0" 455 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 456 | dependencies: 457 | babel-runtime "^6.26.0" 458 | babel-template "^6.26.0" 459 | babel-traverse "^6.26.0" 460 | babel-types "^6.26.0" 461 | lodash "^4.17.4" 462 | 463 | babel-plugin-transform-es2015-classes@^6.24.1: 464 | version "6.24.1" 465 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 466 | dependencies: 467 | babel-helper-define-map "^6.24.1" 468 | babel-helper-function-name "^6.24.1" 469 | babel-helper-optimise-call-expression "^6.24.1" 470 | babel-helper-replace-supers "^6.24.1" 471 | babel-messages "^6.23.0" 472 | babel-runtime "^6.22.0" 473 | babel-template "^6.24.1" 474 | babel-traverse "^6.24.1" 475 | babel-types "^6.24.1" 476 | 477 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 478 | version "6.24.1" 479 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 480 | dependencies: 481 | babel-runtime "^6.22.0" 482 | babel-template "^6.24.1" 483 | 484 | babel-plugin-transform-es2015-destructuring@^6.22.0: 485 | version "6.23.0" 486 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 487 | dependencies: 488 | babel-runtime "^6.22.0" 489 | 490 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 491 | version "6.24.1" 492 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 493 | dependencies: 494 | babel-runtime "^6.22.0" 495 | babel-types "^6.24.1" 496 | 497 | babel-plugin-transform-es2015-for-of@^6.22.0: 498 | version "6.23.0" 499 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 500 | dependencies: 501 | babel-runtime "^6.22.0" 502 | 503 | babel-plugin-transform-es2015-function-name@^6.24.1: 504 | version "6.24.1" 505 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 506 | dependencies: 507 | babel-helper-function-name "^6.24.1" 508 | babel-runtime "^6.22.0" 509 | babel-types "^6.24.1" 510 | 511 | babel-plugin-transform-es2015-literals@^6.22.0: 512 | version "6.22.0" 513 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 514 | dependencies: 515 | babel-runtime "^6.22.0" 516 | 517 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 518 | version "6.24.1" 519 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 520 | dependencies: 521 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 522 | babel-runtime "^6.22.0" 523 | babel-template "^6.24.1" 524 | 525 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 526 | version "6.26.0" 527 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 528 | dependencies: 529 | babel-plugin-transform-strict-mode "^6.24.1" 530 | babel-runtime "^6.26.0" 531 | babel-template "^6.26.0" 532 | babel-types "^6.26.0" 533 | 534 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 535 | version "6.24.1" 536 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 537 | dependencies: 538 | babel-helper-hoist-variables "^6.24.1" 539 | babel-runtime "^6.22.0" 540 | babel-template "^6.24.1" 541 | 542 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 543 | version "6.24.1" 544 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 545 | dependencies: 546 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 547 | babel-runtime "^6.22.0" 548 | babel-template "^6.24.1" 549 | 550 | babel-plugin-transform-es2015-object-super@^6.24.1: 551 | version "6.24.1" 552 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 553 | dependencies: 554 | babel-helper-replace-supers "^6.24.1" 555 | babel-runtime "^6.22.0" 556 | 557 | babel-plugin-transform-es2015-parameters@^6.24.1: 558 | version "6.24.1" 559 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 560 | dependencies: 561 | babel-helper-call-delegate "^6.24.1" 562 | babel-helper-get-function-arity "^6.24.1" 563 | babel-runtime "^6.22.0" 564 | babel-template "^6.24.1" 565 | babel-traverse "^6.24.1" 566 | babel-types "^6.24.1" 567 | 568 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 569 | version "6.24.1" 570 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 571 | dependencies: 572 | babel-runtime "^6.22.0" 573 | babel-types "^6.24.1" 574 | 575 | babel-plugin-transform-es2015-spread@^6.22.0: 576 | version "6.22.0" 577 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 578 | dependencies: 579 | babel-runtime "^6.22.0" 580 | 581 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 582 | version "6.24.1" 583 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 584 | dependencies: 585 | babel-helper-regex "^6.24.1" 586 | babel-runtime "^6.22.0" 587 | babel-types "^6.24.1" 588 | 589 | babel-plugin-transform-es2015-template-literals@^6.22.0: 590 | version "6.22.0" 591 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 592 | dependencies: 593 | babel-runtime "^6.22.0" 594 | 595 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 596 | version "6.23.0" 597 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 598 | dependencies: 599 | babel-runtime "^6.22.0" 600 | 601 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 602 | version "6.24.1" 603 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 604 | dependencies: 605 | babel-helper-regex "^6.24.1" 606 | babel-runtime "^6.22.0" 607 | regexpu-core "^2.0.0" 608 | 609 | babel-plugin-transform-exponentiation-operator@^6.24.1: 610 | version "6.24.1" 611 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 612 | dependencies: 613 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 614 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 615 | babel-runtime "^6.22.0" 616 | 617 | babel-plugin-transform-object-rest-spread@^6.22.0: 618 | version "6.26.0" 619 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 620 | dependencies: 621 | babel-plugin-syntax-object-rest-spread "^6.8.0" 622 | babel-runtime "^6.26.0" 623 | 624 | babel-plugin-transform-regenerator@^6.24.1: 625 | version "6.26.0" 626 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 627 | dependencies: 628 | regenerator-transform "^0.10.0" 629 | 630 | babel-plugin-transform-strict-mode@^6.24.1: 631 | version "6.24.1" 632 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 633 | dependencies: 634 | babel-runtime "^6.22.0" 635 | babel-types "^6.24.1" 636 | 637 | babel-polyfill@^6.26.0: 638 | version "6.26.0" 639 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 640 | dependencies: 641 | babel-runtime "^6.26.0" 642 | core-js "^2.5.0" 643 | regenerator-runtime "^0.10.5" 644 | 645 | babel-preset-es2015@^6.24.1: 646 | version "6.24.1" 647 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 648 | dependencies: 649 | babel-plugin-check-es2015-constants "^6.22.0" 650 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 651 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 652 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 653 | babel-plugin-transform-es2015-classes "^6.24.1" 654 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 655 | babel-plugin-transform-es2015-destructuring "^6.22.0" 656 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 657 | babel-plugin-transform-es2015-for-of "^6.22.0" 658 | babel-plugin-transform-es2015-function-name "^6.24.1" 659 | babel-plugin-transform-es2015-literals "^6.22.0" 660 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 661 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 662 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 663 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 664 | babel-plugin-transform-es2015-object-super "^6.24.1" 665 | babel-plugin-transform-es2015-parameters "^6.24.1" 666 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 667 | babel-plugin-transform-es2015-spread "^6.22.0" 668 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 669 | babel-plugin-transform-es2015-template-literals "^6.22.0" 670 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 671 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 672 | babel-plugin-transform-regenerator "^6.24.1" 673 | 674 | babel-preset-jest@^21.2.0: 675 | version "21.2.0" 676 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-21.2.0.tgz#ff9d2bce08abd98e8a36d9a8a5189b9173b85638" 677 | dependencies: 678 | babel-plugin-jest-hoist "^21.2.0" 679 | babel-plugin-syntax-object-rest-spread "^6.13.0" 680 | 681 | babel-preset-stage-3@^6.24.1: 682 | version "6.24.1" 683 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 684 | dependencies: 685 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 686 | babel-plugin-transform-async-generator-functions "^6.24.1" 687 | babel-plugin-transform-async-to-generator "^6.24.1" 688 | babel-plugin-transform-exponentiation-operator "^6.24.1" 689 | babel-plugin-transform-object-rest-spread "^6.22.0" 690 | 691 | babel-register@^6.26.0: 692 | version "6.26.0" 693 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 694 | dependencies: 695 | babel-core "^6.26.0" 696 | babel-runtime "^6.26.0" 697 | core-js "^2.5.0" 698 | home-or-tmp "^2.0.0" 699 | lodash "^4.17.4" 700 | mkdirp "^0.5.1" 701 | source-map-support "^0.4.15" 702 | 703 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 704 | version "6.26.0" 705 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 706 | dependencies: 707 | core-js "^2.4.0" 708 | regenerator-runtime "^0.11.0" 709 | 710 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0: 711 | version "6.26.0" 712 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 713 | dependencies: 714 | babel-runtime "^6.26.0" 715 | babel-traverse "^6.26.0" 716 | babel-types "^6.26.0" 717 | babylon "^6.18.0" 718 | lodash "^4.17.4" 719 | 720 | babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0: 721 | version "6.26.0" 722 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 723 | dependencies: 724 | babel-code-frame "^6.26.0" 725 | babel-messages "^6.23.0" 726 | babel-runtime "^6.26.0" 727 | babel-types "^6.26.0" 728 | babylon "^6.18.0" 729 | debug "^2.6.8" 730 | globals "^9.18.0" 731 | invariant "^2.2.2" 732 | lodash "^4.17.4" 733 | 734 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 735 | version "6.26.0" 736 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 737 | dependencies: 738 | babel-runtime "^6.26.0" 739 | esutils "^2.0.2" 740 | lodash "^4.17.4" 741 | to-fast-properties "^1.0.3" 742 | 743 | babylon@^6.18.0: 744 | version "6.18.0" 745 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 746 | 747 | balanced-match@^1.0.0: 748 | version "1.0.0" 749 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 750 | 751 | bcrypt-pbkdf@^1.0.0: 752 | version "1.0.1" 753 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 754 | dependencies: 755 | tweetnacl "^0.14.3" 756 | 757 | binary-extensions@^1.0.0: 758 | version "1.10.0" 759 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 760 | 761 | block-stream@*: 762 | version "0.0.9" 763 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 764 | dependencies: 765 | inherits "~2.0.0" 766 | 767 | bluebird@^3.0.5: 768 | version "3.5.1" 769 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 770 | 771 | boolbase@~1.0.0: 772 | version "1.0.0" 773 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 774 | 775 | boom@2.x.x: 776 | version "2.10.1" 777 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 778 | dependencies: 779 | hoek "2.x.x" 780 | 781 | boom@4.x.x: 782 | version "4.3.1" 783 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 784 | dependencies: 785 | hoek "4.x.x" 786 | 787 | boom@5.x.x: 788 | version "5.2.0" 789 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 790 | dependencies: 791 | hoek "4.x.x" 792 | 793 | brace-expansion@^1.1.7: 794 | version "1.1.8" 795 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 796 | dependencies: 797 | balanced-match "^1.0.0" 798 | concat-map "0.0.1" 799 | 800 | braces@^1.8.2: 801 | version "1.8.5" 802 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 803 | dependencies: 804 | expand-range "^1.8.1" 805 | preserve "^0.2.0" 806 | repeat-element "^1.1.2" 807 | 808 | browser-resolve@^1.11.2: 809 | version "1.11.2" 810 | resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz#8ff09b0a2c421718a1051c260b32e48f442938ce" 811 | dependencies: 812 | resolve "1.1.7" 813 | 814 | bser@^2.0.0: 815 | version "2.0.0" 816 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz#9ac78d3ed5d915804fd87acb158bc797147a1719" 817 | dependencies: 818 | node-int64 "^0.4.0" 819 | 820 | builtin-modules@^1.0.0, builtin-modules@^1.1.1: 821 | version "1.1.1" 822 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 823 | 824 | caller-path@^0.1.0: 825 | version "0.1.0" 826 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 827 | dependencies: 828 | callsites "^0.2.0" 829 | 830 | callsites@^0.2.0: 831 | version "0.2.0" 832 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 833 | 834 | callsites@^2.0.0: 835 | version "2.0.0" 836 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" 837 | 838 | camel-case@3.0.x: 839 | version "3.0.0" 840 | resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" 841 | dependencies: 842 | no-case "^2.2.0" 843 | upper-case "^1.1.1" 844 | 845 | camelcase@^1.0.2: 846 | version "1.2.1" 847 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 848 | 849 | camelcase@^4.1.0: 850 | version "4.1.0" 851 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 852 | 853 | caseless@~0.12.0: 854 | version "0.12.0" 855 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 856 | 857 | center-align@^0.1.1: 858 | version "0.1.3" 859 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 860 | dependencies: 861 | align-text "^0.1.3" 862 | lazy-cache "^1.0.3" 863 | 864 | chalk@^1.1.3: 865 | version "1.1.3" 866 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 867 | dependencies: 868 | ansi-styles "^2.2.1" 869 | escape-string-regexp "^1.0.2" 870 | has-ansi "^2.0.0" 871 | strip-ansi "^3.0.0" 872 | supports-color "^2.0.0" 873 | 874 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0: 875 | version "2.3.0" 876 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 877 | dependencies: 878 | ansi-styles "^3.1.0" 879 | escape-string-regexp "^1.0.5" 880 | supports-color "^4.0.0" 881 | 882 | cheerio@^0.22.0: 883 | version "0.22.0" 884 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" 885 | dependencies: 886 | css-select "~1.2.0" 887 | dom-serializer "~0.1.0" 888 | entities "~1.1.1" 889 | htmlparser2 "^3.9.1" 890 | lodash.assignin "^4.0.9" 891 | lodash.bind "^4.1.4" 892 | lodash.defaults "^4.0.1" 893 | lodash.filter "^4.4.0" 894 | lodash.flatten "^4.2.0" 895 | lodash.foreach "^4.3.0" 896 | lodash.map "^4.4.0" 897 | lodash.merge "^4.4.0" 898 | lodash.pick "^4.2.1" 899 | lodash.reduce "^4.4.0" 900 | lodash.reject "^4.4.0" 901 | lodash.some "^4.4.0" 902 | 903 | chokidar@^1.6.1: 904 | version "1.7.0" 905 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 906 | dependencies: 907 | anymatch "^1.3.0" 908 | async-each "^1.0.0" 909 | glob-parent "^2.0.0" 910 | inherits "^2.0.1" 911 | is-binary-path "^1.0.0" 912 | is-glob "^2.0.0" 913 | path-is-absolute "^1.0.0" 914 | readdirp "^2.0.0" 915 | optionalDependencies: 916 | fsevents "^1.0.0" 917 | 918 | ci-info@^1.0.0: 919 | version "1.1.1" 920 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.1.tgz#47b44df118c48d2597b56d342e7e25791060171a" 921 | 922 | circular-json@^0.3.1: 923 | version "0.3.3" 924 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 925 | 926 | classnames@^2.2.5: 927 | version "2.2.5" 928 | resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.5.tgz#fb3801d453467649ef3603c7d61a02bd129bde6d" 929 | 930 | clean-css@4.1.x: 931 | version "4.1.9" 932 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.1.9.tgz#35cee8ae7687a49b98034f70de00c4edd3826301" 933 | dependencies: 934 | source-map "0.5.x" 935 | 936 | cli-cursor@^2.1.0: 937 | version "2.1.0" 938 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 939 | dependencies: 940 | restore-cursor "^2.0.0" 941 | 942 | cli-width@^2.0.0: 943 | version "2.2.0" 944 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 945 | 946 | cliui@^2.1.0: 947 | version "2.1.0" 948 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 949 | dependencies: 950 | center-align "^0.1.1" 951 | right-align "^0.1.1" 952 | wordwrap "0.0.2" 953 | 954 | cliui@^3.2.0: 955 | version "3.2.0" 956 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 957 | dependencies: 958 | string-width "^1.0.1" 959 | strip-ansi "^3.0.1" 960 | wrap-ansi "^2.0.0" 961 | 962 | co@^4.6.0: 963 | version "4.6.0" 964 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 965 | 966 | code-point-at@^1.0.0: 967 | version "1.1.0" 968 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 969 | 970 | color-convert@^1.9.0: 971 | version "1.9.0" 972 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 973 | dependencies: 974 | color-name "^1.1.1" 975 | 976 | color-name@^1.1.1: 977 | version "1.1.3" 978 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 979 | 980 | combined-stream@^1.0.5, combined-stream@~1.0.5: 981 | version "1.0.5" 982 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 983 | dependencies: 984 | delayed-stream "~1.0.0" 985 | 986 | commander@2.11.x, commander@^2.11.0, commander@^2.9.0, commander@~2.11.0: 987 | version "2.11.0" 988 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 989 | 990 | commander@2.9.0: 991 | version "2.9.0" 992 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 993 | dependencies: 994 | graceful-readlink ">= 1.0.0" 995 | 996 | concat-map@0.0.1: 997 | version "0.0.1" 998 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 999 | 1000 | concat-stream@^1.6.0: 1001 | version "1.6.0" 1002 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 1003 | dependencies: 1004 | inherits "^2.0.3" 1005 | readable-stream "^2.2.2" 1006 | typedarray "^0.0.6" 1007 | 1008 | config-chain@~1.1.5: 1009 | version "1.1.11" 1010 | resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.11.tgz#aba09747dfbe4c3e70e766a6e41586e1859fc6f2" 1011 | dependencies: 1012 | ini "^1.3.4" 1013 | proto-list "~1.2.1" 1014 | 1015 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1016 | version "1.1.0" 1017 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1018 | 1019 | contains-path@^0.1.0: 1020 | version "0.1.0" 1021 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 1022 | 1023 | content-type-parser@^1.0.1: 1024 | version "1.0.2" 1025 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.2.tgz#caabe80623e63638b2502fd4c7f12ff4ce2352e7" 1026 | 1027 | convert-source-map@^1.4.0, convert-source-map@^1.5.0: 1028 | version "1.5.0" 1029 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1030 | 1031 | core-js@^1.0.0: 1032 | version "1.2.7" 1033 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1034 | 1035 | core-js@^2.4.0, core-js@^2.5.0: 1036 | version "2.5.1" 1037 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 1038 | 1039 | core-util-is@1.0.2, core-util-is@~1.0.0: 1040 | version "1.0.2" 1041 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1042 | 1043 | create-react-class@^15.6.0: 1044 | version "15.6.2" 1045 | resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.6.2.tgz#cf1ed15f12aad7f14ef5f2dfe05e6c42f91ef02a" 1046 | dependencies: 1047 | fbjs "^0.8.9" 1048 | loose-envify "^1.3.1" 1049 | object-assign "^4.1.1" 1050 | 1051 | cross-spawn@^5.0.1, cross-spawn@^5.1.0: 1052 | version "5.1.0" 1053 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1054 | dependencies: 1055 | lru-cache "^4.0.1" 1056 | shebang-command "^1.2.0" 1057 | which "^1.2.9" 1058 | 1059 | cryptiles@2.x.x: 1060 | version "2.0.5" 1061 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1062 | dependencies: 1063 | boom "2.x.x" 1064 | 1065 | cryptiles@3.x.x: 1066 | version "3.1.2" 1067 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 1068 | dependencies: 1069 | boom "5.x.x" 1070 | 1071 | css-select@~1.2.0: 1072 | version "1.2.0" 1073 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 1074 | dependencies: 1075 | boolbase "~1.0.0" 1076 | css-what "2.1" 1077 | domutils "1.5.1" 1078 | nth-check "~1.0.1" 1079 | 1080 | css-what@2.1: 1081 | version "2.1.0" 1082 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" 1083 | 1084 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1085 | version "0.3.2" 1086 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1087 | 1088 | "cssstyle@>= 0.2.37 < 0.3.0": 1089 | version "0.2.37" 1090 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1091 | dependencies: 1092 | cssom "0.3.x" 1093 | 1094 | dashdash@^1.12.0: 1095 | version "1.14.1" 1096 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1097 | dependencies: 1098 | assert-plus "^1.0.0" 1099 | 1100 | datauri@^1.0.4: 1101 | version "1.0.5" 1102 | resolved "https://registry.yarnpkg.com/datauri/-/datauri-1.0.5.tgz#d0975d1ab6c8f2e0ce3ca43baa4539be12d289a0" 1103 | dependencies: 1104 | image-size "^0.3.5" 1105 | mimer "^0.2.1" 1106 | semver "^5.0.3" 1107 | 1108 | debug@^2.2.0, debug@^2.6.0, debug@^2.6.8: 1109 | version "2.6.9" 1110 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1111 | dependencies: 1112 | ms "2.0.0" 1113 | 1114 | debug@^3.0.1, debug@^3.1.0: 1115 | version "3.1.0" 1116 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1117 | dependencies: 1118 | ms "2.0.0" 1119 | 1120 | decamelize@^1.0.0, decamelize@^1.1.1: 1121 | version "1.2.0" 1122 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1123 | 1124 | deep-extend@^0.5.0: 1125 | version "0.5.0" 1126 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.5.0.tgz#6ef4a09b05f98b0e358d6d93d4ca3caec6672803" 1127 | 1128 | deep-extend@~0.4.0: 1129 | version "0.4.2" 1130 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1131 | 1132 | deep-is@~0.1.3: 1133 | version "0.1.3" 1134 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1135 | 1136 | default-require-extensions@^1.0.0: 1137 | version "1.0.0" 1138 | resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8" 1139 | dependencies: 1140 | strip-bom "^2.0.0" 1141 | 1142 | del@^2.0.2: 1143 | version "2.2.2" 1144 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 1145 | dependencies: 1146 | globby "^5.0.0" 1147 | is-path-cwd "^1.0.0" 1148 | is-path-in-cwd "^1.0.0" 1149 | object-assign "^4.0.1" 1150 | pify "^2.0.0" 1151 | pinkie-promise "^2.0.0" 1152 | rimraf "^2.2.8" 1153 | 1154 | delayed-stream@~1.0.0: 1155 | version "1.0.0" 1156 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1157 | 1158 | delegates@^1.0.0: 1159 | version "1.0.0" 1160 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1161 | 1162 | detect-indent@^4.0.0: 1163 | version "4.0.0" 1164 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1165 | dependencies: 1166 | repeating "^2.0.0" 1167 | 1168 | diff@^3.2.0: 1169 | version "3.4.0" 1170 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c" 1171 | 1172 | doctrine@1.5.0: 1173 | version "1.5.0" 1174 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 1175 | dependencies: 1176 | esutils "^2.0.2" 1177 | isarray "^1.0.0" 1178 | 1179 | doctrine@^2.0.0: 1180 | version "2.0.0" 1181 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" 1182 | dependencies: 1183 | esutils "^2.0.2" 1184 | isarray "^1.0.0" 1185 | 1186 | dom-serializer@0, dom-serializer@~0.1.0: 1187 | version "0.1.0" 1188 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 1189 | dependencies: 1190 | domelementtype "~1.1.1" 1191 | entities "~1.1.1" 1192 | 1193 | domelementtype@1, domelementtype@^1.3.0: 1194 | version "1.3.0" 1195 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 1196 | 1197 | domelementtype@~1.1.1: 1198 | version "1.1.3" 1199 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 1200 | 1201 | domhandler@^2.3.0: 1202 | version "2.4.1" 1203 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.1.tgz#892e47000a99be55bbf3774ffea0561d8879c259" 1204 | dependencies: 1205 | domelementtype "1" 1206 | 1207 | domutils@1.5.1: 1208 | version "1.5.1" 1209 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 1210 | dependencies: 1211 | dom-serializer "0" 1212 | domelementtype "1" 1213 | 1214 | domutils@^1.5.1: 1215 | version "1.6.2" 1216 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.6.2.tgz#1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff" 1217 | dependencies: 1218 | dom-serializer "0" 1219 | domelementtype "1" 1220 | 1221 | ecc-jsbn@~0.1.1: 1222 | version "0.1.1" 1223 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1224 | dependencies: 1225 | jsbn "~0.1.0" 1226 | 1227 | editorconfig@^0.13.2: 1228 | version "0.13.3" 1229 | resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.13.3.tgz#e5219e587951d60958fd94ea9a9a008cdeff1b34" 1230 | dependencies: 1231 | bluebird "^3.0.5" 1232 | commander "^2.9.0" 1233 | lru-cache "^3.2.0" 1234 | semver "^5.1.0" 1235 | sigmund "^1.0.1" 1236 | 1237 | encoding@^0.1.11: 1238 | version "0.1.12" 1239 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1240 | dependencies: 1241 | iconv-lite "~0.4.13" 1242 | 1243 | entities@^1.1.1, entities@~1.1.1: 1244 | version "1.1.1" 1245 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 1246 | 1247 | errno@^0.1.4: 1248 | version "0.1.4" 1249 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1250 | dependencies: 1251 | prr "~0.0.0" 1252 | 1253 | error-ex@^1.2.0: 1254 | version "1.3.1" 1255 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1256 | dependencies: 1257 | is-arrayish "^0.2.1" 1258 | 1259 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 1260 | version "1.0.5" 1261 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1262 | 1263 | escodegen@^1.6.1: 1264 | version "1.9.0" 1265 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.9.0.tgz#9811a2f265dc1cd3894420ee3717064b632b8852" 1266 | dependencies: 1267 | esprima "^3.1.3" 1268 | estraverse "^4.2.0" 1269 | esutils "^2.0.2" 1270 | optionator "^0.8.1" 1271 | optionalDependencies: 1272 | source-map "~0.5.6" 1273 | 1274 | eslint-config-airbnb-base@^12.1.0: 1275 | version "12.1.0" 1276 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-12.1.0.tgz#386441e54a12ccd957b0a92564a4bafebd747944" 1277 | dependencies: 1278 | eslint-restricted-globals "^0.1.1" 1279 | 1280 | eslint-config-airbnb@^16.1.0: 1281 | version "16.1.0" 1282 | resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-16.1.0.tgz#2546bfb02cc9fe92284bf1723ccf2e87bc45ca46" 1283 | dependencies: 1284 | eslint-config-airbnb-base "^12.1.0" 1285 | 1286 | eslint-config-prettier@^2.6.0: 1287 | version "2.6.0" 1288 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-2.6.0.tgz#f21db0ebb438ad678fb98946097c4bb198befccc" 1289 | dependencies: 1290 | get-stdin "^5.0.1" 1291 | 1292 | eslint-import-resolver-node@^0.3.1: 1293 | version "0.3.1" 1294 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz#4422574cde66a9a7b099938ee4d508a199e0e3cc" 1295 | dependencies: 1296 | debug "^2.6.8" 1297 | resolve "^1.2.0" 1298 | 1299 | eslint-module-utils@^2.1.1: 1300 | version "2.1.1" 1301 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz#abaec824177613b8a95b299639e1b6facf473449" 1302 | dependencies: 1303 | debug "^2.6.8" 1304 | pkg-dir "^1.0.0" 1305 | 1306 | eslint-plugin-import@^2.8.0: 1307 | version "2.8.0" 1308 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz#fa1b6ef31fcb3c501c09859c1b86f1fc5b986894" 1309 | dependencies: 1310 | builtin-modules "^1.1.1" 1311 | contains-path "^0.1.0" 1312 | debug "^2.6.8" 1313 | doctrine "1.5.0" 1314 | eslint-import-resolver-node "^0.3.1" 1315 | eslint-module-utils "^2.1.1" 1316 | has "^1.0.1" 1317 | lodash.cond "^4.3.0" 1318 | minimatch "^3.0.3" 1319 | read-pkg-up "^2.0.0" 1320 | 1321 | eslint-restricted-globals@^0.1.1: 1322 | version "0.1.1" 1323 | resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7" 1324 | 1325 | eslint-scope@^3.7.1: 1326 | version "3.7.1" 1327 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 1328 | dependencies: 1329 | esrecurse "^4.1.0" 1330 | estraverse "^4.1.1" 1331 | 1332 | eslint@^4.9.0: 1333 | version "4.9.0" 1334 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.9.0.tgz#76879d274068261b191fe0f2f56c74c2f4208e8b" 1335 | dependencies: 1336 | ajv "^5.2.0" 1337 | babel-code-frame "^6.22.0" 1338 | chalk "^2.1.0" 1339 | concat-stream "^1.6.0" 1340 | cross-spawn "^5.1.0" 1341 | debug "^3.0.1" 1342 | doctrine "^2.0.0" 1343 | eslint-scope "^3.7.1" 1344 | espree "^3.5.1" 1345 | esquery "^1.0.0" 1346 | estraverse "^4.2.0" 1347 | esutils "^2.0.2" 1348 | file-entry-cache "^2.0.0" 1349 | functional-red-black-tree "^1.0.1" 1350 | glob "^7.1.2" 1351 | globals "^9.17.0" 1352 | ignore "^3.3.3" 1353 | imurmurhash "^0.1.4" 1354 | inquirer "^3.0.6" 1355 | is-resolvable "^1.0.0" 1356 | js-yaml "^3.9.1" 1357 | json-stable-stringify "^1.0.1" 1358 | levn "^0.3.0" 1359 | lodash "^4.17.4" 1360 | minimatch "^3.0.2" 1361 | mkdirp "^0.5.1" 1362 | natural-compare "^1.4.0" 1363 | optionator "^0.8.2" 1364 | path-is-inside "^1.0.2" 1365 | pluralize "^7.0.0" 1366 | progress "^2.0.0" 1367 | require-uncached "^1.0.3" 1368 | semver "^5.3.0" 1369 | strip-ansi "^4.0.0" 1370 | strip-json-comments "~2.0.1" 1371 | table "^4.0.1" 1372 | text-table "~0.2.0" 1373 | 1374 | espree@^3.5.1: 1375 | version "3.5.1" 1376 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.1.tgz#0c988b8ab46db53100a1954ae4ba995ddd27d87e" 1377 | dependencies: 1378 | acorn "^5.1.1" 1379 | acorn-jsx "^3.0.0" 1380 | 1381 | esprima@^3.1.3: 1382 | version "3.1.3" 1383 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" 1384 | 1385 | esprima@^4.0.0: 1386 | version "4.0.0" 1387 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1388 | 1389 | esquery@^1.0.0: 1390 | version "1.0.0" 1391 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 1392 | dependencies: 1393 | estraverse "^4.0.0" 1394 | 1395 | esrecurse@^4.1.0: 1396 | version "4.2.0" 1397 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 1398 | dependencies: 1399 | estraverse "^4.1.0" 1400 | object-assign "^4.0.1" 1401 | 1402 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: 1403 | version "4.2.0" 1404 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 1405 | 1406 | esutils@^2.0.2: 1407 | version "2.0.2" 1408 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1409 | 1410 | exec-sh@^0.2.0: 1411 | version "0.2.1" 1412 | resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.1.tgz#163b98a6e89e6b65b47c2a28d215bc1f63989c38" 1413 | dependencies: 1414 | merge "^1.1.3" 1415 | 1416 | execa@^0.7.0: 1417 | version "0.7.0" 1418 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 1419 | dependencies: 1420 | cross-spawn "^5.0.1" 1421 | get-stream "^3.0.0" 1422 | is-stream "^1.1.0" 1423 | npm-run-path "^2.0.0" 1424 | p-finally "^1.0.0" 1425 | signal-exit "^3.0.0" 1426 | strip-eof "^1.0.0" 1427 | 1428 | expand-brackets@^0.1.4: 1429 | version "0.1.5" 1430 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1431 | dependencies: 1432 | is-posix-bracket "^0.1.0" 1433 | 1434 | expand-range@^1.8.1: 1435 | version "1.8.2" 1436 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1437 | dependencies: 1438 | fill-range "^2.1.0" 1439 | 1440 | expect@^21.2.1: 1441 | version "21.2.1" 1442 | resolved "https://registry.yarnpkg.com/expect/-/expect-21.2.1.tgz#003ac2ac7005c3c29e73b38a272d4afadd6d1d7b" 1443 | dependencies: 1444 | ansi-styles "^3.2.0" 1445 | jest-diff "^21.2.1" 1446 | jest-get-type "^21.2.0" 1447 | jest-matcher-utils "^21.2.1" 1448 | jest-message-util "^21.2.1" 1449 | jest-regex-util "^21.2.0" 1450 | 1451 | extend@~3.0.0, extend@~3.0.1: 1452 | version "3.0.1" 1453 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1454 | 1455 | external-editor@^2.0.4: 1456 | version "2.0.5" 1457 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.5.tgz#52c249a3981b9ba187c7cacf5beb50bf1d91a6bc" 1458 | dependencies: 1459 | iconv-lite "^0.4.17" 1460 | jschardet "^1.4.2" 1461 | tmp "^0.0.33" 1462 | 1463 | extglob@^0.3.1: 1464 | version "0.3.2" 1465 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1466 | dependencies: 1467 | is-extglob "^1.0.0" 1468 | 1469 | extsprintf@1.3.0, extsprintf@^1.2.0: 1470 | version "1.3.0" 1471 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1472 | 1473 | fast-deep-equal@^1.0.0: 1474 | version "1.0.0" 1475 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 1476 | 1477 | fast-levenshtein@~2.0.4: 1478 | version "2.0.6" 1479 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1480 | 1481 | fb-watchman@^2.0.0: 1482 | version "2.0.0" 1483 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" 1484 | dependencies: 1485 | bser "^2.0.0" 1486 | 1487 | fbjs@^0.8.16, fbjs@^0.8.9: 1488 | version "0.8.16" 1489 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db" 1490 | dependencies: 1491 | core-js "^1.0.0" 1492 | isomorphic-fetch "^2.1.1" 1493 | loose-envify "^1.0.0" 1494 | object-assign "^4.1.0" 1495 | promise "^7.1.1" 1496 | setimmediate "^1.0.5" 1497 | ua-parser-js "^0.7.9" 1498 | 1499 | figures@^2.0.0: 1500 | version "2.0.0" 1501 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 1502 | dependencies: 1503 | escape-string-regexp "^1.0.5" 1504 | 1505 | file-entry-cache@^2.0.0: 1506 | version "2.0.0" 1507 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 1508 | dependencies: 1509 | flat-cache "^1.2.1" 1510 | object-assign "^4.0.1" 1511 | 1512 | filename-regex@^2.0.0: 1513 | version "2.0.1" 1514 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1515 | 1516 | fileset@^2.0.2: 1517 | version "2.0.3" 1518 | resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0" 1519 | dependencies: 1520 | glob "^7.0.3" 1521 | minimatch "^3.0.3" 1522 | 1523 | fill-range@^2.1.0: 1524 | version "2.2.3" 1525 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1526 | dependencies: 1527 | is-number "^2.1.0" 1528 | isobject "^2.0.0" 1529 | randomatic "^1.1.3" 1530 | repeat-element "^1.1.2" 1531 | repeat-string "^1.5.2" 1532 | 1533 | find-up@^1.0.0: 1534 | version "1.1.2" 1535 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1536 | dependencies: 1537 | path-exists "^2.0.0" 1538 | pinkie-promise "^2.0.0" 1539 | 1540 | find-up@^2.0.0, find-up@^2.1.0: 1541 | version "2.1.0" 1542 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 1543 | dependencies: 1544 | locate-path "^2.0.0" 1545 | 1546 | flat-cache@^1.2.1: 1547 | version "1.3.0" 1548 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 1549 | dependencies: 1550 | circular-json "^0.3.1" 1551 | del "^2.0.2" 1552 | graceful-fs "^4.1.2" 1553 | write "^0.2.1" 1554 | 1555 | for-in@^1.0.1: 1556 | version "1.0.2" 1557 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1558 | 1559 | for-own@^0.1.4: 1560 | version "0.1.5" 1561 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1562 | dependencies: 1563 | for-in "^1.0.1" 1564 | 1565 | forever-agent@~0.6.1: 1566 | version "0.6.1" 1567 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1568 | 1569 | form-data@~2.1.1: 1570 | version "2.1.4" 1571 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1572 | dependencies: 1573 | asynckit "^0.4.0" 1574 | combined-stream "^1.0.5" 1575 | mime-types "^2.1.12" 1576 | 1577 | form-data@~2.3.1: 1578 | version "2.3.1" 1579 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 1580 | dependencies: 1581 | asynckit "^0.4.0" 1582 | combined-stream "^1.0.5" 1583 | mime-types "^2.1.12" 1584 | 1585 | fs-readdir-recursive@^1.0.0: 1586 | version "1.0.0" 1587 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1588 | 1589 | fs.realpath@^1.0.0: 1590 | version "1.0.0" 1591 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1592 | 1593 | fsevents@^1.0.0, fsevents@^1.1.1: 1594 | version "1.1.2" 1595 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1596 | dependencies: 1597 | nan "^2.3.0" 1598 | node-pre-gyp "^0.6.36" 1599 | 1600 | fstream-ignore@^1.0.5: 1601 | version "1.0.5" 1602 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1603 | dependencies: 1604 | fstream "^1.0.0" 1605 | inherits "2" 1606 | minimatch "^3.0.0" 1607 | 1608 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1609 | version "1.0.11" 1610 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1611 | dependencies: 1612 | graceful-fs "^4.1.2" 1613 | inherits "~2.0.0" 1614 | mkdirp ">=0.5 0" 1615 | rimraf "2" 1616 | 1617 | function-bind@^1.0.2: 1618 | version "1.1.1" 1619 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1620 | 1621 | functional-red-black-tree@^1.0.1: 1622 | version "1.0.1" 1623 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1624 | 1625 | gauge@~2.7.3: 1626 | version "2.7.4" 1627 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1628 | dependencies: 1629 | aproba "^1.0.3" 1630 | console-control-strings "^1.0.0" 1631 | has-unicode "^2.0.0" 1632 | object-assign "^4.1.0" 1633 | signal-exit "^3.0.0" 1634 | string-width "^1.0.1" 1635 | strip-ansi "^3.0.1" 1636 | wide-align "^1.1.0" 1637 | 1638 | get-caller-file@^1.0.1: 1639 | version "1.0.2" 1640 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1641 | 1642 | get-stdin@^5.0.1: 1643 | version "5.0.1" 1644 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" 1645 | 1646 | get-stream@^3.0.0: 1647 | version "3.0.0" 1648 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 1649 | 1650 | getpass@^0.1.1: 1651 | version "0.1.7" 1652 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1653 | dependencies: 1654 | assert-plus "^1.0.0" 1655 | 1656 | glob-base@^0.3.0: 1657 | version "0.3.0" 1658 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1659 | dependencies: 1660 | glob-parent "^2.0.0" 1661 | is-glob "^2.0.0" 1662 | 1663 | glob-parent@^2.0.0: 1664 | version "2.0.0" 1665 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1666 | dependencies: 1667 | is-glob "^2.0.0" 1668 | 1669 | glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: 1670 | version "7.1.2" 1671 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1672 | dependencies: 1673 | fs.realpath "^1.0.0" 1674 | inflight "^1.0.4" 1675 | inherits "2" 1676 | minimatch "^3.0.4" 1677 | once "^1.3.0" 1678 | path-is-absolute "^1.0.0" 1679 | 1680 | globals@^9.17.0, globals@^9.18.0: 1681 | version "9.18.0" 1682 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1683 | 1684 | globby@^5.0.0: 1685 | version "5.0.0" 1686 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 1687 | dependencies: 1688 | array-union "^1.0.1" 1689 | arrify "^1.0.0" 1690 | glob "^7.0.3" 1691 | object-assign "^4.0.1" 1692 | pify "^2.0.0" 1693 | pinkie-promise "^2.0.0" 1694 | 1695 | graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1696 | version "4.1.11" 1697 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1698 | 1699 | "graceful-readlink@>= 1.0.0": 1700 | version "1.0.1" 1701 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1702 | 1703 | growly@^1.3.0: 1704 | version "1.3.0" 1705 | resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" 1706 | 1707 | handlebars@^4.0.3: 1708 | version "4.0.11" 1709 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc" 1710 | dependencies: 1711 | async "^1.4.0" 1712 | optimist "^0.6.1" 1713 | source-map "^0.4.4" 1714 | optionalDependencies: 1715 | uglify-js "^2.6" 1716 | 1717 | har-schema@^1.0.5: 1718 | version "1.0.5" 1719 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1720 | 1721 | har-schema@^2.0.0: 1722 | version "2.0.0" 1723 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 1724 | 1725 | har-validator@~4.2.1: 1726 | version "4.2.1" 1727 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1728 | dependencies: 1729 | ajv "^4.9.1" 1730 | har-schema "^1.0.5" 1731 | 1732 | har-validator@~5.0.3: 1733 | version "5.0.3" 1734 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 1735 | dependencies: 1736 | ajv "^5.1.0" 1737 | har-schema "^2.0.0" 1738 | 1739 | has-ansi@^2.0.0: 1740 | version "2.0.0" 1741 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1742 | dependencies: 1743 | ansi-regex "^2.0.0" 1744 | 1745 | has-flag@^1.0.0: 1746 | version "1.0.0" 1747 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1748 | 1749 | has-flag@^2.0.0: 1750 | version "2.0.0" 1751 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1752 | 1753 | has-unicode@^2.0.0: 1754 | version "2.0.1" 1755 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1756 | 1757 | has@^1.0.1: 1758 | version "1.0.1" 1759 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1760 | dependencies: 1761 | function-bind "^1.0.2" 1762 | 1763 | hawk@3.1.3, hawk@~3.1.3: 1764 | version "3.1.3" 1765 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1766 | dependencies: 1767 | boom "2.x.x" 1768 | cryptiles "2.x.x" 1769 | hoek "2.x.x" 1770 | sntp "1.x.x" 1771 | 1772 | hawk@~6.0.2: 1773 | version "6.0.2" 1774 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 1775 | dependencies: 1776 | boom "4.x.x" 1777 | cryptiles "3.x.x" 1778 | hoek "4.x.x" 1779 | sntp "2.x.x" 1780 | 1781 | he@1.1.x, he@^1.1.0, he@^1.1.1: 1782 | version "1.1.1" 1783 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1784 | 1785 | hoek@2.x.x: 1786 | version "2.16.3" 1787 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1788 | 1789 | hoek@4.x.x: 1790 | version "4.2.0" 1791 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 1792 | 1793 | hoist-non-react-statics@^1.2.0: 1794 | version "1.2.0" 1795 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz#aa448cf0986d55cc40773b17174b7dd066cb7cfb" 1796 | 1797 | home-or-tmp@^2.0.0: 1798 | version "2.0.0" 1799 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1800 | dependencies: 1801 | os-homedir "^1.0.0" 1802 | os-tmpdir "^1.0.1" 1803 | 1804 | hosted-git-info@^2.1.4: 1805 | version "2.5.0" 1806 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1807 | 1808 | html-encoding-sniffer@^1.0.1: 1809 | version "1.0.2" 1810 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 1811 | dependencies: 1812 | whatwg-encoding "^1.0.1" 1813 | 1814 | html-minifier@^3.2.3: 1815 | version "3.5.6" 1816 | resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.6.tgz#7e4e661a09999599c7d8e8a2b8d7fb7430bb5c3e" 1817 | dependencies: 1818 | camel-case "3.0.x" 1819 | clean-css "4.1.x" 1820 | commander "2.11.x" 1821 | he "1.1.x" 1822 | ncname "1.0.x" 1823 | param-case "2.1.x" 1824 | relateurl "0.2.x" 1825 | uglify-js "3.1.x" 1826 | 1827 | htmlparser2@^3.9.1, htmlparser2@^3.9.2: 1828 | version "3.9.2" 1829 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" 1830 | dependencies: 1831 | domelementtype "^1.3.0" 1832 | domhandler "^2.3.0" 1833 | domutils "^1.5.1" 1834 | entities "^1.1.1" 1835 | inherits "^2.0.1" 1836 | readable-stream "^2.0.2" 1837 | 1838 | http-signature@~1.1.0: 1839 | version "1.1.1" 1840 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1841 | dependencies: 1842 | assert-plus "^0.2.0" 1843 | jsprim "^1.2.2" 1844 | sshpk "^1.7.0" 1845 | 1846 | http-signature@~1.2.0: 1847 | version "1.2.0" 1848 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 1849 | dependencies: 1850 | assert-plus "^1.0.0" 1851 | jsprim "^1.2.2" 1852 | sshpk "^1.7.0" 1853 | 1854 | iconv-lite@0.4.13: 1855 | version "0.4.13" 1856 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1857 | 1858 | iconv-lite@^0.4.17, iconv-lite@~0.4.13: 1859 | version "0.4.19" 1860 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1861 | 1862 | ignore@^3.3.3: 1863 | version "3.3.6" 1864 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.6.tgz#b6f3196b38ed92f0c86e52f6f79b7fc4c8266c8d" 1865 | 1866 | image-size@^0.3.5: 1867 | version "0.3.5" 1868 | resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.3.5.tgz#83240eab2fb5b00b04aab8c74b0471e9cba7ad8c" 1869 | 1870 | immutable@^3.8.1: 1871 | version "3.8.2" 1872 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.2.tgz#c2439951455bb39913daf281376f1530e104adf3" 1873 | 1874 | imurmurhash@^0.1.4: 1875 | version "0.1.4" 1876 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1877 | 1878 | inflight@^1.0.4: 1879 | version "1.0.6" 1880 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1881 | dependencies: 1882 | once "^1.3.0" 1883 | wrappy "1" 1884 | 1885 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: 1886 | version "2.0.3" 1887 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1888 | 1889 | ini@^1.3.4, ini@~1.3.0: 1890 | version "1.3.4" 1891 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1892 | 1893 | inquirer@^3.0.6: 1894 | version "3.3.0" 1895 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1896 | dependencies: 1897 | ansi-escapes "^3.0.0" 1898 | chalk "^2.0.0" 1899 | cli-cursor "^2.1.0" 1900 | cli-width "^2.0.0" 1901 | external-editor "^2.0.4" 1902 | figures "^2.0.0" 1903 | lodash "^4.3.0" 1904 | mute-stream "0.0.7" 1905 | run-async "^2.2.0" 1906 | rx-lite "^4.0.8" 1907 | rx-lite-aggregates "^4.0.8" 1908 | string-width "^2.1.0" 1909 | strip-ansi "^4.0.0" 1910 | through "^2.3.6" 1911 | 1912 | invariant@^2.2.2: 1913 | version "2.2.2" 1914 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1915 | dependencies: 1916 | loose-envify "^1.0.0" 1917 | 1918 | invert-kv@^1.0.0: 1919 | version "1.0.0" 1920 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1921 | 1922 | is-arrayish@^0.2.1: 1923 | version "0.2.1" 1924 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1925 | 1926 | is-binary-path@^1.0.0: 1927 | version "1.0.1" 1928 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1929 | dependencies: 1930 | binary-extensions "^1.0.0" 1931 | 1932 | is-buffer@^1.1.5: 1933 | version "1.1.5" 1934 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1935 | 1936 | is-builtin-module@^1.0.0: 1937 | version "1.0.0" 1938 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1939 | dependencies: 1940 | builtin-modules "^1.0.0" 1941 | 1942 | is-ci@^1.0.10: 1943 | version "1.0.10" 1944 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1945 | dependencies: 1946 | ci-info "^1.0.0" 1947 | 1948 | is-dotfile@^1.0.0: 1949 | version "1.0.3" 1950 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1951 | 1952 | is-equal-shallow@^0.1.3: 1953 | version "0.1.3" 1954 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1955 | dependencies: 1956 | is-primitive "^2.0.0" 1957 | 1958 | is-extendable@^0.1.1: 1959 | version "0.1.1" 1960 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1961 | 1962 | is-extglob@^1.0.0: 1963 | version "1.0.0" 1964 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1965 | 1966 | is-finite@^1.0.0: 1967 | version "1.0.2" 1968 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1969 | dependencies: 1970 | number-is-nan "^1.0.0" 1971 | 1972 | is-fullwidth-code-point@^1.0.0: 1973 | version "1.0.0" 1974 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1975 | dependencies: 1976 | number-is-nan "^1.0.0" 1977 | 1978 | is-fullwidth-code-point@^2.0.0: 1979 | version "2.0.0" 1980 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1981 | 1982 | is-glob@^2.0.0, is-glob@^2.0.1: 1983 | version "2.0.1" 1984 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1985 | dependencies: 1986 | is-extglob "^1.0.0" 1987 | 1988 | is-number@^2.1.0: 1989 | version "2.1.0" 1990 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1991 | dependencies: 1992 | kind-of "^3.0.2" 1993 | 1994 | is-number@^3.0.0: 1995 | version "3.0.0" 1996 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1997 | dependencies: 1998 | kind-of "^3.0.2" 1999 | 2000 | is-path-cwd@^1.0.0: 2001 | version "1.0.0" 2002 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 2003 | 2004 | is-path-in-cwd@^1.0.0: 2005 | version "1.0.0" 2006 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 2007 | dependencies: 2008 | is-path-inside "^1.0.0" 2009 | 2010 | is-path-inside@^1.0.0: 2011 | version "1.0.0" 2012 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" 2013 | dependencies: 2014 | path-is-inside "^1.0.1" 2015 | 2016 | is-posix-bracket@^0.1.0: 2017 | version "0.1.1" 2018 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 2019 | 2020 | is-primitive@^2.0.0: 2021 | version "2.0.0" 2022 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 2023 | 2024 | is-promise@^2.1.0: 2025 | version "2.1.0" 2026 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 2027 | 2028 | is-resolvable@^1.0.0: 2029 | version "1.0.0" 2030 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" 2031 | dependencies: 2032 | tryit "^1.0.1" 2033 | 2034 | is-stream@^1.0.1, is-stream@^1.1.0: 2035 | version "1.1.0" 2036 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2037 | 2038 | is-typedarray@~1.0.0: 2039 | version "1.0.0" 2040 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2041 | 2042 | is-utf8@^0.2.0: 2043 | version "0.2.1" 2044 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 2045 | 2046 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2047 | version "1.0.0" 2048 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2049 | 2050 | isexe@^2.0.0: 2051 | version "2.0.0" 2052 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 2053 | 2054 | isobject@^2.0.0: 2055 | version "2.1.0" 2056 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2057 | dependencies: 2058 | isarray "1.0.0" 2059 | 2060 | isomorphic-fetch@^2.1.1: 2061 | version "2.2.1" 2062 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 2063 | dependencies: 2064 | node-fetch "^1.0.1" 2065 | whatwg-fetch ">=0.10.0" 2066 | 2067 | isstream@~0.1.2: 2068 | version "0.1.2" 2069 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2070 | 2071 | istanbul-api@^1.1.1: 2072 | version "1.2.1" 2073 | resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.2.1.tgz#0c60a0515eb11c7d65c6b50bba2c6e999acd8620" 2074 | dependencies: 2075 | async "^2.1.4" 2076 | fileset "^2.0.2" 2077 | istanbul-lib-coverage "^1.1.1" 2078 | istanbul-lib-hook "^1.1.0" 2079 | istanbul-lib-instrument "^1.9.1" 2080 | istanbul-lib-report "^1.1.2" 2081 | istanbul-lib-source-maps "^1.2.2" 2082 | istanbul-reports "^1.1.3" 2083 | js-yaml "^3.7.0" 2084 | mkdirp "^0.5.1" 2085 | once "^1.4.0" 2086 | 2087 | istanbul-lib-coverage@^1.0.1, istanbul-lib-coverage@^1.1.1: 2088 | version "1.1.1" 2089 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz#73bfb998885299415c93d38a3e9adf784a77a9da" 2090 | 2091 | istanbul-lib-hook@^1.1.0: 2092 | version "1.1.0" 2093 | resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz#8538d970372cb3716d53e55523dd54b557a8d89b" 2094 | dependencies: 2095 | append-transform "^0.4.0" 2096 | 2097 | istanbul-lib-instrument@^1.4.2, istanbul-lib-instrument@^1.7.5, istanbul-lib-instrument@^1.9.1: 2098 | version "1.9.1" 2099 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.1.tgz#250b30b3531e5d3251299fdd64b0b2c9db6b558e" 2100 | dependencies: 2101 | babel-generator "^6.18.0" 2102 | babel-template "^6.16.0" 2103 | babel-traverse "^6.18.0" 2104 | babel-types "^6.18.0" 2105 | babylon "^6.18.0" 2106 | istanbul-lib-coverage "^1.1.1" 2107 | semver "^5.3.0" 2108 | 2109 | istanbul-lib-report@^1.1.2: 2110 | version "1.1.2" 2111 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.2.tgz#922be27c13b9511b979bd1587359f69798c1d425" 2112 | dependencies: 2113 | istanbul-lib-coverage "^1.1.1" 2114 | mkdirp "^0.5.1" 2115 | path-parse "^1.0.5" 2116 | supports-color "^3.1.2" 2117 | 2118 | istanbul-lib-source-maps@^1.1.0, istanbul-lib-source-maps@^1.2.2: 2119 | version "1.2.2" 2120 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.2.tgz#750578602435f28a0c04ee6d7d9e0f2960e62c1c" 2121 | dependencies: 2122 | debug "^3.1.0" 2123 | istanbul-lib-coverage "^1.1.1" 2124 | mkdirp "^0.5.1" 2125 | rimraf "^2.6.1" 2126 | source-map "^0.5.3" 2127 | 2128 | istanbul-reports@^1.1.3: 2129 | version "1.1.3" 2130 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.1.3.tgz#3b9e1e8defb6d18b1d425da8e8b32c5a163f2d10" 2131 | dependencies: 2132 | handlebars "^4.0.3" 2133 | 2134 | jest-changed-files@^21.2.0: 2135 | version "21.2.0" 2136 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-21.2.0.tgz#5dbeecad42f5d88b482334902ce1cba6d9798d29" 2137 | dependencies: 2138 | throat "^4.0.0" 2139 | 2140 | jest-cli@^21.2.1: 2141 | version "21.2.1" 2142 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-21.2.1.tgz#9c528b6629d651911138d228bdb033c157ec8c00" 2143 | dependencies: 2144 | ansi-escapes "^3.0.0" 2145 | chalk "^2.0.1" 2146 | glob "^7.1.2" 2147 | graceful-fs "^4.1.11" 2148 | is-ci "^1.0.10" 2149 | istanbul-api "^1.1.1" 2150 | istanbul-lib-coverage "^1.0.1" 2151 | istanbul-lib-instrument "^1.4.2" 2152 | istanbul-lib-source-maps "^1.1.0" 2153 | jest-changed-files "^21.2.0" 2154 | jest-config "^21.2.1" 2155 | jest-environment-jsdom "^21.2.1" 2156 | jest-haste-map "^21.2.0" 2157 | jest-message-util "^21.2.1" 2158 | jest-regex-util "^21.2.0" 2159 | jest-resolve-dependencies "^21.2.0" 2160 | jest-runner "^21.2.1" 2161 | jest-runtime "^21.2.1" 2162 | jest-snapshot "^21.2.1" 2163 | jest-util "^21.2.1" 2164 | micromatch "^2.3.11" 2165 | node-notifier "^5.0.2" 2166 | pify "^3.0.0" 2167 | slash "^1.0.0" 2168 | string-length "^2.0.0" 2169 | strip-ansi "^4.0.0" 2170 | which "^1.2.12" 2171 | worker-farm "^1.3.1" 2172 | yargs "^9.0.0" 2173 | 2174 | jest-config@^21.2.1: 2175 | version "21.2.1" 2176 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-21.2.1.tgz#c7586c79ead0bcc1f38c401e55f964f13bf2a480" 2177 | dependencies: 2178 | chalk "^2.0.1" 2179 | glob "^7.1.1" 2180 | jest-environment-jsdom "^21.2.1" 2181 | jest-environment-node "^21.2.1" 2182 | jest-get-type "^21.2.0" 2183 | jest-jasmine2 "^21.2.1" 2184 | jest-regex-util "^21.2.0" 2185 | jest-resolve "^21.2.0" 2186 | jest-util "^21.2.1" 2187 | jest-validate "^21.2.1" 2188 | pretty-format "^21.2.1" 2189 | 2190 | jest-diff@^21.2.1: 2191 | version "21.2.1" 2192 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-21.2.1.tgz#46cccb6cab2d02ce98bc314011764bb95b065b4f" 2193 | dependencies: 2194 | chalk "^2.0.1" 2195 | diff "^3.2.0" 2196 | jest-get-type "^21.2.0" 2197 | pretty-format "^21.2.1" 2198 | 2199 | jest-docblock@^21.2.0: 2200 | version "21.2.0" 2201 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" 2202 | 2203 | jest-environment-jsdom@^21.2.1: 2204 | version "21.2.1" 2205 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-21.2.1.tgz#38d9980c8259b2a608ec232deee6289a60d9d5b4" 2206 | dependencies: 2207 | jest-mock "^21.2.0" 2208 | jest-util "^21.2.1" 2209 | jsdom "^9.12.0" 2210 | 2211 | jest-environment-node@^21.2.1: 2212 | version "21.2.1" 2213 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-21.2.1.tgz#98c67df5663c7fbe20f6e792ac2272c740d3b8c8" 2214 | dependencies: 2215 | jest-mock "^21.2.0" 2216 | jest-util "^21.2.1" 2217 | 2218 | jest-get-type@^21.2.0: 2219 | version "21.2.0" 2220 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" 2221 | 2222 | jest-haste-map@^21.2.0: 2223 | version "21.2.0" 2224 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-21.2.0.tgz#1363f0a8bb4338f24f001806571eff7a4b2ff3d8" 2225 | dependencies: 2226 | fb-watchman "^2.0.0" 2227 | graceful-fs "^4.1.11" 2228 | jest-docblock "^21.2.0" 2229 | micromatch "^2.3.11" 2230 | sane "^2.0.0" 2231 | worker-farm "^1.3.1" 2232 | 2233 | jest-jasmine2@^21.2.1: 2234 | version "21.2.1" 2235 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-21.2.1.tgz#9cc6fc108accfa97efebce10c4308548a4ea7592" 2236 | dependencies: 2237 | chalk "^2.0.1" 2238 | expect "^21.2.1" 2239 | graceful-fs "^4.1.11" 2240 | jest-diff "^21.2.1" 2241 | jest-matcher-utils "^21.2.1" 2242 | jest-message-util "^21.2.1" 2243 | jest-snapshot "^21.2.1" 2244 | p-cancelable "^0.3.0" 2245 | 2246 | jest-matcher-utils@^21.2.1: 2247 | version "21.2.1" 2248 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-21.2.1.tgz#72c826eaba41a093ac2b4565f865eb8475de0f64" 2249 | dependencies: 2250 | chalk "^2.0.1" 2251 | jest-get-type "^21.2.0" 2252 | pretty-format "^21.2.1" 2253 | 2254 | jest-message-util@^21.2.1: 2255 | version "21.2.1" 2256 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-21.2.1.tgz#bfe5d4692c84c827d1dcf41823795558f0a1acbe" 2257 | dependencies: 2258 | chalk "^2.0.1" 2259 | micromatch "^2.3.11" 2260 | slash "^1.0.0" 2261 | 2262 | jest-mock@^21.2.0: 2263 | version "21.2.0" 2264 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-21.2.0.tgz#7eb0770e7317968165f61ea2a7281131534b3c0f" 2265 | 2266 | jest-regex-util@^21.2.0: 2267 | version "21.2.0" 2268 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-21.2.0.tgz#1b1e33e63143babc3e0f2e6c9b5ba1eb34b2d530" 2269 | 2270 | jest-resolve-dependencies@^21.2.0: 2271 | version "21.2.0" 2272 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-21.2.0.tgz#9e231e371e1a736a1ad4e4b9a843bc72bfe03d09" 2273 | dependencies: 2274 | jest-regex-util "^21.2.0" 2275 | 2276 | jest-resolve@^21.2.0: 2277 | version "21.2.0" 2278 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-21.2.0.tgz#068913ad2ba6a20218e5fd32471f3874005de3a6" 2279 | dependencies: 2280 | browser-resolve "^1.11.2" 2281 | chalk "^2.0.1" 2282 | is-builtin-module "^1.0.0" 2283 | 2284 | jest-runner@^21.2.1: 2285 | version "21.2.1" 2286 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-21.2.1.tgz#194732e3e518bfb3d7cbfc0fd5871246c7e1a467" 2287 | dependencies: 2288 | jest-config "^21.2.1" 2289 | jest-docblock "^21.2.0" 2290 | jest-haste-map "^21.2.0" 2291 | jest-jasmine2 "^21.2.1" 2292 | jest-message-util "^21.2.1" 2293 | jest-runtime "^21.2.1" 2294 | jest-util "^21.2.1" 2295 | pify "^3.0.0" 2296 | throat "^4.0.0" 2297 | worker-farm "^1.3.1" 2298 | 2299 | jest-runtime@^21.2.1: 2300 | version "21.2.1" 2301 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-21.2.1.tgz#99dce15309c670442eee2ebe1ff53a3cbdbbb73e" 2302 | dependencies: 2303 | babel-core "^6.0.0" 2304 | babel-jest "^21.2.0" 2305 | babel-plugin-istanbul "^4.0.0" 2306 | chalk "^2.0.1" 2307 | convert-source-map "^1.4.0" 2308 | graceful-fs "^4.1.11" 2309 | jest-config "^21.2.1" 2310 | jest-haste-map "^21.2.0" 2311 | jest-regex-util "^21.2.0" 2312 | jest-resolve "^21.2.0" 2313 | jest-util "^21.2.1" 2314 | json-stable-stringify "^1.0.1" 2315 | micromatch "^2.3.11" 2316 | slash "^1.0.0" 2317 | strip-bom "3.0.0" 2318 | write-file-atomic "^2.1.0" 2319 | yargs "^9.0.0" 2320 | 2321 | jest-snapshot@^21.2.1: 2322 | version "21.2.1" 2323 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-21.2.1.tgz#29e49f16202416e47343e757e5eff948c07fd7b0" 2324 | dependencies: 2325 | chalk "^2.0.1" 2326 | jest-diff "^21.2.1" 2327 | jest-matcher-utils "^21.2.1" 2328 | mkdirp "^0.5.1" 2329 | natural-compare "^1.4.0" 2330 | pretty-format "^21.2.1" 2331 | 2332 | jest-util@^21.2.1: 2333 | version "21.2.1" 2334 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-21.2.1.tgz#a274b2f726b0897494d694a6c3d6a61ab819bb78" 2335 | dependencies: 2336 | callsites "^2.0.0" 2337 | chalk "^2.0.1" 2338 | graceful-fs "^4.1.11" 2339 | jest-message-util "^21.2.1" 2340 | jest-mock "^21.2.0" 2341 | jest-validate "^21.2.1" 2342 | mkdirp "^0.5.1" 2343 | 2344 | jest-validate@^21.2.1: 2345 | version "21.2.1" 2346 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7" 2347 | dependencies: 2348 | chalk "^2.0.1" 2349 | jest-get-type "^21.2.0" 2350 | leven "^2.1.0" 2351 | pretty-format "^21.2.1" 2352 | 2353 | jest@^21.2.1: 2354 | version "21.2.1" 2355 | resolved "https://registry.yarnpkg.com/jest/-/jest-21.2.1.tgz#c964e0b47383768a1438e3ccf3c3d470327604e1" 2356 | dependencies: 2357 | jest-cli "^21.2.1" 2358 | 2359 | jquery@^3.1.1: 2360 | version "3.2.1" 2361 | resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.2.1.tgz#5c4d9de652af6cd0a770154a631bba12b015c787" 2362 | 2363 | js-beautify@^1.6.8: 2364 | version "1.7.4" 2365 | resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.7.4.tgz#fa0dfa8fef594d6a6253755fe26af5d0a22cbd90" 2366 | dependencies: 2367 | config-chain "~1.1.5" 2368 | editorconfig "^0.13.2" 2369 | mkdirp "~0.5.0" 2370 | nopt "~3.0.1" 2371 | 2372 | js-tokens@^3.0.0, js-tokens@^3.0.2: 2373 | version "3.0.2" 2374 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 2375 | 2376 | js-yaml@^3.7.0, js-yaml@^3.9.1: 2377 | version "3.10.0" 2378 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 2379 | dependencies: 2380 | argparse "^1.0.7" 2381 | esprima "^4.0.0" 2382 | 2383 | jsbn@~0.1.0: 2384 | version "0.1.1" 2385 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2386 | 2387 | jschardet@^1.4.2: 2388 | version "1.5.1" 2389 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.1.tgz#c519f629f86b3a5bedba58a88d311309eec097f9" 2390 | 2391 | jsdom@^9.12.0: 2392 | version "9.12.0" 2393 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2394 | dependencies: 2395 | abab "^1.0.3" 2396 | acorn "^4.0.4" 2397 | acorn-globals "^3.1.0" 2398 | array-equal "^1.0.0" 2399 | content-type-parser "^1.0.1" 2400 | cssom ">= 0.3.2 < 0.4.0" 2401 | cssstyle ">= 0.2.37 < 0.3.0" 2402 | escodegen "^1.6.1" 2403 | html-encoding-sniffer "^1.0.1" 2404 | nwmatcher ">= 1.3.9 < 2.0.0" 2405 | parse5 "^1.5.1" 2406 | request "^2.79.0" 2407 | sax "^1.2.1" 2408 | symbol-tree "^3.2.1" 2409 | tough-cookie "^2.3.2" 2410 | webidl-conversions "^4.0.0" 2411 | whatwg-encoding "^1.0.1" 2412 | whatwg-url "^4.3.0" 2413 | xml-name-validator "^2.0.1" 2414 | 2415 | jsesc@^1.3.0: 2416 | version "1.3.0" 2417 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2418 | 2419 | jsesc@~0.5.0: 2420 | version "0.5.0" 2421 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2422 | 2423 | json-schema-traverse@^0.3.0: 2424 | version "0.3.1" 2425 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 2426 | 2427 | json-schema@0.2.3: 2428 | version "0.2.3" 2429 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2430 | 2431 | json-stable-stringify@^1.0.1: 2432 | version "1.0.1" 2433 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2434 | dependencies: 2435 | jsonify "~0.0.0" 2436 | 2437 | json-stringify-safe@~5.0.1: 2438 | version "5.0.1" 2439 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2440 | 2441 | json5@^0.5.1: 2442 | version "0.5.1" 2443 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2444 | 2445 | jsonify@~0.0.0: 2446 | version "0.0.0" 2447 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2448 | 2449 | jsprim@^1.2.2: 2450 | version "1.4.1" 2451 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 2452 | dependencies: 2453 | assert-plus "1.0.0" 2454 | extsprintf "1.3.0" 2455 | json-schema "0.2.3" 2456 | verror "1.10.0" 2457 | 2458 | juice@^4.0.2: 2459 | version "4.2.2" 2460 | resolved "https://registry.yarnpkg.com/juice/-/juice-4.2.2.tgz#da4b7ffee11ffa5fde97b973edb39e99085307a8" 2461 | dependencies: 2462 | cheerio "^0.22.0" 2463 | commander "2.9.0" 2464 | cross-spawn "^5.0.1" 2465 | deep-extend "^0.5.0" 2466 | mensch "^0.3.3" 2467 | slick "1.12.2" 2468 | web-resource-inliner "^4.2.0" 2469 | 2470 | kind-of@^3.0.2: 2471 | version "3.2.2" 2472 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 2473 | dependencies: 2474 | is-buffer "^1.1.5" 2475 | 2476 | kind-of@^4.0.0: 2477 | version "4.0.0" 2478 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 2479 | dependencies: 2480 | is-buffer "^1.1.5" 2481 | 2482 | lazy-cache@^1.0.3: 2483 | version "1.0.4" 2484 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2485 | 2486 | lcid@^1.0.0: 2487 | version "1.0.0" 2488 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 2489 | dependencies: 2490 | invert-kv "^1.0.0" 2491 | 2492 | leven@^2.1.0: 2493 | version "2.1.0" 2494 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 2495 | 2496 | levn@^0.3.0, levn@~0.3.0: 2497 | version "0.3.0" 2498 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2499 | dependencies: 2500 | prelude-ls "~1.1.2" 2501 | type-check "~0.3.2" 2502 | 2503 | load-json-file@^1.0.0: 2504 | version "1.1.0" 2505 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 2506 | dependencies: 2507 | graceful-fs "^4.1.2" 2508 | parse-json "^2.2.0" 2509 | pify "^2.0.0" 2510 | pinkie-promise "^2.0.0" 2511 | strip-bom "^2.0.0" 2512 | 2513 | load-json-file@^2.0.0: 2514 | version "2.0.0" 2515 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 2516 | dependencies: 2517 | graceful-fs "^4.1.2" 2518 | parse-json "^2.2.0" 2519 | pify "^2.0.0" 2520 | strip-bom "^3.0.0" 2521 | 2522 | locate-path@^2.0.0: 2523 | version "2.0.0" 2524 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 2525 | dependencies: 2526 | p-locate "^2.0.0" 2527 | path-exists "^3.0.0" 2528 | 2529 | lodash.assignin@^4.0.9: 2530 | version "4.2.0" 2531 | resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" 2532 | 2533 | lodash.bind@^4.1.4: 2534 | version "4.2.1" 2535 | resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" 2536 | 2537 | lodash.cond@^4.3.0: 2538 | version "4.5.2" 2539 | resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5" 2540 | 2541 | lodash.defaults@^4.0.1: 2542 | version "4.2.0" 2543 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" 2544 | 2545 | lodash.filter@^4.4.0: 2546 | version "4.6.0" 2547 | resolved "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" 2548 | 2549 | lodash.flatten@^4.2.0: 2550 | version "4.4.0" 2551 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 2552 | 2553 | lodash.foreach@^4.3.0: 2554 | version "4.5.0" 2555 | resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" 2556 | 2557 | lodash.map@^4.4.0: 2558 | version "4.6.0" 2559 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" 2560 | 2561 | lodash.merge@^4.4.0: 2562 | version "4.6.0" 2563 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 2564 | 2565 | lodash.pick@^4.2.1: 2566 | version "4.4.0" 2567 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 2568 | 2569 | lodash.reduce@^4.4.0: 2570 | version "4.6.0" 2571 | resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" 2572 | 2573 | lodash.reject@^4.4.0: 2574 | version "4.6.0" 2575 | resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" 2576 | 2577 | lodash.some@^4.4.0: 2578 | version "4.6.0" 2579 | resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" 2580 | 2581 | lodash.unescape@^4.0.1: 2582 | version "4.0.1" 2583 | resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c" 2584 | 2585 | lodash@^4.14.0, lodash@^4.17.2, lodash@^4.17.4, lodash@^4.3.0: 2586 | version "4.17.4" 2587 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2588 | 2589 | longest@^1.0.1: 2590 | version "1.0.1" 2591 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2592 | 2593 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: 2594 | version "1.3.1" 2595 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2596 | dependencies: 2597 | js-tokens "^3.0.0" 2598 | 2599 | lower-case@^1.1.1: 2600 | version "1.1.4" 2601 | resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" 2602 | 2603 | lru-cache@^3.2.0: 2604 | version "3.2.0" 2605 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-3.2.0.tgz#71789b3b7f5399bec8565dda38aa30d2a097efee" 2606 | dependencies: 2607 | pseudomap "^1.0.1" 2608 | 2609 | lru-cache@^4.0.1: 2610 | version "4.1.1" 2611 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 2612 | dependencies: 2613 | pseudomap "^1.0.2" 2614 | yallist "^2.1.2" 2615 | 2616 | makeerror@1.0.x: 2617 | version "1.0.11" 2618 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 2619 | dependencies: 2620 | tmpl "1.0.x" 2621 | 2622 | mem@^1.1.0: 2623 | version "1.1.0" 2624 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 2625 | dependencies: 2626 | mimic-fn "^1.0.0" 2627 | 2628 | mensch@^0.3.3: 2629 | version "0.3.3" 2630 | resolved "https://registry.yarnpkg.com/mensch/-/mensch-0.3.3.tgz#e200ff4dd823717f8e0563b32e3f5481fca262b2" 2631 | 2632 | merge@^1.1.3: 2633 | version "1.2.0" 2634 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 2635 | 2636 | micromatch@^2.1.5, micromatch@^2.3.11: 2637 | version "2.3.11" 2638 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2639 | dependencies: 2640 | arr-diff "^2.0.0" 2641 | array-unique "^0.2.1" 2642 | braces "^1.8.2" 2643 | expand-brackets "^0.1.4" 2644 | extglob "^0.3.1" 2645 | filename-regex "^2.0.0" 2646 | is-extglob "^1.0.0" 2647 | is-glob "^2.0.1" 2648 | kind-of "^3.0.2" 2649 | normalize-path "^2.0.1" 2650 | object.omit "^2.0.0" 2651 | parse-glob "^3.0.4" 2652 | regex-cache "^0.4.2" 2653 | 2654 | mime-db@~1.30.0: 2655 | version "1.30.0" 2656 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 2657 | 2658 | mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.7: 2659 | version "2.1.17" 2660 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 2661 | dependencies: 2662 | mime-db "~1.30.0" 2663 | 2664 | mimer@^0.2.1: 2665 | version "0.2.1" 2666 | resolved "https://registry.yarnpkg.com/mimer/-/mimer-0.2.1.tgz#c63c5a17fe86423f5161a85d55c3ed5189baaffc" 2667 | 2668 | mimic-fn@^1.0.0: 2669 | version "1.1.0" 2670 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 2671 | 2672 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: 2673 | version "3.0.4" 2674 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 2675 | dependencies: 2676 | brace-expansion "^1.1.7" 2677 | 2678 | minimist@0.0.8: 2679 | version "0.0.8" 2680 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2681 | 2682 | minimist@^1.1.1, minimist@^1.2.0: 2683 | version "1.2.0" 2684 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2685 | 2686 | minimist@~0.0.1: 2687 | version "0.0.10" 2688 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 2689 | 2690 | mjml-accordion@~3.3.5: 2691 | version "3.3.5" 2692 | resolved "https://registry.yarnpkg.com/mjml-accordion/-/mjml-accordion-3.3.5.tgz#758527fcc09eff37c6e01a1c799b4df302cf8c9c" 2693 | dependencies: 2694 | classnames "^2.2.5" 2695 | lodash "^4.17.4" 2696 | mjml-core "~3.3.5" 2697 | react "^15.4.2" 2698 | 2699 | mjml-button@~3.3.5: 2700 | version "3.3.5" 2701 | resolved "https://registry.yarnpkg.com/mjml-button/-/mjml-button-3.3.5.tgz#62064a932bb91cf522793be46ac42651acf5c82c" 2702 | dependencies: 2703 | lodash "^4.17.4" 2704 | mjml-core "~3.3.5" 2705 | react "^15.4.2" 2706 | 2707 | mjml-carousel@~3.3.5: 2708 | version "3.3.5" 2709 | resolved "https://registry.yarnpkg.com/mjml-carousel/-/mjml-carousel-3.3.5.tgz#27e61770573c52b67cebd8a00367e9ce822b068b" 2710 | dependencies: 2711 | lodash "^4.17.4" 2712 | mjml-core "~3.3.5" 2713 | react "^15.4.2" 2714 | 2715 | mjml-cli@~3.3.5: 2716 | version "3.3.5" 2717 | resolved "https://registry.yarnpkg.com/mjml-cli/-/mjml-cli-3.3.5.tgz#4d15e3a209d9839be37a595060da3b931dda4708" 2718 | dependencies: 2719 | chokidar "^1.6.1" 2720 | commander "^2.9.0" 2721 | glob "^7.1.1" 2722 | lodash "^4.17.4" 2723 | mjml-core "~3.3.5" 2724 | mz "^2.6.0" 2725 | 2726 | mjml-column@~3.3.5: 2727 | version "3.3.5" 2728 | resolved "https://registry.yarnpkg.com/mjml-column/-/mjml-column-3.3.5.tgz#447e56a2f6ec234e287b0ccf39708b5fe1a3f2bc" 2729 | dependencies: 2730 | classnames "^2.2.5" 2731 | lodash "^4.17.4" 2732 | mjml-core "~3.3.5" 2733 | react "^15.4.2" 2734 | 2735 | mjml-container@~3.3.5: 2736 | version "3.3.5" 2737 | resolved "https://registry.yarnpkg.com/mjml-container/-/mjml-container-3.3.5.tgz#cf5886c47717a4c29e1d9aa76c4ca26417506cd1" 2738 | dependencies: 2739 | classnames "^2.2.5" 2740 | mjml-core "~3.3.5" 2741 | react "^15.4.2" 2742 | 2743 | mjml-core@~3.3.5: 2744 | version "3.3.5" 2745 | resolved "https://registry.yarnpkg.com/mjml-core/-/mjml-core-3.3.5.tgz#52113ee20790b9d9b0b5f43c088887c93ceb2580" 2746 | dependencies: 2747 | cheerio "^0.22.0" 2748 | classnames "^2.2.5" 2749 | debug "^2.6.0" 2750 | he "^1.1.0" 2751 | hoist-non-react-statics "^1.2.0" 2752 | html-minifier "^3.2.3" 2753 | immutable "^3.8.1" 2754 | jquery "^3.1.1" 2755 | js-beautify "^1.6.8" 2756 | juice "^4.0.2" 2757 | lodash "^4.17.4" 2758 | mjml-validator "~3.3.3" 2759 | react "^15.4.2" 2760 | react-dom "^15.4.2" 2761 | warning "^3.0.0" 2762 | 2763 | mjml-divider@~3.3.5: 2764 | version "3.3.5" 2765 | resolved "https://registry.yarnpkg.com/mjml-divider/-/mjml-divider-3.3.5.tgz#80302bbee963922e163a724468a0615d032192e5" 2766 | dependencies: 2767 | lodash "^4.17.4" 2768 | mjml-core "~3.3.5" 2769 | react "^15.4.2" 2770 | 2771 | mjml-group@~3.3.5: 2772 | version "3.3.5" 2773 | resolved "https://registry.yarnpkg.com/mjml-group/-/mjml-group-3.3.5.tgz#7c395e3b61e42439ec5c7ec49cd971be59d26630" 2774 | dependencies: 2775 | classnames "^2.2.5" 2776 | lodash "^4.17.4" 2777 | mjml-core "~3.3.5" 2778 | react "^15.4.2" 2779 | 2780 | mjml-head-attributes@~3.3.5: 2781 | version "3.3.5" 2782 | resolved "https://registry.yarnpkg.com/mjml-head-attributes/-/mjml-head-attributes-3.3.5.tgz#39baee438a247f7780b7229df4933cb4968f3640" 2783 | dependencies: 2784 | lodash "^4.17.4" 2785 | 2786 | mjml-head-font@~3.3.5: 2787 | version "3.3.5" 2788 | resolved "https://registry.yarnpkg.com/mjml-head-font/-/mjml-head-font-3.3.5.tgz#14ddb973884a7bf9f8821843471fc6ca3bbe5375" 2789 | dependencies: 2790 | lodash "^4.17.4" 2791 | 2792 | mjml-head-preview@~3.3.5: 2793 | version "3.3.5" 2794 | resolved "https://registry.yarnpkg.com/mjml-head-preview/-/mjml-head-preview-3.3.5.tgz#6cbce396ab1e7ababf6d2db7dc050b52803f40ac" 2795 | 2796 | mjml-head-style@~3.3.5: 2797 | version "3.3.5" 2798 | resolved "https://registry.yarnpkg.com/mjml-head-style/-/mjml-head-style-3.3.5.tgz#d0c9b7f1005189b5f610f72fcca12d0a7dfb3637" 2799 | 2800 | mjml-head-title@~3.3.5: 2801 | version "3.3.5" 2802 | resolved "https://registry.yarnpkg.com/mjml-head-title/-/mjml-head-title-3.3.5.tgz#b576f7ff88745a6cdbb931ab1667b0a9abe333ab" 2803 | 2804 | mjml-hero@~3.3.5: 2805 | version "3.3.5" 2806 | resolved "https://registry.yarnpkg.com/mjml-hero/-/mjml-hero-3.3.5.tgz#e7e2a9a74f53ad12715758793118d8aa905fff0a" 2807 | dependencies: 2808 | classnames "^2.2.5" 2809 | lodash "^4.17.4" 2810 | mjml-core "~3.3.5" 2811 | react "^15.4.2" 2812 | 2813 | mjml-html@~3.3.5: 2814 | version "3.3.5" 2815 | resolved "https://registry.yarnpkg.com/mjml-html/-/mjml-html-3.3.5.tgz#2d996dd056a68214b541f60e66562428ff51725e" 2816 | dependencies: 2817 | lodash "^4.17.4" 2818 | mjml-core "~3.3.5" 2819 | react "^15.4.2" 2820 | 2821 | mjml-image@~3.3.3, mjml-image@~3.3.5: 2822 | version "3.3.5" 2823 | resolved "https://registry.yarnpkg.com/mjml-image/-/mjml-image-3.3.5.tgz#83dff9ae0b0752b4efa2032085bdf67cb983acdf" 2824 | dependencies: 2825 | lodash "^4.17.4" 2826 | mjml-core "~3.3.5" 2827 | react "^15.4.2" 2828 | 2829 | mjml-invoice@~3.3.5: 2830 | version "3.3.5" 2831 | resolved "https://registry.yarnpkg.com/mjml-invoice/-/mjml-invoice-3.3.5.tgz#3d727cb994998dfd5cdd1bee8f2a1b6e9e6de966" 2832 | dependencies: 2833 | he "^1.1.1" 2834 | lodash "^4.17.4" 2835 | mjml-core "~3.3.5" 2836 | mjml-table "~3.3.3" 2837 | numeral "^2.0.4" 2838 | react "^15.4.2" 2839 | 2840 | mjml-list@~3.3.5: 2841 | version "3.3.5" 2842 | resolved "https://registry.yarnpkg.com/mjml-list/-/mjml-list-3.3.5.tgz#10499b023869d184a515ea0c292aaac74bd7be13" 2843 | dependencies: 2844 | lodash "^4.17.4" 2845 | mjml-core "~3.3.5" 2846 | react "^15.4.2" 2847 | 2848 | mjml-location@~3.3.5: 2849 | version "3.3.5" 2850 | resolved "https://registry.yarnpkg.com/mjml-location/-/mjml-location-3.3.5.tgz#48090be77f8ae316a8de84ace51dad305ced37ec" 2851 | dependencies: 2852 | lodash "^4.17.4" 2853 | mjml-core "~3.3.5" 2854 | mjml-image "~3.3.3" 2855 | mjml-text "~3.3.3" 2856 | react "^15.4.2" 2857 | 2858 | mjml-navbar@~3.3.5: 2859 | version "3.3.5" 2860 | resolved "https://registry.yarnpkg.com/mjml-navbar/-/mjml-navbar-3.3.5.tgz#9ccd8fc6dfb64437cc9c75b569de4e8ee4466dfa" 2861 | dependencies: 2862 | lodash "^4.17.4" 2863 | mjml-core "~3.3.5" 2864 | mjml-section "~3.3.3" 2865 | react "^15.4.2" 2866 | 2867 | mjml-raw@~3.3.5: 2868 | version "3.3.5" 2869 | resolved "https://registry.yarnpkg.com/mjml-raw/-/mjml-raw-3.3.5.tgz#4876f4c12dfe45ab8e6e3570b97fbcc5caa316af" 2870 | dependencies: 2871 | mjml-core "~3.3.5" 2872 | react "^15.4.2" 2873 | 2874 | mjml-section@~3.3.3, mjml-section@~3.3.5: 2875 | version "3.3.5" 2876 | resolved "https://registry.yarnpkg.com/mjml-section/-/mjml-section-3.3.5.tgz#dc2ce846ad0bd55579babdbb2d9635a47956f90c" 2877 | dependencies: 2878 | lodash "^4.17.4" 2879 | mjml-core "~3.3.5" 2880 | react "^15.4.2" 2881 | 2882 | mjml-social@~3.3.5: 2883 | version "3.3.5" 2884 | resolved "https://registry.yarnpkg.com/mjml-social/-/mjml-social-3.3.5.tgz#2da80bd3ee1e0816427f26f4bb303c0d6cea5884" 2885 | dependencies: 2886 | lodash "^4.17.4" 2887 | mjml-core "~3.3.5" 2888 | react "^15.4.2" 2889 | 2890 | mjml-spacer@~3.3.5: 2891 | version "3.3.5" 2892 | resolved "https://registry.yarnpkg.com/mjml-spacer/-/mjml-spacer-3.3.5.tgz#2c9b0715641d41cd5f94cb16ca758e1c84837411" 2893 | dependencies: 2894 | mjml-core "~3.3.5" 2895 | react "^15.4.2" 2896 | 2897 | mjml-table@~3.3.3, mjml-table@~3.3.5: 2898 | version "3.3.5" 2899 | resolved "https://registry.yarnpkg.com/mjml-table/-/mjml-table-3.3.5.tgz#275a6edb4e2808c0c1922891090d868ce1184080" 2900 | dependencies: 2901 | mjml-core "~3.3.5" 2902 | react "^15.4.2" 2903 | 2904 | mjml-text@~3.3.3, mjml-text@~3.3.5: 2905 | version "3.3.5" 2906 | resolved "https://registry.yarnpkg.com/mjml-text/-/mjml-text-3.3.5.tgz#7e23cc99461539d018624c3146a26c86b5c100bb" 2907 | dependencies: 2908 | classnames "^2.2.5" 2909 | lodash "^4.17.4" 2910 | mjml-core "~3.3.5" 2911 | react "^15.4.2" 2912 | 2913 | mjml-validator@~3.3.3: 2914 | version "3.3.5" 2915 | resolved "https://registry.yarnpkg.com/mjml-validator/-/mjml-validator-3.3.5.tgz#025733dc7528221f3d227f05204e25870e1285a3" 2916 | dependencies: 2917 | lodash "^4.17.4" 2918 | warning "^3.0.0" 2919 | 2920 | mjml-wrapper@~3.3.5: 2921 | version "3.3.5" 2922 | resolved "https://registry.yarnpkg.com/mjml-wrapper/-/mjml-wrapper-3.3.5.tgz#580860c86b7e3863468b4d549fbd2e108011e674" 2923 | dependencies: 2924 | lodash "^4.17.2" 2925 | mjml-core "~3.3.5" 2926 | mjml-section "~3.3.3" 2927 | react "^15.4.1" 2928 | 2929 | mjml@^3.3.5: 2930 | version "3.3.5" 2931 | resolved "https://registry.yarnpkg.com/mjml/-/mjml-3.3.5.tgz#e914f8edaad364f88875a8f9f793d81fd774ae35" 2932 | dependencies: 2933 | lodash "^4.17.4" 2934 | mjml-accordion "~3.3.5" 2935 | mjml-button "~3.3.5" 2936 | mjml-carousel "~3.3.5" 2937 | mjml-cli "~3.3.5" 2938 | mjml-column "~3.3.5" 2939 | mjml-container "~3.3.5" 2940 | mjml-core "~3.3.5" 2941 | mjml-divider "~3.3.5" 2942 | mjml-group "~3.3.5" 2943 | mjml-head-attributes "~3.3.5" 2944 | mjml-head-font "~3.3.5" 2945 | mjml-head-preview "~3.3.5" 2946 | mjml-head-style "~3.3.5" 2947 | mjml-head-title "~3.3.5" 2948 | mjml-hero "~3.3.5" 2949 | mjml-html "~3.3.5" 2950 | mjml-image "~3.3.5" 2951 | mjml-invoice "~3.3.5" 2952 | mjml-list "~3.3.5" 2953 | mjml-location "~3.3.5" 2954 | mjml-navbar "~3.3.5" 2955 | mjml-raw "~3.3.5" 2956 | mjml-section "~3.3.5" 2957 | mjml-social "~3.3.5" 2958 | mjml-spacer "~3.3.5" 2959 | mjml-table "~3.3.5" 2960 | mjml-text "~3.3.5" 2961 | mjml-wrapper "~3.3.5" 2962 | 2963 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0: 2964 | version "0.5.1" 2965 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2966 | dependencies: 2967 | minimist "0.0.8" 2968 | 2969 | ms@2.0.0: 2970 | version "2.0.0" 2971 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 2972 | 2973 | mute-stream@0.0.7: 2974 | version "0.0.7" 2975 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 2976 | 2977 | mz@^2.6.0: 2978 | version "2.7.0" 2979 | resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" 2980 | dependencies: 2981 | any-promise "^1.0.0" 2982 | object-assign "^4.0.1" 2983 | thenify-all "^1.0.0" 2984 | 2985 | nan@^2.3.0: 2986 | version "2.7.0" 2987 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 2988 | 2989 | natural-compare@^1.4.0: 2990 | version "1.4.0" 2991 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2992 | 2993 | ncname@1.0.x: 2994 | version "1.0.0" 2995 | resolved "https://registry.yarnpkg.com/ncname/-/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c" 2996 | dependencies: 2997 | xml-char-classes "^1.0.0" 2998 | 2999 | no-case@^2.2.0: 3000 | version "2.3.2" 3001 | resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" 3002 | dependencies: 3003 | lower-case "^1.1.1" 3004 | 3005 | node-fetch@^1.0.1: 3006 | version "1.7.3" 3007 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 3008 | dependencies: 3009 | encoding "^0.1.11" 3010 | is-stream "^1.0.1" 3011 | 3012 | node-int64@^0.4.0: 3013 | version "0.4.0" 3014 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 3015 | 3016 | node-notifier@^5.0.2: 3017 | version "5.1.2" 3018 | resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.1.2.tgz#2fa9e12605fa10009d44549d6fcd8a63dde0e4ff" 3019 | dependencies: 3020 | growly "^1.3.0" 3021 | semver "^5.3.0" 3022 | shellwords "^0.1.0" 3023 | which "^1.2.12" 3024 | 3025 | node-pre-gyp@^0.6.36: 3026 | version "0.6.38" 3027 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.38.tgz#e92a20f83416415bb4086f6d1fb78b3da73d113d" 3028 | dependencies: 3029 | hawk "3.1.3" 3030 | mkdirp "^0.5.1" 3031 | nopt "^4.0.1" 3032 | npmlog "^4.0.2" 3033 | rc "^1.1.7" 3034 | request "2.81.0" 3035 | rimraf "^2.6.1" 3036 | semver "^5.3.0" 3037 | tar "^2.2.1" 3038 | tar-pack "^3.4.0" 3039 | 3040 | nopt@^4.0.1: 3041 | version "4.0.1" 3042 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 3043 | dependencies: 3044 | abbrev "1" 3045 | osenv "^0.1.4" 3046 | 3047 | nopt@~3.0.1: 3048 | version "3.0.6" 3049 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 3050 | dependencies: 3051 | abbrev "1" 3052 | 3053 | normalize-package-data@^2.3.2: 3054 | version "2.4.0" 3055 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 3056 | dependencies: 3057 | hosted-git-info "^2.1.4" 3058 | is-builtin-module "^1.0.0" 3059 | semver "2 || 3 || 4 || 5" 3060 | validate-npm-package-license "^3.0.1" 3061 | 3062 | normalize-path@^2.0.0, normalize-path@^2.0.1: 3063 | version "2.1.1" 3064 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 3065 | dependencies: 3066 | remove-trailing-separator "^1.0.1" 3067 | 3068 | npm-run-path@^2.0.0: 3069 | version "2.0.2" 3070 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 3071 | dependencies: 3072 | path-key "^2.0.0" 3073 | 3074 | npmlog@^4.0.2: 3075 | version "4.1.2" 3076 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 3077 | dependencies: 3078 | are-we-there-yet "~1.1.2" 3079 | console-control-strings "~1.1.0" 3080 | gauge "~2.7.3" 3081 | set-blocking "~2.0.0" 3082 | 3083 | nth-check@~1.0.1: 3084 | version "1.0.1" 3085 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" 3086 | dependencies: 3087 | boolbase "~1.0.0" 3088 | 3089 | number-is-nan@^1.0.0: 3090 | version "1.0.1" 3091 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 3092 | 3093 | numeral@^2.0.4: 3094 | version "2.0.6" 3095 | resolved "https://registry.yarnpkg.com/numeral/-/numeral-2.0.6.tgz#4ad080936d443c2561aed9f2197efffe25f4e506" 3096 | 3097 | "nwmatcher@>= 1.3.9 < 2.0.0": 3098 | version "1.4.3" 3099 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.4.3.tgz#64348e3b3d80f035b40ac11563d278f8b72db89c" 3100 | 3101 | oauth-sign@~0.8.1, oauth-sign@~0.8.2: 3102 | version "0.8.2" 3103 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 3104 | 3105 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 3106 | version "4.1.1" 3107 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 3108 | 3109 | object.omit@^2.0.0: 3110 | version "2.0.1" 3111 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 3112 | dependencies: 3113 | for-own "^0.1.4" 3114 | is-extendable "^0.1.1" 3115 | 3116 | once@^1.3.0, once@^1.3.3, once@^1.4.0: 3117 | version "1.4.0" 3118 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 3119 | dependencies: 3120 | wrappy "1" 3121 | 3122 | onetime@^2.0.0: 3123 | version "2.0.1" 3124 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 3125 | dependencies: 3126 | mimic-fn "^1.0.0" 3127 | 3128 | optimist@^0.6.1: 3129 | version "0.6.1" 3130 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 3131 | dependencies: 3132 | minimist "~0.0.1" 3133 | wordwrap "~0.0.2" 3134 | 3135 | optionator@^0.8.1, optionator@^0.8.2: 3136 | version "0.8.2" 3137 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 3138 | dependencies: 3139 | deep-is "~0.1.3" 3140 | fast-levenshtein "~2.0.4" 3141 | levn "~0.3.0" 3142 | prelude-ls "~1.1.2" 3143 | type-check "~0.3.2" 3144 | wordwrap "~1.0.0" 3145 | 3146 | os-homedir@^1.0.0: 3147 | version "1.0.2" 3148 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 3149 | 3150 | os-locale@^2.0.0: 3151 | version "2.1.0" 3152 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 3153 | dependencies: 3154 | execa "^0.7.0" 3155 | lcid "^1.0.0" 3156 | mem "^1.1.0" 3157 | 3158 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 3159 | version "1.0.2" 3160 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3161 | 3162 | osenv@^0.1.4: 3163 | version "0.1.4" 3164 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 3165 | dependencies: 3166 | os-homedir "^1.0.0" 3167 | os-tmpdir "^1.0.0" 3168 | 3169 | output-file-sync@^1.1.2: 3170 | version "1.1.2" 3171 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 3172 | dependencies: 3173 | graceful-fs "^4.1.4" 3174 | mkdirp "^0.5.1" 3175 | object-assign "^4.1.0" 3176 | 3177 | p-cancelable@^0.3.0: 3178 | version "0.3.0" 3179 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" 3180 | 3181 | p-finally@^1.0.0: 3182 | version "1.0.0" 3183 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 3184 | 3185 | p-limit@^1.1.0: 3186 | version "1.1.0" 3187 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 3188 | 3189 | p-locate@^2.0.0: 3190 | version "2.0.0" 3191 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 3192 | dependencies: 3193 | p-limit "^1.1.0" 3194 | 3195 | param-case@2.1.x: 3196 | version "2.1.1" 3197 | resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" 3198 | dependencies: 3199 | no-case "^2.2.0" 3200 | 3201 | parse-glob@^3.0.4: 3202 | version "3.0.4" 3203 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 3204 | dependencies: 3205 | glob-base "^0.3.0" 3206 | is-dotfile "^1.0.0" 3207 | is-extglob "^1.0.0" 3208 | is-glob "^2.0.0" 3209 | 3210 | parse-json@^2.2.0: 3211 | version "2.2.0" 3212 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 3213 | dependencies: 3214 | error-ex "^1.2.0" 3215 | 3216 | parse5@^1.5.1: 3217 | version "1.5.1" 3218 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 3219 | 3220 | path-exists@^2.0.0: 3221 | version "2.1.0" 3222 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 3223 | dependencies: 3224 | pinkie-promise "^2.0.0" 3225 | 3226 | path-exists@^3.0.0: 3227 | version "3.0.0" 3228 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 3229 | 3230 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 3231 | version "1.0.1" 3232 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 3233 | 3234 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 3235 | version "1.0.2" 3236 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 3237 | 3238 | path-key@^2.0.0: 3239 | version "2.0.1" 3240 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 3241 | 3242 | path-parse@^1.0.5: 3243 | version "1.0.5" 3244 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 3245 | 3246 | path-type@^1.0.0: 3247 | version "1.1.0" 3248 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 3249 | dependencies: 3250 | graceful-fs "^4.1.2" 3251 | pify "^2.0.0" 3252 | pinkie-promise "^2.0.0" 3253 | 3254 | path-type@^2.0.0: 3255 | version "2.0.0" 3256 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 3257 | dependencies: 3258 | pify "^2.0.0" 3259 | 3260 | performance-now@^0.2.0: 3261 | version "0.2.0" 3262 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 3263 | 3264 | performance-now@^2.1.0: 3265 | version "2.1.0" 3266 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 3267 | 3268 | pify@^2.0.0: 3269 | version "2.3.0" 3270 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 3271 | 3272 | pify@^3.0.0: 3273 | version "3.0.0" 3274 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 3275 | 3276 | pinkie-promise@^2.0.0: 3277 | version "2.0.1" 3278 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 3279 | dependencies: 3280 | pinkie "^2.0.0" 3281 | 3282 | pinkie@^2.0.0: 3283 | version "2.0.4" 3284 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 3285 | 3286 | pkg-dir@^1.0.0: 3287 | version "1.0.0" 3288 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 3289 | dependencies: 3290 | find-up "^1.0.0" 3291 | 3292 | pluralize@^7.0.0: 3293 | version "7.0.0" 3294 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 3295 | 3296 | prelude-ls@~1.1.2: 3297 | version "1.1.2" 3298 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 3299 | 3300 | preserve@^0.2.0: 3301 | version "0.2.0" 3302 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 3303 | 3304 | prettier@^1.7.4: 3305 | version "1.7.4" 3306 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.7.4.tgz#5e8624ae9363c80f95ec644584ecdf55d74f93fa" 3307 | 3308 | pretty-format@^21.2.1: 3309 | version "21.2.1" 3310 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.2.1.tgz#ae5407f3cf21066cd011aa1ba5fce7b6a2eddb36" 3311 | dependencies: 3312 | ansi-regex "^3.0.0" 3313 | ansi-styles "^3.2.0" 3314 | 3315 | private@^0.1.6, private@^0.1.7: 3316 | version "0.1.8" 3317 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 3318 | 3319 | process-nextick-args@~1.0.6: 3320 | version "1.0.7" 3321 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 3322 | 3323 | progress@^2.0.0: 3324 | version "2.0.0" 3325 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 3326 | 3327 | promise@^7.1.1: 3328 | version "7.3.1" 3329 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 3330 | dependencies: 3331 | asap "~2.0.3" 3332 | 3333 | prop-types@^15.5.10: 3334 | version "15.6.0" 3335 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.0.tgz#ceaf083022fc46b4a35f69e13ef75aed0d639856" 3336 | dependencies: 3337 | fbjs "^0.8.16" 3338 | loose-envify "^1.3.1" 3339 | object-assign "^4.1.1" 3340 | 3341 | proto-list@~1.2.1: 3342 | version "1.2.4" 3343 | resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 3344 | 3345 | prr@~0.0.0: 3346 | version "0.0.0" 3347 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 3348 | 3349 | pseudomap@^1.0.1, pseudomap@^1.0.2: 3350 | version "1.0.2" 3351 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 3352 | 3353 | punycode@^1.4.1: 3354 | version "1.4.1" 3355 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 3356 | 3357 | qs@~6.4.0: 3358 | version "6.4.0" 3359 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 3360 | 3361 | qs@~6.5.1: 3362 | version "6.5.1" 3363 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 3364 | 3365 | randomatic@^1.1.3: 3366 | version "1.1.7" 3367 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 3368 | dependencies: 3369 | is-number "^3.0.0" 3370 | kind-of "^4.0.0" 3371 | 3372 | rc@^1.1.7: 3373 | version "1.2.2" 3374 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 3375 | dependencies: 3376 | deep-extend "~0.4.0" 3377 | ini "~1.3.0" 3378 | minimist "^1.2.0" 3379 | strip-json-comments "~2.0.1" 3380 | 3381 | react-dom@^15.4.2: 3382 | version "15.6.2" 3383 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.6.2.tgz#41cfadf693b757faf2708443a1d1fd5a02bef730" 3384 | dependencies: 3385 | fbjs "^0.8.9" 3386 | loose-envify "^1.1.0" 3387 | object-assign "^4.1.0" 3388 | prop-types "^15.5.10" 3389 | 3390 | react@^15.4.1, react@^15.4.2: 3391 | version "15.6.2" 3392 | resolved "https://registry.yarnpkg.com/react/-/react-15.6.2.tgz#dba0434ab439cfe82f108f0f511663908179aa72" 3393 | dependencies: 3394 | create-react-class "^15.6.0" 3395 | fbjs "^0.8.9" 3396 | loose-envify "^1.1.0" 3397 | object-assign "^4.1.0" 3398 | prop-types "^15.5.10" 3399 | 3400 | read-pkg-up@^1.0.1: 3401 | version "1.0.1" 3402 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 3403 | dependencies: 3404 | find-up "^1.0.0" 3405 | read-pkg "^1.0.0" 3406 | 3407 | read-pkg-up@^2.0.0: 3408 | version "2.0.0" 3409 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 3410 | dependencies: 3411 | find-up "^2.0.0" 3412 | read-pkg "^2.0.0" 3413 | 3414 | read-pkg@^1.0.0: 3415 | version "1.1.0" 3416 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 3417 | dependencies: 3418 | load-json-file "^1.0.0" 3419 | normalize-package-data "^2.3.2" 3420 | path-type "^1.0.0" 3421 | 3422 | read-pkg@^2.0.0: 3423 | version "2.0.0" 3424 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 3425 | dependencies: 3426 | load-json-file "^2.0.0" 3427 | normalize-package-data "^2.3.2" 3428 | path-type "^2.0.0" 3429 | 3430 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2: 3431 | version "2.3.3" 3432 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 3433 | dependencies: 3434 | core-util-is "~1.0.0" 3435 | inherits "~2.0.3" 3436 | isarray "~1.0.0" 3437 | process-nextick-args "~1.0.6" 3438 | safe-buffer "~5.1.1" 3439 | string_decoder "~1.0.3" 3440 | util-deprecate "~1.0.1" 3441 | 3442 | readdirp@^2.0.0: 3443 | version "2.1.0" 3444 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 3445 | dependencies: 3446 | graceful-fs "^4.1.2" 3447 | minimatch "^3.0.2" 3448 | readable-stream "^2.0.2" 3449 | set-immediate-shim "^1.0.1" 3450 | 3451 | regenerate@^1.2.1: 3452 | version "1.3.3" 3453 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 3454 | 3455 | regenerator-runtime@^0.10.5: 3456 | version "0.10.5" 3457 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 3458 | 3459 | regenerator-runtime@^0.11.0: 3460 | version "0.11.0" 3461 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 3462 | 3463 | regenerator-transform@^0.10.0: 3464 | version "0.10.1" 3465 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 3466 | dependencies: 3467 | babel-runtime "^6.18.0" 3468 | babel-types "^6.19.0" 3469 | private "^0.1.6" 3470 | 3471 | regex-cache@^0.4.2: 3472 | version "0.4.4" 3473 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 3474 | dependencies: 3475 | is-equal-shallow "^0.1.3" 3476 | 3477 | regexpu-core@^2.0.0: 3478 | version "2.0.0" 3479 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 3480 | dependencies: 3481 | regenerate "^1.2.1" 3482 | regjsgen "^0.2.0" 3483 | regjsparser "^0.1.4" 3484 | 3485 | regjsgen@^0.2.0: 3486 | version "0.2.0" 3487 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 3488 | 3489 | regjsparser@^0.1.4: 3490 | version "0.1.5" 3491 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 3492 | dependencies: 3493 | jsesc "~0.5.0" 3494 | 3495 | relateurl@0.2.x: 3496 | version "0.2.7" 3497 | resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" 3498 | 3499 | remove-trailing-separator@^1.0.1: 3500 | version "1.1.0" 3501 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 3502 | 3503 | repeat-element@^1.1.2: 3504 | version "1.1.2" 3505 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 3506 | 3507 | repeat-string@^1.5.2: 3508 | version "1.6.1" 3509 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 3510 | 3511 | repeating@^2.0.0: 3512 | version "2.0.1" 3513 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 3514 | dependencies: 3515 | is-finite "^1.0.0" 3516 | 3517 | request@2.81.0: 3518 | version "2.81.0" 3519 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3520 | dependencies: 3521 | aws-sign2 "~0.6.0" 3522 | aws4 "^1.2.1" 3523 | caseless "~0.12.0" 3524 | combined-stream "~1.0.5" 3525 | extend "~3.0.0" 3526 | forever-agent "~0.6.1" 3527 | form-data "~2.1.1" 3528 | har-validator "~4.2.1" 3529 | hawk "~3.1.3" 3530 | http-signature "~1.1.0" 3531 | is-typedarray "~1.0.0" 3532 | isstream "~0.1.2" 3533 | json-stringify-safe "~5.0.1" 3534 | mime-types "~2.1.7" 3535 | oauth-sign "~0.8.1" 3536 | performance-now "^0.2.0" 3537 | qs "~6.4.0" 3538 | safe-buffer "^5.0.1" 3539 | stringstream "~0.0.4" 3540 | tough-cookie "~2.3.0" 3541 | tunnel-agent "^0.6.0" 3542 | uuid "^3.0.0" 3543 | 3544 | request@^2.78.0, request@^2.79.0: 3545 | version "2.83.0" 3546 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 3547 | dependencies: 3548 | aws-sign2 "~0.7.0" 3549 | aws4 "^1.6.0" 3550 | caseless "~0.12.0" 3551 | combined-stream "~1.0.5" 3552 | extend "~3.0.1" 3553 | forever-agent "~0.6.1" 3554 | form-data "~2.3.1" 3555 | har-validator "~5.0.3" 3556 | hawk "~6.0.2" 3557 | http-signature "~1.2.0" 3558 | is-typedarray "~1.0.0" 3559 | isstream "~0.1.2" 3560 | json-stringify-safe "~5.0.1" 3561 | mime-types "~2.1.17" 3562 | oauth-sign "~0.8.2" 3563 | performance-now "^2.1.0" 3564 | qs "~6.5.1" 3565 | safe-buffer "^5.1.1" 3566 | stringstream "~0.0.5" 3567 | tough-cookie "~2.3.3" 3568 | tunnel-agent "^0.6.0" 3569 | uuid "^3.1.0" 3570 | 3571 | require-directory@^2.1.1: 3572 | version "2.1.1" 3573 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 3574 | 3575 | require-main-filename@^1.0.1: 3576 | version "1.0.1" 3577 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 3578 | 3579 | require-uncached@^1.0.3: 3580 | version "1.0.3" 3581 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 3582 | dependencies: 3583 | caller-path "^0.1.0" 3584 | resolve-from "^1.0.0" 3585 | 3586 | resolve-from@^1.0.0: 3587 | version "1.0.1" 3588 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 3589 | 3590 | resolve@1.1.7: 3591 | version "1.1.7" 3592 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" 3593 | 3594 | resolve@^1.2.0: 3595 | version "1.4.0" 3596 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 3597 | dependencies: 3598 | path-parse "^1.0.5" 3599 | 3600 | restore-cursor@^2.0.0: 3601 | version "2.0.0" 3602 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 3603 | dependencies: 3604 | onetime "^2.0.0" 3605 | signal-exit "^3.0.2" 3606 | 3607 | right-align@^0.1.1: 3608 | version "0.1.3" 3609 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3610 | dependencies: 3611 | align-text "^0.1.1" 3612 | 3613 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 3614 | version "2.6.2" 3615 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 3616 | dependencies: 3617 | glob "^7.0.5" 3618 | 3619 | run-async@^2.2.0: 3620 | version "2.3.0" 3621 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 3622 | dependencies: 3623 | is-promise "^2.1.0" 3624 | 3625 | rx-lite-aggregates@^4.0.8: 3626 | version "4.0.8" 3627 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 3628 | dependencies: 3629 | rx-lite "*" 3630 | 3631 | rx-lite@*, rx-lite@^4.0.8: 3632 | version "4.0.8" 3633 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 3634 | 3635 | safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 3636 | version "5.1.1" 3637 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 3638 | 3639 | sane@^2.0.0: 3640 | version "2.2.0" 3641 | resolved "https://registry.yarnpkg.com/sane/-/sane-2.2.0.tgz#d6d2e2fcab00e3d283c93b912b7c3a20846f1d56" 3642 | dependencies: 3643 | anymatch "^1.3.0" 3644 | exec-sh "^0.2.0" 3645 | fb-watchman "^2.0.0" 3646 | minimatch "^3.0.2" 3647 | minimist "^1.1.1" 3648 | walker "~1.0.5" 3649 | watch "~0.18.0" 3650 | optionalDependencies: 3651 | fsevents "^1.1.1" 3652 | 3653 | sax@^1.2.1: 3654 | version "1.2.4" 3655 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 3656 | 3657 | "semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: 3658 | version "5.4.1" 3659 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 3660 | 3661 | set-blocking@^2.0.0, set-blocking@~2.0.0: 3662 | version "2.0.0" 3663 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3664 | 3665 | set-immediate-shim@^1.0.1: 3666 | version "1.0.1" 3667 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3668 | 3669 | setimmediate@^1.0.5: 3670 | version "1.0.5" 3671 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3672 | 3673 | shebang-command@^1.2.0: 3674 | version "1.2.0" 3675 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 3676 | dependencies: 3677 | shebang-regex "^1.0.0" 3678 | 3679 | shebang-regex@^1.0.0: 3680 | version "1.0.0" 3681 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 3682 | 3683 | shellwords@^0.1.0: 3684 | version "0.1.1" 3685 | resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" 3686 | 3687 | sigmund@^1.0.1: 3688 | version "1.0.1" 3689 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 3690 | 3691 | signal-exit@^3.0.0, signal-exit@^3.0.2: 3692 | version "3.0.2" 3693 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3694 | 3695 | slash@^1.0.0: 3696 | version "1.0.0" 3697 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3698 | 3699 | slice-ansi@1.0.0: 3700 | version "1.0.0" 3701 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 3702 | dependencies: 3703 | is-fullwidth-code-point "^2.0.0" 3704 | 3705 | slick@1.12.2: 3706 | version "1.12.2" 3707 | resolved "https://registry.yarnpkg.com/slick/-/slick-1.12.2.tgz#bd048ddb74de7d1ca6915faa4a57570b3550c2d7" 3708 | 3709 | sntp@1.x.x: 3710 | version "1.0.9" 3711 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3712 | dependencies: 3713 | hoek "2.x.x" 3714 | 3715 | sntp@2.x.x: 3716 | version "2.0.2" 3717 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.0.2.tgz#5064110f0af85f7cfdb7d6b67a40028ce52b4b2b" 3718 | dependencies: 3719 | hoek "4.x.x" 3720 | 3721 | source-map-support@^0.4.15: 3722 | version "0.4.18" 3723 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 3724 | dependencies: 3725 | source-map "^0.5.6" 3726 | 3727 | source-map@0.5.x, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.6: 3728 | version "0.5.7" 3729 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 3730 | 3731 | source-map@^0.4.4: 3732 | version "0.4.4" 3733 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3734 | dependencies: 3735 | amdefine ">=0.0.4" 3736 | 3737 | source-map@~0.6.1: 3738 | version "0.6.1" 3739 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 3740 | 3741 | spdx-correct@~1.0.0: 3742 | version "1.0.2" 3743 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 3744 | dependencies: 3745 | spdx-license-ids "^1.0.2" 3746 | 3747 | spdx-expression-parse@~1.0.0: 3748 | version "1.0.4" 3749 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 3750 | 3751 | spdx-license-ids@^1.0.2: 3752 | version "1.2.2" 3753 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 3754 | 3755 | sprintf-js@~1.0.2: 3756 | version "1.0.3" 3757 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 3758 | 3759 | sshpk@^1.7.0: 3760 | version "1.13.1" 3761 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 3762 | dependencies: 3763 | asn1 "~0.2.3" 3764 | assert-plus "^1.0.0" 3765 | dashdash "^1.12.0" 3766 | getpass "^0.1.1" 3767 | optionalDependencies: 3768 | bcrypt-pbkdf "^1.0.0" 3769 | ecc-jsbn "~0.1.1" 3770 | jsbn "~0.1.0" 3771 | tweetnacl "~0.14.0" 3772 | 3773 | string-length@^2.0.0: 3774 | version "2.0.0" 3775 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" 3776 | dependencies: 3777 | astral-regex "^1.0.0" 3778 | strip-ansi "^4.0.0" 3779 | 3780 | string-width@^1.0.1, string-width@^1.0.2: 3781 | version "1.0.2" 3782 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3783 | dependencies: 3784 | code-point-at "^1.0.0" 3785 | is-fullwidth-code-point "^1.0.0" 3786 | strip-ansi "^3.0.0" 3787 | 3788 | string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: 3789 | version "2.1.1" 3790 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 3791 | dependencies: 3792 | is-fullwidth-code-point "^2.0.0" 3793 | strip-ansi "^4.0.0" 3794 | 3795 | string_decoder@~1.0.3: 3796 | version "1.0.3" 3797 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 3798 | dependencies: 3799 | safe-buffer "~5.1.0" 3800 | 3801 | stringstream@~0.0.4, stringstream@~0.0.5: 3802 | version "0.0.5" 3803 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3804 | 3805 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3806 | version "3.0.1" 3807 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3808 | dependencies: 3809 | ansi-regex "^2.0.0" 3810 | 3811 | strip-ansi@^4.0.0: 3812 | version "4.0.0" 3813 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 3814 | dependencies: 3815 | ansi-regex "^3.0.0" 3816 | 3817 | strip-bom@3.0.0, strip-bom@^3.0.0: 3818 | version "3.0.0" 3819 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 3820 | 3821 | strip-bom@^2.0.0: 3822 | version "2.0.0" 3823 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 3824 | dependencies: 3825 | is-utf8 "^0.2.0" 3826 | 3827 | strip-eof@^1.0.0: 3828 | version "1.0.0" 3829 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 3830 | 3831 | strip-json-comments@~2.0.1: 3832 | version "2.0.1" 3833 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3834 | 3835 | supports-color@^2.0.0: 3836 | version "2.0.0" 3837 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3838 | 3839 | supports-color@^3.1.2: 3840 | version "3.2.3" 3841 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3842 | dependencies: 3843 | has-flag "^1.0.0" 3844 | 3845 | supports-color@^4.0.0: 3846 | version "4.5.0" 3847 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 3848 | dependencies: 3849 | has-flag "^2.0.0" 3850 | 3851 | symbol-tree@^3.2.1: 3852 | version "3.2.2" 3853 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3854 | 3855 | table@^4.0.1: 3856 | version "4.0.2" 3857 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 3858 | dependencies: 3859 | ajv "^5.2.3" 3860 | ajv-keywords "^2.1.0" 3861 | chalk "^2.1.0" 3862 | lodash "^4.17.4" 3863 | slice-ansi "1.0.0" 3864 | string-width "^2.1.1" 3865 | 3866 | tar-pack@^3.4.0: 3867 | version "3.4.0" 3868 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3869 | dependencies: 3870 | debug "^2.2.0" 3871 | fstream "^1.0.10" 3872 | fstream-ignore "^1.0.5" 3873 | once "^1.3.3" 3874 | readable-stream "^2.1.4" 3875 | rimraf "^2.5.1" 3876 | tar "^2.2.1" 3877 | uid-number "^0.0.6" 3878 | 3879 | tar@^2.2.1: 3880 | version "2.2.1" 3881 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3882 | dependencies: 3883 | block-stream "*" 3884 | fstream "^1.0.2" 3885 | inherits "2" 3886 | 3887 | test-exclude@^4.1.1: 3888 | version "4.1.1" 3889 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.1.1.tgz#4d84964b0966b0087ecc334a2ce002d3d9341e26" 3890 | dependencies: 3891 | arrify "^1.0.1" 3892 | micromatch "^2.3.11" 3893 | object-assign "^4.1.0" 3894 | read-pkg-up "^1.0.1" 3895 | require-main-filename "^1.0.1" 3896 | 3897 | text-table@~0.2.0: 3898 | version "0.2.0" 3899 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 3900 | 3901 | thenify-all@^1.0.0: 3902 | version "1.6.0" 3903 | resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" 3904 | dependencies: 3905 | thenify ">= 3.1.0 < 4" 3906 | 3907 | "thenify@>= 3.1.0 < 4": 3908 | version "3.3.0" 3909 | resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.0.tgz#e69e38a1babe969b0108207978b9f62b88604839" 3910 | dependencies: 3911 | any-promise "^1.0.0" 3912 | 3913 | throat@^4.0.0: 3914 | version "4.1.0" 3915 | resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" 3916 | 3917 | through@^2.3.6: 3918 | version "2.3.8" 3919 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 3920 | 3921 | tmp@^0.0.33: 3922 | version "0.0.33" 3923 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 3924 | dependencies: 3925 | os-tmpdir "~1.0.2" 3926 | 3927 | tmpl@1.0.x: 3928 | version "1.0.4" 3929 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" 3930 | 3931 | to-fast-properties@^1.0.3: 3932 | version "1.0.3" 3933 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 3934 | 3935 | tough-cookie@^2.3.2, tough-cookie@~2.3.0, tough-cookie@~2.3.3: 3936 | version "2.3.3" 3937 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 3938 | dependencies: 3939 | punycode "^1.4.1" 3940 | 3941 | tr46@~0.0.3: 3942 | version "0.0.3" 3943 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3944 | 3945 | trim-right@^1.0.1: 3946 | version "1.0.1" 3947 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3948 | 3949 | tryit@^1.0.1: 3950 | version "1.0.3" 3951 | resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" 3952 | 3953 | tunnel-agent@^0.6.0: 3954 | version "0.6.0" 3955 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3956 | dependencies: 3957 | safe-buffer "^5.0.1" 3958 | 3959 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3960 | version "0.14.5" 3961 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3962 | 3963 | type-check@~0.3.2: 3964 | version "0.3.2" 3965 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3966 | dependencies: 3967 | prelude-ls "~1.1.2" 3968 | 3969 | typedarray@^0.0.6: 3970 | version "0.0.6" 3971 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 3972 | 3973 | ua-parser-js@^0.7.9: 3974 | version "0.7.17" 3975 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac" 3976 | 3977 | uglify-js@3.1.x: 3978 | version "3.1.5" 3979 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.1.5.tgz#4c1a6d53b2fe77e4710dd94631853effd3ff5143" 3980 | dependencies: 3981 | commander "~2.11.0" 3982 | source-map "~0.6.1" 3983 | 3984 | uglify-js@^2.6: 3985 | version "2.8.29" 3986 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 3987 | dependencies: 3988 | source-map "~0.5.1" 3989 | yargs "~3.10.0" 3990 | optionalDependencies: 3991 | uglify-to-browserify "~1.0.0" 3992 | 3993 | uglify-to-browserify@~1.0.0: 3994 | version "1.0.2" 3995 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3996 | 3997 | uid-number@^0.0.6: 3998 | version "0.0.6" 3999 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 4000 | 4001 | upper-case@^1.1.1: 4002 | version "1.1.3" 4003 | resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" 4004 | 4005 | user-home@^1.1.1: 4006 | version "1.1.1" 4007 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 4008 | 4009 | util-deprecate@~1.0.1: 4010 | version "1.0.2" 4011 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 4012 | 4013 | uuid@^3.0.0, uuid@^3.1.0: 4014 | version "3.1.0" 4015 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 4016 | 4017 | v8flags@^2.1.1: 4018 | version "2.1.1" 4019 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 4020 | dependencies: 4021 | user-home "^1.1.1" 4022 | 4023 | valid-data-url@^0.1.4: 4024 | version "0.1.4" 4025 | resolved "https://registry.yarnpkg.com/valid-data-url/-/valid-data-url-0.1.4.tgz#9480d7eb8d4f5675a8ad774e51068be7b0aef410" 4026 | 4027 | validate-npm-package-license@^3.0.1: 4028 | version "3.0.1" 4029 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 4030 | dependencies: 4031 | spdx-correct "~1.0.0" 4032 | spdx-expression-parse "~1.0.0" 4033 | 4034 | verror@1.10.0: 4035 | version "1.10.0" 4036 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 4037 | dependencies: 4038 | assert-plus "^1.0.0" 4039 | core-util-is "1.0.2" 4040 | extsprintf "^1.2.0" 4041 | 4042 | walker@~1.0.5: 4043 | version "1.0.7" 4044 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 4045 | dependencies: 4046 | makeerror "1.0.x" 4047 | 4048 | warning@^3.0.0: 4049 | version "3.0.0" 4050 | resolved "https://registry.yarnpkg.com/warning/-/warning-3.0.0.tgz#32e5377cb572de4ab04753bdf8821c01ed605b7c" 4051 | dependencies: 4052 | loose-envify "^1.0.0" 4053 | 4054 | watch@~0.18.0: 4055 | version "0.18.0" 4056 | resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986" 4057 | dependencies: 4058 | exec-sh "^0.2.0" 4059 | minimist "^1.2.0" 4060 | 4061 | web-resource-inliner@^4.2.0: 4062 | version "4.2.0" 4063 | resolved "https://registry.yarnpkg.com/web-resource-inliner/-/web-resource-inliner-4.2.0.tgz#a0e65f4bb8d2085bd80c184290f29772aa0c697e" 4064 | dependencies: 4065 | async "^2.1.2" 4066 | chalk "^1.1.3" 4067 | datauri "^1.0.4" 4068 | htmlparser2 "^3.9.2" 4069 | lodash.unescape "^4.0.1" 4070 | request "^2.78.0" 4071 | valid-data-url "^0.1.4" 4072 | xtend "^4.0.0" 4073 | 4074 | webidl-conversions@^3.0.0: 4075 | version "3.0.1" 4076 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 4077 | 4078 | webidl-conversions@^4.0.0: 4079 | version "4.0.2" 4080 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 4081 | 4082 | whatwg-encoding@^1.0.1: 4083 | version "1.0.2" 4084 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.2.tgz#bd68ad169c3cf55080562257714bf012e668a165" 4085 | dependencies: 4086 | iconv-lite "0.4.13" 4087 | 4088 | whatwg-fetch@>=0.10.0: 4089 | version "2.0.3" 4090 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 4091 | 4092 | whatwg-url@^4.3.0: 4093 | version "4.8.0" 4094 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.8.0.tgz#d2981aa9148c1e00a41c5a6131166ab4683bbcc0" 4095 | dependencies: 4096 | tr46 "~0.0.3" 4097 | webidl-conversions "^3.0.0" 4098 | 4099 | which-module@^2.0.0: 4100 | version "2.0.0" 4101 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 4102 | 4103 | which@^1.2.12, which@^1.2.9: 4104 | version "1.3.0" 4105 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 4106 | dependencies: 4107 | isexe "^2.0.0" 4108 | 4109 | wide-align@^1.1.0: 4110 | version "1.1.2" 4111 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 4112 | dependencies: 4113 | string-width "^1.0.2" 4114 | 4115 | window-size@0.1.0: 4116 | version "0.1.0" 4117 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 4118 | 4119 | wordwrap@0.0.2: 4120 | version "0.0.2" 4121 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 4122 | 4123 | wordwrap@~0.0.2: 4124 | version "0.0.3" 4125 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 4126 | 4127 | wordwrap@~1.0.0: 4128 | version "1.0.0" 4129 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 4130 | 4131 | worker-farm@^1.3.1: 4132 | version "1.5.0" 4133 | resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.0.tgz#adfdf0cd40581465ed0a1f648f9735722afd5c8d" 4134 | dependencies: 4135 | errno "^0.1.4" 4136 | xtend "^4.0.1" 4137 | 4138 | wrap-ansi@^2.0.0: 4139 | version "2.1.0" 4140 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 4141 | dependencies: 4142 | string-width "^1.0.1" 4143 | strip-ansi "^3.0.1" 4144 | 4145 | wrappy@1: 4146 | version "1.0.2" 4147 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 4148 | 4149 | write-file-atomic@^2.1.0: 4150 | version "2.3.0" 4151 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz#1ff61575c2e2a4e8e510d6fa4e243cce183999ab" 4152 | dependencies: 4153 | graceful-fs "^4.1.11" 4154 | imurmurhash "^0.1.4" 4155 | signal-exit "^3.0.2" 4156 | 4157 | write@^0.2.1: 4158 | version "0.2.1" 4159 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 4160 | dependencies: 4161 | mkdirp "^0.5.1" 4162 | 4163 | xml-char-classes@^1.0.0: 4164 | version "1.0.0" 4165 | resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d" 4166 | 4167 | xml-name-validator@^2.0.1: 4168 | version "2.0.1" 4169 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 4170 | 4171 | xtend@^4.0.0, xtend@^4.0.1: 4172 | version "4.0.1" 4173 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 4174 | 4175 | y18n@^3.2.1: 4176 | version "3.2.1" 4177 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 4178 | 4179 | yallist@^2.1.2: 4180 | version "2.1.2" 4181 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 4182 | 4183 | yargs-parser@^7.0.0: 4184 | version "7.0.0" 4185 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 4186 | dependencies: 4187 | camelcase "^4.1.0" 4188 | 4189 | yargs@^9.0.0: 4190 | version "9.0.1" 4191 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-9.0.1.tgz#52acc23feecac34042078ee78c0c007f5085db4c" 4192 | dependencies: 4193 | camelcase "^4.1.0" 4194 | cliui "^3.2.0" 4195 | decamelize "^1.1.1" 4196 | get-caller-file "^1.0.1" 4197 | os-locale "^2.0.0" 4198 | read-pkg-up "^2.0.0" 4199 | require-directory "^2.1.1" 4200 | require-main-filename "^1.0.1" 4201 | set-blocking "^2.0.0" 4202 | string-width "^2.0.0" 4203 | which-module "^2.0.0" 4204 | y18n "^3.2.1" 4205 | yargs-parser "^7.0.0" 4206 | 4207 | yargs@~3.10.0: 4208 | version "3.10.0" 4209 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 4210 | dependencies: 4211 | camelcase "^1.0.2" 4212 | cliui "^2.1.0" 4213 | decamelize "^1.0.0" 4214 | window-size "0.1.0" 4215 | --------------------------------------------------------------------------------